blob: 4b9b928900d4c872421045277448b2f0a9743244 [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
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400571 /*
572 * insert the directory item
573 */
Chris Mason3de45862008-11-17 21:02:50 -0500574 ret = btrfs_set_inode_index(dir, &index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100575 if (ret) {
576 btrfs_abort_transaction(trans, root, ret);
577 goto fail;
578 }
Chris Mason3de45862008-11-17 21:02:50 -0500579
580 ret = btrfs_insert_dir_item(trans, root,
Miao Xie16cdcec2011-04-22 18:12:22 +0800581 name, namelen, dir, &key,
Chris Mason3de45862008-11-17 21:02:50 -0500582 BTRFS_FT_DIR, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100583 if (ret) {
584 btrfs_abort_transaction(trans, root, ret);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400585 goto fail;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100586 }
Chris Mason0660b5a2008-11-17 20:37:39 -0500587
Yan Zheng52c26172009-01-05 15:43:43 -0500588 btrfs_i_size_write(dir, dir->i_size + namelen * 2);
589 ret = btrfs_update_inode(trans, root, dir);
590 BUG_ON(ret);
591
Chris Mason0660b5a2008-11-17 20:37:39 -0500592 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -0400593 objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +0800594 btrfs_ino(dir), index, name, namelen);
Chris Mason0660b5a2008-11-17 20:37:39 -0500595 BUG_ON(ret);
596
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200597 ret = btrfs_uuid_tree_add(trans, root->fs_info->uuid_root,
598 root_item.uuid, BTRFS_UUID_KEY_SUBVOL,
599 objectid);
600 if (ret)
601 btrfs_abort_transaction(trans, root, ret);
602
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400603fail:
Miao Xied5c12072013-02-28 10:04:33 +0000604 trans->block_rsv = NULL;
605 trans->bytes_reserved = 0;
Liu Bode6e8202014-01-09 14:57:06 +0800606 btrfs_subvolume_release_metadata(root, &block_rsv, qgroup_reserved);
607
Sage Weil72fd0322010-10-29 15:41:32 -0400608 if (async_transid) {
609 *async_transid = trans->transid;
610 err = btrfs_commit_transaction_async(trans, root, 1);
Miao Xie00d71c92013-03-04 09:45:06 +0000611 if (err)
612 err = btrfs_commit_transaction(trans, root);
Sage Weil72fd0322010-10-29 15:41:32 -0400613 } else {
614 err = btrfs_commit_transaction(trans, root);
615 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400616 if (err && !ret)
617 ret = err;
Chris Mason1a65e242013-02-06 12:06:02 -0500618
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900619 if (!ret) {
620 inode = btrfs_lookup_dentry(dir, dentry);
Liu Bode6e8202014-01-09 14:57:06 +0800621 if (IS_ERR(inode))
622 return PTR_ERR(inode);
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900623 d_instantiate(dentry, inode);
624 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400625 return ret;
626}
627
Filipe Manana9ea24bb2014-10-29 11:57:59 +0000628static void btrfs_wait_for_no_snapshoting_writes(struct btrfs_root *root)
Miao Xie8257b2d2014-03-06 13:38:19 +0800629{
630 s64 writers;
631 DEFINE_WAIT(wait);
632
633 do {
634 prepare_to_wait(&root->subv_writers->wait, &wait,
635 TASK_UNINTERRUPTIBLE);
636
637 writers = percpu_counter_sum(&root->subv_writers->counter);
638 if (writers)
639 schedule();
640
641 finish_wait(&root->subv_writers->wait, &wait);
642 } while (writers);
643}
644
Miao Xiee9662f72013-02-28 10:01:15 +0000645static int create_snapshot(struct btrfs_root *root, struct inode *dir,
646 struct dentry *dentry, char *name, int namelen,
647 u64 *async_transid, bool readonly,
648 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400649{
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000650 struct inode *inode;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400651 struct btrfs_pending_snapshot *pending_snapshot;
652 struct btrfs_trans_handle *trans;
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000653 int ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400654
Miao Xie27cdeb72014-04-02 19:51:05 +0800655 if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400656 return -EINVAL;
657
Miao Xie8257b2d2014-03-06 13:38:19 +0800658 atomic_inc(&root->will_be_snapshoted);
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100659 smp_mb__after_atomic();
Filipe Manana9ea24bb2014-10-29 11:57:59 +0000660 btrfs_wait_for_no_snapshoting_writes(root);
Miao Xie8257b2d2014-03-06 13:38:19 +0800661
Miao Xie6a038432013-05-15 07:48:24 +0000662 ret = btrfs_start_delalloc_inodes(root, 0);
663 if (ret)
Miao Xie8257b2d2014-03-06 13:38:19 +0800664 goto out;
Miao Xie6a038432013-05-15 07:48:24 +0000665
Miao Xieb0244192013-11-04 23:13:25 +0800666 btrfs_wait_ordered_extents(root, -1);
Miao Xie6a038432013-05-15 07:48:24 +0000667
Yan, Zhenga22285a2010-05-16 10:48:46 -0400668 pending_snapshot = kzalloc(sizeof(*pending_snapshot), GFP_NOFS);
Miao Xie8257b2d2014-03-06 13:38:19 +0800669 if (!pending_snapshot) {
670 ret = -ENOMEM;
671 goto out;
672 }
Yan, Zhenga22285a2010-05-16 10:48:46 -0400673
Miao Xie66d8f3d2012-09-06 04:02:28 -0600674 btrfs_init_block_rsv(&pending_snapshot->block_rsv,
675 BTRFS_BLOCK_RSV_TEMP);
Miao Xied5c12072013-02-28 10:04:33 +0000676 /*
677 * 1 - parent dir inode
678 * 2 - dir entries
679 * 1 - root item
680 * 2 - root ref/backref
681 * 1 - root of snapshot
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200682 * 1 - UUID item
Miao Xied5c12072013-02-28 10:04:33 +0000683 */
684 ret = btrfs_subvolume_reserve_metadata(BTRFS_I(dir)->root,
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200685 &pending_snapshot->block_rsv, 8,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -0400686 &pending_snapshot->qgroup_reserved,
687 false);
Miao Xied5c12072013-02-28 10:04:33 +0000688 if (ret)
Miao Xie8257b2d2014-03-06 13:38:19 +0800689 goto free;
Miao Xied5c12072013-02-28 10:04:33 +0000690
Yan, Zhenga22285a2010-05-16 10:48:46 -0400691 pending_snapshot->dentry = dentry;
692 pending_snapshot->root = root;
Li Zefanb83cc962010-12-20 16:04:08 +0800693 pending_snapshot->readonly = readonly;
Miao Xiee9662f72013-02-28 10:01:15 +0000694 pending_snapshot->dir = dir;
Miao Xie8696c532013-02-07 06:02:44 +0000695 pending_snapshot->inherit = inherit;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400696
Miao Xied5c12072013-02-28 10:04:33 +0000697 trans = btrfs_start_transaction(root, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400698 if (IS_ERR(trans)) {
699 ret = PTR_ERR(trans);
700 goto fail;
701 }
702
Josef Bacik83515832011-06-14 15:16:14 -0400703 spin_lock(&root->fs_info->trans_lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400704 list_add(&pending_snapshot->list,
705 &trans->transaction->pending_snapshots);
Josef Bacik83515832011-06-14 15:16:14 -0400706 spin_unlock(&root->fs_info->trans_lock);
Sage Weil72fd0322010-10-29 15:41:32 -0400707 if (async_transid) {
708 *async_transid = trans->transid;
709 ret = btrfs_commit_transaction_async(trans,
710 root->fs_info->extent_root, 1);
Miao Xie00d71c92013-03-04 09:45:06 +0000711 if (ret)
712 ret = btrfs_commit_transaction(trans, root);
Sage Weil72fd0322010-10-29 15:41:32 -0400713 } else {
714 ret = btrfs_commit_transaction(trans,
715 root->fs_info->extent_root);
716 }
Miao Xieaec80302013-03-04 09:44:29 +0000717 if (ret)
Josef Bacikc37b2b62012-10-22 15:51:44 -0400718 goto fail;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400719
720 ret = pending_snapshot->error;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400721 if (ret)
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000722 goto fail;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400723
Chris Masond3797302014-10-15 13:50:56 -0700724 ret = btrfs_orphan_cleanup(pending_snapshot->snap);
725 if (ret)
726 goto fail;
727
David Howells2b0143b2015-03-17 22:25:59 +0000728 inode = btrfs_lookup_dentry(d_inode(dentry->d_parent), dentry);
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000729 if (IS_ERR(inode)) {
730 ret = PTR_ERR(inode);
731 goto fail;
732 }
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900733
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000734 d_instantiate(dentry, inode);
735 ret = 0;
736fail:
Miao Xied5c12072013-02-28 10:04:33 +0000737 btrfs_subvolume_release_metadata(BTRFS_I(dir)->root,
738 &pending_snapshot->block_rsv,
739 pending_snapshot->qgroup_reserved);
Miao Xie8257b2d2014-03-06 13:38:19 +0800740free:
Yan, Zhenga22285a2010-05-16 10:48:46 -0400741 kfree(pending_snapshot);
Miao Xie8257b2d2014-03-06 13:38:19 +0800742out:
Filipe Manana9ea24bb2014-10-29 11:57:59 +0000743 if (atomic_dec_and_test(&root->will_be_snapshoted))
744 wake_up_atomic_t(&root->will_be_snapshoted);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400745 return ret;
746}
747
Sage Weil4260f7c2010-10-29 15:46:43 -0400748/* copy of may_delete in fs/namei.c()
749 * Check whether we can remove a link victim from directory dir, check
750 * whether the type of victim is right.
751 * 1. We can't do it if dir is read-only (done in permission())
752 * 2. We should have write and exec permissions on dir
753 * 3. We can't remove anything from append-only dir
754 * 4. We can't do anything with immutable dir (done in permission())
755 * 5. If the sticky bit on dir is set we should either
756 * a. be owner of dir, or
757 * b. be owner of victim, or
758 * c. have CAP_FOWNER capability
759 * 6. If the victim is append-only or immutable we can't do antyhing with
760 * links pointing to it.
761 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
762 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
763 * 9. We can't remove a root or mountpoint.
764 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
765 * nfs_async_unlink().
766 */
767
Dulshani Gunawardhana67871252013-10-31 10:33:04 +0530768static int btrfs_may_delete(struct inode *dir, struct dentry *victim, int isdir)
Sage Weil4260f7c2010-10-29 15:46:43 -0400769{
770 int error;
771
David Howells2b0143b2015-03-17 22:25:59 +0000772 if (d_really_is_negative(victim))
Sage Weil4260f7c2010-10-29 15:46:43 -0400773 return -ENOENT;
774
David Howells2b0143b2015-03-17 22:25:59 +0000775 BUG_ON(d_inode(victim->d_parent) != dir);
Jeff Layton4fa6b5e2012-10-10 15:25:25 -0400776 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
Sage Weil4260f7c2010-10-29 15:46:43 -0400777
778 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
779 if (error)
780 return error;
781 if (IS_APPEND(dir))
782 return -EPERM;
David Howells2b0143b2015-03-17 22:25:59 +0000783 if (check_sticky(dir, d_inode(victim)) || IS_APPEND(d_inode(victim)) ||
784 IS_IMMUTABLE(d_inode(victim)) || IS_SWAPFILE(d_inode(victim)))
Sage Weil4260f7c2010-10-29 15:46:43 -0400785 return -EPERM;
786 if (isdir) {
David Howellse36cb0b2015-01-29 12:02:35 +0000787 if (!d_is_dir(victim))
Sage Weil4260f7c2010-10-29 15:46:43 -0400788 return -ENOTDIR;
789 if (IS_ROOT(victim))
790 return -EBUSY;
David Howellse36cb0b2015-01-29 12:02:35 +0000791 } else if (d_is_dir(victim))
Sage Weil4260f7c2010-10-29 15:46:43 -0400792 return -EISDIR;
793 if (IS_DEADDIR(dir))
794 return -ENOENT;
795 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
796 return -EBUSY;
797 return 0;
798}
799
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400800/* copy of may_create in fs/namei.c() */
801static inline int btrfs_may_create(struct inode *dir, struct dentry *child)
802{
David Howells2b0143b2015-03-17 22:25:59 +0000803 if (d_really_is_positive(child))
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400804 return -EEXIST;
805 if (IS_DEADDIR(dir))
806 return -ENOENT;
807 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
808}
809
810/*
811 * Create a new subvolume below @parent. This is largely modeled after
812 * sys_mkdirat and vfs_mkdir, but we only do a single component lookup
813 * inside this filesystem so it's quite a bit simpler.
814 */
Yan, Zheng76dda932009-09-21 16:00:26 -0400815static noinline int btrfs_mksubvol(struct path *parent,
816 char *name, int namelen,
Sage Weil72fd0322010-10-29 15:41:32 -0400817 struct btrfs_root *snap_src,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200818 u64 *async_transid, bool readonly,
Miao Xie8696c532013-02-07 06:02:44 +0000819 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400820{
David Howells2b0143b2015-03-17 22:25:59 +0000821 struct inode *dir = d_inode(parent->dentry);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400822 struct dentry *dentry;
823 int error;
824
David Sterba5c50c9b2013-03-22 18:12:51 +0000825 error = mutex_lock_killable_nested(&dir->i_mutex, I_MUTEX_PARENT);
826 if (error == -EINTR)
827 return error;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400828
829 dentry = lookup_one_len(name, parent->dentry, namelen);
830 error = PTR_ERR(dentry);
831 if (IS_ERR(dentry))
832 goto out_unlock;
833
834 error = -EEXIST;
David Howells2b0143b2015-03-17 22:25:59 +0000835 if (d_really_is_positive(dentry))
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400836 goto out_dput;
837
Yan, Zheng76dda932009-09-21 16:00:26 -0400838 error = btrfs_may_create(dir, dentry);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400839 if (error)
Liu Boa874a632012-06-29 03:58:46 -0600840 goto out_dput;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400841
Chris Mason9c520572012-12-17 14:26:57 -0500842 /*
843 * even if this name doesn't exist, we may get hash collisions.
844 * check for them now when we can safely fail
845 */
846 error = btrfs_check_dir_item_collision(BTRFS_I(dir)->root,
847 dir->i_ino, name,
848 namelen);
849 if (error)
850 goto out_dput;
851
Yan, Zheng76dda932009-09-21 16:00:26 -0400852 down_read(&BTRFS_I(dir)->root->fs_info->subvol_sem);
853
854 if (btrfs_root_refs(&BTRFS_I(dir)->root->root_item) == 0)
855 goto out_up_read;
856
Chris Mason3de45862008-11-17 21:02:50 -0500857 if (snap_src) {
Miao Xiee9662f72013-02-28 10:01:15 +0000858 error = create_snapshot(snap_src, dir, dentry, name, namelen,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200859 async_transid, readonly, inherit);
Chris Mason3de45862008-11-17 21:02:50 -0500860 } else {
Miao Xied5c12072013-02-28 10:04:33 +0000861 error = create_subvol(dir, dentry, name, namelen,
862 async_transid, inherit);
Chris Mason3de45862008-11-17 21:02:50 -0500863 }
Yan, Zheng76dda932009-09-21 16:00:26 -0400864 if (!error)
865 fsnotify_mkdir(dir, dentry);
866out_up_read:
867 up_read(&BTRFS_I(dir)->root->fs_info->subvol_sem);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400868out_dput:
869 dput(dentry);
870out_unlock:
Yan, Zheng76dda932009-09-21 16:00:26 -0400871 mutex_unlock(&dir->i_mutex);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400872 return error;
873}
874
Chris Mason4cb53002011-05-24 15:35:30 -0400875/*
876 * When we're defragging a range, we don't want to kick it off again
877 * if it is really just waiting for delalloc to send it down.
878 * If we find a nice big extent or delalloc range for the bytes in the
879 * file you want to defrag, we return 0 to let you know to skip this
880 * part of the file
881 */
David Sterbaaab110a2014-07-29 17:32:10 +0200882static int check_defrag_in_cache(struct inode *inode, u64 offset, u32 thresh)
Chris Mason4cb53002011-05-24 15:35:30 -0400883{
884 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
885 struct extent_map *em = NULL;
886 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
887 u64 end;
888
889 read_lock(&em_tree->lock);
890 em = lookup_extent_mapping(em_tree, offset, PAGE_CACHE_SIZE);
891 read_unlock(&em_tree->lock);
892
893 if (em) {
894 end = extent_map_end(em);
895 free_extent_map(em);
896 if (end - offset > thresh)
897 return 0;
898 }
899 /* if we already have a nice delalloc here, just stop */
900 thresh /= 2;
901 end = count_range_bits(io_tree, &offset, offset + thresh,
902 thresh, EXTENT_DELALLOC, 1);
903 if (end >= thresh)
904 return 0;
905 return 1;
906}
907
908/*
909 * helper function to walk through a file and find extents
910 * newer than a specific transid, and smaller than thresh.
911 *
912 * This is used by the defragging code to find new and small
913 * extents
914 */
915static int find_new_extents(struct btrfs_root *root,
916 struct inode *inode, u64 newer_than,
David Sterbaaab110a2014-07-29 17:32:10 +0200917 u64 *off, u32 thresh)
Chris Mason4cb53002011-05-24 15:35:30 -0400918{
919 struct btrfs_path *path;
920 struct btrfs_key min_key;
Chris Mason4cb53002011-05-24 15:35:30 -0400921 struct extent_buffer *leaf;
922 struct btrfs_file_extent_item *extent;
923 int type;
924 int ret;
David Sterbaa4689d22011-05-31 17:08:14 +0000925 u64 ino = btrfs_ino(inode);
Chris Mason4cb53002011-05-24 15:35:30 -0400926
927 path = btrfs_alloc_path();
928 if (!path)
929 return -ENOMEM;
930
David Sterbaa4689d22011-05-31 17:08:14 +0000931 min_key.objectid = ino;
Chris Mason4cb53002011-05-24 15:35:30 -0400932 min_key.type = BTRFS_EXTENT_DATA_KEY;
933 min_key.offset = *off;
934
Dulshani Gunawardhana67871252013-10-31 10:33:04 +0530935 while (1) {
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +0100936 ret = btrfs_search_forward(root, &min_key, path, newer_than);
Chris Mason4cb53002011-05-24 15:35:30 -0400937 if (ret != 0)
938 goto none;
Filipe Mananaf094c9bd2014-03-12 01:28:24 +0000939process_slot:
David Sterbaa4689d22011-05-31 17:08:14 +0000940 if (min_key.objectid != ino)
Chris Mason4cb53002011-05-24 15:35:30 -0400941 goto none;
942 if (min_key.type != BTRFS_EXTENT_DATA_KEY)
943 goto none;
944
945 leaf = path->nodes[0];
946 extent = btrfs_item_ptr(leaf, path->slots[0],
947 struct btrfs_file_extent_item);
948
949 type = btrfs_file_extent_type(leaf, extent);
950 if (type == BTRFS_FILE_EXTENT_REG &&
951 btrfs_file_extent_num_bytes(leaf, extent) < thresh &&
952 check_defrag_in_cache(inode, min_key.offset, thresh)) {
953 *off = min_key.offset;
954 btrfs_free_path(path);
955 return 0;
956 }
957
Filipe Mananaf094c9bd2014-03-12 01:28:24 +0000958 path->slots[0]++;
959 if (path->slots[0] < btrfs_header_nritems(leaf)) {
960 btrfs_item_key_to_cpu(leaf, &min_key, path->slots[0]);
961 goto process_slot;
962 }
963
Chris Mason4cb53002011-05-24 15:35:30 -0400964 if (min_key.offset == (u64)-1)
965 goto none;
966
967 min_key.offset++;
968 btrfs_release_path(path);
969 }
970none:
971 btrfs_free_path(path);
972 return -ENOENT;
973}
974
Li Zefan6c282eb2012-06-11 16:03:35 +0800975static struct extent_map *defrag_lookup_extent(struct inode *inode, u64 start)
Liu Bo17ce6ef2012-03-29 09:57:45 -0400976{
977 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason940100a2010-03-10 10:52:59 -0500978 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Li Zefan6c282eb2012-06-11 16:03:35 +0800979 struct extent_map *em;
980 u64 len = PAGE_CACHE_SIZE;
Chris Mason940100a2010-03-10 10:52:59 -0500981
982 /*
983 * hopefully we have this extent in the tree already, try without
984 * the full extent lock
985 */
986 read_lock(&em_tree->lock);
987 em = lookup_extent_mapping(em_tree, start, len);
988 read_unlock(&em_tree->lock);
989
990 if (!em) {
Filipe Manana308d9802014-03-11 13:56:15 +0000991 struct extent_state *cached = NULL;
992 u64 end = start + len - 1;
993
Chris Mason940100a2010-03-10 10:52:59 -0500994 /* get the big lock and read metadata off disk */
Filipe Manana308d9802014-03-11 13:56:15 +0000995 lock_extent_bits(io_tree, start, end, 0, &cached);
Chris Mason940100a2010-03-10 10:52:59 -0500996 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
Filipe Manana308d9802014-03-11 13:56:15 +0000997 unlock_extent_cached(io_tree, start, end, &cached, GFP_NOFS);
Chris Mason940100a2010-03-10 10:52:59 -0500998
Dan Carpenter6cf8bfb2010-03-20 11:22:10 +0000999 if (IS_ERR(em))
Li Zefan6c282eb2012-06-11 16:03:35 +08001000 return NULL;
Chris Mason940100a2010-03-10 10:52:59 -05001001 }
1002
Li Zefan6c282eb2012-06-11 16:03:35 +08001003 return em;
1004}
1005
1006static bool defrag_check_next_extent(struct inode *inode, struct extent_map *em)
1007{
1008 struct extent_map *next;
1009 bool ret = true;
1010
1011 /* this is the last extent */
1012 if (em->start + em->len >= i_size_read(inode))
1013 return false;
1014
1015 next = defrag_lookup_extent(inode, em->start + em->len);
Chris Masone9512d72014-08-26 13:55:54 -07001016 if (!next || next->block_start >= EXTENT_MAP_LAST_BYTE)
1017 ret = false;
1018 else if ((em->block_start + em->block_len == next->block_start) &&
Byongho Leeee221842015-12-15 01:42:10 +09001019 (em->block_len > SZ_128K && next->block_len > SZ_128K))
Li Zefan6c282eb2012-06-11 16:03:35 +08001020 ret = false;
1021
1022 free_extent_map(next);
1023 return ret;
1024}
1025
David Sterbaaab110a2014-07-29 17:32:10 +02001026static int should_defrag_range(struct inode *inode, u64 start, u32 thresh,
Andrew Mahonea43a2112012-06-19 21:08:32 -04001027 u64 *last_len, u64 *skip, u64 *defrag_end,
1028 int compress)
Li Zefan6c282eb2012-06-11 16:03:35 +08001029{
1030 struct extent_map *em;
1031 int ret = 1;
1032 bool next_mergeable = true;
Liu Bo4a3560c2015-08-07 16:48:41 +08001033 bool prev_mergeable = true;
Li Zefan6c282eb2012-06-11 16:03:35 +08001034
1035 /*
1036 * make sure that once we start defragging an extent, we keep on
1037 * defragging it
1038 */
1039 if (start < *defrag_end)
1040 return 1;
1041
1042 *skip = 0;
1043
1044 em = defrag_lookup_extent(inode, start);
1045 if (!em)
1046 return 0;
1047
Chris Mason940100a2010-03-10 10:52:59 -05001048 /* this will cover holes, and inline extents */
Liu Bo17ce6ef2012-03-29 09:57:45 -04001049 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
Chris Mason940100a2010-03-10 10:52:59 -05001050 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -04001051 goto out;
1052 }
1053
Liu Bo4a3560c2015-08-07 16:48:41 +08001054 if (!*defrag_end)
1055 prev_mergeable = false;
1056
Li Zefan6c282eb2012-06-11 16:03:35 +08001057 next_mergeable = defrag_check_next_extent(inode, em);
Chris Mason940100a2010-03-10 10:52:59 -05001058 /*
Li Zefan6c282eb2012-06-11 16:03:35 +08001059 * we hit a real extent, if it is big or the next extent is not a
1060 * real extent, don't bother defragging it
Chris Mason940100a2010-03-10 10:52:59 -05001061 */
Andrew Mahonea43a2112012-06-19 21:08:32 -04001062 if (!compress && (*last_len == 0 || *last_len >= thresh) &&
Liu Bo4a3560c2015-08-07 16:48:41 +08001063 (em->len >= thresh || (!next_mergeable && !prev_mergeable)))
Chris Mason940100a2010-03-10 10:52:59 -05001064 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -04001065out:
Chris Mason940100a2010-03-10 10:52:59 -05001066 /*
1067 * last_len ends up being a counter of how many bytes we've defragged.
1068 * every time we choose not to defrag an extent, we reset *last_len
1069 * so that the next tiny extent will force a defrag.
1070 *
1071 * The end result of this is that tiny extents before a single big
1072 * extent will force at least part of that big extent to be defragged.
1073 */
1074 if (ret) {
Chris Mason940100a2010-03-10 10:52:59 -05001075 *defrag_end = extent_map_end(em);
1076 } else {
1077 *last_len = 0;
1078 *skip = extent_map_end(em);
1079 *defrag_end = 0;
1080 }
1081
1082 free_extent_map(em);
1083 return ret;
1084}
1085
Chris Mason4cb53002011-05-24 15:35:30 -04001086/*
1087 * it doesn't do much good to defrag one or two pages
1088 * at a time. This pulls in a nice chunk of pages
1089 * to COW and defrag.
1090 *
1091 * It also makes sure the delalloc code has enough
1092 * dirty data to avoid making new small extents as part
1093 * of the defrag
1094 *
1095 * It's a good idea to start RA on this range
1096 * before calling this.
1097 */
1098static int cluster_pages_for_defrag(struct inode *inode,
1099 struct page **pages,
1100 unsigned long start_index,
Justin Maggardc41570c2014-01-21 11:18:29 -08001101 unsigned long num_pages)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001102{
Chris Mason4cb53002011-05-24 15:35:30 -04001103 unsigned long file_end;
1104 u64 isize = i_size_read(inode);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001105 u64 page_start;
1106 u64 page_end;
Liu Bo1f12bd02012-03-29 09:57:44 -04001107 u64 page_cnt;
Chris Mason4cb53002011-05-24 15:35:30 -04001108 int ret;
1109 int i;
1110 int i_done;
1111 struct btrfs_ordered_extent *ordered;
1112 struct extent_state *cached_state = NULL;
Miao Xie600a45e2012-02-16 15:01:24 +08001113 struct extent_io_tree *tree;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04001114 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
Chris Mason4cb53002011-05-24 15:35:30 -04001115
Chris Mason4cb53002011-05-24 15:35:30 -04001116 file_end = (isize - 1) >> PAGE_CACHE_SHIFT;
Liu Bo1f12bd02012-03-29 09:57:44 -04001117 if (!isize || start_index > file_end)
1118 return 0;
1119
1120 page_cnt = min_t(u64, (u64)num_pages, (u64)file_end - start_index + 1);
Chris Mason4cb53002011-05-24 15:35:30 -04001121
1122 ret = btrfs_delalloc_reserve_space(inode,
Qu Wenruodf480632015-09-08 17:25:54 +08001123 start_index << PAGE_CACHE_SHIFT,
1124 page_cnt << PAGE_CACHE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001125 if (ret)
1126 return ret;
Chris Mason4cb53002011-05-24 15:35:30 -04001127 i_done = 0;
Miao Xie600a45e2012-02-16 15:01:24 +08001128 tree = &BTRFS_I(inode)->io_tree;
Chris Mason4cb53002011-05-24 15:35:30 -04001129
1130 /* step one, lock all the pages */
Liu Bo1f12bd02012-03-29 09:57:44 -04001131 for (i = 0; i < page_cnt; i++) {
Chris Mason4cb53002011-05-24 15:35:30 -04001132 struct page *page;
Miao Xie600a45e2012-02-16 15:01:24 +08001133again:
Josef Bacika94733d2011-07-11 10:47:06 -04001134 page = find_or_create_page(inode->i_mapping,
Miao Xie600a45e2012-02-16 15:01:24 +08001135 start_index + i, mask);
Chris Mason4cb53002011-05-24 15:35:30 -04001136 if (!page)
1137 break;
1138
Miao Xie600a45e2012-02-16 15:01:24 +08001139 page_start = page_offset(page);
1140 page_end = page_start + PAGE_CACHE_SIZE - 1;
1141 while (1) {
Filipe Manana308d9802014-03-11 13:56:15 +00001142 lock_extent_bits(tree, page_start, page_end,
1143 0, &cached_state);
Miao Xie600a45e2012-02-16 15:01:24 +08001144 ordered = btrfs_lookup_ordered_extent(inode,
1145 page_start);
Filipe Manana308d9802014-03-11 13:56:15 +00001146 unlock_extent_cached(tree, page_start, page_end,
1147 &cached_state, GFP_NOFS);
Miao Xie600a45e2012-02-16 15:01:24 +08001148 if (!ordered)
1149 break;
1150
1151 unlock_page(page);
1152 btrfs_start_ordered_extent(inode, ordered, 1);
1153 btrfs_put_ordered_extent(ordered);
1154 lock_page(page);
Liu Bo1f12bd02012-03-29 09:57:44 -04001155 /*
1156 * we unlocked the page above, so we need check if
1157 * it was released or not.
1158 */
1159 if (page->mapping != inode->i_mapping) {
1160 unlock_page(page);
1161 page_cache_release(page);
1162 goto again;
1163 }
Miao Xie600a45e2012-02-16 15:01:24 +08001164 }
1165
Chris Mason4cb53002011-05-24 15:35:30 -04001166 if (!PageUptodate(page)) {
1167 btrfs_readpage(NULL, page);
1168 lock_page(page);
1169 if (!PageUptodate(page)) {
1170 unlock_page(page);
1171 page_cache_release(page);
1172 ret = -EIO;
1173 break;
1174 }
1175 }
Miao Xie600a45e2012-02-16 15:01:24 +08001176
Miao Xie600a45e2012-02-16 15:01:24 +08001177 if (page->mapping != inode->i_mapping) {
1178 unlock_page(page);
1179 page_cache_release(page);
1180 goto again;
1181 }
1182
Chris Mason4cb53002011-05-24 15:35:30 -04001183 pages[i] = page;
1184 i_done++;
1185 }
1186 if (!i_done || ret)
1187 goto out;
1188
1189 if (!(inode->i_sb->s_flags & MS_ACTIVE))
1190 goto out;
1191
1192 /*
1193 * so now we have a nice long stream of locked
1194 * and up to date pages, lets wait on them
1195 */
1196 for (i = 0; i < i_done; i++)
1197 wait_on_page_writeback(pages[i]);
1198
1199 page_start = page_offset(pages[0]);
1200 page_end = page_offset(pages[i_done - 1]) + PAGE_CACHE_SIZE;
1201
1202 lock_extent_bits(&BTRFS_I(inode)->io_tree,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001203 page_start, page_end - 1, 0, &cached_state);
Chris Mason4cb53002011-05-24 15:35:30 -04001204 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start,
1205 page_end - 1, EXTENT_DIRTY | EXTENT_DELALLOC |
Liu Bo9e8a4a82012-09-05 19:10:51 -06001206 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, 0, 0,
1207 &cached_state, GFP_NOFS);
Chris Mason4cb53002011-05-24 15:35:30 -04001208
Liu Bo1f12bd02012-03-29 09:57:44 -04001209 if (i_done != page_cnt) {
Josef Bacik9e0baf62011-07-15 15:16:44 +00001210 spin_lock(&BTRFS_I(inode)->lock);
1211 BTRFS_I(inode)->outstanding_extents++;
1212 spin_unlock(&BTRFS_I(inode)->lock);
Chris Mason4cb53002011-05-24 15:35:30 -04001213 btrfs_delalloc_release_space(inode,
Qu Wenruodf480632015-09-08 17:25:54 +08001214 start_index << PAGE_CACHE_SHIFT,
1215 (page_cnt - i_done) << PAGE_CACHE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001216 }
1217
1218
Liu Bo9e8a4a82012-09-05 19:10:51 -06001219 set_extent_defrag(&BTRFS_I(inode)->io_tree, page_start, page_end - 1,
1220 &cached_state, GFP_NOFS);
Chris Mason4cb53002011-05-24 15:35:30 -04001221
1222 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
1223 page_start, page_end - 1, &cached_state,
1224 GFP_NOFS);
1225
1226 for (i = 0; i < i_done; i++) {
1227 clear_page_dirty_for_io(pages[i]);
1228 ClearPageChecked(pages[i]);
1229 set_page_extent_mapped(pages[i]);
1230 set_page_dirty(pages[i]);
1231 unlock_page(pages[i]);
1232 page_cache_release(pages[i]);
1233 }
1234 return i_done;
1235out:
1236 for (i = 0; i < i_done; i++) {
1237 unlock_page(pages[i]);
1238 page_cache_release(pages[i]);
1239 }
Qu Wenruo7cf5b972015-09-08 17:25:55 +08001240 btrfs_delalloc_release_space(inode,
Qu Wenruodf480632015-09-08 17:25:54 +08001241 start_index << PAGE_CACHE_SHIFT,
1242 page_cnt << PAGE_CACHE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001243 return ret;
1244
1245}
1246
1247int btrfs_defrag_file(struct inode *inode, struct file *file,
1248 struct btrfs_ioctl_defrag_range_args *range,
1249 u64 newer_than, unsigned long max_to_defrag)
1250{
1251 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason4cb53002011-05-24 15:35:30 -04001252 struct file_ra_state *ra = NULL;
1253 unsigned long last_index;
Li Zefan151a31b2011-09-02 15:56:39 +08001254 u64 isize = i_size_read(inode);
Chris Mason940100a2010-03-10 10:52:59 -05001255 u64 last_len = 0;
1256 u64 skip = 0;
1257 u64 defrag_end = 0;
Chris Mason4cb53002011-05-24 15:35:30 -04001258 u64 newer_off = range->start;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001259 unsigned long i;
Li Zefan008873e2011-09-02 15:57:07 +08001260 unsigned long ra_index = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001261 int ret;
Chris Mason4cb53002011-05-24 15:35:30 -04001262 int defrag_count = 0;
Li Zefan1a419d82010-10-25 15:12:50 +08001263 int compress_type = BTRFS_COMPRESS_ZLIB;
David Sterbaaab110a2014-07-29 17:32:10 +02001264 u32 extent_thresh = range->extent_thresh;
Byongho Leeee221842015-12-15 01:42:10 +09001265 unsigned long max_cluster = SZ_256K >> PAGE_CACHE_SHIFT;
Justin Maggardc41570c2014-01-21 11:18:29 -08001266 unsigned long cluster = max_cluster;
Byongho Leeee221842015-12-15 01:42:10 +09001267 u64 new_align = ~((u64)SZ_128K - 1);
Chris Mason4cb53002011-05-24 15:35:30 -04001268 struct page **pages = NULL;
1269
Liu Bo0abd5b12013-04-16 09:20:28 +00001270 if (isize == 0)
1271 return 0;
1272
1273 if (range->start >= isize)
1274 return -EINVAL;
Li Zefan1a419d82010-10-25 15:12:50 +08001275
1276 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS) {
1277 if (range->compress_type > BTRFS_COMPRESS_TYPES)
1278 return -EINVAL;
1279 if (range->compress_type)
1280 compress_type = range->compress_type;
1281 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001282
Liu Bo0abd5b12013-04-16 09:20:28 +00001283 if (extent_thresh == 0)
Byongho Leeee221842015-12-15 01:42:10 +09001284 extent_thresh = SZ_256K;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001285
Chris Mason4cb53002011-05-24 15:35:30 -04001286 /*
1287 * if we were not given a file, allocate a readahead
1288 * context
1289 */
1290 if (!file) {
1291 ra = kzalloc(sizeof(*ra), GFP_NOFS);
1292 if (!ra)
1293 return -ENOMEM;
1294 file_ra_state_init(ra, inode->i_mapping);
1295 } else {
1296 ra = &file->f_ra;
1297 }
1298
Dulshani Gunawardhanad9b0d9b2013-10-31 10:32:18 +05301299 pages = kmalloc_array(max_cluster, sizeof(struct page *),
Chris Mason4cb53002011-05-24 15:35:30 -04001300 GFP_NOFS);
1301 if (!pages) {
1302 ret = -ENOMEM;
1303 goto out_ra;
1304 }
1305
1306 /* find the last page to defrag */
Chris Mason1e701a32010-03-11 09:42:04 -05001307 if (range->start + range->len > range->start) {
Li Zefan151a31b2011-09-02 15:56:39 +08001308 last_index = min_t(u64, isize - 1,
Chris Mason1e701a32010-03-11 09:42:04 -05001309 range->start + range->len - 1) >> PAGE_CACHE_SHIFT;
1310 } else {
Li Zefan151a31b2011-09-02 15:56:39 +08001311 last_index = (isize - 1) >> PAGE_CACHE_SHIFT;
Chris Mason1e701a32010-03-11 09:42:04 -05001312 }
1313
Chris Mason4cb53002011-05-24 15:35:30 -04001314 if (newer_than) {
1315 ret = find_new_extents(root, inode, newer_than,
Byongho Leeee221842015-12-15 01:42:10 +09001316 &newer_off, SZ_64K);
Chris Mason4cb53002011-05-24 15:35:30 -04001317 if (!ret) {
1318 range->start = newer_off;
1319 /*
1320 * we always align our defrag to help keep
1321 * the extents in the file evenly spaced
1322 */
1323 i = (newer_off & new_align) >> PAGE_CACHE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001324 } else
1325 goto out_ra;
1326 } else {
1327 i = range->start >> PAGE_CACHE_SHIFT;
1328 }
1329 if (!max_to_defrag)
chandan070034b2015-06-09 10:35:11 +05301330 max_to_defrag = last_index - i + 1;
Chris Mason4cb53002011-05-24 15:35:30 -04001331
Li Zefan2a0f7f52011-10-10 15:43:34 -04001332 /*
1333 * make writeback starts from i, so the defrag range can be
1334 * written sequentially.
1335 */
1336 if (i < inode->i_mapping->writeback_index)
1337 inode->i_mapping->writeback_index = i;
1338
Chris Masonf7f43cc2011-10-11 11:41:40 -04001339 while (i <= last_index && defrag_count < max_to_defrag &&
David Sterbaed6078f2014-06-05 01:59:57 +02001340 (i < DIV_ROUND_UP(i_size_read(inode), PAGE_CACHE_SIZE))) {
Chris Mason4cb53002011-05-24 15:35:30 -04001341 /*
1342 * make sure we stop running if someone unmounts
1343 * the FS
1344 */
1345 if (!(inode->i_sb->s_flags & MS_ACTIVE))
1346 break;
1347
David Sterba210549e2013-02-09 23:38:06 +00001348 if (btrfs_defrag_cancelled(root->fs_info)) {
David Sterbaf14d1042015-10-08 11:37:06 +02001349 btrfs_debug(root->fs_info, "defrag_file cancelled");
David Sterba210549e2013-02-09 23:38:06 +00001350 ret = -EAGAIN;
1351 break;
1352 }
1353
Liu Bo66c26892012-03-29 09:57:45 -04001354 if (!should_defrag_range(inode, (u64)i << PAGE_CACHE_SHIFT,
Li Zefan6c282eb2012-06-11 16:03:35 +08001355 extent_thresh, &last_len, &skip,
Andrew Mahonea43a2112012-06-19 21:08:32 -04001356 &defrag_end, range->flags &
1357 BTRFS_DEFRAG_RANGE_COMPRESS)) {
Chris Mason940100a2010-03-10 10:52:59 -05001358 unsigned long next;
1359 /*
1360 * the should_defrag function tells us how much to skip
1361 * bump our counter by the suggested amount
1362 */
David Sterbaed6078f2014-06-05 01:59:57 +02001363 next = DIV_ROUND_UP(skip, PAGE_CACHE_SIZE);
Chris Mason940100a2010-03-10 10:52:59 -05001364 i = max(i + 1, next);
1365 continue;
1366 }
Li Zefan008873e2011-09-02 15:57:07 +08001367
1368 if (!newer_than) {
1369 cluster = (PAGE_CACHE_ALIGN(defrag_end) >>
1370 PAGE_CACHE_SHIFT) - i;
1371 cluster = min(cluster, max_cluster);
1372 } else {
1373 cluster = max_cluster;
1374 }
1375
Li Zefan008873e2011-09-02 15:57:07 +08001376 if (i + cluster > ra_index) {
1377 ra_index = max(i, ra_index);
1378 btrfs_force_ra(inode->i_mapping, ra, file, ra_index,
1379 cluster);
chandane4826a52015-06-09 17:38:32 +05301380 ra_index += cluster;
Li Zefan008873e2011-09-02 15:57:07 +08001381 }
Chris Mason940100a2010-03-10 10:52:59 -05001382
Liu Boecb8bea2012-03-29 09:57:44 -04001383 mutex_lock(&inode->i_mutex);
Filipe David Borba Manana633085c2013-08-16 15:23:33 +01001384 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)
1385 BTRFS_I(inode)->force_compress = compress_type;
Li Zefan008873e2011-09-02 15:57:07 +08001386 ret = cluster_pages_for_defrag(inode, pages, i, cluster);
Liu Boecb8bea2012-03-29 09:57:44 -04001387 if (ret < 0) {
1388 mutex_unlock(&inode->i_mutex);
Chris Mason4cb53002011-05-24 15:35:30 -04001389 goto out_ra;
Liu Boecb8bea2012-03-29 09:57:44 -04001390 }
Chris Mason940100a2010-03-10 10:52:59 -05001391
Chris Mason4cb53002011-05-24 15:35:30 -04001392 defrag_count += ret;
Namjae Jeond0e1d662012-12-11 16:00:21 -08001393 balance_dirty_pages_ratelimited(inode->i_mapping);
Liu Boecb8bea2012-03-29 09:57:44 -04001394 mutex_unlock(&inode->i_mutex);
Chris Mason4cb53002011-05-24 15:35:30 -04001395
1396 if (newer_than) {
1397 if (newer_off == (u64)-1)
1398 break;
1399
Liu Boe1f041e2012-03-29 09:57:45 -04001400 if (ret > 0)
1401 i += ret;
1402
Chris Mason4cb53002011-05-24 15:35:30 -04001403 newer_off = max(newer_off + 1,
1404 (u64)i << PAGE_CACHE_SHIFT);
1405
Byongho Leeee221842015-12-15 01:42:10 +09001406 ret = find_new_extents(root, inode, newer_than,
1407 &newer_off, SZ_64K);
Chris Mason4cb53002011-05-24 15:35:30 -04001408 if (!ret) {
1409 range->start = newer_off;
1410 i = (newer_off & new_align) >> PAGE_CACHE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001411 } else {
1412 break;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001413 }
Chris Mason4cb53002011-05-24 15:35:30 -04001414 } else {
Li Zefan008873e2011-09-02 15:57:07 +08001415 if (ret > 0) {
Li Zefancbcc8322011-09-02 15:56:25 +08001416 i += ret;
Li Zefan008873e2011-09-02 15:57:07 +08001417 last_len += ret << PAGE_CACHE_SHIFT;
1418 } else {
Li Zefancbcc8322011-09-02 15:56:25 +08001419 i++;
Li Zefan008873e2011-09-02 15:57:07 +08001420 last_len = 0;
1421 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001422 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001423 }
1424
Filipe Mananadec8ef92014-03-01 10:55:54 +00001425 if ((range->flags & BTRFS_DEFRAG_RANGE_START_IO)) {
Chris Mason1e701a32010-03-11 09:42:04 -05001426 filemap_flush(inode->i_mapping);
Filipe Mananadec8ef92014-03-01 10:55:54 +00001427 if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
1428 &BTRFS_I(inode)->runtime_flags))
1429 filemap_flush(inode->i_mapping);
1430 }
Chris Mason1e701a32010-03-11 09:42:04 -05001431
1432 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
1433 /* the filemap_flush will queue IO into the worker threads, but
1434 * we have to make sure the IO is actually started and that
1435 * ordered extents get created before we return
1436 */
1437 atomic_inc(&root->fs_info->async_submit_draining);
1438 while (atomic_read(&root->fs_info->nr_async_submits) ||
1439 atomic_read(&root->fs_info->async_delalloc_pages)) {
1440 wait_event(root->fs_info->async_submit_wait,
1441 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
1442 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
1443 }
1444 atomic_dec(&root->fs_info->async_submit_draining);
Chris Mason1e701a32010-03-11 09:42:04 -05001445 }
1446
Li Zefan1a419d82010-10-25 15:12:50 +08001447 if (range->compress_type == BTRFS_COMPRESS_LZO) {
Mitch Harder2b0ce2c2012-07-24 11:58:43 -06001448 btrfs_set_fs_incompat(root->fs_info, COMPRESS_LZO);
Li Zefan1a419d82010-10-25 15:12:50 +08001449 }
1450
Diego Calleja60ccf822011-09-01 16:33:57 +02001451 ret = defrag_count;
Chris Mason940100a2010-03-10 10:52:59 -05001452
Chris Mason4cb53002011-05-24 15:35:30 -04001453out_ra:
Filipe David Borba Manana633085c2013-08-16 15:23:33 +01001454 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS) {
1455 mutex_lock(&inode->i_mutex);
1456 BTRFS_I(inode)->force_compress = BTRFS_COMPRESS_NONE;
1457 mutex_unlock(&inode->i_mutex);
1458 }
Chris Mason4cb53002011-05-24 15:35:30 -04001459 if (!file)
1460 kfree(ra);
1461 kfree(pages);
Chris Mason940100a2010-03-10 10:52:59 -05001462 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001463}
1464
Miao Xie198605a2012-11-26 08:43:45 +00001465static noinline int btrfs_ioctl_resize(struct file *file,
Yan, Zheng76dda932009-09-21 16:00:26 -04001466 void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001467{
1468 u64 new_size;
1469 u64 old_size;
1470 u64 devid = 1;
Al Viro496ad9a2013-01-23 17:07:38 -05001471 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001472 struct btrfs_ioctl_vol_args *vol_args;
1473 struct btrfs_trans_handle *trans;
1474 struct btrfs_device *device = NULL;
1475 char *sizestr;
Gui Hecheng9a40f122014-03-31 18:03:25 +08001476 char *retptr;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001477 char *devstr = NULL;
1478 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001479 int mod = 0;
1480
Chris Masone441d542009-01-05 16:57:23 -05001481 if (!capable(CAP_SYS_ADMIN))
1482 return -EPERM;
1483
Miao Xie198605a2012-11-26 08:43:45 +00001484 ret = mnt_want_write_file(file);
1485 if (ret)
1486 return ret;
1487
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01001488 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
1489 1)) {
Miao Xie97547672012-12-21 10:38:50 +00001490 mnt_drop_write_file(file);
Anand Jaine57138b2013-08-21 11:44:48 +08001491 return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001492 }
1493
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01001494 mutex_lock(&root->fs_info->volume_mutex);
Li Zefandae7b662009-04-08 15:06:54 +08001495 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001496 if (IS_ERR(vol_args)) {
1497 ret = PTR_ERR(vol_args);
1498 goto out;
1499 }
Mark Fasheh5516e592008-07-24 12:20:14 -04001500
1501 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001502
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001503 sizestr = vol_args->name;
1504 devstr = strchr(sizestr, ':');
1505 if (devstr) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001506 sizestr = devstr + 1;
1507 *devstr = '\0';
1508 devstr = vol_args->name;
ZhangZhen58dfae62014-05-13 16:36:08 +08001509 ret = kstrtoull(devstr, 10, &devid);
1510 if (ret)
1511 goto out_free;
Miao Xiedfd79822012-12-21 09:21:30 +00001512 if (!devid) {
1513 ret = -EINVAL;
1514 goto out_free;
1515 }
Frank Holtonefe120a2013-12-20 11:37:06 -05001516 btrfs_info(root->fs_info, "resizing devid %llu", devid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001517 }
Miao Xiedba60f32012-12-21 09:19:51 +00001518
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01001519 device = btrfs_find_device(root->fs_info, devid, NULL, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001520 if (!device) {
Frank Holtonefe120a2013-12-20 11:37:06 -05001521 btrfs_info(root->fs_info, "resizer unable to find device %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001522 devid);
Miao Xiedfd79822012-12-21 09:21:30 +00001523 ret = -ENODEV;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001524 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001525 }
Miao Xiedba60f32012-12-21 09:19:51 +00001526
1527 if (!device->writeable) {
Frank Holtonefe120a2013-12-20 11:37:06 -05001528 btrfs_info(root->fs_info,
1529 "resizer unable to apply on readonly device %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001530 devid);
Miao Xiedfd79822012-12-21 09:21:30 +00001531 ret = -EPERM;
Liu Bo4e42ae12012-06-14 02:23:19 -06001532 goto out_free;
1533 }
1534
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001535 if (!strcmp(sizestr, "max"))
1536 new_size = device->bdev->bd_inode->i_size;
1537 else {
1538 if (sizestr[0] == '-') {
1539 mod = -1;
1540 sizestr++;
1541 } else if (sizestr[0] == '+') {
1542 mod = 1;
1543 sizestr++;
1544 }
Gui Hecheng9a40f122014-03-31 18:03:25 +08001545 new_size = memparse(sizestr, &retptr);
1546 if (*retptr != '\0' || new_size == 0) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001547 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001548 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001549 }
1550 }
1551
Stefan Behrens63a212a2012-11-05 18:29:28 +01001552 if (device->is_tgtdev_for_dev_replace) {
Miao Xiedfd79822012-12-21 09:21:30 +00001553 ret = -EPERM;
Stefan Behrens63a212a2012-11-05 18:29:28 +01001554 goto out_free;
1555 }
1556
Miao Xie7cc8e582014-09-03 21:35:38 +08001557 old_size = btrfs_device_get_total_bytes(device);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001558
1559 if (mod < 0) {
1560 if (new_size > old_size) {
1561 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001562 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001563 }
1564 new_size = old_size - new_size;
1565 } else if (mod > 0) {
Wenliang Faneb8052e2013-12-20 15:28:56 +08001566 if (new_size > ULLONG_MAX - old_size) {
Gui Hecheng902c68a2014-05-29 09:19:58 +08001567 ret = -ERANGE;
Wenliang Faneb8052e2013-12-20 15:28:56 +08001568 goto out_free;
1569 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001570 new_size = old_size + new_size;
1571 }
1572
Byongho Leeee221842015-12-15 01:42:10 +09001573 if (new_size < SZ_256M) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001574 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001575 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001576 }
1577 if (new_size > device->bdev->bd_inode->i_size) {
1578 ret = -EFBIG;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001579 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001580 }
1581
David Sterbab8b93ad2015-01-16 17:26:13 +01001582 new_size = div_u64(new_size, root->sectorsize);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001583 new_size *= root->sectorsize;
1584
David Sterbaecaeb142015-10-08 09:01:03 +02001585 btrfs_info_in_rcu(root->fs_info, "new size for %s is %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001586 rcu_str_deref(device->name), new_size);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001587
1588 if (new_size > old_size) {
Yan, Zhenga22285a2010-05-16 10:48:46 -04001589 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001590 if (IS_ERR(trans)) {
1591 ret = PTR_ERR(trans);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001592 goto out_free;
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001593 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001594 ret = btrfs_grow_device(trans, device, new_size);
1595 btrfs_commit_transaction(trans, root);
Mike Fleetwoodece7d202011-11-18 18:55:01 +00001596 } else if (new_size < old_size) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001597 ret = btrfs_shrink_device(device, new_size);
jeff.liu0253f402012-10-27 12:06:39 +00001598 } /* equal, nothing need to do */
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001599
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001600out_free:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001601 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001602out:
1603 mutex_unlock(&root->fs_info->volume_mutex);
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01001604 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
Ilya Dryomov18f39c42013-01-20 15:57:57 +02001605 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001606 return ret;
1607}
1608
Sage Weil72fd0322010-10-29 15:41:32 -04001609static noinline int btrfs_ioctl_snap_create_transid(struct file *file,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001610 char *name, unsigned long fd, int subvol,
1611 u64 *transid, bool readonly,
Miao Xie8696c532013-02-07 06:02:44 +00001612 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001613{
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001614 int namelen;
Chris Mason3de45862008-11-17 21:02:50 -05001615 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001616
Liu Boa874a632012-06-29 03:58:46 -06001617 ret = mnt_want_write_file(file);
1618 if (ret)
1619 goto out;
1620
Sage Weil72fd0322010-10-29 15:41:32 -04001621 namelen = strlen(name);
1622 if (strchr(name, '/')) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001623 ret = -EINVAL;
Liu Boa874a632012-06-29 03:58:46 -06001624 goto out_drop_write;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001625 }
1626
Chris Mason16780ca2012-02-20 22:14:55 -05001627 if (name[0] == '.' &&
1628 (namelen == 1 || (name[1] == '.' && namelen == 2))) {
1629 ret = -EEXIST;
Liu Boa874a632012-06-29 03:58:46 -06001630 goto out_drop_write;
Chris Mason16780ca2012-02-20 22:14:55 -05001631 }
1632
Chris Mason3de45862008-11-17 21:02:50 -05001633 if (subvol) {
Sage Weil72fd0322010-10-29 15:41:32 -04001634 ret = btrfs_mksubvol(&file->f_path, name, namelen,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001635 NULL, transid, readonly, inherit);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001636 } else {
Al Viro2903ff02012-08-28 12:52:22 -04001637 struct fd src = fdget(fd);
Chris Mason3de45862008-11-17 21:02:50 -05001638 struct inode *src_inode;
Al Viro2903ff02012-08-28 12:52:22 -04001639 if (!src.file) {
Chris Mason3de45862008-11-17 21:02:50 -05001640 ret = -EINVAL;
Liu Boa874a632012-06-29 03:58:46 -06001641 goto out_drop_write;
Chris Mason3de45862008-11-17 21:02:50 -05001642 }
1643
Al Viro496ad9a2013-01-23 17:07:38 -05001644 src_inode = file_inode(src.file);
1645 if (src_inode->i_sb != file_inode(file)->i_sb) {
Frank Holtonefe120a2013-12-20 11:37:06 -05001646 btrfs_info(BTRFS_I(src_inode)->root->fs_info,
1647 "Snapshot src from another FS");
Kusanagi Kouichi23ad5b12014-01-30 16:32:02 +09001648 ret = -EXDEV;
David Sterbad0242062014-01-15 18:15:52 +01001649 } else if (!inode_owner_or_capable(src_inode)) {
1650 /*
1651 * Subvolume creation is not restricted, but snapshots
1652 * are limited to own subvolumes only
1653 */
1654 ret = -EPERM;
Al Viroecd18812012-08-26 21:20:24 -04001655 } else {
1656 ret = btrfs_mksubvol(&file->f_path, name, namelen,
1657 BTRFS_I(src_inode)->root,
1658 transid, readonly, inherit);
Chris Mason3de45862008-11-17 21:02:50 -05001659 }
Al Viro2903ff02012-08-28 12:52:22 -04001660 fdput(src);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001661 }
Liu Boa874a632012-06-29 03:58:46 -06001662out_drop_write:
1663 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001664out:
Sage Weil72fd0322010-10-29 15:41:32 -04001665 return ret;
1666}
1667
1668static noinline int btrfs_ioctl_snap_create(struct file *file,
Li Zefanfa0d2b92010-12-20 15:53:28 +08001669 void __user *arg, int subvol)
Sage Weil72fd0322010-10-29 15:41:32 -04001670{
Li Zefanfa0d2b92010-12-20 15:53:28 +08001671 struct btrfs_ioctl_vol_args *vol_args;
Sage Weil72fd0322010-10-29 15:41:32 -04001672 int ret;
1673
Li Zefanfa0d2b92010-12-20 15:53:28 +08001674 vol_args = memdup_user(arg, sizeof(*vol_args));
1675 if (IS_ERR(vol_args))
1676 return PTR_ERR(vol_args);
1677 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Sage Weil72fd0322010-10-29 15:41:32 -04001678
Li Zefanfa0d2b92010-12-20 15:53:28 +08001679 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
Li Zefanb83cc962010-12-20 16:04:08 +08001680 vol_args->fd, subvol,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001681 NULL, false, NULL);
Li Zefanfdfb1e42010-12-10 06:41:56 +00001682
Li Zefanfa0d2b92010-12-20 15:53:28 +08001683 kfree(vol_args);
1684 return ret;
1685}
Li Zefanfdfb1e42010-12-10 06:41:56 +00001686
Li Zefanfa0d2b92010-12-20 15:53:28 +08001687static noinline int btrfs_ioctl_snap_create_v2(struct file *file,
1688 void __user *arg, int subvol)
1689{
1690 struct btrfs_ioctl_vol_args_v2 *vol_args;
1691 int ret;
1692 u64 transid = 0;
1693 u64 *ptr = NULL;
Li Zefanb83cc962010-12-20 16:04:08 +08001694 bool readonly = false;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001695 struct btrfs_qgroup_inherit *inherit = NULL;
Li Zefanfdfb1e42010-12-10 06:41:56 +00001696
Li Zefanfa0d2b92010-12-20 15:53:28 +08001697 vol_args = memdup_user(arg, sizeof(*vol_args));
1698 if (IS_ERR(vol_args))
1699 return PTR_ERR(vol_args);
1700 vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
Sage Weil75eaa0e2010-12-10 00:36:28 +00001701
Li Zefanb83cc962010-12-20 16:04:08 +08001702 if (vol_args->flags &
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001703 ~(BTRFS_SUBVOL_CREATE_ASYNC | BTRFS_SUBVOL_RDONLY |
1704 BTRFS_SUBVOL_QGROUP_INHERIT)) {
Li Zefanb83cc962010-12-20 16:04:08 +08001705 ret = -EOPNOTSUPP;
Dan Carpenterc47ca322014-09-04 14:09:15 +03001706 goto free_args;
Sage Weil72fd0322010-10-29 15:41:32 -04001707 }
Li Zefanfa0d2b92010-12-20 15:53:28 +08001708
1709 if (vol_args->flags & BTRFS_SUBVOL_CREATE_ASYNC)
1710 ptr = &transid;
Li Zefanb83cc962010-12-20 16:04:08 +08001711 if (vol_args->flags & BTRFS_SUBVOL_RDONLY)
1712 readonly = true;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001713 if (vol_args->flags & BTRFS_SUBVOL_QGROUP_INHERIT) {
1714 if (vol_args->size > PAGE_CACHE_SIZE) {
1715 ret = -EINVAL;
Dan Carpenterc47ca322014-09-04 14:09:15 +03001716 goto free_args;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001717 }
1718 inherit = memdup_user(vol_args->qgroup_inherit, vol_args->size);
1719 if (IS_ERR(inherit)) {
1720 ret = PTR_ERR(inherit);
Dan Carpenterc47ca322014-09-04 14:09:15 +03001721 goto free_args;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001722 }
1723 }
Li Zefanfa0d2b92010-12-20 15:53:28 +08001724
1725 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001726 vol_args->fd, subvol, ptr,
Miao Xie8696c532013-02-07 06:02:44 +00001727 readonly, inherit);
Dan Carpenterc47ca322014-09-04 14:09:15 +03001728 if (ret)
1729 goto free_inherit;
Li Zefanfa0d2b92010-12-20 15:53:28 +08001730
Dan Carpenterc47ca322014-09-04 14:09:15 +03001731 if (ptr && copy_to_user(arg +
1732 offsetof(struct btrfs_ioctl_vol_args_v2,
1733 transid),
1734 ptr, sizeof(*ptr)))
Li Zefanfa0d2b92010-12-20 15:53:28 +08001735 ret = -EFAULT;
Dan Carpenterc47ca322014-09-04 14:09:15 +03001736
1737free_inherit:
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001738 kfree(inherit);
Dan Carpenterc47ca322014-09-04 14:09:15 +03001739free_args:
1740 kfree(vol_args);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001741 return ret;
1742}
1743
Li Zefan0caa1022010-12-20 16:30:25 +08001744static noinline int btrfs_ioctl_subvol_getflags(struct file *file,
1745 void __user *arg)
1746{
Al Viro496ad9a2013-01-23 17:07:38 -05001747 struct inode *inode = file_inode(file);
Li Zefan0caa1022010-12-20 16:30:25 +08001748 struct btrfs_root *root = BTRFS_I(inode)->root;
1749 int ret = 0;
1750 u64 flags = 0;
1751
Li Zefan33345d012011-04-20 10:31:50 +08001752 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID)
Li Zefan0caa1022010-12-20 16:30:25 +08001753 return -EINVAL;
1754
1755 down_read(&root->fs_info->subvol_sem);
1756 if (btrfs_root_readonly(root))
1757 flags |= BTRFS_SUBVOL_RDONLY;
1758 up_read(&root->fs_info->subvol_sem);
1759
1760 if (copy_to_user(arg, &flags, sizeof(flags)))
1761 ret = -EFAULT;
1762
1763 return ret;
1764}
1765
1766static noinline int btrfs_ioctl_subvol_setflags(struct file *file,
1767 void __user *arg)
1768{
Al Viro496ad9a2013-01-23 17:07:38 -05001769 struct inode *inode = file_inode(file);
Li Zefan0caa1022010-12-20 16:30:25 +08001770 struct btrfs_root *root = BTRFS_I(inode)->root;
1771 struct btrfs_trans_handle *trans;
1772 u64 root_flags;
1773 u64 flags;
1774 int ret = 0;
1775
David Sterbabd60ea02014-01-16 15:50:22 +01001776 if (!inode_owner_or_capable(inode))
1777 return -EPERM;
1778
Liu Bob9ca0662012-06-29 03:58:49 -06001779 ret = mnt_want_write_file(file);
1780 if (ret)
1781 goto out;
Li Zefan0caa1022010-12-20 16:30:25 +08001782
Liu Bob9ca0662012-06-29 03:58:49 -06001783 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
1784 ret = -EINVAL;
1785 goto out_drop_write;
1786 }
Li Zefan0caa1022010-12-20 16:30:25 +08001787
Liu Bob9ca0662012-06-29 03:58:49 -06001788 if (copy_from_user(&flags, arg, sizeof(flags))) {
1789 ret = -EFAULT;
1790 goto out_drop_write;
1791 }
Li Zefan0caa1022010-12-20 16:30:25 +08001792
Liu Bob9ca0662012-06-29 03:58:49 -06001793 if (flags & BTRFS_SUBVOL_CREATE_ASYNC) {
1794 ret = -EINVAL;
1795 goto out_drop_write;
1796 }
Li Zefan0caa1022010-12-20 16:30:25 +08001797
Liu Bob9ca0662012-06-29 03:58:49 -06001798 if (flags & ~BTRFS_SUBVOL_RDONLY) {
1799 ret = -EOPNOTSUPP;
1800 goto out_drop_write;
1801 }
Li Zefan0caa1022010-12-20 16:30:25 +08001802
1803 down_write(&root->fs_info->subvol_sem);
1804
1805 /* nothing to do */
1806 if (!!(flags & BTRFS_SUBVOL_RDONLY) == btrfs_root_readonly(root))
Liu Bob9ca0662012-06-29 03:58:49 -06001807 goto out_drop_sem;
Li Zefan0caa1022010-12-20 16:30:25 +08001808
1809 root_flags = btrfs_root_flags(&root->root_item);
David Sterba2c686532013-12-16 17:34:17 +01001810 if (flags & BTRFS_SUBVOL_RDONLY) {
Li Zefan0caa1022010-12-20 16:30:25 +08001811 btrfs_set_root_flags(&root->root_item,
1812 root_flags | BTRFS_ROOT_SUBVOL_RDONLY);
David Sterba2c686532013-12-16 17:34:17 +01001813 } else {
1814 /*
1815 * Block RO -> RW transition if this subvolume is involved in
1816 * send
1817 */
1818 spin_lock(&root->root_item_lock);
1819 if (root->send_in_progress == 0) {
1820 btrfs_set_root_flags(&root->root_item,
Li Zefan0caa1022010-12-20 16:30:25 +08001821 root_flags & ~BTRFS_ROOT_SUBVOL_RDONLY);
David Sterba2c686532013-12-16 17:34:17 +01001822 spin_unlock(&root->root_item_lock);
1823 } else {
1824 spin_unlock(&root->root_item_lock);
1825 btrfs_warn(root->fs_info,
1826 "Attempt to set subvolume %llu read-write during send",
1827 root->root_key.objectid);
1828 ret = -EPERM;
1829 goto out_drop_sem;
1830 }
1831 }
Li Zefan0caa1022010-12-20 16:30:25 +08001832
1833 trans = btrfs_start_transaction(root, 1);
1834 if (IS_ERR(trans)) {
1835 ret = PTR_ERR(trans);
1836 goto out_reset;
1837 }
1838
Li Zefanb4dc2b82011-02-16 06:06:34 +00001839 ret = btrfs_update_root(trans, root->fs_info->tree_root,
Li Zefan0caa1022010-12-20 16:30:25 +08001840 &root->root_key, &root->root_item);
1841
1842 btrfs_commit_transaction(trans, root);
1843out_reset:
1844 if (ret)
1845 btrfs_set_root_flags(&root->root_item, root_flags);
Liu Bob9ca0662012-06-29 03:58:49 -06001846out_drop_sem:
Li Zefan0caa1022010-12-20 16:30:25 +08001847 up_write(&root->fs_info->subvol_sem);
Liu Bob9ca0662012-06-29 03:58:49 -06001848out_drop_write:
1849 mnt_drop_write_file(file);
1850out:
Li Zefan0caa1022010-12-20 16:30:25 +08001851 return ret;
1852}
1853
Yan, Zheng76dda932009-09-21 16:00:26 -04001854/*
1855 * helper to check if the subvolume references other subvolumes
1856 */
1857static noinline int may_destroy_subvol(struct btrfs_root *root)
1858{
1859 struct btrfs_path *path;
Josef Bacik175a2b82013-08-12 15:36:44 -04001860 struct btrfs_dir_item *di;
Yan, Zheng76dda932009-09-21 16:00:26 -04001861 struct btrfs_key key;
Josef Bacik175a2b82013-08-12 15:36:44 -04001862 u64 dir_id;
Yan, Zheng76dda932009-09-21 16:00:26 -04001863 int ret;
1864
1865 path = btrfs_alloc_path();
1866 if (!path)
1867 return -ENOMEM;
1868
Josef Bacik175a2b82013-08-12 15:36:44 -04001869 /* Make sure this root isn't set as the default subvol */
1870 dir_id = btrfs_super_root_dir(root->fs_info->super_copy);
1871 di = btrfs_lookup_dir_item(NULL, root->fs_info->tree_root, path,
1872 dir_id, "default", 7, 0);
1873 if (di && !IS_ERR(di)) {
1874 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &key);
1875 if (key.objectid == root->root_key.objectid) {
Guangyu Sun72de6b52014-03-11 11:24:18 -07001876 ret = -EPERM;
1877 btrfs_err(root->fs_info, "deleting default subvolume "
1878 "%llu is not allowed", key.objectid);
Josef Bacik175a2b82013-08-12 15:36:44 -04001879 goto out;
1880 }
1881 btrfs_release_path(path);
1882 }
1883
Yan, Zheng76dda932009-09-21 16:00:26 -04001884 key.objectid = root->root_key.objectid;
1885 key.type = BTRFS_ROOT_REF_KEY;
1886 key.offset = (u64)-1;
1887
1888 ret = btrfs_search_slot(NULL, root->fs_info->tree_root,
1889 &key, path, 0, 0);
1890 if (ret < 0)
1891 goto out;
1892 BUG_ON(ret == 0);
1893
1894 ret = 0;
1895 if (path->slots[0] > 0) {
1896 path->slots[0]--;
1897 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1898 if (key.objectid == root->root_key.objectid &&
1899 key.type == BTRFS_ROOT_REF_KEY)
1900 ret = -ENOTEMPTY;
1901 }
1902out:
1903 btrfs_free_path(path);
1904 return ret;
1905}
1906
Chris Masonac8e9812010-02-28 15:39:26 -05001907static noinline int key_in_sk(struct btrfs_key *key,
1908 struct btrfs_ioctl_search_key *sk)
1909{
Chris Masonabc6e132010-03-18 12:10:08 -04001910 struct btrfs_key test;
1911 int ret;
1912
1913 test.objectid = sk->min_objectid;
1914 test.type = sk->min_type;
1915 test.offset = sk->min_offset;
1916
1917 ret = btrfs_comp_cpu_keys(key, &test);
1918 if (ret < 0)
Chris Masonac8e9812010-02-28 15:39:26 -05001919 return 0;
Chris Masonabc6e132010-03-18 12:10:08 -04001920
1921 test.objectid = sk->max_objectid;
1922 test.type = sk->max_type;
1923 test.offset = sk->max_offset;
1924
1925 ret = btrfs_comp_cpu_keys(key, &test);
1926 if (ret > 0)
Chris Masonac8e9812010-02-28 15:39:26 -05001927 return 0;
1928 return 1;
1929}
1930
1931static noinline int copy_to_sk(struct btrfs_root *root,
1932 struct btrfs_path *path,
1933 struct btrfs_key *key,
1934 struct btrfs_ioctl_search_key *sk,
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001935 size_t *buf_size,
Gerhard Heiftba346b32014-01-30 16:24:02 +01001936 char __user *ubuf,
Chris Masonac8e9812010-02-28 15:39:26 -05001937 unsigned long *sk_offset,
1938 int *num_found)
1939{
1940 u64 found_transid;
1941 struct extent_buffer *leaf;
1942 struct btrfs_ioctl_search_header sh;
Naohiro Aotadd81d452015-06-30 11:25:43 +09001943 struct btrfs_key test;
Chris Masonac8e9812010-02-28 15:39:26 -05001944 unsigned long item_off;
1945 unsigned long item_len;
1946 int nritems;
1947 int i;
1948 int slot;
Chris Masonac8e9812010-02-28 15:39:26 -05001949 int ret = 0;
1950
1951 leaf = path->nodes[0];
1952 slot = path->slots[0];
1953 nritems = btrfs_header_nritems(leaf);
1954
1955 if (btrfs_header_generation(leaf) > sk->max_transid) {
1956 i = nritems;
1957 goto advance_key;
1958 }
1959 found_transid = btrfs_header_generation(leaf);
1960
1961 for (i = slot; i < nritems; i++) {
1962 item_off = btrfs_item_ptr_offset(leaf, i);
1963 item_len = btrfs_item_size_nr(leaf, i);
1964
Gabriel de Perthuis03b71c62013-05-06 17:40:18 +00001965 btrfs_item_key_to_cpu(leaf, key, i);
1966 if (!key_in_sk(key, sk))
1967 continue;
1968
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001969 if (sizeof(sh) + item_len > *buf_size) {
Gerhard Heift8f5f6172014-01-30 16:23:59 +01001970 if (*num_found) {
1971 ret = 1;
1972 goto out;
1973 }
Chris Masonac8e9812010-02-28 15:39:26 -05001974
Gerhard Heift8f5f6172014-01-30 16:23:59 +01001975 /*
1976 * return one empty item back for v1, which does not
1977 * handle -EOVERFLOW
1978 */
1979
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001980 *buf_size = sizeof(sh) + item_len;
Chris Masonac8e9812010-02-28 15:39:26 -05001981 item_len = 0;
Gerhard Heift8f5f6172014-01-30 16:23:59 +01001982 ret = -EOVERFLOW;
1983 }
Chris Masonac8e9812010-02-28 15:39:26 -05001984
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001985 if (sizeof(sh) + item_len + *sk_offset > *buf_size) {
Chris Masonac8e9812010-02-28 15:39:26 -05001986 ret = 1;
Gerhard Heift25c9bc22014-01-30 16:23:57 +01001987 goto out;
Chris Masonac8e9812010-02-28 15:39:26 -05001988 }
1989
Chris Masonac8e9812010-02-28 15:39:26 -05001990 sh.objectid = key->objectid;
1991 sh.offset = key->offset;
1992 sh.type = key->type;
1993 sh.len = item_len;
1994 sh.transid = found_transid;
1995
1996 /* copy search result header */
Gerhard Heiftba346b32014-01-30 16:24:02 +01001997 if (copy_to_user(ubuf + *sk_offset, &sh, sizeof(sh))) {
1998 ret = -EFAULT;
1999 goto out;
2000 }
2001
Chris Masonac8e9812010-02-28 15:39:26 -05002002 *sk_offset += sizeof(sh);
2003
2004 if (item_len) {
Gerhard Heiftba346b32014-01-30 16:24:02 +01002005 char __user *up = ubuf + *sk_offset;
Chris Masonac8e9812010-02-28 15:39:26 -05002006 /* copy the item */
Gerhard Heiftba346b32014-01-30 16:24:02 +01002007 if (read_extent_buffer_to_user(leaf, up,
2008 item_off, item_len)) {
2009 ret = -EFAULT;
2010 goto out;
2011 }
2012
Chris Masonac8e9812010-02-28 15:39:26 -05002013 *sk_offset += item_len;
Chris Masonac8e9812010-02-28 15:39:26 -05002014 }
Hugo Millse2156862011-05-14 17:43:41 +00002015 (*num_found)++;
Chris Masonac8e9812010-02-28 15:39:26 -05002016
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002017 if (ret) /* -EOVERFLOW from above */
2018 goto out;
2019
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002020 if (*num_found >= sk->nr_items) {
2021 ret = 1;
2022 goto out;
2023 }
Chris Masonac8e9812010-02-28 15:39:26 -05002024 }
2025advance_key:
Chris Masonac8e9812010-02-28 15:39:26 -05002026 ret = 0;
Naohiro Aotadd81d452015-06-30 11:25:43 +09002027 test.objectid = sk->max_objectid;
2028 test.type = sk->max_type;
2029 test.offset = sk->max_offset;
2030 if (btrfs_comp_cpu_keys(key, &test) >= 0)
2031 ret = 1;
2032 else if (key->offset < (u64)-1)
Chris Masonabc6e132010-03-18 12:10:08 -04002033 key->offset++;
Naohiro Aotadd81d452015-06-30 11:25:43 +09002034 else if (key->type < (u8)-1) {
Chris Masonabc6e132010-03-18 12:10:08 -04002035 key->offset = 0;
2036 key->type++;
Naohiro Aotadd81d452015-06-30 11:25:43 +09002037 } else if (key->objectid < (u64)-1) {
Chris Masonabc6e132010-03-18 12:10:08 -04002038 key->offset = 0;
2039 key->type = 0;
2040 key->objectid++;
2041 } else
2042 ret = 1;
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002043out:
Gerhard Heiftba346b32014-01-30 16:24:02 +01002044 /*
2045 * 0: all items from this leaf copied, continue with next
2046 * 1: * more items can be copied, but unused buffer is too small
2047 * * all items were found
2048 * Either way, it will stops the loop which iterates to the next
2049 * leaf
2050 * -EOVERFLOW: item was to large for buffer
2051 * -EFAULT: could not copy extent buffer back to userspace
2052 */
Chris Masonac8e9812010-02-28 15:39:26 -05002053 return ret;
2054}
2055
2056static noinline int search_ioctl(struct inode *inode,
Gerhard Heift12544442014-01-30 16:23:58 +01002057 struct btrfs_ioctl_search_key *sk,
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002058 size_t *buf_size,
Gerhard Heiftba346b32014-01-30 16:24:02 +01002059 char __user *ubuf)
Chris Masonac8e9812010-02-28 15:39:26 -05002060{
2061 struct btrfs_root *root;
2062 struct btrfs_key key;
Chris Masonac8e9812010-02-28 15:39:26 -05002063 struct btrfs_path *path;
Chris Masonac8e9812010-02-28 15:39:26 -05002064 struct btrfs_fs_info *info = BTRFS_I(inode)->root->fs_info;
2065 int ret;
2066 int num_found = 0;
2067 unsigned long sk_offset = 0;
2068
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002069 if (*buf_size < sizeof(struct btrfs_ioctl_search_header)) {
2070 *buf_size = sizeof(struct btrfs_ioctl_search_header);
Gerhard Heift12544442014-01-30 16:23:58 +01002071 return -EOVERFLOW;
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002072 }
Gerhard Heift12544442014-01-30 16:23:58 +01002073
Chris Masonac8e9812010-02-28 15:39:26 -05002074 path = btrfs_alloc_path();
2075 if (!path)
2076 return -ENOMEM;
2077
2078 if (sk->tree_id == 0) {
2079 /* search the root of the inode that was passed */
2080 root = BTRFS_I(inode)->root;
2081 } else {
2082 key.objectid = sk->tree_id;
2083 key.type = BTRFS_ROOT_ITEM_KEY;
2084 key.offset = (u64)-1;
2085 root = btrfs_read_fs_root_no_name(info, &key);
2086 if (IS_ERR(root)) {
David Sterbaf14d1042015-10-08 11:37:06 +02002087 btrfs_err(info, "could not find root %llu",
Chris Masonac8e9812010-02-28 15:39:26 -05002088 sk->tree_id);
2089 btrfs_free_path(path);
2090 return -ENOENT;
2091 }
2092 }
2093
2094 key.objectid = sk->min_objectid;
2095 key.type = sk->min_type;
2096 key.offset = sk->min_offset;
2097
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302098 while (1) {
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +01002099 ret = btrfs_search_forward(root, &key, path, sk->min_transid);
Chris Masonac8e9812010-02-28 15:39:26 -05002100 if (ret != 0) {
2101 if (ret > 0)
2102 ret = 0;
2103 goto err;
2104 }
Gerhard Heiftba346b32014-01-30 16:24:02 +01002105 ret = copy_to_sk(root, path, &key, sk, buf_size, ubuf,
Chris Masonac8e9812010-02-28 15:39:26 -05002106 &sk_offset, &num_found);
David Sterbab3b4aa72011-04-21 01:20:15 +02002107 btrfs_release_path(path);
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002108 if (ret)
Chris Masonac8e9812010-02-28 15:39:26 -05002109 break;
2110
2111 }
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002112 if (ret > 0)
2113 ret = 0;
Chris Masonac8e9812010-02-28 15:39:26 -05002114err:
2115 sk->nr_items = num_found;
2116 btrfs_free_path(path);
2117 return ret;
2118}
2119
2120static noinline int btrfs_ioctl_tree_search(struct file *file,
2121 void __user *argp)
2122{
Gerhard Heiftba346b32014-01-30 16:24:02 +01002123 struct btrfs_ioctl_search_args __user *uargs;
2124 struct btrfs_ioctl_search_key sk;
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002125 struct inode *inode;
2126 int ret;
2127 size_t buf_size;
Chris Masonac8e9812010-02-28 15:39:26 -05002128
2129 if (!capable(CAP_SYS_ADMIN))
2130 return -EPERM;
2131
Gerhard Heiftba346b32014-01-30 16:24:02 +01002132 uargs = (struct btrfs_ioctl_search_args __user *)argp;
Chris Masonac8e9812010-02-28 15:39:26 -05002133
Gerhard Heiftba346b32014-01-30 16:24:02 +01002134 if (copy_from_user(&sk, &uargs->key, sizeof(sk)))
2135 return -EFAULT;
2136
2137 buf_size = sizeof(uargs->buf);
Chris Masonac8e9812010-02-28 15:39:26 -05002138
Al Viro496ad9a2013-01-23 17:07:38 -05002139 inode = file_inode(file);
Gerhard Heiftba346b32014-01-30 16:24:02 +01002140 ret = search_ioctl(inode, &sk, &buf_size, uargs->buf);
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002141
2142 /*
2143 * In the origin implementation an overflow is handled by returning a
2144 * search header with a len of zero, so reset ret.
2145 */
2146 if (ret == -EOVERFLOW)
2147 ret = 0;
2148
Gerhard Heiftba346b32014-01-30 16:24:02 +01002149 if (ret == 0 && copy_to_user(&uargs->key, &sk, sizeof(sk)))
Chris Masonac8e9812010-02-28 15:39:26 -05002150 ret = -EFAULT;
Chris Masonac8e9812010-02-28 15:39:26 -05002151 return ret;
2152}
2153
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002154static noinline int btrfs_ioctl_tree_search_v2(struct file *file,
2155 void __user *argp)
2156{
2157 struct btrfs_ioctl_search_args_v2 __user *uarg;
2158 struct btrfs_ioctl_search_args_v2 args;
2159 struct inode *inode;
2160 int ret;
2161 size_t buf_size;
Byongho Leeee221842015-12-15 01:42:10 +09002162 const size_t buf_limit = SZ_16M;
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002163
2164 if (!capable(CAP_SYS_ADMIN))
2165 return -EPERM;
2166
2167 /* copy search header and buffer size */
2168 uarg = (struct btrfs_ioctl_search_args_v2 __user *)argp;
2169 if (copy_from_user(&args, uarg, sizeof(args)))
2170 return -EFAULT;
2171
2172 buf_size = args.buf_size;
2173
2174 if (buf_size < sizeof(struct btrfs_ioctl_search_header))
2175 return -EOVERFLOW;
2176
2177 /* limit result size to 16MB */
2178 if (buf_size > buf_limit)
2179 buf_size = buf_limit;
2180
2181 inode = file_inode(file);
2182 ret = search_ioctl(inode, &args.key, &buf_size,
2183 (char *)(&uarg->buf[0]));
2184 if (ret == 0 && copy_to_user(&uarg->key, &args.key, sizeof(args.key)))
2185 ret = -EFAULT;
2186 else if (ret == -EOVERFLOW &&
2187 copy_to_user(&uarg->buf_size, &buf_size, sizeof(buf_size)))
2188 ret = -EFAULT;
2189
Yan, Zheng76dda932009-09-21 16:00:26 -04002190 return ret;
2191}
2192
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002193/*
Chris Masonac8e9812010-02-28 15:39:26 -05002194 * Search INODE_REFs to identify path name of 'dirid' directory
2195 * in a 'tree_id' tree. and sets path name to 'name'.
2196 */
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002197static noinline int btrfs_search_path_in_tree(struct btrfs_fs_info *info,
2198 u64 tree_id, u64 dirid, char *name)
2199{
2200 struct btrfs_root *root;
2201 struct btrfs_key key;
Chris Masonac8e9812010-02-28 15:39:26 -05002202 char *ptr;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002203 int ret = -1;
2204 int slot;
2205 int len;
2206 int total_len = 0;
2207 struct btrfs_inode_ref *iref;
2208 struct extent_buffer *l;
2209 struct btrfs_path *path;
2210
2211 if (dirid == BTRFS_FIRST_FREE_OBJECTID) {
2212 name[0]='\0';
2213 return 0;
2214 }
2215
2216 path = btrfs_alloc_path();
2217 if (!path)
2218 return -ENOMEM;
2219
Chris Masonac8e9812010-02-28 15:39:26 -05002220 ptr = &name[BTRFS_INO_LOOKUP_PATH_MAX];
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002221
2222 key.objectid = tree_id;
2223 key.type = BTRFS_ROOT_ITEM_KEY;
2224 key.offset = (u64)-1;
2225 root = btrfs_read_fs_root_no_name(info, &key);
2226 if (IS_ERR(root)) {
David Sterbaf14d1042015-10-08 11:37:06 +02002227 btrfs_err(info, "could not find root %llu", tree_id);
Chris Mason8ad6fca2010-03-18 12:23:10 -04002228 ret = -ENOENT;
2229 goto out;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002230 }
2231
2232 key.objectid = dirid;
2233 key.type = BTRFS_INODE_REF_KEY;
Chris Mason8ad6fca2010-03-18 12:23:10 -04002234 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002235
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302236 while (1) {
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002237 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2238 if (ret < 0)
2239 goto out;
Filipe David Borba Manana18674c62013-08-14 03:00:21 +01002240 else if (ret > 0) {
2241 ret = btrfs_previous_item(root, path, dirid,
2242 BTRFS_INODE_REF_KEY);
2243 if (ret < 0)
2244 goto out;
2245 else if (ret > 0) {
2246 ret = -ENOENT;
2247 goto out;
2248 }
2249 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002250
2251 l = path->nodes[0];
2252 slot = path->slots[0];
2253 btrfs_item_key_to_cpu(l, &key, slot);
2254
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002255 iref = btrfs_item_ptr(l, slot, struct btrfs_inode_ref);
2256 len = btrfs_inode_ref_name_len(l, iref);
2257 ptr -= len + 1;
2258 total_len += len + 1;
Filipe David Borba Mananaa696cf32013-08-14 03:00:20 +01002259 if (ptr < name) {
2260 ret = -ENAMETOOLONG;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002261 goto out;
Filipe David Borba Mananaa696cf32013-08-14 03:00:20 +01002262 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002263
2264 *(ptr + len) = '/';
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302265 read_extent_buffer(l, ptr, (unsigned long)(iref + 1), len);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002266
2267 if (key.offset == BTRFS_FIRST_FREE_OBJECTID)
2268 break;
2269
David Sterbab3b4aa72011-04-21 01:20:15 +02002270 btrfs_release_path(path);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002271 key.objectid = key.offset;
Chris Mason8ad6fca2010-03-18 12:23:10 -04002272 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002273 dirid = key.objectid;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002274 }
Li Zefan77906a502011-07-14 03:16:00 +00002275 memmove(name, ptr, total_len);
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302276 name[total_len] = '\0';
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002277 ret = 0;
2278out:
2279 btrfs_free_path(path);
Chris Masonac8e9812010-02-28 15:39:26 -05002280 return ret;
2281}
2282
2283static noinline int btrfs_ioctl_ino_lookup(struct file *file,
2284 void __user *argp)
2285{
2286 struct btrfs_ioctl_ino_lookup_args *args;
2287 struct inode *inode;
David Sterba01b810b2015-05-12 19:14:49 +02002288 int ret = 0;
Chris Masonac8e9812010-02-28 15:39:26 -05002289
Julia Lawall2354d082010-10-29 15:14:18 -04002290 args = memdup_user(argp, sizeof(*args));
2291 if (IS_ERR(args))
2292 return PTR_ERR(args);
Dan Carpenterc2b96922010-03-20 11:24:15 +00002293
Al Viro496ad9a2013-01-23 17:07:38 -05002294 inode = file_inode(file);
Chris Masonac8e9812010-02-28 15:39:26 -05002295
David Sterba01b810b2015-05-12 19:14:49 +02002296 /*
2297 * Unprivileged query to obtain the containing subvolume root id. The
2298 * path is reset so it's consistent with btrfs_search_path_in_tree.
2299 */
Chris Mason1b53ac42010-03-18 12:17:05 -04002300 if (args->treeid == 0)
2301 args->treeid = BTRFS_I(inode)->root->root_key.objectid;
2302
David Sterba01b810b2015-05-12 19:14:49 +02002303 if (args->objectid == BTRFS_FIRST_FREE_OBJECTID) {
2304 args->name[0] = 0;
2305 goto out;
2306 }
2307
2308 if (!capable(CAP_SYS_ADMIN)) {
2309 ret = -EPERM;
2310 goto out;
2311 }
2312
Chris Masonac8e9812010-02-28 15:39:26 -05002313 ret = btrfs_search_path_in_tree(BTRFS_I(inode)->root->fs_info,
2314 args->treeid, args->objectid,
2315 args->name);
2316
David Sterba01b810b2015-05-12 19:14:49 +02002317out:
Chris Masonac8e9812010-02-28 15:39:26 -05002318 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
2319 ret = -EFAULT;
2320
2321 kfree(args);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002322 return ret;
2323}
2324
Yan, Zheng76dda932009-09-21 16:00:26 -04002325static noinline int btrfs_ioctl_snap_destroy(struct file *file,
2326 void __user *arg)
2327{
Al Viro54563d42013-09-01 15:57:51 -04002328 struct dentry *parent = file->f_path.dentry;
Yan, Zheng76dda932009-09-21 16:00:26 -04002329 struct dentry *dentry;
David Howells2b0143b2015-03-17 22:25:59 +00002330 struct inode *dir = d_inode(parent);
Yan, Zheng76dda932009-09-21 16:00:26 -04002331 struct inode *inode;
2332 struct btrfs_root *root = BTRFS_I(dir)->root;
2333 struct btrfs_root *dest = NULL;
2334 struct btrfs_ioctl_vol_args *vol_args;
2335 struct btrfs_trans_handle *trans;
Miao Xiec58aaad2013-02-28 10:05:36 +00002336 struct btrfs_block_rsv block_rsv;
David Sterba521e0542014-04-15 16:41:44 +02002337 u64 root_flags;
Miao Xiec58aaad2013-02-28 10:05:36 +00002338 u64 qgroup_reserved;
Yan, Zheng76dda932009-09-21 16:00:26 -04002339 int namelen;
2340 int ret;
2341 int err = 0;
2342
Yan, Zheng76dda932009-09-21 16:00:26 -04002343 vol_args = memdup_user(arg, sizeof(*vol_args));
2344 if (IS_ERR(vol_args))
2345 return PTR_ERR(vol_args);
2346
2347 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
2348 namelen = strlen(vol_args->name);
2349 if (strchr(vol_args->name, '/') ||
2350 strncmp(vol_args->name, "..", namelen) == 0) {
2351 err = -EINVAL;
2352 goto out;
2353 }
2354
Al Viroa561be72011-11-23 11:57:51 -05002355 err = mnt_want_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04002356 if (err)
2357 goto out;
2358
David Sterba521e0542014-04-15 16:41:44 +02002359
David Sterba5c50c9b2013-03-22 18:12:51 +00002360 err = mutex_lock_killable_nested(&dir->i_mutex, I_MUTEX_PARENT);
2361 if (err == -EINTR)
David Sterbae43f9982013-12-06 17:51:32 +01002362 goto out_drop_write;
Yan, Zheng76dda932009-09-21 16:00:26 -04002363 dentry = lookup_one_len(vol_args->name, parent, namelen);
2364 if (IS_ERR(dentry)) {
2365 err = PTR_ERR(dentry);
2366 goto out_unlock_dir;
2367 }
2368
David Howells2b0143b2015-03-17 22:25:59 +00002369 if (d_really_is_negative(dentry)) {
Yan, Zheng76dda932009-09-21 16:00:26 -04002370 err = -ENOENT;
2371 goto out_dput;
2372 }
2373
David Howells2b0143b2015-03-17 22:25:59 +00002374 inode = d_inode(dentry);
Sage Weil4260f7c2010-10-29 15:46:43 -04002375 dest = BTRFS_I(inode)->root;
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302376 if (!capable(CAP_SYS_ADMIN)) {
Sage Weil4260f7c2010-10-29 15:46:43 -04002377 /*
2378 * Regular user. Only allow this with a special mount
2379 * option, when the user has write+exec access to the
2380 * subvol root, and when rmdir(2) would have been
2381 * allowed.
2382 *
2383 * Note that this is _not_ check that the subvol is
2384 * empty or doesn't contain data that we wouldn't
2385 * otherwise be able to delete.
2386 *
2387 * Users who want to delete empty subvols should try
2388 * rmdir(2).
2389 */
2390 err = -EPERM;
2391 if (!btrfs_test_opt(root, USER_SUBVOL_RM_ALLOWED))
2392 goto out_dput;
2393
2394 /*
2395 * Do not allow deletion if the parent dir is the same
2396 * as the dir to be deleted. That means the ioctl
2397 * must be called on the dentry referencing the root
2398 * of the subvol, not a random directory contained
2399 * within it.
2400 */
2401 err = -EINVAL;
2402 if (root == dest)
2403 goto out_dput;
2404
2405 err = inode_permission(inode, MAY_WRITE | MAY_EXEC);
2406 if (err)
2407 goto out_dput;
Sage Weil4260f7c2010-10-29 15:46:43 -04002408 }
2409
Miao Xie5c39da52012-10-22 11:39:53 +00002410 /* check if subvolume may be deleted by a user */
2411 err = btrfs_may_delete(dir, dentry, 1);
2412 if (err)
2413 goto out_dput;
2414
Li Zefan33345d012011-04-20 10:31:50 +08002415 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
Yan, Zheng76dda932009-09-21 16:00:26 -04002416 err = -EINVAL;
2417 goto out_dput;
2418 }
2419
Yan, Zheng76dda932009-09-21 16:00:26 -04002420 mutex_lock(&inode->i_mutex);
David Sterba521e0542014-04-15 16:41:44 +02002421
2422 /*
2423 * Don't allow to delete a subvolume with send in progress. This is
2424 * inside the i_mutex so the error handling that has to drop the bit
2425 * again is not run concurrently.
2426 */
2427 spin_lock(&dest->root_item_lock);
Filipe Mananac55bfa62014-05-25 03:55:44 +01002428 root_flags = btrfs_root_flags(&dest->root_item);
2429 if (dest->send_in_progress == 0) {
2430 btrfs_set_root_flags(&dest->root_item,
David Sterba521e0542014-04-15 16:41:44 +02002431 root_flags | BTRFS_ROOT_SUBVOL_DEAD);
2432 spin_unlock(&dest->root_item_lock);
2433 } else {
2434 spin_unlock(&dest->root_item_lock);
2435 btrfs_warn(root->fs_info,
2436 "Attempt to delete subvolume %llu during send",
Filipe Mananac55bfa62014-05-25 03:55:44 +01002437 dest->root_key.objectid);
David Sterba521e0542014-04-15 16:41:44 +02002438 err = -EPERM;
Omar Sandoval909e26d2015-04-10 14:20:40 -07002439 goto out_unlock_inode;
David Sterba521e0542014-04-15 16:41:44 +02002440 }
2441
Yan, Zheng76dda932009-09-21 16:00:26 -04002442 down_write(&root->fs_info->subvol_sem);
2443
2444 err = may_destroy_subvol(dest);
2445 if (err)
2446 goto out_up_write;
2447
Miao Xiec58aaad2013-02-28 10:05:36 +00002448 btrfs_init_block_rsv(&block_rsv, BTRFS_BLOCK_RSV_TEMP);
2449 /*
2450 * One for dir inode, two for dir entries, two for root
2451 * ref/backref.
2452 */
2453 err = btrfs_subvolume_reserve_metadata(root, &block_rsv,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04002454 5, &qgroup_reserved, true);
Miao Xiec58aaad2013-02-28 10:05:36 +00002455 if (err)
2456 goto out_up_write;
2457
Yan, Zhenga22285a2010-05-16 10:48:46 -04002458 trans = btrfs_start_transaction(root, 0);
2459 if (IS_ERR(trans)) {
2460 err = PTR_ERR(trans);
Miao Xiec58aaad2013-02-28 10:05:36 +00002461 goto out_release;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002462 }
Miao Xiec58aaad2013-02-28 10:05:36 +00002463 trans->block_rsv = &block_rsv;
2464 trans->bytes_reserved = block_rsv.size;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002465
Yan, Zheng76dda932009-09-21 16:00:26 -04002466 ret = btrfs_unlink_subvol(trans, root, dir,
2467 dest->root_key.objectid,
2468 dentry->d_name.name,
2469 dentry->d_name.len);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002470 if (ret) {
2471 err = ret;
2472 btrfs_abort_transaction(trans, root, ret);
2473 goto out_end_trans;
2474 }
Yan, Zheng76dda932009-09-21 16:00:26 -04002475
2476 btrfs_record_root_in_trans(trans, dest);
2477
2478 memset(&dest->root_item.drop_progress, 0,
2479 sizeof(dest->root_item.drop_progress));
2480 dest->root_item.drop_level = 0;
2481 btrfs_set_root_refs(&dest->root_item, 0);
2482
Miao Xie27cdeb72014-04-02 19:51:05 +08002483 if (!test_and_set_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &dest->state)) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04002484 ret = btrfs_insert_orphan_item(trans,
2485 root->fs_info->tree_root,
2486 dest->root_key.objectid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002487 if (ret) {
2488 btrfs_abort_transaction(trans, root, ret);
2489 err = ret;
2490 goto out_end_trans;
2491 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04002492 }
Stefan Behrensdd5f9612013-08-15 17:11:20 +02002493
2494 ret = btrfs_uuid_tree_rem(trans, root->fs_info->uuid_root,
2495 dest->root_item.uuid, BTRFS_UUID_KEY_SUBVOL,
2496 dest->root_key.objectid);
2497 if (ret && ret != -ENOENT) {
2498 btrfs_abort_transaction(trans, root, ret);
2499 err = ret;
2500 goto out_end_trans;
2501 }
2502 if (!btrfs_is_empty_uuid(dest->root_item.received_uuid)) {
2503 ret = btrfs_uuid_tree_rem(trans, root->fs_info->uuid_root,
2504 dest->root_item.received_uuid,
2505 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
2506 dest->root_key.objectid);
2507 if (ret && ret != -ENOENT) {
2508 btrfs_abort_transaction(trans, root, ret);
2509 err = ret;
2510 goto out_end_trans;
2511 }
2512 }
2513
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002514out_end_trans:
Miao Xiec58aaad2013-02-28 10:05:36 +00002515 trans->block_rsv = NULL;
2516 trans->bytes_reserved = 0;
Sage Weil531cb132010-10-29 15:41:32 -04002517 ret = btrfs_end_transaction(trans, root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002518 if (ret && !err)
2519 err = ret;
Yan, Zheng76dda932009-09-21 16:00:26 -04002520 inode->i_flags |= S_DEAD;
Miao Xiec58aaad2013-02-28 10:05:36 +00002521out_release:
2522 btrfs_subvolume_release_metadata(root, &block_rsv, qgroup_reserved);
Yan, Zheng76dda932009-09-21 16:00:26 -04002523out_up_write:
2524 up_write(&root->fs_info->subvol_sem);
David Sterba521e0542014-04-15 16:41:44 +02002525 if (err) {
2526 spin_lock(&dest->root_item_lock);
Filipe Mananac55bfa62014-05-25 03:55:44 +01002527 root_flags = btrfs_root_flags(&dest->root_item);
2528 btrfs_set_root_flags(&dest->root_item,
David Sterba521e0542014-04-15 16:41:44 +02002529 root_flags & ~BTRFS_ROOT_SUBVOL_DEAD);
2530 spin_unlock(&dest->root_item_lock);
2531 }
Omar Sandoval909e26d2015-04-10 14:20:40 -07002532out_unlock_inode:
Yan, Zheng76dda932009-09-21 16:00:26 -04002533 mutex_unlock(&inode->i_mutex);
2534 if (!err) {
Omar Sandoval64ad6c42015-06-02 17:31:00 -07002535 d_invalidate(dentry);
Yan, Zheng76dda932009-09-21 16:00:26 -04002536 btrfs_invalidate_inodes(dest);
2537 d_delete(dentry);
David Sterba61155aa2014-04-15 16:42:03 +02002538 ASSERT(dest->send_in_progress == 0);
Liu Bofa6ac872013-02-20 14:10:23 +00002539
2540 /* the last ref */
David Sterba57cdc8d2014-02-05 02:37:48 +01002541 if (dest->ino_cache_inode) {
2542 iput(dest->ino_cache_inode);
2543 dest->ino_cache_inode = NULL;
Liu Bofa6ac872013-02-20 14:10:23 +00002544 }
Yan, Zheng76dda932009-09-21 16:00:26 -04002545 }
2546out_dput:
2547 dput(dentry);
2548out_unlock_dir:
2549 mutex_unlock(&dir->i_mutex);
David Sterbae43f9982013-12-06 17:51:32 +01002550out_drop_write:
Al Viro2a79f172011-12-09 08:06:57 -05002551 mnt_drop_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04002552out:
2553 kfree(vol_args);
2554 return err;
2555}
2556
Chris Mason1e701a32010-03-11 09:42:04 -05002557static int btrfs_ioctl_defrag(struct file *file, void __user *argp)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002558{
Al Viro496ad9a2013-01-23 17:07:38 -05002559 struct inode *inode = file_inode(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002560 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason1e701a32010-03-11 09:42:04 -05002561 struct btrfs_ioctl_defrag_range_args *range;
Yan Zhengc146afa2008-11-12 14:34:12 -05002562 int ret;
2563
Ilya Dryomov25122d12013-01-20 15:57:57 +02002564 ret = mnt_want_write_file(file);
2565 if (ret)
2566 return ret;
Li Zefanb83cc962010-12-20 16:04:08 +08002567
Ilya Dryomov25122d12013-01-20 15:57:57 +02002568 if (btrfs_root_readonly(root)) {
2569 ret = -EROFS;
2570 goto out;
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002571 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002572
2573 switch (inode->i_mode & S_IFMT) {
2574 case S_IFDIR:
Chris Masone441d542009-01-05 16:57:23 -05002575 if (!capable(CAP_SYS_ADMIN)) {
2576 ret = -EPERM;
2577 goto out;
2578 }
Eric Sandeende78b512013-01-31 18:21:12 +00002579 ret = btrfs_defrag_root(root);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04002580 if (ret)
2581 goto out;
Eric Sandeende78b512013-01-31 18:21:12 +00002582 ret = btrfs_defrag_root(root->fs_info->extent_root);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002583 break;
2584 case S_IFREG:
Chris Masone441d542009-01-05 16:57:23 -05002585 if (!(file->f_mode & FMODE_WRITE)) {
2586 ret = -EINVAL;
2587 goto out;
2588 }
Chris Mason1e701a32010-03-11 09:42:04 -05002589
2590 range = kzalloc(sizeof(*range), GFP_KERNEL);
2591 if (!range) {
2592 ret = -ENOMEM;
2593 goto out;
2594 }
2595
2596 if (argp) {
2597 if (copy_from_user(range, argp,
2598 sizeof(*range))) {
2599 ret = -EFAULT;
2600 kfree(range);
Dan Carpenter683be162010-03-20 11:24:48 +00002601 goto out;
Chris Mason1e701a32010-03-11 09:42:04 -05002602 }
2603 /* compression requires us to start the IO */
2604 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
2605 range->flags |= BTRFS_DEFRAG_RANGE_START_IO;
2606 range->extent_thresh = (u32)-1;
2607 }
2608 } else {
2609 /* the rest are all set to zero by kzalloc */
2610 range->len = (u64)-1;
2611 }
Al Viro496ad9a2013-01-23 17:07:38 -05002612 ret = btrfs_defrag_file(file_inode(file), file,
Chris Mason4cb53002011-05-24 15:35:30 -04002613 range, 0, 0);
2614 if (ret > 0)
2615 ret = 0;
Chris Mason1e701a32010-03-11 09:42:04 -05002616 kfree(range);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002617 break;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04002618 default:
2619 ret = -EINVAL;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002620 }
Chris Masone441d542009-01-05 16:57:23 -05002621out:
Ilya Dryomov25122d12013-01-20 15:57:57 +02002622 mnt_drop_write_file(file);
Chris Masone441d542009-01-05 16:57:23 -05002623 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002624}
2625
Christoph Hellwigb2950862008-12-02 09:54:17 -05002626static long btrfs_ioctl_add_dev(struct btrfs_root *root, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002627{
2628 struct btrfs_ioctl_vol_args *vol_args;
2629 int ret;
2630
Chris Masone441d542009-01-05 16:57:23 -05002631 if (!capable(CAP_SYS_ADMIN))
2632 return -EPERM;
2633
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002634 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
2635 1)) {
Anand Jaine57138b2013-08-21 11:44:48 +08002636 return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002637 }
2638
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002639 mutex_lock(&root->fs_info->volume_mutex);
Li Zefandae7b662009-04-08 15:06:54 +08002640 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002641 if (IS_ERR(vol_args)) {
2642 ret = PTR_ERR(vol_args);
2643 goto out;
2644 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002645
Mark Fasheh5516e592008-07-24 12:20:14 -04002646 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002647 ret = btrfs_init_new_device(root, vol_args->name);
2648
Anand Jain43d20762014-07-01 00:58:56 +08002649 if (!ret)
2650 btrfs_info(root->fs_info, "disk added %s",vol_args->name);
2651
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002652 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002653out:
2654 mutex_unlock(&root->fs_info->volume_mutex);
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002655 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002656 return ret;
2657}
2658
Miao Xieda249272012-11-26 08:44:50 +00002659static long btrfs_ioctl_rm_dev(struct file *file, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002660{
Al Viro496ad9a2013-01-23 17:07:38 -05002661 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002662 struct btrfs_ioctl_vol_args *vol_args;
2663 int ret;
2664
Chris Masone441d542009-01-05 16:57:23 -05002665 if (!capable(CAP_SYS_ADMIN))
2666 return -EPERM;
2667
Miao Xieda249272012-11-26 08:44:50 +00002668 ret = mnt_want_write_file(file);
2669 if (ret)
2670 return ret;
Yan Zhengc146afa2008-11-12 14:34:12 -05002671
Li Zefandae7b662009-04-08 15:06:54 +08002672 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002673 if (IS_ERR(vol_args)) {
2674 ret = PTR_ERR(vol_args);
Dan Carpenterc47ca322014-09-04 14:09:15 +03002675 goto err_drop;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002676 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002677
Mark Fasheh5516e592008-07-24 12:20:14 -04002678 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002679
Anand Jain183860f2013-05-17 10:52:45 +00002680 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
2681 1)) {
2682 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
2683 goto out;
2684 }
2685
2686 mutex_lock(&root->fs_info->volume_mutex);
2687 ret = btrfs_rm_device(root, vol_args->name);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002688 mutex_unlock(&root->fs_info->volume_mutex);
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002689 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
Anand Jain183860f2013-05-17 10:52:45 +00002690
Anand Jainec95d492014-07-01 00:58:57 +08002691 if (!ret)
2692 btrfs_info(root->fs_info, "disk deleted %s",vol_args->name);
2693
Anand Jain183860f2013-05-17 10:52:45 +00002694out:
2695 kfree(vol_args);
Dan Carpenterc47ca322014-09-04 14:09:15 +03002696err_drop:
Ilya Dryomov4ac20c72013-01-20 15:57:57 +02002697 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002698 return ret;
2699}
2700
Jan Schmidt475f6382011-03-11 15:41:01 +01002701static long btrfs_ioctl_fs_info(struct btrfs_root *root, void __user *arg)
2702{
Li Zefan027ed2f2011-06-08 08:27:56 +00002703 struct btrfs_ioctl_fs_info_args *fi_args;
Jan Schmidt475f6382011-03-11 15:41:01 +01002704 struct btrfs_device *device;
Jan Schmidt475f6382011-03-11 15:41:01 +01002705 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
Li Zefan027ed2f2011-06-08 08:27:56 +00002706 int ret = 0;
Jan Schmidt475f6382011-03-11 15:41:01 +01002707
Li Zefan027ed2f2011-06-08 08:27:56 +00002708 fi_args = kzalloc(sizeof(*fi_args), GFP_KERNEL);
2709 if (!fi_args)
2710 return -ENOMEM;
2711
Filipe David Borba Mananaf7171752013-08-12 20:56:58 +01002712 mutex_lock(&fs_devices->device_list_mutex);
Li Zefan027ed2f2011-06-08 08:27:56 +00002713 fi_args->num_devices = fs_devices->num_devices;
2714 memcpy(&fi_args->fsid, root->fs_info->fsid, sizeof(fi_args->fsid));
Jan Schmidt475f6382011-03-11 15:41:01 +01002715
Byongho Leed7641a42015-09-01 23:10:57 +09002716 list_for_each_entry(device, &fs_devices->devices, dev_list) {
Li Zefan027ed2f2011-06-08 08:27:56 +00002717 if (device->devid > fi_args->max_id)
2718 fi_args->max_id = device->devid;
Jan Schmidt475f6382011-03-11 15:41:01 +01002719 }
2720 mutex_unlock(&fs_devices->device_list_mutex);
2721
David Sterba80a773f2014-05-07 18:17:06 +02002722 fi_args->nodesize = root->fs_info->super_copy->nodesize;
2723 fi_args->sectorsize = root->fs_info->super_copy->sectorsize;
2724 fi_args->clone_alignment = root->fs_info->super_copy->sectorsize;
2725
Li Zefan027ed2f2011-06-08 08:27:56 +00002726 if (copy_to_user(arg, fi_args, sizeof(*fi_args)))
2727 ret = -EFAULT;
Jan Schmidt475f6382011-03-11 15:41:01 +01002728
Li Zefan027ed2f2011-06-08 08:27:56 +00002729 kfree(fi_args);
2730 return ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01002731}
2732
2733static long btrfs_ioctl_dev_info(struct btrfs_root *root, void __user *arg)
2734{
2735 struct btrfs_ioctl_dev_info_args *di_args;
2736 struct btrfs_device *dev;
2737 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
2738 int ret = 0;
2739 char *s_uuid = NULL;
Jan Schmidt475f6382011-03-11 15:41:01 +01002740
Jan Schmidt475f6382011-03-11 15:41:01 +01002741 di_args = memdup_user(arg, sizeof(*di_args));
2742 if (IS_ERR(di_args))
2743 return PTR_ERR(di_args);
2744
Stefan Behrensdd5f9612013-08-15 17:11:20 +02002745 if (!btrfs_is_empty_uuid(di_args->uuid))
Jan Schmidt475f6382011-03-11 15:41:01 +01002746 s_uuid = di_args->uuid;
2747
2748 mutex_lock(&fs_devices->device_list_mutex);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01002749 dev = btrfs_find_device(root->fs_info, di_args->devid, s_uuid, NULL);
Jan Schmidt475f6382011-03-11 15:41:01 +01002750
2751 if (!dev) {
2752 ret = -ENODEV;
2753 goto out;
2754 }
2755
2756 di_args->devid = dev->devid;
Miao Xie7cc8e582014-09-03 21:35:38 +08002757 di_args->bytes_used = btrfs_device_get_bytes_used(dev);
2758 di_args->total_bytes = btrfs_device_get_total_bytes(dev);
Jan Schmidt475f6382011-03-11 15:41:01 +01002759 memcpy(di_args->uuid, dev->uuid, sizeof(di_args->uuid));
Jim Meyeringa27202f2012-04-26 18:36:56 +02002760 if (dev->name) {
Josef Bacik606686e2012-06-04 14:03:51 -04002761 struct rcu_string *name;
2762
2763 rcu_read_lock();
2764 name = rcu_dereference(dev->name);
2765 strncpy(di_args->path, name->str, sizeof(di_args->path));
2766 rcu_read_unlock();
Jim Meyeringa27202f2012-04-26 18:36:56 +02002767 di_args->path[sizeof(di_args->path) - 1] = 0;
2768 } else {
Stefan Behrens99ba55a2012-03-19 16:17:22 +01002769 di_args->path[0] = '\0';
Jim Meyeringa27202f2012-04-26 18:36:56 +02002770 }
Jan Schmidt475f6382011-03-11 15:41:01 +01002771
2772out:
David Sterba55793c02013-04-26 15:20:23 +00002773 mutex_unlock(&fs_devices->device_list_mutex);
Jan Schmidt475f6382011-03-11 15:41:01 +01002774 if (ret == 0 && copy_to_user(arg, di_args, sizeof(*di_args)))
2775 ret = -EFAULT;
2776
2777 kfree(di_args);
2778 return ret;
2779}
2780
Mark Fashehf4414602015-06-30 14:42:05 -07002781static struct page *extent_same_get_page(struct inode *inode, pgoff_t index)
Mark Fasheh416161d2013-08-06 11:42:51 -07002782{
2783 struct page *page;
Mark Fasheh416161d2013-08-06 11:42:51 -07002784 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2785
Mark Fasheh416161d2013-08-06 11:42:51 -07002786 page = grab_cache_page(inode->i_mapping, index);
2787 if (!page)
2788 return NULL;
2789
2790 if (!PageUptodate(page)) {
2791 if (extent_read_full_page_nolock(tree, page, btrfs_get_extent,
2792 0))
2793 return NULL;
2794 lock_page(page);
2795 if (!PageUptodate(page)) {
2796 unlock_page(page);
2797 page_cache_release(page);
2798 return NULL;
2799 }
2800 }
2801 unlock_page(page);
2802
2803 return page;
2804}
2805
Mark Fashehf4414602015-06-30 14:42:05 -07002806static int gather_extent_pages(struct inode *inode, struct page **pages,
2807 int num_pages, u64 off)
2808{
2809 int i;
2810 pgoff_t index = off >> PAGE_CACHE_SHIFT;
2811
2812 for (i = 0; i < num_pages; i++) {
2813 pages[i] = extent_same_get_page(inode, index + i);
2814 if (!pages[i])
2815 return -ENOMEM;
2816 }
2817 return 0;
2818}
2819
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002820static inline void lock_extent_range(struct inode *inode, u64 off, u64 len)
2821{
2822 /* do any pending delalloc/csum calc on src, one way or
2823 another, and lock file content */
2824 while (1) {
2825 struct btrfs_ordered_extent *ordered;
2826 lock_extent(&BTRFS_I(inode)->io_tree, off, off + len - 1);
2827 ordered = btrfs_lookup_first_ordered_extent(inode,
2828 off + len - 1);
Filipe Mananaff5df9b2014-05-30 17:56:24 +01002829 if ((!ordered ||
2830 ordered->file_offset + ordered->len <= off ||
2831 ordered->file_offset >= off + len) &&
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002832 !test_range_bit(&BTRFS_I(inode)->io_tree, off,
Filipe Mananaff5df9b2014-05-30 17:56:24 +01002833 off + len - 1, EXTENT_DELALLOC, 0, NULL)) {
2834 if (ordered)
2835 btrfs_put_ordered_extent(ordered);
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002836 break;
Filipe Mananaff5df9b2014-05-30 17:56:24 +01002837 }
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002838 unlock_extent(&BTRFS_I(inode)->io_tree, off, off + len - 1);
2839 if (ordered)
2840 btrfs_put_ordered_extent(ordered);
2841 btrfs_wait_ordered_range(inode, off, len);
2842 }
2843}
2844
Mark Fashehf4414602015-06-30 14:42:05 -07002845static void btrfs_double_inode_unlock(struct inode *inode1, struct inode *inode2)
Mark Fasheh416161d2013-08-06 11:42:51 -07002846{
Mark Fasheh416161d2013-08-06 11:42:51 -07002847 mutex_unlock(&inode1->i_mutex);
2848 mutex_unlock(&inode2->i_mutex);
2849}
2850
Mark Fashehf4414602015-06-30 14:42:05 -07002851static void btrfs_double_inode_lock(struct inode *inode1, struct inode *inode2)
2852{
2853 if (inode1 < inode2)
2854 swap(inode1, inode2);
2855
2856 mutex_lock_nested(&inode1->i_mutex, I_MUTEX_PARENT);
Mark Fasheh293a8482015-06-30 14:42:06 -07002857 mutex_lock_nested(&inode2->i_mutex, I_MUTEX_CHILD);
Mark Fashehf4414602015-06-30 14:42:05 -07002858}
2859
2860static void btrfs_double_extent_unlock(struct inode *inode1, u64 loff1,
2861 struct inode *inode2, u64 loff2, u64 len)
2862{
2863 unlock_extent(&BTRFS_I(inode1)->io_tree, loff1, loff1 + len - 1);
2864 unlock_extent(&BTRFS_I(inode2)->io_tree, loff2, loff2 + len - 1);
2865}
2866
2867static void btrfs_double_extent_lock(struct inode *inode1, u64 loff1,
2868 struct inode *inode2, u64 loff2, u64 len)
Mark Fasheh416161d2013-08-06 11:42:51 -07002869{
2870 if (inode1 < inode2) {
2871 swap(inode1, inode2);
2872 swap(loff1, loff2);
2873 }
Mark Fasheh416161d2013-08-06 11:42:51 -07002874 lock_extent_range(inode1, loff1, len);
Mark Fasheh293a8482015-06-30 14:42:06 -07002875 lock_extent_range(inode2, loff2, len);
Mark Fashehf4414602015-06-30 14:42:05 -07002876}
2877
2878struct cmp_pages {
2879 int num_pages;
2880 struct page **src_pages;
2881 struct page **dst_pages;
2882};
2883
2884static void btrfs_cmp_data_free(struct cmp_pages *cmp)
2885{
2886 int i;
2887 struct page *pg;
2888
2889 for (i = 0; i < cmp->num_pages; i++) {
2890 pg = cmp->src_pages[i];
2891 if (pg)
2892 page_cache_release(pg);
2893 pg = cmp->dst_pages[i];
2894 if (pg)
2895 page_cache_release(pg);
Mark Fasheh416161d2013-08-06 11:42:51 -07002896 }
Mark Fashehf4414602015-06-30 14:42:05 -07002897 kfree(cmp->src_pages);
2898 kfree(cmp->dst_pages);
2899}
2900
2901static int btrfs_cmp_data_prepare(struct inode *src, u64 loff,
2902 struct inode *dst, u64 dst_loff,
2903 u64 len, struct cmp_pages *cmp)
2904{
2905 int ret;
2906 int num_pages = PAGE_CACHE_ALIGN(len) >> PAGE_CACHE_SHIFT;
2907 struct page **src_pgarr, **dst_pgarr;
2908
2909 /*
2910 * We must gather up all the pages before we initiate our
2911 * extent locking. We use an array for the page pointers. Size
2912 * of the array is bounded by len, which is in turn bounded by
2913 * BTRFS_MAX_DEDUPE_LEN.
2914 */
2915 src_pgarr = kzalloc(num_pages * sizeof(struct page *), GFP_NOFS);
2916 dst_pgarr = kzalloc(num_pages * sizeof(struct page *), GFP_NOFS);
2917 if (!src_pgarr || !dst_pgarr) {
2918 kfree(src_pgarr);
2919 kfree(dst_pgarr);
2920 return -ENOMEM;
2921 }
2922 cmp->num_pages = num_pages;
2923 cmp->src_pages = src_pgarr;
2924 cmp->dst_pages = dst_pgarr;
2925
2926 ret = gather_extent_pages(src, cmp->src_pages, cmp->num_pages, loff);
2927 if (ret)
2928 goto out;
2929
2930 ret = gather_extent_pages(dst, cmp->dst_pages, cmp->num_pages, dst_loff);
2931
2932out:
2933 if (ret)
2934 btrfs_cmp_data_free(cmp);
2935 return 0;
Mark Fasheh416161d2013-08-06 11:42:51 -07002936}
2937
2938static int btrfs_cmp_data(struct inode *src, u64 loff, struct inode *dst,
Mark Fashehf4414602015-06-30 14:42:05 -07002939 u64 dst_loff, u64 len, struct cmp_pages *cmp)
Mark Fasheh416161d2013-08-06 11:42:51 -07002940{
2941 int ret = 0;
Mark Fashehf4414602015-06-30 14:42:05 -07002942 int i;
Mark Fasheh416161d2013-08-06 11:42:51 -07002943 struct page *src_page, *dst_page;
2944 unsigned int cmp_len = PAGE_CACHE_SIZE;
2945 void *addr, *dst_addr;
2946
Mark Fashehf4414602015-06-30 14:42:05 -07002947 i = 0;
Mark Fasheh416161d2013-08-06 11:42:51 -07002948 while (len) {
2949 if (len < PAGE_CACHE_SIZE)
2950 cmp_len = len;
2951
Mark Fashehf4414602015-06-30 14:42:05 -07002952 BUG_ON(i >= cmp->num_pages);
2953
2954 src_page = cmp->src_pages[i];
2955 dst_page = cmp->dst_pages[i];
2956
Mark Fasheh416161d2013-08-06 11:42:51 -07002957 addr = kmap_atomic(src_page);
2958 dst_addr = kmap_atomic(dst_page);
2959
2960 flush_dcache_page(src_page);
2961 flush_dcache_page(dst_page);
2962
2963 if (memcmp(addr, dst_addr, cmp_len))
2964 ret = BTRFS_SAME_DATA_DIFFERS;
2965
2966 kunmap_atomic(addr);
2967 kunmap_atomic(dst_addr);
Mark Fasheh416161d2013-08-06 11:42:51 -07002968
2969 if (ret)
2970 break;
2971
Mark Fasheh416161d2013-08-06 11:42:51 -07002972 len -= cmp_len;
Mark Fashehf4414602015-06-30 14:42:05 -07002973 i++;
Mark Fasheh416161d2013-08-06 11:42:51 -07002974 }
2975
2976 return ret;
2977}
2978
Mark Fashehe1d227a2015-06-08 15:05:25 -07002979static int extent_same_check_offsets(struct inode *inode, u64 off, u64 *plen,
2980 u64 olen)
Mark Fasheh416161d2013-08-06 11:42:51 -07002981{
Mark Fashehe1d227a2015-06-08 15:05:25 -07002982 u64 len = *plen;
Mark Fasheh416161d2013-08-06 11:42:51 -07002983 u64 bs = BTRFS_I(inode)->root->fs_info->sb->s_blocksize;
2984
Mark Fashehe1d227a2015-06-08 15:05:25 -07002985 if (off + olen > inode->i_size || off + olen < off)
Mark Fasheh416161d2013-08-06 11:42:51 -07002986 return -EINVAL;
Mark Fashehe1d227a2015-06-08 15:05:25 -07002987
2988 /* if we extend to eof, continue to block boundary */
2989 if (off + len == inode->i_size)
2990 *plen = len = ALIGN(inode->i_size, bs) - off;
2991
Mark Fasheh416161d2013-08-06 11:42:51 -07002992 /* Check that we are block aligned - btrfs_clone() requires this */
2993 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs))
2994 return -EINVAL;
2995
2996 return 0;
2997}
2998
Mark Fashehe1d227a2015-06-08 15:05:25 -07002999static int btrfs_extent_same(struct inode *src, u64 loff, u64 olen,
Mark Fasheh416161d2013-08-06 11:42:51 -07003000 struct inode *dst, u64 dst_loff)
3001{
3002 int ret;
Mark Fashehe1d227a2015-06-08 15:05:25 -07003003 u64 len = olen;
Mark Fashehf4414602015-06-30 14:42:05 -07003004 struct cmp_pages cmp;
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003005 int same_inode = 0;
3006 u64 same_lock_start = 0;
3007 u64 same_lock_len = 0;
Mark Fasheh416161d2013-08-06 11:42:51 -07003008
Mark Fasheh416161d2013-08-06 11:42:51 -07003009 if (src == dst)
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003010 same_inode = 1;
Mark Fasheh416161d2013-08-06 11:42:51 -07003011
Filipe Manana113e8282015-03-30 18:26:47 +01003012 if (len == 0)
3013 return 0;
3014
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003015 if (same_inode) {
3016 mutex_lock(&src->i_mutex);
Mark Fasheh416161d2013-08-06 11:42:51 -07003017
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003018 ret = extent_same_check_offsets(src, loff, &len, olen);
3019 if (ret)
3020 goto out_unlock;
Mark Fasheh416161d2013-08-06 11:42:51 -07003021
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003022 /*
3023 * Single inode case wants the same checks, except we
3024 * don't want our length pushed out past i_size as
3025 * comparing that data range makes no sense.
3026 *
3027 * extent_same_check_offsets() will do this for an
3028 * unaligned length at i_size, so catch it here and
3029 * reject the request.
3030 *
3031 * This effectively means we require aligned extents
3032 * for the single-inode case, whereas the other cases
3033 * allow an unaligned length so long as it ends at
3034 * i_size.
3035 */
3036 if (len != olen) {
3037 ret = -EINVAL;
3038 goto out_unlock;
3039 }
3040
3041 /* Check for overlapping ranges */
3042 if (dst_loff + len > loff && dst_loff < loff + len) {
3043 ret = -EINVAL;
3044 goto out_unlock;
3045 }
3046
3047 same_lock_start = min_t(u64, loff, dst_loff);
3048 same_lock_len = max_t(u64, loff, dst_loff) + len - same_lock_start;
3049 } else {
3050 btrfs_double_inode_lock(src, dst);
3051
3052 ret = extent_same_check_offsets(src, loff, &len, olen);
3053 if (ret)
3054 goto out_unlock;
3055
3056 ret = extent_same_check_offsets(dst, dst_loff, &len, olen);
3057 if (ret)
3058 goto out_unlock;
3059 }
Mark Fasheh416161d2013-08-06 11:42:51 -07003060
3061 /* don't make the dst file partly checksummed */
3062 if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
3063 (BTRFS_I(dst)->flags & BTRFS_INODE_NODATASUM)) {
3064 ret = -EINVAL;
3065 goto out_unlock;
3066 }
3067
Mark Fashehf4414602015-06-30 14:42:05 -07003068 ret = btrfs_cmp_data_prepare(src, loff, dst, dst_loff, olen, &cmp);
3069 if (ret)
3070 goto out_unlock;
3071
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003072 if (same_inode)
3073 lock_extent_range(src, same_lock_start, same_lock_len);
3074 else
3075 btrfs_double_extent_lock(src, loff, dst, dst_loff, len);
Mark Fashehf4414602015-06-30 14:42:05 -07003076
Mark Fasheh207910d2015-06-30 14:42:04 -07003077 /* pass original length for comparison so we stay within i_size */
Mark Fashehf4414602015-06-30 14:42:05 -07003078 ret = btrfs_cmp_data(src, loff, dst, dst_loff, olen, &cmp);
Mark Fasheh416161d2013-08-06 11:42:51 -07003079 if (ret == 0)
Mark Fasheh1c919a52015-06-30 14:42:08 -07003080 ret = btrfs_clone(src, dst, loff, olen, len, dst_loff, 1);
Mark Fasheh416161d2013-08-06 11:42:51 -07003081
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003082 if (same_inode)
3083 unlock_extent(&BTRFS_I(src)->io_tree, same_lock_start,
3084 same_lock_start + same_lock_len - 1);
3085 else
3086 btrfs_double_extent_unlock(src, loff, dst, dst_loff, len);
Mark Fashehf4414602015-06-30 14:42:05 -07003087
3088 btrfs_cmp_data_free(&cmp);
Mark Fasheh416161d2013-08-06 11:42:51 -07003089out_unlock:
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003090 if (same_inode)
3091 mutex_unlock(&src->i_mutex);
3092 else
3093 btrfs_double_inode_unlock(src, dst);
Mark Fasheh416161d2013-08-06 11:42:51 -07003094
3095 return ret;
3096}
3097
Byongho Leeee221842015-12-15 01:42:10 +09003098#define BTRFS_MAX_DEDUPE_LEN SZ_16M
Mark Fasheh416161d2013-08-06 11:42:51 -07003099
3100static long btrfs_ioctl_file_extent_same(struct file *file,
Al Viro1c1c8742013-12-11 23:07:51 -05003101 struct btrfs_ioctl_same_args __user *argp)
Mark Fasheh416161d2013-08-06 11:42:51 -07003102{
Filipe Manana497b4052015-07-03 08:36:11 +01003103 struct btrfs_ioctl_same_args *same = NULL;
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003104 struct btrfs_ioctl_same_extent_info *info;
Al Viro1c1c8742013-12-11 23:07:51 -05003105 struct inode *src = file_inode(file);
Mark Fasheh416161d2013-08-06 11:42:51 -07003106 u64 off;
3107 u64 len;
3108 int i;
3109 int ret;
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003110 unsigned long size;
Mark Fasheh416161d2013-08-06 11:42:51 -07003111 u64 bs = BTRFS_I(src)->root->fs_info->sb->s_blocksize;
3112 bool is_admin = capable(CAP_SYS_ADMIN);
Al Viro1c1c8742013-12-11 23:07:51 -05003113 u16 count;
Mark Fasheh416161d2013-08-06 11:42:51 -07003114
3115 if (!(file->f_mode & FMODE_READ))
3116 return -EINVAL;
3117
3118 ret = mnt_want_write_file(file);
3119 if (ret)
3120 return ret;
3121
Al Viro1c1c8742013-12-11 23:07:51 -05003122 if (get_user(count, &argp->dest_count)) {
Mark Fasheh416161d2013-08-06 11:42:51 -07003123 ret = -EFAULT;
3124 goto out;
3125 }
3126
Al Viro1c1c8742013-12-11 23:07:51 -05003127 size = offsetof(struct btrfs_ioctl_same_args __user, info[count]);
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003128
Al Viro1c1c8742013-12-11 23:07:51 -05003129 same = memdup_user(argp, size);
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003130
Geyslan G. Bem229eed42013-10-14 12:18:25 -03003131 if (IS_ERR(same)) {
3132 ret = PTR_ERR(same);
Filipe Manana497b4052015-07-03 08:36:11 +01003133 same = NULL;
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003134 goto out;
3135 }
3136
3137 off = same->logical_offset;
3138 len = same->length;
Mark Fasheh416161d2013-08-06 11:42:51 -07003139
3140 /*
3141 * Limit the total length we will dedupe for each operation.
3142 * This is intended to bound the total time spent in this
3143 * ioctl to something sane.
3144 */
3145 if (len > BTRFS_MAX_DEDUPE_LEN)
3146 len = BTRFS_MAX_DEDUPE_LEN;
3147
3148 if (WARN_ON_ONCE(bs < PAGE_CACHE_SIZE)) {
3149 /*
3150 * Btrfs does not support blocksize < page_size. As a
3151 * result, btrfs_cmp_data() won't correctly handle
3152 * this situation without an update.
3153 */
3154 ret = -EINVAL;
3155 goto out;
3156 }
3157
3158 ret = -EISDIR;
3159 if (S_ISDIR(src->i_mode))
3160 goto out;
3161
3162 ret = -EACCES;
3163 if (!S_ISREG(src->i_mode))
3164 goto out;
3165
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003166 /* pre-format output fields to sane values */
Al Viro1c1c8742013-12-11 23:07:51 -05003167 for (i = 0; i < count; i++) {
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003168 same->info[i].bytes_deduped = 0ULL;
3169 same->info[i].status = 0;
3170 }
3171
Al Viro1c1c8742013-12-11 23:07:51 -05003172 for (i = 0, info = same->info; i < count; i++, info++) {
3173 struct inode *dst;
3174 struct fd dst_file = fdget(info->fd);
3175 if (!dst_file.file) {
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003176 info->status = -EBADF;
Al Viro1c1c8742013-12-11 23:07:51 -05003177 continue;
Mark Fasheh416161d2013-08-06 11:42:51 -07003178 }
Al Viro1c1c8742013-12-11 23:07:51 -05003179 dst = file_inode(dst_file.file);
Mark Fasheh416161d2013-08-06 11:42:51 -07003180
Al Viro1c1c8742013-12-11 23:07:51 -05003181 if (!(is_admin || (dst_file.file->f_mode & FMODE_WRITE))) {
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003182 info->status = -EINVAL;
Al Viro1c1c8742013-12-11 23:07:51 -05003183 } else if (file->f_path.mnt != dst_file.file->f_path.mnt) {
3184 info->status = -EXDEV;
3185 } else if (S_ISDIR(dst->i_mode)) {
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003186 info->status = -EISDIR;
Al Viro1c1c8742013-12-11 23:07:51 -05003187 } else if (!S_ISREG(dst->i_mode)) {
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003188 info->status = -EACCES;
Al Viro1c1c8742013-12-11 23:07:51 -05003189 } else {
3190 info->status = btrfs_extent_same(src, off, len, dst,
3191 info->logical_offset);
3192 if (info->status == 0)
3193 info->bytes_deduped += len;
Mark Fasheh416161d2013-08-06 11:42:51 -07003194 }
Al Viro1c1c8742013-12-11 23:07:51 -05003195 fdput(dst_file);
Mark Fasheh416161d2013-08-06 11:42:51 -07003196 }
3197
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003198 ret = copy_to_user(argp, same, size);
3199 if (ret)
3200 ret = -EFAULT;
3201
Mark Fasheh416161d2013-08-06 11:42:51 -07003202out:
3203 mnt_drop_write_file(file);
Filipe Manana497b4052015-07-03 08:36:11 +01003204 kfree(same);
Mark Fasheh416161d2013-08-06 11:42:51 -07003205 return ret;
3206}
3207
Filipe Mananaf82a9902014-06-01 01:50:28 +01003208static int clone_finish_inode_update(struct btrfs_trans_handle *trans,
3209 struct inode *inode,
3210 u64 endoff,
3211 const u64 destoff,
Mark Fasheh1c919a52015-06-30 14:42:08 -07003212 const u64 olen,
3213 int no_time_update)
Filipe Mananaf82a9902014-06-01 01:50:28 +01003214{
3215 struct btrfs_root *root = BTRFS_I(inode)->root;
3216 int ret;
3217
3218 inode_inc_iversion(inode);
Mark Fasheh1c919a52015-06-30 14:42:08 -07003219 if (!no_time_update)
3220 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003221 /*
3222 * We round up to the block size at eof when determining which
3223 * extents to clone above, but shouldn't round up the file size.
3224 */
3225 if (endoff > destoff + olen)
3226 endoff = destoff + olen;
3227 if (endoff > inode->i_size)
3228 btrfs_i_size_write(inode, endoff);
3229
3230 ret = btrfs_update_inode(trans, root, inode);
3231 if (ret) {
3232 btrfs_abort_transaction(trans, root, ret);
3233 btrfs_end_transaction(trans, root);
3234 goto out;
3235 }
3236 ret = btrfs_end_transaction(trans, root);
3237out:
3238 return ret;
3239}
3240
Filipe Manana7ffbb592014-06-09 03:48:05 +01003241static void clone_update_extent_map(struct inode *inode,
3242 const struct btrfs_trans_handle *trans,
3243 const struct btrfs_path *path,
Filipe Manana7ffbb592014-06-09 03:48:05 +01003244 const u64 hole_offset,
3245 const u64 hole_len)
3246{
3247 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
3248 struct extent_map *em;
3249 int ret;
3250
3251 em = alloc_extent_map();
3252 if (!em) {
3253 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3254 &BTRFS_I(inode)->runtime_flags);
3255 return;
3256 }
3257
Filipe Manana14f59792014-06-29 21:45:40 +01003258 if (path) {
3259 struct btrfs_file_extent_item *fi;
3260
3261 fi = btrfs_item_ptr(path->nodes[0], path->slots[0],
3262 struct btrfs_file_extent_item);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003263 btrfs_extent_item_to_extent_map(inode, path, fi, false, em);
3264 em->generation = -1;
3265 if (btrfs_file_extent_type(path->nodes[0], fi) ==
3266 BTRFS_FILE_EXTENT_INLINE)
3267 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3268 &BTRFS_I(inode)->runtime_flags);
3269 } else {
3270 em->start = hole_offset;
3271 em->len = hole_len;
3272 em->ram_bytes = em->len;
3273 em->orig_start = hole_offset;
3274 em->block_start = EXTENT_MAP_HOLE;
3275 em->block_len = 0;
3276 em->orig_block_len = 0;
3277 em->compress_type = BTRFS_COMPRESS_NONE;
3278 em->generation = trans->transid;
3279 }
3280
3281 while (1) {
3282 write_lock(&em_tree->lock);
3283 ret = add_extent_mapping(em_tree, em, 1);
3284 write_unlock(&em_tree->lock);
3285 if (ret != -EEXIST) {
3286 free_extent_map(em);
3287 break;
3288 }
3289 btrfs_drop_extent_cache(inode, em->start,
3290 em->start + em->len - 1, 0);
3291 }
3292
David Sterbaee39b432014-09-30 01:33:33 +02003293 if (ret)
Filipe Manana7ffbb592014-06-09 03:48:05 +01003294 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3295 &BTRFS_I(inode)->runtime_flags);
3296}
3297
Filipe Manana8039d872015-10-13 15:15:00 +01003298/*
3299 * Make sure we do not end up inserting an inline extent into a file that has
3300 * already other (non-inline) extents. If a file has an inline extent it can
3301 * not have any other extents and the (single) inline extent must start at the
3302 * file offset 0. Failing to respect these rules will lead to file corruption,
3303 * resulting in EIO errors on read/write operations, hitting BUG_ON's in mm, etc
3304 *
3305 * We can have extents that have been already written to disk or we can have
3306 * dirty ranges still in delalloc, in which case the extent maps and items are
3307 * created only when we run delalloc, and the delalloc ranges might fall outside
3308 * the range we are currently locking in the inode's io tree. So we check the
3309 * inode's i_size because of that (i_size updates are done while holding the
3310 * i_mutex, which we are holding here).
3311 * We also check to see if the inode has a size not greater than "datal" but has
3312 * extents beyond it, due to an fallocate with FALLOC_FL_KEEP_SIZE (and we are
3313 * protected against such concurrent fallocate calls by the i_mutex).
3314 *
3315 * If the file has no extents but a size greater than datal, do not allow the
3316 * copy because we would need turn the inline extent into a non-inline one (even
3317 * with NO_HOLES enabled). If we find our destination inode only has one inline
3318 * extent, just overwrite it with the source inline extent if its size is less
3319 * than the source extent's size, or we could copy the source inline extent's
3320 * data into the destination inode's inline extent if the later is greater then
3321 * the former.
3322 */
3323static int clone_copy_inline_extent(struct inode *src,
3324 struct inode *dst,
3325 struct btrfs_trans_handle *trans,
3326 struct btrfs_path *path,
3327 struct btrfs_key *new_key,
3328 const u64 drop_start,
3329 const u64 datal,
3330 const u64 skip,
3331 const u64 size,
3332 char *inline_data)
3333{
3334 struct btrfs_root *root = BTRFS_I(dst)->root;
3335 const u64 aligned_end = ALIGN(new_key->offset + datal,
3336 root->sectorsize);
3337 int ret;
3338 struct btrfs_key key;
3339
3340 if (new_key->offset > 0)
3341 return -EOPNOTSUPP;
3342
3343 key.objectid = btrfs_ino(dst);
3344 key.type = BTRFS_EXTENT_DATA_KEY;
3345 key.offset = 0;
3346 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3347 if (ret < 0) {
3348 return ret;
3349 } else if (ret > 0) {
3350 if (path->slots[0] >= btrfs_header_nritems(path->nodes[0])) {
3351 ret = btrfs_next_leaf(root, path);
3352 if (ret < 0)
3353 return ret;
3354 else if (ret > 0)
3355 goto copy_inline_extent;
3356 }
3357 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
3358 if (key.objectid == btrfs_ino(dst) &&
3359 key.type == BTRFS_EXTENT_DATA_KEY) {
3360 ASSERT(key.offset > 0);
3361 return -EOPNOTSUPP;
3362 }
3363 } else if (i_size_read(dst) <= datal) {
3364 struct btrfs_file_extent_item *ei;
3365 u64 ext_len;
3366
3367 /*
3368 * If the file size is <= datal, make sure there are no other
3369 * extents following (can happen do to an fallocate call with
3370 * the flag FALLOC_FL_KEEP_SIZE).
3371 */
3372 ei = btrfs_item_ptr(path->nodes[0], path->slots[0],
3373 struct btrfs_file_extent_item);
3374 /*
3375 * If it's an inline extent, it can not have other extents
3376 * following it.
3377 */
3378 if (btrfs_file_extent_type(path->nodes[0], ei) ==
3379 BTRFS_FILE_EXTENT_INLINE)
3380 goto copy_inline_extent;
3381
3382 ext_len = btrfs_file_extent_num_bytes(path->nodes[0], ei);
3383 if (ext_len > aligned_end)
3384 return -EOPNOTSUPP;
3385
3386 ret = btrfs_next_item(root, path);
3387 if (ret < 0) {
3388 return ret;
3389 } else if (ret == 0) {
3390 btrfs_item_key_to_cpu(path->nodes[0], &key,
3391 path->slots[0]);
3392 if (key.objectid == btrfs_ino(dst) &&
3393 key.type == BTRFS_EXTENT_DATA_KEY)
3394 return -EOPNOTSUPP;
3395 }
3396 }
3397
3398copy_inline_extent:
3399 /*
3400 * We have no extent items, or we have an extent at offset 0 which may
3401 * or may not be inlined. All these cases are dealt the same way.
3402 */
3403 if (i_size_read(dst) > datal) {
3404 /*
3405 * If the destination inode has an inline extent...
3406 * This would require copying the data from the source inline
3407 * extent into the beginning of the destination's inline extent.
3408 * But this is really complex, both extents can be compressed
3409 * or just one of them, which would require decompressing and
3410 * re-compressing data (which could increase the new compressed
3411 * size, not allowing the compressed data to fit anymore in an
3412 * inline extent).
3413 * So just don't support this case for now (it should be rare,
3414 * we are not really saving space when cloning inline extents).
3415 */
3416 return -EOPNOTSUPP;
3417 }
3418
3419 btrfs_release_path(path);
3420 ret = btrfs_drop_extents(trans, root, dst, drop_start, aligned_end, 1);
3421 if (ret)
3422 return ret;
3423 ret = btrfs_insert_empty_item(trans, root, path, new_key, size);
3424 if (ret)
3425 return ret;
3426
3427 if (skip) {
3428 const u32 start = btrfs_file_extent_calc_inline_size(0);
3429
3430 memmove(inline_data + start, inline_data + start + skip, datal);
3431 }
3432
3433 write_extent_buffer(path->nodes[0], inline_data,
3434 btrfs_item_ptr_offset(path->nodes[0],
3435 path->slots[0]),
3436 size);
3437 inode_add_bytes(dst, datal);
3438
3439 return 0;
3440}
3441
Mark Fasheh32b7c682013-08-06 11:42:49 -07003442/**
3443 * btrfs_clone() - clone a range from inode file to another
3444 *
3445 * @src: Inode to clone from
3446 * @inode: Inode to clone to
3447 * @off: Offset within source to start clone from
3448 * @olen: Original length, passed by user, of range to clone
Mark Fasheh1c919a52015-06-30 14:42:08 -07003449 * @olen_aligned: Block-aligned value of olen
Mark Fasheh32b7c682013-08-06 11:42:49 -07003450 * @destoff: Offset within @inode to start clone
Mark Fasheh1c919a52015-06-30 14:42:08 -07003451 * @no_time_update: Whether to update mtime/ctime on the target inode
Mark Fasheh32b7c682013-08-06 11:42:49 -07003452 */
3453static int btrfs_clone(struct inode *src, struct inode *inode,
Filipe Mananaf82a9902014-06-01 01:50:28 +01003454 const u64 off, const u64 olen, const u64 olen_aligned,
Mark Fasheh1c919a52015-06-30 14:42:08 -07003455 const u64 destoff, int no_time_update)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003456{
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003457 struct btrfs_root *root = BTRFS_I(inode)->root;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003458 struct btrfs_path *path = NULL;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003459 struct extent_buffer *leaf;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003460 struct btrfs_trans_handle *trans;
3461 char *buf = NULL;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003462 struct btrfs_key key;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003463 u32 nritems;
3464 int slot;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003465 int ret;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003466 const u64 len = olen_aligned;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003467 u64 last_dest_end = destoff;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003468
3469 ret = -ENOMEM;
David Sterba707e8a02014-06-04 19:22:26 +02003470 buf = vmalloc(root->nodesize);
Yan Zhengae01a0a2008-08-04 23:23:47 -04003471 if (!buf)
Mark Fasheh32b7c682013-08-06 11:42:49 -07003472 return ret;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003473
3474 path = btrfs_alloc_path();
3475 if (!path) {
3476 vfree(buf);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003477 return ret;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003478 }
Mark Fasheh32b7c682013-08-06 11:42:49 -07003479
Yan Zhengae01a0a2008-08-04 23:23:47 -04003480 path->reada = 2;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003481 /* clone data */
Li Zefan33345d012011-04-20 10:31:50 +08003482 key.objectid = btrfs_ino(src);
Yan Zhengae01a0a2008-08-04 23:23:47 -04003483 key.type = BTRFS_EXTENT_DATA_KEY;
Filipe Manana2c463822014-05-31 02:31:05 +01003484 key.offset = off;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003485
3486 while (1) {
Chris Masonde249e62015-04-11 05:09:06 -07003487 u64 next_key_min_offset = key.offset + 1;
Filipe Mananadf858e72015-03-31 14:56:46 +01003488
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003489 /*
3490 * note the key will change type as we walk through the
3491 * tree.
3492 */
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003493 path->leave_spinning = 1;
David Sterba362a20c2011-08-01 18:11:57 +02003494 ret = btrfs_search_slot(NULL, BTRFS_I(src)->root, &key, path,
3495 0, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003496 if (ret < 0)
3497 goto out;
Filipe Manana2c463822014-05-31 02:31:05 +01003498 /*
3499 * First search, if no extent item that starts at offset off was
3500 * found but the previous item is an extent item, it's possible
3501 * it might overlap our target range, therefore process it.
3502 */
3503 if (key.offset == off && ret > 0 && path->slots[0] > 0) {
3504 btrfs_item_key_to_cpu(path->nodes[0], &key,
3505 path->slots[0] - 1);
3506 if (key.type == BTRFS_EXTENT_DATA_KEY)
3507 path->slots[0]--;
3508 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003509
Yan Zhengae01a0a2008-08-04 23:23:47 -04003510 nritems = btrfs_header_nritems(path->nodes[0]);
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003511process_slot:
Yan Zhengae01a0a2008-08-04 23:23:47 -04003512 if (path->slots[0] >= nritems) {
David Sterba362a20c2011-08-01 18:11:57 +02003513 ret = btrfs_next_leaf(BTRFS_I(src)->root, path);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003514 if (ret < 0)
3515 goto out;
3516 if (ret > 0)
3517 break;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003518 nritems = btrfs_header_nritems(path->nodes[0]);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003519 }
3520 leaf = path->nodes[0];
3521 slot = path->slots[0];
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003522
Yan Zhengae01a0a2008-08-04 23:23:47 -04003523 btrfs_item_key_to_cpu(leaf, &key, slot);
David Sterba962a2982014-06-04 18:41:45 +02003524 if (key.type > BTRFS_EXTENT_DATA_KEY ||
Li Zefan33345d012011-04-20 10:31:50 +08003525 key.objectid != btrfs_ino(src))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003526 break;
3527
David Sterba962a2982014-06-04 18:41:45 +02003528 if (key.type == BTRFS_EXTENT_DATA_KEY) {
Sage Weilc5c9cd42008-11-12 14:32:25 -05003529 struct btrfs_file_extent_item *extent;
3530 int type;
Zheng Yan31840ae2008-09-23 13:14:14 -04003531 u32 size;
3532 struct btrfs_key new_key;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003533 u64 disko = 0, diskl = 0;
3534 u64 datao = 0, datal = 0;
3535 u8 comp;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003536 u64 drop_start;
Zheng Yan31840ae2008-09-23 13:14:14 -04003537
Sage Weilc5c9cd42008-11-12 14:32:25 -05003538 extent = btrfs_item_ptr(leaf, slot,
3539 struct btrfs_file_extent_item);
3540 comp = btrfs_file_extent_compression(leaf, extent);
3541 type = btrfs_file_extent_type(leaf, extent);
Chris Masonc8a894d2009-06-27 21:07:03 -04003542 if (type == BTRFS_FILE_EXTENT_REG ||
3543 type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masond3977122009-01-05 21:25:51 -05003544 disko = btrfs_file_extent_disk_bytenr(leaf,
3545 extent);
3546 diskl = btrfs_file_extent_disk_num_bytes(leaf,
3547 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003548 datao = btrfs_file_extent_offset(leaf, extent);
Chris Masond3977122009-01-05 21:25:51 -05003549 datal = btrfs_file_extent_num_bytes(leaf,
3550 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003551 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
3552 /* take upper bound, may be compressed */
3553 datal = btrfs_file_extent_ram_bytes(leaf,
3554 extent);
3555 }
Zheng Yan31840ae2008-09-23 13:14:14 -04003556
Filipe Manana2c463822014-05-31 02:31:05 +01003557 /*
3558 * The first search might have left us at an extent
3559 * item that ends before our target range's start, can
3560 * happen if we have holes and NO_HOLES feature enabled.
3561 */
3562 if (key.offset + datal <= off) {
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003563 path->slots[0]++;
3564 goto process_slot;
Filipe Manana2c463822014-05-31 02:31:05 +01003565 } else if (key.offset >= off + len) {
3566 break;
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003567 }
Filipe Mananadf858e72015-03-31 14:56:46 +01003568 next_key_min_offset = key.offset + datal;
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003569 size = btrfs_item_size_nr(leaf, slot);
3570 read_extent_buffer(leaf, buf,
3571 btrfs_item_ptr_offset(leaf, slot),
3572 size);
3573
3574 btrfs_release_path(path);
3575 path->leave_spinning = 0;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003576
Zheng Yan31840ae2008-09-23 13:14:14 -04003577 memcpy(&new_key, &key, sizeof(new_key));
Li Zefan33345d012011-04-20 10:31:50 +08003578 new_key.objectid = btrfs_ino(inode);
Li Zefan4d728ec2011-01-26 14:10:43 +08003579 if (off <= key.offset)
3580 new_key.offset = key.offset + destoff - off;
3581 else
3582 new_key.offset = destoff;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003583
Sage Weilb6f34092011-09-20 14:48:51 -04003584 /*
Filipe Mananaf82a9902014-06-01 01:50:28 +01003585 * Deal with a hole that doesn't have an extent item
3586 * that represents it (NO_HOLES feature enabled).
3587 * This hole is either in the middle of the cloning
3588 * range or at the beginning (fully overlaps it or
3589 * partially overlaps it).
3590 */
3591 if (new_key.offset != last_dest_end)
3592 drop_start = last_dest_end;
3593 else
3594 drop_start = new_key.offset;
3595
3596 /*
Sage Weilb6f34092011-09-20 14:48:51 -04003597 * 1 - adjusting old extent (we may have to split it)
3598 * 1 - add new extent
3599 * 1 - inode update
3600 */
3601 trans = btrfs_start_transaction(root, 3);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003602 if (IS_ERR(trans)) {
3603 ret = PTR_ERR(trans);
3604 goto out;
3605 }
3606
Chris Masonc8a894d2009-06-27 21:07:03 -04003607 if (type == BTRFS_FILE_EXTENT_REG ||
3608 type == BTRFS_FILE_EXTENT_PREALLOC) {
Li Zefand72c0842011-09-11 10:52:25 -04003609 /*
3610 * a | --- range to clone ---| b
3611 * | ------------- extent ------------- |
3612 */
3613
Antonio Ospite93915582014-06-04 14:03:48 +02003614 /* subtract range b */
Li Zefand72c0842011-09-11 10:52:25 -04003615 if (key.offset + datal > off + len)
3616 datal = off + len - key.offset;
3617
Antonio Ospite93915582014-06-04 14:03:48 +02003618 /* subtract range a */
Yan, Zhenga22285a2010-05-16 10:48:46 -04003619 if (off > key.offset) {
3620 datao += off - key.offset;
3621 datal -= off - key.offset;
3622 }
3623
Josef Bacik5dc562c2012-08-17 13:14:17 -04003624 ret = btrfs_drop_extents(trans, root, inode,
Filipe Mananaf82a9902014-06-01 01:50:28 +01003625 drop_start,
Yan, Zhenga22285a2010-05-16 10:48:46 -04003626 new_key.offset + datal,
Josef Bacik26714852012-08-29 12:24:27 -04003627 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003628 if (ret) {
David Sterba3f9e3df2014-04-15 18:50:17 +02003629 if (ret != -EOPNOTSUPP)
Liu Bo00fdf132014-03-10 18:56:07 +08003630 btrfs_abort_transaction(trans,
3631 root, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003632 btrfs_end_transaction(trans, root);
3633 goto out;
3634 }
Yan, Zhenga22285a2010-05-16 10:48:46 -04003635
Sage Weilc5c9cd42008-11-12 14:32:25 -05003636 ret = btrfs_insert_empty_item(trans, root, path,
3637 &new_key, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003638 if (ret) {
3639 btrfs_abort_transaction(trans, root,
3640 ret);
3641 btrfs_end_transaction(trans, root);
3642 goto out;
3643 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05003644
3645 leaf = path->nodes[0];
3646 slot = path->slots[0];
3647 write_extent_buffer(leaf, buf,
3648 btrfs_item_ptr_offset(leaf, slot),
3649 size);
3650
3651 extent = btrfs_item_ptr(leaf, slot,
3652 struct btrfs_file_extent_item);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003653
Sage Weilc5c9cd42008-11-12 14:32:25 -05003654 /* disko == 0 means it's a hole */
3655 if (!disko)
3656 datao = 0;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003657
3658 btrfs_set_file_extent_offset(leaf, extent,
3659 datao);
3660 btrfs_set_file_extent_num_bytes(leaf, extent,
3661 datal);
Josef Bacikfcebe452014-05-13 17:30:47 -07003662
Sage Weilc5c9cd42008-11-12 14:32:25 -05003663 if (disko) {
3664 inode_add_bytes(inode, datal);
3665 ret = btrfs_inc_extent_ref(trans, root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003666 disko, diskl, 0,
3667 root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08003668 btrfs_ino(inode),
Filipe Mananab06c4bf2015-10-23 07:52:54 +01003669 new_key.offset - datao);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003670 if (ret) {
3671 btrfs_abort_transaction(trans,
3672 root,
3673 ret);
3674 btrfs_end_transaction(trans,
3675 root);
3676 goto out;
3677
3678 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05003679 }
3680 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
3681 u64 skip = 0;
3682 u64 trim = 0;
Filipe Mananaed958762015-07-14 16:09:39 +01003683
Sage Weilc5c9cd42008-11-12 14:32:25 -05003684 if (off > key.offset) {
3685 skip = off - key.offset;
3686 new_key.offset += skip;
3687 }
Chris Masond3977122009-01-05 21:25:51 -05003688
Liu Boaa42ffd2012-09-18 03:52:23 -06003689 if (key.offset + datal > off + len)
3690 trim = key.offset + datal - (off + len);
Chris Masond3977122009-01-05 21:25:51 -05003691
Sage Weilc5c9cd42008-11-12 14:32:25 -05003692 if (comp && (skip || trim)) {
Sage Weilc5c9cd42008-11-12 14:32:25 -05003693 ret = -EINVAL;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003694 btrfs_end_transaction(trans, root);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003695 goto out;
3696 }
3697 size -= skip + trim;
3698 datal -= skip + trim;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003699
Filipe Manana8039d872015-10-13 15:15:00 +01003700 ret = clone_copy_inline_extent(src, inode,
3701 trans, path,
3702 &new_key,
3703 drop_start,
3704 datal,
3705 skip, size, buf);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003706 if (ret) {
David Sterba3f9e3df2014-04-15 18:50:17 +02003707 if (ret != -EOPNOTSUPP)
Chris Mason3a29bc02014-04-07 07:10:40 -07003708 btrfs_abort_transaction(trans,
Filipe Manana8039d872015-10-13 15:15:00 +01003709 root,
3710 ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003711 btrfs_end_transaction(trans, root);
3712 goto out;
3713 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05003714 leaf = path->nodes[0];
3715 slot = path->slots[0];
Sage Weilc5c9cd42008-11-12 14:32:25 -05003716 }
3717
Filipe Manana7ffbb592014-06-09 03:48:05 +01003718 /* If we have an implicit hole (NO_HOLES feature). */
3719 if (drop_start < new_key.offset)
3720 clone_update_extent_map(inode, trans,
Filipe Manana14f59792014-06-29 21:45:40 +01003721 NULL, drop_start,
Filipe Manana7ffbb592014-06-09 03:48:05 +01003722 new_key.offset - drop_start);
3723
Filipe Manana14f59792014-06-29 21:45:40 +01003724 clone_update_extent_map(inode, trans, path, 0, 0);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003725
Sage Weilc5c9cd42008-11-12 14:32:25 -05003726 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02003727 btrfs_release_path(path);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003728
Filipe Manana62e23902014-08-08 02:47:06 +01003729 last_dest_end = ALIGN(new_key.offset + datal,
3730 root->sectorsize);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003731 ret = clone_finish_inode_update(trans, inode,
3732 last_dest_end,
Mark Fasheh1c919a52015-06-30 14:42:08 -07003733 destoff, olen,
3734 no_time_update);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003735 if (ret)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003736 goto out;
Filipe Manana2c463822014-05-31 02:31:05 +01003737 if (new_key.offset + datal >= destoff + len)
3738 break;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003739 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003740 btrfs_release_path(path);
Filipe Mananadf858e72015-03-31 14:56:46 +01003741 key.offset = next_key_min_offset;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003742 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003743 ret = 0;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003744
Filipe Mananaf82a9902014-06-01 01:50:28 +01003745 if (last_dest_end < destoff + len) {
3746 /*
3747 * We have an implicit hole (NO_HOLES feature is enabled) that
3748 * fully or partially overlaps our cloning range at its end.
3749 */
3750 btrfs_release_path(path);
3751
3752 /*
3753 * 1 - remove extent(s)
3754 * 1 - inode update
3755 */
3756 trans = btrfs_start_transaction(root, 2);
3757 if (IS_ERR(trans)) {
3758 ret = PTR_ERR(trans);
3759 goto out;
3760 }
3761 ret = btrfs_drop_extents(trans, root, inode,
3762 last_dest_end, destoff + len, 1);
3763 if (ret) {
3764 if (ret != -EOPNOTSUPP)
3765 btrfs_abort_transaction(trans, root, ret);
3766 btrfs_end_transaction(trans, root);
3767 goto out;
3768 }
Filipe Manana14f59792014-06-29 21:45:40 +01003769 clone_update_extent_map(inode, trans, NULL, last_dest_end,
3770 destoff + len - last_dest_end);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003771 ret = clone_finish_inode_update(trans, inode, destoff + len,
Mark Fasheh1c919a52015-06-30 14:42:08 -07003772 destoff, olen, no_time_update);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003773 }
3774
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003775out:
Mark Fasheh32b7c682013-08-06 11:42:49 -07003776 btrfs_free_path(path);
3777 vfree(buf);
3778 return ret;
3779}
3780
3781static noinline long btrfs_ioctl_clone(struct file *file, unsigned long srcfd,
3782 u64 off, u64 olen, u64 destoff)
3783{
Al Viro54563d42013-09-01 15:57:51 -04003784 struct inode *inode = file_inode(file);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003785 struct btrfs_root *root = BTRFS_I(inode)->root;
3786 struct fd src_file;
3787 struct inode *src;
3788 int ret;
3789 u64 len = olen;
3790 u64 bs = root->fs_info->sb->s_blocksize;
3791 int same_inode = 0;
3792
3793 /*
3794 * TODO:
3795 * - split compressed inline extents. annoying: we need to
3796 * decompress into destination's address_space (the file offset
3797 * may change, so source mapping won't do), then recompress (or
3798 * otherwise reinsert) a subrange.
Liu Bo00fdf132014-03-10 18:56:07 +08003799 *
3800 * - split destination inode's inline extents. The inline extents can
3801 * be either compressed or non-compressed.
Mark Fasheh32b7c682013-08-06 11:42:49 -07003802 */
3803
3804 /* the destination must be opened for writing */
3805 if (!(file->f_mode & FMODE_WRITE) || (file->f_flags & O_APPEND))
3806 return -EINVAL;
3807
3808 if (btrfs_root_readonly(root))
3809 return -EROFS;
3810
3811 ret = mnt_want_write_file(file);
3812 if (ret)
3813 return ret;
3814
3815 src_file = fdget(srcfd);
3816 if (!src_file.file) {
3817 ret = -EBADF;
3818 goto out_drop_write;
3819 }
3820
3821 ret = -EXDEV;
3822 if (src_file.file->f_path.mnt != file->f_path.mnt)
3823 goto out_fput;
3824
3825 src = file_inode(src_file.file);
3826
3827 ret = -EINVAL;
3828 if (src == inode)
3829 same_inode = 1;
3830
3831 /* the src must be open for reading */
3832 if (!(src_file.file->f_mode & FMODE_READ))
3833 goto out_fput;
3834
3835 /* don't make the dst file partly checksummed */
3836 if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
3837 (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM))
3838 goto out_fput;
3839
3840 ret = -EISDIR;
3841 if (S_ISDIR(src->i_mode) || S_ISDIR(inode->i_mode))
3842 goto out_fput;
3843
3844 ret = -EXDEV;
3845 if (src->i_sb != inode->i_sb)
3846 goto out_fput;
3847
3848 if (!same_inode) {
Mark Fasheh293a8482015-06-30 14:42:06 -07003849 btrfs_double_inode_lock(src, inode);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003850 } else {
3851 mutex_lock(&src->i_mutex);
3852 }
3853
3854 /* determine range to clone */
3855 ret = -EINVAL;
3856 if (off + len > src->i_size || off + len < off)
3857 goto out_unlock;
3858 if (len == 0)
3859 olen = len = src->i_size - off;
3860 /* if we extend to eof, continue to block boundary */
3861 if (off + len == src->i_size)
3862 len = ALIGN(src->i_size, bs) - off;
3863
Filipe Mananaccccf3d62015-03-30 18:23:59 +01003864 if (len == 0) {
3865 ret = 0;
3866 goto out_unlock;
3867 }
3868
Mark Fasheh32b7c682013-08-06 11:42:49 -07003869 /* verify the end result is block aligned */
3870 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs) ||
3871 !IS_ALIGNED(destoff, bs))
3872 goto out_unlock;
3873
3874 /* verify if ranges are overlapped within the same file */
3875 if (same_inode) {
3876 if (destoff + len > off && destoff < off + len)
3877 goto out_unlock;
3878 }
3879
3880 if (destoff > inode->i_size) {
3881 ret = btrfs_cont_expand(inode, inode->i_size, destoff);
3882 if (ret)
3883 goto out_unlock;
3884 }
3885
Filipe Mananac125b8b2014-05-23 05:03:34 +01003886 /*
3887 * Lock the target range too. Right after we replace the file extent
3888 * items in the fs tree (which now point to the cloned data), we might
3889 * have a worker replace them with extent items relative to a write
3890 * operation that was issued before this clone operation (i.e. confront
3891 * with inode.c:btrfs_finish_ordered_io).
3892 */
3893 if (same_inode) {
3894 u64 lock_start = min_t(u64, off, destoff);
3895 u64 lock_len = max_t(u64, off, destoff) + len - lock_start;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003896
Filipe Mananac125b8b2014-05-23 05:03:34 +01003897 lock_extent_range(src, lock_start, lock_len);
3898 } else {
Mark Fasheh293a8482015-06-30 14:42:06 -07003899 btrfs_double_extent_lock(src, off, inode, destoff, len);
Filipe Mananac125b8b2014-05-23 05:03:34 +01003900 }
Mark Fasheh32b7c682013-08-06 11:42:49 -07003901
Mark Fasheh1c919a52015-06-30 14:42:08 -07003902 ret = btrfs_clone(src, inode, off, olen, len, destoff, 0);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003903
Filipe Mananac125b8b2014-05-23 05:03:34 +01003904 if (same_inode) {
3905 u64 lock_start = min_t(u64, off, destoff);
3906 u64 lock_end = max_t(u64, off, destoff) + len - 1;
3907
3908 unlock_extent(&BTRFS_I(src)->io_tree, lock_start, lock_end);
3909 } else {
Mark Fasheh293a8482015-06-30 14:42:06 -07003910 btrfs_double_extent_unlock(src, off, inode, destoff, len);
Filipe Mananac125b8b2014-05-23 05:03:34 +01003911 }
3912 /*
3913 * Truncate page cache pages so that future reads will see the cloned
3914 * data immediately and not the previous data.
3915 */
3916 truncate_inode_pages_range(&inode->i_data, destoff,
3917 PAGE_CACHE_ALIGN(destoff + len) - 1);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003918out_unlock:
Mark Fasheh293a8482015-06-30 14:42:06 -07003919 if (!same_inode)
3920 btrfs_double_inode_unlock(src, inode);
3921 else
Filipe David Borba Mananac57c2b32014-01-11 21:31:25 +00003922 mutex_unlock(&src->i_mutex);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003923out_fput:
Al Viro2903ff02012-08-28 12:52:22 -04003924 fdput(src_file);
Yan Zhengab67b7c2008-12-19 10:58:39 -05003925out_drop_write:
Al Viro2a79f172011-12-09 08:06:57 -05003926 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003927 return ret;
3928}
3929
Christoph Hellwig7a865e82008-12-02 09:52:24 -05003930static long btrfs_ioctl_clone_range(struct file *file, void __user *argp)
Sage Weilc5c9cd42008-11-12 14:32:25 -05003931{
3932 struct btrfs_ioctl_clone_range_args args;
3933
Christoph Hellwig7a865e82008-12-02 09:52:24 -05003934 if (copy_from_user(&args, argp, sizeof(args)))
Sage Weilc5c9cd42008-11-12 14:32:25 -05003935 return -EFAULT;
3936 return btrfs_ioctl_clone(file, args.src_fd, args.src_offset,
3937 args.src_length, args.dest_offset);
3938}
3939
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003940/*
3941 * there are many ways the trans_start and trans_end ioctls can lead
3942 * to deadlocks. They should only be used by applications that
3943 * basically own the machine, and have a very in depth understanding
3944 * of all the possible deadlocks and enospc problems.
3945 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05003946static long btrfs_ioctl_trans_start(struct file *file)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003947{
Al Viro496ad9a2013-01-23 17:07:38 -05003948 struct inode *inode = file_inode(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003949 struct btrfs_root *root = BTRFS_I(inode)->root;
3950 struct btrfs_trans_handle *trans;
Sage Weil1ab86ae2009-09-29 18:38:44 -04003951 int ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003952
Sage Weil1ab86ae2009-09-29 18:38:44 -04003953 ret = -EPERM;
Christoph Hellwigdf5b5522008-06-11 21:53:58 -04003954 if (!capable(CAP_SYS_ADMIN))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003955 goto out;
Sage Weil1ab86ae2009-09-29 18:38:44 -04003956
3957 ret = -EINPROGRESS;
3958 if (file->private_data)
3959 goto out;
Sage Weil9ca9ee02008-08-04 10:41:27 -04003960
Li Zefanb83cc962010-12-20 16:04:08 +08003961 ret = -EROFS;
3962 if (btrfs_root_readonly(root))
3963 goto out;
3964
Al Viroa561be72011-11-23 11:57:51 -05003965 ret = mnt_want_write_file(file);
Yan Zhengc146afa2008-11-12 14:34:12 -05003966 if (ret)
3967 goto out;
3968
Josef Bacika4abeea2011-04-11 17:25:13 -04003969 atomic_inc(&root->fs_info->open_ioctl_trans);
Sage Weil9ca9ee02008-08-04 10:41:27 -04003970
Sage Weil1ab86ae2009-09-29 18:38:44 -04003971 ret = -ENOMEM;
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003972 trans = btrfs_start_ioctl_transaction(root);
Tsutomu Itohabd30bb2011-01-24 00:57:10 +00003973 if (IS_ERR(trans))
Sage Weil1ab86ae2009-09-29 18:38:44 -04003974 goto out_drop;
3975
3976 file->private_data = trans;
3977 return 0;
3978
3979out_drop:
Josef Bacika4abeea2011-04-11 17:25:13 -04003980 atomic_dec(&root->fs_info->open_ioctl_trans);
Al Viro2a79f172011-12-09 08:06:57 -05003981 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003982out:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003983 return ret;
3984}
3985
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003986static long btrfs_ioctl_default_subvol(struct file *file, void __user *argp)
3987{
Al Viro496ad9a2013-01-23 17:07:38 -05003988 struct inode *inode = file_inode(file);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003989 struct btrfs_root *root = BTRFS_I(inode)->root;
3990 struct btrfs_root *new_root;
3991 struct btrfs_dir_item *di;
3992 struct btrfs_trans_handle *trans;
3993 struct btrfs_path *path;
3994 struct btrfs_key location;
3995 struct btrfs_disk_key disk_key;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003996 u64 objectid = 0;
3997 u64 dir_id;
Miao Xie3c04ce02012-11-26 08:43:07 +00003998 int ret;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003999
4000 if (!capable(CAP_SYS_ADMIN))
4001 return -EPERM;
4002
Miao Xie3c04ce02012-11-26 08:43:07 +00004003 ret = mnt_want_write_file(file);
4004 if (ret)
4005 return ret;
4006
4007 if (copy_from_user(&objectid, argp, sizeof(objectid))) {
4008 ret = -EFAULT;
4009 goto out;
4010 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004011
4012 if (!objectid)
chandan1cecf572013-09-13 19:34:10 +05304013 objectid = BTRFS_FS_TREE_OBJECTID;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004014
4015 location.objectid = objectid;
4016 location.type = BTRFS_ROOT_ITEM_KEY;
4017 location.offset = (u64)-1;
4018
4019 new_root = btrfs_read_fs_root_no_name(root->fs_info, &location);
Miao Xie3c04ce02012-11-26 08:43:07 +00004020 if (IS_ERR(new_root)) {
4021 ret = PTR_ERR(new_root);
4022 goto out;
4023 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004024
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004025 path = btrfs_alloc_path();
Miao Xie3c04ce02012-11-26 08:43:07 +00004026 if (!path) {
4027 ret = -ENOMEM;
4028 goto out;
4029 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004030 path->leave_spinning = 1;
4031
4032 trans = btrfs_start_transaction(root, 1);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00004033 if (IS_ERR(trans)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004034 btrfs_free_path(path);
Miao Xie3c04ce02012-11-26 08:43:07 +00004035 ret = PTR_ERR(trans);
4036 goto out;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004037 }
4038
David Sterba6c417612011-04-13 15:41:04 +02004039 dir_id = btrfs_super_root_dir(root->fs_info->super_copy);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004040 di = btrfs_lookup_dir_item(trans, root->fs_info->tree_root, path,
4041 dir_id, "default", 7, 1);
Dan Carpentercf1e99a2010-05-29 09:47:24 +00004042 if (IS_ERR_OR_NULL(di)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004043 btrfs_free_path(path);
4044 btrfs_end_transaction(trans, root);
Frank Holtonefe120a2013-12-20 11:37:06 -05004045 btrfs_err(new_root->fs_info, "Umm, you don't have the default dir"
4046 "item, this isn't going to work");
Miao Xie3c04ce02012-11-26 08:43:07 +00004047 ret = -ENOENT;
4048 goto out;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004049 }
4050
4051 btrfs_cpu_key_to_disk(&disk_key, &new_root->root_key);
4052 btrfs_set_dir_item_key(path->nodes[0], di, &disk_key);
4053 btrfs_mark_buffer_dirty(path->nodes[0]);
4054 btrfs_free_path(path);
4055
Mitch Harder2b0ce2c2012-07-24 11:58:43 -06004056 btrfs_set_fs_incompat(root->fs_info, DEFAULT_SUBVOL);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004057 btrfs_end_transaction(trans, root);
Miao Xie3c04ce02012-11-26 08:43:07 +00004058out:
4059 mnt_drop_write_file(file);
4060 return ret;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004061}
4062
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02004063void btrfs_get_block_group_info(struct list_head *groups_list,
4064 struct btrfs_ioctl_space_info *space)
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004065{
4066 struct btrfs_block_group_cache *block_group;
4067
4068 space->total_bytes = 0;
4069 space->used_bytes = 0;
4070 space->flags = 0;
4071 list_for_each_entry(block_group, groups_list, list) {
4072 space->flags = block_group->flags;
4073 space->total_bytes += block_group->key.offset;
4074 space->used_bytes +=
4075 btrfs_block_group_used(&block_group->item);
4076 }
4077}
4078
Eric Sandeen48a3b632013-04-25 20:41:01 +00004079static long btrfs_ioctl_space_info(struct btrfs_root *root, void __user *arg)
Josef Bacik1406e432010-01-13 18:19:06 +00004080{
4081 struct btrfs_ioctl_space_args space_args;
4082 struct btrfs_ioctl_space_info space;
4083 struct btrfs_ioctl_space_info *dest;
Chris Mason7fde62b2010-03-16 15:40:10 -04004084 struct btrfs_ioctl_space_info *dest_orig;
Daniel J Blueman13f26962011-04-11 15:56:31 +00004085 struct btrfs_ioctl_space_info __user *user_dest;
Josef Bacik1406e432010-01-13 18:19:06 +00004086 struct btrfs_space_info *info;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004087 u64 types[] = {BTRFS_BLOCK_GROUP_DATA,
4088 BTRFS_BLOCK_GROUP_SYSTEM,
4089 BTRFS_BLOCK_GROUP_METADATA,
4090 BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA};
4091 int num_types = 4;
Chris Mason7fde62b2010-03-16 15:40:10 -04004092 int alloc_size;
Josef Bacik1406e432010-01-13 18:19:06 +00004093 int ret = 0;
Dan Rosenberg51788b12011-02-14 16:04:23 -05004094 u64 slot_count = 0;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004095 int i, c;
Josef Bacik1406e432010-01-13 18:19:06 +00004096
4097 if (copy_from_user(&space_args,
4098 (struct btrfs_ioctl_space_args __user *)arg,
4099 sizeof(space_args)))
4100 return -EFAULT;
4101
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004102 for (i = 0; i < num_types; i++) {
4103 struct btrfs_space_info *tmp;
4104
4105 info = NULL;
4106 rcu_read_lock();
4107 list_for_each_entry_rcu(tmp, &root->fs_info->space_info,
4108 list) {
4109 if (tmp->flags == types[i]) {
4110 info = tmp;
4111 break;
4112 }
4113 }
4114 rcu_read_unlock();
4115
4116 if (!info)
4117 continue;
4118
4119 down_read(&info->groups_sem);
4120 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
4121 if (!list_empty(&info->block_groups[c]))
4122 slot_count++;
4123 }
4124 up_read(&info->groups_sem);
4125 }
Josef Bacik1406e432010-01-13 18:19:06 +00004126
David Sterba36523e952014-02-07 14:34:12 +01004127 /*
4128 * Global block reserve, exported as a space_info
4129 */
4130 slot_count++;
4131
Chris Mason7fde62b2010-03-16 15:40:10 -04004132 /* space_slots == 0 means they are asking for a count */
4133 if (space_args.space_slots == 0) {
4134 space_args.total_spaces = slot_count;
4135 goto out;
4136 }
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004137
Dan Rosenberg51788b12011-02-14 16:04:23 -05004138 slot_count = min_t(u64, space_args.space_slots, slot_count);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004139
Chris Mason7fde62b2010-03-16 15:40:10 -04004140 alloc_size = sizeof(*dest) * slot_count;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004141
Chris Mason7fde62b2010-03-16 15:40:10 -04004142 /* we generally have at most 6 or so space infos, one for each raid
4143 * level. So, a whole page should be more than enough for everyone
4144 */
4145 if (alloc_size > PAGE_CACHE_SIZE)
4146 return -ENOMEM;
4147
4148 space_args.total_spaces = 0;
4149 dest = kmalloc(alloc_size, GFP_NOFS);
4150 if (!dest)
4151 return -ENOMEM;
4152 dest_orig = dest;
4153
4154 /* now we have a buffer to copy into */
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004155 for (i = 0; i < num_types; i++) {
4156 struct btrfs_space_info *tmp;
Chris Mason7fde62b2010-03-16 15:40:10 -04004157
Dan Rosenberg51788b12011-02-14 16:04:23 -05004158 if (!slot_count)
4159 break;
4160
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004161 info = NULL;
4162 rcu_read_lock();
4163 list_for_each_entry_rcu(tmp, &root->fs_info->space_info,
4164 list) {
4165 if (tmp->flags == types[i]) {
4166 info = tmp;
4167 break;
4168 }
4169 }
4170 rcu_read_unlock();
Chris Mason7fde62b2010-03-16 15:40:10 -04004171
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004172 if (!info)
4173 continue;
4174 down_read(&info->groups_sem);
4175 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
4176 if (!list_empty(&info->block_groups[c])) {
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02004177 btrfs_get_block_group_info(
4178 &info->block_groups[c], &space);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004179 memcpy(dest, &space, sizeof(space));
4180 dest++;
4181 space_args.total_spaces++;
Dan Rosenberg51788b12011-02-14 16:04:23 -05004182 slot_count--;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004183 }
Dan Rosenberg51788b12011-02-14 16:04:23 -05004184 if (!slot_count)
4185 break;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004186 }
4187 up_read(&info->groups_sem);
Josef Bacik1406e432010-01-13 18:19:06 +00004188 }
Josef Bacik1406e432010-01-13 18:19:06 +00004189
David Sterba36523e952014-02-07 14:34:12 +01004190 /*
4191 * Add global block reserve
4192 */
4193 if (slot_count) {
4194 struct btrfs_block_rsv *block_rsv = &root->fs_info->global_block_rsv;
4195
4196 spin_lock(&block_rsv->lock);
4197 space.total_bytes = block_rsv->size;
4198 space.used_bytes = block_rsv->size - block_rsv->reserved;
4199 spin_unlock(&block_rsv->lock);
4200 space.flags = BTRFS_SPACE_INFO_GLOBAL_RSV;
4201 memcpy(dest, &space, sizeof(space));
4202 space_args.total_spaces++;
4203 }
4204
Daniel J Blueman2eec6c82012-04-26 00:37:14 +08004205 user_dest = (struct btrfs_ioctl_space_info __user *)
Chris Mason7fde62b2010-03-16 15:40:10 -04004206 (arg + sizeof(struct btrfs_ioctl_space_args));
4207
4208 if (copy_to_user(user_dest, dest_orig, alloc_size))
4209 ret = -EFAULT;
4210
4211 kfree(dest_orig);
4212out:
4213 if (ret == 0 && copy_to_user(arg, &space_args, sizeof(space_args)))
Josef Bacik1406e432010-01-13 18:19:06 +00004214 ret = -EFAULT;
4215
4216 return ret;
4217}
4218
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004219/*
4220 * there are many ways the trans_start and trans_end ioctls can lead
4221 * to deadlocks. They should only be used by applications that
4222 * basically own the machine, and have a very in depth understanding
4223 * of all the possible deadlocks and enospc problems.
4224 */
4225long btrfs_ioctl_trans_end(struct file *file)
4226{
Al Viro496ad9a2013-01-23 17:07:38 -05004227 struct inode *inode = file_inode(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004228 struct btrfs_root *root = BTRFS_I(inode)->root;
4229 struct btrfs_trans_handle *trans;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004230
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004231 trans = file->private_data;
Sage Weil1ab86ae2009-09-29 18:38:44 -04004232 if (!trans)
4233 return -EINVAL;
Christoph Hellwigb2141072008-09-05 16:43:31 -04004234 file->private_data = NULL;
Sage Weil9ca9ee02008-08-04 10:41:27 -04004235
Sage Weil1ab86ae2009-09-29 18:38:44 -04004236 btrfs_end_transaction(trans, root);
4237
Josef Bacika4abeea2011-04-11 17:25:13 -04004238 atomic_dec(&root->fs_info->open_ioctl_trans);
Sage Weil9ca9ee02008-08-04 10:41:27 -04004239
Al Viro2a79f172011-12-09 08:06:57 -05004240 mnt_drop_write_file(file);
Sage Weil1ab86ae2009-09-29 18:38:44 -04004241 return 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004242}
4243
Miao Xie9a8c28b2012-11-26 08:40:43 +00004244static noinline long btrfs_ioctl_start_sync(struct btrfs_root *root,
4245 void __user *argp)
Sage Weil46204592010-10-29 15:41:32 -04004246{
Sage Weil46204592010-10-29 15:41:32 -04004247 struct btrfs_trans_handle *trans;
4248 u64 transid;
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004249 int ret;
Sage Weil46204592010-10-29 15:41:32 -04004250
Miao Xied4edf392013-02-20 09:17:06 +00004251 trans = btrfs_attach_transaction_barrier(root);
Miao Xieff7c1d32012-11-26 08:41:29 +00004252 if (IS_ERR(trans)) {
4253 if (PTR_ERR(trans) != -ENOENT)
4254 return PTR_ERR(trans);
4255
4256 /* No running transaction, don't bother */
4257 transid = root->fs_info->last_trans_committed;
4258 goto out;
4259 }
Sage Weil46204592010-10-29 15:41:32 -04004260 transid = trans->transid;
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004261 ret = btrfs_commit_transaction_async(trans, root, 0);
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00004262 if (ret) {
4263 btrfs_end_transaction(trans, root);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004264 return ret;
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00004265 }
Miao Xieff7c1d32012-11-26 08:41:29 +00004266out:
Sage Weil46204592010-10-29 15:41:32 -04004267 if (argp)
4268 if (copy_to_user(argp, &transid, sizeof(transid)))
4269 return -EFAULT;
4270 return 0;
4271}
4272
Miao Xie9a8c28b2012-11-26 08:40:43 +00004273static noinline long btrfs_ioctl_wait_sync(struct btrfs_root *root,
4274 void __user *argp)
Sage Weil46204592010-10-29 15:41:32 -04004275{
Sage Weil46204592010-10-29 15:41:32 -04004276 u64 transid;
4277
4278 if (argp) {
4279 if (copy_from_user(&transid, argp, sizeof(transid)))
4280 return -EFAULT;
4281 } else {
4282 transid = 0; /* current trans */
4283 }
4284 return btrfs_wait_for_commit(root, transid);
4285}
4286
Miao Xieb8e95482012-11-26 08:48:01 +00004287static long btrfs_ioctl_scrub(struct file *file, void __user *arg)
Jan Schmidt475f6382011-03-11 15:41:01 +01004288{
Al Viro496ad9a2013-01-23 17:07:38 -05004289 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Jan Schmidt475f6382011-03-11 15:41:01 +01004290 struct btrfs_ioctl_scrub_args *sa;
Miao Xieb8e95482012-11-26 08:48:01 +00004291 int ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01004292
4293 if (!capable(CAP_SYS_ADMIN))
4294 return -EPERM;
4295
4296 sa = memdup_user(arg, sizeof(*sa));
4297 if (IS_ERR(sa))
4298 return PTR_ERR(sa);
4299
Miao Xieb8e95482012-11-26 08:48:01 +00004300 if (!(sa->flags & BTRFS_SCRUB_READONLY)) {
4301 ret = mnt_want_write_file(file);
4302 if (ret)
4303 goto out;
4304 }
4305
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01004306 ret = btrfs_scrub_dev(root->fs_info, sa->devid, sa->start, sa->end,
Stefan Behrens63a212a2012-11-05 18:29:28 +01004307 &sa->progress, sa->flags & BTRFS_SCRUB_READONLY,
4308 0);
Jan Schmidt475f6382011-03-11 15:41:01 +01004309
4310 if (copy_to_user(arg, sa, sizeof(*sa)))
4311 ret = -EFAULT;
4312
Miao Xieb8e95482012-11-26 08:48:01 +00004313 if (!(sa->flags & BTRFS_SCRUB_READONLY))
4314 mnt_drop_write_file(file);
4315out:
Jan Schmidt475f6382011-03-11 15:41:01 +01004316 kfree(sa);
4317 return ret;
4318}
4319
4320static long btrfs_ioctl_scrub_cancel(struct btrfs_root *root, void __user *arg)
4321{
4322 if (!capable(CAP_SYS_ADMIN))
4323 return -EPERM;
4324
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01004325 return btrfs_scrub_cancel(root->fs_info);
Jan Schmidt475f6382011-03-11 15:41:01 +01004326}
4327
4328static long btrfs_ioctl_scrub_progress(struct btrfs_root *root,
4329 void __user *arg)
4330{
4331 struct btrfs_ioctl_scrub_args *sa;
4332 int ret;
4333
4334 if (!capable(CAP_SYS_ADMIN))
4335 return -EPERM;
4336
4337 sa = memdup_user(arg, sizeof(*sa));
4338 if (IS_ERR(sa))
4339 return PTR_ERR(sa);
4340
4341 ret = btrfs_scrub_progress(root, sa->devid, &sa->progress);
4342
4343 if (copy_to_user(arg, sa, sizeof(*sa)))
4344 ret = -EFAULT;
4345
4346 kfree(sa);
4347 return ret;
4348}
4349
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004350static long btrfs_ioctl_get_dev_stats(struct btrfs_root *root,
David Sterbab27f7c02012-06-22 06:30:39 -06004351 void __user *arg)
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004352{
4353 struct btrfs_ioctl_get_dev_stats *sa;
4354 int ret;
4355
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004356 sa = memdup_user(arg, sizeof(*sa));
4357 if (IS_ERR(sa))
4358 return PTR_ERR(sa);
4359
David Sterbab27f7c02012-06-22 06:30:39 -06004360 if ((sa->flags & BTRFS_DEV_STATS_RESET) && !capable(CAP_SYS_ADMIN)) {
4361 kfree(sa);
4362 return -EPERM;
4363 }
4364
4365 ret = btrfs_get_dev_stats(root, sa);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004366
4367 if (copy_to_user(arg, sa, sizeof(*sa)))
4368 ret = -EFAULT;
4369
4370 kfree(sa);
4371 return ret;
4372}
4373
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004374static long btrfs_ioctl_dev_replace(struct btrfs_root *root, void __user *arg)
4375{
4376 struct btrfs_ioctl_dev_replace_args *p;
4377 int ret;
4378
4379 if (!capable(CAP_SYS_ADMIN))
4380 return -EPERM;
4381
4382 p = memdup_user(arg, sizeof(*p));
4383 if (IS_ERR(p))
4384 return PTR_ERR(p);
4385
4386 switch (p->cmd) {
4387 case BTRFS_IOCTL_DEV_REPLACE_CMD_START:
Ilya Dryomovadfa97c2013-10-10 20:39:28 +03004388 if (root->fs_info->sb->s_flags & MS_RDONLY) {
4389 ret = -EROFS;
4390 goto out;
4391 }
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004392 if (atomic_xchg(
4393 &root->fs_info->mutually_exclusive_operation_running,
4394 1)) {
Anand Jaine57138b2013-08-21 11:44:48 +08004395 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004396 } else {
4397 ret = btrfs_dev_replace_start(root, p);
4398 atomic_set(
4399 &root->fs_info->mutually_exclusive_operation_running,
4400 0);
4401 }
4402 break;
4403 case BTRFS_IOCTL_DEV_REPLACE_CMD_STATUS:
4404 btrfs_dev_replace_status(root->fs_info, p);
4405 ret = 0;
4406 break;
4407 case BTRFS_IOCTL_DEV_REPLACE_CMD_CANCEL:
4408 ret = btrfs_dev_replace_cancel(root->fs_info, p);
4409 break;
4410 default:
4411 ret = -EINVAL;
4412 break;
4413 }
4414
4415 if (copy_to_user(arg, p, sizeof(*p)))
4416 ret = -EFAULT;
Ilya Dryomovadfa97c2013-10-10 20:39:28 +03004417out:
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004418 kfree(p);
4419 return ret;
4420}
4421
Jan Schmidtd7728c92011-07-07 16:48:38 +02004422static long btrfs_ioctl_ino_to_path(struct btrfs_root *root, void __user *arg)
4423{
4424 int ret = 0;
4425 int i;
Chris Mason740c3d22011-11-02 15:48:34 -04004426 u64 rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004427 int size;
Chris Mason806468f2011-11-06 03:07:10 -05004428 struct btrfs_ioctl_ino_path_args *ipa = NULL;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004429 struct inode_fs_paths *ipath = NULL;
4430 struct btrfs_path *path;
4431
Kusanagi Kouichi82b22ac2013-01-28 11:33:31 +00004432 if (!capable(CAP_DAC_READ_SEARCH))
Jan Schmidtd7728c92011-07-07 16:48:38 +02004433 return -EPERM;
4434
4435 path = btrfs_alloc_path();
4436 if (!path) {
4437 ret = -ENOMEM;
4438 goto out;
4439 }
4440
4441 ipa = memdup_user(arg, sizeof(*ipa));
4442 if (IS_ERR(ipa)) {
4443 ret = PTR_ERR(ipa);
4444 ipa = NULL;
4445 goto out;
4446 }
4447
4448 size = min_t(u32, ipa->size, 4096);
4449 ipath = init_ipath(size, root, path);
4450 if (IS_ERR(ipath)) {
4451 ret = PTR_ERR(ipath);
4452 ipath = NULL;
4453 goto out;
4454 }
4455
4456 ret = paths_from_inode(ipa->inum, ipath);
4457 if (ret < 0)
4458 goto out;
4459
4460 for (i = 0; i < ipath->fspath->elem_cnt; ++i) {
Jeff Mahoney745c4d82011-11-20 07:31:57 -05004461 rel_ptr = ipath->fspath->val[i] -
4462 (u64)(unsigned long)ipath->fspath->val;
Chris Mason740c3d22011-11-02 15:48:34 -04004463 ipath->fspath->val[i] = rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004464 }
4465
Jeff Mahoney745c4d82011-11-20 07:31:57 -05004466 ret = copy_to_user((void *)(unsigned long)ipa->fspath,
4467 (void *)(unsigned long)ipath->fspath, size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004468 if (ret) {
4469 ret = -EFAULT;
4470 goto out;
4471 }
4472
4473out:
4474 btrfs_free_path(path);
4475 free_ipath(ipath);
4476 kfree(ipa);
4477
4478 return ret;
4479}
4480
4481static int build_ino_list(u64 inum, u64 offset, u64 root, void *ctx)
4482{
4483 struct btrfs_data_container *inodes = ctx;
4484 const size_t c = 3 * sizeof(u64);
4485
4486 if (inodes->bytes_left >= c) {
4487 inodes->bytes_left -= c;
4488 inodes->val[inodes->elem_cnt] = inum;
4489 inodes->val[inodes->elem_cnt + 1] = offset;
4490 inodes->val[inodes->elem_cnt + 2] = root;
4491 inodes->elem_cnt += 3;
4492 } else {
4493 inodes->bytes_missing += c - inodes->bytes_left;
4494 inodes->bytes_left = 0;
4495 inodes->elem_missed += 3;
4496 }
4497
4498 return 0;
4499}
4500
4501static long btrfs_ioctl_logical_to_ino(struct btrfs_root *root,
4502 void __user *arg)
4503{
4504 int ret = 0;
4505 int size;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004506 struct btrfs_ioctl_logical_ino_args *loi;
4507 struct btrfs_data_container *inodes = NULL;
4508 struct btrfs_path *path = NULL;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004509
4510 if (!capable(CAP_SYS_ADMIN))
4511 return -EPERM;
4512
4513 loi = memdup_user(arg, sizeof(*loi));
4514 if (IS_ERR(loi)) {
4515 ret = PTR_ERR(loi);
4516 loi = NULL;
4517 goto out;
4518 }
4519
4520 path = btrfs_alloc_path();
4521 if (!path) {
4522 ret = -ENOMEM;
4523 goto out;
4524 }
4525
Byongho Leeee221842015-12-15 01:42:10 +09004526 size = min_t(u32, loi->size, SZ_64K);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004527 inodes = init_data_container(size);
4528 if (IS_ERR(inodes)) {
4529 ret = PTR_ERR(inodes);
4530 inodes = NULL;
4531 goto out;
4532 }
4533
Liu Bodf031f02012-09-07 20:01:29 -06004534 ret = iterate_inodes_from_logical(loi->logical, root->fs_info, path,
4535 build_ino_list, inodes);
4536 if (ret == -EINVAL)
Jan Schmidtd7728c92011-07-07 16:48:38 +02004537 ret = -ENOENT;
4538 if (ret < 0)
4539 goto out;
4540
Jeff Mahoney745c4d82011-11-20 07:31:57 -05004541 ret = copy_to_user((void *)(unsigned long)loi->inodes,
4542 (void *)(unsigned long)inodes, size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004543 if (ret)
4544 ret = -EFAULT;
4545
4546out:
4547 btrfs_free_path(path);
Liu Bo425d17a2012-09-07 20:01:30 -06004548 vfree(inodes);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004549 kfree(loi);
4550
4551 return ret;
4552}
4553
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004554void update_ioctl_balance_args(struct btrfs_fs_info *fs_info, int lock,
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004555 struct btrfs_ioctl_balance_args *bargs)
4556{
4557 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
4558
4559 bargs->flags = bctl->flags;
4560
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004561 if (atomic_read(&fs_info->balance_running))
4562 bargs->state |= BTRFS_BALANCE_STATE_RUNNING;
4563 if (atomic_read(&fs_info->balance_pause_req))
4564 bargs->state |= BTRFS_BALANCE_STATE_PAUSE_REQ;
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004565 if (atomic_read(&fs_info->balance_cancel_req))
4566 bargs->state |= BTRFS_BALANCE_STATE_CANCEL_REQ;
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004567
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004568 memcpy(&bargs->data, &bctl->data, sizeof(bargs->data));
4569 memcpy(&bargs->meta, &bctl->meta, sizeof(bargs->meta));
4570 memcpy(&bargs->sys, &bctl->sys, sizeof(bargs->sys));
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004571
4572 if (lock) {
4573 spin_lock(&fs_info->balance_lock);
4574 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
4575 spin_unlock(&fs_info->balance_lock);
4576 } else {
4577 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
4578 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004579}
4580
Liu Bo9ba1f6e2012-05-11 18:11:26 +08004581static long btrfs_ioctl_balance(struct file *file, void __user *arg)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004582{
Al Viro496ad9a2013-01-23 17:07:38 -05004583 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004584 struct btrfs_fs_info *fs_info = root->fs_info;
4585 struct btrfs_ioctl_balance_args *bargs;
4586 struct btrfs_balance_control *bctl;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004587 bool need_unlock; /* for mut. excl. ops lock */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004588 int ret;
4589
4590 if (!capable(CAP_SYS_ADMIN))
4591 return -EPERM;
4592
Liu Boe54bfa32012-06-29 03:58:48 -06004593 ret = mnt_want_write_file(file);
Liu Bo9ba1f6e2012-05-11 18:11:26 +08004594 if (ret)
4595 return ret;
4596
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004597again:
4598 if (!atomic_xchg(&fs_info->mutually_exclusive_operation_running, 1)) {
4599 mutex_lock(&fs_info->volume_mutex);
4600 mutex_lock(&fs_info->balance_mutex);
4601 need_unlock = true;
4602 goto locked;
4603 }
4604
4605 /*
4606 * mut. excl. ops lock is locked. Three possibilites:
4607 * (1) some other op is running
4608 * (2) balance is running
4609 * (3) balance is paused -- special case (think resume)
4610 */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004611 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004612 if (fs_info->balance_ctl) {
4613 /* this is either (2) or (3) */
4614 if (!atomic_read(&fs_info->balance_running)) {
4615 mutex_unlock(&fs_info->balance_mutex);
4616 if (!mutex_trylock(&fs_info->volume_mutex))
4617 goto again;
4618 mutex_lock(&fs_info->balance_mutex);
4619
4620 if (fs_info->balance_ctl &&
4621 !atomic_read(&fs_info->balance_running)) {
4622 /* this is (3) */
4623 need_unlock = false;
4624 goto locked;
4625 }
4626
4627 mutex_unlock(&fs_info->balance_mutex);
4628 mutex_unlock(&fs_info->volume_mutex);
4629 goto again;
4630 } else {
4631 /* this is (2) */
4632 mutex_unlock(&fs_info->balance_mutex);
4633 ret = -EINPROGRESS;
4634 goto out;
4635 }
4636 } else {
4637 /* this is (1) */
4638 mutex_unlock(&fs_info->balance_mutex);
Anand Jaine57138b2013-08-21 11:44:48 +08004639 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004640 goto out;
4641 }
4642
4643locked:
4644 BUG_ON(!atomic_read(&fs_info->mutually_exclusive_operation_running));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004645
4646 if (arg) {
4647 bargs = memdup_user(arg, sizeof(*bargs));
4648 if (IS_ERR(bargs)) {
4649 ret = PTR_ERR(bargs);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004650 goto out_unlock;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004651 }
Ilya Dryomovde322262012-01-16 22:04:49 +02004652
4653 if (bargs->flags & BTRFS_BALANCE_RESUME) {
4654 if (!fs_info->balance_ctl) {
4655 ret = -ENOTCONN;
4656 goto out_bargs;
4657 }
4658
4659 bctl = fs_info->balance_ctl;
4660 spin_lock(&fs_info->balance_lock);
4661 bctl->flags |= BTRFS_BALANCE_RESUME;
4662 spin_unlock(&fs_info->balance_lock);
4663
4664 goto do_balance;
4665 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004666 } else {
4667 bargs = NULL;
4668 }
4669
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004670 if (fs_info->balance_ctl) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004671 ret = -EINPROGRESS;
4672 goto out_bargs;
4673 }
4674
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004675 bctl = kzalloc(sizeof(*bctl), GFP_NOFS);
4676 if (!bctl) {
4677 ret = -ENOMEM;
4678 goto out_bargs;
4679 }
4680
4681 bctl->fs_info = fs_info;
4682 if (arg) {
4683 memcpy(&bctl->data, &bargs->data, sizeof(bctl->data));
4684 memcpy(&bctl->meta, &bargs->meta, sizeof(bctl->meta));
4685 memcpy(&bctl->sys, &bargs->sys, sizeof(bctl->sys));
4686
4687 bctl->flags = bargs->flags;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02004688 } else {
4689 /* balance everything - no filters */
4690 bctl->flags |= BTRFS_BALANCE_TYPE_MASK;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004691 }
4692
David Sterba8eb93452015-10-12 16:55:54 +02004693 if (bctl->flags & ~(BTRFS_BALANCE_ARGS_MASK | BTRFS_BALANCE_TYPE_MASK)) {
4694 ret = -EINVAL;
Christian Engelmayer0f89abf2015-10-21 00:50:06 +02004695 goto out_bctl;
David Sterba8eb93452015-10-12 16:55:54 +02004696 }
4697
Ilya Dryomovde322262012-01-16 22:04:49 +02004698do_balance:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004699 /*
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004700 * Ownership of bctl and mutually_exclusive_operation_running
4701 * goes to to btrfs_balance. bctl is freed in __cancel_balance,
4702 * or, if restriper was paused all the way until unmount, in
4703 * free_fs_info. mutually_exclusive_operation_running is
4704 * cleared in __cancel_balance.
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004705 */
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004706 need_unlock = false;
4707
4708 ret = btrfs_balance(bctl, bargs);
Christian Engelmayer0f89abf2015-10-21 00:50:06 +02004709 bctl = NULL;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004710
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004711 if (arg) {
4712 if (copy_to_user(arg, bargs, sizeof(*bargs)))
4713 ret = -EFAULT;
4714 }
4715
Christian Engelmayer0f89abf2015-10-21 00:50:06 +02004716out_bctl:
4717 kfree(bctl);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004718out_bargs:
4719 kfree(bargs);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004720out_unlock:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004721 mutex_unlock(&fs_info->balance_mutex);
4722 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004723 if (need_unlock)
4724 atomic_set(&fs_info->mutually_exclusive_operation_running, 0);
4725out:
Liu Boe54bfa32012-06-29 03:58:48 -06004726 mnt_drop_write_file(file);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004727 return ret;
4728}
4729
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004730static long btrfs_ioctl_balance_ctl(struct btrfs_root *root, int cmd)
4731{
4732 if (!capable(CAP_SYS_ADMIN))
4733 return -EPERM;
4734
4735 switch (cmd) {
4736 case BTRFS_BALANCE_CTL_PAUSE:
4737 return btrfs_pause_balance(root->fs_info);
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004738 case BTRFS_BALANCE_CTL_CANCEL:
4739 return btrfs_cancel_balance(root->fs_info);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004740 }
4741
4742 return -EINVAL;
4743}
4744
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004745static long btrfs_ioctl_balance_progress(struct btrfs_root *root,
4746 void __user *arg)
4747{
4748 struct btrfs_fs_info *fs_info = root->fs_info;
4749 struct btrfs_ioctl_balance_args *bargs;
4750 int ret = 0;
4751
4752 if (!capable(CAP_SYS_ADMIN))
4753 return -EPERM;
4754
4755 mutex_lock(&fs_info->balance_mutex);
4756 if (!fs_info->balance_ctl) {
4757 ret = -ENOTCONN;
4758 goto out;
4759 }
4760
4761 bargs = kzalloc(sizeof(*bargs), GFP_NOFS);
4762 if (!bargs) {
4763 ret = -ENOMEM;
4764 goto out;
4765 }
4766
4767 update_ioctl_balance_args(fs_info, 1, bargs);
4768
4769 if (copy_to_user(arg, bargs, sizeof(*bargs)))
4770 ret = -EFAULT;
4771
4772 kfree(bargs);
4773out:
4774 mutex_unlock(&fs_info->balance_mutex);
4775 return ret;
4776}
4777
Miao Xie905b0dd2012-11-26 08:50:11 +00004778static long btrfs_ioctl_quota_ctl(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004779{
Al Viro496ad9a2013-01-23 17:07:38 -05004780 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004781 struct btrfs_ioctl_quota_ctl_args *sa;
4782 struct btrfs_trans_handle *trans = NULL;
4783 int ret;
4784 int err;
4785
4786 if (!capable(CAP_SYS_ADMIN))
4787 return -EPERM;
4788
Miao Xie905b0dd2012-11-26 08:50:11 +00004789 ret = mnt_want_write_file(file);
4790 if (ret)
4791 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004792
4793 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004794 if (IS_ERR(sa)) {
4795 ret = PTR_ERR(sa);
4796 goto drop_write;
4797 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004798
Wang Shilong7708f022013-04-07 10:24:57 +00004799 down_write(&root->fs_info->subvol_sem);
Jan Schmidt2f232032013-04-25 16:04:51 +00004800 trans = btrfs_start_transaction(root->fs_info->tree_root, 2);
4801 if (IS_ERR(trans)) {
4802 ret = PTR_ERR(trans);
4803 goto out;
Arne Jansen5d13a372011-09-14 15:53:51 +02004804 }
4805
4806 switch (sa->cmd) {
4807 case BTRFS_QUOTA_CTL_ENABLE:
4808 ret = btrfs_quota_enable(trans, root->fs_info);
4809 break;
4810 case BTRFS_QUOTA_CTL_DISABLE:
4811 ret = btrfs_quota_disable(trans, root->fs_info);
4812 break;
Arne Jansen5d13a372011-09-14 15:53:51 +02004813 default:
4814 ret = -EINVAL;
4815 break;
4816 }
4817
Jan Schmidt2f232032013-04-25 16:04:51 +00004818 err = btrfs_commit_transaction(trans, root->fs_info->tree_root);
4819 if (err && !ret)
4820 ret = err;
Arne Jansen5d13a372011-09-14 15:53:51 +02004821out:
4822 kfree(sa);
Wang Shilong7708f022013-04-07 10:24:57 +00004823 up_write(&root->fs_info->subvol_sem);
Miao Xie905b0dd2012-11-26 08:50:11 +00004824drop_write:
4825 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004826 return ret;
4827}
4828
Miao Xie905b0dd2012-11-26 08:50:11 +00004829static long btrfs_ioctl_qgroup_assign(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004830{
Al Viro496ad9a2013-01-23 17:07:38 -05004831 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004832 struct btrfs_ioctl_qgroup_assign_args *sa;
4833 struct btrfs_trans_handle *trans;
4834 int ret;
4835 int err;
4836
4837 if (!capable(CAP_SYS_ADMIN))
4838 return -EPERM;
4839
Miao Xie905b0dd2012-11-26 08:50:11 +00004840 ret = mnt_want_write_file(file);
4841 if (ret)
4842 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004843
4844 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004845 if (IS_ERR(sa)) {
4846 ret = PTR_ERR(sa);
4847 goto drop_write;
4848 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004849
4850 trans = btrfs_join_transaction(root);
4851 if (IS_ERR(trans)) {
4852 ret = PTR_ERR(trans);
4853 goto out;
4854 }
4855
4856 /* FIXME: check if the IDs really exist */
4857 if (sa->assign) {
4858 ret = btrfs_add_qgroup_relation(trans, root->fs_info,
4859 sa->src, sa->dst);
4860 } else {
4861 ret = btrfs_del_qgroup_relation(trans, root->fs_info,
4862 sa->src, sa->dst);
4863 }
4864
Qu Wenruoe082f562015-02-27 16:24:28 +08004865 /* update qgroup status and info */
4866 err = btrfs_run_qgroups(trans, root->fs_info);
4867 if (err < 0)
Anand Jaina4553fe2015-09-25 14:43:01 +08004868 btrfs_std_error(root->fs_info, ret,
Qu Wenruoe082f562015-02-27 16:24:28 +08004869 "failed to update qgroup status and info\n");
Arne Jansen5d13a372011-09-14 15:53:51 +02004870 err = btrfs_end_transaction(trans, root);
4871 if (err && !ret)
4872 ret = err;
4873
4874out:
4875 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004876drop_write:
4877 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004878 return ret;
4879}
4880
Miao Xie905b0dd2012-11-26 08:50:11 +00004881static long btrfs_ioctl_qgroup_create(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004882{
Al Viro496ad9a2013-01-23 17:07:38 -05004883 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004884 struct btrfs_ioctl_qgroup_create_args *sa;
4885 struct btrfs_trans_handle *trans;
4886 int ret;
4887 int err;
4888
4889 if (!capable(CAP_SYS_ADMIN))
4890 return -EPERM;
4891
Miao Xie905b0dd2012-11-26 08:50:11 +00004892 ret = mnt_want_write_file(file);
4893 if (ret)
4894 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004895
4896 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004897 if (IS_ERR(sa)) {
4898 ret = PTR_ERR(sa);
4899 goto drop_write;
4900 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004901
Miao Xied86e56c2012-11-15 11:35:41 +00004902 if (!sa->qgroupid) {
4903 ret = -EINVAL;
4904 goto out;
4905 }
4906
Arne Jansen5d13a372011-09-14 15:53:51 +02004907 trans = btrfs_join_transaction(root);
4908 if (IS_ERR(trans)) {
4909 ret = PTR_ERR(trans);
4910 goto out;
4911 }
4912
4913 /* FIXME: check if the IDs really exist */
4914 if (sa->create) {
Dongsheng Yang4087cf22015-01-18 10:59:23 -05004915 ret = btrfs_create_qgroup(trans, root->fs_info, sa->qgroupid);
Arne Jansen5d13a372011-09-14 15:53:51 +02004916 } else {
4917 ret = btrfs_remove_qgroup(trans, root->fs_info, sa->qgroupid);
4918 }
4919
4920 err = btrfs_end_transaction(trans, root);
4921 if (err && !ret)
4922 ret = err;
4923
4924out:
4925 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004926drop_write:
4927 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004928 return ret;
4929}
4930
Miao Xie905b0dd2012-11-26 08:50:11 +00004931static long btrfs_ioctl_qgroup_limit(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004932{
Al Viro496ad9a2013-01-23 17:07:38 -05004933 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004934 struct btrfs_ioctl_qgroup_limit_args *sa;
4935 struct btrfs_trans_handle *trans;
4936 int ret;
4937 int err;
4938 u64 qgroupid;
4939
4940 if (!capable(CAP_SYS_ADMIN))
4941 return -EPERM;
4942
Miao Xie905b0dd2012-11-26 08:50:11 +00004943 ret = mnt_want_write_file(file);
4944 if (ret)
4945 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004946
4947 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004948 if (IS_ERR(sa)) {
4949 ret = PTR_ERR(sa);
4950 goto drop_write;
4951 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004952
4953 trans = btrfs_join_transaction(root);
4954 if (IS_ERR(trans)) {
4955 ret = PTR_ERR(trans);
4956 goto out;
4957 }
4958
4959 qgroupid = sa->qgroupid;
4960 if (!qgroupid) {
4961 /* take the current subvol as qgroup */
4962 qgroupid = root->root_key.objectid;
4963 }
4964
4965 /* FIXME: check if the IDs really exist */
4966 ret = btrfs_limit_qgroup(trans, root->fs_info, qgroupid, &sa->lim);
4967
4968 err = btrfs_end_transaction(trans, root);
4969 if (err && !ret)
4970 ret = err;
4971
4972out:
4973 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004974drop_write:
4975 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004976 return ret;
4977}
4978
Jan Schmidt2f232032013-04-25 16:04:51 +00004979static long btrfs_ioctl_quota_rescan(struct file *file, void __user *arg)
4980{
Al Viro6d0379e2013-06-16 19:32:35 +04004981 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Jan Schmidt2f232032013-04-25 16:04:51 +00004982 struct btrfs_ioctl_quota_rescan_args *qsa;
4983 int ret;
4984
4985 if (!capable(CAP_SYS_ADMIN))
4986 return -EPERM;
4987
4988 ret = mnt_want_write_file(file);
4989 if (ret)
4990 return ret;
4991
4992 qsa = memdup_user(arg, sizeof(*qsa));
4993 if (IS_ERR(qsa)) {
4994 ret = PTR_ERR(qsa);
4995 goto drop_write;
4996 }
4997
4998 if (qsa->flags) {
4999 ret = -EINVAL;
5000 goto out;
5001 }
5002
5003 ret = btrfs_qgroup_rescan(root->fs_info);
5004
5005out:
5006 kfree(qsa);
5007drop_write:
5008 mnt_drop_write_file(file);
5009 return ret;
5010}
5011
5012static long btrfs_ioctl_quota_rescan_status(struct file *file, void __user *arg)
5013{
Al Viro6d0379e2013-06-16 19:32:35 +04005014 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Jan Schmidt2f232032013-04-25 16:04:51 +00005015 struct btrfs_ioctl_quota_rescan_args *qsa;
5016 int ret = 0;
5017
5018 if (!capable(CAP_SYS_ADMIN))
5019 return -EPERM;
5020
5021 qsa = kzalloc(sizeof(*qsa), GFP_NOFS);
5022 if (!qsa)
5023 return -ENOMEM;
5024
5025 if (root->fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_RESCAN) {
5026 qsa->flags = 1;
5027 qsa->progress = root->fs_info->qgroup_rescan_progress.objectid;
5028 }
5029
5030 if (copy_to_user(arg, qsa, sizeof(*qsa)))
5031 ret = -EFAULT;
5032
5033 kfree(qsa);
5034 return ret;
5035}
5036
Jan Schmidt57254b6e2013-05-06 19:14:17 +00005037static long btrfs_ioctl_quota_rescan_wait(struct file *file, void __user *arg)
5038{
Al Viro54563d42013-09-01 15:57:51 -04005039 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Jan Schmidt57254b6e2013-05-06 19:14:17 +00005040
5041 if (!capable(CAP_SYS_ADMIN))
5042 return -EPERM;
5043
5044 return btrfs_qgroup_wait_for_completion(root->fs_info);
5045}
5046
Hugo Millsabccd002014-01-30 20:17:00 +00005047static long _btrfs_ioctl_set_received_subvol(struct file *file,
5048 struct btrfs_ioctl_received_subvol_args *sa)
Alexander Block8ea05e32012-07-25 17:35:53 +02005049{
Al Viro496ad9a2013-01-23 17:07:38 -05005050 struct inode *inode = file_inode(file);
Alexander Block8ea05e32012-07-25 17:35:53 +02005051 struct btrfs_root *root = BTRFS_I(inode)->root;
5052 struct btrfs_root_item *root_item = &root->root_item;
5053 struct btrfs_trans_handle *trans;
5054 struct timespec ct = CURRENT_TIME;
5055 int ret = 0;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005056 int received_uuid_changed;
Alexander Block8ea05e32012-07-25 17:35:53 +02005057
David Sterbabd60ea02014-01-16 15:50:22 +01005058 if (!inode_owner_or_capable(inode))
5059 return -EPERM;
5060
Alexander Block8ea05e32012-07-25 17:35:53 +02005061 ret = mnt_want_write_file(file);
5062 if (ret < 0)
5063 return ret;
5064
5065 down_write(&root->fs_info->subvol_sem);
5066
5067 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
5068 ret = -EINVAL;
5069 goto out;
5070 }
5071
5072 if (btrfs_root_readonly(root)) {
5073 ret = -EROFS;
5074 goto out;
5075 }
5076
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005077 /*
5078 * 1 - root item
5079 * 2 - uuid items (received uuid + subvol uuid)
5080 */
5081 trans = btrfs_start_transaction(root, 3);
Alexander Block8ea05e32012-07-25 17:35:53 +02005082 if (IS_ERR(trans)) {
5083 ret = PTR_ERR(trans);
5084 trans = NULL;
5085 goto out;
5086 }
5087
5088 sa->rtransid = trans->transid;
5089 sa->rtime.sec = ct.tv_sec;
5090 sa->rtime.nsec = ct.tv_nsec;
5091
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005092 received_uuid_changed = memcmp(root_item->received_uuid, sa->uuid,
5093 BTRFS_UUID_SIZE);
5094 if (received_uuid_changed &&
5095 !btrfs_is_empty_uuid(root_item->received_uuid))
5096 btrfs_uuid_tree_rem(trans, root->fs_info->uuid_root,
5097 root_item->received_uuid,
5098 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
5099 root->root_key.objectid);
Alexander Block8ea05e32012-07-25 17:35:53 +02005100 memcpy(root_item->received_uuid, sa->uuid, BTRFS_UUID_SIZE);
5101 btrfs_set_root_stransid(root_item, sa->stransid);
5102 btrfs_set_root_rtransid(root_item, sa->rtransid);
Qu Wenruo3cae2102013-07-16 11:19:18 +08005103 btrfs_set_stack_timespec_sec(&root_item->stime, sa->stime.sec);
5104 btrfs_set_stack_timespec_nsec(&root_item->stime, sa->stime.nsec);
5105 btrfs_set_stack_timespec_sec(&root_item->rtime, sa->rtime.sec);
5106 btrfs_set_stack_timespec_nsec(&root_item->rtime, sa->rtime.nsec);
Alexander Block8ea05e32012-07-25 17:35:53 +02005107
5108 ret = btrfs_update_root(trans, root->fs_info->tree_root,
5109 &root->root_key, &root->root_item);
5110 if (ret < 0) {
5111 btrfs_end_transaction(trans, root);
Alexander Block8ea05e32012-07-25 17:35:53 +02005112 goto out;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005113 }
5114 if (received_uuid_changed && !btrfs_is_empty_uuid(sa->uuid)) {
5115 ret = btrfs_uuid_tree_add(trans, root->fs_info->uuid_root,
5116 sa->uuid,
5117 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
5118 root->root_key.objectid);
5119 if (ret < 0 && ret != -EEXIST) {
5120 btrfs_abort_transaction(trans, root, ret);
Alexander Block8ea05e32012-07-25 17:35:53 +02005121 goto out;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005122 }
5123 }
5124 ret = btrfs_commit_transaction(trans, root);
5125 if (ret < 0) {
5126 btrfs_abort_transaction(trans, root, ret);
5127 goto out;
Alexander Block8ea05e32012-07-25 17:35:53 +02005128 }
5129
Hugo Millsabccd002014-01-30 20:17:00 +00005130out:
5131 up_write(&root->fs_info->subvol_sem);
5132 mnt_drop_write_file(file);
5133 return ret;
5134}
5135
5136#ifdef CONFIG_64BIT
5137static long btrfs_ioctl_set_received_subvol_32(struct file *file,
5138 void __user *arg)
5139{
5140 struct btrfs_ioctl_received_subvol_args_32 *args32 = NULL;
5141 struct btrfs_ioctl_received_subvol_args *args64 = NULL;
5142 int ret = 0;
5143
5144 args32 = memdup_user(arg, sizeof(*args32));
5145 if (IS_ERR(args32)) {
5146 ret = PTR_ERR(args32);
5147 args32 = NULL;
5148 goto out;
5149 }
5150
5151 args64 = kmalloc(sizeof(*args64), GFP_NOFS);
Dan Carpenter84dbeb82014-03-28 11:06:00 +03005152 if (!args64) {
5153 ret = -ENOMEM;
Hugo Millsabccd002014-01-30 20:17:00 +00005154 goto out;
5155 }
5156
5157 memcpy(args64->uuid, args32->uuid, BTRFS_UUID_SIZE);
5158 args64->stransid = args32->stransid;
5159 args64->rtransid = args32->rtransid;
5160 args64->stime.sec = args32->stime.sec;
5161 args64->stime.nsec = args32->stime.nsec;
5162 args64->rtime.sec = args32->rtime.sec;
5163 args64->rtime.nsec = args32->rtime.nsec;
5164 args64->flags = args32->flags;
5165
5166 ret = _btrfs_ioctl_set_received_subvol(file, args64);
5167 if (ret)
5168 goto out;
5169
5170 memcpy(args32->uuid, args64->uuid, BTRFS_UUID_SIZE);
5171 args32->stransid = args64->stransid;
5172 args32->rtransid = args64->rtransid;
5173 args32->stime.sec = args64->stime.sec;
5174 args32->stime.nsec = args64->stime.nsec;
5175 args32->rtime.sec = args64->rtime.sec;
5176 args32->rtime.nsec = args64->rtime.nsec;
5177 args32->flags = args64->flags;
5178
5179 ret = copy_to_user(arg, args32, sizeof(*args32));
5180 if (ret)
5181 ret = -EFAULT;
5182
5183out:
5184 kfree(args32);
5185 kfree(args64);
5186 return ret;
5187}
5188#endif
5189
5190static long btrfs_ioctl_set_received_subvol(struct file *file,
5191 void __user *arg)
5192{
5193 struct btrfs_ioctl_received_subvol_args *sa = NULL;
5194 int ret = 0;
5195
5196 sa = memdup_user(arg, sizeof(*sa));
5197 if (IS_ERR(sa)) {
5198 ret = PTR_ERR(sa);
5199 sa = NULL;
5200 goto out;
5201 }
5202
5203 ret = _btrfs_ioctl_set_received_subvol(file, sa);
5204
5205 if (ret)
5206 goto out;
5207
Alexander Block8ea05e32012-07-25 17:35:53 +02005208 ret = copy_to_user(arg, sa, sizeof(*sa));
5209 if (ret)
5210 ret = -EFAULT;
5211
5212out:
5213 kfree(sa);
Alexander Block8ea05e32012-07-25 17:35:53 +02005214 return ret;
5215}
5216
jeff.liu867ab662013-01-05 02:48:01 +00005217static int btrfs_ioctl_get_fslabel(struct file *file, void __user *arg)
5218{
Al Viro6d0379e2013-06-16 19:32:35 +04005219 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Anand Jaina1b83ac2013-07-19 17:39:32 +08005220 size_t len;
jeff.liu867ab662013-01-05 02:48:01 +00005221 int ret;
Anand Jaina1b83ac2013-07-19 17:39:32 +08005222 char label[BTRFS_LABEL_SIZE];
5223
5224 spin_lock(&root->fs_info->super_lock);
5225 memcpy(label, root->fs_info->super_copy->label, BTRFS_LABEL_SIZE);
5226 spin_unlock(&root->fs_info->super_lock);
5227
5228 len = strnlen(label, BTRFS_LABEL_SIZE);
jeff.liu867ab662013-01-05 02:48:01 +00005229
5230 if (len == BTRFS_LABEL_SIZE) {
Frank Holtonefe120a2013-12-20 11:37:06 -05005231 btrfs_warn(root->fs_info,
5232 "label is too long, return the first %zu bytes", --len);
jeff.liu867ab662013-01-05 02:48:01 +00005233 }
5234
jeff.liu867ab662013-01-05 02:48:01 +00005235 ret = copy_to_user(arg, label, len);
jeff.liu867ab662013-01-05 02:48:01 +00005236
5237 return ret ? -EFAULT : 0;
5238}
5239
jeff.liua8bfd4a2013-01-05 02:48:08 +00005240static int btrfs_ioctl_set_fslabel(struct file *file, void __user *arg)
5241{
Al Viro6d0379e2013-06-16 19:32:35 +04005242 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
jeff.liua8bfd4a2013-01-05 02:48:08 +00005243 struct btrfs_super_block *super_block = root->fs_info->super_copy;
5244 struct btrfs_trans_handle *trans;
5245 char label[BTRFS_LABEL_SIZE];
5246 int ret;
5247
5248 if (!capable(CAP_SYS_ADMIN))
5249 return -EPERM;
5250
5251 if (copy_from_user(label, arg, sizeof(label)))
5252 return -EFAULT;
5253
5254 if (strnlen(label, BTRFS_LABEL_SIZE) == BTRFS_LABEL_SIZE) {
Frank Holtonefe120a2013-12-20 11:37:06 -05005255 btrfs_err(root->fs_info, "unable to set label with more than %d bytes",
jeff.liua8bfd4a2013-01-05 02:48:08 +00005256 BTRFS_LABEL_SIZE - 1);
5257 return -EINVAL;
5258 }
5259
5260 ret = mnt_want_write_file(file);
5261 if (ret)
5262 return ret;
5263
jeff.liua8bfd4a2013-01-05 02:48:08 +00005264 trans = btrfs_start_transaction(root, 0);
5265 if (IS_ERR(trans)) {
5266 ret = PTR_ERR(trans);
5267 goto out_unlock;
5268 }
5269
Anand Jaina1b83ac2013-07-19 17:39:32 +08005270 spin_lock(&root->fs_info->super_lock);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005271 strcpy(super_block->label, label);
Anand Jaina1b83ac2013-07-19 17:39:32 +08005272 spin_unlock(&root->fs_info->super_lock);
Jeff Mahoneyd0270ac2014-02-07 14:33:57 +01005273 ret = btrfs_commit_transaction(trans, root);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005274
5275out_unlock:
jeff.liua8bfd4a2013-01-05 02:48:08 +00005276 mnt_drop_write_file(file);
5277 return ret;
5278}
5279
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005280#define INIT_FEATURE_FLAGS(suffix) \
5281 { .compat_flags = BTRFS_FEATURE_COMPAT_##suffix, \
5282 .compat_ro_flags = BTRFS_FEATURE_COMPAT_RO_##suffix, \
5283 .incompat_flags = BTRFS_FEATURE_INCOMPAT_##suffix }
5284
5285static int btrfs_ioctl_get_supported_features(struct file *file,
5286 void __user *arg)
5287{
5288 static struct btrfs_ioctl_feature_flags features[3] = {
5289 INIT_FEATURE_FLAGS(SUPP),
5290 INIT_FEATURE_FLAGS(SAFE_SET),
5291 INIT_FEATURE_FLAGS(SAFE_CLEAR)
5292 };
5293
5294 if (copy_to_user(arg, &features, sizeof(features)))
5295 return -EFAULT;
5296
5297 return 0;
5298}
5299
5300static int btrfs_ioctl_get_features(struct file *file, void __user *arg)
5301{
5302 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
5303 struct btrfs_super_block *super_block = root->fs_info->super_copy;
5304 struct btrfs_ioctl_feature_flags features;
5305
5306 features.compat_flags = btrfs_super_compat_flags(super_block);
5307 features.compat_ro_flags = btrfs_super_compat_ro_flags(super_block);
5308 features.incompat_flags = btrfs_super_incompat_flags(super_block);
5309
5310 if (copy_to_user(arg, &features, sizeof(features)))
5311 return -EFAULT;
5312
5313 return 0;
5314}
5315
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005316static int check_feature_bits(struct btrfs_root *root,
5317 enum btrfs_feature_set set,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005318 u64 change_mask, u64 flags, u64 supported_flags,
5319 u64 safe_set, u64 safe_clear)
5320{
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005321 const char *type = btrfs_feature_set_names[set];
5322 char *names;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005323 u64 disallowed, unsupported;
5324 u64 set_mask = flags & change_mask;
5325 u64 clear_mask = ~flags & change_mask;
5326
5327 unsupported = set_mask & ~supported_flags;
5328 if (unsupported) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005329 names = btrfs_printable_features(set, unsupported);
5330 if (names) {
5331 btrfs_warn(root->fs_info,
5332 "this kernel does not support the %s feature bit%s",
5333 names, strchr(names, ',') ? "s" : "");
5334 kfree(names);
5335 } else
5336 btrfs_warn(root->fs_info,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005337 "this kernel does not support %s bits 0x%llx",
5338 type, unsupported);
5339 return -EOPNOTSUPP;
5340 }
5341
5342 disallowed = set_mask & ~safe_set;
5343 if (disallowed) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005344 names = btrfs_printable_features(set, disallowed);
5345 if (names) {
5346 btrfs_warn(root->fs_info,
5347 "can't set the %s feature bit%s while mounted",
5348 names, strchr(names, ',') ? "s" : "");
5349 kfree(names);
5350 } else
5351 btrfs_warn(root->fs_info,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005352 "can't set %s bits 0x%llx while mounted",
5353 type, disallowed);
5354 return -EPERM;
5355 }
5356
5357 disallowed = clear_mask & ~safe_clear;
5358 if (disallowed) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005359 names = btrfs_printable_features(set, disallowed);
5360 if (names) {
5361 btrfs_warn(root->fs_info,
5362 "can't clear the %s feature bit%s while mounted",
5363 names, strchr(names, ',') ? "s" : "");
5364 kfree(names);
5365 } else
5366 btrfs_warn(root->fs_info,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005367 "can't clear %s bits 0x%llx while mounted",
5368 type, disallowed);
5369 return -EPERM;
5370 }
5371
5372 return 0;
5373}
5374
5375#define check_feature(root, change_mask, flags, mask_base) \
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005376check_feature_bits(root, FEAT_##mask_base, change_mask, flags, \
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005377 BTRFS_FEATURE_ ## mask_base ## _SUPP, \
5378 BTRFS_FEATURE_ ## mask_base ## _SAFE_SET, \
5379 BTRFS_FEATURE_ ## mask_base ## _SAFE_CLEAR)
5380
5381static int btrfs_ioctl_set_features(struct file *file, void __user *arg)
5382{
5383 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
5384 struct btrfs_super_block *super_block = root->fs_info->super_copy;
5385 struct btrfs_ioctl_feature_flags flags[2];
5386 struct btrfs_trans_handle *trans;
5387 u64 newflags;
5388 int ret;
5389
5390 if (!capable(CAP_SYS_ADMIN))
5391 return -EPERM;
5392
5393 if (copy_from_user(flags, arg, sizeof(flags)))
5394 return -EFAULT;
5395
5396 /* Nothing to do */
5397 if (!flags[0].compat_flags && !flags[0].compat_ro_flags &&
5398 !flags[0].incompat_flags)
5399 return 0;
5400
5401 ret = check_feature(root, flags[0].compat_flags,
5402 flags[1].compat_flags, COMPAT);
5403 if (ret)
5404 return ret;
5405
5406 ret = check_feature(root, flags[0].compat_ro_flags,
5407 flags[1].compat_ro_flags, COMPAT_RO);
5408 if (ret)
5409 return ret;
5410
5411 ret = check_feature(root, flags[0].incompat_flags,
5412 flags[1].incompat_flags, INCOMPAT);
5413 if (ret)
5414 return ret;
5415
David Sterba8051aa12014-02-07 14:34:04 +01005416 trans = btrfs_start_transaction(root, 0);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005417 if (IS_ERR(trans))
5418 return PTR_ERR(trans);
5419
5420 spin_lock(&root->fs_info->super_lock);
5421 newflags = btrfs_super_compat_flags(super_block);
5422 newflags |= flags[0].compat_flags & flags[1].compat_flags;
5423 newflags &= ~(flags[0].compat_flags & ~flags[1].compat_flags);
5424 btrfs_set_super_compat_flags(super_block, newflags);
5425
5426 newflags = btrfs_super_compat_ro_flags(super_block);
5427 newflags |= flags[0].compat_ro_flags & flags[1].compat_ro_flags;
5428 newflags &= ~(flags[0].compat_ro_flags & ~flags[1].compat_ro_flags);
5429 btrfs_set_super_compat_ro_flags(super_block, newflags);
5430
5431 newflags = btrfs_super_incompat_flags(super_block);
5432 newflags |= flags[0].incompat_flags & flags[1].incompat_flags;
5433 newflags &= ~(flags[0].incompat_flags & ~flags[1].incompat_flags);
5434 btrfs_set_super_incompat_flags(super_block, newflags);
5435 spin_unlock(&root->fs_info->super_lock);
5436
Jeff Mahoneyd0270ac2014-02-07 14:33:57 +01005437 return btrfs_commit_transaction(trans, root);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005438}
5439
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005440long btrfs_ioctl(struct file *file, unsigned int
5441 cmd, unsigned long arg)
5442{
Al Viro496ad9a2013-01-23 17:07:38 -05005443 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05005444 void __user *argp = (void __user *)arg;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005445
5446 switch (cmd) {
Christoph Hellwig6cbff002009-04-17 10:37:41 +02005447 case FS_IOC_GETFLAGS:
5448 return btrfs_ioctl_getflags(file, argp);
5449 case FS_IOC_SETFLAGS:
5450 return btrfs_ioctl_setflags(file, argp);
5451 case FS_IOC_GETVERSION:
5452 return btrfs_ioctl_getversion(file, argp);
Li Dongyangf7039b12011-03-24 10:24:28 +00005453 case FITRIM:
5454 return btrfs_ioctl_fitrim(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005455 case BTRFS_IOC_SNAP_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005456 return btrfs_ioctl_snap_create(file, argp, 0);
Li Zefanfdfb1e42010-12-10 06:41:56 +00005457 case BTRFS_IOC_SNAP_CREATE_V2:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005458 return btrfs_ioctl_snap_create_v2(file, argp, 0);
Chris Mason3de45862008-11-17 21:02:50 -05005459 case BTRFS_IOC_SUBVOL_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005460 return btrfs_ioctl_snap_create(file, argp, 1);
Arne Jansen6f72c7e2011-09-14 15:58:21 +02005461 case BTRFS_IOC_SUBVOL_CREATE_V2:
5462 return btrfs_ioctl_snap_create_v2(file, argp, 1);
Yan, Zheng76dda932009-09-21 16:00:26 -04005463 case BTRFS_IOC_SNAP_DESTROY:
5464 return btrfs_ioctl_snap_destroy(file, argp);
Li Zefan0caa1022010-12-20 16:30:25 +08005465 case BTRFS_IOC_SUBVOL_GETFLAGS:
5466 return btrfs_ioctl_subvol_getflags(file, argp);
5467 case BTRFS_IOC_SUBVOL_SETFLAGS:
5468 return btrfs_ioctl_subvol_setflags(file, argp);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00005469 case BTRFS_IOC_DEFAULT_SUBVOL:
5470 return btrfs_ioctl_default_subvol(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005471 case BTRFS_IOC_DEFRAG:
Chris Mason1e701a32010-03-11 09:42:04 -05005472 return btrfs_ioctl_defrag(file, NULL);
5473 case BTRFS_IOC_DEFRAG_RANGE:
5474 return btrfs_ioctl_defrag(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005475 case BTRFS_IOC_RESIZE:
Miao Xie198605a2012-11-26 08:43:45 +00005476 return btrfs_ioctl_resize(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005477 case BTRFS_IOC_ADD_DEV:
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05005478 return btrfs_ioctl_add_dev(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005479 case BTRFS_IOC_RM_DEV:
Miao Xieda249272012-11-26 08:44:50 +00005480 return btrfs_ioctl_rm_dev(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005481 case BTRFS_IOC_FS_INFO:
5482 return btrfs_ioctl_fs_info(root, argp);
5483 case BTRFS_IOC_DEV_INFO:
5484 return btrfs_ioctl_dev_info(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005485 case BTRFS_IOC_BALANCE:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08005486 return btrfs_ioctl_balance(file, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005487 case BTRFS_IOC_CLONE:
Sage Weilc5c9cd42008-11-12 14:32:25 -05005488 return btrfs_ioctl_clone(file, arg, 0, 0, 0);
5489 case BTRFS_IOC_CLONE_RANGE:
Christoph Hellwig7a865e82008-12-02 09:52:24 -05005490 return btrfs_ioctl_clone_range(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005491 case BTRFS_IOC_TRANS_START:
5492 return btrfs_ioctl_trans_start(file);
5493 case BTRFS_IOC_TRANS_END:
5494 return btrfs_ioctl_trans_end(file);
Chris Masonac8e9812010-02-28 15:39:26 -05005495 case BTRFS_IOC_TREE_SEARCH:
5496 return btrfs_ioctl_tree_search(file, argp);
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01005497 case BTRFS_IOC_TREE_SEARCH_V2:
5498 return btrfs_ioctl_tree_search_v2(file, argp);
Chris Masonac8e9812010-02-28 15:39:26 -05005499 case BTRFS_IOC_INO_LOOKUP:
5500 return btrfs_ioctl_ino_lookup(file, argp);
Jan Schmidtd7728c92011-07-07 16:48:38 +02005501 case BTRFS_IOC_INO_PATHS:
5502 return btrfs_ioctl_ino_to_path(root, argp);
5503 case BTRFS_IOC_LOGICAL_INO:
5504 return btrfs_ioctl_logical_to_ino(root, argp);
Josef Bacik1406e432010-01-13 18:19:06 +00005505 case BTRFS_IOC_SPACE_INFO:
5506 return btrfs_ioctl_space_info(root, argp);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005507 case BTRFS_IOC_SYNC: {
5508 int ret;
5509
Miao Xie6c255e62014-03-06 13:55:01 +08005510 ret = btrfs_start_delalloc_roots(root->fs_info, 0, -1);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005511 if (ret)
5512 return ret;
Al Viroddb52f42014-10-21 20:21:18 -04005513 ret = btrfs_sync_fs(file_inode(file)->i_sb, 1);
David Sterba2fad4e82014-07-23 14:39:35 +02005514 /*
5515 * The transaction thread may want to do more work,
5516 * namely it pokes the cleaner ktread that will start
5517 * processing uncleaned subvols.
5518 */
5519 wake_up_process(root->fs_info->transaction_kthread);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005520 return ret;
5521 }
Sage Weil46204592010-10-29 15:41:32 -04005522 case BTRFS_IOC_START_SYNC:
Miao Xie9a8c28b2012-11-26 08:40:43 +00005523 return btrfs_ioctl_start_sync(root, argp);
Sage Weil46204592010-10-29 15:41:32 -04005524 case BTRFS_IOC_WAIT_SYNC:
Miao Xie9a8c28b2012-11-26 08:40:43 +00005525 return btrfs_ioctl_wait_sync(root, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005526 case BTRFS_IOC_SCRUB:
Miao Xieb8e95482012-11-26 08:48:01 +00005527 return btrfs_ioctl_scrub(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005528 case BTRFS_IOC_SCRUB_CANCEL:
5529 return btrfs_ioctl_scrub_cancel(root, argp);
5530 case BTRFS_IOC_SCRUB_PROGRESS:
5531 return btrfs_ioctl_scrub_progress(root, argp);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02005532 case BTRFS_IOC_BALANCE_V2:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08005533 return btrfs_ioctl_balance(file, argp);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02005534 case BTRFS_IOC_BALANCE_CTL:
5535 return btrfs_ioctl_balance_ctl(root, arg);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02005536 case BTRFS_IOC_BALANCE_PROGRESS:
5537 return btrfs_ioctl_balance_progress(root, argp);
Alexander Block8ea05e32012-07-25 17:35:53 +02005538 case BTRFS_IOC_SET_RECEIVED_SUBVOL:
5539 return btrfs_ioctl_set_received_subvol(file, argp);
Hugo Millsabccd002014-01-30 20:17:00 +00005540#ifdef CONFIG_64BIT
5541 case BTRFS_IOC_SET_RECEIVED_SUBVOL_32:
5542 return btrfs_ioctl_set_received_subvol_32(file, argp);
5543#endif
Alexander Block31db9f72012-07-25 23:19:24 +02005544 case BTRFS_IOC_SEND:
5545 return btrfs_ioctl_send(file, argp);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02005546 case BTRFS_IOC_GET_DEV_STATS:
David Sterbab27f7c02012-06-22 06:30:39 -06005547 return btrfs_ioctl_get_dev_stats(root, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005548 case BTRFS_IOC_QUOTA_CTL:
Miao Xie905b0dd2012-11-26 08:50:11 +00005549 return btrfs_ioctl_quota_ctl(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005550 case BTRFS_IOC_QGROUP_ASSIGN:
Miao Xie905b0dd2012-11-26 08:50:11 +00005551 return btrfs_ioctl_qgroup_assign(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005552 case BTRFS_IOC_QGROUP_CREATE:
Miao Xie905b0dd2012-11-26 08:50:11 +00005553 return btrfs_ioctl_qgroup_create(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005554 case BTRFS_IOC_QGROUP_LIMIT:
Miao Xie905b0dd2012-11-26 08:50:11 +00005555 return btrfs_ioctl_qgroup_limit(file, argp);
Jan Schmidt2f232032013-04-25 16:04:51 +00005556 case BTRFS_IOC_QUOTA_RESCAN:
5557 return btrfs_ioctl_quota_rescan(file, argp);
5558 case BTRFS_IOC_QUOTA_RESCAN_STATUS:
5559 return btrfs_ioctl_quota_rescan_status(file, argp);
Jan Schmidt57254b6e2013-05-06 19:14:17 +00005560 case BTRFS_IOC_QUOTA_RESCAN_WAIT:
5561 return btrfs_ioctl_quota_rescan_wait(file, argp);
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01005562 case BTRFS_IOC_DEV_REPLACE:
5563 return btrfs_ioctl_dev_replace(root, argp);
jeff.liu867ab662013-01-05 02:48:01 +00005564 case BTRFS_IOC_GET_FSLABEL:
5565 return btrfs_ioctl_get_fslabel(file, argp);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005566 case BTRFS_IOC_SET_FSLABEL:
5567 return btrfs_ioctl_set_fslabel(file, argp);
Mark Fasheh416161d2013-08-06 11:42:51 -07005568 case BTRFS_IOC_FILE_EXTENT_SAME:
5569 return btrfs_ioctl_file_extent_same(file, argp);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005570 case BTRFS_IOC_GET_SUPPORTED_FEATURES:
5571 return btrfs_ioctl_get_supported_features(file, argp);
5572 case BTRFS_IOC_GET_FEATURES:
5573 return btrfs_ioctl_get_features(file, argp);
5574 case BTRFS_IOC_SET_FEATURES:
5575 return btrfs_ioctl_set_features(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005576 }
5577
5578 return -ENOTTY;
5579}