blob: 393a543a519eb07a03cd6f343fa0bab888a39a9b [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,
90 u64 off, u64 olen, u64 olen_aligned, u64 destoff);
91
Christoph Hellwig6cbff002009-04-17 10:37:41 +020092/* Mask out flags that are inappropriate for the given type of inode. */
93static inline __u32 btrfs_mask_flags(umode_t mode, __u32 flags)
94{
95 if (S_ISDIR(mode))
96 return flags;
97 else if (S_ISREG(mode))
98 return flags & ~FS_DIRSYNC_FL;
99 else
100 return flags & (FS_NODUMP_FL | FS_NOATIME_FL);
101}
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400102
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200103/*
104 * Export inode flags to the format expected by the FS_IOC_GETFLAGS ioctl.
105 */
106static unsigned int btrfs_flags_to_ioctl(unsigned int flags)
107{
108 unsigned int iflags = 0;
109
110 if (flags & BTRFS_INODE_SYNC)
111 iflags |= FS_SYNC_FL;
112 if (flags & BTRFS_INODE_IMMUTABLE)
113 iflags |= FS_IMMUTABLE_FL;
114 if (flags & BTRFS_INODE_APPEND)
115 iflags |= FS_APPEND_FL;
116 if (flags & BTRFS_INODE_NODUMP)
117 iflags |= FS_NODUMP_FL;
118 if (flags & BTRFS_INODE_NOATIME)
119 iflags |= FS_NOATIME_FL;
120 if (flags & BTRFS_INODE_DIRSYNC)
121 iflags |= FS_DIRSYNC_FL;
Li Zefand0092bd2011-04-15 03:03:06 +0000122 if (flags & BTRFS_INODE_NODATACOW)
123 iflags |= FS_NOCOW_FL;
124
125 if ((flags & BTRFS_INODE_COMPRESS) && !(flags & BTRFS_INODE_NOCOMPRESS))
126 iflags |= FS_COMPR_FL;
127 else if (flags & BTRFS_INODE_NOCOMPRESS)
128 iflags |= FS_NOCOMP_FL;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200129
130 return iflags;
131}
132
133/*
134 * Update inode->i_flags based on the btrfs internal flags.
135 */
136void btrfs_update_iflags(struct inode *inode)
137{
138 struct btrfs_inode *ip = BTRFS_I(inode);
139
140 inode->i_flags &= ~(S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC);
141
142 if (ip->flags & BTRFS_INODE_SYNC)
143 inode->i_flags |= S_SYNC;
144 if (ip->flags & BTRFS_INODE_IMMUTABLE)
145 inode->i_flags |= S_IMMUTABLE;
146 if (ip->flags & BTRFS_INODE_APPEND)
147 inode->i_flags |= S_APPEND;
148 if (ip->flags & BTRFS_INODE_NOATIME)
149 inode->i_flags |= S_NOATIME;
150 if (ip->flags & BTRFS_INODE_DIRSYNC)
151 inode->i_flags |= S_DIRSYNC;
152}
153
154/*
155 * Inherit flags from the parent inode.
156 *
Josef Bacike27425d2011-09-27 11:01:30 -0400157 * Currently only the compression flags and the cow flags are inherited.
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200158 */
159void btrfs_inherit_iflags(struct inode *inode, struct inode *dir)
160{
Chris Mason0b4dcea2009-06-11 11:13:35 -0400161 unsigned int flags;
162
163 if (!dir)
164 return;
165
166 flags = BTRFS_I(dir)->flags;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200167
Josef Bacike27425d2011-09-27 11:01:30 -0400168 if (flags & BTRFS_INODE_NOCOMPRESS) {
169 BTRFS_I(inode)->flags &= ~BTRFS_INODE_COMPRESS;
170 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
171 } else if (flags & BTRFS_INODE_COMPRESS) {
172 BTRFS_I(inode)->flags &= ~BTRFS_INODE_NOCOMPRESS;
173 BTRFS_I(inode)->flags |= BTRFS_INODE_COMPRESS;
174 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200175
Liu Bo213490b2012-09-11 08:33:50 -0600176 if (flags & BTRFS_INODE_NODATACOW) {
Josef Bacike27425d2011-09-27 11:01:30 -0400177 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW;
Liu Bo213490b2012-09-11 08:33:50 -0600178 if (S_ISREG(inode->i_mode))
179 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
180 }
Josef Bacike27425d2011-09-27 11:01:30 -0400181
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200182 btrfs_update_iflags(inode);
183}
184
185static int btrfs_ioctl_getflags(struct file *file, void __user *arg)
186{
Al Viro496ad9a2013-01-23 17:07:38 -0500187 struct btrfs_inode *ip = BTRFS_I(file_inode(file));
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200188 unsigned int flags = btrfs_flags_to_ioctl(ip->flags);
189
190 if (copy_to_user(arg, &flags, sizeof(flags)))
191 return -EFAULT;
192 return 0;
193}
194
Liu Bo75e7cb72011-03-22 10:12:20 +0000195static int check_flags(unsigned int flags)
196{
197 if (flags & ~(FS_IMMUTABLE_FL | FS_APPEND_FL | \
198 FS_NOATIME_FL | FS_NODUMP_FL | \
199 FS_SYNC_FL | FS_DIRSYNC_FL | \
Li Zefane1e8fb62011-04-15 03:02:49 +0000200 FS_NOCOMP_FL | FS_COMPR_FL |
201 FS_NOCOW_FL))
Liu Bo75e7cb72011-03-22 10:12:20 +0000202 return -EOPNOTSUPP;
203
204 if ((flags & FS_NOCOMP_FL) && (flags & FS_COMPR_FL))
205 return -EINVAL;
206
Liu Bo75e7cb72011-03-22 10:12:20 +0000207 return 0;
208}
209
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200210static int btrfs_ioctl_setflags(struct file *file, void __user *arg)
211{
Al Viro496ad9a2013-01-23 17:07:38 -0500212 struct inode *inode = file_inode(file);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200213 struct btrfs_inode *ip = BTRFS_I(inode);
214 struct btrfs_root *root = ip->root;
215 struct btrfs_trans_handle *trans;
216 unsigned int flags, oldflags;
217 int ret;
Li Zefanf062abf2011-12-29 13:36:45 +0800218 u64 ip_oldflags;
219 unsigned int i_oldflags;
David Sterba7e97b8d2012-09-07 05:56:55 -0600220 umode_t mode;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200221
David Sterbabd60ea02014-01-16 15:50:22 +0100222 if (!inode_owner_or_capable(inode))
223 return -EPERM;
224
Li Zefanb83cc962010-12-20 16:04:08 +0800225 if (btrfs_root_readonly(root))
226 return -EROFS;
227
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200228 if (copy_from_user(&flags, arg, sizeof(flags)))
229 return -EFAULT;
230
Liu Bo75e7cb72011-03-22 10:12:20 +0000231 ret = check_flags(flags);
232 if (ret)
233 return ret;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200234
Jan Karae7848682012-06-12 16:20:32 +0200235 ret = mnt_want_write_file(file);
236 if (ret)
237 return ret;
238
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200239 mutex_lock(&inode->i_mutex);
240
Li Zefanf062abf2011-12-29 13:36:45 +0800241 ip_oldflags = ip->flags;
242 i_oldflags = inode->i_flags;
David Sterba7e97b8d2012-09-07 05:56:55 -0600243 mode = inode->i_mode;
Li Zefanf062abf2011-12-29 13:36:45 +0800244
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200245 flags = btrfs_mask_flags(inode->i_mode, flags);
246 oldflags = btrfs_flags_to_ioctl(ip->flags);
247 if ((flags ^ oldflags) & (FS_APPEND_FL | FS_IMMUTABLE_FL)) {
248 if (!capable(CAP_LINUX_IMMUTABLE)) {
249 ret = -EPERM;
250 goto out_unlock;
251 }
252 }
253
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200254 if (flags & FS_SYNC_FL)
255 ip->flags |= BTRFS_INODE_SYNC;
256 else
257 ip->flags &= ~BTRFS_INODE_SYNC;
258 if (flags & FS_IMMUTABLE_FL)
259 ip->flags |= BTRFS_INODE_IMMUTABLE;
260 else
261 ip->flags &= ~BTRFS_INODE_IMMUTABLE;
262 if (flags & FS_APPEND_FL)
263 ip->flags |= BTRFS_INODE_APPEND;
264 else
265 ip->flags &= ~BTRFS_INODE_APPEND;
266 if (flags & FS_NODUMP_FL)
267 ip->flags |= BTRFS_INODE_NODUMP;
268 else
269 ip->flags &= ~BTRFS_INODE_NODUMP;
270 if (flags & FS_NOATIME_FL)
271 ip->flags |= BTRFS_INODE_NOATIME;
272 else
273 ip->flags &= ~BTRFS_INODE_NOATIME;
274 if (flags & FS_DIRSYNC_FL)
275 ip->flags |= BTRFS_INODE_DIRSYNC;
276 else
277 ip->flags &= ~BTRFS_INODE_DIRSYNC;
David Sterba7e97b8d2012-09-07 05:56:55 -0600278 if (flags & FS_NOCOW_FL) {
279 if (S_ISREG(mode)) {
280 /*
281 * It's safe to turn csums off here, no extents exist.
282 * Otherwise we want the flag to reflect the real COW
283 * status of the file and will not set it.
284 */
285 if (inode->i_size == 0)
286 ip->flags |= BTRFS_INODE_NODATACOW
287 | BTRFS_INODE_NODATASUM;
288 } else {
289 ip->flags |= BTRFS_INODE_NODATACOW;
290 }
291 } else {
292 /*
293 * Revert back under same assuptions as above
294 */
295 if (S_ISREG(mode)) {
296 if (inode->i_size == 0)
297 ip->flags &= ~(BTRFS_INODE_NODATACOW
298 | BTRFS_INODE_NODATASUM);
299 } else {
300 ip->flags &= ~BTRFS_INODE_NODATACOW;
301 }
302 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200303
Liu Bo75e7cb72011-03-22 10:12:20 +0000304 /*
305 * The COMPRESS flag can only be changed by users, while the NOCOMPRESS
306 * flag may be changed automatically if compression code won't make
307 * things smaller.
308 */
309 if (flags & FS_NOCOMP_FL) {
310 ip->flags &= ~BTRFS_INODE_COMPRESS;
311 ip->flags |= BTRFS_INODE_NOCOMPRESS;
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000312
313 ret = btrfs_set_prop(inode, "btrfs.compression", NULL, 0, 0);
314 if (ret && ret != -ENODATA)
315 goto out_drop;
Liu Bo75e7cb72011-03-22 10:12:20 +0000316 } else if (flags & FS_COMPR_FL) {
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000317 const char *comp;
318
Liu Bo75e7cb72011-03-22 10:12:20 +0000319 ip->flags |= BTRFS_INODE_COMPRESS;
320 ip->flags &= ~BTRFS_INODE_NOCOMPRESS;
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000321
322 if (root->fs_info->compress_type == BTRFS_COMPRESS_LZO)
323 comp = "lzo";
324 else
325 comp = "zlib";
326 ret = btrfs_set_prop(inode, "btrfs.compression",
327 comp, strlen(comp), 0);
328 if (ret)
329 goto out_drop;
330
Li Zefanebcb9042011-04-15 03:03:17 +0000331 } else {
332 ip->flags &= ~(BTRFS_INODE_COMPRESS | BTRFS_INODE_NOCOMPRESS);
Liu Bo75e7cb72011-03-22 10:12:20 +0000333 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200334
Li Zefan4da6f1a2011-12-29 13:39:50 +0800335 trans = btrfs_start_transaction(root, 1);
Li Zefanf062abf2011-12-29 13:36:45 +0800336 if (IS_ERR(trans)) {
337 ret = PTR_ERR(trans);
338 goto out_drop;
339 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200340
Li Zefan306424cc2011-12-14 20:12:02 -0500341 btrfs_update_iflags(inode);
Josef Bacik0c4d2d92012-04-05 15:03:02 -0400342 inode_inc_iversion(inode);
Li Zefan306424cc2011-12-14 20:12:02 -0500343 inode->i_ctime = CURRENT_TIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200344 ret = btrfs_update_inode(trans, root, inode);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200345
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200346 btrfs_end_transaction(trans, root);
Li Zefanf062abf2011-12-29 13:36:45 +0800347 out_drop:
348 if (ret) {
349 ip->flags = ip_oldflags;
350 inode->i_flags = i_oldflags;
351 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200352
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200353 out_unlock:
354 mutex_unlock(&inode->i_mutex);
Jan Karae7848682012-06-12 16:20:32 +0200355 mnt_drop_write_file(file);
liubo2d4e6f62011-02-24 09:38:16 +0000356 return ret;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200357}
358
359static int btrfs_ioctl_getversion(struct file *file, int __user *arg)
360{
Al Viro496ad9a2013-01-23 17:07:38 -0500361 struct inode *inode = file_inode(file);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200362
363 return put_user(inode->i_generation, arg);
364}
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400365
Li Dongyangf7039b12011-03-24 10:24:28 +0000366static noinline int btrfs_ioctl_fitrim(struct file *file, void __user *arg)
367{
Al Viro54563d42013-09-01 15:57:51 -0400368 struct btrfs_fs_info *fs_info = btrfs_sb(file_inode(file)->i_sb);
Li Dongyangf7039b12011-03-24 10:24:28 +0000369 struct btrfs_device *device;
370 struct request_queue *q;
371 struct fstrim_range range;
372 u64 minlen = ULLONG_MAX;
373 u64 num_devices = 0;
Al Viro815745c2011-11-17 15:40:49 -0500374 u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy);
Li Dongyangf7039b12011-03-24 10:24:28 +0000375 int ret;
376
377 if (!capable(CAP_SYS_ADMIN))
378 return -EPERM;
379
Xiao Guangrong1f781602011-04-20 10:09:16 +0000380 rcu_read_lock();
381 list_for_each_entry_rcu(device, &fs_info->fs_devices->devices,
382 dev_list) {
Li Dongyangf7039b12011-03-24 10:24:28 +0000383 if (!device->bdev)
384 continue;
385 q = bdev_get_queue(device->bdev);
386 if (blk_queue_discard(q)) {
387 num_devices++;
388 minlen = min((u64)q->limits.discard_granularity,
389 minlen);
390 }
391 }
Xiao Guangrong1f781602011-04-20 10:09:16 +0000392 rcu_read_unlock();
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200393
Li Dongyangf7039b12011-03-24 10:24:28 +0000394 if (!num_devices)
395 return -EOPNOTSUPP;
Li Dongyangf7039b12011-03-24 10:24:28 +0000396 if (copy_from_user(&range, arg, sizeof(range)))
397 return -EFAULT;
Lukas Czernere515c182012-10-16 09:34:36 +0000398 if (range.start > total_bytes ||
399 range.len < fs_info->sb->s_blocksize)
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200400 return -EINVAL;
Li Dongyangf7039b12011-03-24 10:24:28 +0000401
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200402 range.len = min(range.len, total_bytes - range.start);
Li Dongyangf7039b12011-03-24 10:24:28 +0000403 range.minlen = max(range.minlen, minlen);
Al Viro815745c2011-11-17 15:40:49 -0500404 ret = btrfs_trim_fs(fs_info->tree_root, &range);
Li Dongyangf7039b12011-03-24 10:24:28 +0000405 if (ret < 0)
406 return ret;
407
408 if (copy_to_user(arg, &range, sizeof(range)))
409 return -EFAULT;
410
411 return 0;
412}
413
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200414int btrfs_is_empty_uuid(u8 *uuid)
415{
Chris Mason46e0f662013-11-15 12:14:55 +0100416 int i;
417
418 for (i = 0; i < BTRFS_UUID_SIZE; i++) {
419 if (uuid[i])
420 return 0;
421 }
422 return 1;
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200423}
424
Miao Xied5c12072013-02-28 10:04:33 +0000425static noinline int create_subvol(struct inode *dir,
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400426 struct dentry *dentry,
Sage Weil72fd0322010-10-29 15:41:32 -0400427 char *name, int namelen,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200428 u64 *async_transid,
Miao Xie8696c532013-02-07 06:02:44 +0000429 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400430{
431 struct btrfs_trans_handle *trans;
432 struct btrfs_key key;
433 struct btrfs_root_item root_item;
434 struct btrfs_inode_item *inode_item;
435 struct extent_buffer *leaf;
Miao Xied5c12072013-02-28 10:04:33 +0000436 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -0400437 struct btrfs_root *new_root;
Miao Xied5c12072013-02-28 10:04:33 +0000438 struct btrfs_block_rsv block_rsv;
Alexander Block8ea05e32012-07-25 17:35:53 +0200439 struct timespec cur_time = CURRENT_TIME;
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900440 struct inode *inode;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400441 int ret;
442 int err;
443 u64 objectid;
444 u64 new_dirid = BTRFS_FIRST_FREE_OBJECTID;
Chris Mason3de45862008-11-17 21:02:50 -0500445 u64 index = 0;
Miao Xied5c12072013-02-28 10:04:33 +0000446 u64 qgroup_reserved;
Alexander Block8ea05e32012-07-25 17:35:53 +0200447 uuid_le new_uuid;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400448
Li Zefan581bb052011-04-20 10:06:11 +0800449 ret = btrfs_find_free_objectid(root->fs_info->tree_root, &objectid);
Al Viro2fbe8c82011-07-16 21:38:06 -0400450 if (ret)
Yan, Zhenga22285a2010-05-16 10:48:46 -0400451 return ret;
Josef Bacik6a912212010-11-20 09:48:00 +0000452
Miao Xied5c12072013-02-28 10:04:33 +0000453 btrfs_init_block_rsv(&block_rsv, BTRFS_BLOCK_RSV_TEMP);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400454 /*
Miao Xied5c12072013-02-28 10:04:33 +0000455 * The same as the snapshot creation, please see the comment
456 * of create_snapshot().
Josef Bacik9ed74f22009-09-11 16:12:44 -0400457 */
Miao Xied5c12072013-02-28 10:04:33 +0000458 ret = btrfs_subvolume_reserve_metadata(root, &block_rsv,
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200459 8, &qgroup_reserved, false);
Miao Xied5c12072013-02-28 10:04:33 +0000460 if (ret)
461 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400462
Miao Xied5c12072013-02-28 10:04:33 +0000463 trans = btrfs_start_transaction(root, 0);
464 if (IS_ERR(trans)) {
465 ret = PTR_ERR(trans);
Liu Bode6e8202014-01-09 14:57:06 +0800466 btrfs_subvolume_release_metadata(root, &block_rsv,
467 qgroup_reserved);
468 return ret;
Miao Xied5c12072013-02-28 10:04:33 +0000469 }
470 trans->block_rsv = &block_rsv;
471 trans->bytes_reserved = block_rsv.size;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400472
Miao Xie8696c532013-02-07 06:02:44 +0000473 ret = btrfs_qgroup_inherit(trans, root->fs_info, 0, objectid, inherit);
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200474 if (ret)
475 goto fail;
476
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400477 leaf = btrfs_alloc_free_block(trans, root, root->leafsize,
Jan Schmidt5581a512012-05-16 17:04:52 +0200478 0, objectid, NULL, 0, 0, 0);
Josef Bacik8e8a1e32008-07-24 12:17:14 -0400479 if (IS_ERR(leaf)) {
480 ret = PTR_ERR(leaf);
481 goto fail;
482 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400483
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400484 memset_extent_buffer(leaf, 0, 0, sizeof(struct btrfs_header));
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400485 btrfs_set_header_bytenr(leaf, leaf->start);
486 btrfs_set_header_generation(leaf, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400487 btrfs_set_header_backref_rev(leaf, BTRFS_MIXED_BACKREF_REV);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400488 btrfs_set_header_owner(leaf, objectid);
489
Ross Kirk0a4e5582013-09-24 10:12:38 +0100490 write_extent_buffer(leaf, root->fs_info->fsid, btrfs_header_fsid(),
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400491 BTRFS_FSID_SIZE);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400492 write_extent_buffer(leaf, root->fs_info->chunk_tree_uuid,
Geert Uytterhoevenb308bc22013-08-20 13:20:15 +0200493 btrfs_header_chunk_tree_uuid(leaf),
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400494 BTRFS_UUID_SIZE);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400495 btrfs_mark_buffer_dirty(leaf);
496
Alexander Block8ea05e32012-07-25 17:35:53 +0200497 memset(&root_item, 0, sizeof(root_item));
498
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400499 inode_item = &root_item.inode;
Qu Wenruo3cae2102013-07-16 11:19:18 +0800500 btrfs_set_stack_inode_generation(inode_item, 1);
501 btrfs_set_stack_inode_size(inode_item, 3);
502 btrfs_set_stack_inode_nlink(inode_item, 1);
503 btrfs_set_stack_inode_nbytes(inode_item, root->leafsize);
504 btrfs_set_stack_inode_mode(inode_item, S_IFDIR | 0755);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400505
Qu Wenruo3cae2102013-07-16 11:19:18 +0800506 btrfs_set_root_flags(&root_item, 0);
507 btrfs_set_root_limit(&root_item, 0);
508 btrfs_set_stack_inode_flags(inode_item, BTRFS_INODE_ROOT_ITEM_INIT);
Li Zefan08fe4db2011-03-28 02:01:25 +0000509
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400510 btrfs_set_root_bytenr(&root_item, leaf->start);
Yan Zheng84234f32008-10-29 14:49:05 -0400511 btrfs_set_root_generation(&root_item, trans->transid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400512 btrfs_set_root_level(&root_item, 0);
513 btrfs_set_root_refs(&root_item, 1);
Yan, Zheng86b9f2e2009-11-12 09:36:50 +0000514 btrfs_set_root_used(&root_item, leaf->len);
Yan Zheng80ff3852008-10-30 14:20:02 -0400515 btrfs_set_root_last_snapshot(&root_item, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400516
Alexander Block8ea05e32012-07-25 17:35:53 +0200517 btrfs_set_root_generation_v2(&root_item,
518 btrfs_root_generation(&root_item));
519 uuid_le_gen(&new_uuid);
520 memcpy(root_item.uuid, new_uuid.b, BTRFS_UUID_SIZE);
Qu Wenruo3cae2102013-07-16 11:19:18 +0800521 btrfs_set_stack_timespec_sec(&root_item.otime, cur_time.tv_sec);
522 btrfs_set_stack_timespec_nsec(&root_item.otime, cur_time.tv_nsec);
Alexander Block8ea05e32012-07-25 17:35:53 +0200523 root_item.ctime = root_item.otime;
524 btrfs_set_root_ctransid(&root_item, trans->transid);
525 btrfs_set_root_otransid(&root_item, trans->transid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400526
Chris Mason925baed2008-06-25 16:01:30 -0400527 btrfs_tree_unlock(leaf);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400528 free_extent_buffer(leaf);
529 leaf = NULL;
530
531 btrfs_set_root_dirid(&root_item, new_dirid);
532
533 key.objectid = objectid;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400534 key.offset = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400535 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
536 ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
537 &root_item);
538 if (ret)
539 goto fail;
540
Yan, Zheng76dda932009-09-21 16:00:26 -0400541 key.offset = (u64)-1;
542 new_root = btrfs_read_fs_root_no_name(root->fs_info, &key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100543 if (IS_ERR(new_root)) {
544 btrfs_abort_transaction(trans, root, PTR_ERR(new_root));
545 ret = PTR_ERR(new_root);
546 goto fail;
547 }
Yan, Zheng76dda932009-09-21 16:00:26 -0400548
549 btrfs_record_root_in_trans(trans, new_root);
550
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000551 ret = btrfs_create_subvol_root(trans, new_root, root, new_dirid);
Mark Fashehce598972011-07-26 11:32:23 -0700552 if (ret) {
553 /* We potentially lose an unused inode item here */
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100554 btrfs_abort_transaction(trans, root, ret);
Mark Fashehce598972011-07-26 11:32:23 -0700555 goto fail;
556 }
557
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400558 /*
559 * insert the directory item
560 */
Chris Mason3de45862008-11-17 21:02:50 -0500561 ret = btrfs_set_inode_index(dir, &index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100562 if (ret) {
563 btrfs_abort_transaction(trans, root, ret);
564 goto fail;
565 }
Chris Mason3de45862008-11-17 21:02:50 -0500566
567 ret = btrfs_insert_dir_item(trans, root,
Miao Xie16cdcec2011-04-22 18:12:22 +0800568 name, namelen, dir, &key,
Chris Mason3de45862008-11-17 21:02:50 -0500569 BTRFS_FT_DIR, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100570 if (ret) {
571 btrfs_abort_transaction(trans, root, ret);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400572 goto fail;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100573 }
Chris Mason0660b5a2008-11-17 20:37:39 -0500574
Yan Zheng52c26172009-01-05 15:43:43 -0500575 btrfs_i_size_write(dir, dir->i_size + namelen * 2);
576 ret = btrfs_update_inode(trans, root, dir);
577 BUG_ON(ret);
578
Chris Mason0660b5a2008-11-17 20:37:39 -0500579 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -0400580 objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +0800581 btrfs_ino(dir), index, name, namelen);
Chris Mason0660b5a2008-11-17 20:37:39 -0500582 BUG_ON(ret);
583
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200584 ret = btrfs_uuid_tree_add(trans, root->fs_info->uuid_root,
585 root_item.uuid, BTRFS_UUID_KEY_SUBVOL,
586 objectid);
587 if (ret)
588 btrfs_abort_transaction(trans, root, ret);
589
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400590fail:
Miao Xied5c12072013-02-28 10:04:33 +0000591 trans->block_rsv = NULL;
592 trans->bytes_reserved = 0;
Liu Bode6e8202014-01-09 14:57:06 +0800593 btrfs_subvolume_release_metadata(root, &block_rsv, qgroup_reserved);
594
Sage Weil72fd0322010-10-29 15:41:32 -0400595 if (async_transid) {
596 *async_transid = trans->transid;
597 err = btrfs_commit_transaction_async(trans, root, 1);
Miao Xie00d71c92013-03-04 09:45:06 +0000598 if (err)
599 err = btrfs_commit_transaction(trans, root);
Sage Weil72fd0322010-10-29 15:41:32 -0400600 } else {
601 err = btrfs_commit_transaction(trans, root);
602 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400603 if (err && !ret)
604 ret = err;
Chris Mason1a65e242013-02-06 12:06:02 -0500605
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900606 if (!ret) {
607 inode = btrfs_lookup_dentry(dir, dentry);
Liu Bode6e8202014-01-09 14:57:06 +0800608 if (IS_ERR(inode))
609 return PTR_ERR(inode);
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900610 d_instantiate(dentry, inode);
611 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400612 return ret;
613}
614
Miao Xie8257b2d2014-03-06 13:38:19 +0800615static void btrfs_wait_nocow_write(struct btrfs_root *root)
616{
617 s64 writers;
618 DEFINE_WAIT(wait);
619
620 do {
621 prepare_to_wait(&root->subv_writers->wait, &wait,
622 TASK_UNINTERRUPTIBLE);
623
624 writers = percpu_counter_sum(&root->subv_writers->counter);
625 if (writers)
626 schedule();
627
628 finish_wait(&root->subv_writers->wait, &wait);
629 } while (writers);
630}
631
Miao Xiee9662f72013-02-28 10:01:15 +0000632static int create_snapshot(struct btrfs_root *root, struct inode *dir,
633 struct dentry *dentry, char *name, int namelen,
634 u64 *async_transid, bool readonly,
635 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400636{
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000637 struct inode *inode;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400638 struct btrfs_pending_snapshot *pending_snapshot;
639 struct btrfs_trans_handle *trans;
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000640 int ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400641
Miao Xie27cdeb72014-04-02 19:51:05 +0800642 if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400643 return -EINVAL;
644
Miao Xie8257b2d2014-03-06 13:38:19 +0800645 atomic_inc(&root->will_be_snapshoted);
646 smp_mb__after_atomic_inc();
647 btrfs_wait_nocow_write(root);
648
Miao Xie6a038432013-05-15 07:48:24 +0000649 ret = btrfs_start_delalloc_inodes(root, 0);
650 if (ret)
Miao Xie8257b2d2014-03-06 13:38:19 +0800651 goto out;
Miao Xie6a038432013-05-15 07:48:24 +0000652
Miao Xieb0244192013-11-04 23:13:25 +0800653 btrfs_wait_ordered_extents(root, -1);
Miao Xie6a038432013-05-15 07:48:24 +0000654
Yan, Zhenga22285a2010-05-16 10:48:46 -0400655 pending_snapshot = kzalloc(sizeof(*pending_snapshot), GFP_NOFS);
Miao Xie8257b2d2014-03-06 13:38:19 +0800656 if (!pending_snapshot) {
657 ret = -ENOMEM;
658 goto out;
659 }
Yan, Zhenga22285a2010-05-16 10:48:46 -0400660
Miao Xie66d8f3d2012-09-06 04:02:28 -0600661 btrfs_init_block_rsv(&pending_snapshot->block_rsv,
662 BTRFS_BLOCK_RSV_TEMP);
Miao Xied5c12072013-02-28 10:04:33 +0000663 /*
664 * 1 - parent dir inode
665 * 2 - dir entries
666 * 1 - root item
667 * 2 - root ref/backref
668 * 1 - root of snapshot
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200669 * 1 - UUID item
Miao Xied5c12072013-02-28 10:04:33 +0000670 */
671 ret = btrfs_subvolume_reserve_metadata(BTRFS_I(dir)->root,
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200672 &pending_snapshot->block_rsv, 8,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -0400673 &pending_snapshot->qgroup_reserved,
674 false);
Miao Xied5c12072013-02-28 10:04:33 +0000675 if (ret)
Miao Xie8257b2d2014-03-06 13:38:19 +0800676 goto free;
Miao Xied5c12072013-02-28 10:04:33 +0000677
Yan, Zhenga22285a2010-05-16 10:48:46 -0400678 pending_snapshot->dentry = dentry;
679 pending_snapshot->root = root;
Li Zefanb83cc962010-12-20 16:04:08 +0800680 pending_snapshot->readonly = readonly;
Miao Xiee9662f72013-02-28 10:01:15 +0000681 pending_snapshot->dir = dir;
Miao Xie8696c532013-02-07 06:02:44 +0000682 pending_snapshot->inherit = inherit;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400683
Miao Xied5c12072013-02-28 10:04:33 +0000684 trans = btrfs_start_transaction(root, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400685 if (IS_ERR(trans)) {
686 ret = PTR_ERR(trans);
687 goto fail;
688 }
689
Josef Bacik83515832011-06-14 15:16:14 -0400690 spin_lock(&root->fs_info->trans_lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400691 list_add(&pending_snapshot->list,
692 &trans->transaction->pending_snapshots);
Josef Bacik83515832011-06-14 15:16:14 -0400693 spin_unlock(&root->fs_info->trans_lock);
Sage Weil72fd0322010-10-29 15:41:32 -0400694 if (async_transid) {
695 *async_transid = trans->transid;
696 ret = btrfs_commit_transaction_async(trans,
697 root->fs_info->extent_root, 1);
Miao Xie00d71c92013-03-04 09:45:06 +0000698 if (ret)
699 ret = btrfs_commit_transaction(trans, root);
Sage Weil72fd0322010-10-29 15:41:32 -0400700 } else {
701 ret = btrfs_commit_transaction(trans,
702 root->fs_info->extent_root);
703 }
Miao Xieaec80302013-03-04 09:44:29 +0000704 if (ret)
Josef Bacikc37b2b62012-10-22 15:51:44 -0400705 goto fail;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400706
707 ret = pending_snapshot->error;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400708 if (ret)
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000709 goto fail;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400710
Josef Bacik66b4ffd2011-01-31 16:22:42 -0500711 ret = btrfs_orphan_cleanup(pending_snapshot->snap);
712 if (ret)
713 goto fail;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400714
Filipe Manana3821f342014-06-03 12:41:44 +0100715 /*
716 * If orphan cleanup did remove any orphans, it means the tree was
717 * modified and therefore the commit root is not the same as the
718 * current root anymore. This is a problem, because send uses the
719 * commit root and therefore can see inode items that don't exist
720 * in the current root anymore, and for example make calls to
721 * btrfs_iget, which will do tree lookups based on the current root
722 * and not on the commit root. Those lookups will fail, returning a
723 * -ESTALE error, and making send fail with that error. So make sure
724 * a send does not see any orphans we have just removed, and that it
725 * will see the same inodes regardless of whether a transaction
726 * commit happened before it started (meaning that the commit root
727 * will be the same as the current root) or not.
728 */
729 if (readonly && pending_snapshot->snap->node !=
730 pending_snapshot->snap->commit_root) {
731 trans = btrfs_join_transaction(pending_snapshot->snap);
732 if (IS_ERR(trans) && PTR_ERR(trans) != -ENOENT) {
733 ret = PTR_ERR(trans);
734 goto fail;
735 }
736 if (!IS_ERR(trans)) {
737 ret = btrfs_commit_transaction(trans,
738 pending_snapshot->snap);
739 if (ret)
740 goto fail;
741 }
742 }
743
Al Viro2fbe8c82011-07-16 21:38:06 -0400744 inode = btrfs_lookup_dentry(dentry->d_parent->d_inode, dentry);
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000745 if (IS_ERR(inode)) {
746 ret = PTR_ERR(inode);
747 goto fail;
748 }
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900749
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000750 d_instantiate(dentry, inode);
751 ret = 0;
752fail:
Miao Xied5c12072013-02-28 10:04:33 +0000753 btrfs_subvolume_release_metadata(BTRFS_I(dir)->root,
754 &pending_snapshot->block_rsv,
755 pending_snapshot->qgroup_reserved);
Miao Xie8257b2d2014-03-06 13:38:19 +0800756free:
Yan, Zhenga22285a2010-05-16 10:48:46 -0400757 kfree(pending_snapshot);
Miao Xie8257b2d2014-03-06 13:38:19 +0800758out:
759 atomic_dec(&root->will_be_snapshoted);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400760 return ret;
761}
762
Sage Weil4260f7c2010-10-29 15:46:43 -0400763/* copy of check_sticky in fs/namei.c()
764* It's inline, so penalty for filesystems that don't use sticky bit is
765* minimal.
766*/
767static inline int btrfs_check_sticky(struct inode *dir, struct inode *inode)
768{
Eric W. Biederman2f2f43d2012-02-10 11:05:07 -0800769 kuid_t fsuid = current_fsuid();
Sage Weil4260f7c2010-10-29 15:46:43 -0400770
771 if (!(dir->i_mode & S_ISVTX))
772 return 0;
Eric W. Biederman2f2f43d2012-02-10 11:05:07 -0800773 if (uid_eq(inode->i_uid, fsuid))
Sage Weil4260f7c2010-10-29 15:46:43 -0400774 return 0;
Eric W. Biederman2f2f43d2012-02-10 11:05:07 -0800775 if (uid_eq(dir->i_uid, fsuid))
Sage Weil4260f7c2010-10-29 15:46:43 -0400776 return 0;
777 return !capable(CAP_FOWNER);
778}
779
780/* copy of may_delete in fs/namei.c()
781 * Check whether we can remove a link victim from directory dir, check
782 * whether the type of victim is right.
783 * 1. We can't do it if dir is read-only (done in permission())
784 * 2. We should have write and exec permissions on dir
785 * 3. We can't remove anything from append-only dir
786 * 4. We can't do anything with immutable dir (done in permission())
787 * 5. If the sticky bit on dir is set we should either
788 * a. be owner of dir, or
789 * b. be owner of victim, or
790 * c. have CAP_FOWNER capability
791 * 6. If the victim is append-only or immutable we can't do antyhing with
792 * links pointing to it.
793 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
794 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
795 * 9. We can't remove a root or mountpoint.
796 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
797 * nfs_async_unlink().
798 */
799
Dulshani Gunawardhana67871252013-10-31 10:33:04 +0530800static int btrfs_may_delete(struct inode *dir, struct dentry *victim, int isdir)
Sage Weil4260f7c2010-10-29 15:46:43 -0400801{
802 int error;
803
804 if (!victim->d_inode)
805 return -ENOENT;
806
807 BUG_ON(victim->d_parent->d_inode != dir);
Jeff Layton4fa6b5e2012-10-10 15:25:25 -0400808 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
Sage Weil4260f7c2010-10-29 15:46:43 -0400809
810 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
811 if (error)
812 return error;
813 if (IS_APPEND(dir))
814 return -EPERM;
815 if (btrfs_check_sticky(dir, victim->d_inode)||
816 IS_APPEND(victim->d_inode)||
817 IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode))
818 return -EPERM;
819 if (isdir) {
820 if (!S_ISDIR(victim->d_inode->i_mode))
821 return -ENOTDIR;
822 if (IS_ROOT(victim))
823 return -EBUSY;
824 } else if (S_ISDIR(victim->d_inode->i_mode))
825 return -EISDIR;
826 if (IS_DEADDIR(dir))
827 return -ENOENT;
828 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
829 return -EBUSY;
830 return 0;
831}
832
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400833/* copy of may_create in fs/namei.c() */
834static inline int btrfs_may_create(struct inode *dir, struct dentry *child)
835{
836 if (child->d_inode)
837 return -EEXIST;
838 if (IS_DEADDIR(dir))
839 return -ENOENT;
840 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
841}
842
843/*
844 * Create a new subvolume below @parent. This is largely modeled after
845 * sys_mkdirat and vfs_mkdir, but we only do a single component lookup
846 * inside this filesystem so it's quite a bit simpler.
847 */
Yan, Zheng76dda932009-09-21 16:00:26 -0400848static noinline int btrfs_mksubvol(struct path *parent,
849 char *name, int namelen,
Sage Weil72fd0322010-10-29 15:41:32 -0400850 struct btrfs_root *snap_src,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200851 u64 *async_transid, bool readonly,
Miao Xie8696c532013-02-07 06:02:44 +0000852 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400853{
Yan, Zheng76dda932009-09-21 16:00:26 -0400854 struct inode *dir = parent->dentry->d_inode;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400855 struct dentry *dentry;
856 int error;
857
David Sterba5c50c9b2013-03-22 18:12:51 +0000858 error = mutex_lock_killable_nested(&dir->i_mutex, I_MUTEX_PARENT);
859 if (error == -EINTR)
860 return error;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400861
862 dentry = lookup_one_len(name, parent->dentry, namelen);
863 error = PTR_ERR(dentry);
864 if (IS_ERR(dentry))
865 goto out_unlock;
866
867 error = -EEXIST;
868 if (dentry->d_inode)
869 goto out_dput;
870
Yan, Zheng76dda932009-09-21 16:00:26 -0400871 error = btrfs_may_create(dir, dentry);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400872 if (error)
Liu Boa874a632012-06-29 03:58:46 -0600873 goto out_dput;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400874
Chris Mason9c520572012-12-17 14:26:57 -0500875 /*
876 * even if this name doesn't exist, we may get hash collisions.
877 * check for them now when we can safely fail
878 */
879 error = btrfs_check_dir_item_collision(BTRFS_I(dir)->root,
880 dir->i_ino, name,
881 namelen);
882 if (error)
883 goto out_dput;
884
Yan, Zheng76dda932009-09-21 16:00:26 -0400885 down_read(&BTRFS_I(dir)->root->fs_info->subvol_sem);
886
887 if (btrfs_root_refs(&BTRFS_I(dir)->root->root_item) == 0)
888 goto out_up_read;
889
Chris Mason3de45862008-11-17 21:02:50 -0500890 if (snap_src) {
Miao Xiee9662f72013-02-28 10:01:15 +0000891 error = create_snapshot(snap_src, dir, dentry, name, namelen,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200892 async_transid, readonly, inherit);
Chris Mason3de45862008-11-17 21:02:50 -0500893 } else {
Miao Xied5c12072013-02-28 10:04:33 +0000894 error = create_subvol(dir, dentry, name, namelen,
895 async_transid, inherit);
Chris Mason3de45862008-11-17 21:02:50 -0500896 }
Yan, Zheng76dda932009-09-21 16:00:26 -0400897 if (!error)
898 fsnotify_mkdir(dir, dentry);
899out_up_read:
900 up_read(&BTRFS_I(dir)->root->fs_info->subvol_sem);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400901out_dput:
902 dput(dentry);
903out_unlock:
Yan, Zheng76dda932009-09-21 16:00:26 -0400904 mutex_unlock(&dir->i_mutex);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400905 return error;
906}
907
Chris Mason4cb53002011-05-24 15:35:30 -0400908/*
909 * When we're defragging a range, we don't want to kick it off again
910 * if it is really just waiting for delalloc to send it down.
911 * If we find a nice big extent or delalloc range for the bytes in the
912 * file you want to defrag, we return 0 to let you know to skip this
913 * part of the file
914 */
915static int check_defrag_in_cache(struct inode *inode, u64 offset, int thresh)
916{
917 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
918 struct extent_map *em = NULL;
919 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
920 u64 end;
921
922 read_lock(&em_tree->lock);
923 em = lookup_extent_mapping(em_tree, offset, PAGE_CACHE_SIZE);
924 read_unlock(&em_tree->lock);
925
926 if (em) {
927 end = extent_map_end(em);
928 free_extent_map(em);
929 if (end - offset > thresh)
930 return 0;
931 }
932 /* if we already have a nice delalloc here, just stop */
933 thresh /= 2;
934 end = count_range_bits(io_tree, &offset, offset + thresh,
935 thresh, EXTENT_DELALLOC, 1);
936 if (end >= thresh)
937 return 0;
938 return 1;
939}
940
941/*
942 * helper function to walk through a file and find extents
943 * newer than a specific transid, and smaller than thresh.
944 *
945 * This is used by the defragging code to find new and small
946 * extents
947 */
948static int find_new_extents(struct btrfs_root *root,
949 struct inode *inode, u64 newer_than,
950 u64 *off, int thresh)
951{
952 struct btrfs_path *path;
953 struct btrfs_key min_key;
Chris Mason4cb53002011-05-24 15:35:30 -0400954 struct extent_buffer *leaf;
955 struct btrfs_file_extent_item *extent;
956 int type;
957 int ret;
David Sterbaa4689d22011-05-31 17:08:14 +0000958 u64 ino = btrfs_ino(inode);
Chris Mason4cb53002011-05-24 15:35:30 -0400959
960 path = btrfs_alloc_path();
961 if (!path)
962 return -ENOMEM;
963
David Sterbaa4689d22011-05-31 17:08:14 +0000964 min_key.objectid = ino;
Chris Mason4cb53002011-05-24 15:35:30 -0400965 min_key.type = BTRFS_EXTENT_DATA_KEY;
966 min_key.offset = *off;
967
Dulshani Gunawardhana67871252013-10-31 10:33:04 +0530968 while (1) {
Filipe Mananaf094c9bd2014-03-12 01:28:24 +0000969 path->keep_locks = 1;
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +0100970 ret = btrfs_search_forward(root, &min_key, path, newer_than);
Chris Mason4cb53002011-05-24 15:35:30 -0400971 if (ret != 0)
972 goto none;
Filipe Mananaf094c9bd2014-03-12 01:28:24 +0000973 path->keep_locks = 0;
974 btrfs_unlock_up_safe(path, 1);
975process_slot:
David Sterbaa4689d22011-05-31 17:08:14 +0000976 if (min_key.objectid != ino)
Chris Mason4cb53002011-05-24 15:35:30 -0400977 goto none;
978 if (min_key.type != BTRFS_EXTENT_DATA_KEY)
979 goto none;
980
981 leaf = path->nodes[0];
982 extent = btrfs_item_ptr(leaf, path->slots[0],
983 struct btrfs_file_extent_item);
984
985 type = btrfs_file_extent_type(leaf, extent);
986 if (type == BTRFS_FILE_EXTENT_REG &&
987 btrfs_file_extent_num_bytes(leaf, extent) < thresh &&
988 check_defrag_in_cache(inode, min_key.offset, thresh)) {
989 *off = min_key.offset;
990 btrfs_free_path(path);
991 return 0;
992 }
993
Filipe Mananaf094c9bd2014-03-12 01:28:24 +0000994 path->slots[0]++;
995 if (path->slots[0] < btrfs_header_nritems(leaf)) {
996 btrfs_item_key_to_cpu(leaf, &min_key, path->slots[0]);
997 goto process_slot;
998 }
999
Chris Mason4cb53002011-05-24 15:35:30 -04001000 if (min_key.offset == (u64)-1)
1001 goto none;
1002
1003 min_key.offset++;
1004 btrfs_release_path(path);
1005 }
1006none:
1007 btrfs_free_path(path);
1008 return -ENOENT;
1009}
1010
Li Zefan6c282eb2012-06-11 16:03:35 +08001011static struct extent_map *defrag_lookup_extent(struct inode *inode, u64 start)
Liu Bo17ce6ef2012-03-29 09:57:45 -04001012{
1013 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason940100a2010-03-10 10:52:59 -05001014 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Li Zefan6c282eb2012-06-11 16:03:35 +08001015 struct extent_map *em;
1016 u64 len = PAGE_CACHE_SIZE;
Chris Mason940100a2010-03-10 10:52:59 -05001017
1018 /*
1019 * hopefully we have this extent in the tree already, try without
1020 * the full extent lock
1021 */
1022 read_lock(&em_tree->lock);
1023 em = lookup_extent_mapping(em_tree, start, len);
1024 read_unlock(&em_tree->lock);
1025
1026 if (!em) {
Filipe Manana308d9802014-03-11 13:56:15 +00001027 struct extent_state *cached = NULL;
1028 u64 end = start + len - 1;
1029
Chris Mason940100a2010-03-10 10:52:59 -05001030 /* get the big lock and read metadata off disk */
Filipe Manana308d9802014-03-11 13:56:15 +00001031 lock_extent_bits(io_tree, start, end, 0, &cached);
Chris Mason940100a2010-03-10 10:52:59 -05001032 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
Filipe Manana308d9802014-03-11 13:56:15 +00001033 unlock_extent_cached(io_tree, start, end, &cached, GFP_NOFS);
Chris Mason940100a2010-03-10 10:52:59 -05001034
Dan Carpenter6cf8bfb2010-03-20 11:22:10 +00001035 if (IS_ERR(em))
Li Zefan6c282eb2012-06-11 16:03:35 +08001036 return NULL;
Chris Mason940100a2010-03-10 10:52:59 -05001037 }
1038
Li Zefan6c282eb2012-06-11 16:03:35 +08001039 return em;
1040}
1041
1042static bool defrag_check_next_extent(struct inode *inode, struct extent_map *em)
1043{
1044 struct extent_map *next;
1045 bool ret = true;
1046
1047 /* this is the last extent */
1048 if (em->start + em->len >= i_size_read(inode))
1049 return false;
1050
1051 next = defrag_lookup_extent(inode, em->start + em->len);
Filipe Mananae2127cf2014-03-01 10:57:03 +00001052 if (!next || next->block_start >= EXTENT_MAP_LAST_BYTE ||
1053 (em->block_start + em->block_len == next->block_start))
Li Zefan6c282eb2012-06-11 16:03:35 +08001054 ret = false;
1055
1056 free_extent_map(next);
1057 return ret;
1058}
1059
1060static int should_defrag_range(struct inode *inode, u64 start, int thresh,
Andrew Mahonea43a2112012-06-19 21:08:32 -04001061 u64 *last_len, u64 *skip, u64 *defrag_end,
1062 int compress)
Li Zefan6c282eb2012-06-11 16:03:35 +08001063{
1064 struct extent_map *em;
1065 int ret = 1;
1066 bool next_mergeable = true;
1067
1068 /*
1069 * make sure that once we start defragging an extent, we keep on
1070 * defragging it
1071 */
1072 if (start < *defrag_end)
1073 return 1;
1074
1075 *skip = 0;
1076
1077 em = defrag_lookup_extent(inode, start);
1078 if (!em)
1079 return 0;
1080
Chris Mason940100a2010-03-10 10:52:59 -05001081 /* this will cover holes, and inline extents */
Liu Bo17ce6ef2012-03-29 09:57:45 -04001082 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
Chris Mason940100a2010-03-10 10:52:59 -05001083 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -04001084 goto out;
1085 }
1086
Li Zefan6c282eb2012-06-11 16:03:35 +08001087 next_mergeable = defrag_check_next_extent(inode, em);
Chris Mason940100a2010-03-10 10:52:59 -05001088
1089 /*
Li Zefan6c282eb2012-06-11 16:03:35 +08001090 * we hit a real extent, if it is big or the next extent is not a
1091 * real extent, don't bother defragging it
Chris Mason940100a2010-03-10 10:52:59 -05001092 */
Andrew Mahonea43a2112012-06-19 21:08:32 -04001093 if (!compress && (*last_len == 0 || *last_len >= thresh) &&
Li Zefan6c282eb2012-06-11 16:03:35 +08001094 (em->len >= thresh || !next_mergeable))
Chris Mason940100a2010-03-10 10:52:59 -05001095 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -04001096out:
Chris Mason940100a2010-03-10 10:52:59 -05001097 /*
1098 * last_len ends up being a counter of how many bytes we've defragged.
1099 * every time we choose not to defrag an extent, we reset *last_len
1100 * so that the next tiny extent will force a defrag.
1101 *
1102 * The end result of this is that tiny extents before a single big
1103 * extent will force at least part of that big extent to be defragged.
1104 */
1105 if (ret) {
Chris Mason940100a2010-03-10 10:52:59 -05001106 *defrag_end = extent_map_end(em);
1107 } else {
1108 *last_len = 0;
1109 *skip = extent_map_end(em);
1110 *defrag_end = 0;
1111 }
1112
1113 free_extent_map(em);
1114 return ret;
1115}
1116
Chris Mason4cb53002011-05-24 15:35:30 -04001117/*
1118 * it doesn't do much good to defrag one or two pages
1119 * at a time. This pulls in a nice chunk of pages
1120 * to COW and defrag.
1121 *
1122 * It also makes sure the delalloc code has enough
1123 * dirty data to avoid making new small extents as part
1124 * of the defrag
1125 *
1126 * It's a good idea to start RA on this range
1127 * before calling this.
1128 */
1129static int cluster_pages_for_defrag(struct inode *inode,
1130 struct page **pages,
1131 unsigned long start_index,
Justin Maggardc41570c2014-01-21 11:18:29 -08001132 unsigned long num_pages)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001133{
Chris Mason4cb53002011-05-24 15:35:30 -04001134 unsigned long file_end;
1135 u64 isize = i_size_read(inode);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001136 u64 page_start;
1137 u64 page_end;
Liu Bo1f12bd02012-03-29 09:57:44 -04001138 u64 page_cnt;
Chris Mason4cb53002011-05-24 15:35:30 -04001139 int ret;
1140 int i;
1141 int i_done;
1142 struct btrfs_ordered_extent *ordered;
1143 struct extent_state *cached_state = NULL;
Miao Xie600a45e2012-02-16 15:01:24 +08001144 struct extent_io_tree *tree;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04001145 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
Chris Mason4cb53002011-05-24 15:35:30 -04001146
Chris Mason4cb53002011-05-24 15:35:30 -04001147 file_end = (isize - 1) >> PAGE_CACHE_SHIFT;
Liu Bo1f12bd02012-03-29 09:57:44 -04001148 if (!isize || start_index > file_end)
1149 return 0;
1150
1151 page_cnt = min_t(u64, (u64)num_pages, (u64)file_end - start_index + 1);
Chris Mason4cb53002011-05-24 15:35:30 -04001152
1153 ret = btrfs_delalloc_reserve_space(inode,
Liu Bo1f12bd02012-03-29 09:57:44 -04001154 page_cnt << PAGE_CACHE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001155 if (ret)
1156 return ret;
Chris Mason4cb53002011-05-24 15:35:30 -04001157 i_done = 0;
Miao Xie600a45e2012-02-16 15:01:24 +08001158 tree = &BTRFS_I(inode)->io_tree;
Chris Mason4cb53002011-05-24 15:35:30 -04001159
1160 /* step one, lock all the pages */
Liu Bo1f12bd02012-03-29 09:57:44 -04001161 for (i = 0; i < page_cnt; i++) {
Chris Mason4cb53002011-05-24 15:35:30 -04001162 struct page *page;
Miao Xie600a45e2012-02-16 15:01:24 +08001163again:
Josef Bacika94733d2011-07-11 10:47:06 -04001164 page = find_or_create_page(inode->i_mapping,
Miao Xie600a45e2012-02-16 15:01:24 +08001165 start_index + i, mask);
Chris Mason4cb53002011-05-24 15:35:30 -04001166 if (!page)
1167 break;
1168
Miao Xie600a45e2012-02-16 15:01:24 +08001169 page_start = page_offset(page);
1170 page_end = page_start + PAGE_CACHE_SIZE - 1;
1171 while (1) {
Filipe Manana308d9802014-03-11 13:56:15 +00001172 lock_extent_bits(tree, page_start, page_end,
1173 0, &cached_state);
Miao Xie600a45e2012-02-16 15:01:24 +08001174 ordered = btrfs_lookup_ordered_extent(inode,
1175 page_start);
Filipe Manana308d9802014-03-11 13:56:15 +00001176 unlock_extent_cached(tree, page_start, page_end,
1177 &cached_state, GFP_NOFS);
Miao Xie600a45e2012-02-16 15:01:24 +08001178 if (!ordered)
1179 break;
1180
1181 unlock_page(page);
1182 btrfs_start_ordered_extent(inode, ordered, 1);
1183 btrfs_put_ordered_extent(ordered);
1184 lock_page(page);
Liu Bo1f12bd02012-03-29 09:57:44 -04001185 /*
1186 * we unlocked the page above, so we need check if
1187 * it was released or not.
1188 */
1189 if (page->mapping != inode->i_mapping) {
1190 unlock_page(page);
1191 page_cache_release(page);
1192 goto again;
1193 }
Miao Xie600a45e2012-02-16 15:01:24 +08001194 }
1195
Chris Mason4cb53002011-05-24 15:35:30 -04001196 if (!PageUptodate(page)) {
1197 btrfs_readpage(NULL, page);
1198 lock_page(page);
1199 if (!PageUptodate(page)) {
1200 unlock_page(page);
1201 page_cache_release(page);
1202 ret = -EIO;
1203 break;
1204 }
1205 }
Miao Xie600a45e2012-02-16 15:01:24 +08001206
Miao Xie600a45e2012-02-16 15:01:24 +08001207 if (page->mapping != inode->i_mapping) {
1208 unlock_page(page);
1209 page_cache_release(page);
1210 goto again;
1211 }
1212
Chris Mason4cb53002011-05-24 15:35:30 -04001213 pages[i] = page;
1214 i_done++;
1215 }
1216 if (!i_done || ret)
1217 goto out;
1218
1219 if (!(inode->i_sb->s_flags & MS_ACTIVE))
1220 goto out;
1221
1222 /*
1223 * so now we have a nice long stream of locked
1224 * and up to date pages, lets wait on them
1225 */
1226 for (i = 0; i < i_done; i++)
1227 wait_on_page_writeback(pages[i]);
1228
1229 page_start = page_offset(pages[0]);
1230 page_end = page_offset(pages[i_done - 1]) + PAGE_CACHE_SIZE;
1231
1232 lock_extent_bits(&BTRFS_I(inode)->io_tree,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001233 page_start, page_end - 1, 0, &cached_state);
Chris Mason4cb53002011-05-24 15:35:30 -04001234 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start,
1235 page_end - 1, EXTENT_DIRTY | EXTENT_DELALLOC |
Liu Bo9e8a4a82012-09-05 19:10:51 -06001236 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, 0, 0,
1237 &cached_state, GFP_NOFS);
Chris Mason4cb53002011-05-24 15:35:30 -04001238
Liu Bo1f12bd02012-03-29 09:57:44 -04001239 if (i_done != page_cnt) {
Josef Bacik9e0baf62011-07-15 15:16:44 +00001240 spin_lock(&BTRFS_I(inode)->lock);
1241 BTRFS_I(inode)->outstanding_extents++;
1242 spin_unlock(&BTRFS_I(inode)->lock);
Chris Mason4cb53002011-05-24 15:35:30 -04001243 btrfs_delalloc_release_space(inode,
Liu Bo1f12bd02012-03-29 09:57:44 -04001244 (page_cnt - i_done) << PAGE_CACHE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001245 }
1246
1247
Liu Bo9e8a4a82012-09-05 19:10:51 -06001248 set_extent_defrag(&BTRFS_I(inode)->io_tree, page_start, page_end - 1,
1249 &cached_state, GFP_NOFS);
Chris Mason4cb53002011-05-24 15:35:30 -04001250
1251 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
1252 page_start, page_end - 1, &cached_state,
1253 GFP_NOFS);
1254
1255 for (i = 0; i < i_done; i++) {
1256 clear_page_dirty_for_io(pages[i]);
1257 ClearPageChecked(pages[i]);
1258 set_page_extent_mapped(pages[i]);
1259 set_page_dirty(pages[i]);
1260 unlock_page(pages[i]);
1261 page_cache_release(pages[i]);
1262 }
1263 return i_done;
1264out:
1265 for (i = 0; i < i_done; i++) {
1266 unlock_page(pages[i]);
1267 page_cache_release(pages[i]);
1268 }
Liu Bo1f12bd02012-03-29 09:57:44 -04001269 btrfs_delalloc_release_space(inode, page_cnt << PAGE_CACHE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001270 return ret;
1271
1272}
1273
1274int btrfs_defrag_file(struct inode *inode, struct file *file,
1275 struct btrfs_ioctl_defrag_range_args *range,
1276 u64 newer_than, unsigned long max_to_defrag)
1277{
1278 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason4cb53002011-05-24 15:35:30 -04001279 struct file_ra_state *ra = NULL;
1280 unsigned long last_index;
Li Zefan151a31b2011-09-02 15:56:39 +08001281 u64 isize = i_size_read(inode);
Chris Mason940100a2010-03-10 10:52:59 -05001282 u64 last_len = 0;
1283 u64 skip = 0;
1284 u64 defrag_end = 0;
Chris Mason4cb53002011-05-24 15:35:30 -04001285 u64 newer_off = range->start;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001286 unsigned long i;
Li Zefan008873e2011-09-02 15:57:07 +08001287 unsigned long ra_index = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001288 int ret;
Chris Mason4cb53002011-05-24 15:35:30 -04001289 int defrag_count = 0;
Li Zefan1a419d82010-10-25 15:12:50 +08001290 int compress_type = BTRFS_COMPRESS_ZLIB;
Chris Mason4cb53002011-05-24 15:35:30 -04001291 int extent_thresh = range->extent_thresh;
Justin Maggardc41570c2014-01-21 11:18:29 -08001292 unsigned long max_cluster = (256 * 1024) >> PAGE_CACHE_SHIFT;
1293 unsigned long cluster = max_cluster;
Chris Mason4cb53002011-05-24 15:35:30 -04001294 u64 new_align = ~((u64)128 * 1024 - 1);
1295 struct page **pages = NULL;
1296
Liu Bo0abd5b12013-04-16 09:20:28 +00001297 if (isize == 0)
1298 return 0;
1299
1300 if (range->start >= isize)
1301 return -EINVAL;
Li Zefan1a419d82010-10-25 15:12:50 +08001302
1303 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS) {
1304 if (range->compress_type > BTRFS_COMPRESS_TYPES)
1305 return -EINVAL;
1306 if (range->compress_type)
1307 compress_type = range->compress_type;
1308 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001309
Liu Bo0abd5b12013-04-16 09:20:28 +00001310 if (extent_thresh == 0)
1311 extent_thresh = 256 * 1024;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001312
Chris Mason4cb53002011-05-24 15:35:30 -04001313 /*
1314 * if we were not given a file, allocate a readahead
1315 * context
1316 */
1317 if (!file) {
1318 ra = kzalloc(sizeof(*ra), GFP_NOFS);
1319 if (!ra)
1320 return -ENOMEM;
1321 file_ra_state_init(ra, inode->i_mapping);
1322 } else {
1323 ra = &file->f_ra;
1324 }
1325
Dulshani Gunawardhanad9b0d9b2013-10-31 10:32:18 +05301326 pages = kmalloc_array(max_cluster, sizeof(struct page *),
Chris Mason4cb53002011-05-24 15:35:30 -04001327 GFP_NOFS);
1328 if (!pages) {
1329 ret = -ENOMEM;
1330 goto out_ra;
1331 }
1332
1333 /* find the last page to defrag */
Chris Mason1e701a32010-03-11 09:42:04 -05001334 if (range->start + range->len > range->start) {
Li Zefan151a31b2011-09-02 15:56:39 +08001335 last_index = min_t(u64, isize - 1,
Chris Mason1e701a32010-03-11 09:42:04 -05001336 range->start + range->len - 1) >> PAGE_CACHE_SHIFT;
1337 } else {
Li Zefan151a31b2011-09-02 15:56:39 +08001338 last_index = (isize - 1) >> PAGE_CACHE_SHIFT;
Chris Mason1e701a32010-03-11 09:42:04 -05001339 }
1340
Chris Mason4cb53002011-05-24 15:35:30 -04001341 if (newer_than) {
1342 ret = find_new_extents(root, inode, newer_than,
1343 &newer_off, 64 * 1024);
1344 if (!ret) {
1345 range->start = newer_off;
1346 /*
1347 * we always align our defrag to help keep
1348 * the extents in the file evenly spaced
1349 */
1350 i = (newer_off & new_align) >> PAGE_CACHE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001351 } else
1352 goto out_ra;
1353 } else {
1354 i = range->start >> PAGE_CACHE_SHIFT;
1355 }
1356 if (!max_to_defrag)
Liu Bo7ec31b52012-01-26 15:01:12 -05001357 max_to_defrag = last_index + 1;
Chris Mason4cb53002011-05-24 15:35:30 -04001358
Li Zefan2a0f7f52011-10-10 15:43:34 -04001359 /*
1360 * make writeback starts from i, so the defrag range can be
1361 * written sequentially.
1362 */
1363 if (i < inode->i_mapping->writeback_index)
1364 inode->i_mapping->writeback_index = i;
1365
Chris Masonf7f43cc2011-10-11 11:41:40 -04001366 while (i <= last_index && defrag_count < max_to_defrag &&
1367 (i < (i_size_read(inode) + PAGE_CACHE_SIZE - 1) >>
1368 PAGE_CACHE_SHIFT)) {
Chris Mason4cb53002011-05-24 15:35:30 -04001369 /*
1370 * make sure we stop running if someone unmounts
1371 * the FS
1372 */
1373 if (!(inode->i_sb->s_flags & MS_ACTIVE))
1374 break;
1375
David Sterba210549e2013-02-09 23:38:06 +00001376 if (btrfs_defrag_cancelled(root->fs_info)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05001377 printk(KERN_DEBUG "BTRFS: defrag_file cancelled\n");
David Sterba210549e2013-02-09 23:38:06 +00001378 ret = -EAGAIN;
1379 break;
1380 }
1381
Liu Bo66c26892012-03-29 09:57:45 -04001382 if (!should_defrag_range(inode, (u64)i << PAGE_CACHE_SHIFT,
Li Zefan6c282eb2012-06-11 16:03:35 +08001383 extent_thresh, &last_len, &skip,
Andrew Mahonea43a2112012-06-19 21:08:32 -04001384 &defrag_end, range->flags &
1385 BTRFS_DEFRAG_RANGE_COMPRESS)) {
Chris Mason940100a2010-03-10 10:52:59 -05001386 unsigned long next;
1387 /*
1388 * the should_defrag function tells us how much to skip
1389 * bump our counter by the suggested amount
1390 */
1391 next = (skip + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
1392 i = max(i + 1, next);
1393 continue;
1394 }
Li Zefan008873e2011-09-02 15:57:07 +08001395
1396 if (!newer_than) {
1397 cluster = (PAGE_CACHE_ALIGN(defrag_end) >>
1398 PAGE_CACHE_SHIFT) - i;
1399 cluster = min(cluster, max_cluster);
1400 } else {
1401 cluster = max_cluster;
1402 }
1403
Li Zefan008873e2011-09-02 15:57:07 +08001404 if (i + cluster > ra_index) {
1405 ra_index = max(i, ra_index);
1406 btrfs_force_ra(inode->i_mapping, ra, file, ra_index,
1407 cluster);
1408 ra_index += max_cluster;
1409 }
Chris Mason940100a2010-03-10 10:52:59 -05001410
Liu Boecb8bea2012-03-29 09:57:44 -04001411 mutex_lock(&inode->i_mutex);
Filipe David Borba Manana633085c2013-08-16 15:23:33 +01001412 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)
1413 BTRFS_I(inode)->force_compress = compress_type;
Li Zefan008873e2011-09-02 15:57:07 +08001414 ret = cluster_pages_for_defrag(inode, pages, i, cluster);
Liu Boecb8bea2012-03-29 09:57:44 -04001415 if (ret < 0) {
1416 mutex_unlock(&inode->i_mutex);
Chris Mason4cb53002011-05-24 15:35:30 -04001417 goto out_ra;
Liu Boecb8bea2012-03-29 09:57:44 -04001418 }
Chris Mason940100a2010-03-10 10:52:59 -05001419
Chris Mason4cb53002011-05-24 15:35:30 -04001420 defrag_count += ret;
Namjae Jeond0e1d662012-12-11 16:00:21 -08001421 balance_dirty_pages_ratelimited(inode->i_mapping);
Liu Boecb8bea2012-03-29 09:57:44 -04001422 mutex_unlock(&inode->i_mutex);
Chris Mason4cb53002011-05-24 15:35:30 -04001423
1424 if (newer_than) {
1425 if (newer_off == (u64)-1)
1426 break;
1427
Liu Boe1f041e2012-03-29 09:57:45 -04001428 if (ret > 0)
1429 i += ret;
1430
Chris Mason4cb53002011-05-24 15:35:30 -04001431 newer_off = max(newer_off + 1,
1432 (u64)i << PAGE_CACHE_SHIFT);
1433
1434 ret = find_new_extents(root, inode,
1435 newer_than, &newer_off,
1436 64 * 1024);
1437 if (!ret) {
1438 range->start = newer_off;
1439 i = (newer_off & new_align) >> PAGE_CACHE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001440 } else {
1441 break;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001442 }
Chris Mason4cb53002011-05-24 15:35:30 -04001443 } else {
Li Zefan008873e2011-09-02 15:57:07 +08001444 if (ret > 0) {
Li Zefancbcc8322011-09-02 15:56:25 +08001445 i += ret;
Li Zefan008873e2011-09-02 15:57:07 +08001446 last_len += ret << PAGE_CACHE_SHIFT;
1447 } else {
Li Zefancbcc8322011-09-02 15:56:25 +08001448 i++;
Li Zefan008873e2011-09-02 15:57:07 +08001449 last_len = 0;
1450 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001451 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001452 }
1453
Filipe Mananadec8ef92014-03-01 10:55:54 +00001454 if ((range->flags & BTRFS_DEFRAG_RANGE_START_IO)) {
Chris Mason1e701a32010-03-11 09:42:04 -05001455 filemap_flush(inode->i_mapping);
Filipe Mananadec8ef92014-03-01 10:55:54 +00001456 if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
1457 &BTRFS_I(inode)->runtime_flags))
1458 filemap_flush(inode->i_mapping);
1459 }
Chris Mason1e701a32010-03-11 09:42:04 -05001460
1461 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
1462 /* the filemap_flush will queue IO into the worker threads, but
1463 * we have to make sure the IO is actually started and that
1464 * ordered extents get created before we return
1465 */
1466 atomic_inc(&root->fs_info->async_submit_draining);
1467 while (atomic_read(&root->fs_info->nr_async_submits) ||
1468 atomic_read(&root->fs_info->async_delalloc_pages)) {
1469 wait_event(root->fs_info->async_submit_wait,
1470 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
1471 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
1472 }
1473 atomic_dec(&root->fs_info->async_submit_draining);
Chris Mason1e701a32010-03-11 09:42:04 -05001474 }
1475
Li Zefan1a419d82010-10-25 15:12:50 +08001476 if (range->compress_type == BTRFS_COMPRESS_LZO) {
Mitch Harder2b0ce2c2012-07-24 11:58:43 -06001477 btrfs_set_fs_incompat(root->fs_info, COMPRESS_LZO);
Li Zefan1a419d82010-10-25 15:12:50 +08001478 }
1479
Diego Calleja60ccf822011-09-01 16:33:57 +02001480 ret = defrag_count;
Chris Mason940100a2010-03-10 10:52:59 -05001481
Chris Mason4cb53002011-05-24 15:35:30 -04001482out_ra:
Filipe David Borba Manana633085c2013-08-16 15:23:33 +01001483 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS) {
1484 mutex_lock(&inode->i_mutex);
1485 BTRFS_I(inode)->force_compress = BTRFS_COMPRESS_NONE;
1486 mutex_unlock(&inode->i_mutex);
1487 }
Chris Mason4cb53002011-05-24 15:35:30 -04001488 if (!file)
1489 kfree(ra);
1490 kfree(pages);
Chris Mason940100a2010-03-10 10:52:59 -05001491 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001492}
1493
Miao Xie198605a2012-11-26 08:43:45 +00001494static noinline int btrfs_ioctl_resize(struct file *file,
Yan, Zheng76dda932009-09-21 16:00:26 -04001495 void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001496{
1497 u64 new_size;
1498 u64 old_size;
1499 u64 devid = 1;
Al Viro496ad9a2013-01-23 17:07:38 -05001500 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001501 struct btrfs_ioctl_vol_args *vol_args;
1502 struct btrfs_trans_handle *trans;
1503 struct btrfs_device *device = NULL;
1504 char *sizestr;
Gui Hecheng9a40f122014-03-31 18:03:25 +08001505 char *retptr;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001506 char *devstr = NULL;
1507 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001508 int mod = 0;
1509
Chris Masone441d542009-01-05 16:57:23 -05001510 if (!capable(CAP_SYS_ADMIN))
1511 return -EPERM;
1512
Miao Xie198605a2012-11-26 08:43:45 +00001513 ret = mnt_want_write_file(file);
1514 if (ret)
1515 return ret;
1516
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01001517 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
1518 1)) {
Miao Xie97547672012-12-21 10:38:50 +00001519 mnt_drop_write_file(file);
Anand Jaine57138b2013-08-21 11:44:48 +08001520 return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001521 }
1522
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01001523 mutex_lock(&root->fs_info->volume_mutex);
Li Zefandae7b662009-04-08 15:06:54 +08001524 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001525 if (IS_ERR(vol_args)) {
1526 ret = PTR_ERR(vol_args);
1527 goto out;
1528 }
Mark Fasheh5516e592008-07-24 12:20:14 -04001529
1530 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001531
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001532 sizestr = vol_args->name;
1533 devstr = strchr(sizestr, ':');
1534 if (devstr) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001535 sizestr = devstr + 1;
1536 *devstr = '\0';
1537 devstr = vol_args->name;
ZhangZhen58dfae62014-05-13 16:36:08 +08001538 ret = kstrtoull(devstr, 10, &devid);
1539 if (ret)
1540 goto out_free;
Miao Xiedfd79822012-12-21 09:21:30 +00001541 if (!devid) {
1542 ret = -EINVAL;
1543 goto out_free;
1544 }
Frank Holtonefe120a2013-12-20 11:37:06 -05001545 btrfs_info(root->fs_info, "resizing devid %llu", devid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001546 }
Miao Xiedba60f32012-12-21 09:19:51 +00001547
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01001548 device = btrfs_find_device(root->fs_info, devid, NULL, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001549 if (!device) {
Frank Holtonefe120a2013-12-20 11:37:06 -05001550 btrfs_info(root->fs_info, "resizer unable to find device %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001551 devid);
Miao Xiedfd79822012-12-21 09:21:30 +00001552 ret = -ENODEV;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001553 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001554 }
Miao Xiedba60f32012-12-21 09:19:51 +00001555
1556 if (!device->writeable) {
Frank Holtonefe120a2013-12-20 11:37:06 -05001557 btrfs_info(root->fs_info,
1558 "resizer unable to apply on readonly device %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001559 devid);
Miao Xiedfd79822012-12-21 09:21:30 +00001560 ret = -EPERM;
Liu Bo4e42ae12012-06-14 02:23:19 -06001561 goto out_free;
1562 }
1563
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001564 if (!strcmp(sizestr, "max"))
1565 new_size = device->bdev->bd_inode->i_size;
1566 else {
1567 if (sizestr[0] == '-') {
1568 mod = -1;
1569 sizestr++;
1570 } else if (sizestr[0] == '+') {
1571 mod = 1;
1572 sizestr++;
1573 }
Gui Hecheng9a40f122014-03-31 18:03:25 +08001574 new_size = memparse(sizestr, &retptr);
1575 if (*retptr != '\0' || new_size == 0) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001576 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001577 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001578 }
1579 }
1580
Stefan Behrens63a212a2012-11-05 18:29:28 +01001581 if (device->is_tgtdev_for_dev_replace) {
Miao Xiedfd79822012-12-21 09:21:30 +00001582 ret = -EPERM;
Stefan Behrens63a212a2012-11-05 18:29:28 +01001583 goto out_free;
1584 }
1585
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001586 old_size = device->total_bytes;
1587
1588 if (mod < 0) {
1589 if (new_size > old_size) {
1590 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001591 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001592 }
1593 new_size = old_size - new_size;
1594 } else if (mod > 0) {
Wenliang Faneb8052e2013-12-20 15:28:56 +08001595 if (new_size > ULLONG_MAX - old_size) {
Gui Hecheng902c68a2014-05-29 09:19:58 +08001596 ret = -ERANGE;
Wenliang Faneb8052e2013-12-20 15:28:56 +08001597 goto out_free;
1598 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001599 new_size = old_size + new_size;
1600 }
1601
1602 if (new_size < 256 * 1024 * 1024) {
1603 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001604 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001605 }
1606 if (new_size > device->bdev->bd_inode->i_size) {
1607 ret = -EFBIG;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001608 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001609 }
1610
1611 do_div(new_size, root->sectorsize);
1612 new_size *= root->sectorsize;
1613
Frank Holtonefe120a2013-12-20 11:37:06 -05001614 printk_in_rcu(KERN_INFO "BTRFS: new size for %s is %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001615 rcu_str_deref(device->name), new_size);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001616
1617 if (new_size > old_size) {
Yan, Zhenga22285a2010-05-16 10:48:46 -04001618 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001619 if (IS_ERR(trans)) {
1620 ret = PTR_ERR(trans);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001621 goto out_free;
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001622 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001623 ret = btrfs_grow_device(trans, device, new_size);
1624 btrfs_commit_transaction(trans, root);
Mike Fleetwoodece7d202011-11-18 18:55:01 +00001625 } else if (new_size < old_size) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001626 ret = btrfs_shrink_device(device, new_size);
jeff.liu0253f402012-10-27 12:06:39 +00001627 } /* equal, nothing need to do */
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001628
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001629out_free:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001630 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001631out:
1632 mutex_unlock(&root->fs_info->volume_mutex);
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01001633 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
Ilya Dryomov18f39c42013-01-20 15:57:57 +02001634 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001635 return ret;
1636}
1637
Sage Weil72fd0322010-10-29 15:41:32 -04001638static noinline int btrfs_ioctl_snap_create_transid(struct file *file,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001639 char *name, unsigned long fd, int subvol,
1640 u64 *transid, bool readonly,
Miao Xie8696c532013-02-07 06:02:44 +00001641 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001642{
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001643 int namelen;
Chris Mason3de45862008-11-17 21:02:50 -05001644 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001645
Liu Boa874a632012-06-29 03:58:46 -06001646 ret = mnt_want_write_file(file);
1647 if (ret)
1648 goto out;
1649
Sage Weil72fd0322010-10-29 15:41:32 -04001650 namelen = strlen(name);
1651 if (strchr(name, '/')) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001652 ret = -EINVAL;
Liu Boa874a632012-06-29 03:58:46 -06001653 goto out_drop_write;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001654 }
1655
Chris Mason16780ca2012-02-20 22:14:55 -05001656 if (name[0] == '.' &&
1657 (namelen == 1 || (name[1] == '.' && namelen == 2))) {
1658 ret = -EEXIST;
Liu Boa874a632012-06-29 03:58:46 -06001659 goto out_drop_write;
Chris Mason16780ca2012-02-20 22:14:55 -05001660 }
1661
Chris Mason3de45862008-11-17 21:02:50 -05001662 if (subvol) {
Sage Weil72fd0322010-10-29 15:41:32 -04001663 ret = btrfs_mksubvol(&file->f_path, name, namelen,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001664 NULL, transid, readonly, inherit);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001665 } else {
Al Viro2903ff02012-08-28 12:52:22 -04001666 struct fd src = fdget(fd);
Chris Mason3de45862008-11-17 21:02:50 -05001667 struct inode *src_inode;
Al Viro2903ff02012-08-28 12:52:22 -04001668 if (!src.file) {
Chris Mason3de45862008-11-17 21:02:50 -05001669 ret = -EINVAL;
Liu Boa874a632012-06-29 03:58:46 -06001670 goto out_drop_write;
Chris Mason3de45862008-11-17 21:02:50 -05001671 }
1672
Al Viro496ad9a2013-01-23 17:07:38 -05001673 src_inode = file_inode(src.file);
1674 if (src_inode->i_sb != file_inode(file)->i_sb) {
Frank Holtonefe120a2013-12-20 11:37:06 -05001675 btrfs_info(BTRFS_I(src_inode)->root->fs_info,
1676 "Snapshot src from another FS");
Kusanagi Kouichi23ad5b12014-01-30 16:32:02 +09001677 ret = -EXDEV;
David Sterbad0242062014-01-15 18:15:52 +01001678 } else if (!inode_owner_or_capable(src_inode)) {
1679 /*
1680 * Subvolume creation is not restricted, but snapshots
1681 * are limited to own subvolumes only
1682 */
1683 ret = -EPERM;
Al Viroecd18812012-08-26 21:20:24 -04001684 } else {
1685 ret = btrfs_mksubvol(&file->f_path, name, namelen,
1686 BTRFS_I(src_inode)->root,
1687 transid, readonly, inherit);
Chris Mason3de45862008-11-17 21:02:50 -05001688 }
Al Viro2903ff02012-08-28 12:52:22 -04001689 fdput(src);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001690 }
Liu Boa874a632012-06-29 03:58:46 -06001691out_drop_write:
1692 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001693out:
Sage Weil72fd0322010-10-29 15:41:32 -04001694 return ret;
1695}
1696
1697static noinline int btrfs_ioctl_snap_create(struct file *file,
Li Zefanfa0d2b92010-12-20 15:53:28 +08001698 void __user *arg, int subvol)
Sage Weil72fd0322010-10-29 15:41:32 -04001699{
Li Zefanfa0d2b92010-12-20 15:53:28 +08001700 struct btrfs_ioctl_vol_args *vol_args;
Sage Weil72fd0322010-10-29 15:41:32 -04001701 int ret;
1702
Li Zefanfa0d2b92010-12-20 15:53:28 +08001703 vol_args = memdup_user(arg, sizeof(*vol_args));
1704 if (IS_ERR(vol_args))
1705 return PTR_ERR(vol_args);
1706 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Sage Weil72fd0322010-10-29 15:41:32 -04001707
Li Zefanfa0d2b92010-12-20 15:53:28 +08001708 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
Li Zefanb83cc962010-12-20 16:04:08 +08001709 vol_args->fd, subvol,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001710 NULL, false, NULL);
Li Zefanfdfb1e42010-12-10 06:41:56 +00001711
Li Zefanfa0d2b92010-12-20 15:53:28 +08001712 kfree(vol_args);
1713 return ret;
1714}
Li Zefanfdfb1e42010-12-10 06:41:56 +00001715
Li Zefanfa0d2b92010-12-20 15:53:28 +08001716static noinline int btrfs_ioctl_snap_create_v2(struct file *file,
1717 void __user *arg, int subvol)
1718{
1719 struct btrfs_ioctl_vol_args_v2 *vol_args;
1720 int ret;
1721 u64 transid = 0;
1722 u64 *ptr = NULL;
Li Zefanb83cc962010-12-20 16:04:08 +08001723 bool readonly = false;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001724 struct btrfs_qgroup_inherit *inherit = NULL;
Li Zefanfdfb1e42010-12-10 06:41:56 +00001725
Li Zefanfa0d2b92010-12-20 15:53:28 +08001726 vol_args = memdup_user(arg, sizeof(*vol_args));
1727 if (IS_ERR(vol_args))
1728 return PTR_ERR(vol_args);
1729 vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
Sage Weil75eaa0e2010-12-10 00:36:28 +00001730
Li Zefanb83cc962010-12-20 16:04:08 +08001731 if (vol_args->flags &
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001732 ~(BTRFS_SUBVOL_CREATE_ASYNC | BTRFS_SUBVOL_RDONLY |
1733 BTRFS_SUBVOL_QGROUP_INHERIT)) {
Li Zefanb83cc962010-12-20 16:04:08 +08001734 ret = -EOPNOTSUPP;
Li Zefanfa0d2b92010-12-20 15:53:28 +08001735 goto out;
Sage Weil72fd0322010-10-29 15:41:32 -04001736 }
Li Zefanfa0d2b92010-12-20 15:53:28 +08001737
1738 if (vol_args->flags & BTRFS_SUBVOL_CREATE_ASYNC)
1739 ptr = &transid;
Li Zefanb83cc962010-12-20 16:04:08 +08001740 if (vol_args->flags & BTRFS_SUBVOL_RDONLY)
1741 readonly = true;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001742 if (vol_args->flags & BTRFS_SUBVOL_QGROUP_INHERIT) {
1743 if (vol_args->size > PAGE_CACHE_SIZE) {
1744 ret = -EINVAL;
1745 goto out;
1746 }
1747 inherit = memdup_user(vol_args->qgroup_inherit, vol_args->size);
1748 if (IS_ERR(inherit)) {
1749 ret = PTR_ERR(inherit);
1750 goto out;
1751 }
1752 }
Li Zefanfa0d2b92010-12-20 15:53:28 +08001753
1754 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001755 vol_args->fd, subvol, ptr,
Miao Xie8696c532013-02-07 06:02:44 +00001756 readonly, inherit);
Li Zefanfa0d2b92010-12-20 15:53:28 +08001757
1758 if (ret == 0 && ptr &&
1759 copy_to_user(arg +
1760 offsetof(struct btrfs_ioctl_vol_args_v2,
1761 transid), ptr, sizeof(*ptr)))
1762 ret = -EFAULT;
Li Zefanfdfb1e42010-12-10 06:41:56 +00001763out:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001764 kfree(vol_args);
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001765 kfree(inherit);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001766 return ret;
1767}
1768
Li Zefan0caa1022010-12-20 16:30:25 +08001769static noinline int btrfs_ioctl_subvol_getflags(struct file *file,
1770 void __user *arg)
1771{
Al Viro496ad9a2013-01-23 17:07:38 -05001772 struct inode *inode = file_inode(file);
Li Zefan0caa1022010-12-20 16:30:25 +08001773 struct btrfs_root *root = BTRFS_I(inode)->root;
1774 int ret = 0;
1775 u64 flags = 0;
1776
Li Zefan33345d012011-04-20 10:31:50 +08001777 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID)
Li Zefan0caa1022010-12-20 16:30:25 +08001778 return -EINVAL;
1779
1780 down_read(&root->fs_info->subvol_sem);
1781 if (btrfs_root_readonly(root))
1782 flags |= BTRFS_SUBVOL_RDONLY;
1783 up_read(&root->fs_info->subvol_sem);
1784
1785 if (copy_to_user(arg, &flags, sizeof(flags)))
1786 ret = -EFAULT;
1787
1788 return ret;
1789}
1790
1791static noinline int btrfs_ioctl_subvol_setflags(struct file *file,
1792 void __user *arg)
1793{
Al Viro496ad9a2013-01-23 17:07:38 -05001794 struct inode *inode = file_inode(file);
Li Zefan0caa1022010-12-20 16:30:25 +08001795 struct btrfs_root *root = BTRFS_I(inode)->root;
1796 struct btrfs_trans_handle *trans;
1797 u64 root_flags;
1798 u64 flags;
1799 int ret = 0;
1800
David Sterbabd60ea02014-01-16 15:50:22 +01001801 if (!inode_owner_or_capable(inode))
1802 return -EPERM;
1803
Liu Bob9ca0662012-06-29 03:58:49 -06001804 ret = mnt_want_write_file(file);
1805 if (ret)
1806 goto out;
Li Zefan0caa1022010-12-20 16:30:25 +08001807
Liu Bob9ca0662012-06-29 03:58:49 -06001808 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
1809 ret = -EINVAL;
1810 goto out_drop_write;
1811 }
Li Zefan0caa1022010-12-20 16:30:25 +08001812
Liu Bob9ca0662012-06-29 03:58:49 -06001813 if (copy_from_user(&flags, arg, sizeof(flags))) {
1814 ret = -EFAULT;
1815 goto out_drop_write;
1816 }
Li Zefan0caa1022010-12-20 16:30:25 +08001817
Liu Bob9ca0662012-06-29 03:58:49 -06001818 if (flags & BTRFS_SUBVOL_CREATE_ASYNC) {
1819 ret = -EINVAL;
1820 goto out_drop_write;
1821 }
Li Zefan0caa1022010-12-20 16:30:25 +08001822
Liu Bob9ca0662012-06-29 03:58:49 -06001823 if (flags & ~BTRFS_SUBVOL_RDONLY) {
1824 ret = -EOPNOTSUPP;
1825 goto out_drop_write;
1826 }
Li Zefan0caa1022010-12-20 16:30:25 +08001827
1828 down_write(&root->fs_info->subvol_sem);
1829
1830 /* nothing to do */
1831 if (!!(flags & BTRFS_SUBVOL_RDONLY) == btrfs_root_readonly(root))
Liu Bob9ca0662012-06-29 03:58:49 -06001832 goto out_drop_sem;
Li Zefan0caa1022010-12-20 16:30:25 +08001833
1834 root_flags = btrfs_root_flags(&root->root_item);
David Sterba2c686532013-12-16 17:34:17 +01001835 if (flags & BTRFS_SUBVOL_RDONLY) {
Li Zefan0caa1022010-12-20 16:30:25 +08001836 btrfs_set_root_flags(&root->root_item,
1837 root_flags | BTRFS_ROOT_SUBVOL_RDONLY);
David Sterba2c686532013-12-16 17:34:17 +01001838 } else {
1839 /*
1840 * Block RO -> RW transition if this subvolume is involved in
1841 * send
1842 */
1843 spin_lock(&root->root_item_lock);
1844 if (root->send_in_progress == 0) {
1845 btrfs_set_root_flags(&root->root_item,
Li Zefan0caa1022010-12-20 16:30:25 +08001846 root_flags & ~BTRFS_ROOT_SUBVOL_RDONLY);
David Sterba2c686532013-12-16 17:34:17 +01001847 spin_unlock(&root->root_item_lock);
1848 } else {
1849 spin_unlock(&root->root_item_lock);
1850 btrfs_warn(root->fs_info,
1851 "Attempt to set subvolume %llu read-write during send",
1852 root->root_key.objectid);
1853 ret = -EPERM;
1854 goto out_drop_sem;
1855 }
1856 }
Li Zefan0caa1022010-12-20 16:30:25 +08001857
1858 trans = btrfs_start_transaction(root, 1);
1859 if (IS_ERR(trans)) {
1860 ret = PTR_ERR(trans);
1861 goto out_reset;
1862 }
1863
Li Zefanb4dc2b82011-02-16 06:06:34 +00001864 ret = btrfs_update_root(trans, root->fs_info->tree_root,
Li Zefan0caa1022010-12-20 16:30:25 +08001865 &root->root_key, &root->root_item);
1866
1867 btrfs_commit_transaction(trans, root);
1868out_reset:
1869 if (ret)
1870 btrfs_set_root_flags(&root->root_item, root_flags);
Liu Bob9ca0662012-06-29 03:58:49 -06001871out_drop_sem:
Li Zefan0caa1022010-12-20 16:30:25 +08001872 up_write(&root->fs_info->subvol_sem);
Liu Bob9ca0662012-06-29 03:58:49 -06001873out_drop_write:
1874 mnt_drop_write_file(file);
1875out:
Li Zefan0caa1022010-12-20 16:30:25 +08001876 return ret;
1877}
1878
Yan, Zheng76dda932009-09-21 16:00:26 -04001879/*
1880 * helper to check if the subvolume references other subvolumes
1881 */
1882static noinline int may_destroy_subvol(struct btrfs_root *root)
1883{
1884 struct btrfs_path *path;
Josef Bacik175a2b82013-08-12 15:36:44 -04001885 struct btrfs_dir_item *di;
Yan, Zheng76dda932009-09-21 16:00:26 -04001886 struct btrfs_key key;
Josef Bacik175a2b82013-08-12 15:36:44 -04001887 u64 dir_id;
Yan, Zheng76dda932009-09-21 16:00:26 -04001888 int ret;
1889
1890 path = btrfs_alloc_path();
1891 if (!path)
1892 return -ENOMEM;
1893
Josef Bacik175a2b82013-08-12 15:36:44 -04001894 /* Make sure this root isn't set as the default subvol */
1895 dir_id = btrfs_super_root_dir(root->fs_info->super_copy);
1896 di = btrfs_lookup_dir_item(NULL, root->fs_info->tree_root, path,
1897 dir_id, "default", 7, 0);
1898 if (di && !IS_ERR(di)) {
1899 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &key);
1900 if (key.objectid == root->root_key.objectid) {
Guangyu Sun72de6b52014-03-11 11:24:18 -07001901 ret = -EPERM;
1902 btrfs_err(root->fs_info, "deleting default subvolume "
1903 "%llu is not allowed", key.objectid);
Josef Bacik175a2b82013-08-12 15:36:44 -04001904 goto out;
1905 }
1906 btrfs_release_path(path);
1907 }
1908
Yan, Zheng76dda932009-09-21 16:00:26 -04001909 key.objectid = root->root_key.objectid;
1910 key.type = BTRFS_ROOT_REF_KEY;
1911 key.offset = (u64)-1;
1912
1913 ret = btrfs_search_slot(NULL, root->fs_info->tree_root,
1914 &key, path, 0, 0);
1915 if (ret < 0)
1916 goto out;
1917 BUG_ON(ret == 0);
1918
1919 ret = 0;
1920 if (path->slots[0] > 0) {
1921 path->slots[0]--;
1922 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1923 if (key.objectid == root->root_key.objectid &&
1924 key.type == BTRFS_ROOT_REF_KEY)
1925 ret = -ENOTEMPTY;
1926 }
1927out:
1928 btrfs_free_path(path);
1929 return ret;
1930}
1931
Chris Masonac8e9812010-02-28 15:39:26 -05001932static noinline int key_in_sk(struct btrfs_key *key,
1933 struct btrfs_ioctl_search_key *sk)
1934{
Chris Masonabc6e132010-03-18 12:10:08 -04001935 struct btrfs_key test;
1936 int ret;
1937
1938 test.objectid = sk->min_objectid;
1939 test.type = sk->min_type;
1940 test.offset = sk->min_offset;
1941
1942 ret = btrfs_comp_cpu_keys(key, &test);
1943 if (ret < 0)
Chris Masonac8e9812010-02-28 15:39:26 -05001944 return 0;
Chris Masonabc6e132010-03-18 12:10:08 -04001945
1946 test.objectid = sk->max_objectid;
1947 test.type = sk->max_type;
1948 test.offset = sk->max_offset;
1949
1950 ret = btrfs_comp_cpu_keys(key, &test);
1951 if (ret > 0)
Chris Masonac8e9812010-02-28 15:39:26 -05001952 return 0;
1953 return 1;
1954}
1955
1956static noinline int copy_to_sk(struct btrfs_root *root,
1957 struct btrfs_path *path,
1958 struct btrfs_key *key,
1959 struct btrfs_ioctl_search_key *sk,
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001960 size_t *buf_size,
Gerhard Heiftba346b32014-01-30 16:24:02 +01001961 char __user *ubuf,
Chris Masonac8e9812010-02-28 15:39:26 -05001962 unsigned long *sk_offset,
1963 int *num_found)
1964{
1965 u64 found_transid;
1966 struct extent_buffer *leaf;
1967 struct btrfs_ioctl_search_header sh;
1968 unsigned long item_off;
1969 unsigned long item_len;
1970 int nritems;
1971 int i;
1972 int slot;
Chris Masonac8e9812010-02-28 15:39:26 -05001973 int ret = 0;
1974
1975 leaf = path->nodes[0];
1976 slot = path->slots[0];
1977 nritems = btrfs_header_nritems(leaf);
1978
1979 if (btrfs_header_generation(leaf) > sk->max_transid) {
1980 i = nritems;
1981 goto advance_key;
1982 }
1983 found_transid = btrfs_header_generation(leaf);
1984
1985 for (i = slot; i < nritems; i++) {
1986 item_off = btrfs_item_ptr_offset(leaf, i);
1987 item_len = btrfs_item_size_nr(leaf, i);
1988
Gabriel de Perthuis03b71c62013-05-06 17:40:18 +00001989 btrfs_item_key_to_cpu(leaf, key, i);
1990 if (!key_in_sk(key, sk))
1991 continue;
1992
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001993 if (sizeof(sh) + item_len > *buf_size) {
Gerhard Heift8f5f6172014-01-30 16:23:59 +01001994 if (*num_found) {
1995 ret = 1;
1996 goto out;
1997 }
1998
1999 /*
2000 * return one empty item back for v1, which does not
2001 * handle -EOVERFLOW
2002 */
2003
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002004 *buf_size = sizeof(sh) + item_len;
Chris Masonac8e9812010-02-28 15:39:26 -05002005 item_len = 0;
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002006 ret = -EOVERFLOW;
2007 }
Chris Masonac8e9812010-02-28 15:39:26 -05002008
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002009 if (sizeof(sh) + item_len + *sk_offset > *buf_size) {
Chris Masonac8e9812010-02-28 15:39:26 -05002010 ret = 1;
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002011 goto out;
Chris Masonac8e9812010-02-28 15:39:26 -05002012 }
2013
Chris Masonac8e9812010-02-28 15:39:26 -05002014 sh.objectid = key->objectid;
2015 sh.offset = key->offset;
2016 sh.type = key->type;
2017 sh.len = item_len;
2018 sh.transid = found_transid;
2019
2020 /* copy search result header */
Gerhard Heiftba346b32014-01-30 16:24:02 +01002021 if (copy_to_user(ubuf + *sk_offset, &sh, sizeof(sh))) {
2022 ret = -EFAULT;
2023 goto out;
2024 }
2025
Chris Masonac8e9812010-02-28 15:39:26 -05002026 *sk_offset += sizeof(sh);
2027
2028 if (item_len) {
Gerhard Heiftba346b32014-01-30 16:24:02 +01002029 char __user *up = ubuf + *sk_offset;
Chris Masonac8e9812010-02-28 15:39:26 -05002030 /* copy the item */
Gerhard Heiftba346b32014-01-30 16:24:02 +01002031 if (read_extent_buffer_to_user(leaf, up,
2032 item_off, item_len)) {
2033 ret = -EFAULT;
2034 goto out;
2035 }
2036
Chris Masonac8e9812010-02-28 15:39:26 -05002037 *sk_offset += item_len;
Chris Masonac8e9812010-02-28 15:39:26 -05002038 }
Hugo Millse2156862011-05-14 17:43:41 +00002039 (*num_found)++;
Chris Masonac8e9812010-02-28 15:39:26 -05002040
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002041 if (ret) /* -EOVERFLOW from above */
2042 goto out;
2043
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002044 if (*num_found >= sk->nr_items) {
2045 ret = 1;
2046 goto out;
2047 }
Chris Masonac8e9812010-02-28 15:39:26 -05002048 }
2049advance_key:
Chris Masonac8e9812010-02-28 15:39:26 -05002050 ret = 0;
Chris Masonabc6e132010-03-18 12:10:08 -04002051 if (key->offset < (u64)-1 && key->offset < sk->max_offset)
2052 key->offset++;
2053 else if (key->type < (u8)-1 && key->type < sk->max_type) {
2054 key->offset = 0;
2055 key->type++;
2056 } else if (key->objectid < (u64)-1 && key->objectid < sk->max_objectid) {
2057 key->offset = 0;
2058 key->type = 0;
2059 key->objectid++;
2060 } else
2061 ret = 1;
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002062out:
Gerhard Heiftba346b32014-01-30 16:24:02 +01002063 /*
2064 * 0: all items from this leaf copied, continue with next
2065 * 1: * more items can be copied, but unused buffer is too small
2066 * * all items were found
2067 * Either way, it will stops the loop which iterates to the next
2068 * leaf
2069 * -EOVERFLOW: item was to large for buffer
2070 * -EFAULT: could not copy extent buffer back to userspace
2071 */
Chris Masonac8e9812010-02-28 15:39:26 -05002072 return ret;
2073}
2074
2075static noinline int search_ioctl(struct inode *inode,
Gerhard Heift12544442014-01-30 16:23:58 +01002076 struct btrfs_ioctl_search_key *sk,
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002077 size_t *buf_size,
Gerhard Heiftba346b32014-01-30 16:24:02 +01002078 char __user *ubuf)
Chris Masonac8e9812010-02-28 15:39:26 -05002079{
2080 struct btrfs_root *root;
2081 struct btrfs_key key;
Chris Masonac8e9812010-02-28 15:39:26 -05002082 struct btrfs_path *path;
Chris Masonac8e9812010-02-28 15:39:26 -05002083 struct btrfs_fs_info *info = BTRFS_I(inode)->root->fs_info;
2084 int ret;
2085 int num_found = 0;
2086 unsigned long sk_offset = 0;
2087
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002088 if (*buf_size < sizeof(struct btrfs_ioctl_search_header)) {
2089 *buf_size = sizeof(struct btrfs_ioctl_search_header);
Gerhard Heift12544442014-01-30 16:23:58 +01002090 return -EOVERFLOW;
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002091 }
Gerhard Heift12544442014-01-30 16:23:58 +01002092
Chris Masonac8e9812010-02-28 15:39:26 -05002093 path = btrfs_alloc_path();
2094 if (!path)
2095 return -ENOMEM;
2096
2097 if (sk->tree_id == 0) {
2098 /* search the root of the inode that was passed */
2099 root = BTRFS_I(inode)->root;
2100 } else {
2101 key.objectid = sk->tree_id;
2102 key.type = BTRFS_ROOT_ITEM_KEY;
2103 key.offset = (u64)-1;
2104 root = btrfs_read_fs_root_no_name(info, &key);
2105 if (IS_ERR(root)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05002106 printk(KERN_ERR "BTRFS: could not find root %llu\n",
Chris Masonac8e9812010-02-28 15:39:26 -05002107 sk->tree_id);
2108 btrfs_free_path(path);
2109 return -ENOENT;
2110 }
2111 }
2112
2113 key.objectid = sk->min_objectid;
2114 key.type = sk->min_type;
2115 key.offset = sk->min_offset;
2116
Chris Masonac8e9812010-02-28 15:39:26 -05002117 path->keep_locks = 1;
2118
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302119 while (1) {
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +01002120 ret = btrfs_search_forward(root, &key, path, sk->min_transid);
Chris Masonac8e9812010-02-28 15:39:26 -05002121 if (ret != 0) {
2122 if (ret > 0)
2123 ret = 0;
2124 goto err;
2125 }
Gerhard Heiftba346b32014-01-30 16:24:02 +01002126 ret = copy_to_sk(root, path, &key, sk, buf_size, ubuf,
Chris Masonac8e9812010-02-28 15:39:26 -05002127 &sk_offset, &num_found);
David Sterbab3b4aa72011-04-21 01:20:15 +02002128 btrfs_release_path(path);
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002129 if (ret)
Chris Masonac8e9812010-02-28 15:39:26 -05002130 break;
2131
2132 }
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002133 if (ret > 0)
2134 ret = 0;
Chris Masonac8e9812010-02-28 15:39:26 -05002135err:
2136 sk->nr_items = num_found;
2137 btrfs_free_path(path);
2138 return ret;
2139}
2140
2141static noinline int btrfs_ioctl_tree_search(struct file *file,
2142 void __user *argp)
2143{
Gerhard Heiftba346b32014-01-30 16:24:02 +01002144 struct btrfs_ioctl_search_args __user *uargs;
2145 struct btrfs_ioctl_search_key sk;
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002146 struct inode *inode;
2147 int ret;
2148 size_t buf_size;
Chris Masonac8e9812010-02-28 15:39:26 -05002149
2150 if (!capable(CAP_SYS_ADMIN))
2151 return -EPERM;
2152
Gerhard Heiftba346b32014-01-30 16:24:02 +01002153 uargs = (struct btrfs_ioctl_search_args __user *)argp;
Chris Masonac8e9812010-02-28 15:39:26 -05002154
Gerhard Heiftba346b32014-01-30 16:24:02 +01002155 if (copy_from_user(&sk, &uargs->key, sizeof(sk)))
2156 return -EFAULT;
2157
2158 buf_size = sizeof(uargs->buf);
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002159
Al Viro496ad9a2013-01-23 17:07:38 -05002160 inode = file_inode(file);
Gerhard Heiftba346b32014-01-30 16:24:02 +01002161 ret = search_ioctl(inode, &sk, &buf_size, uargs->buf);
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002162
2163 /*
2164 * In the origin implementation an overflow is handled by returning a
2165 * search header with a len of zero, so reset ret.
2166 */
2167 if (ret == -EOVERFLOW)
2168 ret = 0;
2169
Gerhard Heiftba346b32014-01-30 16:24:02 +01002170 if (ret == 0 && copy_to_user(&uargs->key, &sk, sizeof(sk)))
Chris Masonac8e9812010-02-28 15:39:26 -05002171 ret = -EFAULT;
Chris Masonac8e9812010-02-28 15:39:26 -05002172 return ret;
2173}
2174
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002175/*
Chris Masonac8e9812010-02-28 15:39:26 -05002176 * Search INODE_REFs to identify path name of 'dirid' directory
2177 * in a 'tree_id' tree. and sets path name to 'name'.
2178 */
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002179static noinline int btrfs_search_path_in_tree(struct btrfs_fs_info *info,
2180 u64 tree_id, u64 dirid, char *name)
2181{
2182 struct btrfs_root *root;
2183 struct btrfs_key key;
Chris Masonac8e9812010-02-28 15:39:26 -05002184 char *ptr;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002185 int ret = -1;
2186 int slot;
2187 int len;
2188 int total_len = 0;
2189 struct btrfs_inode_ref *iref;
2190 struct extent_buffer *l;
2191 struct btrfs_path *path;
2192
2193 if (dirid == BTRFS_FIRST_FREE_OBJECTID) {
2194 name[0]='\0';
2195 return 0;
2196 }
2197
2198 path = btrfs_alloc_path();
2199 if (!path)
2200 return -ENOMEM;
2201
Chris Masonac8e9812010-02-28 15:39:26 -05002202 ptr = &name[BTRFS_INO_LOOKUP_PATH_MAX];
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002203
2204 key.objectid = tree_id;
2205 key.type = BTRFS_ROOT_ITEM_KEY;
2206 key.offset = (u64)-1;
2207 root = btrfs_read_fs_root_no_name(info, &key);
2208 if (IS_ERR(root)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05002209 printk(KERN_ERR "BTRFS: could not find root %llu\n", tree_id);
Chris Mason8ad6fca2010-03-18 12:23:10 -04002210 ret = -ENOENT;
2211 goto out;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002212 }
2213
2214 key.objectid = dirid;
2215 key.type = BTRFS_INODE_REF_KEY;
Chris Mason8ad6fca2010-03-18 12:23:10 -04002216 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002217
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302218 while (1) {
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002219 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2220 if (ret < 0)
2221 goto out;
Filipe David Borba Manana18674c62013-08-14 03:00:21 +01002222 else if (ret > 0) {
2223 ret = btrfs_previous_item(root, path, dirid,
2224 BTRFS_INODE_REF_KEY);
2225 if (ret < 0)
2226 goto out;
2227 else if (ret > 0) {
2228 ret = -ENOENT;
2229 goto out;
2230 }
2231 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002232
2233 l = path->nodes[0];
2234 slot = path->slots[0];
2235 btrfs_item_key_to_cpu(l, &key, slot);
2236
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002237 iref = btrfs_item_ptr(l, slot, struct btrfs_inode_ref);
2238 len = btrfs_inode_ref_name_len(l, iref);
2239 ptr -= len + 1;
2240 total_len += len + 1;
Filipe David Borba Mananaa696cf32013-08-14 03:00:20 +01002241 if (ptr < name) {
2242 ret = -ENAMETOOLONG;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002243 goto out;
Filipe David Borba Mananaa696cf32013-08-14 03:00:20 +01002244 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002245
2246 *(ptr + len) = '/';
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302247 read_extent_buffer(l, ptr, (unsigned long)(iref + 1), len);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002248
2249 if (key.offset == BTRFS_FIRST_FREE_OBJECTID)
2250 break;
2251
David Sterbab3b4aa72011-04-21 01:20:15 +02002252 btrfs_release_path(path);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002253 key.objectid = key.offset;
Chris Mason8ad6fca2010-03-18 12:23:10 -04002254 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002255 dirid = key.objectid;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002256 }
Li Zefan77906a502011-07-14 03:16:00 +00002257 memmove(name, ptr, total_len);
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302258 name[total_len] = '\0';
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002259 ret = 0;
2260out:
2261 btrfs_free_path(path);
Chris Masonac8e9812010-02-28 15:39:26 -05002262 return ret;
2263}
2264
2265static noinline int btrfs_ioctl_ino_lookup(struct file *file,
2266 void __user *argp)
2267{
2268 struct btrfs_ioctl_ino_lookup_args *args;
2269 struct inode *inode;
2270 int ret;
2271
2272 if (!capable(CAP_SYS_ADMIN))
2273 return -EPERM;
2274
Julia Lawall2354d082010-10-29 15:14:18 -04002275 args = memdup_user(argp, sizeof(*args));
2276 if (IS_ERR(args))
2277 return PTR_ERR(args);
Dan Carpenterc2b96922010-03-20 11:24:15 +00002278
Al Viro496ad9a2013-01-23 17:07:38 -05002279 inode = file_inode(file);
Chris Masonac8e9812010-02-28 15:39:26 -05002280
Chris Mason1b53ac42010-03-18 12:17:05 -04002281 if (args->treeid == 0)
2282 args->treeid = BTRFS_I(inode)->root->root_key.objectid;
2283
Chris Masonac8e9812010-02-28 15:39:26 -05002284 ret = btrfs_search_path_in_tree(BTRFS_I(inode)->root->fs_info,
2285 args->treeid, args->objectid,
2286 args->name);
2287
2288 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
2289 ret = -EFAULT;
2290
2291 kfree(args);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002292 return ret;
2293}
2294
Yan, Zheng76dda932009-09-21 16:00:26 -04002295static noinline int btrfs_ioctl_snap_destroy(struct file *file,
2296 void __user *arg)
2297{
Al Viro54563d42013-09-01 15:57:51 -04002298 struct dentry *parent = file->f_path.dentry;
Yan, Zheng76dda932009-09-21 16:00:26 -04002299 struct dentry *dentry;
2300 struct inode *dir = parent->d_inode;
2301 struct inode *inode;
2302 struct btrfs_root *root = BTRFS_I(dir)->root;
2303 struct btrfs_root *dest = NULL;
2304 struct btrfs_ioctl_vol_args *vol_args;
2305 struct btrfs_trans_handle *trans;
Miao Xiec58aaad2013-02-28 10:05:36 +00002306 struct btrfs_block_rsv block_rsv;
David Sterba521e0542014-04-15 16:41:44 +02002307 u64 root_flags;
Miao Xiec58aaad2013-02-28 10:05:36 +00002308 u64 qgroup_reserved;
Yan, Zheng76dda932009-09-21 16:00:26 -04002309 int namelen;
2310 int ret;
2311 int err = 0;
2312
Yan, Zheng76dda932009-09-21 16:00:26 -04002313 vol_args = memdup_user(arg, sizeof(*vol_args));
2314 if (IS_ERR(vol_args))
2315 return PTR_ERR(vol_args);
2316
2317 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
2318 namelen = strlen(vol_args->name);
2319 if (strchr(vol_args->name, '/') ||
2320 strncmp(vol_args->name, "..", namelen) == 0) {
2321 err = -EINVAL;
2322 goto out;
2323 }
2324
Al Viroa561be72011-11-23 11:57:51 -05002325 err = mnt_want_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04002326 if (err)
2327 goto out;
2328
David Sterba521e0542014-04-15 16:41:44 +02002329
David Sterba5c50c9b2013-03-22 18:12:51 +00002330 err = mutex_lock_killable_nested(&dir->i_mutex, I_MUTEX_PARENT);
2331 if (err == -EINTR)
David Sterbae43f9982013-12-06 17:51:32 +01002332 goto out_drop_write;
Yan, Zheng76dda932009-09-21 16:00:26 -04002333 dentry = lookup_one_len(vol_args->name, parent, namelen);
2334 if (IS_ERR(dentry)) {
2335 err = PTR_ERR(dentry);
2336 goto out_unlock_dir;
2337 }
2338
2339 if (!dentry->d_inode) {
2340 err = -ENOENT;
2341 goto out_dput;
2342 }
2343
2344 inode = dentry->d_inode;
Sage Weil4260f7c2010-10-29 15:46:43 -04002345 dest = BTRFS_I(inode)->root;
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302346 if (!capable(CAP_SYS_ADMIN)) {
Sage Weil4260f7c2010-10-29 15:46:43 -04002347 /*
2348 * Regular user. Only allow this with a special mount
2349 * option, when the user has write+exec access to the
2350 * subvol root, and when rmdir(2) would have been
2351 * allowed.
2352 *
2353 * Note that this is _not_ check that the subvol is
2354 * empty or doesn't contain data that we wouldn't
2355 * otherwise be able to delete.
2356 *
2357 * Users who want to delete empty subvols should try
2358 * rmdir(2).
2359 */
2360 err = -EPERM;
2361 if (!btrfs_test_opt(root, USER_SUBVOL_RM_ALLOWED))
2362 goto out_dput;
2363
2364 /*
2365 * Do not allow deletion if the parent dir is the same
2366 * as the dir to be deleted. That means the ioctl
2367 * must be called on the dentry referencing the root
2368 * of the subvol, not a random directory contained
2369 * within it.
2370 */
2371 err = -EINVAL;
2372 if (root == dest)
2373 goto out_dput;
2374
2375 err = inode_permission(inode, MAY_WRITE | MAY_EXEC);
2376 if (err)
2377 goto out_dput;
Sage Weil4260f7c2010-10-29 15:46:43 -04002378 }
2379
Miao Xie5c39da52012-10-22 11:39:53 +00002380 /* check if subvolume may be deleted by a user */
2381 err = btrfs_may_delete(dir, dentry, 1);
2382 if (err)
2383 goto out_dput;
2384
Li Zefan33345d012011-04-20 10:31:50 +08002385 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
Yan, Zheng76dda932009-09-21 16:00:26 -04002386 err = -EINVAL;
2387 goto out_dput;
2388 }
2389
Yan, Zheng76dda932009-09-21 16:00:26 -04002390 mutex_lock(&inode->i_mutex);
David Sterba521e0542014-04-15 16:41:44 +02002391
2392 /*
2393 * Don't allow to delete a subvolume with send in progress. This is
2394 * inside the i_mutex so the error handling that has to drop the bit
2395 * again is not run concurrently.
2396 */
2397 spin_lock(&dest->root_item_lock);
Filipe Mananac55bfa62014-05-25 03:55:44 +01002398 root_flags = btrfs_root_flags(&dest->root_item);
2399 if (dest->send_in_progress == 0) {
2400 btrfs_set_root_flags(&dest->root_item,
David Sterba521e0542014-04-15 16:41:44 +02002401 root_flags | BTRFS_ROOT_SUBVOL_DEAD);
2402 spin_unlock(&dest->root_item_lock);
2403 } else {
2404 spin_unlock(&dest->root_item_lock);
2405 btrfs_warn(root->fs_info,
2406 "Attempt to delete subvolume %llu during send",
Filipe Mananac55bfa62014-05-25 03:55:44 +01002407 dest->root_key.objectid);
David Sterba521e0542014-04-15 16:41:44 +02002408 err = -EPERM;
2409 goto out_dput;
2410 }
2411
Yan, Zheng76dda932009-09-21 16:00:26 -04002412 err = d_invalidate(dentry);
2413 if (err)
2414 goto out_unlock;
2415
2416 down_write(&root->fs_info->subvol_sem);
2417
2418 err = may_destroy_subvol(dest);
2419 if (err)
2420 goto out_up_write;
2421
Miao Xiec58aaad2013-02-28 10:05:36 +00002422 btrfs_init_block_rsv(&block_rsv, BTRFS_BLOCK_RSV_TEMP);
2423 /*
2424 * One for dir inode, two for dir entries, two for root
2425 * ref/backref.
2426 */
2427 err = btrfs_subvolume_reserve_metadata(root, &block_rsv,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04002428 5, &qgroup_reserved, true);
Miao Xiec58aaad2013-02-28 10:05:36 +00002429 if (err)
2430 goto out_up_write;
2431
Yan, Zhenga22285a2010-05-16 10:48:46 -04002432 trans = btrfs_start_transaction(root, 0);
2433 if (IS_ERR(trans)) {
2434 err = PTR_ERR(trans);
Miao Xiec58aaad2013-02-28 10:05:36 +00002435 goto out_release;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002436 }
Miao Xiec58aaad2013-02-28 10:05:36 +00002437 trans->block_rsv = &block_rsv;
2438 trans->bytes_reserved = block_rsv.size;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002439
Yan, Zheng76dda932009-09-21 16:00:26 -04002440 ret = btrfs_unlink_subvol(trans, root, dir,
2441 dest->root_key.objectid,
2442 dentry->d_name.name,
2443 dentry->d_name.len);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002444 if (ret) {
2445 err = ret;
2446 btrfs_abort_transaction(trans, root, ret);
2447 goto out_end_trans;
2448 }
Yan, Zheng76dda932009-09-21 16:00:26 -04002449
2450 btrfs_record_root_in_trans(trans, dest);
2451
2452 memset(&dest->root_item.drop_progress, 0,
2453 sizeof(dest->root_item.drop_progress));
2454 dest->root_item.drop_level = 0;
2455 btrfs_set_root_refs(&dest->root_item, 0);
2456
Miao Xie27cdeb72014-04-02 19:51:05 +08002457 if (!test_and_set_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &dest->state)) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04002458 ret = btrfs_insert_orphan_item(trans,
2459 root->fs_info->tree_root,
2460 dest->root_key.objectid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002461 if (ret) {
2462 btrfs_abort_transaction(trans, root, ret);
2463 err = ret;
2464 goto out_end_trans;
2465 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04002466 }
Stefan Behrensdd5f9612013-08-15 17:11:20 +02002467
2468 ret = btrfs_uuid_tree_rem(trans, root->fs_info->uuid_root,
2469 dest->root_item.uuid, BTRFS_UUID_KEY_SUBVOL,
2470 dest->root_key.objectid);
2471 if (ret && ret != -ENOENT) {
2472 btrfs_abort_transaction(trans, root, ret);
2473 err = ret;
2474 goto out_end_trans;
2475 }
2476 if (!btrfs_is_empty_uuid(dest->root_item.received_uuid)) {
2477 ret = btrfs_uuid_tree_rem(trans, root->fs_info->uuid_root,
2478 dest->root_item.received_uuid,
2479 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
2480 dest->root_key.objectid);
2481 if (ret && ret != -ENOENT) {
2482 btrfs_abort_transaction(trans, root, ret);
2483 err = ret;
2484 goto out_end_trans;
2485 }
2486 }
2487
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002488out_end_trans:
Miao Xiec58aaad2013-02-28 10:05:36 +00002489 trans->block_rsv = NULL;
2490 trans->bytes_reserved = 0;
Sage Weil531cb132010-10-29 15:41:32 -04002491 ret = btrfs_end_transaction(trans, root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002492 if (ret && !err)
2493 err = ret;
Yan, Zheng76dda932009-09-21 16:00:26 -04002494 inode->i_flags |= S_DEAD;
Miao Xiec58aaad2013-02-28 10:05:36 +00002495out_release:
2496 btrfs_subvolume_release_metadata(root, &block_rsv, qgroup_reserved);
Yan, Zheng76dda932009-09-21 16:00:26 -04002497out_up_write:
2498 up_write(&root->fs_info->subvol_sem);
2499out_unlock:
David Sterba521e0542014-04-15 16:41:44 +02002500 if (err) {
2501 spin_lock(&dest->root_item_lock);
Filipe Mananac55bfa62014-05-25 03:55:44 +01002502 root_flags = btrfs_root_flags(&dest->root_item);
2503 btrfs_set_root_flags(&dest->root_item,
David Sterba521e0542014-04-15 16:41:44 +02002504 root_flags & ~BTRFS_ROOT_SUBVOL_DEAD);
2505 spin_unlock(&dest->root_item_lock);
2506 }
Yan, Zheng76dda932009-09-21 16:00:26 -04002507 mutex_unlock(&inode->i_mutex);
2508 if (!err) {
Yan, Zhengefefb142009-10-09 09:25:16 -04002509 shrink_dcache_sb(root->fs_info->sb);
Yan, Zheng76dda932009-09-21 16:00:26 -04002510 btrfs_invalidate_inodes(dest);
2511 d_delete(dentry);
David Sterba61155aa2014-04-15 16:42:03 +02002512 ASSERT(dest->send_in_progress == 0);
Liu Bofa6ac872013-02-20 14:10:23 +00002513
2514 /* the last ref */
2515 if (dest->cache_inode) {
2516 iput(dest->cache_inode);
2517 dest->cache_inode = NULL;
2518 }
Yan, Zheng76dda932009-09-21 16:00:26 -04002519 }
2520out_dput:
2521 dput(dentry);
2522out_unlock_dir:
2523 mutex_unlock(&dir->i_mutex);
David Sterbae43f9982013-12-06 17:51:32 +01002524out_drop_write:
Al Viro2a79f172011-12-09 08:06:57 -05002525 mnt_drop_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04002526out:
2527 kfree(vol_args);
2528 return err;
2529}
2530
Chris Mason1e701a32010-03-11 09:42:04 -05002531static int btrfs_ioctl_defrag(struct file *file, void __user *argp)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002532{
Al Viro496ad9a2013-01-23 17:07:38 -05002533 struct inode *inode = file_inode(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002534 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason1e701a32010-03-11 09:42:04 -05002535 struct btrfs_ioctl_defrag_range_args *range;
Yan Zhengc146afa2008-11-12 14:34:12 -05002536 int ret;
2537
Ilya Dryomov25122d12013-01-20 15:57:57 +02002538 ret = mnt_want_write_file(file);
2539 if (ret)
2540 return ret;
Li Zefanb83cc962010-12-20 16:04:08 +08002541
Ilya Dryomov25122d12013-01-20 15:57:57 +02002542 if (btrfs_root_readonly(root)) {
2543 ret = -EROFS;
2544 goto out;
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002545 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002546
2547 switch (inode->i_mode & S_IFMT) {
2548 case S_IFDIR:
Chris Masone441d542009-01-05 16:57:23 -05002549 if (!capable(CAP_SYS_ADMIN)) {
2550 ret = -EPERM;
2551 goto out;
2552 }
Eric Sandeende78b512013-01-31 18:21:12 +00002553 ret = btrfs_defrag_root(root);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04002554 if (ret)
2555 goto out;
Eric Sandeende78b512013-01-31 18:21:12 +00002556 ret = btrfs_defrag_root(root->fs_info->extent_root);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002557 break;
2558 case S_IFREG:
Chris Masone441d542009-01-05 16:57:23 -05002559 if (!(file->f_mode & FMODE_WRITE)) {
2560 ret = -EINVAL;
2561 goto out;
2562 }
Chris Mason1e701a32010-03-11 09:42:04 -05002563
2564 range = kzalloc(sizeof(*range), GFP_KERNEL);
2565 if (!range) {
2566 ret = -ENOMEM;
2567 goto out;
2568 }
2569
2570 if (argp) {
2571 if (copy_from_user(range, argp,
2572 sizeof(*range))) {
2573 ret = -EFAULT;
2574 kfree(range);
Dan Carpenter683be162010-03-20 11:24:48 +00002575 goto out;
Chris Mason1e701a32010-03-11 09:42:04 -05002576 }
2577 /* compression requires us to start the IO */
2578 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
2579 range->flags |= BTRFS_DEFRAG_RANGE_START_IO;
2580 range->extent_thresh = (u32)-1;
2581 }
2582 } else {
2583 /* the rest are all set to zero by kzalloc */
2584 range->len = (u64)-1;
2585 }
Al Viro496ad9a2013-01-23 17:07:38 -05002586 ret = btrfs_defrag_file(file_inode(file), file,
Chris Mason4cb53002011-05-24 15:35:30 -04002587 range, 0, 0);
2588 if (ret > 0)
2589 ret = 0;
Chris Mason1e701a32010-03-11 09:42:04 -05002590 kfree(range);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002591 break;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04002592 default:
2593 ret = -EINVAL;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002594 }
Chris Masone441d542009-01-05 16:57:23 -05002595out:
Ilya Dryomov25122d12013-01-20 15:57:57 +02002596 mnt_drop_write_file(file);
Chris Masone441d542009-01-05 16:57:23 -05002597 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002598}
2599
Christoph Hellwigb2950862008-12-02 09:54:17 -05002600static long btrfs_ioctl_add_dev(struct btrfs_root *root, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002601{
2602 struct btrfs_ioctl_vol_args *vol_args;
2603 int ret;
2604
Chris Masone441d542009-01-05 16:57:23 -05002605 if (!capable(CAP_SYS_ADMIN))
2606 return -EPERM;
2607
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002608 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
2609 1)) {
Anand Jaine57138b2013-08-21 11:44:48 +08002610 return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002611 }
2612
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002613 mutex_lock(&root->fs_info->volume_mutex);
Li Zefandae7b662009-04-08 15:06:54 +08002614 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002615 if (IS_ERR(vol_args)) {
2616 ret = PTR_ERR(vol_args);
2617 goto out;
2618 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002619
Mark Fasheh5516e592008-07-24 12:20:14 -04002620 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002621 ret = btrfs_init_new_device(root, vol_args->name);
2622
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002623 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002624out:
2625 mutex_unlock(&root->fs_info->volume_mutex);
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002626 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002627 return ret;
2628}
2629
Miao Xieda249272012-11-26 08:44:50 +00002630static long btrfs_ioctl_rm_dev(struct file *file, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002631{
Al Viro496ad9a2013-01-23 17:07:38 -05002632 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002633 struct btrfs_ioctl_vol_args *vol_args;
2634 int ret;
2635
Chris Masone441d542009-01-05 16:57:23 -05002636 if (!capable(CAP_SYS_ADMIN))
2637 return -EPERM;
2638
Miao Xieda249272012-11-26 08:44:50 +00002639 ret = mnt_want_write_file(file);
2640 if (ret)
2641 return ret;
Yan Zhengc146afa2008-11-12 14:34:12 -05002642
Li Zefandae7b662009-04-08 15:06:54 +08002643 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002644 if (IS_ERR(vol_args)) {
2645 ret = PTR_ERR(vol_args);
2646 goto out;
2647 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002648
Mark Fasheh5516e592008-07-24 12:20:14 -04002649 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002650
Anand Jain183860f2013-05-17 10:52:45 +00002651 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
2652 1)) {
2653 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
2654 goto out;
2655 }
2656
2657 mutex_lock(&root->fs_info->volume_mutex);
2658 ret = btrfs_rm_device(root, vol_args->name);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002659 mutex_unlock(&root->fs_info->volume_mutex);
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002660 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
Anand Jain183860f2013-05-17 10:52:45 +00002661
2662out:
2663 kfree(vol_args);
Ilya Dryomov4ac20c72013-01-20 15:57:57 +02002664 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002665 return ret;
2666}
2667
Jan Schmidt475f6382011-03-11 15:41:01 +01002668static long btrfs_ioctl_fs_info(struct btrfs_root *root, void __user *arg)
2669{
Li Zefan027ed2f2011-06-08 08:27:56 +00002670 struct btrfs_ioctl_fs_info_args *fi_args;
Jan Schmidt475f6382011-03-11 15:41:01 +01002671 struct btrfs_device *device;
2672 struct btrfs_device *next;
2673 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
Li Zefan027ed2f2011-06-08 08:27:56 +00002674 int ret = 0;
Jan Schmidt475f6382011-03-11 15:41:01 +01002675
Li Zefan027ed2f2011-06-08 08:27:56 +00002676 fi_args = kzalloc(sizeof(*fi_args), GFP_KERNEL);
2677 if (!fi_args)
2678 return -ENOMEM;
2679
Filipe David Borba Mananaf7171752013-08-12 20:56:58 +01002680 mutex_lock(&fs_devices->device_list_mutex);
Li Zefan027ed2f2011-06-08 08:27:56 +00002681 fi_args->num_devices = fs_devices->num_devices;
2682 memcpy(&fi_args->fsid, root->fs_info->fsid, sizeof(fi_args->fsid));
Jan Schmidt475f6382011-03-11 15:41:01 +01002683
Jan Schmidt475f6382011-03-11 15:41:01 +01002684 list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) {
Li Zefan027ed2f2011-06-08 08:27:56 +00002685 if (device->devid > fi_args->max_id)
2686 fi_args->max_id = device->devid;
Jan Schmidt475f6382011-03-11 15:41:01 +01002687 }
2688 mutex_unlock(&fs_devices->device_list_mutex);
2689
David Sterba80a773f2014-05-07 18:17:06 +02002690 fi_args->nodesize = root->fs_info->super_copy->nodesize;
2691 fi_args->sectorsize = root->fs_info->super_copy->sectorsize;
2692 fi_args->clone_alignment = root->fs_info->super_copy->sectorsize;
2693
Li Zefan027ed2f2011-06-08 08:27:56 +00002694 if (copy_to_user(arg, fi_args, sizeof(*fi_args)))
2695 ret = -EFAULT;
Jan Schmidt475f6382011-03-11 15:41:01 +01002696
Li Zefan027ed2f2011-06-08 08:27:56 +00002697 kfree(fi_args);
2698 return ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01002699}
2700
2701static long btrfs_ioctl_dev_info(struct btrfs_root *root, void __user *arg)
2702{
2703 struct btrfs_ioctl_dev_info_args *di_args;
2704 struct btrfs_device *dev;
2705 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
2706 int ret = 0;
2707 char *s_uuid = NULL;
Jan Schmidt475f6382011-03-11 15:41:01 +01002708
Jan Schmidt475f6382011-03-11 15:41:01 +01002709 di_args = memdup_user(arg, sizeof(*di_args));
2710 if (IS_ERR(di_args))
2711 return PTR_ERR(di_args);
2712
Stefan Behrensdd5f9612013-08-15 17:11:20 +02002713 if (!btrfs_is_empty_uuid(di_args->uuid))
Jan Schmidt475f6382011-03-11 15:41:01 +01002714 s_uuid = di_args->uuid;
2715
2716 mutex_lock(&fs_devices->device_list_mutex);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01002717 dev = btrfs_find_device(root->fs_info, di_args->devid, s_uuid, NULL);
Jan Schmidt475f6382011-03-11 15:41:01 +01002718
2719 if (!dev) {
2720 ret = -ENODEV;
2721 goto out;
2722 }
2723
2724 di_args->devid = dev->devid;
2725 di_args->bytes_used = dev->bytes_used;
2726 di_args->total_bytes = dev->total_bytes;
2727 memcpy(di_args->uuid, dev->uuid, sizeof(di_args->uuid));
Jim Meyeringa27202f2012-04-26 18:36:56 +02002728 if (dev->name) {
Josef Bacik606686e2012-06-04 14:03:51 -04002729 struct rcu_string *name;
2730
2731 rcu_read_lock();
2732 name = rcu_dereference(dev->name);
2733 strncpy(di_args->path, name->str, sizeof(di_args->path));
2734 rcu_read_unlock();
Jim Meyeringa27202f2012-04-26 18:36:56 +02002735 di_args->path[sizeof(di_args->path) - 1] = 0;
2736 } else {
Stefan Behrens99ba55a2012-03-19 16:17:22 +01002737 di_args->path[0] = '\0';
Jim Meyeringa27202f2012-04-26 18:36:56 +02002738 }
Jan Schmidt475f6382011-03-11 15:41:01 +01002739
2740out:
David Sterba55793c02013-04-26 15:20:23 +00002741 mutex_unlock(&fs_devices->device_list_mutex);
Jan Schmidt475f6382011-03-11 15:41:01 +01002742 if (ret == 0 && copy_to_user(arg, di_args, sizeof(*di_args)))
2743 ret = -EFAULT;
2744
2745 kfree(di_args);
2746 return ret;
2747}
2748
Mark Fasheh416161d2013-08-06 11:42:51 -07002749static struct page *extent_same_get_page(struct inode *inode, u64 off)
2750{
2751 struct page *page;
2752 pgoff_t index;
2753 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2754
2755 index = off >> PAGE_CACHE_SHIFT;
2756
2757 page = grab_cache_page(inode->i_mapping, index);
2758 if (!page)
2759 return NULL;
2760
2761 if (!PageUptodate(page)) {
2762 if (extent_read_full_page_nolock(tree, page, btrfs_get_extent,
2763 0))
2764 return NULL;
2765 lock_page(page);
2766 if (!PageUptodate(page)) {
2767 unlock_page(page);
2768 page_cache_release(page);
2769 return NULL;
2770 }
2771 }
2772 unlock_page(page);
2773
2774 return page;
2775}
2776
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002777static inline void lock_extent_range(struct inode *inode, u64 off, u64 len)
2778{
2779 /* do any pending delalloc/csum calc on src, one way or
2780 another, and lock file content */
2781 while (1) {
2782 struct btrfs_ordered_extent *ordered;
2783 lock_extent(&BTRFS_I(inode)->io_tree, off, off + len - 1);
2784 ordered = btrfs_lookup_first_ordered_extent(inode,
2785 off + len - 1);
Filipe Mananaff5df9b2014-05-30 17:56:24 +01002786 if ((!ordered ||
2787 ordered->file_offset + ordered->len <= off ||
2788 ordered->file_offset >= off + len) &&
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002789 !test_range_bit(&BTRFS_I(inode)->io_tree, off,
Filipe Mananaff5df9b2014-05-30 17:56:24 +01002790 off + len - 1, EXTENT_DELALLOC, 0, NULL)) {
2791 if (ordered)
2792 btrfs_put_ordered_extent(ordered);
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002793 break;
Filipe Mananaff5df9b2014-05-30 17:56:24 +01002794 }
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002795 unlock_extent(&BTRFS_I(inode)->io_tree, off, off + len - 1);
2796 if (ordered)
2797 btrfs_put_ordered_extent(ordered);
2798 btrfs_wait_ordered_range(inode, off, len);
2799 }
2800}
2801
Mark Fasheh416161d2013-08-06 11:42:51 -07002802static void btrfs_double_unlock(struct inode *inode1, u64 loff1,
2803 struct inode *inode2, u64 loff2, u64 len)
2804{
2805 unlock_extent(&BTRFS_I(inode1)->io_tree, loff1, loff1 + len - 1);
2806 unlock_extent(&BTRFS_I(inode2)->io_tree, loff2, loff2 + len - 1);
2807
2808 mutex_unlock(&inode1->i_mutex);
2809 mutex_unlock(&inode2->i_mutex);
2810}
2811
2812static void btrfs_double_lock(struct inode *inode1, u64 loff1,
2813 struct inode *inode2, u64 loff2, u64 len)
2814{
2815 if (inode1 < inode2) {
2816 swap(inode1, inode2);
2817 swap(loff1, loff2);
2818 }
2819
2820 mutex_lock_nested(&inode1->i_mutex, I_MUTEX_PARENT);
2821 lock_extent_range(inode1, loff1, len);
2822 if (inode1 != inode2) {
2823 mutex_lock_nested(&inode2->i_mutex, I_MUTEX_CHILD);
2824 lock_extent_range(inode2, loff2, len);
2825 }
2826}
2827
2828static int btrfs_cmp_data(struct inode *src, u64 loff, struct inode *dst,
2829 u64 dst_loff, u64 len)
2830{
2831 int ret = 0;
2832 struct page *src_page, *dst_page;
2833 unsigned int cmp_len = PAGE_CACHE_SIZE;
2834 void *addr, *dst_addr;
2835
2836 while (len) {
2837 if (len < PAGE_CACHE_SIZE)
2838 cmp_len = len;
2839
2840 src_page = extent_same_get_page(src, loff);
2841 if (!src_page)
2842 return -EINVAL;
2843 dst_page = extent_same_get_page(dst, dst_loff);
2844 if (!dst_page) {
2845 page_cache_release(src_page);
2846 return -EINVAL;
2847 }
2848 addr = kmap_atomic(src_page);
2849 dst_addr = kmap_atomic(dst_page);
2850
2851 flush_dcache_page(src_page);
2852 flush_dcache_page(dst_page);
2853
2854 if (memcmp(addr, dst_addr, cmp_len))
2855 ret = BTRFS_SAME_DATA_DIFFERS;
2856
2857 kunmap_atomic(addr);
2858 kunmap_atomic(dst_addr);
2859 page_cache_release(src_page);
2860 page_cache_release(dst_page);
2861
2862 if (ret)
2863 break;
2864
2865 loff += cmp_len;
2866 dst_loff += cmp_len;
2867 len -= cmp_len;
2868 }
2869
2870 return ret;
2871}
2872
2873static int extent_same_check_offsets(struct inode *inode, u64 off, u64 len)
2874{
2875 u64 bs = BTRFS_I(inode)->root->fs_info->sb->s_blocksize;
2876
2877 if (off + len > inode->i_size || off + len < off)
2878 return -EINVAL;
2879 /* Check that we are block aligned - btrfs_clone() requires this */
2880 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs))
2881 return -EINVAL;
2882
2883 return 0;
2884}
2885
2886static int btrfs_extent_same(struct inode *src, u64 loff, u64 len,
2887 struct inode *dst, u64 dst_loff)
2888{
2889 int ret;
2890
2891 /*
2892 * btrfs_clone() can't handle extents in the same file
2893 * yet. Once that works, we can drop this check and replace it
2894 * with a check for the same inode, but overlapping extents.
2895 */
2896 if (src == dst)
2897 return -EINVAL;
2898
2899 btrfs_double_lock(src, loff, dst, dst_loff, len);
2900
2901 ret = extent_same_check_offsets(src, loff, len);
2902 if (ret)
2903 goto out_unlock;
2904
2905 ret = extent_same_check_offsets(dst, dst_loff, len);
2906 if (ret)
2907 goto out_unlock;
2908
2909 /* don't make the dst file partly checksummed */
2910 if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
2911 (BTRFS_I(dst)->flags & BTRFS_INODE_NODATASUM)) {
2912 ret = -EINVAL;
2913 goto out_unlock;
2914 }
2915
2916 ret = btrfs_cmp_data(src, loff, dst, dst_loff, len);
2917 if (ret == 0)
2918 ret = btrfs_clone(src, dst, loff, len, len, dst_loff);
2919
2920out_unlock:
2921 btrfs_double_unlock(src, loff, dst, dst_loff, len);
2922
2923 return ret;
2924}
2925
2926#define BTRFS_MAX_DEDUPE_LEN (16 * 1024 * 1024)
2927
2928static long btrfs_ioctl_file_extent_same(struct file *file,
Al Viro1c1c8742013-12-11 23:07:51 -05002929 struct btrfs_ioctl_same_args __user *argp)
Mark Fasheh416161d2013-08-06 11:42:51 -07002930{
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07002931 struct btrfs_ioctl_same_args *same;
2932 struct btrfs_ioctl_same_extent_info *info;
Al Viro1c1c8742013-12-11 23:07:51 -05002933 struct inode *src = file_inode(file);
Mark Fasheh416161d2013-08-06 11:42:51 -07002934 u64 off;
2935 u64 len;
2936 int i;
2937 int ret;
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07002938 unsigned long size;
Mark Fasheh416161d2013-08-06 11:42:51 -07002939 u64 bs = BTRFS_I(src)->root->fs_info->sb->s_blocksize;
2940 bool is_admin = capable(CAP_SYS_ADMIN);
Al Viro1c1c8742013-12-11 23:07:51 -05002941 u16 count;
Mark Fasheh416161d2013-08-06 11:42:51 -07002942
2943 if (!(file->f_mode & FMODE_READ))
2944 return -EINVAL;
2945
2946 ret = mnt_want_write_file(file);
2947 if (ret)
2948 return ret;
2949
Al Viro1c1c8742013-12-11 23:07:51 -05002950 if (get_user(count, &argp->dest_count)) {
Mark Fasheh416161d2013-08-06 11:42:51 -07002951 ret = -EFAULT;
2952 goto out;
2953 }
2954
Al Viro1c1c8742013-12-11 23:07:51 -05002955 size = offsetof(struct btrfs_ioctl_same_args __user, info[count]);
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07002956
Al Viro1c1c8742013-12-11 23:07:51 -05002957 same = memdup_user(argp, size);
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07002958
Geyslan G. Bem229eed42013-10-14 12:18:25 -03002959 if (IS_ERR(same)) {
2960 ret = PTR_ERR(same);
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07002961 goto out;
2962 }
2963
2964 off = same->logical_offset;
2965 len = same->length;
Mark Fasheh416161d2013-08-06 11:42:51 -07002966
2967 /*
2968 * Limit the total length we will dedupe for each operation.
2969 * This is intended to bound the total time spent in this
2970 * ioctl to something sane.
2971 */
2972 if (len > BTRFS_MAX_DEDUPE_LEN)
2973 len = BTRFS_MAX_DEDUPE_LEN;
2974
2975 if (WARN_ON_ONCE(bs < PAGE_CACHE_SIZE)) {
2976 /*
2977 * Btrfs does not support blocksize < page_size. As a
2978 * result, btrfs_cmp_data() won't correctly handle
2979 * this situation without an update.
2980 */
2981 ret = -EINVAL;
2982 goto out;
2983 }
2984
2985 ret = -EISDIR;
2986 if (S_ISDIR(src->i_mode))
2987 goto out;
2988
2989 ret = -EACCES;
2990 if (!S_ISREG(src->i_mode))
2991 goto out;
2992
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07002993 /* pre-format output fields to sane values */
Al Viro1c1c8742013-12-11 23:07:51 -05002994 for (i = 0; i < count; i++) {
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07002995 same->info[i].bytes_deduped = 0ULL;
2996 same->info[i].status = 0;
2997 }
2998
Al Viro1c1c8742013-12-11 23:07:51 -05002999 for (i = 0, info = same->info; i < count; i++, info++) {
3000 struct inode *dst;
3001 struct fd dst_file = fdget(info->fd);
3002 if (!dst_file.file) {
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003003 info->status = -EBADF;
Al Viro1c1c8742013-12-11 23:07:51 -05003004 continue;
Mark Fasheh416161d2013-08-06 11:42:51 -07003005 }
Al Viro1c1c8742013-12-11 23:07:51 -05003006 dst = file_inode(dst_file.file);
Mark Fasheh416161d2013-08-06 11:42:51 -07003007
Al Viro1c1c8742013-12-11 23:07:51 -05003008 if (!(is_admin || (dst_file.file->f_mode & FMODE_WRITE))) {
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003009 info->status = -EINVAL;
Al Viro1c1c8742013-12-11 23:07:51 -05003010 } else if (file->f_path.mnt != dst_file.file->f_path.mnt) {
3011 info->status = -EXDEV;
3012 } else if (S_ISDIR(dst->i_mode)) {
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003013 info->status = -EISDIR;
Al Viro1c1c8742013-12-11 23:07:51 -05003014 } else if (!S_ISREG(dst->i_mode)) {
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003015 info->status = -EACCES;
Al Viro1c1c8742013-12-11 23:07:51 -05003016 } else {
3017 info->status = btrfs_extent_same(src, off, len, dst,
3018 info->logical_offset);
3019 if (info->status == 0)
3020 info->bytes_deduped += len;
Mark Fasheh416161d2013-08-06 11:42:51 -07003021 }
Al Viro1c1c8742013-12-11 23:07:51 -05003022 fdput(dst_file);
Mark Fasheh416161d2013-08-06 11:42:51 -07003023 }
3024
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003025 ret = copy_to_user(argp, same, size);
3026 if (ret)
3027 ret = -EFAULT;
3028
Mark Fasheh416161d2013-08-06 11:42:51 -07003029out:
3030 mnt_drop_write_file(file);
3031 return ret;
3032}
3033
Josef Bacikfcebe452014-05-13 17:30:47 -07003034/* Helper to check and see if this root currently has a ref on the given disk
3035 * bytenr. If it does then we need to update the quota for this root. This
3036 * doesn't do anything if quotas aren't enabled.
3037 */
3038static int check_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
3039 u64 disko)
3040{
3041 struct seq_list tree_mod_seq_elem = {};
3042 struct ulist *roots;
3043 struct ulist_iterator uiter;
3044 struct ulist_node *root_node = NULL;
3045 int ret;
3046
3047 if (!root->fs_info->quota_enabled)
3048 return 1;
3049
3050 btrfs_get_tree_mod_seq(root->fs_info, &tree_mod_seq_elem);
3051 ret = btrfs_find_all_roots(trans, root->fs_info, disko,
3052 tree_mod_seq_elem.seq, &roots);
3053 if (ret < 0)
3054 goto out;
3055 ret = 0;
3056 ULIST_ITER_INIT(&uiter);
3057 while ((root_node = ulist_next(roots, &uiter))) {
3058 if (root_node->val == root->objectid) {
3059 ret = 1;
3060 break;
3061 }
3062 }
3063 ulist_free(roots);
3064out:
3065 btrfs_put_tree_mod_seq(root->fs_info, &tree_mod_seq_elem);
3066 return ret;
3067}
3068
Filipe Mananaf82a9902014-06-01 01:50:28 +01003069static int clone_finish_inode_update(struct btrfs_trans_handle *trans,
3070 struct inode *inode,
3071 u64 endoff,
3072 const u64 destoff,
3073 const u64 olen)
3074{
3075 struct btrfs_root *root = BTRFS_I(inode)->root;
3076 int ret;
3077
3078 inode_inc_iversion(inode);
3079 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
3080 /*
3081 * We round up to the block size at eof when determining which
3082 * extents to clone above, but shouldn't round up the file size.
3083 */
3084 if (endoff > destoff + olen)
3085 endoff = destoff + olen;
3086 if (endoff > inode->i_size)
3087 btrfs_i_size_write(inode, endoff);
3088
3089 ret = btrfs_update_inode(trans, root, inode);
3090 if (ret) {
3091 btrfs_abort_transaction(trans, root, ret);
3092 btrfs_end_transaction(trans, root);
3093 goto out;
3094 }
3095 ret = btrfs_end_transaction(trans, root);
3096out:
3097 return ret;
3098}
3099
Filipe Manana7ffbb592014-06-09 03:48:05 +01003100static void clone_update_extent_map(struct inode *inode,
3101 const struct btrfs_trans_handle *trans,
3102 const struct btrfs_path *path,
3103 struct btrfs_file_extent_item *fi,
3104 const u64 hole_offset,
3105 const u64 hole_len)
3106{
3107 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
3108 struct extent_map *em;
3109 int ret;
3110
3111 em = alloc_extent_map();
3112 if (!em) {
3113 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3114 &BTRFS_I(inode)->runtime_flags);
3115 return;
3116 }
3117
3118 if (fi) {
3119 btrfs_extent_item_to_extent_map(inode, path, fi, false, em);
3120 em->generation = -1;
3121 if (btrfs_file_extent_type(path->nodes[0], fi) ==
3122 BTRFS_FILE_EXTENT_INLINE)
3123 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3124 &BTRFS_I(inode)->runtime_flags);
3125 } else {
3126 em->start = hole_offset;
3127 em->len = hole_len;
3128 em->ram_bytes = em->len;
3129 em->orig_start = hole_offset;
3130 em->block_start = EXTENT_MAP_HOLE;
3131 em->block_len = 0;
3132 em->orig_block_len = 0;
3133 em->compress_type = BTRFS_COMPRESS_NONE;
3134 em->generation = trans->transid;
3135 }
3136
3137 while (1) {
3138 write_lock(&em_tree->lock);
3139 ret = add_extent_mapping(em_tree, em, 1);
3140 write_unlock(&em_tree->lock);
3141 if (ret != -EEXIST) {
3142 free_extent_map(em);
3143 break;
3144 }
3145 btrfs_drop_extent_cache(inode, em->start,
3146 em->start + em->len - 1, 0);
3147 }
3148
3149 if (unlikely(ret))
3150 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3151 &BTRFS_I(inode)->runtime_flags);
3152}
3153
Mark Fasheh32b7c682013-08-06 11:42:49 -07003154/**
3155 * btrfs_clone() - clone a range from inode file to another
3156 *
3157 * @src: Inode to clone from
3158 * @inode: Inode to clone to
3159 * @off: Offset within source to start clone from
3160 * @olen: Original length, passed by user, of range to clone
3161 * @olen_aligned: Block-aligned value of olen, extent_same uses
3162 * identical values here
3163 * @destoff: Offset within @inode to start clone
3164 */
3165static int btrfs_clone(struct inode *src, struct inode *inode,
Filipe Mananaf82a9902014-06-01 01:50:28 +01003166 const u64 off, const u64 olen, const u64 olen_aligned,
3167 const u64 destoff)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003168{
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003169 struct btrfs_root *root = BTRFS_I(inode)->root;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003170 struct btrfs_path *path = NULL;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003171 struct extent_buffer *leaf;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003172 struct btrfs_trans_handle *trans;
3173 char *buf = NULL;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003174 struct btrfs_key key;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003175 u32 nritems;
3176 int slot;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003177 int ret;
Josef Bacikfcebe452014-05-13 17:30:47 -07003178 int no_quota;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003179 const u64 len = olen_aligned;
Josef Bacikfcebe452014-05-13 17:30:47 -07003180 u64 last_disko = 0;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003181 u64 last_dest_end = destoff;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003182
3183 ret = -ENOMEM;
3184 buf = vmalloc(btrfs_level_size(root, 0));
3185 if (!buf)
Mark Fasheh32b7c682013-08-06 11:42:49 -07003186 return ret;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003187
3188 path = btrfs_alloc_path();
3189 if (!path) {
3190 vfree(buf);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003191 return ret;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003192 }
Mark Fasheh32b7c682013-08-06 11:42:49 -07003193
Yan Zhengae01a0a2008-08-04 23:23:47 -04003194 path->reada = 2;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003195 /* clone data */
Li Zefan33345d012011-04-20 10:31:50 +08003196 key.objectid = btrfs_ino(src);
Yan Zhengae01a0a2008-08-04 23:23:47 -04003197 key.type = BTRFS_EXTENT_DATA_KEY;
Filipe Manana2c463822014-05-31 02:31:05 +01003198 key.offset = off;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003199
3200 while (1) {
3201 /*
3202 * note the key will change type as we walk through the
3203 * tree.
3204 */
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003205 path->leave_spinning = 1;
David Sterba362a20c2011-08-01 18:11:57 +02003206 ret = btrfs_search_slot(NULL, BTRFS_I(src)->root, &key, path,
3207 0, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003208 if (ret < 0)
3209 goto out;
Filipe Manana2c463822014-05-31 02:31:05 +01003210 /*
3211 * First search, if no extent item that starts at offset off was
3212 * found but the previous item is an extent item, it's possible
3213 * it might overlap our target range, therefore process it.
3214 */
3215 if (key.offset == off && ret > 0 && path->slots[0] > 0) {
3216 btrfs_item_key_to_cpu(path->nodes[0], &key,
3217 path->slots[0] - 1);
3218 if (key.type == BTRFS_EXTENT_DATA_KEY)
3219 path->slots[0]--;
3220 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003221
Yan Zhengae01a0a2008-08-04 23:23:47 -04003222 nritems = btrfs_header_nritems(path->nodes[0]);
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003223process_slot:
Josef Bacikfcebe452014-05-13 17:30:47 -07003224 no_quota = 1;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003225 if (path->slots[0] >= nritems) {
David Sterba362a20c2011-08-01 18:11:57 +02003226 ret = btrfs_next_leaf(BTRFS_I(src)->root, path);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003227 if (ret < 0)
3228 goto out;
3229 if (ret > 0)
3230 break;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003231 nritems = btrfs_header_nritems(path->nodes[0]);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003232 }
3233 leaf = path->nodes[0];
3234 slot = path->slots[0];
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003235
Yan Zhengae01a0a2008-08-04 23:23:47 -04003236 btrfs_item_key_to_cpu(leaf, &key, slot);
Chris Masond20f7042008-12-08 16:58:54 -05003237 if (btrfs_key_type(&key) > BTRFS_EXTENT_DATA_KEY ||
Li Zefan33345d012011-04-20 10:31:50 +08003238 key.objectid != btrfs_ino(src))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003239 break;
3240
Sage Weilc5c9cd42008-11-12 14:32:25 -05003241 if (btrfs_key_type(&key) == BTRFS_EXTENT_DATA_KEY) {
3242 struct btrfs_file_extent_item *extent;
3243 int type;
Zheng Yan31840ae2008-09-23 13:14:14 -04003244 u32 size;
3245 struct btrfs_key new_key;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003246 u64 disko = 0, diskl = 0;
3247 u64 datao = 0, datal = 0;
3248 u8 comp;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003249 u64 drop_start;
Zheng Yan31840ae2008-09-23 13:14:14 -04003250
Sage Weilc5c9cd42008-11-12 14:32:25 -05003251 extent = btrfs_item_ptr(leaf, slot,
3252 struct btrfs_file_extent_item);
3253 comp = btrfs_file_extent_compression(leaf, extent);
3254 type = btrfs_file_extent_type(leaf, extent);
Chris Masonc8a894d2009-06-27 21:07:03 -04003255 if (type == BTRFS_FILE_EXTENT_REG ||
3256 type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masond3977122009-01-05 21:25:51 -05003257 disko = btrfs_file_extent_disk_bytenr(leaf,
3258 extent);
3259 diskl = btrfs_file_extent_disk_num_bytes(leaf,
3260 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003261 datao = btrfs_file_extent_offset(leaf, extent);
Chris Masond3977122009-01-05 21:25:51 -05003262 datal = btrfs_file_extent_num_bytes(leaf,
3263 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003264 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
3265 /* take upper bound, may be compressed */
3266 datal = btrfs_file_extent_ram_bytes(leaf,
3267 extent);
3268 }
Zheng Yan31840ae2008-09-23 13:14:14 -04003269
Filipe Manana2c463822014-05-31 02:31:05 +01003270 /*
3271 * The first search might have left us at an extent
3272 * item that ends before our target range's start, can
3273 * happen if we have holes and NO_HOLES feature enabled.
3274 */
3275 if (key.offset + datal <= off) {
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003276 path->slots[0]++;
3277 goto process_slot;
Filipe Manana2c463822014-05-31 02:31:05 +01003278 } else if (key.offset >= off + len) {
3279 break;
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003280 }
3281
3282 size = btrfs_item_size_nr(leaf, slot);
3283 read_extent_buffer(leaf, buf,
3284 btrfs_item_ptr_offset(leaf, slot),
3285 size);
3286
3287 btrfs_release_path(path);
3288 path->leave_spinning = 0;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003289
Zheng Yan31840ae2008-09-23 13:14:14 -04003290 memcpy(&new_key, &key, sizeof(new_key));
Li Zefan33345d012011-04-20 10:31:50 +08003291 new_key.objectid = btrfs_ino(inode);
Li Zefan4d728ec2011-01-26 14:10:43 +08003292 if (off <= key.offset)
3293 new_key.offset = key.offset + destoff - off;
3294 else
3295 new_key.offset = destoff;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003296
Sage Weilb6f34092011-09-20 14:48:51 -04003297 /*
Filipe Mananaf82a9902014-06-01 01:50:28 +01003298 * Deal with a hole that doesn't have an extent item
3299 * that represents it (NO_HOLES feature enabled).
3300 * This hole is either in the middle of the cloning
3301 * range or at the beginning (fully overlaps it or
3302 * partially overlaps it).
3303 */
3304 if (new_key.offset != last_dest_end)
3305 drop_start = last_dest_end;
3306 else
3307 drop_start = new_key.offset;
3308
3309 /*
Sage Weilb6f34092011-09-20 14:48:51 -04003310 * 1 - adjusting old extent (we may have to split it)
3311 * 1 - add new extent
3312 * 1 - inode update
3313 */
3314 trans = btrfs_start_transaction(root, 3);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003315 if (IS_ERR(trans)) {
3316 ret = PTR_ERR(trans);
3317 goto out;
3318 }
3319
Chris Masonc8a894d2009-06-27 21:07:03 -04003320 if (type == BTRFS_FILE_EXTENT_REG ||
3321 type == BTRFS_FILE_EXTENT_PREALLOC) {
Li Zefand72c0842011-09-11 10:52:25 -04003322 /*
3323 * a | --- range to clone ---| b
3324 * | ------------- extent ------------- |
3325 */
3326
Antonio Ospite93915582014-06-04 14:03:48 +02003327 /* subtract range b */
Li Zefand72c0842011-09-11 10:52:25 -04003328 if (key.offset + datal > off + len)
3329 datal = off + len - key.offset;
3330
Antonio Ospite93915582014-06-04 14:03:48 +02003331 /* subtract range a */
Yan, Zhenga22285a2010-05-16 10:48:46 -04003332 if (off > key.offset) {
3333 datao += off - key.offset;
3334 datal -= off - key.offset;
3335 }
3336
Josef Bacik5dc562c2012-08-17 13:14:17 -04003337 ret = btrfs_drop_extents(trans, root, inode,
Filipe Mananaf82a9902014-06-01 01:50:28 +01003338 drop_start,
Yan, Zhenga22285a2010-05-16 10:48:46 -04003339 new_key.offset + datal,
Josef Bacik26714852012-08-29 12:24:27 -04003340 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003341 if (ret) {
David Sterba3f9e3df2014-04-15 18:50:17 +02003342 if (ret != -EOPNOTSUPP)
Liu Bo00fdf132014-03-10 18:56:07 +08003343 btrfs_abort_transaction(trans,
3344 root, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003345 btrfs_end_transaction(trans, root);
3346 goto out;
3347 }
Yan, Zhenga22285a2010-05-16 10:48:46 -04003348
Sage Weilc5c9cd42008-11-12 14:32:25 -05003349 ret = btrfs_insert_empty_item(trans, root, path,
3350 &new_key, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003351 if (ret) {
3352 btrfs_abort_transaction(trans, root,
3353 ret);
3354 btrfs_end_transaction(trans, root);
3355 goto out;
3356 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05003357
3358 leaf = path->nodes[0];
3359 slot = path->slots[0];
3360 write_extent_buffer(leaf, buf,
3361 btrfs_item_ptr_offset(leaf, slot),
3362 size);
3363
3364 extent = btrfs_item_ptr(leaf, slot,
3365 struct btrfs_file_extent_item);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003366
Sage Weilc5c9cd42008-11-12 14:32:25 -05003367 /* disko == 0 means it's a hole */
3368 if (!disko)
3369 datao = 0;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003370
3371 btrfs_set_file_extent_offset(leaf, extent,
3372 datao);
3373 btrfs_set_file_extent_num_bytes(leaf, extent,
3374 datal);
Josef Bacikfcebe452014-05-13 17:30:47 -07003375
3376 /*
3377 * We need to look up the roots that point at
3378 * this bytenr and see if the new root does. If
3379 * it does not we need to make sure we update
3380 * quotas appropriately.
3381 */
3382 if (disko && root != BTRFS_I(src)->root &&
3383 disko != last_disko) {
3384 no_quota = check_ref(trans, root,
3385 disko);
3386 if (no_quota < 0) {
3387 btrfs_abort_transaction(trans,
3388 root,
3389 ret);
3390 btrfs_end_transaction(trans,
3391 root);
3392 ret = no_quota;
3393 goto out;
3394 }
3395 }
3396
Sage Weilc5c9cd42008-11-12 14:32:25 -05003397 if (disko) {
3398 inode_add_bytes(inode, datal);
3399 ret = btrfs_inc_extent_ref(trans, root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003400 disko, diskl, 0,
3401 root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08003402 btrfs_ino(inode),
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003403 new_key.offset - datao,
Josef Bacikfcebe452014-05-13 17:30:47 -07003404 no_quota);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003405 if (ret) {
3406 btrfs_abort_transaction(trans,
3407 root,
3408 ret);
3409 btrfs_end_transaction(trans,
3410 root);
3411 goto out;
3412
3413 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05003414 }
3415 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
3416 u64 skip = 0;
3417 u64 trim = 0;
Liu Bod3ecfcd2014-05-09 10:01:02 +08003418 u64 aligned_end = 0;
3419
Sage Weilc5c9cd42008-11-12 14:32:25 -05003420 if (off > key.offset) {
3421 skip = off - key.offset;
3422 new_key.offset += skip;
3423 }
Chris Masond3977122009-01-05 21:25:51 -05003424
Liu Boaa42ffd2012-09-18 03:52:23 -06003425 if (key.offset + datal > off + len)
3426 trim = key.offset + datal - (off + len);
Chris Masond3977122009-01-05 21:25:51 -05003427
Sage Weilc5c9cd42008-11-12 14:32:25 -05003428 if (comp && (skip || trim)) {
Sage Weilc5c9cd42008-11-12 14:32:25 -05003429 ret = -EINVAL;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003430 btrfs_end_transaction(trans, root);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003431 goto out;
3432 }
3433 size -= skip + trim;
3434 datal -= skip + trim;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003435
Liu Bod3ecfcd2014-05-09 10:01:02 +08003436 aligned_end = ALIGN(new_key.offset + datal,
3437 root->sectorsize);
Josef Bacik5dc562c2012-08-17 13:14:17 -04003438 ret = btrfs_drop_extents(trans, root, inode,
Filipe Mananaf82a9902014-06-01 01:50:28 +01003439 drop_start,
Liu Bod3ecfcd2014-05-09 10:01:02 +08003440 aligned_end,
Josef Bacik26714852012-08-29 12:24:27 -04003441 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003442 if (ret) {
David Sterba3f9e3df2014-04-15 18:50:17 +02003443 if (ret != -EOPNOTSUPP)
Chris Mason3a29bc02014-04-07 07:10:40 -07003444 btrfs_abort_transaction(trans,
3445 root, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003446 btrfs_end_transaction(trans, root);
3447 goto out;
3448 }
Yan, Zhenga22285a2010-05-16 10:48:46 -04003449
Sage Weilc5c9cd42008-11-12 14:32:25 -05003450 ret = btrfs_insert_empty_item(trans, root, path,
3451 &new_key, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003452 if (ret) {
3453 btrfs_abort_transaction(trans, root,
3454 ret);
3455 btrfs_end_transaction(trans, root);
3456 goto out;
3457 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05003458
3459 if (skip) {
Chris Masond3977122009-01-05 21:25:51 -05003460 u32 start =
3461 btrfs_file_extent_calc_inline_size(0);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003462 memmove(buf+start, buf+start+skip,
3463 datal);
3464 }
3465
3466 leaf = path->nodes[0];
3467 slot = path->slots[0];
3468 write_extent_buffer(leaf, buf,
3469 btrfs_item_ptr_offset(leaf, slot),
3470 size);
3471 inode_add_bytes(inode, datal);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003472 extent = btrfs_item_ptr(leaf, slot,
3473 struct btrfs_file_extent_item);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003474 }
3475
Filipe Manana7ffbb592014-06-09 03:48:05 +01003476 /* If we have an implicit hole (NO_HOLES feature). */
3477 if (drop_start < new_key.offset)
3478 clone_update_extent_map(inode, trans,
3479 path, NULL, drop_start,
3480 new_key.offset - drop_start);
3481
3482 clone_update_extent_map(inode, trans, path,
3483 extent, 0, 0);
3484
Sage Weilc5c9cd42008-11-12 14:32:25 -05003485 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02003486 btrfs_release_path(path);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003487
Filipe Mananaf82a9902014-06-01 01:50:28 +01003488 last_dest_end = new_key.offset + datal;
3489 ret = clone_finish_inode_update(trans, inode,
3490 last_dest_end,
3491 destoff, olen);
3492 if (ret)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003493 goto out;
Filipe Manana2c463822014-05-31 02:31:05 +01003494 if (new_key.offset + datal >= destoff + len)
3495 break;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003496 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003497 btrfs_release_path(path);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003498 key.offset++;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003499 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003500 ret = 0;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003501
Filipe Mananaf82a9902014-06-01 01:50:28 +01003502 if (last_dest_end < destoff + len) {
3503 /*
3504 * We have an implicit hole (NO_HOLES feature is enabled) that
3505 * fully or partially overlaps our cloning range at its end.
3506 */
3507 btrfs_release_path(path);
3508
3509 /*
3510 * 1 - remove extent(s)
3511 * 1 - inode update
3512 */
3513 trans = btrfs_start_transaction(root, 2);
3514 if (IS_ERR(trans)) {
3515 ret = PTR_ERR(trans);
3516 goto out;
3517 }
3518 ret = btrfs_drop_extents(trans, root, inode,
3519 last_dest_end, destoff + len, 1);
3520 if (ret) {
3521 if (ret != -EOPNOTSUPP)
3522 btrfs_abort_transaction(trans, root, ret);
3523 btrfs_end_transaction(trans, root);
3524 goto out;
3525 }
3526 ret = clone_finish_inode_update(trans, inode, destoff + len,
3527 destoff, olen);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003528 if (ret)
3529 goto out;
3530 clone_update_extent_map(inode, trans, path, NULL, last_dest_end,
3531 destoff + len - last_dest_end);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003532 }
3533
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003534out:
Mark Fasheh32b7c682013-08-06 11:42:49 -07003535 btrfs_free_path(path);
3536 vfree(buf);
3537 return ret;
3538}
3539
3540static noinline long btrfs_ioctl_clone(struct file *file, unsigned long srcfd,
3541 u64 off, u64 olen, u64 destoff)
3542{
Al Viro54563d42013-09-01 15:57:51 -04003543 struct inode *inode = file_inode(file);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003544 struct btrfs_root *root = BTRFS_I(inode)->root;
3545 struct fd src_file;
3546 struct inode *src;
3547 int ret;
3548 u64 len = olen;
3549 u64 bs = root->fs_info->sb->s_blocksize;
3550 int same_inode = 0;
3551
3552 /*
3553 * TODO:
3554 * - split compressed inline extents. annoying: we need to
3555 * decompress into destination's address_space (the file offset
3556 * may change, so source mapping won't do), then recompress (or
3557 * otherwise reinsert) a subrange.
Liu Bo00fdf132014-03-10 18:56:07 +08003558 *
3559 * - split destination inode's inline extents. The inline extents can
3560 * be either compressed or non-compressed.
Mark Fasheh32b7c682013-08-06 11:42:49 -07003561 */
3562
3563 /* the destination must be opened for writing */
3564 if (!(file->f_mode & FMODE_WRITE) || (file->f_flags & O_APPEND))
3565 return -EINVAL;
3566
3567 if (btrfs_root_readonly(root))
3568 return -EROFS;
3569
3570 ret = mnt_want_write_file(file);
3571 if (ret)
3572 return ret;
3573
3574 src_file = fdget(srcfd);
3575 if (!src_file.file) {
3576 ret = -EBADF;
3577 goto out_drop_write;
3578 }
3579
3580 ret = -EXDEV;
3581 if (src_file.file->f_path.mnt != file->f_path.mnt)
3582 goto out_fput;
3583
3584 src = file_inode(src_file.file);
3585
3586 ret = -EINVAL;
3587 if (src == inode)
3588 same_inode = 1;
3589
3590 /* the src must be open for reading */
3591 if (!(src_file.file->f_mode & FMODE_READ))
3592 goto out_fput;
3593
3594 /* don't make the dst file partly checksummed */
3595 if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
3596 (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM))
3597 goto out_fput;
3598
3599 ret = -EISDIR;
3600 if (S_ISDIR(src->i_mode) || S_ISDIR(inode->i_mode))
3601 goto out_fput;
3602
3603 ret = -EXDEV;
3604 if (src->i_sb != inode->i_sb)
3605 goto out_fput;
3606
3607 if (!same_inode) {
3608 if (inode < src) {
3609 mutex_lock_nested(&inode->i_mutex, I_MUTEX_PARENT);
3610 mutex_lock_nested(&src->i_mutex, I_MUTEX_CHILD);
3611 } else {
3612 mutex_lock_nested(&src->i_mutex, I_MUTEX_PARENT);
3613 mutex_lock_nested(&inode->i_mutex, I_MUTEX_CHILD);
3614 }
3615 } else {
3616 mutex_lock(&src->i_mutex);
3617 }
3618
3619 /* determine range to clone */
3620 ret = -EINVAL;
3621 if (off + len > src->i_size || off + len < off)
3622 goto out_unlock;
3623 if (len == 0)
3624 olen = len = src->i_size - off;
3625 /* if we extend to eof, continue to block boundary */
3626 if (off + len == src->i_size)
3627 len = ALIGN(src->i_size, bs) - off;
3628
3629 /* verify the end result is block aligned */
3630 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs) ||
3631 !IS_ALIGNED(destoff, bs))
3632 goto out_unlock;
3633
3634 /* verify if ranges are overlapped within the same file */
3635 if (same_inode) {
3636 if (destoff + len > off && destoff < off + len)
3637 goto out_unlock;
3638 }
3639
3640 if (destoff > inode->i_size) {
3641 ret = btrfs_cont_expand(inode, inode->i_size, destoff);
3642 if (ret)
3643 goto out_unlock;
3644 }
3645
Filipe Mananac125b8b2014-05-23 05:03:34 +01003646 /*
3647 * Lock the target range too. Right after we replace the file extent
3648 * items in the fs tree (which now point to the cloned data), we might
3649 * have a worker replace them with extent items relative to a write
3650 * operation that was issued before this clone operation (i.e. confront
3651 * with inode.c:btrfs_finish_ordered_io).
3652 */
3653 if (same_inode) {
3654 u64 lock_start = min_t(u64, off, destoff);
3655 u64 lock_len = max_t(u64, off, destoff) + len - lock_start;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003656
Filipe Mananac125b8b2014-05-23 05:03:34 +01003657 lock_extent_range(src, lock_start, lock_len);
3658 } else {
3659 lock_extent_range(src, off, len);
3660 lock_extent_range(inode, destoff, len);
3661 }
Mark Fasheh32b7c682013-08-06 11:42:49 -07003662
3663 ret = btrfs_clone(src, inode, off, olen, len, destoff);
3664
Filipe Mananac125b8b2014-05-23 05:03:34 +01003665 if (same_inode) {
3666 u64 lock_start = min_t(u64, off, destoff);
3667 u64 lock_end = max_t(u64, off, destoff) + len - 1;
3668
3669 unlock_extent(&BTRFS_I(src)->io_tree, lock_start, lock_end);
3670 } else {
3671 unlock_extent(&BTRFS_I(src)->io_tree, off, off + len - 1);
3672 unlock_extent(&BTRFS_I(inode)->io_tree, destoff,
3673 destoff + len - 1);
3674 }
3675 /*
3676 * Truncate page cache pages so that future reads will see the cloned
3677 * data immediately and not the previous data.
3678 */
3679 truncate_inode_pages_range(&inode->i_data, destoff,
3680 PAGE_CACHE_ALIGN(destoff + len) - 1);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003681out_unlock:
Filipe David Borba Mananac57c2b32014-01-11 21:31:25 +00003682 if (!same_inode) {
3683 if (inode < src) {
3684 mutex_unlock(&src->i_mutex);
3685 mutex_unlock(&inode->i_mutex);
3686 } else {
3687 mutex_unlock(&inode->i_mutex);
3688 mutex_unlock(&src->i_mutex);
3689 }
3690 } else {
3691 mutex_unlock(&src->i_mutex);
3692 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003693out_fput:
Al Viro2903ff02012-08-28 12:52:22 -04003694 fdput(src_file);
Yan Zhengab67b7c2008-12-19 10:58:39 -05003695out_drop_write:
Al Viro2a79f172011-12-09 08:06:57 -05003696 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003697 return ret;
3698}
3699
Christoph Hellwig7a865e82008-12-02 09:52:24 -05003700static long btrfs_ioctl_clone_range(struct file *file, void __user *argp)
Sage Weilc5c9cd42008-11-12 14:32:25 -05003701{
3702 struct btrfs_ioctl_clone_range_args args;
3703
Christoph Hellwig7a865e82008-12-02 09:52:24 -05003704 if (copy_from_user(&args, argp, sizeof(args)))
Sage Weilc5c9cd42008-11-12 14:32:25 -05003705 return -EFAULT;
3706 return btrfs_ioctl_clone(file, args.src_fd, args.src_offset,
3707 args.src_length, args.dest_offset);
3708}
3709
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003710/*
3711 * there are many ways the trans_start and trans_end ioctls can lead
3712 * to deadlocks. They should only be used by applications that
3713 * basically own the machine, and have a very in depth understanding
3714 * of all the possible deadlocks and enospc problems.
3715 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05003716static long btrfs_ioctl_trans_start(struct file *file)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003717{
Al Viro496ad9a2013-01-23 17:07:38 -05003718 struct inode *inode = file_inode(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003719 struct btrfs_root *root = BTRFS_I(inode)->root;
3720 struct btrfs_trans_handle *trans;
Sage Weil1ab86ae2009-09-29 18:38:44 -04003721 int ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003722
Sage Weil1ab86ae2009-09-29 18:38:44 -04003723 ret = -EPERM;
Christoph Hellwigdf5b5522008-06-11 21:53:58 -04003724 if (!capable(CAP_SYS_ADMIN))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003725 goto out;
Sage Weil1ab86ae2009-09-29 18:38:44 -04003726
3727 ret = -EINPROGRESS;
3728 if (file->private_data)
3729 goto out;
Sage Weil9ca9ee02008-08-04 10:41:27 -04003730
Li Zefanb83cc962010-12-20 16:04:08 +08003731 ret = -EROFS;
3732 if (btrfs_root_readonly(root))
3733 goto out;
3734
Al Viroa561be72011-11-23 11:57:51 -05003735 ret = mnt_want_write_file(file);
Yan Zhengc146afa2008-11-12 14:34:12 -05003736 if (ret)
3737 goto out;
3738
Josef Bacika4abeea2011-04-11 17:25:13 -04003739 atomic_inc(&root->fs_info->open_ioctl_trans);
Sage Weil9ca9ee02008-08-04 10:41:27 -04003740
Sage Weil1ab86ae2009-09-29 18:38:44 -04003741 ret = -ENOMEM;
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003742 trans = btrfs_start_ioctl_transaction(root);
Tsutomu Itohabd30bb2011-01-24 00:57:10 +00003743 if (IS_ERR(trans))
Sage Weil1ab86ae2009-09-29 18:38:44 -04003744 goto out_drop;
3745
3746 file->private_data = trans;
3747 return 0;
3748
3749out_drop:
Josef Bacika4abeea2011-04-11 17:25:13 -04003750 atomic_dec(&root->fs_info->open_ioctl_trans);
Al Viro2a79f172011-12-09 08:06:57 -05003751 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003752out:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003753 return ret;
3754}
3755
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003756static long btrfs_ioctl_default_subvol(struct file *file, void __user *argp)
3757{
Al Viro496ad9a2013-01-23 17:07:38 -05003758 struct inode *inode = file_inode(file);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003759 struct btrfs_root *root = BTRFS_I(inode)->root;
3760 struct btrfs_root *new_root;
3761 struct btrfs_dir_item *di;
3762 struct btrfs_trans_handle *trans;
3763 struct btrfs_path *path;
3764 struct btrfs_key location;
3765 struct btrfs_disk_key disk_key;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003766 u64 objectid = 0;
3767 u64 dir_id;
Miao Xie3c04ce02012-11-26 08:43:07 +00003768 int ret;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003769
3770 if (!capable(CAP_SYS_ADMIN))
3771 return -EPERM;
3772
Miao Xie3c04ce02012-11-26 08:43:07 +00003773 ret = mnt_want_write_file(file);
3774 if (ret)
3775 return ret;
3776
3777 if (copy_from_user(&objectid, argp, sizeof(objectid))) {
3778 ret = -EFAULT;
3779 goto out;
3780 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003781
3782 if (!objectid)
chandan1cecf572013-09-13 19:34:10 +05303783 objectid = BTRFS_FS_TREE_OBJECTID;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003784
3785 location.objectid = objectid;
3786 location.type = BTRFS_ROOT_ITEM_KEY;
3787 location.offset = (u64)-1;
3788
3789 new_root = btrfs_read_fs_root_no_name(root->fs_info, &location);
Miao Xie3c04ce02012-11-26 08:43:07 +00003790 if (IS_ERR(new_root)) {
3791 ret = PTR_ERR(new_root);
3792 goto out;
3793 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003794
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003795 path = btrfs_alloc_path();
Miao Xie3c04ce02012-11-26 08:43:07 +00003796 if (!path) {
3797 ret = -ENOMEM;
3798 goto out;
3799 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003800 path->leave_spinning = 1;
3801
3802 trans = btrfs_start_transaction(root, 1);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00003803 if (IS_ERR(trans)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003804 btrfs_free_path(path);
Miao Xie3c04ce02012-11-26 08:43:07 +00003805 ret = PTR_ERR(trans);
3806 goto out;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003807 }
3808
David Sterba6c417612011-04-13 15:41:04 +02003809 dir_id = btrfs_super_root_dir(root->fs_info->super_copy);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003810 di = btrfs_lookup_dir_item(trans, root->fs_info->tree_root, path,
3811 dir_id, "default", 7, 1);
Dan Carpentercf1e99a2010-05-29 09:47:24 +00003812 if (IS_ERR_OR_NULL(di)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003813 btrfs_free_path(path);
3814 btrfs_end_transaction(trans, root);
Frank Holtonefe120a2013-12-20 11:37:06 -05003815 btrfs_err(new_root->fs_info, "Umm, you don't have the default dir"
3816 "item, this isn't going to work");
Miao Xie3c04ce02012-11-26 08:43:07 +00003817 ret = -ENOENT;
3818 goto out;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003819 }
3820
3821 btrfs_cpu_key_to_disk(&disk_key, &new_root->root_key);
3822 btrfs_set_dir_item_key(path->nodes[0], di, &disk_key);
3823 btrfs_mark_buffer_dirty(path->nodes[0]);
3824 btrfs_free_path(path);
3825
Mitch Harder2b0ce2c2012-07-24 11:58:43 -06003826 btrfs_set_fs_incompat(root->fs_info, DEFAULT_SUBVOL);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003827 btrfs_end_transaction(trans, root);
Miao Xie3c04ce02012-11-26 08:43:07 +00003828out:
3829 mnt_drop_write_file(file);
3830 return ret;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003831}
3832
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02003833void btrfs_get_block_group_info(struct list_head *groups_list,
3834 struct btrfs_ioctl_space_info *space)
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003835{
3836 struct btrfs_block_group_cache *block_group;
3837
3838 space->total_bytes = 0;
3839 space->used_bytes = 0;
3840 space->flags = 0;
3841 list_for_each_entry(block_group, groups_list, list) {
3842 space->flags = block_group->flags;
3843 space->total_bytes += block_group->key.offset;
3844 space->used_bytes +=
3845 btrfs_block_group_used(&block_group->item);
3846 }
3847}
3848
Eric Sandeen48a3b632013-04-25 20:41:01 +00003849static long btrfs_ioctl_space_info(struct btrfs_root *root, void __user *arg)
Josef Bacik1406e432010-01-13 18:19:06 +00003850{
3851 struct btrfs_ioctl_space_args space_args;
3852 struct btrfs_ioctl_space_info space;
3853 struct btrfs_ioctl_space_info *dest;
Chris Mason7fde62b2010-03-16 15:40:10 -04003854 struct btrfs_ioctl_space_info *dest_orig;
Daniel J Blueman13f26962011-04-11 15:56:31 +00003855 struct btrfs_ioctl_space_info __user *user_dest;
Josef Bacik1406e432010-01-13 18:19:06 +00003856 struct btrfs_space_info *info;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003857 u64 types[] = {BTRFS_BLOCK_GROUP_DATA,
3858 BTRFS_BLOCK_GROUP_SYSTEM,
3859 BTRFS_BLOCK_GROUP_METADATA,
3860 BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA};
3861 int num_types = 4;
Chris Mason7fde62b2010-03-16 15:40:10 -04003862 int alloc_size;
Josef Bacik1406e432010-01-13 18:19:06 +00003863 int ret = 0;
Dan Rosenberg51788b12011-02-14 16:04:23 -05003864 u64 slot_count = 0;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003865 int i, c;
Josef Bacik1406e432010-01-13 18:19:06 +00003866
3867 if (copy_from_user(&space_args,
3868 (struct btrfs_ioctl_space_args __user *)arg,
3869 sizeof(space_args)))
3870 return -EFAULT;
3871
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003872 for (i = 0; i < num_types; i++) {
3873 struct btrfs_space_info *tmp;
3874
3875 info = NULL;
3876 rcu_read_lock();
3877 list_for_each_entry_rcu(tmp, &root->fs_info->space_info,
3878 list) {
3879 if (tmp->flags == types[i]) {
3880 info = tmp;
3881 break;
3882 }
3883 }
3884 rcu_read_unlock();
3885
3886 if (!info)
3887 continue;
3888
3889 down_read(&info->groups_sem);
3890 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
3891 if (!list_empty(&info->block_groups[c]))
3892 slot_count++;
3893 }
3894 up_read(&info->groups_sem);
3895 }
Josef Bacik1406e432010-01-13 18:19:06 +00003896
David Sterba36523e952014-02-07 14:34:12 +01003897 /*
3898 * Global block reserve, exported as a space_info
3899 */
3900 slot_count++;
3901
Chris Mason7fde62b2010-03-16 15:40:10 -04003902 /* space_slots == 0 means they are asking for a count */
3903 if (space_args.space_slots == 0) {
3904 space_args.total_spaces = slot_count;
3905 goto out;
3906 }
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003907
Dan Rosenberg51788b12011-02-14 16:04:23 -05003908 slot_count = min_t(u64, space_args.space_slots, slot_count);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003909
Chris Mason7fde62b2010-03-16 15:40:10 -04003910 alloc_size = sizeof(*dest) * slot_count;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003911
Chris Mason7fde62b2010-03-16 15:40:10 -04003912 /* we generally have at most 6 or so space infos, one for each raid
3913 * level. So, a whole page should be more than enough for everyone
3914 */
3915 if (alloc_size > PAGE_CACHE_SIZE)
3916 return -ENOMEM;
3917
3918 space_args.total_spaces = 0;
3919 dest = kmalloc(alloc_size, GFP_NOFS);
3920 if (!dest)
3921 return -ENOMEM;
3922 dest_orig = dest;
3923
3924 /* now we have a buffer to copy into */
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003925 for (i = 0; i < num_types; i++) {
3926 struct btrfs_space_info *tmp;
Chris Mason7fde62b2010-03-16 15:40:10 -04003927
Dan Rosenberg51788b12011-02-14 16:04:23 -05003928 if (!slot_count)
3929 break;
3930
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003931 info = NULL;
3932 rcu_read_lock();
3933 list_for_each_entry_rcu(tmp, &root->fs_info->space_info,
3934 list) {
3935 if (tmp->flags == types[i]) {
3936 info = tmp;
3937 break;
3938 }
3939 }
3940 rcu_read_unlock();
Chris Mason7fde62b2010-03-16 15:40:10 -04003941
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003942 if (!info)
3943 continue;
3944 down_read(&info->groups_sem);
3945 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
3946 if (!list_empty(&info->block_groups[c])) {
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02003947 btrfs_get_block_group_info(
3948 &info->block_groups[c], &space);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003949 memcpy(dest, &space, sizeof(space));
3950 dest++;
3951 space_args.total_spaces++;
Dan Rosenberg51788b12011-02-14 16:04:23 -05003952 slot_count--;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003953 }
Dan Rosenberg51788b12011-02-14 16:04:23 -05003954 if (!slot_count)
3955 break;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003956 }
3957 up_read(&info->groups_sem);
Josef Bacik1406e432010-01-13 18:19:06 +00003958 }
Josef Bacik1406e432010-01-13 18:19:06 +00003959
David Sterba36523e952014-02-07 14:34:12 +01003960 /*
3961 * Add global block reserve
3962 */
3963 if (slot_count) {
3964 struct btrfs_block_rsv *block_rsv = &root->fs_info->global_block_rsv;
3965
3966 spin_lock(&block_rsv->lock);
3967 space.total_bytes = block_rsv->size;
3968 space.used_bytes = block_rsv->size - block_rsv->reserved;
3969 spin_unlock(&block_rsv->lock);
3970 space.flags = BTRFS_SPACE_INFO_GLOBAL_RSV;
3971 memcpy(dest, &space, sizeof(space));
3972 space_args.total_spaces++;
3973 }
3974
Daniel J Blueman2eec6c82012-04-26 00:37:14 +08003975 user_dest = (struct btrfs_ioctl_space_info __user *)
Chris Mason7fde62b2010-03-16 15:40:10 -04003976 (arg + sizeof(struct btrfs_ioctl_space_args));
3977
3978 if (copy_to_user(user_dest, dest_orig, alloc_size))
3979 ret = -EFAULT;
3980
3981 kfree(dest_orig);
3982out:
3983 if (ret == 0 && copy_to_user(arg, &space_args, sizeof(space_args)))
Josef Bacik1406e432010-01-13 18:19:06 +00003984 ret = -EFAULT;
3985
3986 return ret;
3987}
3988
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003989/*
3990 * there are many ways the trans_start and trans_end ioctls can lead
3991 * to deadlocks. They should only be used by applications that
3992 * basically own the machine, and have a very in depth understanding
3993 * of all the possible deadlocks and enospc problems.
3994 */
3995long btrfs_ioctl_trans_end(struct file *file)
3996{
Al Viro496ad9a2013-01-23 17:07:38 -05003997 struct inode *inode = file_inode(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003998 struct btrfs_root *root = BTRFS_I(inode)->root;
3999 struct btrfs_trans_handle *trans;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004000
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004001 trans = file->private_data;
Sage Weil1ab86ae2009-09-29 18:38:44 -04004002 if (!trans)
4003 return -EINVAL;
Christoph Hellwigb2141072008-09-05 16:43:31 -04004004 file->private_data = NULL;
Sage Weil9ca9ee02008-08-04 10:41:27 -04004005
Sage Weil1ab86ae2009-09-29 18:38:44 -04004006 btrfs_end_transaction(trans, root);
4007
Josef Bacika4abeea2011-04-11 17:25:13 -04004008 atomic_dec(&root->fs_info->open_ioctl_trans);
Sage Weil9ca9ee02008-08-04 10:41:27 -04004009
Al Viro2a79f172011-12-09 08:06:57 -05004010 mnt_drop_write_file(file);
Sage Weil1ab86ae2009-09-29 18:38:44 -04004011 return 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004012}
4013
Miao Xie9a8c28b2012-11-26 08:40:43 +00004014static noinline long btrfs_ioctl_start_sync(struct btrfs_root *root,
4015 void __user *argp)
Sage Weil46204592010-10-29 15:41:32 -04004016{
Sage Weil46204592010-10-29 15:41:32 -04004017 struct btrfs_trans_handle *trans;
4018 u64 transid;
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004019 int ret;
Sage Weil46204592010-10-29 15:41:32 -04004020
Miao Xied4edf392013-02-20 09:17:06 +00004021 trans = btrfs_attach_transaction_barrier(root);
Miao Xieff7c1d32012-11-26 08:41:29 +00004022 if (IS_ERR(trans)) {
4023 if (PTR_ERR(trans) != -ENOENT)
4024 return PTR_ERR(trans);
4025
4026 /* No running transaction, don't bother */
4027 transid = root->fs_info->last_trans_committed;
4028 goto out;
4029 }
Sage Weil46204592010-10-29 15:41:32 -04004030 transid = trans->transid;
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004031 ret = btrfs_commit_transaction_async(trans, root, 0);
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00004032 if (ret) {
4033 btrfs_end_transaction(trans, root);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004034 return ret;
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00004035 }
Miao Xieff7c1d32012-11-26 08:41:29 +00004036out:
Sage Weil46204592010-10-29 15:41:32 -04004037 if (argp)
4038 if (copy_to_user(argp, &transid, sizeof(transid)))
4039 return -EFAULT;
4040 return 0;
4041}
4042
Miao Xie9a8c28b2012-11-26 08:40:43 +00004043static noinline long btrfs_ioctl_wait_sync(struct btrfs_root *root,
4044 void __user *argp)
Sage Weil46204592010-10-29 15:41:32 -04004045{
Sage Weil46204592010-10-29 15:41:32 -04004046 u64 transid;
4047
4048 if (argp) {
4049 if (copy_from_user(&transid, argp, sizeof(transid)))
4050 return -EFAULT;
4051 } else {
4052 transid = 0; /* current trans */
4053 }
4054 return btrfs_wait_for_commit(root, transid);
4055}
4056
Miao Xieb8e95482012-11-26 08:48:01 +00004057static long btrfs_ioctl_scrub(struct file *file, void __user *arg)
Jan Schmidt475f6382011-03-11 15:41:01 +01004058{
Al Viro496ad9a2013-01-23 17:07:38 -05004059 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Jan Schmidt475f6382011-03-11 15:41:01 +01004060 struct btrfs_ioctl_scrub_args *sa;
Miao Xieb8e95482012-11-26 08:48:01 +00004061 int ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01004062
4063 if (!capable(CAP_SYS_ADMIN))
4064 return -EPERM;
4065
4066 sa = memdup_user(arg, sizeof(*sa));
4067 if (IS_ERR(sa))
4068 return PTR_ERR(sa);
4069
Miao Xieb8e95482012-11-26 08:48:01 +00004070 if (!(sa->flags & BTRFS_SCRUB_READONLY)) {
4071 ret = mnt_want_write_file(file);
4072 if (ret)
4073 goto out;
4074 }
4075
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01004076 ret = btrfs_scrub_dev(root->fs_info, sa->devid, sa->start, sa->end,
Stefan Behrens63a212a2012-11-05 18:29:28 +01004077 &sa->progress, sa->flags & BTRFS_SCRUB_READONLY,
4078 0);
Jan Schmidt475f6382011-03-11 15:41:01 +01004079
4080 if (copy_to_user(arg, sa, sizeof(*sa)))
4081 ret = -EFAULT;
4082
Miao Xieb8e95482012-11-26 08:48:01 +00004083 if (!(sa->flags & BTRFS_SCRUB_READONLY))
4084 mnt_drop_write_file(file);
4085out:
Jan Schmidt475f6382011-03-11 15:41:01 +01004086 kfree(sa);
4087 return ret;
4088}
4089
4090static long btrfs_ioctl_scrub_cancel(struct btrfs_root *root, void __user *arg)
4091{
4092 if (!capable(CAP_SYS_ADMIN))
4093 return -EPERM;
4094
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01004095 return btrfs_scrub_cancel(root->fs_info);
Jan Schmidt475f6382011-03-11 15:41:01 +01004096}
4097
4098static long btrfs_ioctl_scrub_progress(struct btrfs_root *root,
4099 void __user *arg)
4100{
4101 struct btrfs_ioctl_scrub_args *sa;
4102 int ret;
4103
4104 if (!capable(CAP_SYS_ADMIN))
4105 return -EPERM;
4106
4107 sa = memdup_user(arg, sizeof(*sa));
4108 if (IS_ERR(sa))
4109 return PTR_ERR(sa);
4110
4111 ret = btrfs_scrub_progress(root, sa->devid, &sa->progress);
4112
4113 if (copy_to_user(arg, sa, sizeof(*sa)))
4114 ret = -EFAULT;
4115
4116 kfree(sa);
4117 return ret;
4118}
4119
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004120static long btrfs_ioctl_get_dev_stats(struct btrfs_root *root,
David Sterbab27f7c02012-06-22 06:30:39 -06004121 void __user *arg)
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004122{
4123 struct btrfs_ioctl_get_dev_stats *sa;
4124 int ret;
4125
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004126 sa = memdup_user(arg, sizeof(*sa));
4127 if (IS_ERR(sa))
4128 return PTR_ERR(sa);
4129
David Sterbab27f7c02012-06-22 06:30:39 -06004130 if ((sa->flags & BTRFS_DEV_STATS_RESET) && !capable(CAP_SYS_ADMIN)) {
4131 kfree(sa);
4132 return -EPERM;
4133 }
4134
4135 ret = btrfs_get_dev_stats(root, sa);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004136
4137 if (copy_to_user(arg, sa, sizeof(*sa)))
4138 ret = -EFAULT;
4139
4140 kfree(sa);
4141 return ret;
4142}
4143
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004144static long btrfs_ioctl_dev_replace(struct btrfs_root *root, void __user *arg)
4145{
4146 struct btrfs_ioctl_dev_replace_args *p;
4147 int ret;
4148
4149 if (!capable(CAP_SYS_ADMIN))
4150 return -EPERM;
4151
4152 p = memdup_user(arg, sizeof(*p));
4153 if (IS_ERR(p))
4154 return PTR_ERR(p);
4155
4156 switch (p->cmd) {
4157 case BTRFS_IOCTL_DEV_REPLACE_CMD_START:
Ilya Dryomovadfa97c2013-10-10 20:39:28 +03004158 if (root->fs_info->sb->s_flags & MS_RDONLY) {
4159 ret = -EROFS;
4160 goto out;
4161 }
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004162 if (atomic_xchg(
4163 &root->fs_info->mutually_exclusive_operation_running,
4164 1)) {
Anand Jaine57138b2013-08-21 11:44:48 +08004165 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004166 } else {
4167 ret = btrfs_dev_replace_start(root, p);
4168 atomic_set(
4169 &root->fs_info->mutually_exclusive_operation_running,
4170 0);
4171 }
4172 break;
4173 case BTRFS_IOCTL_DEV_REPLACE_CMD_STATUS:
4174 btrfs_dev_replace_status(root->fs_info, p);
4175 ret = 0;
4176 break;
4177 case BTRFS_IOCTL_DEV_REPLACE_CMD_CANCEL:
4178 ret = btrfs_dev_replace_cancel(root->fs_info, p);
4179 break;
4180 default:
4181 ret = -EINVAL;
4182 break;
4183 }
4184
4185 if (copy_to_user(arg, p, sizeof(*p)))
4186 ret = -EFAULT;
Ilya Dryomovadfa97c2013-10-10 20:39:28 +03004187out:
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004188 kfree(p);
4189 return ret;
4190}
4191
Jan Schmidtd7728c92011-07-07 16:48:38 +02004192static long btrfs_ioctl_ino_to_path(struct btrfs_root *root, void __user *arg)
4193{
4194 int ret = 0;
4195 int i;
Chris Mason740c3d22011-11-02 15:48:34 -04004196 u64 rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004197 int size;
Chris Mason806468f2011-11-06 03:07:10 -05004198 struct btrfs_ioctl_ino_path_args *ipa = NULL;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004199 struct inode_fs_paths *ipath = NULL;
4200 struct btrfs_path *path;
4201
Kusanagi Kouichi82b22ac2013-01-28 11:33:31 +00004202 if (!capable(CAP_DAC_READ_SEARCH))
Jan Schmidtd7728c92011-07-07 16:48:38 +02004203 return -EPERM;
4204
4205 path = btrfs_alloc_path();
4206 if (!path) {
4207 ret = -ENOMEM;
4208 goto out;
4209 }
4210
4211 ipa = memdup_user(arg, sizeof(*ipa));
4212 if (IS_ERR(ipa)) {
4213 ret = PTR_ERR(ipa);
4214 ipa = NULL;
4215 goto out;
4216 }
4217
4218 size = min_t(u32, ipa->size, 4096);
4219 ipath = init_ipath(size, root, path);
4220 if (IS_ERR(ipath)) {
4221 ret = PTR_ERR(ipath);
4222 ipath = NULL;
4223 goto out;
4224 }
4225
4226 ret = paths_from_inode(ipa->inum, ipath);
4227 if (ret < 0)
4228 goto out;
4229
4230 for (i = 0; i < ipath->fspath->elem_cnt; ++i) {
Jeff Mahoney745c4d82011-11-20 07:31:57 -05004231 rel_ptr = ipath->fspath->val[i] -
4232 (u64)(unsigned long)ipath->fspath->val;
Chris Mason740c3d22011-11-02 15:48:34 -04004233 ipath->fspath->val[i] = rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004234 }
4235
Jeff Mahoney745c4d82011-11-20 07:31:57 -05004236 ret = copy_to_user((void *)(unsigned long)ipa->fspath,
4237 (void *)(unsigned long)ipath->fspath, size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004238 if (ret) {
4239 ret = -EFAULT;
4240 goto out;
4241 }
4242
4243out:
4244 btrfs_free_path(path);
4245 free_ipath(ipath);
4246 kfree(ipa);
4247
4248 return ret;
4249}
4250
4251static int build_ino_list(u64 inum, u64 offset, u64 root, void *ctx)
4252{
4253 struct btrfs_data_container *inodes = ctx;
4254 const size_t c = 3 * sizeof(u64);
4255
4256 if (inodes->bytes_left >= c) {
4257 inodes->bytes_left -= c;
4258 inodes->val[inodes->elem_cnt] = inum;
4259 inodes->val[inodes->elem_cnt + 1] = offset;
4260 inodes->val[inodes->elem_cnt + 2] = root;
4261 inodes->elem_cnt += 3;
4262 } else {
4263 inodes->bytes_missing += c - inodes->bytes_left;
4264 inodes->bytes_left = 0;
4265 inodes->elem_missed += 3;
4266 }
4267
4268 return 0;
4269}
4270
4271static long btrfs_ioctl_logical_to_ino(struct btrfs_root *root,
4272 void __user *arg)
4273{
4274 int ret = 0;
4275 int size;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004276 struct btrfs_ioctl_logical_ino_args *loi;
4277 struct btrfs_data_container *inodes = NULL;
4278 struct btrfs_path *path = NULL;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004279
4280 if (!capable(CAP_SYS_ADMIN))
4281 return -EPERM;
4282
4283 loi = memdup_user(arg, sizeof(*loi));
4284 if (IS_ERR(loi)) {
4285 ret = PTR_ERR(loi);
4286 loi = NULL;
4287 goto out;
4288 }
4289
4290 path = btrfs_alloc_path();
4291 if (!path) {
4292 ret = -ENOMEM;
4293 goto out;
4294 }
4295
Liu Bo425d17a2012-09-07 20:01:30 -06004296 size = min_t(u32, loi->size, 64 * 1024);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004297 inodes = init_data_container(size);
4298 if (IS_ERR(inodes)) {
4299 ret = PTR_ERR(inodes);
4300 inodes = NULL;
4301 goto out;
4302 }
4303
Liu Bodf031f02012-09-07 20:01:29 -06004304 ret = iterate_inodes_from_logical(loi->logical, root->fs_info, path,
4305 build_ino_list, inodes);
4306 if (ret == -EINVAL)
Jan Schmidtd7728c92011-07-07 16:48:38 +02004307 ret = -ENOENT;
4308 if (ret < 0)
4309 goto out;
4310
Jeff Mahoney745c4d82011-11-20 07:31:57 -05004311 ret = copy_to_user((void *)(unsigned long)loi->inodes,
4312 (void *)(unsigned long)inodes, size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004313 if (ret)
4314 ret = -EFAULT;
4315
4316out:
4317 btrfs_free_path(path);
Liu Bo425d17a2012-09-07 20:01:30 -06004318 vfree(inodes);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004319 kfree(loi);
4320
4321 return ret;
4322}
4323
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004324void update_ioctl_balance_args(struct btrfs_fs_info *fs_info, int lock,
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004325 struct btrfs_ioctl_balance_args *bargs)
4326{
4327 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
4328
4329 bargs->flags = bctl->flags;
4330
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004331 if (atomic_read(&fs_info->balance_running))
4332 bargs->state |= BTRFS_BALANCE_STATE_RUNNING;
4333 if (atomic_read(&fs_info->balance_pause_req))
4334 bargs->state |= BTRFS_BALANCE_STATE_PAUSE_REQ;
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004335 if (atomic_read(&fs_info->balance_cancel_req))
4336 bargs->state |= BTRFS_BALANCE_STATE_CANCEL_REQ;
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004337
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004338 memcpy(&bargs->data, &bctl->data, sizeof(bargs->data));
4339 memcpy(&bargs->meta, &bctl->meta, sizeof(bargs->meta));
4340 memcpy(&bargs->sys, &bctl->sys, sizeof(bargs->sys));
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004341
4342 if (lock) {
4343 spin_lock(&fs_info->balance_lock);
4344 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
4345 spin_unlock(&fs_info->balance_lock);
4346 } else {
4347 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
4348 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004349}
4350
Liu Bo9ba1f6e2012-05-11 18:11:26 +08004351static long btrfs_ioctl_balance(struct file *file, void __user *arg)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004352{
Al Viro496ad9a2013-01-23 17:07:38 -05004353 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004354 struct btrfs_fs_info *fs_info = root->fs_info;
4355 struct btrfs_ioctl_balance_args *bargs;
4356 struct btrfs_balance_control *bctl;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004357 bool need_unlock; /* for mut. excl. ops lock */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004358 int ret;
4359
4360 if (!capable(CAP_SYS_ADMIN))
4361 return -EPERM;
4362
Liu Boe54bfa32012-06-29 03:58:48 -06004363 ret = mnt_want_write_file(file);
Liu Bo9ba1f6e2012-05-11 18:11:26 +08004364 if (ret)
4365 return ret;
4366
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004367again:
4368 if (!atomic_xchg(&fs_info->mutually_exclusive_operation_running, 1)) {
4369 mutex_lock(&fs_info->volume_mutex);
4370 mutex_lock(&fs_info->balance_mutex);
4371 need_unlock = true;
4372 goto locked;
4373 }
4374
4375 /*
4376 * mut. excl. ops lock is locked. Three possibilites:
4377 * (1) some other op is running
4378 * (2) balance is running
4379 * (3) balance is paused -- special case (think resume)
4380 */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004381 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004382 if (fs_info->balance_ctl) {
4383 /* this is either (2) or (3) */
4384 if (!atomic_read(&fs_info->balance_running)) {
4385 mutex_unlock(&fs_info->balance_mutex);
4386 if (!mutex_trylock(&fs_info->volume_mutex))
4387 goto again;
4388 mutex_lock(&fs_info->balance_mutex);
4389
4390 if (fs_info->balance_ctl &&
4391 !atomic_read(&fs_info->balance_running)) {
4392 /* this is (3) */
4393 need_unlock = false;
4394 goto locked;
4395 }
4396
4397 mutex_unlock(&fs_info->balance_mutex);
4398 mutex_unlock(&fs_info->volume_mutex);
4399 goto again;
4400 } else {
4401 /* this is (2) */
4402 mutex_unlock(&fs_info->balance_mutex);
4403 ret = -EINPROGRESS;
4404 goto out;
4405 }
4406 } else {
4407 /* this is (1) */
4408 mutex_unlock(&fs_info->balance_mutex);
Anand Jaine57138b2013-08-21 11:44:48 +08004409 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004410 goto out;
4411 }
4412
4413locked:
4414 BUG_ON(!atomic_read(&fs_info->mutually_exclusive_operation_running));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004415
4416 if (arg) {
4417 bargs = memdup_user(arg, sizeof(*bargs));
4418 if (IS_ERR(bargs)) {
4419 ret = PTR_ERR(bargs);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004420 goto out_unlock;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004421 }
Ilya Dryomovde322262012-01-16 22:04:49 +02004422
4423 if (bargs->flags & BTRFS_BALANCE_RESUME) {
4424 if (!fs_info->balance_ctl) {
4425 ret = -ENOTCONN;
4426 goto out_bargs;
4427 }
4428
4429 bctl = fs_info->balance_ctl;
4430 spin_lock(&fs_info->balance_lock);
4431 bctl->flags |= BTRFS_BALANCE_RESUME;
4432 spin_unlock(&fs_info->balance_lock);
4433
4434 goto do_balance;
4435 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004436 } else {
4437 bargs = NULL;
4438 }
4439
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004440 if (fs_info->balance_ctl) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004441 ret = -EINPROGRESS;
4442 goto out_bargs;
4443 }
4444
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004445 bctl = kzalloc(sizeof(*bctl), GFP_NOFS);
4446 if (!bctl) {
4447 ret = -ENOMEM;
4448 goto out_bargs;
4449 }
4450
4451 bctl->fs_info = fs_info;
4452 if (arg) {
4453 memcpy(&bctl->data, &bargs->data, sizeof(bctl->data));
4454 memcpy(&bctl->meta, &bargs->meta, sizeof(bctl->meta));
4455 memcpy(&bctl->sys, &bargs->sys, sizeof(bctl->sys));
4456
4457 bctl->flags = bargs->flags;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02004458 } else {
4459 /* balance everything - no filters */
4460 bctl->flags |= BTRFS_BALANCE_TYPE_MASK;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004461 }
4462
Ilya Dryomovde322262012-01-16 22:04:49 +02004463do_balance:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004464 /*
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004465 * Ownership of bctl and mutually_exclusive_operation_running
4466 * goes to to btrfs_balance. bctl is freed in __cancel_balance,
4467 * or, if restriper was paused all the way until unmount, in
4468 * free_fs_info. mutually_exclusive_operation_running is
4469 * cleared in __cancel_balance.
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004470 */
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004471 need_unlock = false;
4472
4473 ret = btrfs_balance(bctl, bargs);
4474
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004475 if (arg) {
4476 if (copy_to_user(arg, bargs, sizeof(*bargs)))
4477 ret = -EFAULT;
4478 }
4479
4480out_bargs:
4481 kfree(bargs);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004482out_unlock:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004483 mutex_unlock(&fs_info->balance_mutex);
4484 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004485 if (need_unlock)
4486 atomic_set(&fs_info->mutually_exclusive_operation_running, 0);
4487out:
Liu Boe54bfa32012-06-29 03:58:48 -06004488 mnt_drop_write_file(file);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004489 return ret;
4490}
4491
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004492static long btrfs_ioctl_balance_ctl(struct btrfs_root *root, int cmd)
4493{
4494 if (!capable(CAP_SYS_ADMIN))
4495 return -EPERM;
4496
4497 switch (cmd) {
4498 case BTRFS_BALANCE_CTL_PAUSE:
4499 return btrfs_pause_balance(root->fs_info);
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004500 case BTRFS_BALANCE_CTL_CANCEL:
4501 return btrfs_cancel_balance(root->fs_info);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004502 }
4503
4504 return -EINVAL;
4505}
4506
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004507static long btrfs_ioctl_balance_progress(struct btrfs_root *root,
4508 void __user *arg)
4509{
4510 struct btrfs_fs_info *fs_info = root->fs_info;
4511 struct btrfs_ioctl_balance_args *bargs;
4512 int ret = 0;
4513
4514 if (!capable(CAP_SYS_ADMIN))
4515 return -EPERM;
4516
4517 mutex_lock(&fs_info->balance_mutex);
4518 if (!fs_info->balance_ctl) {
4519 ret = -ENOTCONN;
4520 goto out;
4521 }
4522
4523 bargs = kzalloc(sizeof(*bargs), GFP_NOFS);
4524 if (!bargs) {
4525 ret = -ENOMEM;
4526 goto out;
4527 }
4528
4529 update_ioctl_balance_args(fs_info, 1, bargs);
4530
4531 if (copy_to_user(arg, bargs, sizeof(*bargs)))
4532 ret = -EFAULT;
4533
4534 kfree(bargs);
4535out:
4536 mutex_unlock(&fs_info->balance_mutex);
4537 return ret;
4538}
4539
Miao Xie905b0dd2012-11-26 08:50:11 +00004540static long btrfs_ioctl_quota_ctl(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004541{
Al Viro496ad9a2013-01-23 17:07:38 -05004542 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004543 struct btrfs_ioctl_quota_ctl_args *sa;
4544 struct btrfs_trans_handle *trans = NULL;
4545 int ret;
4546 int err;
4547
4548 if (!capable(CAP_SYS_ADMIN))
4549 return -EPERM;
4550
Miao Xie905b0dd2012-11-26 08:50:11 +00004551 ret = mnt_want_write_file(file);
4552 if (ret)
4553 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004554
4555 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004556 if (IS_ERR(sa)) {
4557 ret = PTR_ERR(sa);
4558 goto drop_write;
4559 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004560
Wang Shilong7708f022013-04-07 10:24:57 +00004561 down_write(&root->fs_info->subvol_sem);
Jan Schmidt2f232032013-04-25 16:04:51 +00004562 trans = btrfs_start_transaction(root->fs_info->tree_root, 2);
4563 if (IS_ERR(trans)) {
4564 ret = PTR_ERR(trans);
4565 goto out;
Arne Jansen5d13a372011-09-14 15:53:51 +02004566 }
4567
4568 switch (sa->cmd) {
4569 case BTRFS_QUOTA_CTL_ENABLE:
4570 ret = btrfs_quota_enable(trans, root->fs_info);
4571 break;
4572 case BTRFS_QUOTA_CTL_DISABLE:
4573 ret = btrfs_quota_disable(trans, root->fs_info);
4574 break;
Arne Jansen5d13a372011-09-14 15:53:51 +02004575 default:
4576 ret = -EINVAL;
4577 break;
4578 }
4579
Jan Schmidt2f232032013-04-25 16:04:51 +00004580 err = btrfs_commit_transaction(trans, root->fs_info->tree_root);
4581 if (err && !ret)
4582 ret = err;
Arne Jansen5d13a372011-09-14 15:53:51 +02004583out:
4584 kfree(sa);
Wang Shilong7708f022013-04-07 10:24:57 +00004585 up_write(&root->fs_info->subvol_sem);
Miao Xie905b0dd2012-11-26 08:50:11 +00004586drop_write:
4587 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004588 return ret;
4589}
4590
Miao Xie905b0dd2012-11-26 08:50:11 +00004591static long btrfs_ioctl_qgroup_assign(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004592{
Al Viro496ad9a2013-01-23 17:07:38 -05004593 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004594 struct btrfs_ioctl_qgroup_assign_args *sa;
4595 struct btrfs_trans_handle *trans;
4596 int ret;
4597 int err;
4598
4599 if (!capable(CAP_SYS_ADMIN))
4600 return -EPERM;
4601
Miao Xie905b0dd2012-11-26 08:50:11 +00004602 ret = mnt_want_write_file(file);
4603 if (ret)
4604 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004605
4606 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004607 if (IS_ERR(sa)) {
4608 ret = PTR_ERR(sa);
4609 goto drop_write;
4610 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004611
4612 trans = btrfs_join_transaction(root);
4613 if (IS_ERR(trans)) {
4614 ret = PTR_ERR(trans);
4615 goto out;
4616 }
4617
4618 /* FIXME: check if the IDs really exist */
4619 if (sa->assign) {
4620 ret = btrfs_add_qgroup_relation(trans, root->fs_info,
4621 sa->src, sa->dst);
4622 } else {
4623 ret = btrfs_del_qgroup_relation(trans, root->fs_info,
4624 sa->src, sa->dst);
4625 }
4626
4627 err = btrfs_end_transaction(trans, root);
4628 if (err && !ret)
4629 ret = err;
4630
4631out:
4632 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004633drop_write:
4634 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004635 return ret;
4636}
4637
Miao Xie905b0dd2012-11-26 08:50:11 +00004638static long btrfs_ioctl_qgroup_create(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004639{
Al Viro496ad9a2013-01-23 17:07:38 -05004640 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004641 struct btrfs_ioctl_qgroup_create_args *sa;
4642 struct btrfs_trans_handle *trans;
4643 int ret;
4644 int err;
4645
4646 if (!capable(CAP_SYS_ADMIN))
4647 return -EPERM;
4648
Miao Xie905b0dd2012-11-26 08:50:11 +00004649 ret = mnt_want_write_file(file);
4650 if (ret)
4651 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004652
4653 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004654 if (IS_ERR(sa)) {
4655 ret = PTR_ERR(sa);
4656 goto drop_write;
4657 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004658
Miao Xied86e56c2012-11-15 11:35:41 +00004659 if (!sa->qgroupid) {
4660 ret = -EINVAL;
4661 goto out;
4662 }
4663
Arne Jansen5d13a372011-09-14 15:53:51 +02004664 trans = btrfs_join_transaction(root);
4665 if (IS_ERR(trans)) {
4666 ret = PTR_ERR(trans);
4667 goto out;
4668 }
4669
4670 /* FIXME: check if the IDs really exist */
4671 if (sa->create) {
4672 ret = btrfs_create_qgroup(trans, root->fs_info, sa->qgroupid,
4673 NULL);
4674 } else {
4675 ret = btrfs_remove_qgroup(trans, root->fs_info, sa->qgroupid);
4676 }
4677
4678 err = btrfs_end_transaction(trans, root);
4679 if (err && !ret)
4680 ret = err;
4681
4682out:
4683 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004684drop_write:
4685 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004686 return ret;
4687}
4688
Miao Xie905b0dd2012-11-26 08:50:11 +00004689static long btrfs_ioctl_qgroup_limit(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004690{
Al Viro496ad9a2013-01-23 17:07:38 -05004691 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004692 struct btrfs_ioctl_qgroup_limit_args *sa;
4693 struct btrfs_trans_handle *trans;
4694 int ret;
4695 int err;
4696 u64 qgroupid;
4697
4698 if (!capable(CAP_SYS_ADMIN))
4699 return -EPERM;
4700
Miao Xie905b0dd2012-11-26 08:50:11 +00004701 ret = mnt_want_write_file(file);
4702 if (ret)
4703 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004704
4705 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004706 if (IS_ERR(sa)) {
4707 ret = PTR_ERR(sa);
4708 goto drop_write;
4709 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004710
4711 trans = btrfs_join_transaction(root);
4712 if (IS_ERR(trans)) {
4713 ret = PTR_ERR(trans);
4714 goto out;
4715 }
4716
4717 qgroupid = sa->qgroupid;
4718 if (!qgroupid) {
4719 /* take the current subvol as qgroup */
4720 qgroupid = root->root_key.objectid;
4721 }
4722
4723 /* FIXME: check if the IDs really exist */
4724 ret = btrfs_limit_qgroup(trans, root->fs_info, qgroupid, &sa->lim);
4725
4726 err = btrfs_end_transaction(trans, root);
4727 if (err && !ret)
4728 ret = err;
4729
4730out:
4731 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004732drop_write:
4733 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004734 return ret;
4735}
4736
Jan Schmidt2f232032013-04-25 16:04:51 +00004737static long btrfs_ioctl_quota_rescan(struct file *file, void __user *arg)
4738{
Al Viro6d0379e2013-06-16 19:32:35 +04004739 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Jan Schmidt2f232032013-04-25 16:04:51 +00004740 struct btrfs_ioctl_quota_rescan_args *qsa;
4741 int ret;
4742
4743 if (!capable(CAP_SYS_ADMIN))
4744 return -EPERM;
4745
4746 ret = mnt_want_write_file(file);
4747 if (ret)
4748 return ret;
4749
4750 qsa = memdup_user(arg, sizeof(*qsa));
4751 if (IS_ERR(qsa)) {
4752 ret = PTR_ERR(qsa);
4753 goto drop_write;
4754 }
4755
4756 if (qsa->flags) {
4757 ret = -EINVAL;
4758 goto out;
4759 }
4760
4761 ret = btrfs_qgroup_rescan(root->fs_info);
4762
4763out:
4764 kfree(qsa);
4765drop_write:
4766 mnt_drop_write_file(file);
4767 return ret;
4768}
4769
4770static long btrfs_ioctl_quota_rescan_status(struct file *file, void __user *arg)
4771{
Al Viro6d0379e2013-06-16 19:32:35 +04004772 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Jan Schmidt2f232032013-04-25 16:04:51 +00004773 struct btrfs_ioctl_quota_rescan_args *qsa;
4774 int ret = 0;
4775
4776 if (!capable(CAP_SYS_ADMIN))
4777 return -EPERM;
4778
4779 qsa = kzalloc(sizeof(*qsa), GFP_NOFS);
4780 if (!qsa)
4781 return -ENOMEM;
4782
4783 if (root->fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_RESCAN) {
4784 qsa->flags = 1;
4785 qsa->progress = root->fs_info->qgroup_rescan_progress.objectid;
4786 }
4787
4788 if (copy_to_user(arg, qsa, sizeof(*qsa)))
4789 ret = -EFAULT;
4790
4791 kfree(qsa);
4792 return ret;
4793}
4794
Jan Schmidt57254b6e2013-05-06 19:14:17 +00004795static long btrfs_ioctl_quota_rescan_wait(struct file *file, void __user *arg)
4796{
Al Viro54563d42013-09-01 15:57:51 -04004797 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Jan Schmidt57254b6e2013-05-06 19:14:17 +00004798
4799 if (!capable(CAP_SYS_ADMIN))
4800 return -EPERM;
4801
4802 return btrfs_qgroup_wait_for_completion(root->fs_info);
4803}
4804
Hugo Millsabccd002014-01-30 20:17:00 +00004805static long _btrfs_ioctl_set_received_subvol(struct file *file,
4806 struct btrfs_ioctl_received_subvol_args *sa)
Alexander Block8ea05e32012-07-25 17:35:53 +02004807{
Al Viro496ad9a2013-01-23 17:07:38 -05004808 struct inode *inode = file_inode(file);
Alexander Block8ea05e32012-07-25 17:35:53 +02004809 struct btrfs_root *root = BTRFS_I(inode)->root;
4810 struct btrfs_root_item *root_item = &root->root_item;
4811 struct btrfs_trans_handle *trans;
4812 struct timespec ct = CURRENT_TIME;
4813 int ret = 0;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004814 int received_uuid_changed;
Alexander Block8ea05e32012-07-25 17:35:53 +02004815
David Sterbabd60ea02014-01-16 15:50:22 +01004816 if (!inode_owner_or_capable(inode))
4817 return -EPERM;
4818
Alexander Block8ea05e32012-07-25 17:35:53 +02004819 ret = mnt_want_write_file(file);
4820 if (ret < 0)
4821 return ret;
4822
4823 down_write(&root->fs_info->subvol_sem);
4824
4825 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
4826 ret = -EINVAL;
4827 goto out;
4828 }
4829
4830 if (btrfs_root_readonly(root)) {
4831 ret = -EROFS;
4832 goto out;
4833 }
4834
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004835 /*
4836 * 1 - root item
4837 * 2 - uuid items (received uuid + subvol uuid)
4838 */
4839 trans = btrfs_start_transaction(root, 3);
Alexander Block8ea05e32012-07-25 17:35:53 +02004840 if (IS_ERR(trans)) {
4841 ret = PTR_ERR(trans);
4842 trans = NULL;
4843 goto out;
4844 }
4845
4846 sa->rtransid = trans->transid;
4847 sa->rtime.sec = ct.tv_sec;
4848 sa->rtime.nsec = ct.tv_nsec;
4849
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004850 received_uuid_changed = memcmp(root_item->received_uuid, sa->uuid,
4851 BTRFS_UUID_SIZE);
4852 if (received_uuid_changed &&
4853 !btrfs_is_empty_uuid(root_item->received_uuid))
4854 btrfs_uuid_tree_rem(trans, root->fs_info->uuid_root,
4855 root_item->received_uuid,
4856 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4857 root->root_key.objectid);
Alexander Block8ea05e32012-07-25 17:35:53 +02004858 memcpy(root_item->received_uuid, sa->uuid, BTRFS_UUID_SIZE);
4859 btrfs_set_root_stransid(root_item, sa->stransid);
4860 btrfs_set_root_rtransid(root_item, sa->rtransid);
Qu Wenruo3cae2102013-07-16 11:19:18 +08004861 btrfs_set_stack_timespec_sec(&root_item->stime, sa->stime.sec);
4862 btrfs_set_stack_timespec_nsec(&root_item->stime, sa->stime.nsec);
4863 btrfs_set_stack_timespec_sec(&root_item->rtime, sa->rtime.sec);
4864 btrfs_set_stack_timespec_nsec(&root_item->rtime, sa->rtime.nsec);
Alexander Block8ea05e32012-07-25 17:35:53 +02004865
4866 ret = btrfs_update_root(trans, root->fs_info->tree_root,
4867 &root->root_key, &root->root_item);
4868 if (ret < 0) {
4869 btrfs_end_transaction(trans, root);
Alexander Block8ea05e32012-07-25 17:35:53 +02004870 goto out;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004871 }
4872 if (received_uuid_changed && !btrfs_is_empty_uuid(sa->uuid)) {
4873 ret = btrfs_uuid_tree_add(trans, root->fs_info->uuid_root,
4874 sa->uuid,
4875 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4876 root->root_key.objectid);
4877 if (ret < 0 && ret != -EEXIST) {
4878 btrfs_abort_transaction(trans, root, ret);
Alexander Block8ea05e32012-07-25 17:35:53 +02004879 goto out;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004880 }
4881 }
4882 ret = btrfs_commit_transaction(trans, root);
4883 if (ret < 0) {
4884 btrfs_abort_transaction(trans, root, ret);
4885 goto out;
Alexander Block8ea05e32012-07-25 17:35:53 +02004886 }
4887
Hugo Millsabccd002014-01-30 20:17:00 +00004888out:
4889 up_write(&root->fs_info->subvol_sem);
4890 mnt_drop_write_file(file);
4891 return ret;
4892}
4893
4894#ifdef CONFIG_64BIT
4895static long btrfs_ioctl_set_received_subvol_32(struct file *file,
4896 void __user *arg)
4897{
4898 struct btrfs_ioctl_received_subvol_args_32 *args32 = NULL;
4899 struct btrfs_ioctl_received_subvol_args *args64 = NULL;
4900 int ret = 0;
4901
4902 args32 = memdup_user(arg, sizeof(*args32));
4903 if (IS_ERR(args32)) {
4904 ret = PTR_ERR(args32);
4905 args32 = NULL;
4906 goto out;
4907 }
4908
4909 args64 = kmalloc(sizeof(*args64), GFP_NOFS);
Dan Carpenter84dbeb82014-03-28 11:06:00 +03004910 if (!args64) {
4911 ret = -ENOMEM;
Hugo Millsabccd002014-01-30 20:17:00 +00004912 goto out;
4913 }
4914
4915 memcpy(args64->uuid, args32->uuid, BTRFS_UUID_SIZE);
4916 args64->stransid = args32->stransid;
4917 args64->rtransid = args32->rtransid;
4918 args64->stime.sec = args32->stime.sec;
4919 args64->stime.nsec = args32->stime.nsec;
4920 args64->rtime.sec = args32->rtime.sec;
4921 args64->rtime.nsec = args32->rtime.nsec;
4922 args64->flags = args32->flags;
4923
4924 ret = _btrfs_ioctl_set_received_subvol(file, args64);
4925 if (ret)
4926 goto out;
4927
4928 memcpy(args32->uuid, args64->uuid, BTRFS_UUID_SIZE);
4929 args32->stransid = args64->stransid;
4930 args32->rtransid = args64->rtransid;
4931 args32->stime.sec = args64->stime.sec;
4932 args32->stime.nsec = args64->stime.nsec;
4933 args32->rtime.sec = args64->rtime.sec;
4934 args32->rtime.nsec = args64->rtime.nsec;
4935 args32->flags = args64->flags;
4936
4937 ret = copy_to_user(arg, args32, sizeof(*args32));
4938 if (ret)
4939 ret = -EFAULT;
4940
4941out:
4942 kfree(args32);
4943 kfree(args64);
4944 return ret;
4945}
4946#endif
4947
4948static long btrfs_ioctl_set_received_subvol(struct file *file,
4949 void __user *arg)
4950{
4951 struct btrfs_ioctl_received_subvol_args *sa = NULL;
4952 int ret = 0;
4953
4954 sa = memdup_user(arg, sizeof(*sa));
4955 if (IS_ERR(sa)) {
4956 ret = PTR_ERR(sa);
4957 sa = NULL;
4958 goto out;
4959 }
4960
4961 ret = _btrfs_ioctl_set_received_subvol(file, sa);
4962
4963 if (ret)
4964 goto out;
4965
Alexander Block8ea05e32012-07-25 17:35:53 +02004966 ret = copy_to_user(arg, sa, sizeof(*sa));
4967 if (ret)
4968 ret = -EFAULT;
4969
4970out:
4971 kfree(sa);
Alexander Block8ea05e32012-07-25 17:35:53 +02004972 return ret;
4973}
4974
jeff.liu867ab662013-01-05 02:48:01 +00004975static int btrfs_ioctl_get_fslabel(struct file *file, void __user *arg)
4976{
Al Viro6d0379e2013-06-16 19:32:35 +04004977 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Anand Jaina1b83ac2013-07-19 17:39:32 +08004978 size_t len;
jeff.liu867ab662013-01-05 02:48:01 +00004979 int ret;
Anand Jaina1b83ac2013-07-19 17:39:32 +08004980 char label[BTRFS_LABEL_SIZE];
4981
4982 spin_lock(&root->fs_info->super_lock);
4983 memcpy(label, root->fs_info->super_copy->label, BTRFS_LABEL_SIZE);
4984 spin_unlock(&root->fs_info->super_lock);
4985
4986 len = strnlen(label, BTRFS_LABEL_SIZE);
jeff.liu867ab662013-01-05 02:48:01 +00004987
4988 if (len == BTRFS_LABEL_SIZE) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004989 btrfs_warn(root->fs_info,
4990 "label is too long, return the first %zu bytes", --len);
jeff.liu867ab662013-01-05 02:48:01 +00004991 }
4992
jeff.liu867ab662013-01-05 02:48:01 +00004993 ret = copy_to_user(arg, label, len);
jeff.liu867ab662013-01-05 02:48:01 +00004994
4995 return ret ? -EFAULT : 0;
4996}
4997
jeff.liua8bfd4a2013-01-05 02:48:08 +00004998static int btrfs_ioctl_set_fslabel(struct file *file, void __user *arg)
4999{
Al Viro6d0379e2013-06-16 19:32:35 +04005000 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
jeff.liua8bfd4a2013-01-05 02:48:08 +00005001 struct btrfs_super_block *super_block = root->fs_info->super_copy;
5002 struct btrfs_trans_handle *trans;
5003 char label[BTRFS_LABEL_SIZE];
5004 int ret;
5005
5006 if (!capable(CAP_SYS_ADMIN))
5007 return -EPERM;
5008
5009 if (copy_from_user(label, arg, sizeof(label)))
5010 return -EFAULT;
5011
5012 if (strnlen(label, BTRFS_LABEL_SIZE) == BTRFS_LABEL_SIZE) {
Frank Holtonefe120a2013-12-20 11:37:06 -05005013 btrfs_err(root->fs_info, "unable to set label with more than %d bytes",
jeff.liua8bfd4a2013-01-05 02:48:08 +00005014 BTRFS_LABEL_SIZE - 1);
5015 return -EINVAL;
5016 }
5017
5018 ret = mnt_want_write_file(file);
5019 if (ret)
5020 return ret;
5021
jeff.liua8bfd4a2013-01-05 02:48:08 +00005022 trans = btrfs_start_transaction(root, 0);
5023 if (IS_ERR(trans)) {
5024 ret = PTR_ERR(trans);
5025 goto out_unlock;
5026 }
5027
Anand Jaina1b83ac2013-07-19 17:39:32 +08005028 spin_lock(&root->fs_info->super_lock);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005029 strcpy(super_block->label, label);
Anand Jaina1b83ac2013-07-19 17:39:32 +08005030 spin_unlock(&root->fs_info->super_lock);
Jeff Mahoneyd0270ac2014-02-07 14:33:57 +01005031 ret = btrfs_commit_transaction(trans, root);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005032
5033out_unlock:
jeff.liua8bfd4a2013-01-05 02:48:08 +00005034 mnt_drop_write_file(file);
5035 return ret;
5036}
5037
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005038#define INIT_FEATURE_FLAGS(suffix) \
5039 { .compat_flags = BTRFS_FEATURE_COMPAT_##suffix, \
5040 .compat_ro_flags = BTRFS_FEATURE_COMPAT_RO_##suffix, \
5041 .incompat_flags = BTRFS_FEATURE_INCOMPAT_##suffix }
5042
5043static int btrfs_ioctl_get_supported_features(struct file *file,
5044 void __user *arg)
5045{
5046 static struct btrfs_ioctl_feature_flags features[3] = {
5047 INIT_FEATURE_FLAGS(SUPP),
5048 INIT_FEATURE_FLAGS(SAFE_SET),
5049 INIT_FEATURE_FLAGS(SAFE_CLEAR)
5050 };
5051
5052 if (copy_to_user(arg, &features, sizeof(features)))
5053 return -EFAULT;
5054
5055 return 0;
5056}
5057
5058static int btrfs_ioctl_get_features(struct file *file, void __user *arg)
5059{
5060 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
5061 struct btrfs_super_block *super_block = root->fs_info->super_copy;
5062 struct btrfs_ioctl_feature_flags features;
5063
5064 features.compat_flags = btrfs_super_compat_flags(super_block);
5065 features.compat_ro_flags = btrfs_super_compat_ro_flags(super_block);
5066 features.incompat_flags = btrfs_super_incompat_flags(super_block);
5067
5068 if (copy_to_user(arg, &features, sizeof(features)))
5069 return -EFAULT;
5070
5071 return 0;
5072}
5073
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005074static int check_feature_bits(struct btrfs_root *root,
5075 enum btrfs_feature_set set,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005076 u64 change_mask, u64 flags, u64 supported_flags,
5077 u64 safe_set, u64 safe_clear)
5078{
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005079 const char *type = btrfs_feature_set_names[set];
5080 char *names;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005081 u64 disallowed, unsupported;
5082 u64 set_mask = flags & change_mask;
5083 u64 clear_mask = ~flags & change_mask;
5084
5085 unsupported = set_mask & ~supported_flags;
5086 if (unsupported) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005087 names = btrfs_printable_features(set, unsupported);
5088 if (names) {
5089 btrfs_warn(root->fs_info,
5090 "this kernel does not support the %s feature bit%s",
5091 names, strchr(names, ',') ? "s" : "");
5092 kfree(names);
5093 } else
5094 btrfs_warn(root->fs_info,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005095 "this kernel does not support %s bits 0x%llx",
5096 type, unsupported);
5097 return -EOPNOTSUPP;
5098 }
5099
5100 disallowed = set_mask & ~safe_set;
5101 if (disallowed) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005102 names = btrfs_printable_features(set, disallowed);
5103 if (names) {
5104 btrfs_warn(root->fs_info,
5105 "can't set the %s feature bit%s while mounted",
5106 names, strchr(names, ',') ? "s" : "");
5107 kfree(names);
5108 } else
5109 btrfs_warn(root->fs_info,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005110 "can't set %s bits 0x%llx while mounted",
5111 type, disallowed);
5112 return -EPERM;
5113 }
5114
5115 disallowed = clear_mask & ~safe_clear;
5116 if (disallowed) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005117 names = btrfs_printable_features(set, disallowed);
5118 if (names) {
5119 btrfs_warn(root->fs_info,
5120 "can't clear the %s feature bit%s while mounted",
5121 names, strchr(names, ',') ? "s" : "");
5122 kfree(names);
5123 } else
5124 btrfs_warn(root->fs_info,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005125 "can't clear %s bits 0x%llx while mounted",
5126 type, disallowed);
5127 return -EPERM;
5128 }
5129
5130 return 0;
5131}
5132
5133#define check_feature(root, change_mask, flags, mask_base) \
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005134check_feature_bits(root, FEAT_##mask_base, change_mask, flags, \
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005135 BTRFS_FEATURE_ ## mask_base ## _SUPP, \
5136 BTRFS_FEATURE_ ## mask_base ## _SAFE_SET, \
5137 BTRFS_FEATURE_ ## mask_base ## _SAFE_CLEAR)
5138
5139static int btrfs_ioctl_set_features(struct file *file, void __user *arg)
5140{
5141 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
5142 struct btrfs_super_block *super_block = root->fs_info->super_copy;
5143 struct btrfs_ioctl_feature_flags flags[2];
5144 struct btrfs_trans_handle *trans;
5145 u64 newflags;
5146 int ret;
5147
5148 if (!capable(CAP_SYS_ADMIN))
5149 return -EPERM;
5150
5151 if (copy_from_user(flags, arg, sizeof(flags)))
5152 return -EFAULT;
5153
5154 /* Nothing to do */
5155 if (!flags[0].compat_flags && !flags[0].compat_ro_flags &&
5156 !flags[0].incompat_flags)
5157 return 0;
5158
5159 ret = check_feature(root, flags[0].compat_flags,
5160 flags[1].compat_flags, COMPAT);
5161 if (ret)
5162 return ret;
5163
5164 ret = check_feature(root, flags[0].compat_ro_flags,
5165 flags[1].compat_ro_flags, COMPAT_RO);
5166 if (ret)
5167 return ret;
5168
5169 ret = check_feature(root, flags[0].incompat_flags,
5170 flags[1].incompat_flags, INCOMPAT);
5171 if (ret)
5172 return ret;
5173
David Sterba8051aa12014-02-07 14:34:04 +01005174 trans = btrfs_start_transaction(root, 0);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005175 if (IS_ERR(trans))
5176 return PTR_ERR(trans);
5177
5178 spin_lock(&root->fs_info->super_lock);
5179 newflags = btrfs_super_compat_flags(super_block);
5180 newflags |= flags[0].compat_flags & flags[1].compat_flags;
5181 newflags &= ~(flags[0].compat_flags & ~flags[1].compat_flags);
5182 btrfs_set_super_compat_flags(super_block, newflags);
5183
5184 newflags = btrfs_super_compat_ro_flags(super_block);
5185 newflags |= flags[0].compat_ro_flags & flags[1].compat_ro_flags;
5186 newflags &= ~(flags[0].compat_ro_flags & ~flags[1].compat_ro_flags);
5187 btrfs_set_super_compat_ro_flags(super_block, newflags);
5188
5189 newflags = btrfs_super_incompat_flags(super_block);
5190 newflags |= flags[0].incompat_flags & flags[1].incompat_flags;
5191 newflags &= ~(flags[0].incompat_flags & ~flags[1].incompat_flags);
5192 btrfs_set_super_incompat_flags(super_block, newflags);
5193 spin_unlock(&root->fs_info->super_lock);
5194
Jeff Mahoneyd0270ac2014-02-07 14:33:57 +01005195 return btrfs_commit_transaction(trans, root);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005196}
5197
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005198long btrfs_ioctl(struct file *file, unsigned int
5199 cmd, unsigned long arg)
5200{
Al Viro496ad9a2013-01-23 17:07:38 -05005201 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05005202 void __user *argp = (void __user *)arg;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005203
5204 switch (cmd) {
Christoph Hellwig6cbff002009-04-17 10:37:41 +02005205 case FS_IOC_GETFLAGS:
5206 return btrfs_ioctl_getflags(file, argp);
5207 case FS_IOC_SETFLAGS:
5208 return btrfs_ioctl_setflags(file, argp);
5209 case FS_IOC_GETVERSION:
5210 return btrfs_ioctl_getversion(file, argp);
Li Dongyangf7039b12011-03-24 10:24:28 +00005211 case FITRIM:
5212 return btrfs_ioctl_fitrim(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005213 case BTRFS_IOC_SNAP_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005214 return btrfs_ioctl_snap_create(file, argp, 0);
Li Zefanfdfb1e42010-12-10 06:41:56 +00005215 case BTRFS_IOC_SNAP_CREATE_V2:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005216 return btrfs_ioctl_snap_create_v2(file, argp, 0);
Chris Mason3de45862008-11-17 21:02:50 -05005217 case BTRFS_IOC_SUBVOL_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005218 return btrfs_ioctl_snap_create(file, argp, 1);
Arne Jansen6f72c7e2011-09-14 15:58:21 +02005219 case BTRFS_IOC_SUBVOL_CREATE_V2:
5220 return btrfs_ioctl_snap_create_v2(file, argp, 1);
Yan, Zheng76dda932009-09-21 16:00:26 -04005221 case BTRFS_IOC_SNAP_DESTROY:
5222 return btrfs_ioctl_snap_destroy(file, argp);
Li Zefan0caa1022010-12-20 16:30:25 +08005223 case BTRFS_IOC_SUBVOL_GETFLAGS:
5224 return btrfs_ioctl_subvol_getflags(file, argp);
5225 case BTRFS_IOC_SUBVOL_SETFLAGS:
5226 return btrfs_ioctl_subvol_setflags(file, argp);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00005227 case BTRFS_IOC_DEFAULT_SUBVOL:
5228 return btrfs_ioctl_default_subvol(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005229 case BTRFS_IOC_DEFRAG:
Chris Mason1e701a32010-03-11 09:42:04 -05005230 return btrfs_ioctl_defrag(file, NULL);
5231 case BTRFS_IOC_DEFRAG_RANGE:
5232 return btrfs_ioctl_defrag(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005233 case BTRFS_IOC_RESIZE:
Miao Xie198605a2012-11-26 08:43:45 +00005234 return btrfs_ioctl_resize(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005235 case BTRFS_IOC_ADD_DEV:
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05005236 return btrfs_ioctl_add_dev(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005237 case BTRFS_IOC_RM_DEV:
Miao Xieda249272012-11-26 08:44:50 +00005238 return btrfs_ioctl_rm_dev(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005239 case BTRFS_IOC_FS_INFO:
5240 return btrfs_ioctl_fs_info(root, argp);
5241 case BTRFS_IOC_DEV_INFO:
5242 return btrfs_ioctl_dev_info(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005243 case BTRFS_IOC_BALANCE:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08005244 return btrfs_ioctl_balance(file, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005245 case BTRFS_IOC_CLONE:
Sage Weilc5c9cd42008-11-12 14:32:25 -05005246 return btrfs_ioctl_clone(file, arg, 0, 0, 0);
5247 case BTRFS_IOC_CLONE_RANGE:
Christoph Hellwig7a865e82008-12-02 09:52:24 -05005248 return btrfs_ioctl_clone_range(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005249 case BTRFS_IOC_TRANS_START:
5250 return btrfs_ioctl_trans_start(file);
5251 case BTRFS_IOC_TRANS_END:
5252 return btrfs_ioctl_trans_end(file);
Chris Masonac8e9812010-02-28 15:39:26 -05005253 case BTRFS_IOC_TREE_SEARCH:
5254 return btrfs_ioctl_tree_search(file, argp);
5255 case BTRFS_IOC_INO_LOOKUP:
5256 return btrfs_ioctl_ino_lookup(file, argp);
Jan Schmidtd7728c92011-07-07 16:48:38 +02005257 case BTRFS_IOC_INO_PATHS:
5258 return btrfs_ioctl_ino_to_path(root, argp);
5259 case BTRFS_IOC_LOGICAL_INO:
5260 return btrfs_ioctl_logical_to_ino(root, argp);
Josef Bacik1406e432010-01-13 18:19:06 +00005261 case BTRFS_IOC_SPACE_INFO:
5262 return btrfs_ioctl_space_info(root, argp);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005263 case BTRFS_IOC_SYNC: {
5264 int ret;
5265
Miao Xie6c255e62014-03-06 13:55:01 +08005266 ret = btrfs_start_delalloc_roots(root->fs_info, 0, -1);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005267 if (ret)
5268 return ret;
5269 ret = btrfs_sync_fs(file->f_dentry->d_sb, 1);
5270 return ret;
5271 }
Sage Weil46204592010-10-29 15:41:32 -04005272 case BTRFS_IOC_START_SYNC:
Miao Xie9a8c28b2012-11-26 08:40:43 +00005273 return btrfs_ioctl_start_sync(root, argp);
Sage Weil46204592010-10-29 15:41:32 -04005274 case BTRFS_IOC_WAIT_SYNC:
Miao Xie9a8c28b2012-11-26 08:40:43 +00005275 return btrfs_ioctl_wait_sync(root, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005276 case BTRFS_IOC_SCRUB:
Miao Xieb8e95482012-11-26 08:48:01 +00005277 return btrfs_ioctl_scrub(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005278 case BTRFS_IOC_SCRUB_CANCEL:
5279 return btrfs_ioctl_scrub_cancel(root, argp);
5280 case BTRFS_IOC_SCRUB_PROGRESS:
5281 return btrfs_ioctl_scrub_progress(root, argp);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02005282 case BTRFS_IOC_BALANCE_V2:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08005283 return btrfs_ioctl_balance(file, argp);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02005284 case BTRFS_IOC_BALANCE_CTL:
5285 return btrfs_ioctl_balance_ctl(root, arg);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02005286 case BTRFS_IOC_BALANCE_PROGRESS:
5287 return btrfs_ioctl_balance_progress(root, argp);
Alexander Block8ea05e32012-07-25 17:35:53 +02005288 case BTRFS_IOC_SET_RECEIVED_SUBVOL:
5289 return btrfs_ioctl_set_received_subvol(file, argp);
Hugo Millsabccd002014-01-30 20:17:00 +00005290#ifdef CONFIG_64BIT
5291 case BTRFS_IOC_SET_RECEIVED_SUBVOL_32:
5292 return btrfs_ioctl_set_received_subvol_32(file, argp);
5293#endif
Alexander Block31db9f72012-07-25 23:19:24 +02005294 case BTRFS_IOC_SEND:
5295 return btrfs_ioctl_send(file, argp);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02005296 case BTRFS_IOC_GET_DEV_STATS:
David Sterbab27f7c02012-06-22 06:30:39 -06005297 return btrfs_ioctl_get_dev_stats(root, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005298 case BTRFS_IOC_QUOTA_CTL:
Miao Xie905b0dd2012-11-26 08:50:11 +00005299 return btrfs_ioctl_quota_ctl(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005300 case BTRFS_IOC_QGROUP_ASSIGN:
Miao Xie905b0dd2012-11-26 08:50:11 +00005301 return btrfs_ioctl_qgroup_assign(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005302 case BTRFS_IOC_QGROUP_CREATE:
Miao Xie905b0dd2012-11-26 08:50:11 +00005303 return btrfs_ioctl_qgroup_create(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005304 case BTRFS_IOC_QGROUP_LIMIT:
Miao Xie905b0dd2012-11-26 08:50:11 +00005305 return btrfs_ioctl_qgroup_limit(file, argp);
Jan Schmidt2f232032013-04-25 16:04:51 +00005306 case BTRFS_IOC_QUOTA_RESCAN:
5307 return btrfs_ioctl_quota_rescan(file, argp);
5308 case BTRFS_IOC_QUOTA_RESCAN_STATUS:
5309 return btrfs_ioctl_quota_rescan_status(file, argp);
Jan Schmidt57254b6e2013-05-06 19:14:17 +00005310 case BTRFS_IOC_QUOTA_RESCAN_WAIT:
5311 return btrfs_ioctl_quota_rescan_wait(file, argp);
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01005312 case BTRFS_IOC_DEV_REPLACE:
5313 return btrfs_ioctl_dev_replace(root, argp);
jeff.liu867ab662013-01-05 02:48:01 +00005314 case BTRFS_IOC_GET_FSLABEL:
5315 return btrfs_ioctl_get_fslabel(file, argp);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005316 case BTRFS_IOC_SET_FSLABEL:
5317 return btrfs_ioctl_set_fslabel(file, argp);
Mark Fasheh416161d2013-08-06 11:42:51 -07005318 case BTRFS_IOC_FILE_EXTENT_SAME:
5319 return btrfs_ioctl_file_extent_same(file, argp);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005320 case BTRFS_IOC_GET_SUPPORTED_FEATURES:
5321 return btrfs_ioctl_get_supported_features(file, argp);
5322 case BTRFS_IOC_GET_FEATURES:
5323 return btrfs_ioctl_get_features(file, argp);
5324 case BTRFS_IOC_SET_FEATURES:
5325 return btrfs_ioctl_set_features(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005326 }
5327
5328 return -ENOTTY;
5329}