blob: 8eecfcce56ed43a8d4b57fc6878c29313cfce1e8 [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);
Filipe Manana3cc79392014-06-25 22:36:02 +0100139 unsigned int new_fl = 0;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200140
141 if (ip->flags & BTRFS_INODE_SYNC)
Filipe Manana3cc79392014-06-25 22:36:02 +0100142 new_fl |= S_SYNC;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200143 if (ip->flags & BTRFS_INODE_IMMUTABLE)
Filipe Manana3cc79392014-06-25 22:36:02 +0100144 new_fl |= S_IMMUTABLE;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200145 if (ip->flags & BTRFS_INODE_APPEND)
Filipe Manana3cc79392014-06-25 22:36:02 +0100146 new_fl |= S_APPEND;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200147 if (ip->flags & BTRFS_INODE_NOATIME)
Filipe Manana3cc79392014-06-25 22:36:02 +0100148 new_fl |= S_NOATIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200149 if (ip->flags & BTRFS_INODE_DIRSYNC)
Filipe Manana3cc79392014-06-25 22:36:02 +0100150 new_fl |= S_DIRSYNC;
151
152 set_mask_bits(&inode->i_flags,
153 S_SYNC | S_APPEND | S_IMMUTABLE | S_NOATIME | S_DIRSYNC,
154 new_fl);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200155}
156
157/*
158 * Inherit flags from the parent inode.
159 *
Josef Bacike27425d2011-09-27 11:01:30 -0400160 * Currently only the compression flags and the cow flags are inherited.
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200161 */
162void btrfs_inherit_iflags(struct inode *inode, struct inode *dir)
163{
Chris Mason0b4dcea2009-06-11 11:13:35 -0400164 unsigned int flags;
165
166 if (!dir)
167 return;
168
169 flags = BTRFS_I(dir)->flags;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200170
Josef Bacike27425d2011-09-27 11:01:30 -0400171 if (flags & BTRFS_INODE_NOCOMPRESS) {
172 BTRFS_I(inode)->flags &= ~BTRFS_INODE_COMPRESS;
173 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
174 } else if (flags & BTRFS_INODE_COMPRESS) {
175 BTRFS_I(inode)->flags &= ~BTRFS_INODE_NOCOMPRESS;
176 BTRFS_I(inode)->flags |= BTRFS_INODE_COMPRESS;
177 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200178
Liu Bo213490b2012-09-11 08:33:50 -0600179 if (flags & BTRFS_INODE_NODATACOW) {
Josef Bacike27425d2011-09-27 11:01:30 -0400180 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW;
Liu Bo213490b2012-09-11 08:33:50 -0600181 if (S_ISREG(inode->i_mode))
182 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
183 }
Josef Bacike27425d2011-09-27 11:01:30 -0400184
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200185 btrfs_update_iflags(inode);
186}
187
188static int btrfs_ioctl_getflags(struct file *file, void __user *arg)
189{
Al Viro496ad9a2013-01-23 17:07:38 -0500190 struct btrfs_inode *ip = BTRFS_I(file_inode(file));
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200191 unsigned int flags = btrfs_flags_to_ioctl(ip->flags);
192
193 if (copy_to_user(arg, &flags, sizeof(flags)))
194 return -EFAULT;
195 return 0;
196}
197
Liu Bo75e7cb72011-03-22 10:12:20 +0000198static int check_flags(unsigned int flags)
199{
200 if (flags & ~(FS_IMMUTABLE_FL | FS_APPEND_FL | \
201 FS_NOATIME_FL | FS_NODUMP_FL | \
202 FS_SYNC_FL | FS_DIRSYNC_FL | \
Li Zefane1e8fb62011-04-15 03:02:49 +0000203 FS_NOCOMP_FL | FS_COMPR_FL |
204 FS_NOCOW_FL))
Liu Bo75e7cb72011-03-22 10:12:20 +0000205 return -EOPNOTSUPP;
206
207 if ((flags & FS_NOCOMP_FL) && (flags & FS_COMPR_FL))
208 return -EINVAL;
209
Liu Bo75e7cb72011-03-22 10:12:20 +0000210 return 0;
211}
212
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200213static int btrfs_ioctl_setflags(struct file *file, void __user *arg)
214{
Al Viro496ad9a2013-01-23 17:07:38 -0500215 struct inode *inode = file_inode(file);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200216 struct btrfs_inode *ip = BTRFS_I(inode);
217 struct btrfs_root *root = ip->root;
218 struct btrfs_trans_handle *trans;
219 unsigned int flags, oldflags;
220 int ret;
Li Zefanf062abf02011-12-29 13:36:45 +0800221 u64 ip_oldflags;
222 unsigned int i_oldflags;
David Sterba7e97b8d2012-09-07 05:56:55 -0600223 umode_t mode;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200224
David Sterbabd60ea02014-01-16 15:50:22 +0100225 if (!inode_owner_or_capable(inode))
226 return -EPERM;
227
Li Zefanb83cc962010-12-20 16:04:08 +0800228 if (btrfs_root_readonly(root))
229 return -EROFS;
230
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200231 if (copy_from_user(&flags, arg, sizeof(flags)))
232 return -EFAULT;
233
Liu Bo75e7cb72011-03-22 10:12:20 +0000234 ret = check_flags(flags);
235 if (ret)
236 return ret;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200237
Jan Karae7848682012-06-12 16:20:32 +0200238 ret = mnt_want_write_file(file);
239 if (ret)
240 return ret;
241
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200242 mutex_lock(&inode->i_mutex);
243
Li Zefanf062abf02011-12-29 13:36:45 +0800244 ip_oldflags = ip->flags;
245 i_oldflags = inode->i_flags;
David Sterba7e97b8d2012-09-07 05:56:55 -0600246 mode = inode->i_mode;
Li Zefanf062abf02011-12-29 13:36:45 +0800247
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200248 flags = btrfs_mask_flags(inode->i_mode, flags);
249 oldflags = btrfs_flags_to_ioctl(ip->flags);
250 if ((flags ^ oldflags) & (FS_APPEND_FL | FS_IMMUTABLE_FL)) {
251 if (!capable(CAP_LINUX_IMMUTABLE)) {
252 ret = -EPERM;
253 goto out_unlock;
254 }
255 }
256
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200257 if (flags & FS_SYNC_FL)
258 ip->flags |= BTRFS_INODE_SYNC;
259 else
260 ip->flags &= ~BTRFS_INODE_SYNC;
261 if (flags & FS_IMMUTABLE_FL)
262 ip->flags |= BTRFS_INODE_IMMUTABLE;
263 else
264 ip->flags &= ~BTRFS_INODE_IMMUTABLE;
265 if (flags & FS_APPEND_FL)
266 ip->flags |= BTRFS_INODE_APPEND;
267 else
268 ip->flags &= ~BTRFS_INODE_APPEND;
269 if (flags & FS_NODUMP_FL)
270 ip->flags |= BTRFS_INODE_NODUMP;
271 else
272 ip->flags &= ~BTRFS_INODE_NODUMP;
273 if (flags & FS_NOATIME_FL)
274 ip->flags |= BTRFS_INODE_NOATIME;
275 else
276 ip->flags &= ~BTRFS_INODE_NOATIME;
277 if (flags & FS_DIRSYNC_FL)
278 ip->flags |= BTRFS_INODE_DIRSYNC;
279 else
280 ip->flags &= ~BTRFS_INODE_DIRSYNC;
David Sterba7e97b8d2012-09-07 05:56:55 -0600281 if (flags & FS_NOCOW_FL) {
282 if (S_ISREG(mode)) {
283 /*
284 * It's safe to turn csums off here, no extents exist.
285 * Otherwise we want the flag to reflect the real COW
286 * status of the file and will not set it.
287 */
288 if (inode->i_size == 0)
289 ip->flags |= BTRFS_INODE_NODATACOW
290 | BTRFS_INODE_NODATASUM;
291 } else {
292 ip->flags |= BTRFS_INODE_NODATACOW;
293 }
294 } else {
295 /*
296 * Revert back under same assuptions as above
297 */
298 if (S_ISREG(mode)) {
299 if (inode->i_size == 0)
300 ip->flags &= ~(BTRFS_INODE_NODATACOW
301 | BTRFS_INODE_NODATASUM);
302 } else {
303 ip->flags &= ~BTRFS_INODE_NODATACOW;
304 }
305 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200306
Liu Bo75e7cb72011-03-22 10:12:20 +0000307 /*
308 * The COMPRESS flag can only be changed by users, while the NOCOMPRESS
309 * flag may be changed automatically if compression code won't make
310 * things smaller.
311 */
312 if (flags & FS_NOCOMP_FL) {
313 ip->flags &= ~BTRFS_INODE_COMPRESS;
314 ip->flags |= BTRFS_INODE_NOCOMPRESS;
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000315
316 ret = btrfs_set_prop(inode, "btrfs.compression", NULL, 0, 0);
317 if (ret && ret != -ENODATA)
318 goto out_drop;
Liu Bo75e7cb72011-03-22 10:12:20 +0000319 } else if (flags & FS_COMPR_FL) {
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000320 const char *comp;
321
Liu Bo75e7cb72011-03-22 10:12:20 +0000322 ip->flags |= BTRFS_INODE_COMPRESS;
323 ip->flags &= ~BTRFS_INODE_NOCOMPRESS;
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000324
325 if (root->fs_info->compress_type == BTRFS_COMPRESS_LZO)
326 comp = "lzo";
327 else
328 comp = "zlib";
329 ret = btrfs_set_prop(inode, "btrfs.compression",
330 comp, strlen(comp), 0);
331 if (ret)
332 goto out_drop;
333
Li Zefanebcb9042011-04-15 03:03:17 +0000334 } else {
335 ip->flags &= ~(BTRFS_INODE_COMPRESS | BTRFS_INODE_NOCOMPRESS);
Liu Bo75e7cb72011-03-22 10:12:20 +0000336 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200337
Li Zefan4da6f1a2011-12-29 13:39:50 +0800338 trans = btrfs_start_transaction(root, 1);
Li Zefanf062abf02011-12-29 13:36:45 +0800339 if (IS_ERR(trans)) {
340 ret = PTR_ERR(trans);
341 goto out_drop;
342 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200343
Li Zefan306424cc2011-12-14 20:12:02 -0500344 btrfs_update_iflags(inode);
Josef Bacik0c4d2d92012-04-05 15:03:02 -0400345 inode_inc_iversion(inode);
Li Zefan306424cc2011-12-14 20:12:02 -0500346 inode->i_ctime = CURRENT_TIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200347 ret = btrfs_update_inode(trans, root, inode);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200348
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200349 btrfs_end_transaction(trans, root);
Li Zefanf062abf02011-12-29 13:36:45 +0800350 out_drop:
351 if (ret) {
352 ip->flags = ip_oldflags;
353 inode->i_flags = i_oldflags;
354 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200355
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200356 out_unlock:
357 mutex_unlock(&inode->i_mutex);
Jan Karae7848682012-06-12 16:20:32 +0200358 mnt_drop_write_file(file);
liubo2d4e6f6ad2011-02-24 09:38:16 +0000359 return ret;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200360}
361
362static int btrfs_ioctl_getversion(struct file *file, int __user *arg)
363{
Al Viro496ad9a2013-01-23 17:07:38 -0500364 struct inode *inode = file_inode(file);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200365
366 return put_user(inode->i_generation, arg);
367}
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400368
Li Dongyangf7039b12011-03-24 10:24:28 +0000369static noinline int btrfs_ioctl_fitrim(struct file *file, void __user *arg)
370{
Al Viro54563d42013-09-01 15:57:51 -0400371 struct btrfs_fs_info *fs_info = btrfs_sb(file_inode(file)->i_sb);
Li Dongyangf7039b12011-03-24 10:24:28 +0000372 struct btrfs_device *device;
373 struct request_queue *q;
374 struct fstrim_range range;
375 u64 minlen = ULLONG_MAX;
376 u64 num_devices = 0;
Al Viro815745c2011-11-17 15:40:49 -0500377 u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy);
Li Dongyangf7039b12011-03-24 10:24:28 +0000378 int ret;
379
380 if (!capable(CAP_SYS_ADMIN))
381 return -EPERM;
382
Xiao Guangrong1f781602011-04-20 10:09:16 +0000383 rcu_read_lock();
384 list_for_each_entry_rcu(device, &fs_info->fs_devices->devices,
385 dev_list) {
Li Dongyangf7039b12011-03-24 10:24:28 +0000386 if (!device->bdev)
387 continue;
388 q = bdev_get_queue(device->bdev);
389 if (blk_queue_discard(q)) {
390 num_devices++;
391 minlen = min((u64)q->limits.discard_granularity,
392 minlen);
393 }
394 }
Xiao Guangrong1f781602011-04-20 10:09:16 +0000395 rcu_read_unlock();
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200396
Li Dongyangf7039b12011-03-24 10:24:28 +0000397 if (!num_devices)
398 return -EOPNOTSUPP;
Li Dongyangf7039b12011-03-24 10:24:28 +0000399 if (copy_from_user(&range, arg, sizeof(range)))
400 return -EFAULT;
Lukas Czernere515c182012-10-16 09:34:36 +0000401 if (range.start > total_bytes ||
402 range.len < fs_info->sb->s_blocksize)
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200403 return -EINVAL;
Li Dongyangf7039b12011-03-24 10:24:28 +0000404
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200405 range.len = min(range.len, total_bytes - range.start);
Li Dongyangf7039b12011-03-24 10:24:28 +0000406 range.minlen = max(range.minlen, minlen);
Al Viro815745c2011-11-17 15:40:49 -0500407 ret = btrfs_trim_fs(fs_info->tree_root, &range);
Li Dongyangf7039b12011-03-24 10:24:28 +0000408 if (ret < 0)
409 return ret;
410
411 if (copy_to_user(arg, &range, sizeof(range)))
412 return -EFAULT;
413
414 return 0;
415}
416
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200417int btrfs_is_empty_uuid(u8 *uuid)
418{
Chris Mason46e0f662013-11-15 12:14:55 +0100419 int i;
420
421 for (i = 0; i < BTRFS_UUID_SIZE; i++) {
422 if (uuid[i])
423 return 0;
424 }
425 return 1;
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200426}
427
Miao Xied5c12072013-02-28 10:04:33 +0000428static noinline int create_subvol(struct inode *dir,
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400429 struct dentry *dentry,
Sage Weil72fd0322010-10-29 15:41:32 -0400430 char *name, int namelen,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200431 u64 *async_transid,
Miao Xie8696c532013-02-07 06:02:44 +0000432 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400433{
434 struct btrfs_trans_handle *trans;
435 struct btrfs_key key;
436 struct btrfs_root_item root_item;
437 struct btrfs_inode_item *inode_item;
438 struct extent_buffer *leaf;
Miao Xied5c12072013-02-28 10:04:33 +0000439 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -0400440 struct btrfs_root *new_root;
Miao Xied5c12072013-02-28 10:04:33 +0000441 struct btrfs_block_rsv block_rsv;
Alexander Block8ea05e32012-07-25 17:35:53 +0200442 struct timespec cur_time = CURRENT_TIME;
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900443 struct inode *inode;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400444 int ret;
445 int err;
446 u64 objectid;
447 u64 new_dirid = BTRFS_FIRST_FREE_OBJECTID;
Chris Mason3de45862008-11-17 21:02:50 -0500448 u64 index = 0;
Miao Xied5c12072013-02-28 10:04:33 +0000449 u64 qgroup_reserved;
Alexander Block8ea05e32012-07-25 17:35:53 +0200450 uuid_le new_uuid;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400451
Li Zefan581bb052011-04-20 10:06:11 +0800452 ret = btrfs_find_free_objectid(root->fs_info->tree_root, &objectid);
Al Viro2fbe8c82011-07-16 21:38:06 -0400453 if (ret)
Yan, Zhenga22285a2010-05-16 10:48:46 -0400454 return ret;
Josef Bacik6a912212010-11-20 09:48:00 +0000455
Miao Xied5c12072013-02-28 10:04:33 +0000456 btrfs_init_block_rsv(&block_rsv, BTRFS_BLOCK_RSV_TEMP);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400457 /*
Miao Xied5c12072013-02-28 10:04:33 +0000458 * The same as the snapshot creation, please see the comment
459 * of create_snapshot().
Josef Bacik9ed74f22009-09-11 16:12:44 -0400460 */
Miao Xied5c12072013-02-28 10:04:33 +0000461 ret = btrfs_subvolume_reserve_metadata(root, &block_rsv,
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200462 8, &qgroup_reserved, false);
Miao Xied5c12072013-02-28 10:04:33 +0000463 if (ret)
464 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400465
Miao Xied5c12072013-02-28 10:04:33 +0000466 trans = btrfs_start_transaction(root, 0);
467 if (IS_ERR(trans)) {
468 ret = PTR_ERR(trans);
Liu Bode6e8202014-01-09 14:57:06 +0800469 btrfs_subvolume_release_metadata(root, &block_rsv,
470 qgroup_reserved);
471 return ret;
Miao Xied5c12072013-02-28 10:04:33 +0000472 }
473 trans->block_rsv = &block_rsv;
474 trans->bytes_reserved = block_rsv.size;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400475
Miao Xie8696c532013-02-07 06:02:44 +0000476 ret = btrfs_qgroup_inherit(trans, root->fs_info, 0, objectid, inherit);
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200477 if (ret)
478 goto fail;
479
David Sterba707e8a02014-06-04 19:22:26 +0200480 leaf = btrfs_alloc_free_block(trans, root, root->nodesize,
Jan Schmidt5581a512012-05-16 17:04:52 +0200481 0, objectid, NULL, 0, 0, 0);
Josef Bacik8e8a1e32008-07-24 12:17:14 -0400482 if (IS_ERR(leaf)) {
483 ret = PTR_ERR(leaf);
484 goto fail;
485 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400486
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400487 memset_extent_buffer(leaf, 0, 0, sizeof(struct btrfs_header));
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400488 btrfs_set_header_bytenr(leaf, leaf->start);
489 btrfs_set_header_generation(leaf, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400490 btrfs_set_header_backref_rev(leaf, BTRFS_MIXED_BACKREF_REV);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400491 btrfs_set_header_owner(leaf, objectid);
492
Ross Kirk0a4e5582013-09-24 10:12:38 +0100493 write_extent_buffer(leaf, root->fs_info->fsid, btrfs_header_fsid(),
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400494 BTRFS_FSID_SIZE);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400495 write_extent_buffer(leaf, root->fs_info->chunk_tree_uuid,
Geert Uytterhoevenb308bc22013-08-20 13:20:15 +0200496 btrfs_header_chunk_tree_uuid(leaf),
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400497 BTRFS_UUID_SIZE);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400498 btrfs_mark_buffer_dirty(leaf);
499
Alexander Block8ea05e32012-07-25 17:35:53 +0200500 memset(&root_item, 0, sizeof(root_item));
501
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400502 inode_item = &root_item.inode;
Qu Wenruo3cae2102013-07-16 11:19:18 +0800503 btrfs_set_stack_inode_generation(inode_item, 1);
504 btrfs_set_stack_inode_size(inode_item, 3);
505 btrfs_set_stack_inode_nlink(inode_item, 1);
David Sterba707e8a02014-06-04 19:22:26 +0200506 btrfs_set_stack_inode_nbytes(inode_item, root->nodesize);
Qu Wenruo3cae2102013-07-16 11:19:18 +0800507 btrfs_set_stack_inode_mode(inode_item, S_IFDIR | 0755);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400508
Qu Wenruo3cae2102013-07-16 11:19:18 +0800509 btrfs_set_root_flags(&root_item, 0);
510 btrfs_set_root_limit(&root_item, 0);
511 btrfs_set_stack_inode_flags(inode_item, BTRFS_INODE_ROOT_ITEM_INIT);
Li Zefan08fe4db2011-03-28 02:01:25 +0000512
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400513 btrfs_set_root_bytenr(&root_item, leaf->start);
Yan Zheng84234f32008-10-29 14:49:05 -0400514 btrfs_set_root_generation(&root_item, trans->transid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400515 btrfs_set_root_level(&root_item, 0);
516 btrfs_set_root_refs(&root_item, 1);
Yan, Zheng86b9f2e2009-11-12 09:36:50 +0000517 btrfs_set_root_used(&root_item, leaf->len);
Yan Zheng80ff3852008-10-30 14:20:02 -0400518 btrfs_set_root_last_snapshot(&root_item, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400519
Alexander Block8ea05e32012-07-25 17:35:53 +0200520 btrfs_set_root_generation_v2(&root_item,
521 btrfs_root_generation(&root_item));
522 uuid_le_gen(&new_uuid);
523 memcpy(root_item.uuid, new_uuid.b, BTRFS_UUID_SIZE);
Qu Wenruo3cae2102013-07-16 11:19:18 +0800524 btrfs_set_stack_timespec_sec(&root_item.otime, cur_time.tv_sec);
525 btrfs_set_stack_timespec_nsec(&root_item.otime, cur_time.tv_nsec);
Alexander Block8ea05e32012-07-25 17:35:53 +0200526 root_item.ctime = root_item.otime;
527 btrfs_set_root_ctransid(&root_item, trans->transid);
528 btrfs_set_root_otransid(&root_item, trans->transid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400529
Chris Mason925baed2008-06-25 16:01:30 -0400530 btrfs_tree_unlock(leaf);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400531 free_extent_buffer(leaf);
532 leaf = NULL;
533
534 btrfs_set_root_dirid(&root_item, new_dirid);
535
536 key.objectid = objectid;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400537 key.offset = 0;
David Sterba962a2982014-06-04 18:41:45 +0200538 key.type = BTRFS_ROOT_ITEM_KEY;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400539 ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
540 &root_item);
541 if (ret)
542 goto fail;
543
Yan, Zheng76dda932009-09-21 16:00:26 -0400544 key.offset = (u64)-1;
545 new_root = btrfs_read_fs_root_no_name(root->fs_info, &key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100546 if (IS_ERR(new_root)) {
547 btrfs_abort_transaction(trans, root, PTR_ERR(new_root));
548 ret = PTR_ERR(new_root);
549 goto fail;
550 }
Yan, Zheng76dda932009-09-21 16:00:26 -0400551
552 btrfs_record_root_in_trans(trans, new_root);
553
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000554 ret = btrfs_create_subvol_root(trans, new_root, root, new_dirid);
Mark Fashehce598972011-07-26 11:32:23 -0700555 if (ret) {
556 /* We potentially lose an unused inode item here */
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100557 btrfs_abort_transaction(trans, root, ret);
Mark Fashehce598972011-07-26 11:32:23 -0700558 goto fail;
559 }
560
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400561 /*
562 * insert the directory item
563 */
Chris Mason3de45862008-11-17 21:02:50 -0500564 ret = btrfs_set_inode_index(dir, &index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100565 if (ret) {
566 btrfs_abort_transaction(trans, root, ret);
567 goto fail;
568 }
Chris Mason3de45862008-11-17 21:02:50 -0500569
570 ret = btrfs_insert_dir_item(trans, root,
Miao Xie16cdcec2011-04-22 18:12:22 +0800571 name, namelen, dir, &key,
Chris Mason3de45862008-11-17 21:02:50 -0500572 BTRFS_FT_DIR, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100573 if (ret) {
574 btrfs_abort_transaction(trans, root, ret);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400575 goto fail;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100576 }
Chris Mason0660b5a2008-11-17 20:37:39 -0500577
Yan Zheng52c26172009-01-05 15:43:43 -0500578 btrfs_i_size_write(dir, dir->i_size + namelen * 2);
579 ret = btrfs_update_inode(trans, root, dir);
580 BUG_ON(ret);
581
Chris Mason0660b5a2008-11-17 20:37:39 -0500582 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -0400583 objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +0800584 btrfs_ino(dir), index, name, namelen);
Chris Mason0660b5a2008-11-17 20:37:39 -0500585 BUG_ON(ret);
586
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200587 ret = btrfs_uuid_tree_add(trans, root->fs_info->uuid_root,
588 root_item.uuid, BTRFS_UUID_KEY_SUBVOL,
589 objectid);
590 if (ret)
591 btrfs_abort_transaction(trans, root, ret);
592
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400593fail:
Miao Xied5c12072013-02-28 10:04:33 +0000594 trans->block_rsv = NULL;
595 trans->bytes_reserved = 0;
Liu Bode6e8202014-01-09 14:57:06 +0800596 btrfs_subvolume_release_metadata(root, &block_rsv, qgroup_reserved);
597
Sage Weil72fd0322010-10-29 15:41:32 -0400598 if (async_transid) {
599 *async_transid = trans->transid;
600 err = btrfs_commit_transaction_async(trans, root, 1);
Miao Xie00d71c92013-03-04 09:45:06 +0000601 if (err)
602 err = btrfs_commit_transaction(trans, root);
Sage Weil72fd0322010-10-29 15:41:32 -0400603 } else {
604 err = btrfs_commit_transaction(trans, root);
605 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400606 if (err && !ret)
607 ret = err;
Chris Mason1a65e242013-02-06 12:06:02 -0500608
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900609 if (!ret) {
610 inode = btrfs_lookup_dentry(dir, dentry);
Liu Bode6e8202014-01-09 14:57:06 +0800611 if (IS_ERR(inode))
612 return PTR_ERR(inode);
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900613 d_instantiate(dentry, inode);
614 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400615 return ret;
616}
617
Miao Xie8257b2d2014-03-06 13:38:19 +0800618static void btrfs_wait_nocow_write(struct btrfs_root *root)
619{
620 s64 writers;
621 DEFINE_WAIT(wait);
622
623 do {
624 prepare_to_wait(&root->subv_writers->wait, &wait,
625 TASK_UNINTERRUPTIBLE);
626
627 writers = percpu_counter_sum(&root->subv_writers->counter);
628 if (writers)
629 schedule();
630
631 finish_wait(&root->subv_writers->wait, &wait);
632 } while (writers);
633}
634
Miao Xiee9662f72013-02-28 10:01:15 +0000635static int create_snapshot(struct btrfs_root *root, struct inode *dir,
636 struct dentry *dentry, char *name, int namelen,
637 u64 *async_transid, bool readonly,
638 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400639{
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000640 struct inode *inode;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400641 struct btrfs_pending_snapshot *pending_snapshot;
642 struct btrfs_trans_handle *trans;
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000643 int ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400644
Miao Xie27cdeb72014-04-02 19:51:05 +0800645 if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400646 return -EINVAL;
647
Miao Xie8257b2d2014-03-06 13:38:19 +0800648 atomic_inc(&root->will_be_snapshoted);
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100649 smp_mb__after_atomic();
Miao Xie8257b2d2014-03-06 13:38:19 +0800650 btrfs_wait_nocow_write(root);
651
Miao Xie6a038432013-05-15 07:48:24 +0000652 ret = btrfs_start_delalloc_inodes(root, 0);
653 if (ret)
Miao Xie8257b2d2014-03-06 13:38:19 +0800654 goto out;
Miao Xie6a038432013-05-15 07:48:24 +0000655
Miao Xieb0244192013-11-04 23:13:25 +0800656 btrfs_wait_ordered_extents(root, -1);
Miao Xie6a038432013-05-15 07:48:24 +0000657
Yan, Zhenga22285a2010-05-16 10:48:46 -0400658 pending_snapshot = kzalloc(sizeof(*pending_snapshot), GFP_NOFS);
Miao Xie8257b2d2014-03-06 13:38:19 +0800659 if (!pending_snapshot) {
660 ret = -ENOMEM;
661 goto out;
662 }
Yan, Zhenga22285a2010-05-16 10:48:46 -0400663
Miao Xie66d8f3d2012-09-06 04:02:28 -0600664 btrfs_init_block_rsv(&pending_snapshot->block_rsv,
665 BTRFS_BLOCK_RSV_TEMP);
Miao Xied5c12072013-02-28 10:04:33 +0000666 /*
667 * 1 - parent dir inode
668 * 2 - dir entries
669 * 1 - root item
670 * 2 - root ref/backref
671 * 1 - root of snapshot
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200672 * 1 - UUID item
Miao Xied5c12072013-02-28 10:04:33 +0000673 */
674 ret = btrfs_subvolume_reserve_metadata(BTRFS_I(dir)->root,
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200675 &pending_snapshot->block_rsv, 8,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -0400676 &pending_snapshot->qgroup_reserved,
677 false);
Miao Xied5c12072013-02-28 10:04:33 +0000678 if (ret)
Miao Xie8257b2d2014-03-06 13:38:19 +0800679 goto free;
Miao Xied5c12072013-02-28 10:04:33 +0000680
Yan, Zhenga22285a2010-05-16 10:48:46 -0400681 pending_snapshot->dentry = dentry;
682 pending_snapshot->root = root;
Li Zefanb83cc962010-12-20 16:04:08 +0800683 pending_snapshot->readonly = readonly;
Miao Xiee9662f72013-02-28 10:01:15 +0000684 pending_snapshot->dir = dir;
Miao Xie8696c532013-02-07 06:02:44 +0000685 pending_snapshot->inherit = inherit;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400686
Miao Xied5c12072013-02-28 10:04:33 +0000687 trans = btrfs_start_transaction(root, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400688 if (IS_ERR(trans)) {
689 ret = PTR_ERR(trans);
690 goto fail;
691 }
692
Josef Bacik83515832011-06-14 15:16:14 -0400693 spin_lock(&root->fs_info->trans_lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400694 list_add(&pending_snapshot->list,
695 &trans->transaction->pending_snapshots);
Josef Bacik83515832011-06-14 15:16:14 -0400696 spin_unlock(&root->fs_info->trans_lock);
Sage Weil72fd0322010-10-29 15:41:32 -0400697 if (async_transid) {
698 *async_transid = trans->transid;
699 ret = btrfs_commit_transaction_async(trans,
700 root->fs_info->extent_root, 1);
Miao Xie00d71c92013-03-04 09:45:06 +0000701 if (ret)
702 ret = btrfs_commit_transaction(trans, root);
Sage Weil72fd0322010-10-29 15:41:32 -0400703 } else {
704 ret = btrfs_commit_transaction(trans,
705 root->fs_info->extent_root);
706 }
Miao Xieaec80302013-03-04 09:44:29 +0000707 if (ret)
Josef Bacikc37b2b62012-10-22 15:51:44 -0400708 goto fail;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400709
710 ret = pending_snapshot->error;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400711 if (ret)
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000712 goto fail;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400713
Al Viro2fbe8c82011-07-16 21:38:06 -0400714 inode = btrfs_lookup_dentry(dentry->d_parent->d_inode, dentry);
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000715 if (IS_ERR(inode)) {
716 ret = PTR_ERR(inode);
717 goto fail;
718 }
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900719
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000720 d_instantiate(dentry, inode);
721 ret = 0;
722fail:
Miao Xied5c12072013-02-28 10:04:33 +0000723 btrfs_subvolume_release_metadata(BTRFS_I(dir)->root,
724 &pending_snapshot->block_rsv,
725 pending_snapshot->qgroup_reserved);
Miao Xie8257b2d2014-03-06 13:38:19 +0800726free:
Yan, Zhenga22285a2010-05-16 10:48:46 -0400727 kfree(pending_snapshot);
Miao Xie8257b2d2014-03-06 13:38:19 +0800728out:
729 atomic_dec(&root->will_be_snapshoted);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400730 return ret;
731}
732
Sage Weil4260f7c2010-10-29 15:46:43 -0400733/* copy of check_sticky in fs/namei.c()
734* It's inline, so penalty for filesystems that don't use sticky bit is
735* minimal.
736*/
737static inline int btrfs_check_sticky(struct inode *dir, struct inode *inode)
738{
Eric W. Biederman2f2f43d2012-02-10 11:05:07 -0800739 kuid_t fsuid = current_fsuid();
Sage Weil4260f7c2010-10-29 15:46:43 -0400740
741 if (!(dir->i_mode & S_ISVTX))
742 return 0;
Eric W. Biederman2f2f43d2012-02-10 11:05:07 -0800743 if (uid_eq(inode->i_uid, fsuid))
Sage Weil4260f7c2010-10-29 15:46:43 -0400744 return 0;
Eric W. Biederman2f2f43d2012-02-10 11:05:07 -0800745 if (uid_eq(dir->i_uid, fsuid))
Sage Weil4260f7c2010-10-29 15:46:43 -0400746 return 0;
747 return !capable(CAP_FOWNER);
748}
749
750/* copy of may_delete in fs/namei.c()
751 * Check whether we can remove a link victim from directory dir, check
752 * whether the type of victim is right.
753 * 1. We can't do it if dir is read-only (done in permission())
754 * 2. We should have write and exec permissions on dir
755 * 3. We can't remove anything from append-only dir
756 * 4. We can't do anything with immutable dir (done in permission())
757 * 5. If the sticky bit on dir is set we should either
758 * a. be owner of dir, or
759 * b. be owner of victim, or
760 * c. have CAP_FOWNER capability
761 * 6. If the victim is append-only or immutable we can't do antyhing with
762 * links pointing to it.
763 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
764 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
765 * 9. We can't remove a root or mountpoint.
766 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
767 * nfs_async_unlink().
768 */
769
Dulshani Gunawardhana67871252013-10-31 10:33:04 +0530770static int btrfs_may_delete(struct inode *dir, struct dentry *victim, int isdir)
Sage Weil4260f7c2010-10-29 15:46:43 -0400771{
772 int error;
773
774 if (!victim->d_inode)
775 return -ENOENT;
776
777 BUG_ON(victim->d_parent->d_inode != dir);
Jeff Layton4fa6b5e2012-10-10 15:25:25 -0400778 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
Sage Weil4260f7c2010-10-29 15:46:43 -0400779
780 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
781 if (error)
782 return error;
783 if (IS_APPEND(dir))
784 return -EPERM;
785 if (btrfs_check_sticky(dir, victim->d_inode)||
786 IS_APPEND(victim->d_inode)||
787 IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode))
788 return -EPERM;
789 if (isdir) {
790 if (!S_ISDIR(victim->d_inode->i_mode))
791 return -ENOTDIR;
792 if (IS_ROOT(victim))
793 return -EBUSY;
794 } else if (S_ISDIR(victim->d_inode->i_mode))
795 return -EISDIR;
796 if (IS_DEADDIR(dir))
797 return -ENOENT;
798 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
799 return -EBUSY;
800 return 0;
801}
802
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400803/* copy of may_create in fs/namei.c() */
804static inline int btrfs_may_create(struct inode *dir, struct dentry *child)
805{
806 if (child->d_inode)
807 return -EEXIST;
808 if (IS_DEADDIR(dir))
809 return -ENOENT;
810 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
811}
812
813/*
814 * Create a new subvolume below @parent. This is largely modeled after
815 * sys_mkdirat and vfs_mkdir, but we only do a single component lookup
816 * inside this filesystem so it's quite a bit simpler.
817 */
Yan, Zheng76dda932009-09-21 16:00:26 -0400818static noinline int btrfs_mksubvol(struct path *parent,
819 char *name, int namelen,
Sage Weil72fd0322010-10-29 15:41:32 -0400820 struct btrfs_root *snap_src,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200821 u64 *async_transid, bool readonly,
Miao Xie8696c532013-02-07 06:02:44 +0000822 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400823{
Yan, Zheng76dda932009-09-21 16:00:26 -0400824 struct inode *dir = parent->dentry->d_inode;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400825 struct dentry *dentry;
826 int error;
827
David Sterba5c50c9b2013-03-22 18:12:51 +0000828 error = mutex_lock_killable_nested(&dir->i_mutex, I_MUTEX_PARENT);
829 if (error == -EINTR)
830 return error;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400831
832 dentry = lookup_one_len(name, parent->dentry, namelen);
833 error = PTR_ERR(dentry);
834 if (IS_ERR(dentry))
835 goto out_unlock;
836
837 error = -EEXIST;
838 if (dentry->d_inode)
839 goto out_dput;
840
Yan, Zheng76dda932009-09-21 16:00:26 -0400841 error = btrfs_may_create(dir, dentry);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400842 if (error)
Liu Boa874a632012-06-29 03:58:46 -0600843 goto out_dput;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400844
Chris Mason9c520572012-12-17 14:26:57 -0500845 /*
846 * even if this name doesn't exist, we may get hash collisions.
847 * check for them now when we can safely fail
848 */
849 error = btrfs_check_dir_item_collision(BTRFS_I(dir)->root,
850 dir->i_ino, name,
851 namelen);
852 if (error)
853 goto out_dput;
854
Yan, Zheng76dda932009-09-21 16:00:26 -0400855 down_read(&BTRFS_I(dir)->root->fs_info->subvol_sem);
856
857 if (btrfs_root_refs(&BTRFS_I(dir)->root->root_item) == 0)
858 goto out_up_read;
859
Chris Mason3de45862008-11-17 21:02:50 -0500860 if (snap_src) {
Miao Xiee9662f72013-02-28 10:01:15 +0000861 error = create_snapshot(snap_src, dir, dentry, name, namelen,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200862 async_transid, readonly, inherit);
Chris Mason3de45862008-11-17 21:02:50 -0500863 } else {
Miao Xied5c12072013-02-28 10:04:33 +0000864 error = create_subvol(dir, dentry, name, namelen,
865 async_transid, inherit);
Chris Mason3de45862008-11-17 21:02:50 -0500866 }
Yan, Zheng76dda932009-09-21 16:00:26 -0400867 if (!error)
868 fsnotify_mkdir(dir, dentry);
869out_up_read:
870 up_read(&BTRFS_I(dir)->root->fs_info->subvol_sem);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400871out_dput:
872 dput(dentry);
873out_unlock:
Yan, Zheng76dda932009-09-21 16:00:26 -0400874 mutex_unlock(&dir->i_mutex);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400875 return error;
876}
877
Chris Mason4cb53002011-05-24 15:35:30 -0400878/*
879 * When we're defragging a range, we don't want to kick it off again
880 * if it is really just waiting for delalloc to send it down.
881 * If we find a nice big extent or delalloc range for the bytes in the
882 * file you want to defrag, we return 0 to let you know to skip this
883 * part of the file
884 */
885static int check_defrag_in_cache(struct inode *inode, u64 offset, int thresh)
886{
887 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
888 struct extent_map *em = NULL;
889 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
890 u64 end;
891
892 read_lock(&em_tree->lock);
893 em = lookup_extent_mapping(em_tree, offset, PAGE_CACHE_SIZE);
894 read_unlock(&em_tree->lock);
895
896 if (em) {
897 end = extent_map_end(em);
898 free_extent_map(em);
899 if (end - offset > thresh)
900 return 0;
901 }
902 /* if we already have a nice delalloc here, just stop */
903 thresh /= 2;
904 end = count_range_bits(io_tree, &offset, offset + thresh,
905 thresh, EXTENT_DELALLOC, 1);
906 if (end >= thresh)
907 return 0;
908 return 1;
909}
910
911/*
912 * helper function to walk through a file and find extents
913 * newer than a specific transid, and smaller than thresh.
914 *
915 * This is used by the defragging code to find new and small
916 * extents
917 */
918static int find_new_extents(struct btrfs_root *root,
919 struct inode *inode, u64 newer_than,
920 u64 *off, int thresh)
921{
922 struct btrfs_path *path;
923 struct btrfs_key min_key;
Chris Mason4cb53002011-05-24 15:35:30 -0400924 struct extent_buffer *leaf;
925 struct btrfs_file_extent_item *extent;
926 int type;
927 int ret;
David Sterbaa4689d22011-05-31 17:08:14 +0000928 u64 ino = btrfs_ino(inode);
Chris Mason4cb53002011-05-24 15:35:30 -0400929
930 path = btrfs_alloc_path();
931 if (!path)
932 return -ENOMEM;
933
David Sterbaa4689d22011-05-31 17:08:14 +0000934 min_key.objectid = ino;
Chris Mason4cb53002011-05-24 15:35:30 -0400935 min_key.type = BTRFS_EXTENT_DATA_KEY;
936 min_key.offset = *off;
937
Dulshani Gunawardhana67871252013-10-31 10:33:04 +0530938 while (1) {
Filipe Mananaf094c9bd2014-03-12 01:28:24 +0000939 path->keep_locks = 1;
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +0100940 ret = btrfs_search_forward(root, &min_key, path, newer_than);
Chris Mason4cb53002011-05-24 15:35:30 -0400941 if (ret != 0)
942 goto none;
Filipe Mananaf094c9bd2014-03-12 01:28:24 +0000943 path->keep_locks = 0;
944 btrfs_unlock_up_safe(path, 1);
945process_slot:
David Sterbaa4689d22011-05-31 17:08:14 +0000946 if (min_key.objectid != ino)
Chris Mason4cb53002011-05-24 15:35:30 -0400947 goto none;
948 if (min_key.type != BTRFS_EXTENT_DATA_KEY)
949 goto none;
950
951 leaf = path->nodes[0];
952 extent = btrfs_item_ptr(leaf, path->slots[0],
953 struct btrfs_file_extent_item);
954
955 type = btrfs_file_extent_type(leaf, extent);
956 if (type == BTRFS_FILE_EXTENT_REG &&
957 btrfs_file_extent_num_bytes(leaf, extent) < thresh &&
958 check_defrag_in_cache(inode, min_key.offset, thresh)) {
959 *off = min_key.offset;
960 btrfs_free_path(path);
961 return 0;
962 }
963
Filipe Mananaf094c9bd2014-03-12 01:28:24 +0000964 path->slots[0]++;
965 if (path->slots[0] < btrfs_header_nritems(leaf)) {
966 btrfs_item_key_to_cpu(leaf, &min_key, path->slots[0]);
967 goto process_slot;
968 }
969
Chris Mason4cb53002011-05-24 15:35:30 -0400970 if (min_key.offset == (u64)-1)
971 goto none;
972
973 min_key.offset++;
974 btrfs_release_path(path);
975 }
976none:
977 btrfs_free_path(path);
978 return -ENOENT;
979}
980
Li Zefan6c282eb2012-06-11 16:03:35 +0800981static struct extent_map *defrag_lookup_extent(struct inode *inode, u64 start)
Liu Bo17ce6ef2012-03-29 09:57:45 -0400982{
983 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason940100a2010-03-10 10:52:59 -0500984 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Li Zefan6c282eb2012-06-11 16:03:35 +0800985 struct extent_map *em;
986 u64 len = PAGE_CACHE_SIZE;
Chris Mason940100a2010-03-10 10:52:59 -0500987
988 /*
989 * hopefully we have this extent in the tree already, try without
990 * the full extent lock
991 */
992 read_lock(&em_tree->lock);
993 em = lookup_extent_mapping(em_tree, start, len);
994 read_unlock(&em_tree->lock);
995
996 if (!em) {
Filipe Manana308d9802014-03-11 13:56:15 +0000997 struct extent_state *cached = NULL;
998 u64 end = start + len - 1;
999
Chris Mason940100a2010-03-10 10:52:59 -05001000 /* get the big lock and read metadata off disk */
Filipe Manana308d9802014-03-11 13:56:15 +00001001 lock_extent_bits(io_tree, start, end, 0, &cached);
Chris Mason940100a2010-03-10 10:52:59 -05001002 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
Filipe Manana308d9802014-03-11 13:56:15 +00001003 unlock_extent_cached(io_tree, start, end, &cached, GFP_NOFS);
Chris Mason940100a2010-03-10 10:52:59 -05001004
Dan Carpenter6cf8bfb2010-03-20 11:22:10 +00001005 if (IS_ERR(em))
Li Zefan6c282eb2012-06-11 16:03:35 +08001006 return NULL;
Chris Mason940100a2010-03-10 10:52:59 -05001007 }
1008
Li Zefan6c282eb2012-06-11 16:03:35 +08001009 return em;
1010}
1011
1012static bool defrag_check_next_extent(struct inode *inode, struct extent_map *em)
1013{
1014 struct extent_map *next;
1015 bool ret = true;
1016
1017 /* this is the last extent */
1018 if (em->start + em->len >= i_size_read(inode))
1019 return false;
1020
1021 next = defrag_lookup_extent(inode, em->start + em->len);
Chris Masone9512d72014-08-26 13:55:54 -07001022 if (!next || next->block_start >= EXTENT_MAP_LAST_BYTE)
1023 ret = false;
1024 else if ((em->block_start + em->block_len == next->block_start) &&
1025 (em->block_len > 128 * 1024 && next->block_len > 128 * 1024))
Li Zefan6c282eb2012-06-11 16:03:35 +08001026 ret = false;
1027
1028 free_extent_map(next);
1029 return ret;
1030}
1031
1032static int should_defrag_range(struct inode *inode, u64 start, int thresh,
Andrew Mahonea43a2112012-06-19 21:08:32 -04001033 u64 *last_len, u64 *skip, u64 *defrag_end,
1034 int compress)
Li Zefan6c282eb2012-06-11 16:03:35 +08001035{
1036 struct extent_map *em;
1037 int ret = 1;
1038 bool next_mergeable = true;
1039
1040 /*
1041 * make sure that once we start defragging an extent, we keep on
1042 * defragging it
1043 */
1044 if (start < *defrag_end)
1045 return 1;
1046
1047 *skip = 0;
1048
1049 em = defrag_lookup_extent(inode, start);
1050 if (!em)
1051 return 0;
1052
Chris Mason940100a2010-03-10 10:52:59 -05001053 /* this will cover holes, and inline extents */
Liu Bo17ce6ef2012-03-29 09:57:45 -04001054 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
Chris Mason940100a2010-03-10 10:52:59 -05001055 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -04001056 goto out;
1057 }
1058
Li Zefan6c282eb2012-06-11 16:03:35 +08001059 next_mergeable = defrag_check_next_extent(inode, em);
Chris Mason940100a2010-03-10 10:52:59 -05001060 /*
Li Zefan6c282eb2012-06-11 16:03:35 +08001061 * we hit a real extent, if it is big or the next extent is not a
1062 * real extent, don't bother defragging it
Chris Mason940100a2010-03-10 10:52:59 -05001063 */
Andrew Mahonea43a2112012-06-19 21:08:32 -04001064 if (!compress && (*last_len == 0 || *last_len >= thresh) &&
Li Zefan6c282eb2012-06-11 16:03:35 +08001065 (em->len >= thresh || !next_mergeable))
Chris Mason940100a2010-03-10 10:52:59 -05001066 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -04001067out:
Chris Mason940100a2010-03-10 10:52:59 -05001068 /*
1069 * last_len ends up being a counter of how many bytes we've defragged.
1070 * every time we choose not to defrag an extent, we reset *last_len
1071 * so that the next tiny extent will force a defrag.
1072 *
1073 * The end result of this is that tiny extents before a single big
1074 * extent will force at least part of that big extent to be defragged.
1075 */
1076 if (ret) {
Chris Mason940100a2010-03-10 10:52:59 -05001077 *defrag_end = extent_map_end(em);
1078 } else {
1079 *last_len = 0;
1080 *skip = extent_map_end(em);
1081 *defrag_end = 0;
1082 }
1083
1084 free_extent_map(em);
1085 return ret;
1086}
1087
Chris Mason4cb53002011-05-24 15:35:30 -04001088/*
1089 * it doesn't do much good to defrag one or two pages
1090 * at a time. This pulls in a nice chunk of pages
1091 * to COW and defrag.
1092 *
1093 * It also makes sure the delalloc code has enough
1094 * dirty data to avoid making new small extents as part
1095 * of the defrag
1096 *
1097 * It's a good idea to start RA on this range
1098 * before calling this.
1099 */
1100static int cluster_pages_for_defrag(struct inode *inode,
1101 struct page **pages,
1102 unsigned long start_index,
Justin Maggardc41570c2014-01-21 11:18:29 -08001103 unsigned long num_pages)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001104{
Chris Mason4cb53002011-05-24 15:35:30 -04001105 unsigned long file_end;
1106 u64 isize = i_size_read(inode);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001107 u64 page_start;
1108 u64 page_end;
Liu Bo1f12bd02012-03-29 09:57:44 -04001109 u64 page_cnt;
Chris Mason4cb53002011-05-24 15:35:30 -04001110 int ret;
1111 int i;
1112 int i_done;
1113 struct btrfs_ordered_extent *ordered;
1114 struct extent_state *cached_state = NULL;
Miao Xie600a45e2012-02-16 15:01:24 +08001115 struct extent_io_tree *tree;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04001116 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
Chris Mason4cb53002011-05-24 15:35:30 -04001117
Chris Mason4cb53002011-05-24 15:35:30 -04001118 file_end = (isize - 1) >> PAGE_CACHE_SHIFT;
Liu Bo1f12bd02012-03-29 09:57:44 -04001119 if (!isize || start_index > file_end)
1120 return 0;
1121
1122 page_cnt = min_t(u64, (u64)num_pages, (u64)file_end - start_index + 1);
Chris Mason4cb53002011-05-24 15:35:30 -04001123
1124 ret = btrfs_delalloc_reserve_space(inode,
Liu Bo1f12bd02012-03-29 09:57:44 -04001125 page_cnt << PAGE_CACHE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001126 if (ret)
1127 return ret;
Chris Mason4cb53002011-05-24 15:35:30 -04001128 i_done = 0;
Miao Xie600a45e2012-02-16 15:01:24 +08001129 tree = &BTRFS_I(inode)->io_tree;
Chris Mason4cb53002011-05-24 15:35:30 -04001130
1131 /* step one, lock all the pages */
Liu Bo1f12bd02012-03-29 09:57:44 -04001132 for (i = 0; i < page_cnt; i++) {
Chris Mason4cb53002011-05-24 15:35:30 -04001133 struct page *page;
Miao Xie600a45e2012-02-16 15:01:24 +08001134again:
Josef Bacika94733d2011-07-11 10:47:06 -04001135 page = find_or_create_page(inode->i_mapping,
Miao Xie600a45e2012-02-16 15:01:24 +08001136 start_index + i, mask);
Chris Mason4cb53002011-05-24 15:35:30 -04001137 if (!page)
1138 break;
1139
Miao Xie600a45e2012-02-16 15:01:24 +08001140 page_start = page_offset(page);
1141 page_end = page_start + PAGE_CACHE_SIZE - 1;
1142 while (1) {
Filipe Manana308d9802014-03-11 13:56:15 +00001143 lock_extent_bits(tree, page_start, page_end,
1144 0, &cached_state);
Miao Xie600a45e2012-02-16 15:01:24 +08001145 ordered = btrfs_lookup_ordered_extent(inode,
1146 page_start);
Filipe Manana308d9802014-03-11 13:56:15 +00001147 unlock_extent_cached(tree, page_start, page_end,
1148 &cached_state, GFP_NOFS);
Miao Xie600a45e2012-02-16 15:01:24 +08001149 if (!ordered)
1150 break;
1151
1152 unlock_page(page);
1153 btrfs_start_ordered_extent(inode, ordered, 1);
1154 btrfs_put_ordered_extent(ordered);
1155 lock_page(page);
Liu Bo1f12bd02012-03-29 09:57:44 -04001156 /*
1157 * we unlocked the page above, so we need check if
1158 * it was released or not.
1159 */
1160 if (page->mapping != inode->i_mapping) {
1161 unlock_page(page);
1162 page_cache_release(page);
1163 goto again;
1164 }
Miao Xie600a45e2012-02-16 15:01:24 +08001165 }
1166
Chris Mason4cb53002011-05-24 15:35:30 -04001167 if (!PageUptodate(page)) {
1168 btrfs_readpage(NULL, page);
1169 lock_page(page);
1170 if (!PageUptodate(page)) {
1171 unlock_page(page);
1172 page_cache_release(page);
1173 ret = -EIO;
1174 break;
1175 }
1176 }
Miao Xie600a45e2012-02-16 15:01:24 +08001177
Miao Xie600a45e2012-02-16 15:01:24 +08001178 if (page->mapping != inode->i_mapping) {
1179 unlock_page(page);
1180 page_cache_release(page);
1181 goto again;
1182 }
1183
Chris Mason4cb53002011-05-24 15:35:30 -04001184 pages[i] = page;
1185 i_done++;
1186 }
1187 if (!i_done || ret)
1188 goto out;
1189
1190 if (!(inode->i_sb->s_flags & MS_ACTIVE))
1191 goto out;
1192
1193 /*
1194 * so now we have a nice long stream of locked
1195 * and up to date pages, lets wait on them
1196 */
1197 for (i = 0; i < i_done; i++)
1198 wait_on_page_writeback(pages[i]);
1199
1200 page_start = page_offset(pages[0]);
1201 page_end = page_offset(pages[i_done - 1]) + PAGE_CACHE_SIZE;
1202
1203 lock_extent_bits(&BTRFS_I(inode)->io_tree,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001204 page_start, page_end - 1, 0, &cached_state);
Chris Mason4cb53002011-05-24 15:35:30 -04001205 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start,
1206 page_end - 1, EXTENT_DIRTY | EXTENT_DELALLOC |
Liu Bo9e8a4a82012-09-05 19:10:51 -06001207 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, 0, 0,
1208 &cached_state, GFP_NOFS);
Chris Mason4cb53002011-05-24 15:35:30 -04001209
Liu Bo1f12bd02012-03-29 09:57:44 -04001210 if (i_done != page_cnt) {
Josef Bacik9e0baf62011-07-15 15:16:44 +00001211 spin_lock(&BTRFS_I(inode)->lock);
1212 BTRFS_I(inode)->outstanding_extents++;
1213 spin_unlock(&BTRFS_I(inode)->lock);
Chris Mason4cb53002011-05-24 15:35:30 -04001214 btrfs_delalloc_release_space(inode,
Liu Bo1f12bd02012-03-29 09:57:44 -04001215 (page_cnt - i_done) << PAGE_CACHE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001216 }
1217
1218
Liu Bo9e8a4a82012-09-05 19:10:51 -06001219 set_extent_defrag(&BTRFS_I(inode)->io_tree, page_start, page_end - 1,
1220 &cached_state, GFP_NOFS);
Chris Mason4cb53002011-05-24 15:35:30 -04001221
1222 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
1223 page_start, page_end - 1, &cached_state,
1224 GFP_NOFS);
1225
1226 for (i = 0; i < i_done; i++) {
1227 clear_page_dirty_for_io(pages[i]);
1228 ClearPageChecked(pages[i]);
1229 set_page_extent_mapped(pages[i]);
1230 set_page_dirty(pages[i]);
1231 unlock_page(pages[i]);
1232 page_cache_release(pages[i]);
1233 }
1234 return i_done;
1235out:
1236 for (i = 0; i < i_done; i++) {
1237 unlock_page(pages[i]);
1238 page_cache_release(pages[i]);
1239 }
Liu Bo1f12bd02012-03-29 09:57:44 -04001240 btrfs_delalloc_release_space(inode, page_cnt << PAGE_CACHE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001241 return ret;
1242
1243}
1244
1245int btrfs_defrag_file(struct inode *inode, struct file *file,
1246 struct btrfs_ioctl_defrag_range_args *range,
1247 u64 newer_than, unsigned long max_to_defrag)
1248{
1249 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason4cb53002011-05-24 15:35:30 -04001250 struct file_ra_state *ra = NULL;
1251 unsigned long last_index;
Li Zefan151a31b2011-09-02 15:56:39 +08001252 u64 isize = i_size_read(inode);
Chris Mason940100a2010-03-10 10:52:59 -05001253 u64 last_len = 0;
1254 u64 skip = 0;
1255 u64 defrag_end = 0;
Chris Mason4cb53002011-05-24 15:35:30 -04001256 u64 newer_off = range->start;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001257 unsigned long i;
Li Zefan008873e2011-09-02 15:57:07 +08001258 unsigned long ra_index = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001259 int ret;
Chris Mason4cb53002011-05-24 15:35:30 -04001260 int defrag_count = 0;
Li Zefan1a419d82010-10-25 15:12:50 +08001261 int compress_type = BTRFS_COMPRESS_ZLIB;
Chris Mason4cb53002011-05-24 15:35:30 -04001262 int extent_thresh = range->extent_thresh;
Justin Maggardc41570c2014-01-21 11:18:29 -08001263 unsigned long max_cluster = (256 * 1024) >> PAGE_CACHE_SHIFT;
1264 unsigned long cluster = max_cluster;
Chris Mason4cb53002011-05-24 15:35:30 -04001265 u64 new_align = ~((u64)128 * 1024 - 1);
1266 struct page **pages = NULL;
1267
Liu Bo0abd5b12013-04-16 09:20:28 +00001268 if (isize == 0)
1269 return 0;
1270
1271 if (range->start >= isize)
1272 return -EINVAL;
Li Zefan1a419d82010-10-25 15:12:50 +08001273
1274 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS) {
1275 if (range->compress_type > BTRFS_COMPRESS_TYPES)
1276 return -EINVAL;
1277 if (range->compress_type)
1278 compress_type = range->compress_type;
1279 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001280
Liu Bo0abd5b12013-04-16 09:20:28 +00001281 if (extent_thresh == 0)
1282 extent_thresh = 256 * 1024;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001283
Chris Mason4cb53002011-05-24 15:35:30 -04001284 /*
1285 * if we were not given a file, allocate a readahead
1286 * context
1287 */
1288 if (!file) {
1289 ra = kzalloc(sizeof(*ra), GFP_NOFS);
1290 if (!ra)
1291 return -ENOMEM;
1292 file_ra_state_init(ra, inode->i_mapping);
1293 } else {
1294 ra = &file->f_ra;
1295 }
1296
Dulshani Gunawardhanad9b0d9b2013-10-31 10:32:18 +05301297 pages = kmalloc_array(max_cluster, sizeof(struct page *),
Chris Mason4cb53002011-05-24 15:35:30 -04001298 GFP_NOFS);
1299 if (!pages) {
1300 ret = -ENOMEM;
1301 goto out_ra;
1302 }
1303
1304 /* find the last page to defrag */
Chris Mason1e701a32010-03-11 09:42:04 -05001305 if (range->start + range->len > range->start) {
Li Zefan151a31b2011-09-02 15:56:39 +08001306 last_index = min_t(u64, isize - 1,
Chris Mason1e701a32010-03-11 09:42:04 -05001307 range->start + range->len - 1) >> PAGE_CACHE_SHIFT;
1308 } else {
Li Zefan151a31b2011-09-02 15:56:39 +08001309 last_index = (isize - 1) >> PAGE_CACHE_SHIFT;
Chris Mason1e701a32010-03-11 09:42:04 -05001310 }
1311
Chris Mason4cb53002011-05-24 15:35:30 -04001312 if (newer_than) {
1313 ret = find_new_extents(root, inode, newer_than,
1314 &newer_off, 64 * 1024);
1315 if (!ret) {
1316 range->start = newer_off;
1317 /*
1318 * we always align our defrag to help keep
1319 * the extents in the file evenly spaced
1320 */
1321 i = (newer_off & new_align) >> PAGE_CACHE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001322 } else
1323 goto out_ra;
1324 } else {
1325 i = range->start >> PAGE_CACHE_SHIFT;
1326 }
1327 if (!max_to_defrag)
Liu Bo7ec31b52012-01-26 15:01:12 -05001328 max_to_defrag = last_index + 1;
Chris Mason4cb53002011-05-24 15:35:30 -04001329
Li Zefan2a0f7f52011-10-10 15:43:34 -04001330 /*
1331 * make writeback starts from i, so the defrag range can be
1332 * written sequentially.
1333 */
1334 if (i < inode->i_mapping->writeback_index)
1335 inode->i_mapping->writeback_index = i;
1336
Chris Masonf7f43cc2011-10-11 11:41:40 -04001337 while (i <= last_index && defrag_count < max_to_defrag &&
David Sterbaed6078f2014-06-05 01:59:57 +02001338 (i < DIV_ROUND_UP(i_size_read(inode), PAGE_CACHE_SIZE))) {
Chris Mason4cb53002011-05-24 15:35:30 -04001339 /*
1340 * make sure we stop running if someone unmounts
1341 * the FS
1342 */
1343 if (!(inode->i_sb->s_flags & MS_ACTIVE))
1344 break;
1345
David Sterba210549e2013-02-09 23:38:06 +00001346 if (btrfs_defrag_cancelled(root->fs_info)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05001347 printk(KERN_DEBUG "BTRFS: defrag_file cancelled\n");
David Sterba210549e2013-02-09 23:38:06 +00001348 ret = -EAGAIN;
1349 break;
1350 }
1351
Liu Bo66c26892012-03-29 09:57:45 -04001352 if (!should_defrag_range(inode, (u64)i << PAGE_CACHE_SHIFT,
Li Zefan6c282eb2012-06-11 16:03:35 +08001353 extent_thresh, &last_len, &skip,
Andrew Mahonea43a2112012-06-19 21:08:32 -04001354 &defrag_end, range->flags &
1355 BTRFS_DEFRAG_RANGE_COMPRESS)) {
Chris Mason940100a2010-03-10 10:52:59 -05001356 unsigned long next;
1357 /*
1358 * the should_defrag function tells us how much to skip
1359 * bump our counter by the suggested amount
1360 */
David Sterbaed6078f2014-06-05 01:59:57 +02001361 next = DIV_ROUND_UP(skip, PAGE_CACHE_SIZE);
Chris Mason940100a2010-03-10 10:52:59 -05001362 i = max(i + 1, next);
1363 continue;
1364 }
Li Zefan008873e2011-09-02 15:57:07 +08001365
1366 if (!newer_than) {
1367 cluster = (PAGE_CACHE_ALIGN(defrag_end) >>
1368 PAGE_CACHE_SHIFT) - i;
1369 cluster = min(cluster, max_cluster);
1370 } else {
1371 cluster = max_cluster;
1372 }
1373
Li Zefan008873e2011-09-02 15:57:07 +08001374 if (i + cluster > ra_index) {
1375 ra_index = max(i, ra_index);
1376 btrfs_force_ra(inode->i_mapping, ra, file, ra_index,
1377 cluster);
1378 ra_index += max_cluster;
1379 }
Chris Mason940100a2010-03-10 10:52:59 -05001380
Liu Boecb8bea2012-03-29 09:57:44 -04001381 mutex_lock(&inode->i_mutex);
Filipe David Borba Manana633085c2013-08-16 15:23:33 +01001382 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)
1383 BTRFS_I(inode)->force_compress = compress_type;
Li Zefan008873e2011-09-02 15:57:07 +08001384 ret = cluster_pages_for_defrag(inode, pages, i, cluster);
Liu Boecb8bea2012-03-29 09:57:44 -04001385 if (ret < 0) {
1386 mutex_unlock(&inode->i_mutex);
Chris Mason4cb53002011-05-24 15:35:30 -04001387 goto out_ra;
Liu Boecb8bea2012-03-29 09:57:44 -04001388 }
Chris Mason940100a2010-03-10 10:52:59 -05001389
Chris Mason4cb53002011-05-24 15:35:30 -04001390 defrag_count += ret;
Namjae Jeond0e1d662012-12-11 16:00:21 -08001391 balance_dirty_pages_ratelimited(inode->i_mapping);
Liu Boecb8bea2012-03-29 09:57:44 -04001392 mutex_unlock(&inode->i_mutex);
Chris Mason4cb53002011-05-24 15:35:30 -04001393
1394 if (newer_than) {
1395 if (newer_off == (u64)-1)
1396 break;
1397
Liu Boe1f041e2012-03-29 09:57:45 -04001398 if (ret > 0)
1399 i += ret;
1400
Chris Mason4cb53002011-05-24 15:35:30 -04001401 newer_off = max(newer_off + 1,
1402 (u64)i << PAGE_CACHE_SHIFT);
1403
1404 ret = find_new_extents(root, inode,
1405 newer_than, &newer_off,
1406 64 * 1024);
1407 if (!ret) {
1408 range->start = newer_off;
1409 i = (newer_off & new_align) >> PAGE_CACHE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001410 } else {
1411 break;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001412 }
Chris Mason4cb53002011-05-24 15:35:30 -04001413 } else {
Li Zefan008873e2011-09-02 15:57:07 +08001414 if (ret > 0) {
Li Zefancbcc8322011-09-02 15:56:25 +08001415 i += ret;
Li Zefan008873e2011-09-02 15:57:07 +08001416 last_len += ret << PAGE_CACHE_SHIFT;
1417 } else {
Li Zefancbcc8322011-09-02 15:56:25 +08001418 i++;
Li Zefan008873e2011-09-02 15:57:07 +08001419 last_len = 0;
1420 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001421 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001422 }
1423
Filipe Mananadec8ef92014-03-01 10:55:54 +00001424 if ((range->flags & BTRFS_DEFRAG_RANGE_START_IO)) {
Chris Mason1e701a32010-03-11 09:42:04 -05001425 filemap_flush(inode->i_mapping);
Filipe Mananadec8ef92014-03-01 10:55:54 +00001426 if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
1427 &BTRFS_I(inode)->runtime_flags))
1428 filemap_flush(inode->i_mapping);
1429 }
Chris Mason1e701a32010-03-11 09:42:04 -05001430
1431 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
1432 /* the filemap_flush will queue IO into the worker threads, but
1433 * we have to make sure the IO is actually started and that
1434 * ordered extents get created before we return
1435 */
1436 atomic_inc(&root->fs_info->async_submit_draining);
1437 while (atomic_read(&root->fs_info->nr_async_submits) ||
1438 atomic_read(&root->fs_info->async_delalloc_pages)) {
1439 wait_event(root->fs_info->async_submit_wait,
1440 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
1441 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
1442 }
1443 atomic_dec(&root->fs_info->async_submit_draining);
Chris Mason1e701a32010-03-11 09:42:04 -05001444 }
1445
Li Zefan1a419d82010-10-25 15:12:50 +08001446 if (range->compress_type == BTRFS_COMPRESS_LZO) {
Mitch Harder2b0ce2c2012-07-24 11:58:43 -06001447 btrfs_set_fs_incompat(root->fs_info, COMPRESS_LZO);
Li Zefan1a419d82010-10-25 15:12:50 +08001448 }
1449
Diego Calleja60ccf822011-09-01 16:33:57 +02001450 ret = defrag_count;
Chris Mason940100a2010-03-10 10:52:59 -05001451
Chris Mason4cb53002011-05-24 15:35:30 -04001452out_ra:
Filipe David Borba Manana633085c2013-08-16 15:23:33 +01001453 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS) {
1454 mutex_lock(&inode->i_mutex);
1455 BTRFS_I(inode)->force_compress = BTRFS_COMPRESS_NONE;
1456 mutex_unlock(&inode->i_mutex);
1457 }
Chris Mason4cb53002011-05-24 15:35:30 -04001458 if (!file)
1459 kfree(ra);
1460 kfree(pages);
Chris Mason940100a2010-03-10 10:52:59 -05001461 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001462}
1463
Miao Xie198605a2012-11-26 08:43:45 +00001464static noinline int btrfs_ioctl_resize(struct file *file,
Yan, Zheng76dda932009-09-21 16:00:26 -04001465 void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001466{
1467 u64 new_size;
1468 u64 old_size;
1469 u64 devid = 1;
Al Viro496ad9a2013-01-23 17:07:38 -05001470 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001471 struct btrfs_ioctl_vol_args *vol_args;
1472 struct btrfs_trans_handle *trans;
1473 struct btrfs_device *device = NULL;
1474 char *sizestr;
Gui Hecheng9a40f122014-03-31 18:03:25 +08001475 char *retptr;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001476 char *devstr = NULL;
1477 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001478 int mod = 0;
1479
Chris Masone441d542009-01-05 16:57:23 -05001480 if (!capable(CAP_SYS_ADMIN))
1481 return -EPERM;
1482
Miao Xie198605a2012-11-26 08:43:45 +00001483 ret = mnt_want_write_file(file);
1484 if (ret)
1485 return ret;
1486
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01001487 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
1488 1)) {
Miao Xie97547672012-12-21 10:38:50 +00001489 mnt_drop_write_file(file);
Anand Jaine57138b2013-08-21 11:44:48 +08001490 return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001491 }
1492
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01001493 mutex_lock(&root->fs_info->volume_mutex);
Li Zefandae7b662009-04-08 15:06:54 +08001494 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001495 if (IS_ERR(vol_args)) {
1496 ret = PTR_ERR(vol_args);
1497 goto out;
1498 }
Mark Fasheh5516e592008-07-24 12:20:14 -04001499
1500 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001501
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001502 sizestr = vol_args->name;
1503 devstr = strchr(sizestr, ':');
1504 if (devstr) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001505 sizestr = devstr + 1;
1506 *devstr = '\0';
1507 devstr = vol_args->name;
ZhangZhen58dfae62014-05-13 16:36:08 +08001508 ret = kstrtoull(devstr, 10, &devid);
1509 if (ret)
1510 goto out_free;
Miao Xiedfd79822012-12-21 09:21:30 +00001511 if (!devid) {
1512 ret = -EINVAL;
1513 goto out_free;
1514 }
Frank Holtonefe120a2013-12-20 11:37:06 -05001515 btrfs_info(root->fs_info, "resizing devid %llu", devid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001516 }
Miao Xiedba60f32012-12-21 09:19:51 +00001517
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01001518 device = btrfs_find_device(root->fs_info, devid, NULL, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001519 if (!device) {
Frank Holtonefe120a2013-12-20 11:37:06 -05001520 btrfs_info(root->fs_info, "resizer unable to find device %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001521 devid);
Miao Xiedfd79822012-12-21 09:21:30 +00001522 ret = -ENODEV;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001523 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001524 }
Miao Xiedba60f32012-12-21 09:19:51 +00001525
1526 if (!device->writeable) {
Frank Holtonefe120a2013-12-20 11:37:06 -05001527 btrfs_info(root->fs_info,
1528 "resizer unable to apply on readonly device %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001529 devid);
Miao Xiedfd79822012-12-21 09:21:30 +00001530 ret = -EPERM;
Liu Bo4e42ae12012-06-14 02:23:19 -06001531 goto out_free;
1532 }
1533
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001534 if (!strcmp(sizestr, "max"))
1535 new_size = device->bdev->bd_inode->i_size;
1536 else {
1537 if (sizestr[0] == '-') {
1538 mod = -1;
1539 sizestr++;
1540 } else if (sizestr[0] == '+') {
1541 mod = 1;
1542 sizestr++;
1543 }
Gui Hecheng9a40f122014-03-31 18:03:25 +08001544 new_size = memparse(sizestr, &retptr);
1545 if (*retptr != '\0' || new_size == 0) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001546 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001547 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001548 }
1549 }
1550
Stefan Behrens63a212a2012-11-05 18:29:28 +01001551 if (device->is_tgtdev_for_dev_replace) {
Miao Xiedfd79822012-12-21 09:21:30 +00001552 ret = -EPERM;
Stefan Behrens63a212a2012-11-05 18:29:28 +01001553 goto out_free;
1554 }
1555
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001556 old_size = device->total_bytes;
1557
1558 if (mod < 0) {
1559 if (new_size > old_size) {
1560 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001561 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001562 }
1563 new_size = old_size - new_size;
1564 } else if (mod > 0) {
Wenliang Faneb8052e2013-12-20 15:28:56 +08001565 if (new_size > ULLONG_MAX - old_size) {
Gui Hecheng902c68a2014-05-29 09:19:58 +08001566 ret = -ERANGE;
Wenliang Faneb8052e2013-12-20 15:28:56 +08001567 goto out_free;
1568 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001569 new_size = old_size + new_size;
1570 }
1571
1572 if (new_size < 256 * 1024 * 1024) {
1573 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001574 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001575 }
1576 if (new_size > device->bdev->bd_inode->i_size) {
1577 ret = -EFBIG;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001578 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001579 }
1580
1581 do_div(new_size, root->sectorsize);
1582 new_size *= root->sectorsize;
1583
Frank Holtonefe120a2013-12-20 11:37:06 -05001584 printk_in_rcu(KERN_INFO "BTRFS: new size for %s is %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001585 rcu_str_deref(device->name), new_size);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001586
1587 if (new_size > old_size) {
Yan, Zhenga22285a2010-05-16 10:48:46 -04001588 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001589 if (IS_ERR(trans)) {
1590 ret = PTR_ERR(trans);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001591 goto out_free;
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001592 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001593 ret = btrfs_grow_device(trans, device, new_size);
1594 btrfs_commit_transaction(trans, root);
Mike Fleetwoodece7d202011-11-18 18:55:01 +00001595 } else if (new_size < old_size) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001596 ret = btrfs_shrink_device(device, new_size);
jeff.liu0253f402012-10-27 12:06:39 +00001597 } /* equal, nothing need to do */
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001598
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001599out_free:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001600 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001601out:
1602 mutex_unlock(&root->fs_info->volume_mutex);
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01001603 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
Ilya Dryomov18f39c42013-01-20 15:57:57 +02001604 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001605 return ret;
1606}
1607
Sage Weil72fd0322010-10-29 15:41:32 -04001608static noinline int btrfs_ioctl_snap_create_transid(struct file *file,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001609 char *name, unsigned long fd, int subvol,
1610 u64 *transid, bool readonly,
Miao Xie8696c532013-02-07 06:02:44 +00001611 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001612{
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001613 int namelen;
Chris Mason3de45862008-11-17 21:02:50 -05001614 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001615
Liu Boa874a632012-06-29 03:58:46 -06001616 ret = mnt_want_write_file(file);
1617 if (ret)
1618 goto out;
1619
Sage Weil72fd0322010-10-29 15:41:32 -04001620 namelen = strlen(name);
1621 if (strchr(name, '/')) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001622 ret = -EINVAL;
Liu Boa874a632012-06-29 03:58:46 -06001623 goto out_drop_write;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001624 }
1625
Chris Mason16780ca2012-02-20 22:14:55 -05001626 if (name[0] == '.' &&
1627 (namelen == 1 || (name[1] == '.' && namelen == 2))) {
1628 ret = -EEXIST;
Liu Boa874a632012-06-29 03:58:46 -06001629 goto out_drop_write;
Chris Mason16780ca2012-02-20 22:14:55 -05001630 }
1631
Chris Mason3de45862008-11-17 21:02:50 -05001632 if (subvol) {
Sage Weil72fd0322010-10-29 15:41:32 -04001633 ret = btrfs_mksubvol(&file->f_path, name, namelen,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001634 NULL, transid, readonly, inherit);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001635 } else {
Al Viro2903ff02012-08-28 12:52:22 -04001636 struct fd src = fdget(fd);
Chris Mason3de45862008-11-17 21:02:50 -05001637 struct inode *src_inode;
Al Viro2903ff02012-08-28 12:52:22 -04001638 if (!src.file) {
Chris Mason3de45862008-11-17 21:02:50 -05001639 ret = -EINVAL;
Liu Boa874a632012-06-29 03:58:46 -06001640 goto out_drop_write;
Chris Mason3de45862008-11-17 21:02:50 -05001641 }
1642
Al Viro496ad9a2013-01-23 17:07:38 -05001643 src_inode = file_inode(src.file);
1644 if (src_inode->i_sb != file_inode(file)->i_sb) {
Frank Holtonefe120a2013-12-20 11:37:06 -05001645 btrfs_info(BTRFS_I(src_inode)->root->fs_info,
1646 "Snapshot src from another FS");
Kusanagi Kouichi23ad5b12014-01-30 16:32:02 +09001647 ret = -EXDEV;
David Sterbad0242062014-01-15 18:15:52 +01001648 } else if (!inode_owner_or_capable(src_inode)) {
1649 /*
1650 * Subvolume creation is not restricted, but snapshots
1651 * are limited to own subvolumes only
1652 */
1653 ret = -EPERM;
Al Viroecd18812012-08-26 21:20:24 -04001654 } else {
1655 ret = btrfs_mksubvol(&file->f_path, name, namelen,
1656 BTRFS_I(src_inode)->root,
1657 transid, readonly, inherit);
Chris Mason3de45862008-11-17 21:02:50 -05001658 }
Al Viro2903ff02012-08-28 12:52:22 -04001659 fdput(src);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001660 }
Liu Boa874a632012-06-29 03:58:46 -06001661out_drop_write:
1662 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001663out:
Sage Weil72fd0322010-10-29 15:41:32 -04001664 return ret;
1665}
1666
1667static noinline int btrfs_ioctl_snap_create(struct file *file,
Li Zefanfa0d2b92010-12-20 15:53:28 +08001668 void __user *arg, int subvol)
Sage Weil72fd0322010-10-29 15:41:32 -04001669{
Li Zefanfa0d2b92010-12-20 15:53:28 +08001670 struct btrfs_ioctl_vol_args *vol_args;
Sage Weil72fd0322010-10-29 15:41:32 -04001671 int ret;
1672
Li Zefanfa0d2b92010-12-20 15:53:28 +08001673 vol_args = memdup_user(arg, sizeof(*vol_args));
1674 if (IS_ERR(vol_args))
1675 return PTR_ERR(vol_args);
1676 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Sage Weil72fd0322010-10-29 15:41:32 -04001677
Li Zefanfa0d2b92010-12-20 15:53:28 +08001678 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
Li Zefanb83cc962010-12-20 16:04:08 +08001679 vol_args->fd, subvol,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001680 NULL, false, NULL);
Li Zefanfdfb1e42010-12-10 06:41:56 +00001681
Li Zefanfa0d2b92010-12-20 15:53:28 +08001682 kfree(vol_args);
1683 return ret;
1684}
Li Zefanfdfb1e42010-12-10 06:41:56 +00001685
Li Zefanfa0d2b92010-12-20 15:53:28 +08001686static noinline int btrfs_ioctl_snap_create_v2(struct file *file,
1687 void __user *arg, int subvol)
1688{
1689 struct btrfs_ioctl_vol_args_v2 *vol_args;
1690 int ret;
1691 u64 transid = 0;
1692 u64 *ptr = NULL;
Li Zefanb83cc962010-12-20 16:04:08 +08001693 bool readonly = false;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001694 struct btrfs_qgroup_inherit *inherit = NULL;
Li Zefanfdfb1e42010-12-10 06:41:56 +00001695
Li Zefanfa0d2b92010-12-20 15:53:28 +08001696 vol_args = memdup_user(arg, sizeof(*vol_args));
1697 if (IS_ERR(vol_args))
1698 return PTR_ERR(vol_args);
1699 vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
Sage Weil75eaa0e2010-12-10 00:36:28 +00001700
Li Zefanb83cc962010-12-20 16:04:08 +08001701 if (vol_args->flags &
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001702 ~(BTRFS_SUBVOL_CREATE_ASYNC | BTRFS_SUBVOL_RDONLY |
1703 BTRFS_SUBVOL_QGROUP_INHERIT)) {
Li Zefanb83cc962010-12-20 16:04:08 +08001704 ret = -EOPNOTSUPP;
Dan Carpenterc47ca322014-09-04 14:09:15 +03001705 goto free_args;
Sage Weil72fd0322010-10-29 15:41:32 -04001706 }
Li Zefanfa0d2b92010-12-20 15:53:28 +08001707
1708 if (vol_args->flags & BTRFS_SUBVOL_CREATE_ASYNC)
1709 ptr = &transid;
Li Zefanb83cc962010-12-20 16:04:08 +08001710 if (vol_args->flags & BTRFS_SUBVOL_RDONLY)
1711 readonly = true;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001712 if (vol_args->flags & BTRFS_SUBVOL_QGROUP_INHERIT) {
1713 if (vol_args->size > PAGE_CACHE_SIZE) {
1714 ret = -EINVAL;
Dan Carpenterc47ca322014-09-04 14:09:15 +03001715 goto free_args;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001716 }
1717 inherit = memdup_user(vol_args->qgroup_inherit, vol_args->size);
1718 if (IS_ERR(inherit)) {
1719 ret = PTR_ERR(inherit);
Dan Carpenterc47ca322014-09-04 14:09:15 +03001720 goto free_args;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001721 }
1722 }
Li Zefanfa0d2b92010-12-20 15:53:28 +08001723
1724 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001725 vol_args->fd, subvol, ptr,
Miao Xie8696c532013-02-07 06:02:44 +00001726 readonly, inherit);
Dan Carpenterc47ca322014-09-04 14:09:15 +03001727 if (ret)
1728 goto free_inherit;
Li Zefanfa0d2b92010-12-20 15:53:28 +08001729
Dan Carpenterc47ca322014-09-04 14:09:15 +03001730 if (ptr && copy_to_user(arg +
1731 offsetof(struct btrfs_ioctl_vol_args_v2,
1732 transid),
1733 ptr, sizeof(*ptr)))
Li Zefanfa0d2b92010-12-20 15:53:28 +08001734 ret = -EFAULT;
Dan Carpenterc47ca322014-09-04 14:09:15 +03001735
1736free_inherit:
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001737 kfree(inherit);
Dan Carpenterc47ca322014-09-04 14:09:15 +03001738free_args:
1739 kfree(vol_args);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001740 return ret;
1741}
1742
Li Zefan0caa1022010-12-20 16:30:25 +08001743static noinline int btrfs_ioctl_subvol_getflags(struct file *file,
1744 void __user *arg)
1745{
Al Viro496ad9a2013-01-23 17:07:38 -05001746 struct inode *inode = file_inode(file);
Li Zefan0caa1022010-12-20 16:30:25 +08001747 struct btrfs_root *root = BTRFS_I(inode)->root;
1748 int ret = 0;
1749 u64 flags = 0;
1750
Li Zefan33345d012011-04-20 10:31:50 +08001751 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID)
Li Zefan0caa1022010-12-20 16:30:25 +08001752 return -EINVAL;
1753
1754 down_read(&root->fs_info->subvol_sem);
1755 if (btrfs_root_readonly(root))
1756 flags |= BTRFS_SUBVOL_RDONLY;
1757 up_read(&root->fs_info->subvol_sem);
1758
1759 if (copy_to_user(arg, &flags, sizeof(flags)))
1760 ret = -EFAULT;
1761
1762 return ret;
1763}
1764
1765static noinline int btrfs_ioctl_subvol_setflags(struct file *file,
1766 void __user *arg)
1767{
Al Viro496ad9a2013-01-23 17:07:38 -05001768 struct inode *inode = file_inode(file);
Li Zefan0caa1022010-12-20 16:30:25 +08001769 struct btrfs_root *root = BTRFS_I(inode)->root;
1770 struct btrfs_trans_handle *trans;
1771 u64 root_flags;
1772 u64 flags;
1773 int ret = 0;
1774
David Sterbabd60ea02014-01-16 15:50:22 +01001775 if (!inode_owner_or_capable(inode))
1776 return -EPERM;
1777
Liu Bob9ca0662012-06-29 03:58:49 -06001778 ret = mnt_want_write_file(file);
1779 if (ret)
1780 goto out;
Li Zefan0caa1022010-12-20 16:30:25 +08001781
Liu Bob9ca0662012-06-29 03:58:49 -06001782 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
1783 ret = -EINVAL;
1784 goto out_drop_write;
1785 }
Li Zefan0caa1022010-12-20 16:30:25 +08001786
Liu Bob9ca0662012-06-29 03:58:49 -06001787 if (copy_from_user(&flags, arg, sizeof(flags))) {
1788 ret = -EFAULT;
1789 goto out_drop_write;
1790 }
Li Zefan0caa1022010-12-20 16:30:25 +08001791
Liu Bob9ca0662012-06-29 03:58:49 -06001792 if (flags & BTRFS_SUBVOL_CREATE_ASYNC) {
1793 ret = -EINVAL;
1794 goto out_drop_write;
1795 }
Li Zefan0caa1022010-12-20 16:30:25 +08001796
Liu Bob9ca0662012-06-29 03:58:49 -06001797 if (flags & ~BTRFS_SUBVOL_RDONLY) {
1798 ret = -EOPNOTSUPP;
1799 goto out_drop_write;
1800 }
Li Zefan0caa1022010-12-20 16:30:25 +08001801
1802 down_write(&root->fs_info->subvol_sem);
1803
1804 /* nothing to do */
1805 if (!!(flags & BTRFS_SUBVOL_RDONLY) == btrfs_root_readonly(root))
Liu Bob9ca0662012-06-29 03:58:49 -06001806 goto out_drop_sem;
Li Zefan0caa1022010-12-20 16:30:25 +08001807
1808 root_flags = btrfs_root_flags(&root->root_item);
David Sterba2c686532013-12-16 17:34:17 +01001809 if (flags & BTRFS_SUBVOL_RDONLY) {
Li Zefan0caa1022010-12-20 16:30:25 +08001810 btrfs_set_root_flags(&root->root_item,
1811 root_flags | BTRFS_ROOT_SUBVOL_RDONLY);
David Sterba2c686532013-12-16 17:34:17 +01001812 } else {
1813 /*
1814 * Block RO -> RW transition if this subvolume is involved in
1815 * send
1816 */
1817 spin_lock(&root->root_item_lock);
1818 if (root->send_in_progress == 0) {
1819 btrfs_set_root_flags(&root->root_item,
Li Zefan0caa1022010-12-20 16:30:25 +08001820 root_flags & ~BTRFS_ROOT_SUBVOL_RDONLY);
David Sterba2c686532013-12-16 17:34:17 +01001821 spin_unlock(&root->root_item_lock);
1822 } else {
1823 spin_unlock(&root->root_item_lock);
1824 btrfs_warn(root->fs_info,
1825 "Attempt to set subvolume %llu read-write during send",
1826 root->root_key.objectid);
1827 ret = -EPERM;
1828 goto out_drop_sem;
1829 }
1830 }
Li Zefan0caa1022010-12-20 16:30:25 +08001831
1832 trans = btrfs_start_transaction(root, 1);
1833 if (IS_ERR(trans)) {
1834 ret = PTR_ERR(trans);
1835 goto out_reset;
1836 }
1837
Li Zefanb4dc2b82011-02-16 06:06:34 +00001838 ret = btrfs_update_root(trans, root->fs_info->tree_root,
Li Zefan0caa1022010-12-20 16:30:25 +08001839 &root->root_key, &root->root_item);
1840
1841 btrfs_commit_transaction(trans, root);
1842out_reset:
1843 if (ret)
1844 btrfs_set_root_flags(&root->root_item, root_flags);
Liu Bob9ca0662012-06-29 03:58:49 -06001845out_drop_sem:
Li Zefan0caa1022010-12-20 16:30:25 +08001846 up_write(&root->fs_info->subvol_sem);
Liu Bob9ca0662012-06-29 03:58:49 -06001847out_drop_write:
1848 mnt_drop_write_file(file);
1849out:
Li Zefan0caa1022010-12-20 16:30:25 +08001850 return ret;
1851}
1852
Yan, Zheng76dda932009-09-21 16:00:26 -04001853/*
1854 * helper to check if the subvolume references other subvolumes
1855 */
1856static noinline int may_destroy_subvol(struct btrfs_root *root)
1857{
1858 struct btrfs_path *path;
Josef Bacik175a2b82013-08-12 15:36:44 -04001859 struct btrfs_dir_item *di;
Yan, Zheng76dda932009-09-21 16:00:26 -04001860 struct btrfs_key key;
Josef Bacik175a2b82013-08-12 15:36:44 -04001861 u64 dir_id;
Yan, Zheng76dda932009-09-21 16:00:26 -04001862 int ret;
1863
1864 path = btrfs_alloc_path();
1865 if (!path)
1866 return -ENOMEM;
1867
Josef Bacik175a2b82013-08-12 15:36:44 -04001868 /* Make sure this root isn't set as the default subvol */
1869 dir_id = btrfs_super_root_dir(root->fs_info->super_copy);
1870 di = btrfs_lookup_dir_item(NULL, root->fs_info->tree_root, path,
1871 dir_id, "default", 7, 0);
1872 if (di && !IS_ERR(di)) {
1873 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &key);
1874 if (key.objectid == root->root_key.objectid) {
Guangyu Sun72de6b52014-03-11 11:24:18 -07001875 ret = -EPERM;
1876 btrfs_err(root->fs_info, "deleting default subvolume "
1877 "%llu is not allowed", key.objectid);
Josef Bacik175a2b82013-08-12 15:36:44 -04001878 goto out;
1879 }
1880 btrfs_release_path(path);
1881 }
1882
Yan, Zheng76dda932009-09-21 16:00:26 -04001883 key.objectid = root->root_key.objectid;
1884 key.type = BTRFS_ROOT_REF_KEY;
1885 key.offset = (u64)-1;
1886
1887 ret = btrfs_search_slot(NULL, root->fs_info->tree_root,
1888 &key, path, 0, 0);
1889 if (ret < 0)
1890 goto out;
1891 BUG_ON(ret == 0);
1892
1893 ret = 0;
1894 if (path->slots[0] > 0) {
1895 path->slots[0]--;
1896 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1897 if (key.objectid == root->root_key.objectid &&
1898 key.type == BTRFS_ROOT_REF_KEY)
1899 ret = -ENOTEMPTY;
1900 }
1901out:
1902 btrfs_free_path(path);
1903 return ret;
1904}
1905
Chris Masonac8e9812010-02-28 15:39:26 -05001906static noinline int key_in_sk(struct btrfs_key *key,
1907 struct btrfs_ioctl_search_key *sk)
1908{
Chris Masonabc6e132010-03-18 12:10:08 -04001909 struct btrfs_key test;
1910 int ret;
1911
1912 test.objectid = sk->min_objectid;
1913 test.type = sk->min_type;
1914 test.offset = sk->min_offset;
1915
1916 ret = btrfs_comp_cpu_keys(key, &test);
1917 if (ret < 0)
Chris Masonac8e9812010-02-28 15:39:26 -05001918 return 0;
Chris Masonabc6e132010-03-18 12:10:08 -04001919
1920 test.objectid = sk->max_objectid;
1921 test.type = sk->max_type;
1922 test.offset = sk->max_offset;
1923
1924 ret = btrfs_comp_cpu_keys(key, &test);
1925 if (ret > 0)
Chris Masonac8e9812010-02-28 15:39:26 -05001926 return 0;
1927 return 1;
1928}
1929
1930static noinline int copy_to_sk(struct btrfs_root *root,
1931 struct btrfs_path *path,
1932 struct btrfs_key *key,
1933 struct btrfs_ioctl_search_key *sk,
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001934 size_t *buf_size,
Gerhard Heiftba346b32014-01-30 16:24:02 +01001935 char __user *ubuf,
Chris Masonac8e9812010-02-28 15:39:26 -05001936 unsigned long *sk_offset,
1937 int *num_found)
1938{
1939 u64 found_transid;
1940 struct extent_buffer *leaf;
1941 struct btrfs_ioctl_search_header sh;
1942 unsigned long item_off;
1943 unsigned long item_len;
1944 int nritems;
1945 int i;
1946 int slot;
Chris Masonac8e9812010-02-28 15:39:26 -05001947 int ret = 0;
1948
1949 leaf = path->nodes[0];
1950 slot = path->slots[0];
1951 nritems = btrfs_header_nritems(leaf);
1952
1953 if (btrfs_header_generation(leaf) > sk->max_transid) {
1954 i = nritems;
1955 goto advance_key;
1956 }
1957 found_transid = btrfs_header_generation(leaf);
1958
1959 for (i = slot; i < nritems; i++) {
1960 item_off = btrfs_item_ptr_offset(leaf, i);
1961 item_len = btrfs_item_size_nr(leaf, i);
1962
Gabriel de Perthuis03b71c62013-05-06 17:40:18 +00001963 btrfs_item_key_to_cpu(leaf, key, i);
1964 if (!key_in_sk(key, sk))
1965 continue;
1966
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001967 if (sizeof(sh) + item_len > *buf_size) {
Gerhard Heift8f5f6172014-01-30 16:23:59 +01001968 if (*num_found) {
1969 ret = 1;
1970 goto out;
1971 }
Chris Masonac8e9812010-02-28 15:39:26 -05001972
Gerhard Heift8f5f6172014-01-30 16:23:59 +01001973 /*
1974 * return one empty item back for v1, which does not
1975 * handle -EOVERFLOW
1976 */
1977
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001978 *buf_size = sizeof(sh) + item_len;
Chris Masonac8e9812010-02-28 15:39:26 -05001979 item_len = 0;
Gerhard Heift8f5f6172014-01-30 16:23:59 +01001980 ret = -EOVERFLOW;
1981 }
Chris Masonac8e9812010-02-28 15:39:26 -05001982
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001983 if (sizeof(sh) + item_len + *sk_offset > *buf_size) {
Chris Masonac8e9812010-02-28 15:39:26 -05001984 ret = 1;
Gerhard Heift25c9bc22014-01-30 16:23:57 +01001985 goto out;
Chris Masonac8e9812010-02-28 15:39:26 -05001986 }
1987
Chris Masonac8e9812010-02-28 15:39:26 -05001988 sh.objectid = key->objectid;
1989 sh.offset = key->offset;
1990 sh.type = key->type;
1991 sh.len = item_len;
1992 sh.transid = found_transid;
1993
1994 /* copy search result header */
Gerhard Heiftba346b32014-01-30 16:24:02 +01001995 if (copy_to_user(ubuf + *sk_offset, &sh, sizeof(sh))) {
1996 ret = -EFAULT;
1997 goto out;
1998 }
1999
Chris Masonac8e9812010-02-28 15:39:26 -05002000 *sk_offset += sizeof(sh);
2001
2002 if (item_len) {
Gerhard Heiftba346b32014-01-30 16:24:02 +01002003 char __user *up = ubuf + *sk_offset;
Chris Masonac8e9812010-02-28 15:39:26 -05002004 /* copy the item */
Gerhard Heiftba346b32014-01-30 16:24:02 +01002005 if (read_extent_buffer_to_user(leaf, up,
2006 item_off, item_len)) {
2007 ret = -EFAULT;
2008 goto out;
2009 }
2010
Chris Masonac8e9812010-02-28 15:39:26 -05002011 *sk_offset += item_len;
Chris Masonac8e9812010-02-28 15:39:26 -05002012 }
Hugo Millse2156862011-05-14 17:43:41 +00002013 (*num_found)++;
Chris Masonac8e9812010-02-28 15:39:26 -05002014
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002015 if (ret) /* -EOVERFLOW from above */
2016 goto out;
2017
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002018 if (*num_found >= sk->nr_items) {
2019 ret = 1;
2020 goto out;
2021 }
Chris Masonac8e9812010-02-28 15:39:26 -05002022 }
2023advance_key:
Chris Masonac8e9812010-02-28 15:39:26 -05002024 ret = 0;
Chris Masonabc6e132010-03-18 12:10:08 -04002025 if (key->offset < (u64)-1 && key->offset < sk->max_offset)
2026 key->offset++;
2027 else if (key->type < (u8)-1 && key->type < sk->max_type) {
2028 key->offset = 0;
2029 key->type++;
2030 } else if (key->objectid < (u64)-1 && key->objectid < sk->max_objectid) {
2031 key->offset = 0;
2032 key->type = 0;
2033 key->objectid++;
2034 } else
2035 ret = 1;
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002036out:
Gerhard Heiftba346b32014-01-30 16:24:02 +01002037 /*
2038 * 0: all items from this leaf copied, continue with next
2039 * 1: * more items can be copied, but unused buffer is too small
2040 * * all items were found
2041 * Either way, it will stops the loop which iterates to the next
2042 * leaf
2043 * -EOVERFLOW: item was to large for buffer
2044 * -EFAULT: could not copy extent buffer back to userspace
2045 */
Chris Masonac8e9812010-02-28 15:39:26 -05002046 return ret;
2047}
2048
2049static noinline int search_ioctl(struct inode *inode,
Gerhard Heift12544442014-01-30 16:23:58 +01002050 struct btrfs_ioctl_search_key *sk,
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002051 size_t *buf_size,
Gerhard Heiftba346b32014-01-30 16:24:02 +01002052 char __user *ubuf)
Chris Masonac8e9812010-02-28 15:39:26 -05002053{
2054 struct btrfs_root *root;
2055 struct btrfs_key key;
Chris Masonac8e9812010-02-28 15:39:26 -05002056 struct btrfs_path *path;
Chris Masonac8e9812010-02-28 15:39:26 -05002057 struct btrfs_fs_info *info = BTRFS_I(inode)->root->fs_info;
2058 int ret;
2059 int num_found = 0;
2060 unsigned long sk_offset = 0;
2061
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002062 if (*buf_size < sizeof(struct btrfs_ioctl_search_header)) {
2063 *buf_size = sizeof(struct btrfs_ioctl_search_header);
Gerhard Heift12544442014-01-30 16:23:58 +01002064 return -EOVERFLOW;
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002065 }
Gerhard Heift12544442014-01-30 16:23:58 +01002066
Chris Masonac8e9812010-02-28 15:39:26 -05002067 path = btrfs_alloc_path();
2068 if (!path)
2069 return -ENOMEM;
2070
2071 if (sk->tree_id == 0) {
2072 /* search the root of the inode that was passed */
2073 root = BTRFS_I(inode)->root;
2074 } else {
2075 key.objectid = sk->tree_id;
2076 key.type = BTRFS_ROOT_ITEM_KEY;
2077 key.offset = (u64)-1;
2078 root = btrfs_read_fs_root_no_name(info, &key);
2079 if (IS_ERR(root)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05002080 printk(KERN_ERR "BTRFS: could not find root %llu\n",
Chris Masonac8e9812010-02-28 15:39:26 -05002081 sk->tree_id);
2082 btrfs_free_path(path);
2083 return -ENOENT;
2084 }
2085 }
2086
2087 key.objectid = sk->min_objectid;
2088 key.type = sk->min_type;
2089 key.offset = sk->min_offset;
2090
Chris Masonac8e9812010-02-28 15:39:26 -05002091 path->keep_locks = 1;
2092
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302093 while (1) {
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +01002094 ret = btrfs_search_forward(root, &key, path, sk->min_transid);
Chris Masonac8e9812010-02-28 15:39:26 -05002095 if (ret != 0) {
2096 if (ret > 0)
2097 ret = 0;
2098 goto err;
2099 }
Gerhard Heiftba346b32014-01-30 16:24:02 +01002100 ret = copy_to_sk(root, path, &key, sk, buf_size, ubuf,
Chris Masonac8e9812010-02-28 15:39:26 -05002101 &sk_offset, &num_found);
David Sterbab3b4aa72011-04-21 01:20:15 +02002102 btrfs_release_path(path);
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002103 if (ret)
Chris Masonac8e9812010-02-28 15:39:26 -05002104 break;
2105
2106 }
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002107 if (ret > 0)
2108 ret = 0;
Chris Masonac8e9812010-02-28 15:39:26 -05002109err:
2110 sk->nr_items = num_found;
2111 btrfs_free_path(path);
2112 return ret;
2113}
2114
2115static noinline int btrfs_ioctl_tree_search(struct file *file,
2116 void __user *argp)
2117{
Gerhard Heiftba346b32014-01-30 16:24:02 +01002118 struct btrfs_ioctl_search_args __user *uargs;
2119 struct btrfs_ioctl_search_key sk;
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002120 struct inode *inode;
2121 int ret;
2122 size_t buf_size;
Chris Masonac8e9812010-02-28 15:39:26 -05002123
2124 if (!capable(CAP_SYS_ADMIN))
2125 return -EPERM;
2126
Gerhard Heiftba346b32014-01-30 16:24:02 +01002127 uargs = (struct btrfs_ioctl_search_args __user *)argp;
Chris Masonac8e9812010-02-28 15:39:26 -05002128
Gerhard Heiftba346b32014-01-30 16:24:02 +01002129 if (copy_from_user(&sk, &uargs->key, sizeof(sk)))
2130 return -EFAULT;
2131
2132 buf_size = sizeof(uargs->buf);
Chris Masonac8e9812010-02-28 15:39:26 -05002133
Al Viro496ad9a2013-01-23 17:07:38 -05002134 inode = file_inode(file);
Gerhard Heiftba346b32014-01-30 16:24:02 +01002135 ret = search_ioctl(inode, &sk, &buf_size, uargs->buf);
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002136
2137 /*
2138 * In the origin implementation an overflow is handled by returning a
2139 * search header with a len of zero, so reset ret.
2140 */
2141 if (ret == -EOVERFLOW)
2142 ret = 0;
2143
Gerhard Heiftba346b32014-01-30 16:24:02 +01002144 if (ret == 0 && copy_to_user(&uargs->key, &sk, sizeof(sk)))
Chris Masonac8e9812010-02-28 15:39:26 -05002145 ret = -EFAULT;
Chris Masonac8e9812010-02-28 15:39:26 -05002146 return ret;
2147}
2148
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002149static noinline int btrfs_ioctl_tree_search_v2(struct file *file,
2150 void __user *argp)
2151{
2152 struct btrfs_ioctl_search_args_v2 __user *uarg;
2153 struct btrfs_ioctl_search_args_v2 args;
2154 struct inode *inode;
2155 int ret;
2156 size_t buf_size;
2157 const size_t buf_limit = 16 * 1024 * 1024;
2158
2159 if (!capable(CAP_SYS_ADMIN))
2160 return -EPERM;
2161
2162 /* copy search header and buffer size */
2163 uarg = (struct btrfs_ioctl_search_args_v2 __user *)argp;
2164 if (copy_from_user(&args, uarg, sizeof(args)))
2165 return -EFAULT;
2166
2167 buf_size = args.buf_size;
2168
2169 if (buf_size < sizeof(struct btrfs_ioctl_search_header))
2170 return -EOVERFLOW;
2171
2172 /* limit result size to 16MB */
2173 if (buf_size > buf_limit)
2174 buf_size = buf_limit;
2175
2176 inode = file_inode(file);
2177 ret = search_ioctl(inode, &args.key, &buf_size,
2178 (char *)(&uarg->buf[0]));
2179 if (ret == 0 && copy_to_user(&uarg->key, &args.key, sizeof(args.key)))
2180 ret = -EFAULT;
2181 else if (ret == -EOVERFLOW &&
2182 copy_to_user(&uarg->buf_size, &buf_size, sizeof(buf_size)))
2183 ret = -EFAULT;
2184
Yan, Zheng76dda932009-09-21 16:00:26 -04002185 return ret;
2186}
2187
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002188/*
Chris Masonac8e9812010-02-28 15:39:26 -05002189 * Search INODE_REFs to identify path name of 'dirid' directory
2190 * in a 'tree_id' tree. and sets path name to 'name'.
2191 */
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002192static noinline int btrfs_search_path_in_tree(struct btrfs_fs_info *info,
2193 u64 tree_id, u64 dirid, char *name)
2194{
2195 struct btrfs_root *root;
2196 struct btrfs_key key;
Chris Masonac8e9812010-02-28 15:39:26 -05002197 char *ptr;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002198 int ret = -1;
2199 int slot;
2200 int len;
2201 int total_len = 0;
2202 struct btrfs_inode_ref *iref;
2203 struct extent_buffer *l;
2204 struct btrfs_path *path;
2205
2206 if (dirid == BTRFS_FIRST_FREE_OBJECTID) {
2207 name[0]='\0';
2208 return 0;
2209 }
2210
2211 path = btrfs_alloc_path();
2212 if (!path)
2213 return -ENOMEM;
2214
Chris Masonac8e9812010-02-28 15:39:26 -05002215 ptr = &name[BTRFS_INO_LOOKUP_PATH_MAX];
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002216
2217 key.objectid = tree_id;
2218 key.type = BTRFS_ROOT_ITEM_KEY;
2219 key.offset = (u64)-1;
2220 root = btrfs_read_fs_root_no_name(info, &key);
2221 if (IS_ERR(root)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05002222 printk(KERN_ERR "BTRFS: could not find root %llu\n", tree_id);
Chris Mason8ad6fca2010-03-18 12:23:10 -04002223 ret = -ENOENT;
2224 goto out;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002225 }
2226
2227 key.objectid = dirid;
2228 key.type = BTRFS_INODE_REF_KEY;
Chris Mason8ad6fca2010-03-18 12:23:10 -04002229 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002230
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302231 while (1) {
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002232 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2233 if (ret < 0)
2234 goto out;
Filipe David Borba Manana18674c62013-08-14 03:00:21 +01002235 else if (ret > 0) {
2236 ret = btrfs_previous_item(root, path, dirid,
2237 BTRFS_INODE_REF_KEY);
2238 if (ret < 0)
2239 goto out;
2240 else if (ret > 0) {
2241 ret = -ENOENT;
2242 goto out;
2243 }
2244 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002245
2246 l = path->nodes[0];
2247 slot = path->slots[0];
2248 btrfs_item_key_to_cpu(l, &key, slot);
2249
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002250 iref = btrfs_item_ptr(l, slot, struct btrfs_inode_ref);
2251 len = btrfs_inode_ref_name_len(l, iref);
2252 ptr -= len + 1;
2253 total_len += len + 1;
Filipe David Borba Mananaa696cf32013-08-14 03:00:20 +01002254 if (ptr < name) {
2255 ret = -ENAMETOOLONG;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002256 goto out;
Filipe David Borba Mananaa696cf32013-08-14 03:00:20 +01002257 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002258
2259 *(ptr + len) = '/';
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302260 read_extent_buffer(l, ptr, (unsigned long)(iref + 1), len);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002261
2262 if (key.offset == BTRFS_FIRST_FREE_OBJECTID)
2263 break;
2264
David Sterbab3b4aa72011-04-21 01:20:15 +02002265 btrfs_release_path(path);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002266 key.objectid = key.offset;
Chris Mason8ad6fca2010-03-18 12:23:10 -04002267 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002268 dirid = key.objectid;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002269 }
Li Zefan77906a502011-07-14 03:16:00 +00002270 memmove(name, ptr, total_len);
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302271 name[total_len] = '\0';
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002272 ret = 0;
2273out:
2274 btrfs_free_path(path);
Chris Masonac8e9812010-02-28 15:39:26 -05002275 return ret;
2276}
2277
2278static noinline int btrfs_ioctl_ino_lookup(struct file *file,
2279 void __user *argp)
2280{
2281 struct btrfs_ioctl_ino_lookup_args *args;
2282 struct inode *inode;
2283 int ret;
2284
2285 if (!capable(CAP_SYS_ADMIN))
2286 return -EPERM;
2287
Julia Lawall2354d08f2010-10-29 15:14:18 -04002288 args = memdup_user(argp, sizeof(*args));
2289 if (IS_ERR(args))
2290 return PTR_ERR(args);
Dan Carpenterc2b96922010-03-20 11:24:15 +00002291
Al Viro496ad9a2013-01-23 17:07:38 -05002292 inode = file_inode(file);
Chris Masonac8e9812010-02-28 15:39:26 -05002293
Chris Mason1b53ac42010-03-18 12:17:05 -04002294 if (args->treeid == 0)
2295 args->treeid = BTRFS_I(inode)->root->root_key.objectid;
2296
Chris Masonac8e9812010-02-28 15:39:26 -05002297 ret = btrfs_search_path_in_tree(BTRFS_I(inode)->root->fs_info,
2298 args->treeid, args->objectid,
2299 args->name);
2300
2301 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
2302 ret = -EFAULT;
2303
2304 kfree(args);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002305 return ret;
2306}
2307
Yan, Zheng76dda932009-09-21 16:00:26 -04002308static noinline int btrfs_ioctl_snap_destroy(struct file *file,
2309 void __user *arg)
2310{
Al Viro54563d42013-09-01 15:57:51 -04002311 struct dentry *parent = file->f_path.dentry;
Yan, Zheng76dda932009-09-21 16:00:26 -04002312 struct dentry *dentry;
2313 struct inode *dir = parent->d_inode;
2314 struct inode *inode;
2315 struct btrfs_root *root = BTRFS_I(dir)->root;
2316 struct btrfs_root *dest = NULL;
2317 struct btrfs_ioctl_vol_args *vol_args;
2318 struct btrfs_trans_handle *trans;
Miao Xiec58aaad2013-02-28 10:05:36 +00002319 struct btrfs_block_rsv block_rsv;
David Sterba521e0542014-04-15 16:41:44 +02002320 u64 root_flags;
Miao Xiec58aaad2013-02-28 10:05:36 +00002321 u64 qgroup_reserved;
Yan, Zheng76dda932009-09-21 16:00:26 -04002322 int namelen;
2323 int ret;
2324 int err = 0;
2325
Yan, Zheng76dda932009-09-21 16:00:26 -04002326 vol_args = memdup_user(arg, sizeof(*vol_args));
2327 if (IS_ERR(vol_args))
2328 return PTR_ERR(vol_args);
2329
2330 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
2331 namelen = strlen(vol_args->name);
2332 if (strchr(vol_args->name, '/') ||
2333 strncmp(vol_args->name, "..", namelen) == 0) {
2334 err = -EINVAL;
2335 goto out;
2336 }
2337
Al Viroa561be72011-11-23 11:57:51 -05002338 err = mnt_want_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04002339 if (err)
2340 goto out;
2341
David Sterba521e0542014-04-15 16:41:44 +02002342
David Sterba5c50c9b2013-03-22 18:12:51 +00002343 err = mutex_lock_killable_nested(&dir->i_mutex, I_MUTEX_PARENT);
2344 if (err == -EINTR)
David Sterbae43f9982013-12-06 17:51:32 +01002345 goto out_drop_write;
Yan, Zheng76dda932009-09-21 16:00:26 -04002346 dentry = lookup_one_len(vol_args->name, parent, namelen);
2347 if (IS_ERR(dentry)) {
2348 err = PTR_ERR(dentry);
2349 goto out_unlock_dir;
2350 }
2351
2352 if (!dentry->d_inode) {
2353 err = -ENOENT;
2354 goto out_dput;
2355 }
2356
2357 inode = dentry->d_inode;
Sage Weil4260f7c2010-10-29 15:46:43 -04002358 dest = BTRFS_I(inode)->root;
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302359 if (!capable(CAP_SYS_ADMIN)) {
Sage Weil4260f7c2010-10-29 15:46:43 -04002360 /*
2361 * Regular user. Only allow this with a special mount
2362 * option, when the user has write+exec access to the
2363 * subvol root, and when rmdir(2) would have been
2364 * allowed.
2365 *
2366 * Note that this is _not_ check that the subvol is
2367 * empty or doesn't contain data that we wouldn't
2368 * otherwise be able to delete.
2369 *
2370 * Users who want to delete empty subvols should try
2371 * rmdir(2).
2372 */
2373 err = -EPERM;
2374 if (!btrfs_test_opt(root, USER_SUBVOL_RM_ALLOWED))
2375 goto out_dput;
2376
2377 /*
2378 * Do not allow deletion if the parent dir is the same
2379 * as the dir to be deleted. That means the ioctl
2380 * must be called on the dentry referencing the root
2381 * of the subvol, not a random directory contained
2382 * within it.
2383 */
2384 err = -EINVAL;
2385 if (root == dest)
2386 goto out_dput;
2387
2388 err = inode_permission(inode, MAY_WRITE | MAY_EXEC);
2389 if (err)
2390 goto out_dput;
Sage Weil4260f7c2010-10-29 15:46:43 -04002391 }
2392
Miao Xie5c39da52012-10-22 11:39:53 +00002393 /* check if subvolume may be deleted by a user */
2394 err = btrfs_may_delete(dir, dentry, 1);
2395 if (err)
2396 goto out_dput;
2397
Li Zefan33345d012011-04-20 10:31:50 +08002398 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
Yan, Zheng76dda932009-09-21 16:00:26 -04002399 err = -EINVAL;
2400 goto out_dput;
2401 }
2402
Yan, Zheng76dda932009-09-21 16:00:26 -04002403 mutex_lock(&inode->i_mutex);
David Sterba521e0542014-04-15 16:41:44 +02002404
2405 /*
2406 * Don't allow to delete a subvolume with send in progress. This is
2407 * inside the i_mutex so the error handling that has to drop the bit
2408 * again is not run concurrently.
2409 */
2410 spin_lock(&dest->root_item_lock);
Filipe Mananac55bfa62014-05-25 03:55:44 +01002411 root_flags = btrfs_root_flags(&dest->root_item);
2412 if (dest->send_in_progress == 0) {
2413 btrfs_set_root_flags(&dest->root_item,
David Sterba521e0542014-04-15 16:41:44 +02002414 root_flags | BTRFS_ROOT_SUBVOL_DEAD);
2415 spin_unlock(&dest->root_item_lock);
2416 } else {
2417 spin_unlock(&dest->root_item_lock);
2418 btrfs_warn(root->fs_info,
2419 "Attempt to delete subvolume %llu during send",
Filipe Mananac55bfa62014-05-25 03:55:44 +01002420 dest->root_key.objectid);
David Sterba521e0542014-04-15 16:41:44 +02002421 err = -EPERM;
2422 goto out_dput;
2423 }
2424
Yan, Zheng76dda932009-09-21 16:00:26 -04002425 err = d_invalidate(dentry);
2426 if (err)
2427 goto out_unlock;
2428
2429 down_write(&root->fs_info->subvol_sem);
2430
2431 err = may_destroy_subvol(dest);
2432 if (err)
2433 goto out_up_write;
2434
Miao Xiec58aaad2013-02-28 10:05:36 +00002435 btrfs_init_block_rsv(&block_rsv, BTRFS_BLOCK_RSV_TEMP);
2436 /*
2437 * One for dir inode, two for dir entries, two for root
2438 * ref/backref.
2439 */
2440 err = btrfs_subvolume_reserve_metadata(root, &block_rsv,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04002441 5, &qgroup_reserved, true);
Miao Xiec58aaad2013-02-28 10:05:36 +00002442 if (err)
2443 goto out_up_write;
2444
Yan, Zhenga22285a2010-05-16 10:48:46 -04002445 trans = btrfs_start_transaction(root, 0);
2446 if (IS_ERR(trans)) {
2447 err = PTR_ERR(trans);
Miao Xiec58aaad2013-02-28 10:05:36 +00002448 goto out_release;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002449 }
Miao Xiec58aaad2013-02-28 10:05:36 +00002450 trans->block_rsv = &block_rsv;
2451 trans->bytes_reserved = block_rsv.size;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002452
Yan, Zheng76dda932009-09-21 16:00:26 -04002453 ret = btrfs_unlink_subvol(trans, root, dir,
2454 dest->root_key.objectid,
2455 dentry->d_name.name,
2456 dentry->d_name.len);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002457 if (ret) {
2458 err = ret;
2459 btrfs_abort_transaction(trans, root, ret);
2460 goto out_end_trans;
2461 }
Yan, Zheng76dda932009-09-21 16:00:26 -04002462
2463 btrfs_record_root_in_trans(trans, dest);
2464
2465 memset(&dest->root_item.drop_progress, 0,
2466 sizeof(dest->root_item.drop_progress));
2467 dest->root_item.drop_level = 0;
2468 btrfs_set_root_refs(&dest->root_item, 0);
2469
Miao Xie27cdeb72014-04-02 19:51:05 +08002470 if (!test_and_set_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &dest->state)) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04002471 ret = btrfs_insert_orphan_item(trans,
2472 root->fs_info->tree_root,
2473 dest->root_key.objectid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002474 if (ret) {
2475 btrfs_abort_transaction(trans, root, ret);
2476 err = ret;
2477 goto out_end_trans;
2478 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04002479 }
Stefan Behrensdd5f9612013-08-15 17:11:20 +02002480
2481 ret = btrfs_uuid_tree_rem(trans, root->fs_info->uuid_root,
2482 dest->root_item.uuid, BTRFS_UUID_KEY_SUBVOL,
2483 dest->root_key.objectid);
2484 if (ret && ret != -ENOENT) {
2485 btrfs_abort_transaction(trans, root, ret);
2486 err = ret;
2487 goto out_end_trans;
2488 }
2489 if (!btrfs_is_empty_uuid(dest->root_item.received_uuid)) {
2490 ret = btrfs_uuid_tree_rem(trans, root->fs_info->uuid_root,
2491 dest->root_item.received_uuid,
2492 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
2493 dest->root_key.objectid);
2494 if (ret && ret != -ENOENT) {
2495 btrfs_abort_transaction(trans, root, ret);
2496 err = ret;
2497 goto out_end_trans;
2498 }
2499 }
2500
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002501out_end_trans:
Miao Xiec58aaad2013-02-28 10:05:36 +00002502 trans->block_rsv = NULL;
2503 trans->bytes_reserved = 0;
Sage Weil531cb132010-10-29 15:41:32 -04002504 ret = btrfs_end_transaction(trans, root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002505 if (ret && !err)
2506 err = ret;
Yan, Zheng76dda932009-09-21 16:00:26 -04002507 inode->i_flags |= S_DEAD;
Miao Xiec58aaad2013-02-28 10:05:36 +00002508out_release:
2509 btrfs_subvolume_release_metadata(root, &block_rsv, qgroup_reserved);
Yan, Zheng76dda932009-09-21 16:00:26 -04002510out_up_write:
2511 up_write(&root->fs_info->subvol_sem);
2512out_unlock:
David Sterba521e0542014-04-15 16:41:44 +02002513 if (err) {
2514 spin_lock(&dest->root_item_lock);
Filipe Mananac55bfa62014-05-25 03:55:44 +01002515 root_flags = btrfs_root_flags(&dest->root_item);
2516 btrfs_set_root_flags(&dest->root_item,
David Sterba521e0542014-04-15 16:41:44 +02002517 root_flags & ~BTRFS_ROOT_SUBVOL_DEAD);
2518 spin_unlock(&dest->root_item_lock);
2519 }
Yan, Zheng76dda932009-09-21 16:00:26 -04002520 mutex_unlock(&inode->i_mutex);
2521 if (!err) {
Yan, Zhengefefb142009-10-09 09:25:16 -04002522 shrink_dcache_sb(root->fs_info->sb);
Yan, Zheng76dda932009-09-21 16:00:26 -04002523 btrfs_invalidate_inodes(dest);
2524 d_delete(dentry);
David Sterba61155aa2014-04-15 16:42:03 +02002525 ASSERT(dest->send_in_progress == 0);
Liu Bofa6ac872013-02-20 14:10:23 +00002526
2527 /* the last ref */
David Sterba57cdc8d2014-02-05 02:37:48 +01002528 if (dest->ino_cache_inode) {
2529 iput(dest->ino_cache_inode);
2530 dest->ino_cache_inode = NULL;
Liu Bofa6ac872013-02-20 14:10:23 +00002531 }
Yan, Zheng76dda932009-09-21 16:00:26 -04002532 }
2533out_dput:
2534 dput(dentry);
2535out_unlock_dir:
2536 mutex_unlock(&dir->i_mutex);
David Sterbae43f9982013-12-06 17:51:32 +01002537out_drop_write:
Al Viro2a79f172011-12-09 08:06:57 -05002538 mnt_drop_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04002539out:
2540 kfree(vol_args);
2541 return err;
2542}
2543
Chris Mason1e701a32010-03-11 09:42:04 -05002544static int btrfs_ioctl_defrag(struct file *file, void __user *argp)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002545{
Al Viro496ad9a2013-01-23 17:07:38 -05002546 struct inode *inode = file_inode(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002547 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason1e701a32010-03-11 09:42:04 -05002548 struct btrfs_ioctl_defrag_range_args *range;
Yan Zhengc146afa2008-11-12 14:34:12 -05002549 int ret;
2550
Ilya Dryomov25122d12013-01-20 15:57:57 +02002551 ret = mnt_want_write_file(file);
2552 if (ret)
2553 return ret;
Li Zefanb83cc962010-12-20 16:04:08 +08002554
Ilya Dryomov25122d12013-01-20 15:57:57 +02002555 if (btrfs_root_readonly(root)) {
2556 ret = -EROFS;
2557 goto out;
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002558 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002559
2560 switch (inode->i_mode & S_IFMT) {
2561 case S_IFDIR:
Chris Masone441d542009-01-05 16:57:23 -05002562 if (!capable(CAP_SYS_ADMIN)) {
2563 ret = -EPERM;
2564 goto out;
2565 }
Eric Sandeende78b512013-01-31 18:21:12 +00002566 ret = btrfs_defrag_root(root);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04002567 if (ret)
2568 goto out;
Eric Sandeende78b512013-01-31 18:21:12 +00002569 ret = btrfs_defrag_root(root->fs_info->extent_root);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002570 break;
2571 case S_IFREG:
Chris Masone441d542009-01-05 16:57:23 -05002572 if (!(file->f_mode & FMODE_WRITE)) {
2573 ret = -EINVAL;
2574 goto out;
2575 }
Chris Mason1e701a32010-03-11 09:42:04 -05002576
2577 range = kzalloc(sizeof(*range), GFP_KERNEL);
2578 if (!range) {
2579 ret = -ENOMEM;
2580 goto out;
2581 }
2582
2583 if (argp) {
2584 if (copy_from_user(range, argp,
2585 sizeof(*range))) {
2586 ret = -EFAULT;
2587 kfree(range);
Dan Carpenter683be162010-03-20 11:24:48 +00002588 goto out;
Chris Mason1e701a32010-03-11 09:42:04 -05002589 }
2590 /* compression requires us to start the IO */
2591 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
2592 range->flags |= BTRFS_DEFRAG_RANGE_START_IO;
2593 range->extent_thresh = (u32)-1;
2594 }
2595 } else {
2596 /* the rest are all set to zero by kzalloc */
2597 range->len = (u64)-1;
2598 }
Al Viro496ad9a2013-01-23 17:07:38 -05002599 ret = btrfs_defrag_file(file_inode(file), file,
Chris Mason4cb53002011-05-24 15:35:30 -04002600 range, 0, 0);
2601 if (ret > 0)
2602 ret = 0;
Chris Mason1e701a32010-03-11 09:42:04 -05002603 kfree(range);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002604 break;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04002605 default:
2606 ret = -EINVAL;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002607 }
Chris Masone441d542009-01-05 16:57:23 -05002608out:
Ilya Dryomov25122d12013-01-20 15:57:57 +02002609 mnt_drop_write_file(file);
Chris Masone441d542009-01-05 16:57:23 -05002610 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002611}
2612
Christoph Hellwigb2950862008-12-02 09:54:17 -05002613static long btrfs_ioctl_add_dev(struct btrfs_root *root, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002614{
2615 struct btrfs_ioctl_vol_args *vol_args;
2616 int ret;
2617
Chris Masone441d542009-01-05 16:57:23 -05002618 if (!capable(CAP_SYS_ADMIN))
2619 return -EPERM;
2620
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002621 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
2622 1)) {
Anand Jaine57138b2013-08-21 11:44:48 +08002623 return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002624 }
2625
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002626 mutex_lock(&root->fs_info->volume_mutex);
Li Zefandae7b662009-04-08 15:06:54 +08002627 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002628 if (IS_ERR(vol_args)) {
2629 ret = PTR_ERR(vol_args);
2630 goto out;
2631 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002632
Mark Fasheh5516e592008-07-24 12:20:14 -04002633 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002634 ret = btrfs_init_new_device(root, vol_args->name);
2635
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002636 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002637out:
2638 mutex_unlock(&root->fs_info->volume_mutex);
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002639 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002640 return ret;
2641}
2642
Miao Xieda249272012-11-26 08:44:50 +00002643static long btrfs_ioctl_rm_dev(struct file *file, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002644{
Al Viro496ad9a2013-01-23 17:07:38 -05002645 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002646 struct btrfs_ioctl_vol_args *vol_args;
2647 int ret;
2648
Chris Masone441d542009-01-05 16:57:23 -05002649 if (!capable(CAP_SYS_ADMIN))
2650 return -EPERM;
2651
Miao Xieda249272012-11-26 08:44:50 +00002652 ret = mnt_want_write_file(file);
2653 if (ret)
2654 return ret;
Yan Zhengc146afa2008-11-12 14:34:12 -05002655
Li Zefandae7b662009-04-08 15:06:54 +08002656 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002657 if (IS_ERR(vol_args)) {
2658 ret = PTR_ERR(vol_args);
Dan Carpenterc47ca322014-09-04 14:09:15 +03002659 goto err_drop;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002660 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002661
Mark Fasheh5516e592008-07-24 12:20:14 -04002662 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002663
Anand Jain183860f2013-05-17 10:52:45 +00002664 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
2665 1)) {
2666 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
2667 goto out;
2668 }
2669
2670 mutex_lock(&root->fs_info->volume_mutex);
2671 ret = btrfs_rm_device(root, vol_args->name);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002672 mutex_unlock(&root->fs_info->volume_mutex);
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002673 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
Anand Jain183860f2013-05-17 10:52:45 +00002674
2675out:
2676 kfree(vol_args);
Dan Carpenterc47ca322014-09-04 14:09:15 +03002677err_drop:
Ilya Dryomov4ac20c72013-01-20 15:57:57 +02002678 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002679 return ret;
2680}
2681
Jan Schmidt475f6382011-03-11 15:41:01 +01002682static long btrfs_ioctl_fs_info(struct btrfs_root *root, void __user *arg)
2683{
Li Zefan027ed2f2011-06-08 08:27:56 +00002684 struct btrfs_ioctl_fs_info_args *fi_args;
Jan Schmidt475f6382011-03-11 15:41:01 +01002685 struct btrfs_device *device;
2686 struct btrfs_device *next;
2687 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
Li Zefan027ed2f2011-06-08 08:27:56 +00002688 int ret = 0;
Jan Schmidt475f6382011-03-11 15:41:01 +01002689
Li Zefan027ed2f2011-06-08 08:27:56 +00002690 fi_args = kzalloc(sizeof(*fi_args), GFP_KERNEL);
2691 if (!fi_args)
2692 return -ENOMEM;
2693
Filipe David Borba Mananaf7171752013-08-12 20:56:58 +01002694 mutex_lock(&fs_devices->device_list_mutex);
Li Zefan027ed2f2011-06-08 08:27:56 +00002695 fi_args->num_devices = fs_devices->num_devices;
2696 memcpy(&fi_args->fsid, root->fs_info->fsid, sizeof(fi_args->fsid));
Jan Schmidt475f6382011-03-11 15:41:01 +01002697
Jan Schmidt475f6382011-03-11 15:41:01 +01002698 list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) {
Li Zefan027ed2f2011-06-08 08:27:56 +00002699 if (device->devid > fi_args->max_id)
2700 fi_args->max_id = device->devid;
Jan Schmidt475f6382011-03-11 15:41:01 +01002701 }
2702 mutex_unlock(&fs_devices->device_list_mutex);
2703
David Sterba80a773f2014-05-07 18:17:06 +02002704 fi_args->nodesize = root->fs_info->super_copy->nodesize;
2705 fi_args->sectorsize = root->fs_info->super_copy->sectorsize;
2706 fi_args->clone_alignment = root->fs_info->super_copy->sectorsize;
2707
Li Zefan027ed2f2011-06-08 08:27:56 +00002708 if (copy_to_user(arg, fi_args, sizeof(*fi_args)))
2709 ret = -EFAULT;
Jan Schmidt475f6382011-03-11 15:41:01 +01002710
Li Zefan027ed2f2011-06-08 08:27:56 +00002711 kfree(fi_args);
2712 return ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01002713}
2714
2715static long btrfs_ioctl_dev_info(struct btrfs_root *root, void __user *arg)
2716{
2717 struct btrfs_ioctl_dev_info_args *di_args;
2718 struct btrfs_device *dev;
2719 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
2720 int ret = 0;
2721 char *s_uuid = NULL;
Jan Schmidt475f6382011-03-11 15:41:01 +01002722
Jan Schmidt475f6382011-03-11 15:41:01 +01002723 di_args = memdup_user(arg, sizeof(*di_args));
2724 if (IS_ERR(di_args))
2725 return PTR_ERR(di_args);
2726
Stefan Behrensdd5f9612013-08-15 17:11:20 +02002727 if (!btrfs_is_empty_uuid(di_args->uuid))
Jan Schmidt475f6382011-03-11 15:41:01 +01002728 s_uuid = di_args->uuid;
2729
2730 mutex_lock(&fs_devices->device_list_mutex);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01002731 dev = btrfs_find_device(root->fs_info, di_args->devid, s_uuid, NULL);
Jan Schmidt475f6382011-03-11 15:41:01 +01002732
2733 if (!dev) {
2734 ret = -ENODEV;
2735 goto out;
2736 }
2737
2738 di_args->devid = dev->devid;
2739 di_args->bytes_used = dev->bytes_used;
2740 di_args->total_bytes = dev->total_bytes;
2741 memcpy(di_args->uuid, dev->uuid, sizeof(di_args->uuid));
Jim Meyeringa27202f2012-04-26 18:36:56 +02002742 if (dev->name) {
Josef Bacik606686e2012-06-04 14:03:51 -04002743 struct rcu_string *name;
2744
2745 rcu_read_lock();
2746 name = rcu_dereference(dev->name);
2747 strncpy(di_args->path, name->str, sizeof(di_args->path));
2748 rcu_read_unlock();
Jim Meyeringa27202f2012-04-26 18:36:56 +02002749 di_args->path[sizeof(di_args->path) - 1] = 0;
2750 } else {
Stefan Behrens99ba55a2012-03-19 16:17:22 +01002751 di_args->path[0] = '\0';
Jim Meyeringa27202f2012-04-26 18:36:56 +02002752 }
Jan Schmidt475f6382011-03-11 15:41:01 +01002753
2754out:
David Sterba55793c02013-04-26 15:20:23 +00002755 mutex_unlock(&fs_devices->device_list_mutex);
Jan Schmidt475f6382011-03-11 15:41:01 +01002756 if (ret == 0 && copy_to_user(arg, di_args, sizeof(*di_args)))
2757 ret = -EFAULT;
2758
2759 kfree(di_args);
2760 return ret;
2761}
2762
Mark Fasheh416161d2013-08-06 11:42:51 -07002763static struct page *extent_same_get_page(struct inode *inode, u64 off)
2764{
2765 struct page *page;
2766 pgoff_t index;
2767 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2768
2769 index = off >> PAGE_CACHE_SHIFT;
2770
2771 page = grab_cache_page(inode->i_mapping, index);
2772 if (!page)
2773 return NULL;
2774
2775 if (!PageUptodate(page)) {
2776 if (extent_read_full_page_nolock(tree, page, btrfs_get_extent,
2777 0))
2778 return NULL;
2779 lock_page(page);
2780 if (!PageUptodate(page)) {
2781 unlock_page(page);
2782 page_cache_release(page);
2783 return NULL;
2784 }
2785 }
2786 unlock_page(page);
2787
2788 return page;
2789}
2790
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002791static inline void lock_extent_range(struct inode *inode, u64 off, u64 len)
2792{
2793 /* do any pending delalloc/csum calc on src, one way or
2794 another, and lock file content */
2795 while (1) {
2796 struct btrfs_ordered_extent *ordered;
2797 lock_extent(&BTRFS_I(inode)->io_tree, off, off + len - 1);
2798 ordered = btrfs_lookup_first_ordered_extent(inode,
2799 off + len - 1);
Filipe Mananaff5df9b2014-05-30 17:56:24 +01002800 if ((!ordered ||
2801 ordered->file_offset + ordered->len <= off ||
2802 ordered->file_offset >= off + len) &&
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002803 !test_range_bit(&BTRFS_I(inode)->io_tree, off,
Filipe Mananaff5df9b2014-05-30 17:56:24 +01002804 off + len - 1, EXTENT_DELALLOC, 0, NULL)) {
2805 if (ordered)
2806 btrfs_put_ordered_extent(ordered);
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002807 break;
Filipe Mananaff5df9b2014-05-30 17:56:24 +01002808 }
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002809 unlock_extent(&BTRFS_I(inode)->io_tree, off, off + len - 1);
2810 if (ordered)
2811 btrfs_put_ordered_extent(ordered);
2812 btrfs_wait_ordered_range(inode, off, len);
2813 }
2814}
2815
Mark Fasheh416161d2013-08-06 11:42:51 -07002816static void btrfs_double_unlock(struct inode *inode1, u64 loff1,
2817 struct inode *inode2, u64 loff2, u64 len)
2818{
2819 unlock_extent(&BTRFS_I(inode1)->io_tree, loff1, loff1 + len - 1);
2820 unlock_extent(&BTRFS_I(inode2)->io_tree, loff2, loff2 + len - 1);
2821
2822 mutex_unlock(&inode1->i_mutex);
2823 mutex_unlock(&inode2->i_mutex);
2824}
2825
2826static void btrfs_double_lock(struct inode *inode1, u64 loff1,
2827 struct inode *inode2, u64 loff2, u64 len)
2828{
2829 if (inode1 < inode2) {
2830 swap(inode1, inode2);
2831 swap(loff1, loff2);
2832 }
2833
2834 mutex_lock_nested(&inode1->i_mutex, I_MUTEX_PARENT);
2835 lock_extent_range(inode1, loff1, len);
2836 if (inode1 != inode2) {
2837 mutex_lock_nested(&inode2->i_mutex, I_MUTEX_CHILD);
2838 lock_extent_range(inode2, loff2, len);
2839 }
2840}
2841
2842static int btrfs_cmp_data(struct inode *src, u64 loff, struct inode *dst,
2843 u64 dst_loff, u64 len)
2844{
2845 int ret = 0;
2846 struct page *src_page, *dst_page;
2847 unsigned int cmp_len = PAGE_CACHE_SIZE;
2848 void *addr, *dst_addr;
2849
2850 while (len) {
2851 if (len < PAGE_CACHE_SIZE)
2852 cmp_len = len;
2853
2854 src_page = extent_same_get_page(src, loff);
2855 if (!src_page)
2856 return -EINVAL;
2857 dst_page = extent_same_get_page(dst, dst_loff);
2858 if (!dst_page) {
2859 page_cache_release(src_page);
2860 return -EINVAL;
2861 }
2862 addr = kmap_atomic(src_page);
2863 dst_addr = kmap_atomic(dst_page);
2864
2865 flush_dcache_page(src_page);
2866 flush_dcache_page(dst_page);
2867
2868 if (memcmp(addr, dst_addr, cmp_len))
2869 ret = BTRFS_SAME_DATA_DIFFERS;
2870
2871 kunmap_atomic(addr);
2872 kunmap_atomic(dst_addr);
2873 page_cache_release(src_page);
2874 page_cache_release(dst_page);
2875
2876 if (ret)
2877 break;
2878
2879 loff += cmp_len;
2880 dst_loff += cmp_len;
2881 len -= cmp_len;
2882 }
2883
2884 return ret;
2885}
2886
2887static int extent_same_check_offsets(struct inode *inode, u64 off, u64 len)
2888{
2889 u64 bs = BTRFS_I(inode)->root->fs_info->sb->s_blocksize;
2890
2891 if (off + len > inode->i_size || off + len < off)
2892 return -EINVAL;
2893 /* Check that we are block aligned - btrfs_clone() requires this */
2894 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs))
2895 return -EINVAL;
2896
2897 return 0;
2898}
2899
2900static int btrfs_extent_same(struct inode *src, u64 loff, u64 len,
2901 struct inode *dst, u64 dst_loff)
2902{
2903 int ret;
2904
2905 /*
2906 * btrfs_clone() can't handle extents in the same file
2907 * yet. Once that works, we can drop this check and replace it
2908 * with a check for the same inode, but overlapping extents.
2909 */
2910 if (src == dst)
2911 return -EINVAL;
2912
2913 btrfs_double_lock(src, loff, dst, dst_loff, len);
2914
2915 ret = extent_same_check_offsets(src, loff, len);
2916 if (ret)
2917 goto out_unlock;
2918
2919 ret = extent_same_check_offsets(dst, dst_loff, len);
2920 if (ret)
2921 goto out_unlock;
2922
2923 /* don't make the dst file partly checksummed */
2924 if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
2925 (BTRFS_I(dst)->flags & BTRFS_INODE_NODATASUM)) {
2926 ret = -EINVAL;
2927 goto out_unlock;
2928 }
2929
2930 ret = btrfs_cmp_data(src, loff, dst, dst_loff, len);
2931 if (ret == 0)
2932 ret = btrfs_clone(src, dst, loff, len, len, dst_loff);
2933
2934out_unlock:
2935 btrfs_double_unlock(src, loff, dst, dst_loff, len);
2936
2937 return ret;
2938}
2939
2940#define BTRFS_MAX_DEDUPE_LEN (16 * 1024 * 1024)
2941
2942static long btrfs_ioctl_file_extent_same(struct file *file,
Al Viro1c1c8742013-12-11 23:07:51 -05002943 struct btrfs_ioctl_same_args __user *argp)
Mark Fasheh416161d2013-08-06 11:42:51 -07002944{
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07002945 struct btrfs_ioctl_same_args *same;
2946 struct btrfs_ioctl_same_extent_info *info;
Al Viro1c1c8742013-12-11 23:07:51 -05002947 struct inode *src = file_inode(file);
Mark Fasheh416161d2013-08-06 11:42:51 -07002948 u64 off;
2949 u64 len;
2950 int i;
2951 int ret;
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07002952 unsigned long size;
Mark Fasheh416161d2013-08-06 11:42:51 -07002953 u64 bs = BTRFS_I(src)->root->fs_info->sb->s_blocksize;
2954 bool is_admin = capable(CAP_SYS_ADMIN);
Al Viro1c1c8742013-12-11 23:07:51 -05002955 u16 count;
Mark Fasheh416161d2013-08-06 11:42:51 -07002956
2957 if (!(file->f_mode & FMODE_READ))
2958 return -EINVAL;
2959
2960 ret = mnt_want_write_file(file);
2961 if (ret)
2962 return ret;
2963
Al Viro1c1c8742013-12-11 23:07:51 -05002964 if (get_user(count, &argp->dest_count)) {
Mark Fasheh416161d2013-08-06 11:42:51 -07002965 ret = -EFAULT;
2966 goto out;
2967 }
2968
Al Viro1c1c8742013-12-11 23:07:51 -05002969 size = offsetof(struct btrfs_ioctl_same_args __user, info[count]);
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07002970
Al Viro1c1c8742013-12-11 23:07:51 -05002971 same = memdup_user(argp, size);
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07002972
Geyslan G. Bem229eed42013-10-14 12:18:25 -03002973 if (IS_ERR(same)) {
2974 ret = PTR_ERR(same);
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07002975 goto out;
2976 }
2977
2978 off = same->logical_offset;
2979 len = same->length;
Mark Fasheh416161d2013-08-06 11:42:51 -07002980
2981 /*
2982 * Limit the total length we will dedupe for each operation.
2983 * This is intended to bound the total time spent in this
2984 * ioctl to something sane.
2985 */
2986 if (len > BTRFS_MAX_DEDUPE_LEN)
2987 len = BTRFS_MAX_DEDUPE_LEN;
2988
2989 if (WARN_ON_ONCE(bs < PAGE_CACHE_SIZE)) {
2990 /*
2991 * Btrfs does not support blocksize < page_size. As a
2992 * result, btrfs_cmp_data() won't correctly handle
2993 * this situation without an update.
2994 */
2995 ret = -EINVAL;
2996 goto out;
2997 }
2998
2999 ret = -EISDIR;
3000 if (S_ISDIR(src->i_mode))
3001 goto out;
3002
3003 ret = -EACCES;
3004 if (!S_ISREG(src->i_mode))
3005 goto out;
3006
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003007 /* pre-format output fields to sane values */
Al Viro1c1c8742013-12-11 23:07:51 -05003008 for (i = 0; i < count; i++) {
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003009 same->info[i].bytes_deduped = 0ULL;
3010 same->info[i].status = 0;
3011 }
3012
Al Viro1c1c8742013-12-11 23:07:51 -05003013 for (i = 0, info = same->info; i < count; i++, info++) {
3014 struct inode *dst;
3015 struct fd dst_file = fdget(info->fd);
3016 if (!dst_file.file) {
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003017 info->status = -EBADF;
Al Viro1c1c8742013-12-11 23:07:51 -05003018 continue;
Mark Fasheh416161d2013-08-06 11:42:51 -07003019 }
Al Viro1c1c8742013-12-11 23:07:51 -05003020 dst = file_inode(dst_file.file);
Mark Fasheh416161d2013-08-06 11:42:51 -07003021
Al Viro1c1c8742013-12-11 23:07:51 -05003022 if (!(is_admin || (dst_file.file->f_mode & FMODE_WRITE))) {
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003023 info->status = -EINVAL;
Al Viro1c1c8742013-12-11 23:07:51 -05003024 } else if (file->f_path.mnt != dst_file.file->f_path.mnt) {
3025 info->status = -EXDEV;
3026 } else if (S_ISDIR(dst->i_mode)) {
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003027 info->status = -EISDIR;
Al Viro1c1c8742013-12-11 23:07:51 -05003028 } else if (!S_ISREG(dst->i_mode)) {
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003029 info->status = -EACCES;
Al Viro1c1c8742013-12-11 23:07:51 -05003030 } else {
3031 info->status = btrfs_extent_same(src, off, len, dst,
3032 info->logical_offset);
3033 if (info->status == 0)
3034 info->bytes_deduped += len;
Mark Fasheh416161d2013-08-06 11:42:51 -07003035 }
Al Viro1c1c8742013-12-11 23:07:51 -05003036 fdput(dst_file);
Mark Fasheh416161d2013-08-06 11:42:51 -07003037 }
3038
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003039 ret = copy_to_user(argp, same, size);
3040 if (ret)
3041 ret = -EFAULT;
3042
Mark Fasheh416161d2013-08-06 11:42:51 -07003043out:
3044 mnt_drop_write_file(file);
3045 return ret;
3046}
3047
Josef Bacikfcebe452014-05-13 17:30:47 -07003048/* Helper to check and see if this root currently has a ref on the given disk
3049 * bytenr. If it does then we need to update the quota for this root. This
3050 * doesn't do anything if quotas aren't enabled.
3051 */
3052static int check_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
3053 u64 disko)
3054{
3055 struct seq_list tree_mod_seq_elem = {};
3056 struct ulist *roots;
3057 struct ulist_iterator uiter;
3058 struct ulist_node *root_node = NULL;
3059 int ret;
3060
3061 if (!root->fs_info->quota_enabled)
3062 return 1;
3063
3064 btrfs_get_tree_mod_seq(root->fs_info, &tree_mod_seq_elem);
3065 ret = btrfs_find_all_roots(trans, root->fs_info, disko,
3066 tree_mod_seq_elem.seq, &roots);
3067 if (ret < 0)
3068 goto out;
3069 ret = 0;
3070 ULIST_ITER_INIT(&uiter);
3071 while ((root_node = ulist_next(roots, &uiter))) {
3072 if (root_node->val == root->objectid) {
3073 ret = 1;
3074 break;
3075 }
3076 }
3077 ulist_free(roots);
3078out:
3079 btrfs_put_tree_mod_seq(root->fs_info, &tree_mod_seq_elem);
3080 return ret;
3081}
3082
Filipe Mananaf82a9902014-06-01 01:50:28 +01003083static int clone_finish_inode_update(struct btrfs_trans_handle *trans,
3084 struct inode *inode,
3085 u64 endoff,
3086 const u64 destoff,
3087 const u64 olen)
3088{
3089 struct btrfs_root *root = BTRFS_I(inode)->root;
3090 int ret;
3091
3092 inode_inc_iversion(inode);
3093 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
3094 /*
3095 * We round up to the block size at eof when determining which
3096 * extents to clone above, but shouldn't round up the file size.
3097 */
3098 if (endoff > destoff + olen)
3099 endoff = destoff + olen;
3100 if (endoff > inode->i_size)
3101 btrfs_i_size_write(inode, endoff);
3102
3103 ret = btrfs_update_inode(trans, root, inode);
3104 if (ret) {
3105 btrfs_abort_transaction(trans, root, ret);
3106 btrfs_end_transaction(trans, root);
3107 goto out;
3108 }
3109 ret = btrfs_end_transaction(trans, root);
3110out:
3111 return ret;
3112}
3113
Filipe Manana7ffbb592014-06-09 03:48:05 +01003114static void clone_update_extent_map(struct inode *inode,
3115 const struct btrfs_trans_handle *trans,
3116 const struct btrfs_path *path,
Filipe Manana7ffbb592014-06-09 03:48:05 +01003117 const u64 hole_offset,
3118 const u64 hole_len)
3119{
3120 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
3121 struct extent_map *em;
3122 int ret;
3123
3124 em = alloc_extent_map();
3125 if (!em) {
3126 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3127 &BTRFS_I(inode)->runtime_flags);
3128 return;
3129 }
3130
Filipe Manana14f59792014-06-29 21:45:40 +01003131 if (path) {
3132 struct btrfs_file_extent_item *fi;
3133
3134 fi = btrfs_item_ptr(path->nodes[0], path->slots[0],
3135 struct btrfs_file_extent_item);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003136 btrfs_extent_item_to_extent_map(inode, path, fi, false, em);
3137 em->generation = -1;
3138 if (btrfs_file_extent_type(path->nodes[0], fi) ==
3139 BTRFS_FILE_EXTENT_INLINE)
3140 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3141 &BTRFS_I(inode)->runtime_flags);
3142 } else {
3143 em->start = hole_offset;
3144 em->len = hole_len;
3145 em->ram_bytes = em->len;
3146 em->orig_start = hole_offset;
3147 em->block_start = EXTENT_MAP_HOLE;
3148 em->block_len = 0;
3149 em->orig_block_len = 0;
3150 em->compress_type = BTRFS_COMPRESS_NONE;
3151 em->generation = trans->transid;
3152 }
3153
3154 while (1) {
3155 write_lock(&em_tree->lock);
3156 ret = add_extent_mapping(em_tree, em, 1);
3157 write_unlock(&em_tree->lock);
3158 if (ret != -EEXIST) {
3159 free_extent_map(em);
3160 break;
3161 }
3162 btrfs_drop_extent_cache(inode, em->start,
3163 em->start + em->len - 1, 0);
3164 }
3165
3166 if (unlikely(ret))
3167 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3168 &BTRFS_I(inode)->runtime_flags);
3169}
3170
Mark Fasheh32b7c682013-08-06 11:42:49 -07003171/**
3172 * btrfs_clone() - clone a range from inode file to another
3173 *
3174 * @src: Inode to clone from
3175 * @inode: Inode to clone to
3176 * @off: Offset within source to start clone from
3177 * @olen: Original length, passed by user, of range to clone
3178 * @olen_aligned: Block-aligned value of olen, extent_same uses
3179 * identical values here
3180 * @destoff: Offset within @inode to start clone
3181 */
3182static int btrfs_clone(struct inode *src, struct inode *inode,
Filipe Mananaf82a9902014-06-01 01:50:28 +01003183 const u64 off, const u64 olen, const u64 olen_aligned,
3184 const u64 destoff)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003185{
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003186 struct btrfs_root *root = BTRFS_I(inode)->root;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003187 struct btrfs_path *path = NULL;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003188 struct extent_buffer *leaf;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003189 struct btrfs_trans_handle *trans;
3190 char *buf = NULL;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003191 struct btrfs_key key;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003192 u32 nritems;
3193 int slot;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003194 int ret;
Josef Bacikfcebe452014-05-13 17:30:47 -07003195 int no_quota;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003196 const u64 len = olen_aligned;
Josef Bacikfcebe452014-05-13 17:30:47 -07003197 u64 last_disko = 0;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003198 u64 last_dest_end = destoff;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003199
3200 ret = -ENOMEM;
David Sterba707e8a02014-06-04 19:22:26 +02003201 buf = vmalloc(root->nodesize);
Yan Zhengae01a0a2008-08-04 23:23:47 -04003202 if (!buf)
Mark Fasheh32b7c682013-08-06 11:42:49 -07003203 return ret;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003204
3205 path = btrfs_alloc_path();
3206 if (!path) {
3207 vfree(buf);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003208 return ret;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003209 }
Mark Fasheh32b7c682013-08-06 11:42:49 -07003210
Yan Zhengae01a0a2008-08-04 23:23:47 -04003211 path->reada = 2;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003212 /* clone data */
Li Zefan33345d012011-04-20 10:31:50 +08003213 key.objectid = btrfs_ino(src);
Yan Zhengae01a0a2008-08-04 23:23:47 -04003214 key.type = BTRFS_EXTENT_DATA_KEY;
Filipe Manana2c463822014-05-31 02:31:05 +01003215 key.offset = off;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003216
3217 while (1) {
3218 /*
3219 * note the key will change type as we walk through the
3220 * tree.
3221 */
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003222 path->leave_spinning = 1;
David Sterba362a20c2011-08-01 18:11:57 +02003223 ret = btrfs_search_slot(NULL, BTRFS_I(src)->root, &key, path,
3224 0, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003225 if (ret < 0)
3226 goto out;
Filipe Manana2c463822014-05-31 02:31:05 +01003227 /*
3228 * First search, if no extent item that starts at offset off was
3229 * found but the previous item is an extent item, it's possible
3230 * it might overlap our target range, therefore process it.
3231 */
3232 if (key.offset == off && ret > 0 && path->slots[0] > 0) {
3233 btrfs_item_key_to_cpu(path->nodes[0], &key,
3234 path->slots[0] - 1);
3235 if (key.type == BTRFS_EXTENT_DATA_KEY)
3236 path->slots[0]--;
3237 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003238
Yan Zhengae01a0a2008-08-04 23:23:47 -04003239 nritems = btrfs_header_nritems(path->nodes[0]);
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003240process_slot:
Josef Bacikfcebe452014-05-13 17:30:47 -07003241 no_quota = 1;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003242 if (path->slots[0] >= nritems) {
David Sterba362a20c2011-08-01 18:11:57 +02003243 ret = btrfs_next_leaf(BTRFS_I(src)->root, path);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003244 if (ret < 0)
3245 goto out;
3246 if (ret > 0)
3247 break;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003248 nritems = btrfs_header_nritems(path->nodes[0]);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003249 }
3250 leaf = path->nodes[0];
3251 slot = path->slots[0];
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003252
Yan Zhengae01a0a2008-08-04 23:23:47 -04003253 btrfs_item_key_to_cpu(leaf, &key, slot);
David Sterba962a2982014-06-04 18:41:45 +02003254 if (key.type > BTRFS_EXTENT_DATA_KEY ||
Li Zefan33345d012011-04-20 10:31:50 +08003255 key.objectid != btrfs_ino(src))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003256 break;
3257
David Sterba962a2982014-06-04 18:41:45 +02003258 if (key.type == BTRFS_EXTENT_DATA_KEY) {
Sage Weilc5c9cd42008-11-12 14:32:25 -05003259 struct btrfs_file_extent_item *extent;
3260 int type;
Zheng Yan31840ae2008-09-23 13:14:14 -04003261 u32 size;
3262 struct btrfs_key new_key;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003263 u64 disko = 0, diskl = 0;
3264 u64 datao = 0, datal = 0;
3265 u8 comp;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003266 u64 drop_start;
Zheng Yan31840ae2008-09-23 13:14:14 -04003267
Sage Weilc5c9cd42008-11-12 14:32:25 -05003268 extent = btrfs_item_ptr(leaf, slot,
3269 struct btrfs_file_extent_item);
3270 comp = btrfs_file_extent_compression(leaf, extent);
3271 type = btrfs_file_extent_type(leaf, extent);
Chris Masonc8a894d2009-06-27 21:07:03 -04003272 if (type == BTRFS_FILE_EXTENT_REG ||
3273 type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masond3977122009-01-05 21:25:51 -05003274 disko = btrfs_file_extent_disk_bytenr(leaf,
3275 extent);
3276 diskl = btrfs_file_extent_disk_num_bytes(leaf,
3277 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003278 datao = btrfs_file_extent_offset(leaf, extent);
Chris Masond3977122009-01-05 21:25:51 -05003279 datal = btrfs_file_extent_num_bytes(leaf,
3280 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003281 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
3282 /* take upper bound, may be compressed */
3283 datal = btrfs_file_extent_ram_bytes(leaf,
3284 extent);
3285 }
Zheng Yan31840ae2008-09-23 13:14:14 -04003286
Filipe Manana2c463822014-05-31 02:31:05 +01003287 /*
3288 * The first search might have left us at an extent
3289 * item that ends before our target range's start, can
3290 * happen if we have holes and NO_HOLES feature enabled.
3291 */
3292 if (key.offset + datal <= off) {
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003293 path->slots[0]++;
3294 goto process_slot;
Filipe Manana2c463822014-05-31 02:31:05 +01003295 } else if (key.offset >= off + len) {
3296 break;
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003297 }
3298
3299 size = btrfs_item_size_nr(leaf, slot);
3300 read_extent_buffer(leaf, buf,
3301 btrfs_item_ptr_offset(leaf, slot),
3302 size);
3303
3304 btrfs_release_path(path);
3305 path->leave_spinning = 0;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003306
Zheng Yan31840ae2008-09-23 13:14:14 -04003307 memcpy(&new_key, &key, sizeof(new_key));
Li Zefan33345d012011-04-20 10:31:50 +08003308 new_key.objectid = btrfs_ino(inode);
Li Zefan4d728ec2011-01-26 14:10:43 +08003309 if (off <= key.offset)
3310 new_key.offset = key.offset + destoff - off;
3311 else
3312 new_key.offset = destoff;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003313
Sage Weilb6f34092011-09-20 14:48:51 -04003314 /*
Filipe Mananaf82a9902014-06-01 01:50:28 +01003315 * Deal with a hole that doesn't have an extent item
3316 * that represents it (NO_HOLES feature enabled).
3317 * This hole is either in the middle of the cloning
3318 * range or at the beginning (fully overlaps it or
3319 * partially overlaps it).
3320 */
3321 if (new_key.offset != last_dest_end)
3322 drop_start = last_dest_end;
3323 else
3324 drop_start = new_key.offset;
3325
3326 /*
Sage Weilb6f34092011-09-20 14:48:51 -04003327 * 1 - adjusting old extent (we may have to split it)
3328 * 1 - add new extent
3329 * 1 - inode update
3330 */
3331 trans = btrfs_start_transaction(root, 3);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003332 if (IS_ERR(trans)) {
3333 ret = PTR_ERR(trans);
3334 goto out;
3335 }
3336
Chris Masonc8a894d2009-06-27 21:07:03 -04003337 if (type == BTRFS_FILE_EXTENT_REG ||
3338 type == BTRFS_FILE_EXTENT_PREALLOC) {
Li Zefand72c0842011-09-11 10:52:25 -04003339 /*
3340 * a | --- range to clone ---| b
3341 * | ------------- extent ------------- |
3342 */
3343
Antonio Ospite93915582014-06-04 14:03:48 +02003344 /* subtract range b */
Li Zefand72c0842011-09-11 10:52:25 -04003345 if (key.offset + datal > off + len)
3346 datal = off + len - key.offset;
3347
Antonio Ospite93915582014-06-04 14:03:48 +02003348 /* subtract range a */
Yan, Zhenga22285a2010-05-16 10:48:46 -04003349 if (off > key.offset) {
3350 datao += off - key.offset;
3351 datal -= off - key.offset;
3352 }
3353
Josef Bacik5dc562c2012-08-17 13:14:17 -04003354 ret = btrfs_drop_extents(trans, root, inode,
Filipe Mananaf82a9902014-06-01 01:50:28 +01003355 drop_start,
Yan, Zhenga22285a2010-05-16 10:48:46 -04003356 new_key.offset + datal,
Josef Bacik26714852012-08-29 12:24:27 -04003357 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003358 if (ret) {
David Sterba3f9e3df2014-04-15 18:50:17 +02003359 if (ret != -EOPNOTSUPP)
Liu Bo00fdf132014-03-10 18:56:07 +08003360 btrfs_abort_transaction(trans,
3361 root, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003362 btrfs_end_transaction(trans, root);
3363 goto out;
3364 }
Yan, Zhenga22285a2010-05-16 10:48:46 -04003365
Sage Weilc5c9cd42008-11-12 14:32:25 -05003366 ret = btrfs_insert_empty_item(trans, root, path,
3367 &new_key, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003368 if (ret) {
3369 btrfs_abort_transaction(trans, root,
3370 ret);
3371 btrfs_end_transaction(trans, root);
3372 goto out;
3373 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05003374
3375 leaf = path->nodes[0];
3376 slot = path->slots[0];
3377 write_extent_buffer(leaf, buf,
3378 btrfs_item_ptr_offset(leaf, slot),
3379 size);
3380
3381 extent = btrfs_item_ptr(leaf, slot,
3382 struct btrfs_file_extent_item);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003383
Sage Weilc5c9cd42008-11-12 14:32:25 -05003384 /* disko == 0 means it's a hole */
3385 if (!disko)
3386 datao = 0;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003387
3388 btrfs_set_file_extent_offset(leaf, extent,
3389 datao);
3390 btrfs_set_file_extent_num_bytes(leaf, extent,
3391 datal);
Josef Bacikfcebe452014-05-13 17:30:47 -07003392
3393 /*
3394 * We need to look up the roots that point at
3395 * this bytenr and see if the new root does. If
3396 * it does not we need to make sure we update
3397 * quotas appropriately.
3398 */
3399 if (disko && root != BTRFS_I(src)->root &&
3400 disko != last_disko) {
3401 no_quota = check_ref(trans, root,
3402 disko);
3403 if (no_quota < 0) {
3404 btrfs_abort_transaction(trans,
3405 root,
3406 ret);
3407 btrfs_end_transaction(trans,
3408 root);
3409 ret = no_quota;
3410 goto out;
3411 }
3412 }
3413
Sage Weilc5c9cd42008-11-12 14:32:25 -05003414 if (disko) {
3415 inode_add_bytes(inode, datal);
3416 ret = btrfs_inc_extent_ref(trans, root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003417 disko, diskl, 0,
3418 root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08003419 btrfs_ino(inode),
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003420 new_key.offset - datao,
Josef Bacikfcebe452014-05-13 17:30:47 -07003421 no_quota);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003422 if (ret) {
3423 btrfs_abort_transaction(trans,
3424 root,
3425 ret);
3426 btrfs_end_transaction(trans,
3427 root);
3428 goto out;
3429
3430 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05003431 }
3432 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
3433 u64 skip = 0;
3434 u64 trim = 0;
Liu Bod3ecfcd2014-05-09 10:01:02 +08003435 u64 aligned_end = 0;
3436
Sage Weilc5c9cd42008-11-12 14:32:25 -05003437 if (off > key.offset) {
3438 skip = off - key.offset;
3439 new_key.offset += skip;
3440 }
Chris Masond3977122009-01-05 21:25:51 -05003441
Liu Boaa42ffd2012-09-18 03:52:23 -06003442 if (key.offset + datal > off + len)
3443 trim = key.offset + datal - (off + len);
Chris Masond3977122009-01-05 21:25:51 -05003444
Sage Weilc5c9cd42008-11-12 14:32:25 -05003445 if (comp && (skip || trim)) {
Sage Weilc5c9cd42008-11-12 14:32:25 -05003446 ret = -EINVAL;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003447 btrfs_end_transaction(trans, root);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003448 goto out;
3449 }
3450 size -= skip + trim;
3451 datal -= skip + trim;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003452
Liu Bod3ecfcd2014-05-09 10:01:02 +08003453 aligned_end = ALIGN(new_key.offset + datal,
3454 root->sectorsize);
Josef Bacik5dc562c2012-08-17 13:14:17 -04003455 ret = btrfs_drop_extents(trans, root, inode,
Filipe Mananaf82a9902014-06-01 01:50:28 +01003456 drop_start,
Liu Bod3ecfcd2014-05-09 10:01:02 +08003457 aligned_end,
Josef Bacik26714852012-08-29 12:24:27 -04003458 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003459 if (ret) {
David Sterba3f9e3df2014-04-15 18:50:17 +02003460 if (ret != -EOPNOTSUPP)
Chris Mason3a29bc02014-04-07 07:10:40 -07003461 btrfs_abort_transaction(trans,
3462 root, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003463 btrfs_end_transaction(trans, root);
3464 goto out;
3465 }
Yan, Zhenga22285a2010-05-16 10:48:46 -04003466
Sage Weilc5c9cd42008-11-12 14:32:25 -05003467 ret = btrfs_insert_empty_item(trans, root, path,
3468 &new_key, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003469 if (ret) {
3470 btrfs_abort_transaction(trans, root,
3471 ret);
3472 btrfs_end_transaction(trans, root);
3473 goto out;
3474 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05003475
3476 if (skip) {
Chris Masond3977122009-01-05 21:25:51 -05003477 u32 start =
3478 btrfs_file_extent_calc_inline_size(0);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003479 memmove(buf+start, buf+start+skip,
3480 datal);
3481 }
3482
3483 leaf = path->nodes[0];
3484 slot = path->slots[0];
3485 write_extent_buffer(leaf, buf,
3486 btrfs_item_ptr_offset(leaf, slot),
3487 size);
3488 inode_add_bytes(inode, datal);
3489 }
3490
Filipe Manana7ffbb592014-06-09 03:48:05 +01003491 /* If we have an implicit hole (NO_HOLES feature). */
3492 if (drop_start < new_key.offset)
3493 clone_update_extent_map(inode, trans,
Filipe Manana14f59792014-06-29 21:45:40 +01003494 NULL, drop_start,
Filipe Manana7ffbb592014-06-09 03:48:05 +01003495 new_key.offset - drop_start);
3496
Filipe Manana14f59792014-06-29 21:45:40 +01003497 clone_update_extent_map(inode, trans, path, 0, 0);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003498
Sage Weilc5c9cd42008-11-12 14:32:25 -05003499 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02003500 btrfs_release_path(path);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003501
Filipe Manana62e23902014-08-08 02:47:06 +01003502 last_dest_end = ALIGN(new_key.offset + datal,
3503 root->sectorsize);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003504 ret = clone_finish_inode_update(trans, inode,
3505 last_dest_end,
3506 destoff, olen);
3507 if (ret)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003508 goto out;
Filipe Manana2c463822014-05-31 02:31:05 +01003509 if (new_key.offset + datal >= destoff + len)
3510 break;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003511 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003512 btrfs_release_path(path);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003513 key.offset++;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003514 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003515 ret = 0;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003516
Filipe Mananaf82a9902014-06-01 01:50:28 +01003517 if (last_dest_end < destoff + len) {
3518 /*
3519 * We have an implicit hole (NO_HOLES feature is enabled) that
3520 * fully or partially overlaps our cloning range at its end.
3521 */
3522 btrfs_release_path(path);
3523
3524 /*
3525 * 1 - remove extent(s)
3526 * 1 - inode update
3527 */
3528 trans = btrfs_start_transaction(root, 2);
3529 if (IS_ERR(trans)) {
3530 ret = PTR_ERR(trans);
3531 goto out;
3532 }
3533 ret = btrfs_drop_extents(trans, root, inode,
3534 last_dest_end, destoff + len, 1);
3535 if (ret) {
3536 if (ret != -EOPNOTSUPP)
3537 btrfs_abort_transaction(trans, root, ret);
3538 btrfs_end_transaction(trans, root);
3539 goto out;
3540 }
Filipe Manana14f59792014-06-29 21:45:40 +01003541 clone_update_extent_map(inode, trans, NULL, last_dest_end,
3542 destoff + len - last_dest_end);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003543 ret = clone_finish_inode_update(trans, inode, destoff + len,
3544 destoff, olen);
3545 }
3546
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003547out:
Mark Fasheh32b7c682013-08-06 11:42:49 -07003548 btrfs_free_path(path);
3549 vfree(buf);
3550 return ret;
3551}
3552
3553static noinline long btrfs_ioctl_clone(struct file *file, unsigned long srcfd,
3554 u64 off, u64 olen, u64 destoff)
3555{
Al Viro54563d42013-09-01 15:57:51 -04003556 struct inode *inode = file_inode(file);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003557 struct btrfs_root *root = BTRFS_I(inode)->root;
3558 struct fd src_file;
3559 struct inode *src;
3560 int ret;
3561 u64 len = olen;
3562 u64 bs = root->fs_info->sb->s_blocksize;
3563 int same_inode = 0;
3564
3565 /*
3566 * TODO:
3567 * - split compressed inline extents. annoying: we need to
3568 * decompress into destination's address_space (the file offset
3569 * may change, so source mapping won't do), then recompress (or
3570 * otherwise reinsert) a subrange.
Liu Bo00fdf132014-03-10 18:56:07 +08003571 *
3572 * - split destination inode's inline extents. The inline extents can
3573 * be either compressed or non-compressed.
Mark Fasheh32b7c682013-08-06 11:42:49 -07003574 */
3575
3576 /* the destination must be opened for writing */
3577 if (!(file->f_mode & FMODE_WRITE) || (file->f_flags & O_APPEND))
3578 return -EINVAL;
3579
3580 if (btrfs_root_readonly(root))
3581 return -EROFS;
3582
3583 ret = mnt_want_write_file(file);
3584 if (ret)
3585 return ret;
3586
3587 src_file = fdget(srcfd);
3588 if (!src_file.file) {
3589 ret = -EBADF;
3590 goto out_drop_write;
3591 }
3592
3593 ret = -EXDEV;
3594 if (src_file.file->f_path.mnt != file->f_path.mnt)
3595 goto out_fput;
3596
3597 src = file_inode(src_file.file);
3598
3599 ret = -EINVAL;
3600 if (src == inode)
3601 same_inode = 1;
3602
3603 /* the src must be open for reading */
3604 if (!(src_file.file->f_mode & FMODE_READ))
3605 goto out_fput;
3606
3607 /* don't make the dst file partly checksummed */
3608 if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
3609 (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM))
3610 goto out_fput;
3611
3612 ret = -EISDIR;
3613 if (S_ISDIR(src->i_mode) || S_ISDIR(inode->i_mode))
3614 goto out_fput;
3615
3616 ret = -EXDEV;
3617 if (src->i_sb != inode->i_sb)
3618 goto out_fput;
3619
3620 if (!same_inode) {
3621 if (inode < src) {
3622 mutex_lock_nested(&inode->i_mutex, I_MUTEX_PARENT);
3623 mutex_lock_nested(&src->i_mutex, I_MUTEX_CHILD);
3624 } else {
3625 mutex_lock_nested(&src->i_mutex, I_MUTEX_PARENT);
3626 mutex_lock_nested(&inode->i_mutex, I_MUTEX_CHILD);
3627 }
3628 } else {
3629 mutex_lock(&src->i_mutex);
3630 }
3631
3632 /* determine range to clone */
3633 ret = -EINVAL;
3634 if (off + len > src->i_size || off + len < off)
3635 goto out_unlock;
3636 if (len == 0)
3637 olen = len = src->i_size - off;
3638 /* if we extend to eof, continue to block boundary */
3639 if (off + len == src->i_size)
3640 len = ALIGN(src->i_size, bs) - off;
3641
3642 /* verify the end result is block aligned */
3643 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs) ||
3644 !IS_ALIGNED(destoff, bs))
3645 goto out_unlock;
3646
3647 /* verify if ranges are overlapped within the same file */
3648 if (same_inode) {
3649 if (destoff + len > off && destoff < off + len)
3650 goto out_unlock;
3651 }
3652
3653 if (destoff > inode->i_size) {
3654 ret = btrfs_cont_expand(inode, inode->i_size, destoff);
3655 if (ret)
3656 goto out_unlock;
3657 }
3658
Filipe Mananac125b8b2014-05-23 05:03:34 +01003659 /*
3660 * Lock the target range too. Right after we replace the file extent
3661 * items in the fs tree (which now point to the cloned data), we might
3662 * have a worker replace them with extent items relative to a write
3663 * operation that was issued before this clone operation (i.e. confront
3664 * with inode.c:btrfs_finish_ordered_io).
3665 */
3666 if (same_inode) {
3667 u64 lock_start = min_t(u64, off, destoff);
3668 u64 lock_len = max_t(u64, off, destoff) + len - lock_start;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003669
Filipe Mananac125b8b2014-05-23 05:03:34 +01003670 lock_extent_range(src, lock_start, lock_len);
3671 } else {
3672 lock_extent_range(src, off, len);
3673 lock_extent_range(inode, destoff, len);
3674 }
Mark Fasheh32b7c682013-08-06 11:42:49 -07003675
3676 ret = btrfs_clone(src, inode, off, olen, len, destoff);
3677
Filipe Mananac125b8b2014-05-23 05:03:34 +01003678 if (same_inode) {
3679 u64 lock_start = min_t(u64, off, destoff);
3680 u64 lock_end = max_t(u64, off, destoff) + len - 1;
3681
3682 unlock_extent(&BTRFS_I(src)->io_tree, lock_start, lock_end);
3683 } else {
3684 unlock_extent(&BTRFS_I(src)->io_tree, off, off + len - 1);
3685 unlock_extent(&BTRFS_I(inode)->io_tree, destoff,
3686 destoff + len - 1);
3687 }
3688 /*
3689 * Truncate page cache pages so that future reads will see the cloned
3690 * data immediately and not the previous data.
3691 */
3692 truncate_inode_pages_range(&inode->i_data, destoff,
3693 PAGE_CACHE_ALIGN(destoff + len) - 1);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003694out_unlock:
Filipe David Borba Mananac57c2b32014-01-11 21:31:25 +00003695 if (!same_inode) {
3696 if (inode < src) {
3697 mutex_unlock(&src->i_mutex);
3698 mutex_unlock(&inode->i_mutex);
3699 } else {
3700 mutex_unlock(&inode->i_mutex);
3701 mutex_unlock(&src->i_mutex);
3702 }
3703 } else {
3704 mutex_unlock(&src->i_mutex);
3705 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003706out_fput:
Al Viro2903ff02012-08-28 12:52:22 -04003707 fdput(src_file);
Yan Zhengab67b7c2008-12-19 10:58:39 -05003708out_drop_write:
Al Viro2a79f172011-12-09 08:06:57 -05003709 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003710 return ret;
3711}
3712
Christoph Hellwig7a865e82008-12-02 09:52:24 -05003713static long btrfs_ioctl_clone_range(struct file *file, void __user *argp)
Sage Weilc5c9cd42008-11-12 14:32:25 -05003714{
3715 struct btrfs_ioctl_clone_range_args args;
3716
Christoph Hellwig7a865e82008-12-02 09:52:24 -05003717 if (copy_from_user(&args, argp, sizeof(args)))
Sage Weilc5c9cd42008-11-12 14:32:25 -05003718 return -EFAULT;
3719 return btrfs_ioctl_clone(file, args.src_fd, args.src_offset,
3720 args.src_length, args.dest_offset);
3721}
3722
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003723/*
3724 * there are many ways the trans_start and trans_end ioctls can lead
3725 * to deadlocks. They should only be used by applications that
3726 * basically own the machine, and have a very in depth understanding
3727 * of all the possible deadlocks and enospc problems.
3728 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05003729static long btrfs_ioctl_trans_start(struct file *file)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003730{
Al Viro496ad9a2013-01-23 17:07:38 -05003731 struct inode *inode = file_inode(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003732 struct btrfs_root *root = BTRFS_I(inode)->root;
3733 struct btrfs_trans_handle *trans;
Sage Weil1ab86ae2009-09-29 18:38:44 -04003734 int ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003735
Sage Weil1ab86ae2009-09-29 18:38:44 -04003736 ret = -EPERM;
Christoph Hellwigdf5b5522008-06-11 21:53:58 -04003737 if (!capable(CAP_SYS_ADMIN))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003738 goto out;
Sage Weil1ab86ae2009-09-29 18:38:44 -04003739
3740 ret = -EINPROGRESS;
3741 if (file->private_data)
3742 goto out;
Sage Weil9ca9ee02008-08-04 10:41:27 -04003743
Li Zefanb83cc962010-12-20 16:04:08 +08003744 ret = -EROFS;
3745 if (btrfs_root_readonly(root))
3746 goto out;
3747
Al Viroa561be72011-11-23 11:57:51 -05003748 ret = mnt_want_write_file(file);
Yan Zhengc146afa2008-11-12 14:34:12 -05003749 if (ret)
3750 goto out;
3751
Josef Bacika4abeea2011-04-11 17:25:13 -04003752 atomic_inc(&root->fs_info->open_ioctl_trans);
Sage Weil9ca9ee02008-08-04 10:41:27 -04003753
Sage Weil1ab86ae2009-09-29 18:38:44 -04003754 ret = -ENOMEM;
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003755 trans = btrfs_start_ioctl_transaction(root);
Tsutomu Itohabd30bb2011-01-24 00:57:10 +00003756 if (IS_ERR(trans))
Sage Weil1ab86ae2009-09-29 18:38:44 -04003757 goto out_drop;
3758
3759 file->private_data = trans;
3760 return 0;
3761
3762out_drop:
Josef Bacika4abeea2011-04-11 17:25:13 -04003763 atomic_dec(&root->fs_info->open_ioctl_trans);
Al Viro2a79f172011-12-09 08:06:57 -05003764 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003765out:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003766 return ret;
3767}
3768
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003769static long btrfs_ioctl_default_subvol(struct file *file, void __user *argp)
3770{
Al Viro496ad9a2013-01-23 17:07:38 -05003771 struct inode *inode = file_inode(file);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003772 struct btrfs_root *root = BTRFS_I(inode)->root;
3773 struct btrfs_root *new_root;
3774 struct btrfs_dir_item *di;
3775 struct btrfs_trans_handle *trans;
3776 struct btrfs_path *path;
3777 struct btrfs_key location;
3778 struct btrfs_disk_key disk_key;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003779 u64 objectid = 0;
3780 u64 dir_id;
Miao Xie3c04ce02012-11-26 08:43:07 +00003781 int ret;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003782
3783 if (!capable(CAP_SYS_ADMIN))
3784 return -EPERM;
3785
Miao Xie3c04ce02012-11-26 08:43:07 +00003786 ret = mnt_want_write_file(file);
3787 if (ret)
3788 return ret;
3789
3790 if (copy_from_user(&objectid, argp, sizeof(objectid))) {
3791 ret = -EFAULT;
3792 goto out;
3793 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003794
3795 if (!objectid)
chandan1cecf572013-09-13 19:34:10 +05303796 objectid = BTRFS_FS_TREE_OBJECTID;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003797
3798 location.objectid = objectid;
3799 location.type = BTRFS_ROOT_ITEM_KEY;
3800 location.offset = (u64)-1;
3801
3802 new_root = btrfs_read_fs_root_no_name(root->fs_info, &location);
Miao Xie3c04ce02012-11-26 08:43:07 +00003803 if (IS_ERR(new_root)) {
3804 ret = PTR_ERR(new_root);
3805 goto out;
3806 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003807
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003808 path = btrfs_alloc_path();
Miao Xie3c04ce02012-11-26 08:43:07 +00003809 if (!path) {
3810 ret = -ENOMEM;
3811 goto out;
3812 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003813 path->leave_spinning = 1;
3814
3815 trans = btrfs_start_transaction(root, 1);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00003816 if (IS_ERR(trans)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003817 btrfs_free_path(path);
Miao Xie3c04ce02012-11-26 08:43:07 +00003818 ret = PTR_ERR(trans);
3819 goto out;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003820 }
3821
David Sterba6c417612011-04-13 15:41:04 +02003822 dir_id = btrfs_super_root_dir(root->fs_info->super_copy);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003823 di = btrfs_lookup_dir_item(trans, root->fs_info->tree_root, path,
3824 dir_id, "default", 7, 1);
Dan Carpentercf1e99a2010-05-29 09:47:24 +00003825 if (IS_ERR_OR_NULL(di)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003826 btrfs_free_path(path);
3827 btrfs_end_transaction(trans, root);
Frank Holtonefe120a2013-12-20 11:37:06 -05003828 btrfs_err(new_root->fs_info, "Umm, you don't have the default dir"
3829 "item, this isn't going to work");
Miao Xie3c04ce02012-11-26 08:43:07 +00003830 ret = -ENOENT;
3831 goto out;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003832 }
3833
3834 btrfs_cpu_key_to_disk(&disk_key, &new_root->root_key);
3835 btrfs_set_dir_item_key(path->nodes[0], di, &disk_key);
3836 btrfs_mark_buffer_dirty(path->nodes[0]);
3837 btrfs_free_path(path);
3838
Mitch Harder2b0ce2c2012-07-24 11:58:43 -06003839 btrfs_set_fs_incompat(root->fs_info, DEFAULT_SUBVOL);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003840 btrfs_end_transaction(trans, root);
Miao Xie3c04ce02012-11-26 08:43:07 +00003841out:
3842 mnt_drop_write_file(file);
3843 return ret;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003844}
3845
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02003846void btrfs_get_block_group_info(struct list_head *groups_list,
3847 struct btrfs_ioctl_space_info *space)
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003848{
3849 struct btrfs_block_group_cache *block_group;
3850
3851 space->total_bytes = 0;
3852 space->used_bytes = 0;
3853 space->flags = 0;
3854 list_for_each_entry(block_group, groups_list, list) {
3855 space->flags = block_group->flags;
3856 space->total_bytes += block_group->key.offset;
3857 space->used_bytes +=
3858 btrfs_block_group_used(&block_group->item);
3859 }
3860}
3861
Eric Sandeen48a3b632013-04-25 20:41:01 +00003862static long btrfs_ioctl_space_info(struct btrfs_root *root, void __user *arg)
Josef Bacik1406e432010-01-13 18:19:06 +00003863{
3864 struct btrfs_ioctl_space_args space_args;
3865 struct btrfs_ioctl_space_info space;
3866 struct btrfs_ioctl_space_info *dest;
Chris Mason7fde62b2010-03-16 15:40:10 -04003867 struct btrfs_ioctl_space_info *dest_orig;
Daniel J Blueman13f26962011-04-11 15:56:31 +00003868 struct btrfs_ioctl_space_info __user *user_dest;
Josef Bacik1406e432010-01-13 18:19:06 +00003869 struct btrfs_space_info *info;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003870 u64 types[] = {BTRFS_BLOCK_GROUP_DATA,
3871 BTRFS_BLOCK_GROUP_SYSTEM,
3872 BTRFS_BLOCK_GROUP_METADATA,
3873 BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA};
3874 int num_types = 4;
Chris Mason7fde62b2010-03-16 15:40:10 -04003875 int alloc_size;
Josef Bacik1406e432010-01-13 18:19:06 +00003876 int ret = 0;
Dan Rosenberg51788b12011-02-14 16:04:23 -05003877 u64 slot_count = 0;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003878 int i, c;
Josef Bacik1406e432010-01-13 18:19:06 +00003879
3880 if (copy_from_user(&space_args,
3881 (struct btrfs_ioctl_space_args __user *)arg,
3882 sizeof(space_args)))
3883 return -EFAULT;
3884
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003885 for (i = 0; i < num_types; i++) {
3886 struct btrfs_space_info *tmp;
3887
3888 info = NULL;
3889 rcu_read_lock();
3890 list_for_each_entry_rcu(tmp, &root->fs_info->space_info,
3891 list) {
3892 if (tmp->flags == types[i]) {
3893 info = tmp;
3894 break;
3895 }
3896 }
3897 rcu_read_unlock();
3898
3899 if (!info)
3900 continue;
3901
3902 down_read(&info->groups_sem);
3903 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
3904 if (!list_empty(&info->block_groups[c]))
3905 slot_count++;
3906 }
3907 up_read(&info->groups_sem);
3908 }
Josef Bacik1406e432010-01-13 18:19:06 +00003909
David Sterba36523e952014-02-07 14:34:12 +01003910 /*
3911 * Global block reserve, exported as a space_info
3912 */
3913 slot_count++;
3914
Chris Mason7fde62b2010-03-16 15:40:10 -04003915 /* space_slots == 0 means they are asking for a count */
3916 if (space_args.space_slots == 0) {
3917 space_args.total_spaces = slot_count;
3918 goto out;
3919 }
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003920
Dan Rosenberg51788b12011-02-14 16:04:23 -05003921 slot_count = min_t(u64, space_args.space_slots, slot_count);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003922
Chris Mason7fde62b2010-03-16 15:40:10 -04003923 alloc_size = sizeof(*dest) * slot_count;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003924
Chris Mason7fde62b2010-03-16 15:40:10 -04003925 /* we generally have at most 6 or so space infos, one for each raid
3926 * level. So, a whole page should be more than enough for everyone
3927 */
3928 if (alloc_size > PAGE_CACHE_SIZE)
3929 return -ENOMEM;
3930
3931 space_args.total_spaces = 0;
3932 dest = kmalloc(alloc_size, GFP_NOFS);
3933 if (!dest)
3934 return -ENOMEM;
3935 dest_orig = dest;
3936
3937 /* now we have a buffer to copy into */
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003938 for (i = 0; i < num_types; i++) {
3939 struct btrfs_space_info *tmp;
Chris Mason7fde62b2010-03-16 15:40:10 -04003940
Dan Rosenberg51788b12011-02-14 16:04:23 -05003941 if (!slot_count)
3942 break;
3943
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003944 info = NULL;
3945 rcu_read_lock();
3946 list_for_each_entry_rcu(tmp, &root->fs_info->space_info,
3947 list) {
3948 if (tmp->flags == types[i]) {
3949 info = tmp;
3950 break;
3951 }
3952 }
3953 rcu_read_unlock();
Chris Mason7fde62b2010-03-16 15:40:10 -04003954
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003955 if (!info)
3956 continue;
3957 down_read(&info->groups_sem);
3958 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
3959 if (!list_empty(&info->block_groups[c])) {
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02003960 btrfs_get_block_group_info(
3961 &info->block_groups[c], &space);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003962 memcpy(dest, &space, sizeof(space));
3963 dest++;
3964 space_args.total_spaces++;
Dan Rosenberg51788b12011-02-14 16:04:23 -05003965 slot_count--;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003966 }
Dan Rosenberg51788b12011-02-14 16:04:23 -05003967 if (!slot_count)
3968 break;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003969 }
3970 up_read(&info->groups_sem);
Josef Bacik1406e432010-01-13 18:19:06 +00003971 }
Josef Bacik1406e432010-01-13 18:19:06 +00003972
David Sterba36523e952014-02-07 14:34:12 +01003973 /*
3974 * Add global block reserve
3975 */
3976 if (slot_count) {
3977 struct btrfs_block_rsv *block_rsv = &root->fs_info->global_block_rsv;
3978
3979 spin_lock(&block_rsv->lock);
3980 space.total_bytes = block_rsv->size;
3981 space.used_bytes = block_rsv->size - block_rsv->reserved;
3982 spin_unlock(&block_rsv->lock);
3983 space.flags = BTRFS_SPACE_INFO_GLOBAL_RSV;
3984 memcpy(dest, &space, sizeof(space));
3985 space_args.total_spaces++;
3986 }
3987
Daniel J Blueman2eec6c82012-04-26 00:37:14 +08003988 user_dest = (struct btrfs_ioctl_space_info __user *)
Chris Mason7fde62b2010-03-16 15:40:10 -04003989 (arg + sizeof(struct btrfs_ioctl_space_args));
3990
3991 if (copy_to_user(user_dest, dest_orig, alloc_size))
3992 ret = -EFAULT;
3993
3994 kfree(dest_orig);
3995out:
3996 if (ret == 0 && copy_to_user(arg, &space_args, sizeof(space_args)))
Josef Bacik1406e432010-01-13 18:19:06 +00003997 ret = -EFAULT;
3998
3999 return ret;
4000}
4001
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004002/*
4003 * there are many ways the trans_start and trans_end ioctls can lead
4004 * to deadlocks. They should only be used by applications that
4005 * basically own the machine, and have a very in depth understanding
4006 * of all the possible deadlocks and enospc problems.
4007 */
4008long btrfs_ioctl_trans_end(struct file *file)
4009{
Al Viro496ad9a2013-01-23 17:07:38 -05004010 struct inode *inode = file_inode(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004011 struct btrfs_root *root = BTRFS_I(inode)->root;
4012 struct btrfs_trans_handle *trans;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004013
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004014 trans = file->private_data;
Sage Weil1ab86ae2009-09-29 18:38:44 -04004015 if (!trans)
4016 return -EINVAL;
Christoph Hellwigb2141072008-09-05 16:43:31 -04004017 file->private_data = NULL;
Sage Weil9ca9ee02008-08-04 10:41:27 -04004018
Sage Weil1ab86ae2009-09-29 18:38:44 -04004019 btrfs_end_transaction(trans, root);
4020
Josef Bacika4abeea2011-04-11 17:25:13 -04004021 atomic_dec(&root->fs_info->open_ioctl_trans);
Sage Weil9ca9ee02008-08-04 10:41:27 -04004022
Al Viro2a79f172011-12-09 08:06:57 -05004023 mnt_drop_write_file(file);
Sage Weil1ab86ae2009-09-29 18:38:44 -04004024 return 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004025}
4026
Miao Xie9a8c28b2012-11-26 08:40:43 +00004027static noinline long btrfs_ioctl_start_sync(struct btrfs_root *root,
4028 void __user *argp)
Sage Weil46204592010-10-29 15:41:32 -04004029{
Sage Weil46204592010-10-29 15:41:32 -04004030 struct btrfs_trans_handle *trans;
4031 u64 transid;
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004032 int ret;
Sage Weil46204592010-10-29 15:41:32 -04004033
Miao Xied4edf392013-02-20 09:17:06 +00004034 trans = btrfs_attach_transaction_barrier(root);
Miao Xieff7c1d32012-11-26 08:41:29 +00004035 if (IS_ERR(trans)) {
4036 if (PTR_ERR(trans) != -ENOENT)
4037 return PTR_ERR(trans);
4038
4039 /* No running transaction, don't bother */
4040 transid = root->fs_info->last_trans_committed;
4041 goto out;
4042 }
Sage Weil46204592010-10-29 15:41:32 -04004043 transid = trans->transid;
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004044 ret = btrfs_commit_transaction_async(trans, root, 0);
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00004045 if (ret) {
4046 btrfs_end_transaction(trans, root);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004047 return ret;
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00004048 }
Miao Xieff7c1d32012-11-26 08:41:29 +00004049out:
Sage Weil46204592010-10-29 15:41:32 -04004050 if (argp)
4051 if (copy_to_user(argp, &transid, sizeof(transid)))
4052 return -EFAULT;
4053 return 0;
4054}
4055
Miao Xie9a8c28b2012-11-26 08:40:43 +00004056static noinline long btrfs_ioctl_wait_sync(struct btrfs_root *root,
4057 void __user *argp)
Sage Weil46204592010-10-29 15:41:32 -04004058{
Sage Weil46204592010-10-29 15:41:32 -04004059 u64 transid;
4060
4061 if (argp) {
4062 if (copy_from_user(&transid, argp, sizeof(transid)))
4063 return -EFAULT;
4064 } else {
4065 transid = 0; /* current trans */
4066 }
4067 return btrfs_wait_for_commit(root, transid);
4068}
4069
Miao Xieb8e95482012-11-26 08:48:01 +00004070static long btrfs_ioctl_scrub(struct file *file, void __user *arg)
Jan Schmidt475f6382011-03-11 15:41:01 +01004071{
Al Viro496ad9a2013-01-23 17:07:38 -05004072 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Jan Schmidt475f6382011-03-11 15:41:01 +01004073 struct btrfs_ioctl_scrub_args *sa;
Miao Xieb8e95482012-11-26 08:48:01 +00004074 int ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01004075
4076 if (!capable(CAP_SYS_ADMIN))
4077 return -EPERM;
4078
4079 sa = memdup_user(arg, sizeof(*sa));
4080 if (IS_ERR(sa))
4081 return PTR_ERR(sa);
4082
Miao Xieb8e95482012-11-26 08:48:01 +00004083 if (!(sa->flags & BTRFS_SCRUB_READONLY)) {
4084 ret = mnt_want_write_file(file);
4085 if (ret)
4086 goto out;
4087 }
4088
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01004089 ret = btrfs_scrub_dev(root->fs_info, sa->devid, sa->start, sa->end,
Stefan Behrens63a212a2012-11-05 18:29:28 +01004090 &sa->progress, sa->flags & BTRFS_SCRUB_READONLY,
4091 0);
Jan Schmidt475f6382011-03-11 15:41:01 +01004092
4093 if (copy_to_user(arg, sa, sizeof(*sa)))
4094 ret = -EFAULT;
4095
Miao Xieb8e95482012-11-26 08:48:01 +00004096 if (!(sa->flags & BTRFS_SCRUB_READONLY))
4097 mnt_drop_write_file(file);
4098out:
Jan Schmidt475f6382011-03-11 15:41:01 +01004099 kfree(sa);
4100 return ret;
4101}
4102
4103static long btrfs_ioctl_scrub_cancel(struct btrfs_root *root, void __user *arg)
4104{
4105 if (!capable(CAP_SYS_ADMIN))
4106 return -EPERM;
4107
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01004108 return btrfs_scrub_cancel(root->fs_info);
Jan Schmidt475f6382011-03-11 15:41:01 +01004109}
4110
4111static long btrfs_ioctl_scrub_progress(struct btrfs_root *root,
4112 void __user *arg)
4113{
4114 struct btrfs_ioctl_scrub_args *sa;
4115 int ret;
4116
4117 if (!capable(CAP_SYS_ADMIN))
4118 return -EPERM;
4119
4120 sa = memdup_user(arg, sizeof(*sa));
4121 if (IS_ERR(sa))
4122 return PTR_ERR(sa);
4123
4124 ret = btrfs_scrub_progress(root, sa->devid, &sa->progress);
4125
4126 if (copy_to_user(arg, sa, sizeof(*sa)))
4127 ret = -EFAULT;
4128
4129 kfree(sa);
4130 return ret;
4131}
4132
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004133static long btrfs_ioctl_get_dev_stats(struct btrfs_root *root,
David Sterbab27f7c02012-06-22 06:30:39 -06004134 void __user *arg)
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004135{
4136 struct btrfs_ioctl_get_dev_stats *sa;
4137 int ret;
4138
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004139 sa = memdup_user(arg, sizeof(*sa));
4140 if (IS_ERR(sa))
4141 return PTR_ERR(sa);
4142
David Sterbab27f7c02012-06-22 06:30:39 -06004143 if ((sa->flags & BTRFS_DEV_STATS_RESET) && !capable(CAP_SYS_ADMIN)) {
4144 kfree(sa);
4145 return -EPERM;
4146 }
4147
4148 ret = btrfs_get_dev_stats(root, sa);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004149
4150 if (copy_to_user(arg, sa, sizeof(*sa)))
4151 ret = -EFAULT;
4152
4153 kfree(sa);
4154 return ret;
4155}
4156
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004157static long btrfs_ioctl_dev_replace(struct btrfs_root *root, void __user *arg)
4158{
4159 struct btrfs_ioctl_dev_replace_args *p;
4160 int ret;
4161
4162 if (!capable(CAP_SYS_ADMIN))
4163 return -EPERM;
4164
4165 p = memdup_user(arg, sizeof(*p));
4166 if (IS_ERR(p))
4167 return PTR_ERR(p);
4168
4169 switch (p->cmd) {
4170 case BTRFS_IOCTL_DEV_REPLACE_CMD_START:
Ilya Dryomovadfa97c2013-10-10 20:39:28 +03004171 if (root->fs_info->sb->s_flags & MS_RDONLY) {
4172 ret = -EROFS;
4173 goto out;
4174 }
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004175 if (atomic_xchg(
4176 &root->fs_info->mutually_exclusive_operation_running,
4177 1)) {
Anand Jaine57138b2013-08-21 11:44:48 +08004178 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004179 } else {
4180 ret = btrfs_dev_replace_start(root, p);
4181 atomic_set(
4182 &root->fs_info->mutually_exclusive_operation_running,
4183 0);
4184 }
4185 break;
4186 case BTRFS_IOCTL_DEV_REPLACE_CMD_STATUS:
4187 btrfs_dev_replace_status(root->fs_info, p);
4188 ret = 0;
4189 break;
4190 case BTRFS_IOCTL_DEV_REPLACE_CMD_CANCEL:
4191 ret = btrfs_dev_replace_cancel(root->fs_info, p);
4192 break;
4193 default:
4194 ret = -EINVAL;
4195 break;
4196 }
4197
4198 if (copy_to_user(arg, p, sizeof(*p)))
4199 ret = -EFAULT;
Ilya Dryomovadfa97c2013-10-10 20:39:28 +03004200out:
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004201 kfree(p);
4202 return ret;
4203}
4204
Jan Schmidtd7728c92011-07-07 16:48:38 +02004205static long btrfs_ioctl_ino_to_path(struct btrfs_root *root, void __user *arg)
4206{
4207 int ret = 0;
4208 int i;
Chris Mason740c3d22011-11-02 15:48:34 -04004209 u64 rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004210 int size;
Chris Mason806468f2011-11-06 03:07:10 -05004211 struct btrfs_ioctl_ino_path_args *ipa = NULL;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004212 struct inode_fs_paths *ipath = NULL;
4213 struct btrfs_path *path;
4214
Kusanagi Kouichi82b22ac2013-01-28 11:33:31 +00004215 if (!capable(CAP_DAC_READ_SEARCH))
Jan Schmidtd7728c92011-07-07 16:48:38 +02004216 return -EPERM;
4217
4218 path = btrfs_alloc_path();
4219 if (!path) {
4220 ret = -ENOMEM;
4221 goto out;
4222 }
4223
4224 ipa = memdup_user(arg, sizeof(*ipa));
4225 if (IS_ERR(ipa)) {
4226 ret = PTR_ERR(ipa);
4227 ipa = NULL;
4228 goto out;
4229 }
4230
4231 size = min_t(u32, ipa->size, 4096);
4232 ipath = init_ipath(size, root, path);
4233 if (IS_ERR(ipath)) {
4234 ret = PTR_ERR(ipath);
4235 ipath = NULL;
4236 goto out;
4237 }
4238
4239 ret = paths_from_inode(ipa->inum, ipath);
4240 if (ret < 0)
4241 goto out;
4242
4243 for (i = 0; i < ipath->fspath->elem_cnt; ++i) {
Jeff Mahoney745c4d82011-11-20 07:31:57 -05004244 rel_ptr = ipath->fspath->val[i] -
4245 (u64)(unsigned long)ipath->fspath->val;
Chris Mason740c3d22011-11-02 15:48:34 -04004246 ipath->fspath->val[i] = rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004247 }
4248
Jeff Mahoney745c4d82011-11-20 07:31:57 -05004249 ret = copy_to_user((void *)(unsigned long)ipa->fspath,
4250 (void *)(unsigned long)ipath->fspath, size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004251 if (ret) {
4252 ret = -EFAULT;
4253 goto out;
4254 }
4255
4256out:
4257 btrfs_free_path(path);
4258 free_ipath(ipath);
4259 kfree(ipa);
4260
4261 return ret;
4262}
4263
4264static int build_ino_list(u64 inum, u64 offset, u64 root, void *ctx)
4265{
4266 struct btrfs_data_container *inodes = ctx;
4267 const size_t c = 3 * sizeof(u64);
4268
4269 if (inodes->bytes_left >= c) {
4270 inodes->bytes_left -= c;
4271 inodes->val[inodes->elem_cnt] = inum;
4272 inodes->val[inodes->elem_cnt + 1] = offset;
4273 inodes->val[inodes->elem_cnt + 2] = root;
4274 inodes->elem_cnt += 3;
4275 } else {
4276 inodes->bytes_missing += c - inodes->bytes_left;
4277 inodes->bytes_left = 0;
4278 inodes->elem_missed += 3;
4279 }
4280
4281 return 0;
4282}
4283
4284static long btrfs_ioctl_logical_to_ino(struct btrfs_root *root,
4285 void __user *arg)
4286{
4287 int ret = 0;
4288 int size;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004289 struct btrfs_ioctl_logical_ino_args *loi;
4290 struct btrfs_data_container *inodes = NULL;
4291 struct btrfs_path *path = NULL;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004292
4293 if (!capable(CAP_SYS_ADMIN))
4294 return -EPERM;
4295
4296 loi = memdup_user(arg, sizeof(*loi));
4297 if (IS_ERR(loi)) {
4298 ret = PTR_ERR(loi);
4299 loi = NULL;
4300 goto out;
4301 }
4302
4303 path = btrfs_alloc_path();
4304 if (!path) {
4305 ret = -ENOMEM;
4306 goto out;
4307 }
4308
Liu Bo425d17a2012-09-07 20:01:30 -06004309 size = min_t(u32, loi->size, 64 * 1024);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004310 inodes = init_data_container(size);
4311 if (IS_ERR(inodes)) {
4312 ret = PTR_ERR(inodes);
4313 inodes = NULL;
4314 goto out;
4315 }
4316
Liu Bodf031f02012-09-07 20:01:29 -06004317 ret = iterate_inodes_from_logical(loi->logical, root->fs_info, path,
4318 build_ino_list, inodes);
4319 if (ret == -EINVAL)
Jan Schmidtd7728c92011-07-07 16:48:38 +02004320 ret = -ENOENT;
4321 if (ret < 0)
4322 goto out;
4323
Jeff Mahoney745c4d82011-11-20 07:31:57 -05004324 ret = copy_to_user((void *)(unsigned long)loi->inodes,
4325 (void *)(unsigned long)inodes, size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004326 if (ret)
4327 ret = -EFAULT;
4328
4329out:
4330 btrfs_free_path(path);
Liu Bo425d17a2012-09-07 20:01:30 -06004331 vfree(inodes);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004332 kfree(loi);
4333
4334 return ret;
4335}
4336
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004337void update_ioctl_balance_args(struct btrfs_fs_info *fs_info, int lock,
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004338 struct btrfs_ioctl_balance_args *bargs)
4339{
4340 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
4341
4342 bargs->flags = bctl->flags;
4343
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004344 if (atomic_read(&fs_info->balance_running))
4345 bargs->state |= BTRFS_BALANCE_STATE_RUNNING;
4346 if (atomic_read(&fs_info->balance_pause_req))
4347 bargs->state |= BTRFS_BALANCE_STATE_PAUSE_REQ;
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004348 if (atomic_read(&fs_info->balance_cancel_req))
4349 bargs->state |= BTRFS_BALANCE_STATE_CANCEL_REQ;
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004350
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004351 memcpy(&bargs->data, &bctl->data, sizeof(bargs->data));
4352 memcpy(&bargs->meta, &bctl->meta, sizeof(bargs->meta));
4353 memcpy(&bargs->sys, &bctl->sys, sizeof(bargs->sys));
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004354
4355 if (lock) {
4356 spin_lock(&fs_info->balance_lock);
4357 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
4358 spin_unlock(&fs_info->balance_lock);
4359 } else {
4360 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
4361 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004362}
4363
Liu Bo9ba1f6e2012-05-11 18:11:26 +08004364static long btrfs_ioctl_balance(struct file *file, void __user *arg)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004365{
Al Viro496ad9a2013-01-23 17:07:38 -05004366 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004367 struct btrfs_fs_info *fs_info = root->fs_info;
4368 struct btrfs_ioctl_balance_args *bargs;
4369 struct btrfs_balance_control *bctl;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004370 bool need_unlock; /* for mut. excl. ops lock */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004371 int ret;
4372
4373 if (!capable(CAP_SYS_ADMIN))
4374 return -EPERM;
4375
Liu Boe54bfa312012-06-29 03:58:48 -06004376 ret = mnt_want_write_file(file);
Liu Bo9ba1f6e2012-05-11 18:11:26 +08004377 if (ret)
4378 return ret;
4379
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004380again:
4381 if (!atomic_xchg(&fs_info->mutually_exclusive_operation_running, 1)) {
4382 mutex_lock(&fs_info->volume_mutex);
4383 mutex_lock(&fs_info->balance_mutex);
4384 need_unlock = true;
4385 goto locked;
4386 }
4387
4388 /*
4389 * mut. excl. ops lock is locked. Three possibilites:
4390 * (1) some other op is running
4391 * (2) balance is running
4392 * (3) balance is paused -- special case (think resume)
4393 */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004394 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004395 if (fs_info->balance_ctl) {
4396 /* this is either (2) or (3) */
4397 if (!atomic_read(&fs_info->balance_running)) {
4398 mutex_unlock(&fs_info->balance_mutex);
4399 if (!mutex_trylock(&fs_info->volume_mutex))
4400 goto again;
4401 mutex_lock(&fs_info->balance_mutex);
4402
4403 if (fs_info->balance_ctl &&
4404 !atomic_read(&fs_info->balance_running)) {
4405 /* this is (3) */
4406 need_unlock = false;
4407 goto locked;
4408 }
4409
4410 mutex_unlock(&fs_info->balance_mutex);
4411 mutex_unlock(&fs_info->volume_mutex);
4412 goto again;
4413 } else {
4414 /* this is (2) */
4415 mutex_unlock(&fs_info->balance_mutex);
4416 ret = -EINPROGRESS;
4417 goto out;
4418 }
4419 } else {
4420 /* this is (1) */
4421 mutex_unlock(&fs_info->balance_mutex);
Anand Jaine57138b2013-08-21 11:44:48 +08004422 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004423 goto out;
4424 }
4425
4426locked:
4427 BUG_ON(!atomic_read(&fs_info->mutually_exclusive_operation_running));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004428
4429 if (arg) {
4430 bargs = memdup_user(arg, sizeof(*bargs));
4431 if (IS_ERR(bargs)) {
4432 ret = PTR_ERR(bargs);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004433 goto out_unlock;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004434 }
Ilya Dryomovde322262012-01-16 22:04:49 +02004435
4436 if (bargs->flags & BTRFS_BALANCE_RESUME) {
4437 if (!fs_info->balance_ctl) {
4438 ret = -ENOTCONN;
4439 goto out_bargs;
4440 }
4441
4442 bctl = fs_info->balance_ctl;
4443 spin_lock(&fs_info->balance_lock);
4444 bctl->flags |= BTRFS_BALANCE_RESUME;
4445 spin_unlock(&fs_info->balance_lock);
4446
4447 goto do_balance;
4448 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004449 } else {
4450 bargs = NULL;
4451 }
4452
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004453 if (fs_info->balance_ctl) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004454 ret = -EINPROGRESS;
4455 goto out_bargs;
4456 }
4457
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004458 bctl = kzalloc(sizeof(*bctl), GFP_NOFS);
4459 if (!bctl) {
4460 ret = -ENOMEM;
4461 goto out_bargs;
4462 }
4463
4464 bctl->fs_info = fs_info;
4465 if (arg) {
4466 memcpy(&bctl->data, &bargs->data, sizeof(bctl->data));
4467 memcpy(&bctl->meta, &bargs->meta, sizeof(bctl->meta));
4468 memcpy(&bctl->sys, &bargs->sys, sizeof(bctl->sys));
4469
4470 bctl->flags = bargs->flags;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02004471 } else {
4472 /* balance everything - no filters */
4473 bctl->flags |= BTRFS_BALANCE_TYPE_MASK;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004474 }
4475
Ilya Dryomovde322262012-01-16 22:04:49 +02004476do_balance:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004477 /*
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004478 * Ownership of bctl and mutually_exclusive_operation_running
4479 * goes to to btrfs_balance. bctl is freed in __cancel_balance,
4480 * or, if restriper was paused all the way until unmount, in
4481 * free_fs_info. mutually_exclusive_operation_running is
4482 * cleared in __cancel_balance.
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004483 */
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004484 need_unlock = false;
4485
4486 ret = btrfs_balance(bctl, bargs);
4487
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004488 if (arg) {
4489 if (copy_to_user(arg, bargs, sizeof(*bargs)))
4490 ret = -EFAULT;
4491 }
4492
4493out_bargs:
4494 kfree(bargs);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004495out_unlock:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004496 mutex_unlock(&fs_info->balance_mutex);
4497 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004498 if (need_unlock)
4499 atomic_set(&fs_info->mutually_exclusive_operation_running, 0);
4500out:
Liu Boe54bfa312012-06-29 03:58:48 -06004501 mnt_drop_write_file(file);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004502 return ret;
4503}
4504
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004505static long btrfs_ioctl_balance_ctl(struct btrfs_root *root, int cmd)
4506{
4507 if (!capable(CAP_SYS_ADMIN))
4508 return -EPERM;
4509
4510 switch (cmd) {
4511 case BTRFS_BALANCE_CTL_PAUSE:
4512 return btrfs_pause_balance(root->fs_info);
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004513 case BTRFS_BALANCE_CTL_CANCEL:
4514 return btrfs_cancel_balance(root->fs_info);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004515 }
4516
4517 return -EINVAL;
4518}
4519
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004520static long btrfs_ioctl_balance_progress(struct btrfs_root *root,
4521 void __user *arg)
4522{
4523 struct btrfs_fs_info *fs_info = root->fs_info;
4524 struct btrfs_ioctl_balance_args *bargs;
4525 int ret = 0;
4526
4527 if (!capable(CAP_SYS_ADMIN))
4528 return -EPERM;
4529
4530 mutex_lock(&fs_info->balance_mutex);
4531 if (!fs_info->balance_ctl) {
4532 ret = -ENOTCONN;
4533 goto out;
4534 }
4535
4536 bargs = kzalloc(sizeof(*bargs), GFP_NOFS);
4537 if (!bargs) {
4538 ret = -ENOMEM;
4539 goto out;
4540 }
4541
4542 update_ioctl_balance_args(fs_info, 1, bargs);
4543
4544 if (copy_to_user(arg, bargs, sizeof(*bargs)))
4545 ret = -EFAULT;
4546
4547 kfree(bargs);
4548out:
4549 mutex_unlock(&fs_info->balance_mutex);
4550 return ret;
4551}
4552
Miao Xie905b0dd2012-11-26 08:50:11 +00004553static long btrfs_ioctl_quota_ctl(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004554{
Al Viro496ad9a2013-01-23 17:07:38 -05004555 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004556 struct btrfs_ioctl_quota_ctl_args *sa;
4557 struct btrfs_trans_handle *trans = NULL;
4558 int ret;
4559 int err;
4560
4561 if (!capable(CAP_SYS_ADMIN))
4562 return -EPERM;
4563
Miao Xie905b0dd2012-11-26 08:50:11 +00004564 ret = mnt_want_write_file(file);
4565 if (ret)
4566 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004567
4568 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004569 if (IS_ERR(sa)) {
4570 ret = PTR_ERR(sa);
4571 goto drop_write;
4572 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004573
Wang Shilong7708f022013-04-07 10:24:57 +00004574 down_write(&root->fs_info->subvol_sem);
Jan Schmidt2f232032013-04-25 16:04:51 +00004575 trans = btrfs_start_transaction(root->fs_info->tree_root, 2);
4576 if (IS_ERR(trans)) {
4577 ret = PTR_ERR(trans);
4578 goto out;
Arne Jansen5d13a372011-09-14 15:53:51 +02004579 }
4580
4581 switch (sa->cmd) {
4582 case BTRFS_QUOTA_CTL_ENABLE:
4583 ret = btrfs_quota_enable(trans, root->fs_info);
4584 break;
4585 case BTRFS_QUOTA_CTL_DISABLE:
4586 ret = btrfs_quota_disable(trans, root->fs_info);
4587 break;
Arne Jansen5d13a372011-09-14 15:53:51 +02004588 default:
4589 ret = -EINVAL;
4590 break;
4591 }
4592
Jan Schmidt2f232032013-04-25 16:04:51 +00004593 err = btrfs_commit_transaction(trans, root->fs_info->tree_root);
4594 if (err && !ret)
4595 ret = err;
Arne Jansen5d13a372011-09-14 15:53:51 +02004596out:
4597 kfree(sa);
Wang Shilong7708f022013-04-07 10:24:57 +00004598 up_write(&root->fs_info->subvol_sem);
Miao Xie905b0dd2012-11-26 08:50:11 +00004599drop_write:
4600 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004601 return ret;
4602}
4603
Miao Xie905b0dd2012-11-26 08:50:11 +00004604static long btrfs_ioctl_qgroup_assign(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004605{
Al Viro496ad9a2013-01-23 17:07:38 -05004606 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004607 struct btrfs_ioctl_qgroup_assign_args *sa;
4608 struct btrfs_trans_handle *trans;
4609 int ret;
4610 int err;
4611
4612 if (!capable(CAP_SYS_ADMIN))
4613 return -EPERM;
4614
Miao Xie905b0dd2012-11-26 08:50:11 +00004615 ret = mnt_want_write_file(file);
4616 if (ret)
4617 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004618
4619 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004620 if (IS_ERR(sa)) {
4621 ret = PTR_ERR(sa);
4622 goto drop_write;
4623 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004624
4625 trans = btrfs_join_transaction(root);
4626 if (IS_ERR(trans)) {
4627 ret = PTR_ERR(trans);
4628 goto out;
4629 }
4630
4631 /* FIXME: check if the IDs really exist */
4632 if (sa->assign) {
4633 ret = btrfs_add_qgroup_relation(trans, root->fs_info,
4634 sa->src, sa->dst);
4635 } else {
4636 ret = btrfs_del_qgroup_relation(trans, root->fs_info,
4637 sa->src, sa->dst);
4638 }
4639
4640 err = btrfs_end_transaction(trans, root);
4641 if (err && !ret)
4642 ret = err;
4643
4644out:
4645 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004646drop_write:
4647 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004648 return ret;
4649}
4650
Miao Xie905b0dd2012-11-26 08:50:11 +00004651static long btrfs_ioctl_qgroup_create(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004652{
Al Viro496ad9a2013-01-23 17:07:38 -05004653 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004654 struct btrfs_ioctl_qgroup_create_args *sa;
4655 struct btrfs_trans_handle *trans;
4656 int ret;
4657 int err;
4658
4659 if (!capable(CAP_SYS_ADMIN))
4660 return -EPERM;
4661
Miao Xie905b0dd2012-11-26 08:50:11 +00004662 ret = mnt_want_write_file(file);
4663 if (ret)
4664 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004665
4666 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004667 if (IS_ERR(sa)) {
4668 ret = PTR_ERR(sa);
4669 goto drop_write;
4670 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004671
Miao Xied86e56c2012-11-15 11:35:41 +00004672 if (!sa->qgroupid) {
4673 ret = -EINVAL;
4674 goto out;
4675 }
4676
Arne Jansen5d13a372011-09-14 15:53:51 +02004677 trans = btrfs_join_transaction(root);
4678 if (IS_ERR(trans)) {
4679 ret = PTR_ERR(trans);
4680 goto out;
4681 }
4682
4683 /* FIXME: check if the IDs really exist */
4684 if (sa->create) {
4685 ret = btrfs_create_qgroup(trans, root->fs_info, sa->qgroupid,
4686 NULL);
4687 } else {
4688 ret = btrfs_remove_qgroup(trans, root->fs_info, sa->qgroupid);
4689 }
4690
4691 err = btrfs_end_transaction(trans, root);
4692 if (err && !ret)
4693 ret = err;
4694
4695out:
4696 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004697drop_write:
4698 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004699 return ret;
4700}
4701
Miao Xie905b0dd2012-11-26 08:50:11 +00004702static long btrfs_ioctl_qgroup_limit(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004703{
Al Viro496ad9a2013-01-23 17:07:38 -05004704 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004705 struct btrfs_ioctl_qgroup_limit_args *sa;
4706 struct btrfs_trans_handle *trans;
4707 int ret;
4708 int err;
4709 u64 qgroupid;
4710
4711 if (!capable(CAP_SYS_ADMIN))
4712 return -EPERM;
4713
Miao Xie905b0dd2012-11-26 08:50:11 +00004714 ret = mnt_want_write_file(file);
4715 if (ret)
4716 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004717
4718 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004719 if (IS_ERR(sa)) {
4720 ret = PTR_ERR(sa);
4721 goto drop_write;
4722 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004723
4724 trans = btrfs_join_transaction(root);
4725 if (IS_ERR(trans)) {
4726 ret = PTR_ERR(trans);
4727 goto out;
4728 }
4729
4730 qgroupid = sa->qgroupid;
4731 if (!qgroupid) {
4732 /* take the current subvol as qgroup */
4733 qgroupid = root->root_key.objectid;
4734 }
4735
4736 /* FIXME: check if the IDs really exist */
4737 ret = btrfs_limit_qgroup(trans, root->fs_info, qgroupid, &sa->lim);
4738
4739 err = btrfs_end_transaction(trans, root);
4740 if (err && !ret)
4741 ret = err;
4742
4743out:
4744 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004745drop_write:
4746 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004747 return ret;
4748}
4749
Jan Schmidt2f232032013-04-25 16:04:51 +00004750static long btrfs_ioctl_quota_rescan(struct file *file, void __user *arg)
4751{
Al Viro6d0379e2013-06-16 19:32:35 +04004752 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Jan Schmidt2f232032013-04-25 16:04:51 +00004753 struct btrfs_ioctl_quota_rescan_args *qsa;
4754 int ret;
4755
4756 if (!capable(CAP_SYS_ADMIN))
4757 return -EPERM;
4758
4759 ret = mnt_want_write_file(file);
4760 if (ret)
4761 return ret;
4762
4763 qsa = memdup_user(arg, sizeof(*qsa));
4764 if (IS_ERR(qsa)) {
4765 ret = PTR_ERR(qsa);
4766 goto drop_write;
4767 }
4768
4769 if (qsa->flags) {
4770 ret = -EINVAL;
4771 goto out;
4772 }
4773
4774 ret = btrfs_qgroup_rescan(root->fs_info);
4775
4776out:
4777 kfree(qsa);
4778drop_write:
4779 mnt_drop_write_file(file);
4780 return ret;
4781}
4782
4783static long btrfs_ioctl_quota_rescan_status(struct file *file, void __user *arg)
4784{
Al Viro6d0379e2013-06-16 19:32:35 +04004785 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Jan Schmidt2f232032013-04-25 16:04:51 +00004786 struct btrfs_ioctl_quota_rescan_args *qsa;
4787 int ret = 0;
4788
4789 if (!capable(CAP_SYS_ADMIN))
4790 return -EPERM;
4791
4792 qsa = kzalloc(sizeof(*qsa), GFP_NOFS);
4793 if (!qsa)
4794 return -ENOMEM;
4795
4796 if (root->fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_RESCAN) {
4797 qsa->flags = 1;
4798 qsa->progress = root->fs_info->qgroup_rescan_progress.objectid;
4799 }
4800
4801 if (copy_to_user(arg, qsa, sizeof(*qsa)))
4802 ret = -EFAULT;
4803
4804 kfree(qsa);
4805 return ret;
4806}
4807
Jan Schmidt57254b6e2013-05-06 19:14:17 +00004808static long btrfs_ioctl_quota_rescan_wait(struct file *file, void __user *arg)
4809{
Al Viro54563d42013-09-01 15:57:51 -04004810 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Jan Schmidt57254b6e2013-05-06 19:14:17 +00004811
4812 if (!capable(CAP_SYS_ADMIN))
4813 return -EPERM;
4814
4815 return btrfs_qgroup_wait_for_completion(root->fs_info);
4816}
4817
Hugo Millsabccd002014-01-30 20:17:00 +00004818static long _btrfs_ioctl_set_received_subvol(struct file *file,
4819 struct btrfs_ioctl_received_subvol_args *sa)
Alexander Block8ea05e32012-07-25 17:35:53 +02004820{
Al Viro496ad9a2013-01-23 17:07:38 -05004821 struct inode *inode = file_inode(file);
Alexander Block8ea05e32012-07-25 17:35:53 +02004822 struct btrfs_root *root = BTRFS_I(inode)->root;
4823 struct btrfs_root_item *root_item = &root->root_item;
4824 struct btrfs_trans_handle *trans;
4825 struct timespec ct = CURRENT_TIME;
4826 int ret = 0;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004827 int received_uuid_changed;
Alexander Block8ea05e32012-07-25 17:35:53 +02004828
David Sterbabd60ea02014-01-16 15:50:22 +01004829 if (!inode_owner_or_capable(inode))
4830 return -EPERM;
4831
Alexander Block8ea05e32012-07-25 17:35:53 +02004832 ret = mnt_want_write_file(file);
4833 if (ret < 0)
4834 return ret;
4835
4836 down_write(&root->fs_info->subvol_sem);
4837
4838 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
4839 ret = -EINVAL;
4840 goto out;
4841 }
4842
4843 if (btrfs_root_readonly(root)) {
4844 ret = -EROFS;
4845 goto out;
4846 }
4847
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004848 /*
4849 * 1 - root item
4850 * 2 - uuid items (received uuid + subvol uuid)
4851 */
4852 trans = btrfs_start_transaction(root, 3);
Alexander Block8ea05e32012-07-25 17:35:53 +02004853 if (IS_ERR(trans)) {
4854 ret = PTR_ERR(trans);
4855 trans = NULL;
4856 goto out;
4857 }
4858
4859 sa->rtransid = trans->transid;
4860 sa->rtime.sec = ct.tv_sec;
4861 sa->rtime.nsec = ct.tv_nsec;
4862
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004863 received_uuid_changed = memcmp(root_item->received_uuid, sa->uuid,
4864 BTRFS_UUID_SIZE);
4865 if (received_uuid_changed &&
4866 !btrfs_is_empty_uuid(root_item->received_uuid))
4867 btrfs_uuid_tree_rem(trans, root->fs_info->uuid_root,
4868 root_item->received_uuid,
4869 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4870 root->root_key.objectid);
Alexander Block8ea05e32012-07-25 17:35:53 +02004871 memcpy(root_item->received_uuid, sa->uuid, BTRFS_UUID_SIZE);
4872 btrfs_set_root_stransid(root_item, sa->stransid);
4873 btrfs_set_root_rtransid(root_item, sa->rtransid);
Qu Wenruo3cae2102013-07-16 11:19:18 +08004874 btrfs_set_stack_timespec_sec(&root_item->stime, sa->stime.sec);
4875 btrfs_set_stack_timespec_nsec(&root_item->stime, sa->stime.nsec);
4876 btrfs_set_stack_timespec_sec(&root_item->rtime, sa->rtime.sec);
4877 btrfs_set_stack_timespec_nsec(&root_item->rtime, sa->rtime.nsec);
Alexander Block8ea05e32012-07-25 17:35:53 +02004878
4879 ret = btrfs_update_root(trans, root->fs_info->tree_root,
4880 &root->root_key, &root->root_item);
4881 if (ret < 0) {
4882 btrfs_end_transaction(trans, root);
Alexander Block8ea05e32012-07-25 17:35:53 +02004883 goto out;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004884 }
4885 if (received_uuid_changed && !btrfs_is_empty_uuid(sa->uuid)) {
4886 ret = btrfs_uuid_tree_add(trans, root->fs_info->uuid_root,
4887 sa->uuid,
4888 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4889 root->root_key.objectid);
4890 if (ret < 0 && ret != -EEXIST) {
4891 btrfs_abort_transaction(trans, root, ret);
Alexander Block8ea05e32012-07-25 17:35:53 +02004892 goto out;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004893 }
4894 }
4895 ret = btrfs_commit_transaction(trans, root);
4896 if (ret < 0) {
4897 btrfs_abort_transaction(trans, root, ret);
4898 goto out;
Alexander Block8ea05e32012-07-25 17:35:53 +02004899 }
4900
Hugo Millsabccd002014-01-30 20:17:00 +00004901out:
4902 up_write(&root->fs_info->subvol_sem);
4903 mnt_drop_write_file(file);
4904 return ret;
4905}
4906
4907#ifdef CONFIG_64BIT
4908static long btrfs_ioctl_set_received_subvol_32(struct file *file,
4909 void __user *arg)
4910{
4911 struct btrfs_ioctl_received_subvol_args_32 *args32 = NULL;
4912 struct btrfs_ioctl_received_subvol_args *args64 = NULL;
4913 int ret = 0;
4914
4915 args32 = memdup_user(arg, sizeof(*args32));
4916 if (IS_ERR(args32)) {
4917 ret = PTR_ERR(args32);
4918 args32 = NULL;
4919 goto out;
4920 }
4921
4922 args64 = kmalloc(sizeof(*args64), GFP_NOFS);
Dan Carpenter84dbeb82014-03-28 11:06:00 +03004923 if (!args64) {
4924 ret = -ENOMEM;
Hugo Millsabccd002014-01-30 20:17:00 +00004925 goto out;
4926 }
4927
4928 memcpy(args64->uuid, args32->uuid, BTRFS_UUID_SIZE);
4929 args64->stransid = args32->stransid;
4930 args64->rtransid = args32->rtransid;
4931 args64->stime.sec = args32->stime.sec;
4932 args64->stime.nsec = args32->stime.nsec;
4933 args64->rtime.sec = args32->rtime.sec;
4934 args64->rtime.nsec = args32->rtime.nsec;
4935 args64->flags = args32->flags;
4936
4937 ret = _btrfs_ioctl_set_received_subvol(file, args64);
4938 if (ret)
4939 goto out;
4940
4941 memcpy(args32->uuid, args64->uuid, BTRFS_UUID_SIZE);
4942 args32->stransid = args64->stransid;
4943 args32->rtransid = args64->rtransid;
4944 args32->stime.sec = args64->stime.sec;
4945 args32->stime.nsec = args64->stime.nsec;
4946 args32->rtime.sec = args64->rtime.sec;
4947 args32->rtime.nsec = args64->rtime.nsec;
4948 args32->flags = args64->flags;
4949
4950 ret = copy_to_user(arg, args32, sizeof(*args32));
4951 if (ret)
4952 ret = -EFAULT;
4953
4954out:
4955 kfree(args32);
4956 kfree(args64);
4957 return ret;
4958}
4959#endif
4960
4961static long btrfs_ioctl_set_received_subvol(struct file *file,
4962 void __user *arg)
4963{
4964 struct btrfs_ioctl_received_subvol_args *sa = NULL;
4965 int ret = 0;
4966
4967 sa = memdup_user(arg, sizeof(*sa));
4968 if (IS_ERR(sa)) {
4969 ret = PTR_ERR(sa);
4970 sa = NULL;
4971 goto out;
4972 }
4973
4974 ret = _btrfs_ioctl_set_received_subvol(file, sa);
4975
4976 if (ret)
4977 goto out;
4978
Alexander Block8ea05e32012-07-25 17:35:53 +02004979 ret = copy_to_user(arg, sa, sizeof(*sa));
4980 if (ret)
4981 ret = -EFAULT;
4982
4983out:
4984 kfree(sa);
Alexander Block8ea05e32012-07-25 17:35:53 +02004985 return ret;
4986}
4987
jeff.liu867ab662013-01-05 02:48:01 +00004988static int btrfs_ioctl_get_fslabel(struct file *file, void __user *arg)
4989{
Al Viro6d0379e2013-06-16 19:32:35 +04004990 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Anand Jaina1b83ac2013-07-19 17:39:32 +08004991 size_t len;
jeff.liu867ab662013-01-05 02:48:01 +00004992 int ret;
Anand Jaina1b83ac2013-07-19 17:39:32 +08004993 char label[BTRFS_LABEL_SIZE];
4994
4995 spin_lock(&root->fs_info->super_lock);
4996 memcpy(label, root->fs_info->super_copy->label, BTRFS_LABEL_SIZE);
4997 spin_unlock(&root->fs_info->super_lock);
4998
4999 len = strnlen(label, BTRFS_LABEL_SIZE);
jeff.liu867ab662013-01-05 02:48:01 +00005000
5001 if (len == BTRFS_LABEL_SIZE) {
Frank Holtonefe120a2013-12-20 11:37:06 -05005002 btrfs_warn(root->fs_info,
5003 "label is too long, return the first %zu bytes", --len);
jeff.liu867ab662013-01-05 02:48:01 +00005004 }
5005
jeff.liu867ab662013-01-05 02:48:01 +00005006 ret = copy_to_user(arg, label, len);
jeff.liu867ab662013-01-05 02:48:01 +00005007
5008 return ret ? -EFAULT : 0;
5009}
5010
jeff.liua8bfd4a2013-01-05 02:48:08 +00005011static int btrfs_ioctl_set_fslabel(struct file *file, void __user *arg)
5012{
Al Viro6d0379e2013-06-16 19:32:35 +04005013 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
jeff.liua8bfd4a2013-01-05 02:48:08 +00005014 struct btrfs_super_block *super_block = root->fs_info->super_copy;
5015 struct btrfs_trans_handle *trans;
5016 char label[BTRFS_LABEL_SIZE];
5017 int ret;
5018
5019 if (!capable(CAP_SYS_ADMIN))
5020 return -EPERM;
5021
5022 if (copy_from_user(label, arg, sizeof(label)))
5023 return -EFAULT;
5024
5025 if (strnlen(label, BTRFS_LABEL_SIZE) == BTRFS_LABEL_SIZE) {
Frank Holtonefe120a2013-12-20 11:37:06 -05005026 btrfs_err(root->fs_info, "unable to set label with more than %d bytes",
jeff.liua8bfd4a2013-01-05 02:48:08 +00005027 BTRFS_LABEL_SIZE - 1);
5028 return -EINVAL;
5029 }
5030
5031 ret = mnt_want_write_file(file);
5032 if (ret)
5033 return ret;
5034
jeff.liua8bfd4a2013-01-05 02:48:08 +00005035 trans = btrfs_start_transaction(root, 0);
5036 if (IS_ERR(trans)) {
5037 ret = PTR_ERR(trans);
5038 goto out_unlock;
5039 }
5040
Anand Jaina1b83ac2013-07-19 17:39:32 +08005041 spin_lock(&root->fs_info->super_lock);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005042 strcpy(super_block->label, label);
Anand Jaina1b83ac2013-07-19 17:39:32 +08005043 spin_unlock(&root->fs_info->super_lock);
Jeff Mahoneyd0270ac2014-02-07 14:33:57 +01005044 ret = btrfs_commit_transaction(trans, root);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005045
5046out_unlock:
jeff.liua8bfd4a2013-01-05 02:48:08 +00005047 mnt_drop_write_file(file);
5048 return ret;
5049}
5050
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005051#define INIT_FEATURE_FLAGS(suffix) \
5052 { .compat_flags = BTRFS_FEATURE_COMPAT_##suffix, \
5053 .compat_ro_flags = BTRFS_FEATURE_COMPAT_RO_##suffix, \
5054 .incompat_flags = BTRFS_FEATURE_INCOMPAT_##suffix }
5055
5056static int btrfs_ioctl_get_supported_features(struct file *file,
5057 void __user *arg)
5058{
5059 static struct btrfs_ioctl_feature_flags features[3] = {
5060 INIT_FEATURE_FLAGS(SUPP),
5061 INIT_FEATURE_FLAGS(SAFE_SET),
5062 INIT_FEATURE_FLAGS(SAFE_CLEAR)
5063 };
5064
5065 if (copy_to_user(arg, &features, sizeof(features)))
5066 return -EFAULT;
5067
5068 return 0;
5069}
5070
5071static int btrfs_ioctl_get_features(struct file *file, void __user *arg)
5072{
5073 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
5074 struct btrfs_super_block *super_block = root->fs_info->super_copy;
5075 struct btrfs_ioctl_feature_flags features;
5076
5077 features.compat_flags = btrfs_super_compat_flags(super_block);
5078 features.compat_ro_flags = btrfs_super_compat_ro_flags(super_block);
5079 features.incompat_flags = btrfs_super_incompat_flags(super_block);
5080
5081 if (copy_to_user(arg, &features, sizeof(features)))
5082 return -EFAULT;
5083
5084 return 0;
5085}
5086
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005087static int check_feature_bits(struct btrfs_root *root,
5088 enum btrfs_feature_set set,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005089 u64 change_mask, u64 flags, u64 supported_flags,
5090 u64 safe_set, u64 safe_clear)
5091{
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005092 const char *type = btrfs_feature_set_names[set];
5093 char *names;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005094 u64 disallowed, unsupported;
5095 u64 set_mask = flags & change_mask;
5096 u64 clear_mask = ~flags & change_mask;
5097
5098 unsupported = set_mask & ~supported_flags;
5099 if (unsupported) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005100 names = btrfs_printable_features(set, unsupported);
5101 if (names) {
5102 btrfs_warn(root->fs_info,
5103 "this kernel does not support the %s feature bit%s",
5104 names, strchr(names, ',') ? "s" : "");
5105 kfree(names);
5106 } else
5107 btrfs_warn(root->fs_info,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005108 "this kernel does not support %s bits 0x%llx",
5109 type, unsupported);
5110 return -EOPNOTSUPP;
5111 }
5112
5113 disallowed = set_mask & ~safe_set;
5114 if (disallowed) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005115 names = btrfs_printable_features(set, disallowed);
5116 if (names) {
5117 btrfs_warn(root->fs_info,
5118 "can't set the %s feature bit%s while mounted",
5119 names, strchr(names, ',') ? "s" : "");
5120 kfree(names);
5121 } else
5122 btrfs_warn(root->fs_info,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005123 "can't set %s bits 0x%llx while mounted",
5124 type, disallowed);
5125 return -EPERM;
5126 }
5127
5128 disallowed = clear_mask & ~safe_clear;
5129 if (disallowed) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005130 names = btrfs_printable_features(set, disallowed);
5131 if (names) {
5132 btrfs_warn(root->fs_info,
5133 "can't clear the %s feature bit%s while mounted",
5134 names, strchr(names, ',') ? "s" : "");
5135 kfree(names);
5136 } else
5137 btrfs_warn(root->fs_info,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005138 "can't clear %s bits 0x%llx while mounted",
5139 type, disallowed);
5140 return -EPERM;
5141 }
5142
5143 return 0;
5144}
5145
5146#define check_feature(root, change_mask, flags, mask_base) \
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005147check_feature_bits(root, FEAT_##mask_base, change_mask, flags, \
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005148 BTRFS_FEATURE_ ## mask_base ## _SUPP, \
5149 BTRFS_FEATURE_ ## mask_base ## _SAFE_SET, \
5150 BTRFS_FEATURE_ ## mask_base ## _SAFE_CLEAR)
5151
5152static int btrfs_ioctl_set_features(struct file *file, void __user *arg)
5153{
5154 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
5155 struct btrfs_super_block *super_block = root->fs_info->super_copy;
5156 struct btrfs_ioctl_feature_flags flags[2];
5157 struct btrfs_trans_handle *trans;
5158 u64 newflags;
5159 int ret;
5160
5161 if (!capable(CAP_SYS_ADMIN))
5162 return -EPERM;
5163
5164 if (copy_from_user(flags, arg, sizeof(flags)))
5165 return -EFAULT;
5166
5167 /* Nothing to do */
5168 if (!flags[0].compat_flags && !flags[0].compat_ro_flags &&
5169 !flags[0].incompat_flags)
5170 return 0;
5171
5172 ret = check_feature(root, flags[0].compat_flags,
5173 flags[1].compat_flags, COMPAT);
5174 if (ret)
5175 return ret;
5176
5177 ret = check_feature(root, flags[0].compat_ro_flags,
5178 flags[1].compat_ro_flags, COMPAT_RO);
5179 if (ret)
5180 return ret;
5181
5182 ret = check_feature(root, flags[0].incompat_flags,
5183 flags[1].incompat_flags, INCOMPAT);
5184 if (ret)
5185 return ret;
5186
David Sterba8051aa12014-02-07 14:34:04 +01005187 trans = btrfs_start_transaction(root, 0);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005188 if (IS_ERR(trans))
5189 return PTR_ERR(trans);
5190
5191 spin_lock(&root->fs_info->super_lock);
5192 newflags = btrfs_super_compat_flags(super_block);
5193 newflags |= flags[0].compat_flags & flags[1].compat_flags;
5194 newflags &= ~(flags[0].compat_flags & ~flags[1].compat_flags);
5195 btrfs_set_super_compat_flags(super_block, newflags);
5196
5197 newflags = btrfs_super_compat_ro_flags(super_block);
5198 newflags |= flags[0].compat_ro_flags & flags[1].compat_ro_flags;
5199 newflags &= ~(flags[0].compat_ro_flags & ~flags[1].compat_ro_flags);
5200 btrfs_set_super_compat_ro_flags(super_block, newflags);
5201
5202 newflags = btrfs_super_incompat_flags(super_block);
5203 newflags |= flags[0].incompat_flags & flags[1].incompat_flags;
5204 newflags &= ~(flags[0].incompat_flags & ~flags[1].incompat_flags);
5205 btrfs_set_super_incompat_flags(super_block, newflags);
5206 spin_unlock(&root->fs_info->super_lock);
5207
Jeff Mahoneyd0270ac2014-02-07 14:33:57 +01005208 return btrfs_commit_transaction(trans, root);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005209}
5210
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005211long btrfs_ioctl(struct file *file, unsigned int
5212 cmd, unsigned long arg)
5213{
Al Viro496ad9a2013-01-23 17:07:38 -05005214 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05005215 void __user *argp = (void __user *)arg;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005216
5217 switch (cmd) {
Christoph Hellwig6cbff002009-04-17 10:37:41 +02005218 case FS_IOC_GETFLAGS:
5219 return btrfs_ioctl_getflags(file, argp);
5220 case FS_IOC_SETFLAGS:
5221 return btrfs_ioctl_setflags(file, argp);
5222 case FS_IOC_GETVERSION:
5223 return btrfs_ioctl_getversion(file, argp);
Li Dongyangf7039b12011-03-24 10:24:28 +00005224 case FITRIM:
5225 return btrfs_ioctl_fitrim(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005226 case BTRFS_IOC_SNAP_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005227 return btrfs_ioctl_snap_create(file, argp, 0);
Li Zefanfdfb1e42010-12-10 06:41:56 +00005228 case BTRFS_IOC_SNAP_CREATE_V2:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005229 return btrfs_ioctl_snap_create_v2(file, argp, 0);
Chris Mason3de45862008-11-17 21:02:50 -05005230 case BTRFS_IOC_SUBVOL_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005231 return btrfs_ioctl_snap_create(file, argp, 1);
Arne Jansen6f72c7e2011-09-14 15:58:21 +02005232 case BTRFS_IOC_SUBVOL_CREATE_V2:
5233 return btrfs_ioctl_snap_create_v2(file, argp, 1);
Yan, Zheng76dda932009-09-21 16:00:26 -04005234 case BTRFS_IOC_SNAP_DESTROY:
5235 return btrfs_ioctl_snap_destroy(file, argp);
Li Zefan0caa1022010-12-20 16:30:25 +08005236 case BTRFS_IOC_SUBVOL_GETFLAGS:
5237 return btrfs_ioctl_subvol_getflags(file, argp);
5238 case BTRFS_IOC_SUBVOL_SETFLAGS:
5239 return btrfs_ioctl_subvol_setflags(file, argp);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00005240 case BTRFS_IOC_DEFAULT_SUBVOL:
5241 return btrfs_ioctl_default_subvol(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005242 case BTRFS_IOC_DEFRAG:
Chris Mason1e701a32010-03-11 09:42:04 -05005243 return btrfs_ioctl_defrag(file, NULL);
5244 case BTRFS_IOC_DEFRAG_RANGE:
5245 return btrfs_ioctl_defrag(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005246 case BTRFS_IOC_RESIZE:
Miao Xie198605a2012-11-26 08:43:45 +00005247 return btrfs_ioctl_resize(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005248 case BTRFS_IOC_ADD_DEV:
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05005249 return btrfs_ioctl_add_dev(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005250 case BTRFS_IOC_RM_DEV:
Miao Xieda249272012-11-26 08:44:50 +00005251 return btrfs_ioctl_rm_dev(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005252 case BTRFS_IOC_FS_INFO:
5253 return btrfs_ioctl_fs_info(root, argp);
5254 case BTRFS_IOC_DEV_INFO:
5255 return btrfs_ioctl_dev_info(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005256 case BTRFS_IOC_BALANCE:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08005257 return btrfs_ioctl_balance(file, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005258 case BTRFS_IOC_CLONE:
Sage Weilc5c9cd42008-11-12 14:32:25 -05005259 return btrfs_ioctl_clone(file, arg, 0, 0, 0);
5260 case BTRFS_IOC_CLONE_RANGE:
Christoph Hellwig7a865e82008-12-02 09:52:24 -05005261 return btrfs_ioctl_clone_range(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005262 case BTRFS_IOC_TRANS_START:
5263 return btrfs_ioctl_trans_start(file);
5264 case BTRFS_IOC_TRANS_END:
5265 return btrfs_ioctl_trans_end(file);
Chris Masonac8e9812010-02-28 15:39:26 -05005266 case BTRFS_IOC_TREE_SEARCH:
5267 return btrfs_ioctl_tree_search(file, argp);
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01005268 case BTRFS_IOC_TREE_SEARCH_V2:
5269 return btrfs_ioctl_tree_search_v2(file, argp);
Chris Masonac8e9812010-02-28 15:39:26 -05005270 case BTRFS_IOC_INO_LOOKUP:
5271 return btrfs_ioctl_ino_lookup(file, argp);
Jan Schmidtd7728c92011-07-07 16:48:38 +02005272 case BTRFS_IOC_INO_PATHS:
5273 return btrfs_ioctl_ino_to_path(root, argp);
5274 case BTRFS_IOC_LOGICAL_INO:
5275 return btrfs_ioctl_logical_to_ino(root, argp);
Josef Bacik1406e432010-01-13 18:19:06 +00005276 case BTRFS_IOC_SPACE_INFO:
5277 return btrfs_ioctl_space_info(root, argp);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005278 case BTRFS_IOC_SYNC: {
5279 int ret;
5280
Miao Xie6c255e62014-03-06 13:55:01 +08005281 ret = btrfs_start_delalloc_roots(root->fs_info, 0, -1);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005282 if (ret)
5283 return ret;
5284 ret = btrfs_sync_fs(file->f_dentry->d_sb, 1);
5285 return ret;
5286 }
Sage Weil46204592010-10-29 15:41:32 -04005287 case BTRFS_IOC_START_SYNC:
Miao Xie9a8c28b2012-11-26 08:40:43 +00005288 return btrfs_ioctl_start_sync(root, argp);
Sage Weil46204592010-10-29 15:41:32 -04005289 case BTRFS_IOC_WAIT_SYNC:
Miao Xie9a8c28b2012-11-26 08:40:43 +00005290 return btrfs_ioctl_wait_sync(root, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005291 case BTRFS_IOC_SCRUB:
Miao Xieb8e95482012-11-26 08:48:01 +00005292 return btrfs_ioctl_scrub(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005293 case BTRFS_IOC_SCRUB_CANCEL:
5294 return btrfs_ioctl_scrub_cancel(root, argp);
5295 case BTRFS_IOC_SCRUB_PROGRESS:
5296 return btrfs_ioctl_scrub_progress(root, argp);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02005297 case BTRFS_IOC_BALANCE_V2:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08005298 return btrfs_ioctl_balance(file, argp);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02005299 case BTRFS_IOC_BALANCE_CTL:
5300 return btrfs_ioctl_balance_ctl(root, arg);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02005301 case BTRFS_IOC_BALANCE_PROGRESS:
5302 return btrfs_ioctl_balance_progress(root, argp);
Alexander Block8ea05e32012-07-25 17:35:53 +02005303 case BTRFS_IOC_SET_RECEIVED_SUBVOL:
5304 return btrfs_ioctl_set_received_subvol(file, argp);
Hugo Millsabccd002014-01-30 20:17:00 +00005305#ifdef CONFIG_64BIT
5306 case BTRFS_IOC_SET_RECEIVED_SUBVOL_32:
5307 return btrfs_ioctl_set_received_subvol_32(file, argp);
5308#endif
Alexander Block31db9f72012-07-25 23:19:24 +02005309 case BTRFS_IOC_SEND:
5310 return btrfs_ioctl_send(file, argp);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02005311 case BTRFS_IOC_GET_DEV_STATS:
David Sterbab27f7c02012-06-22 06:30:39 -06005312 return btrfs_ioctl_get_dev_stats(root, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005313 case BTRFS_IOC_QUOTA_CTL:
Miao Xie905b0dd2012-11-26 08:50:11 +00005314 return btrfs_ioctl_quota_ctl(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005315 case BTRFS_IOC_QGROUP_ASSIGN:
Miao Xie905b0dd2012-11-26 08:50:11 +00005316 return btrfs_ioctl_qgroup_assign(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005317 case BTRFS_IOC_QGROUP_CREATE:
Miao Xie905b0dd2012-11-26 08:50:11 +00005318 return btrfs_ioctl_qgroup_create(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005319 case BTRFS_IOC_QGROUP_LIMIT:
Miao Xie905b0dd2012-11-26 08:50:11 +00005320 return btrfs_ioctl_qgroup_limit(file, argp);
Jan Schmidt2f232032013-04-25 16:04:51 +00005321 case BTRFS_IOC_QUOTA_RESCAN:
5322 return btrfs_ioctl_quota_rescan(file, argp);
5323 case BTRFS_IOC_QUOTA_RESCAN_STATUS:
5324 return btrfs_ioctl_quota_rescan_status(file, argp);
Jan Schmidt57254b6e2013-05-06 19:14:17 +00005325 case BTRFS_IOC_QUOTA_RESCAN_WAIT:
5326 return btrfs_ioctl_quota_rescan_wait(file, argp);
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01005327 case BTRFS_IOC_DEV_REPLACE:
5328 return btrfs_ioctl_dev_replace(root, argp);
jeff.liu867ab662013-01-05 02:48:01 +00005329 case BTRFS_IOC_GET_FSLABEL:
5330 return btrfs_ioctl_get_fslabel(file, argp);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005331 case BTRFS_IOC_SET_FSLABEL:
5332 return btrfs_ioctl_set_fslabel(file, argp);
Mark Fasheh416161d2013-08-06 11:42:51 -07005333 case BTRFS_IOC_FILE_EXTENT_SAME:
5334 return btrfs_ioctl_file_extent_same(file, argp);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005335 case BTRFS_IOC_GET_SUPPORTED_FEATURES:
5336 return btrfs_ioctl_get_supported_features(file, argp);
5337 case BTRFS_IOC_GET_FEATURES:
5338 return btrfs_ioctl_get_features(file, argp);
5339 case BTRFS_IOC_SET_FEATURES:
5340 return btrfs_ioctl_set_features(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005341 }
5342
5343 return -ENOTTY;
5344}