blob: fce6fd0e3f50c729adcf278b1b2a13bd2ede1494 [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 Zefanf062abf2011-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 Zefanf062abf2011-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 Zefanf062abf2011-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 Zefanf062abf2011-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 Zefanf062abf2011-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);
liubo2d4e6f62011-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
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400480 leaf = btrfs_alloc_free_block(trans, root, root->leafsize,
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);
506 btrfs_set_stack_inode_nbytes(inode_item, root->leafsize);
507 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;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400538 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
539 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);
Filipe Mananae2127cf2014-03-01 10:57:03 +00001022 if (!next || next->block_start >= EXTENT_MAP_LAST_BYTE ||
1023 (em->block_start + em->block_len == next->block_start))
Li Zefan6c282eb2012-06-11 16:03:35 +08001024 ret = false;
1025
1026 free_extent_map(next);
1027 return ret;
1028}
1029
1030static int should_defrag_range(struct inode *inode, u64 start, int thresh,
Andrew Mahonea43a2112012-06-19 21:08:32 -04001031 u64 *last_len, u64 *skip, u64 *defrag_end,
1032 int compress)
Li Zefan6c282eb2012-06-11 16:03:35 +08001033{
1034 struct extent_map *em;
1035 int ret = 1;
1036 bool next_mergeable = true;
1037
1038 /*
1039 * make sure that once we start defragging an extent, we keep on
1040 * defragging it
1041 */
1042 if (start < *defrag_end)
1043 return 1;
1044
1045 *skip = 0;
1046
1047 em = defrag_lookup_extent(inode, start);
1048 if (!em)
1049 return 0;
1050
Chris Mason940100a2010-03-10 10:52:59 -05001051 /* this will cover holes, and inline extents */
Liu Bo17ce6ef2012-03-29 09:57:45 -04001052 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
Chris Mason940100a2010-03-10 10:52:59 -05001053 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -04001054 goto out;
1055 }
1056
Li Zefan6c282eb2012-06-11 16:03:35 +08001057 next_mergeable = defrag_check_next_extent(inode, em);
Chris Mason940100a2010-03-10 10:52:59 -05001058
1059 /*
Li Zefan6c282eb2012-06-11 16:03:35 +08001060 * we hit a real extent, if it is big or the next extent is not a
1061 * real extent, don't bother defragging it
Chris Mason940100a2010-03-10 10:52:59 -05001062 */
Andrew Mahonea43a2112012-06-19 21:08:32 -04001063 if (!compress && (*last_len == 0 || *last_len >= thresh) &&
Li Zefan6c282eb2012-06-11 16:03:35 +08001064 (em->len >= thresh || !next_mergeable))
Chris Mason940100a2010-03-10 10:52:59 -05001065 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -04001066out:
Chris Mason940100a2010-03-10 10:52:59 -05001067 /*
1068 * last_len ends up being a counter of how many bytes we've defragged.
1069 * every time we choose not to defrag an extent, we reset *last_len
1070 * so that the next tiny extent will force a defrag.
1071 *
1072 * The end result of this is that tiny extents before a single big
1073 * extent will force at least part of that big extent to be defragged.
1074 */
1075 if (ret) {
Chris Mason940100a2010-03-10 10:52:59 -05001076 *defrag_end = extent_map_end(em);
1077 } else {
1078 *last_len = 0;
1079 *skip = extent_map_end(em);
1080 *defrag_end = 0;
1081 }
1082
1083 free_extent_map(em);
1084 return ret;
1085}
1086
Chris Mason4cb53002011-05-24 15:35:30 -04001087/*
1088 * it doesn't do much good to defrag one or two pages
1089 * at a time. This pulls in a nice chunk of pages
1090 * to COW and defrag.
1091 *
1092 * It also makes sure the delalloc code has enough
1093 * dirty data to avoid making new small extents as part
1094 * of the defrag
1095 *
1096 * It's a good idea to start RA on this range
1097 * before calling this.
1098 */
1099static int cluster_pages_for_defrag(struct inode *inode,
1100 struct page **pages,
1101 unsigned long start_index,
Justin Maggardc41570c2014-01-21 11:18:29 -08001102 unsigned long num_pages)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001103{
Chris Mason4cb53002011-05-24 15:35:30 -04001104 unsigned long file_end;
1105 u64 isize = i_size_read(inode);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001106 u64 page_start;
1107 u64 page_end;
Liu Bo1f12bd02012-03-29 09:57:44 -04001108 u64 page_cnt;
Chris Mason4cb53002011-05-24 15:35:30 -04001109 int ret;
1110 int i;
1111 int i_done;
1112 struct btrfs_ordered_extent *ordered;
1113 struct extent_state *cached_state = NULL;
Miao Xie600a45e2012-02-16 15:01:24 +08001114 struct extent_io_tree *tree;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04001115 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
Chris Mason4cb53002011-05-24 15:35:30 -04001116
Chris Mason4cb53002011-05-24 15:35:30 -04001117 file_end = (isize - 1) >> PAGE_CACHE_SHIFT;
Liu Bo1f12bd02012-03-29 09:57:44 -04001118 if (!isize || start_index > file_end)
1119 return 0;
1120
1121 page_cnt = min_t(u64, (u64)num_pages, (u64)file_end - start_index + 1);
Chris Mason4cb53002011-05-24 15:35:30 -04001122
1123 ret = btrfs_delalloc_reserve_space(inode,
Liu Bo1f12bd02012-03-29 09:57:44 -04001124 page_cnt << PAGE_CACHE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001125 if (ret)
1126 return ret;
Chris Mason4cb53002011-05-24 15:35:30 -04001127 i_done = 0;
Miao Xie600a45e2012-02-16 15:01:24 +08001128 tree = &BTRFS_I(inode)->io_tree;
Chris Mason4cb53002011-05-24 15:35:30 -04001129
1130 /* step one, lock all the pages */
Liu Bo1f12bd02012-03-29 09:57:44 -04001131 for (i = 0; i < page_cnt; i++) {
Chris Mason4cb53002011-05-24 15:35:30 -04001132 struct page *page;
Miao Xie600a45e2012-02-16 15:01:24 +08001133again:
Josef Bacika94733d2011-07-11 10:47:06 -04001134 page = find_or_create_page(inode->i_mapping,
Miao Xie600a45e2012-02-16 15:01:24 +08001135 start_index + i, mask);
Chris Mason4cb53002011-05-24 15:35:30 -04001136 if (!page)
1137 break;
1138
Miao Xie600a45e2012-02-16 15:01:24 +08001139 page_start = page_offset(page);
1140 page_end = page_start + PAGE_CACHE_SIZE - 1;
1141 while (1) {
Filipe Manana308d9802014-03-11 13:56:15 +00001142 lock_extent_bits(tree, page_start, page_end,
1143 0, &cached_state);
Miao Xie600a45e2012-02-16 15:01:24 +08001144 ordered = btrfs_lookup_ordered_extent(inode,
1145 page_start);
Filipe Manana308d9802014-03-11 13:56:15 +00001146 unlock_extent_cached(tree, page_start, page_end,
1147 &cached_state, GFP_NOFS);
Miao Xie600a45e2012-02-16 15:01:24 +08001148 if (!ordered)
1149 break;
1150
1151 unlock_page(page);
1152 btrfs_start_ordered_extent(inode, ordered, 1);
1153 btrfs_put_ordered_extent(ordered);
1154 lock_page(page);
Liu Bo1f12bd02012-03-29 09:57:44 -04001155 /*
1156 * we unlocked the page above, so we need check if
1157 * it was released or not.
1158 */
1159 if (page->mapping != inode->i_mapping) {
1160 unlock_page(page);
1161 page_cache_release(page);
1162 goto again;
1163 }
Miao Xie600a45e2012-02-16 15:01:24 +08001164 }
1165
Chris Mason4cb53002011-05-24 15:35:30 -04001166 if (!PageUptodate(page)) {
1167 btrfs_readpage(NULL, page);
1168 lock_page(page);
1169 if (!PageUptodate(page)) {
1170 unlock_page(page);
1171 page_cache_release(page);
1172 ret = -EIO;
1173 break;
1174 }
1175 }
Miao Xie600a45e2012-02-16 15:01:24 +08001176
Miao Xie600a45e2012-02-16 15:01:24 +08001177 if (page->mapping != inode->i_mapping) {
1178 unlock_page(page);
1179 page_cache_release(page);
1180 goto again;
1181 }
1182
Chris Mason4cb53002011-05-24 15:35:30 -04001183 pages[i] = page;
1184 i_done++;
1185 }
1186 if (!i_done || ret)
1187 goto out;
1188
1189 if (!(inode->i_sb->s_flags & MS_ACTIVE))
1190 goto out;
1191
1192 /*
1193 * so now we have a nice long stream of locked
1194 * and up to date pages, lets wait on them
1195 */
1196 for (i = 0; i < i_done; i++)
1197 wait_on_page_writeback(pages[i]);
1198
1199 page_start = page_offset(pages[0]);
1200 page_end = page_offset(pages[i_done - 1]) + PAGE_CACHE_SIZE;
1201
1202 lock_extent_bits(&BTRFS_I(inode)->io_tree,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001203 page_start, page_end - 1, 0, &cached_state);
Chris Mason4cb53002011-05-24 15:35:30 -04001204 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start,
1205 page_end - 1, EXTENT_DIRTY | EXTENT_DELALLOC |
Liu Bo9e8a4a82012-09-05 19:10:51 -06001206 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, 0, 0,
1207 &cached_state, GFP_NOFS);
Chris Mason4cb53002011-05-24 15:35:30 -04001208
Liu Bo1f12bd02012-03-29 09:57:44 -04001209 if (i_done != page_cnt) {
Josef Bacik9e0baf62011-07-15 15:16:44 +00001210 spin_lock(&BTRFS_I(inode)->lock);
1211 BTRFS_I(inode)->outstanding_extents++;
1212 spin_unlock(&BTRFS_I(inode)->lock);
Chris Mason4cb53002011-05-24 15:35:30 -04001213 btrfs_delalloc_release_space(inode,
Liu Bo1f12bd02012-03-29 09:57:44 -04001214 (page_cnt - i_done) << PAGE_CACHE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001215 }
1216
1217
Liu Bo9e8a4a82012-09-05 19:10:51 -06001218 set_extent_defrag(&BTRFS_I(inode)->io_tree, page_start, page_end - 1,
1219 &cached_state, GFP_NOFS);
Chris Mason4cb53002011-05-24 15:35:30 -04001220
1221 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
1222 page_start, page_end - 1, &cached_state,
1223 GFP_NOFS);
1224
1225 for (i = 0; i < i_done; i++) {
1226 clear_page_dirty_for_io(pages[i]);
1227 ClearPageChecked(pages[i]);
1228 set_page_extent_mapped(pages[i]);
1229 set_page_dirty(pages[i]);
1230 unlock_page(pages[i]);
1231 page_cache_release(pages[i]);
1232 }
1233 return i_done;
1234out:
1235 for (i = 0; i < i_done; i++) {
1236 unlock_page(pages[i]);
1237 page_cache_release(pages[i]);
1238 }
Liu Bo1f12bd02012-03-29 09:57:44 -04001239 btrfs_delalloc_release_space(inode, page_cnt << PAGE_CACHE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001240 return ret;
1241
1242}
1243
1244int btrfs_defrag_file(struct inode *inode, struct file *file,
1245 struct btrfs_ioctl_defrag_range_args *range,
1246 u64 newer_than, unsigned long max_to_defrag)
1247{
1248 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason4cb53002011-05-24 15:35:30 -04001249 struct file_ra_state *ra = NULL;
1250 unsigned long last_index;
Li Zefan151a31b2011-09-02 15:56:39 +08001251 u64 isize = i_size_read(inode);
Chris Mason940100a2010-03-10 10:52:59 -05001252 u64 last_len = 0;
1253 u64 skip = 0;
1254 u64 defrag_end = 0;
Chris Mason4cb53002011-05-24 15:35:30 -04001255 u64 newer_off = range->start;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001256 unsigned long i;
Li Zefan008873e2011-09-02 15:57:07 +08001257 unsigned long ra_index = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001258 int ret;
Chris Mason4cb53002011-05-24 15:35:30 -04001259 int defrag_count = 0;
Li Zefan1a419d82010-10-25 15:12:50 +08001260 int compress_type = BTRFS_COMPRESS_ZLIB;
Chris Mason4cb53002011-05-24 15:35:30 -04001261 int extent_thresh = range->extent_thresh;
Justin Maggardc41570c2014-01-21 11:18:29 -08001262 unsigned long max_cluster = (256 * 1024) >> PAGE_CACHE_SHIFT;
1263 unsigned long cluster = max_cluster;
Chris Mason4cb53002011-05-24 15:35:30 -04001264 u64 new_align = ~((u64)128 * 1024 - 1);
1265 struct page **pages = NULL;
1266
Liu Bo0abd5b12013-04-16 09:20:28 +00001267 if (isize == 0)
1268 return 0;
1269
1270 if (range->start >= isize)
1271 return -EINVAL;
Li Zefan1a419d82010-10-25 15:12:50 +08001272
1273 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS) {
1274 if (range->compress_type > BTRFS_COMPRESS_TYPES)
1275 return -EINVAL;
1276 if (range->compress_type)
1277 compress_type = range->compress_type;
1278 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001279
Liu Bo0abd5b12013-04-16 09:20:28 +00001280 if (extent_thresh == 0)
1281 extent_thresh = 256 * 1024;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001282
Chris Mason4cb53002011-05-24 15:35:30 -04001283 /*
1284 * if we were not given a file, allocate a readahead
1285 * context
1286 */
1287 if (!file) {
1288 ra = kzalloc(sizeof(*ra), GFP_NOFS);
1289 if (!ra)
1290 return -ENOMEM;
1291 file_ra_state_init(ra, inode->i_mapping);
1292 } else {
1293 ra = &file->f_ra;
1294 }
1295
Dulshani Gunawardhanad9b0d9b2013-10-31 10:32:18 +05301296 pages = kmalloc_array(max_cluster, sizeof(struct page *),
Chris Mason4cb53002011-05-24 15:35:30 -04001297 GFP_NOFS);
1298 if (!pages) {
1299 ret = -ENOMEM;
1300 goto out_ra;
1301 }
1302
1303 /* find the last page to defrag */
Chris Mason1e701a32010-03-11 09:42:04 -05001304 if (range->start + range->len > range->start) {
Li Zefan151a31b2011-09-02 15:56:39 +08001305 last_index = min_t(u64, isize - 1,
Chris Mason1e701a32010-03-11 09:42:04 -05001306 range->start + range->len - 1) >> PAGE_CACHE_SHIFT;
1307 } else {
Li Zefan151a31b2011-09-02 15:56:39 +08001308 last_index = (isize - 1) >> PAGE_CACHE_SHIFT;
Chris Mason1e701a32010-03-11 09:42:04 -05001309 }
1310
Chris Mason4cb53002011-05-24 15:35:30 -04001311 if (newer_than) {
1312 ret = find_new_extents(root, inode, newer_than,
1313 &newer_off, 64 * 1024);
1314 if (!ret) {
1315 range->start = newer_off;
1316 /*
1317 * we always align our defrag to help keep
1318 * the extents in the file evenly spaced
1319 */
1320 i = (newer_off & new_align) >> PAGE_CACHE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001321 } else
1322 goto out_ra;
1323 } else {
1324 i = range->start >> PAGE_CACHE_SHIFT;
1325 }
1326 if (!max_to_defrag)
Liu Bo7ec31b52012-01-26 15:01:12 -05001327 max_to_defrag = last_index + 1;
Chris Mason4cb53002011-05-24 15:35:30 -04001328
Li Zefan2a0f7f52011-10-10 15:43:34 -04001329 /*
1330 * make writeback starts from i, so the defrag range can be
1331 * written sequentially.
1332 */
1333 if (i < inode->i_mapping->writeback_index)
1334 inode->i_mapping->writeback_index = i;
1335
Chris Masonf7f43cc2011-10-11 11:41:40 -04001336 while (i <= last_index && defrag_count < max_to_defrag &&
1337 (i < (i_size_read(inode) + PAGE_CACHE_SIZE - 1) >>
1338 PAGE_CACHE_SHIFT)) {
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 */
1361 next = (skip + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
1362 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 Boe1f041e12012-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;
Li Zefanfa0d2b92010-12-20 15:53:28 +08001705 goto out;
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;
1715 goto out;
1716 }
1717 inherit = memdup_user(vol_args->qgroup_inherit, vol_args->size);
1718 if (IS_ERR(inherit)) {
1719 ret = PTR_ERR(inherit);
1720 goto out;
1721 }
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);
Li Zefanfa0d2b92010-12-20 15:53:28 +08001727
1728 if (ret == 0 && ptr &&
1729 copy_to_user(arg +
1730 offsetof(struct btrfs_ioctl_vol_args_v2,
1731 transid), ptr, sizeof(*ptr)))
1732 ret = -EFAULT;
Li Zefanfdfb1e42010-12-10 06:41:56 +00001733out:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001734 kfree(vol_args);
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001735 kfree(inherit);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001736 return ret;
1737}
1738
Li Zefan0caa1022010-12-20 16:30:25 +08001739static noinline int btrfs_ioctl_subvol_getflags(struct file *file,
1740 void __user *arg)
1741{
Al Viro496ad9a2013-01-23 17:07:38 -05001742 struct inode *inode = file_inode(file);
Li Zefan0caa1022010-12-20 16:30:25 +08001743 struct btrfs_root *root = BTRFS_I(inode)->root;
1744 int ret = 0;
1745 u64 flags = 0;
1746
Li Zefan33345d012011-04-20 10:31:50 +08001747 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID)
Li Zefan0caa1022010-12-20 16:30:25 +08001748 return -EINVAL;
1749
1750 down_read(&root->fs_info->subvol_sem);
1751 if (btrfs_root_readonly(root))
1752 flags |= BTRFS_SUBVOL_RDONLY;
1753 up_read(&root->fs_info->subvol_sem);
1754
1755 if (copy_to_user(arg, &flags, sizeof(flags)))
1756 ret = -EFAULT;
1757
1758 return ret;
1759}
1760
1761static noinline int btrfs_ioctl_subvol_setflags(struct file *file,
1762 void __user *arg)
1763{
Al Viro496ad9a2013-01-23 17:07:38 -05001764 struct inode *inode = file_inode(file);
Li Zefan0caa1022010-12-20 16:30:25 +08001765 struct btrfs_root *root = BTRFS_I(inode)->root;
1766 struct btrfs_trans_handle *trans;
1767 u64 root_flags;
1768 u64 flags;
1769 int ret = 0;
1770
David Sterbabd60ea02014-01-16 15:50:22 +01001771 if (!inode_owner_or_capable(inode))
1772 return -EPERM;
1773
Liu Bob9ca0662012-06-29 03:58:49 -06001774 ret = mnt_want_write_file(file);
1775 if (ret)
1776 goto out;
Li Zefan0caa1022010-12-20 16:30:25 +08001777
Liu Bob9ca0662012-06-29 03:58:49 -06001778 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
1779 ret = -EINVAL;
1780 goto out_drop_write;
1781 }
Li Zefan0caa1022010-12-20 16:30:25 +08001782
Liu Bob9ca0662012-06-29 03:58:49 -06001783 if (copy_from_user(&flags, arg, sizeof(flags))) {
1784 ret = -EFAULT;
1785 goto out_drop_write;
1786 }
Li Zefan0caa1022010-12-20 16:30:25 +08001787
Liu Bob9ca0662012-06-29 03:58:49 -06001788 if (flags & BTRFS_SUBVOL_CREATE_ASYNC) {
1789 ret = -EINVAL;
1790 goto out_drop_write;
1791 }
Li Zefan0caa1022010-12-20 16:30:25 +08001792
Liu Bob9ca0662012-06-29 03:58:49 -06001793 if (flags & ~BTRFS_SUBVOL_RDONLY) {
1794 ret = -EOPNOTSUPP;
1795 goto out_drop_write;
1796 }
Li Zefan0caa1022010-12-20 16:30:25 +08001797
1798 down_write(&root->fs_info->subvol_sem);
1799
1800 /* nothing to do */
1801 if (!!(flags & BTRFS_SUBVOL_RDONLY) == btrfs_root_readonly(root))
Liu Bob9ca0662012-06-29 03:58:49 -06001802 goto out_drop_sem;
Li Zefan0caa1022010-12-20 16:30:25 +08001803
1804 root_flags = btrfs_root_flags(&root->root_item);
David Sterba2c686532013-12-16 17:34:17 +01001805 if (flags & BTRFS_SUBVOL_RDONLY) {
Li Zefan0caa1022010-12-20 16:30:25 +08001806 btrfs_set_root_flags(&root->root_item,
1807 root_flags | BTRFS_ROOT_SUBVOL_RDONLY);
David Sterba2c686532013-12-16 17:34:17 +01001808 } else {
1809 /*
1810 * Block RO -> RW transition if this subvolume is involved in
1811 * send
1812 */
1813 spin_lock(&root->root_item_lock);
1814 if (root->send_in_progress == 0) {
1815 btrfs_set_root_flags(&root->root_item,
Li Zefan0caa1022010-12-20 16:30:25 +08001816 root_flags & ~BTRFS_ROOT_SUBVOL_RDONLY);
David Sterba2c686532013-12-16 17:34:17 +01001817 spin_unlock(&root->root_item_lock);
1818 } else {
1819 spin_unlock(&root->root_item_lock);
1820 btrfs_warn(root->fs_info,
1821 "Attempt to set subvolume %llu read-write during send",
1822 root->root_key.objectid);
1823 ret = -EPERM;
1824 goto out_drop_sem;
1825 }
1826 }
Li Zefan0caa1022010-12-20 16:30:25 +08001827
1828 trans = btrfs_start_transaction(root, 1);
1829 if (IS_ERR(trans)) {
1830 ret = PTR_ERR(trans);
1831 goto out_reset;
1832 }
1833
Li Zefanb4dc2b82011-02-16 06:06:34 +00001834 ret = btrfs_update_root(trans, root->fs_info->tree_root,
Li Zefan0caa1022010-12-20 16:30:25 +08001835 &root->root_key, &root->root_item);
1836
1837 btrfs_commit_transaction(trans, root);
1838out_reset:
1839 if (ret)
1840 btrfs_set_root_flags(&root->root_item, root_flags);
Liu Bob9ca0662012-06-29 03:58:49 -06001841out_drop_sem:
Li Zefan0caa1022010-12-20 16:30:25 +08001842 up_write(&root->fs_info->subvol_sem);
Liu Bob9ca0662012-06-29 03:58:49 -06001843out_drop_write:
1844 mnt_drop_write_file(file);
1845out:
Li Zefan0caa1022010-12-20 16:30:25 +08001846 return ret;
1847}
1848
Yan, Zheng76dda932009-09-21 16:00:26 -04001849/*
1850 * helper to check if the subvolume references other subvolumes
1851 */
1852static noinline int may_destroy_subvol(struct btrfs_root *root)
1853{
1854 struct btrfs_path *path;
Josef Bacik175a2b82013-08-12 15:36:44 -04001855 struct btrfs_dir_item *di;
Yan, Zheng76dda932009-09-21 16:00:26 -04001856 struct btrfs_key key;
Josef Bacik175a2b82013-08-12 15:36:44 -04001857 u64 dir_id;
Yan, Zheng76dda932009-09-21 16:00:26 -04001858 int ret;
1859
1860 path = btrfs_alloc_path();
1861 if (!path)
1862 return -ENOMEM;
1863
Josef Bacik175a2b82013-08-12 15:36:44 -04001864 /* Make sure this root isn't set as the default subvol */
1865 dir_id = btrfs_super_root_dir(root->fs_info->super_copy);
1866 di = btrfs_lookup_dir_item(NULL, root->fs_info->tree_root, path,
1867 dir_id, "default", 7, 0);
1868 if (di && !IS_ERR(di)) {
1869 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &key);
1870 if (key.objectid == root->root_key.objectid) {
Guangyu Sun72de6b52014-03-11 11:24:18 -07001871 ret = -EPERM;
1872 btrfs_err(root->fs_info, "deleting default subvolume "
1873 "%llu is not allowed", key.objectid);
Josef Bacik175a2b82013-08-12 15:36:44 -04001874 goto out;
1875 }
1876 btrfs_release_path(path);
1877 }
1878
Yan, Zheng76dda932009-09-21 16:00:26 -04001879 key.objectid = root->root_key.objectid;
1880 key.type = BTRFS_ROOT_REF_KEY;
1881 key.offset = (u64)-1;
1882
1883 ret = btrfs_search_slot(NULL, root->fs_info->tree_root,
1884 &key, path, 0, 0);
1885 if (ret < 0)
1886 goto out;
1887 BUG_ON(ret == 0);
1888
1889 ret = 0;
1890 if (path->slots[0] > 0) {
1891 path->slots[0]--;
1892 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1893 if (key.objectid == root->root_key.objectid &&
1894 key.type == BTRFS_ROOT_REF_KEY)
1895 ret = -ENOTEMPTY;
1896 }
1897out:
1898 btrfs_free_path(path);
1899 return ret;
1900}
1901
Chris Masonac8e9812010-02-28 15:39:26 -05001902static noinline int key_in_sk(struct btrfs_key *key,
1903 struct btrfs_ioctl_search_key *sk)
1904{
Chris Masonabc6e132010-03-18 12:10:08 -04001905 struct btrfs_key test;
1906 int ret;
1907
1908 test.objectid = sk->min_objectid;
1909 test.type = sk->min_type;
1910 test.offset = sk->min_offset;
1911
1912 ret = btrfs_comp_cpu_keys(key, &test);
1913 if (ret < 0)
Chris Masonac8e9812010-02-28 15:39:26 -05001914 return 0;
Chris Masonabc6e132010-03-18 12:10:08 -04001915
1916 test.objectid = sk->max_objectid;
1917 test.type = sk->max_type;
1918 test.offset = sk->max_offset;
1919
1920 ret = btrfs_comp_cpu_keys(key, &test);
1921 if (ret > 0)
Chris Masonac8e9812010-02-28 15:39:26 -05001922 return 0;
1923 return 1;
1924}
1925
1926static noinline int copy_to_sk(struct btrfs_root *root,
1927 struct btrfs_path *path,
1928 struct btrfs_key *key,
1929 struct btrfs_ioctl_search_key *sk,
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001930 size_t *buf_size,
Gerhard Heiftba346b32014-01-30 16:24:02 +01001931 char __user *ubuf,
Chris Masonac8e9812010-02-28 15:39:26 -05001932 unsigned long *sk_offset,
1933 int *num_found)
1934{
1935 u64 found_transid;
1936 struct extent_buffer *leaf;
1937 struct btrfs_ioctl_search_header sh;
1938 unsigned long item_off;
1939 unsigned long item_len;
1940 int nritems;
1941 int i;
1942 int slot;
Chris Masonac8e9812010-02-28 15:39:26 -05001943 int ret = 0;
1944
1945 leaf = path->nodes[0];
1946 slot = path->slots[0];
1947 nritems = btrfs_header_nritems(leaf);
1948
1949 if (btrfs_header_generation(leaf) > sk->max_transid) {
1950 i = nritems;
1951 goto advance_key;
1952 }
1953 found_transid = btrfs_header_generation(leaf);
1954
1955 for (i = slot; i < nritems; i++) {
1956 item_off = btrfs_item_ptr_offset(leaf, i);
1957 item_len = btrfs_item_size_nr(leaf, i);
1958
Gabriel de Perthuis03b71c62013-05-06 17:40:18 +00001959 btrfs_item_key_to_cpu(leaf, key, i);
1960 if (!key_in_sk(key, sk))
1961 continue;
1962
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001963 if (sizeof(sh) + item_len > *buf_size) {
Gerhard Heift8f5f6172014-01-30 16:23:59 +01001964 if (*num_found) {
1965 ret = 1;
1966 goto out;
1967 }
Chris Masonac8e9812010-02-28 15:39:26 -05001968
Gerhard Heift8f5f6172014-01-30 16:23:59 +01001969 /*
1970 * return one empty item back for v1, which does not
1971 * handle -EOVERFLOW
1972 */
1973
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001974 *buf_size = sizeof(sh) + item_len;
Chris Masonac8e9812010-02-28 15:39:26 -05001975 item_len = 0;
Gerhard Heift8f5f6172014-01-30 16:23:59 +01001976 ret = -EOVERFLOW;
1977 }
Chris Masonac8e9812010-02-28 15:39:26 -05001978
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001979 if (sizeof(sh) + item_len + *sk_offset > *buf_size) {
Chris Masonac8e9812010-02-28 15:39:26 -05001980 ret = 1;
Gerhard Heift25c9bc22014-01-30 16:23:57 +01001981 goto out;
Chris Masonac8e9812010-02-28 15:39:26 -05001982 }
1983
Chris Masonac8e9812010-02-28 15:39:26 -05001984 sh.objectid = key->objectid;
1985 sh.offset = key->offset;
1986 sh.type = key->type;
1987 sh.len = item_len;
1988 sh.transid = found_transid;
1989
1990 /* copy search result header */
Gerhard Heiftba346b32014-01-30 16:24:02 +01001991 if (copy_to_user(ubuf + *sk_offset, &sh, sizeof(sh))) {
1992 ret = -EFAULT;
1993 goto out;
1994 }
1995
Chris Masonac8e9812010-02-28 15:39:26 -05001996 *sk_offset += sizeof(sh);
1997
1998 if (item_len) {
Gerhard Heiftba346b32014-01-30 16:24:02 +01001999 char __user *up = ubuf + *sk_offset;
Chris Masonac8e9812010-02-28 15:39:26 -05002000 /* copy the item */
Gerhard Heiftba346b32014-01-30 16:24:02 +01002001 if (read_extent_buffer_to_user(leaf, up,
2002 item_off, item_len)) {
2003 ret = -EFAULT;
2004 goto out;
2005 }
2006
Chris Masonac8e9812010-02-28 15:39:26 -05002007 *sk_offset += item_len;
Chris Masonac8e9812010-02-28 15:39:26 -05002008 }
Hugo Millse2156862011-05-14 17:43:41 +00002009 (*num_found)++;
Chris Masonac8e9812010-02-28 15:39:26 -05002010
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002011 if (ret) /* -EOVERFLOW from above */
2012 goto out;
2013
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002014 if (*num_found >= sk->nr_items) {
2015 ret = 1;
2016 goto out;
2017 }
Chris Masonac8e9812010-02-28 15:39:26 -05002018 }
2019advance_key:
Chris Masonac8e9812010-02-28 15:39:26 -05002020 ret = 0;
Chris Masonabc6e132010-03-18 12:10:08 -04002021 if (key->offset < (u64)-1 && key->offset < sk->max_offset)
2022 key->offset++;
2023 else if (key->type < (u8)-1 && key->type < sk->max_type) {
2024 key->offset = 0;
2025 key->type++;
2026 } else if (key->objectid < (u64)-1 && key->objectid < sk->max_objectid) {
2027 key->offset = 0;
2028 key->type = 0;
2029 key->objectid++;
2030 } else
2031 ret = 1;
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002032out:
Gerhard Heiftba346b32014-01-30 16:24:02 +01002033 /*
2034 * 0: all items from this leaf copied, continue with next
2035 * 1: * more items can be copied, but unused buffer is too small
2036 * * all items were found
2037 * Either way, it will stops the loop which iterates to the next
2038 * leaf
2039 * -EOVERFLOW: item was to large for buffer
2040 * -EFAULT: could not copy extent buffer back to userspace
2041 */
Chris Masonac8e9812010-02-28 15:39:26 -05002042 return ret;
2043}
2044
2045static noinline int search_ioctl(struct inode *inode,
Gerhard Heift12544442014-01-30 16:23:58 +01002046 struct btrfs_ioctl_search_key *sk,
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002047 size_t *buf_size,
Gerhard Heiftba346b32014-01-30 16:24:02 +01002048 char __user *ubuf)
Chris Masonac8e9812010-02-28 15:39:26 -05002049{
2050 struct btrfs_root *root;
2051 struct btrfs_key key;
Chris Masonac8e9812010-02-28 15:39:26 -05002052 struct btrfs_path *path;
Chris Masonac8e9812010-02-28 15:39:26 -05002053 struct btrfs_fs_info *info = BTRFS_I(inode)->root->fs_info;
2054 int ret;
2055 int num_found = 0;
2056 unsigned long sk_offset = 0;
2057
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002058 if (*buf_size < sizeof(struct btrfs_ioctl_search_header)) {
2059 *buf_size = sizeof(struct btrfs_ioctl_search_header);
Gerhard Heift12544442014-01-30 16:23:58 +01002060 return -EOVERFLOW;
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002061 }
Gerhard Heift12544442014-01-30 16:23:58 +01002062
Chris Masonac8e9812010-02-28 15:39:26 -05002063 path = btrfs_alloc_path();
2064 if (!path)
2065 return -ENOMEM;
2066
2067 if (sk->tree_id == 0) {
2068 /* search the root of the inode that was passed */
2069 root = BTRFS_I(inode)->root;
2070 } else {
2071 key.objectid = sk->tree_id;
2072 key.type = BTRFS_ROOT_ITEM_KEY;
2073 key.offset = (u64)-1;
2074 root = btrfs_read_fs_root_no_name(info, &key);
2075 if (IS_ERR(root)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05002076 printk(KERN_ERR "BTRFS: could not find root %llu\n",
Chris Masonac8e9812010-02-28 15:39:26 -05002077 sk->tree_id);
2078 btrfs_free_path(path);
2079 return -ENOENT;
2080 }
2081 }
2082
2083 key.objectid = sk->min_objectid;
2084 key.type = sk->min_type;
2085 key.offset = sk->min_offset;
2086
Chris Masonac8e9812010-02-28 15:39:26 -05002087 path->keep_locks = 1;
2088
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302089 while (1) {
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +01002090 ret = btrfs_search_forward(root, &key, path, sk->min_transid);
Chris Masonac8e9812010-02-28 15:39:26 -05002091 if (ret != 0) {
2092 if (ret > 0)
2093 ret = 0;
2094 goto err;
2095 }
Gerhard Heiftba346b32014-01-30 16:24:02 +01002096 ret = copy_to_sk(root, path, &key, sk, buf_size, ubuf,
Chris Masonac8e9812010-02-28 15:39:26 -05002097 &sk_offset, &num_found);
David Sterbab3b4aa72011-04-21 01:20:15 +02002098 btrfs_release_path(path);
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002099 if (ret)
Chris Masonac8e9812010-02-28 15:39:26 -05002100 break;
2101
2102 }
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002103 if (ret > 0)
2104 ret = 0;
Chris Masonac8e9812010-02-28 15:39:26 -05002105err:
2106 sk->nr_items = num_found;
2107 btrfs_free_path(path);
2108 return ret;
2109}
2110
2111static noinline int btrfs_ioctl_tree_search(struct file *file,
2112 void __user *argp)
2113{
Gerhard Heiftba346b32014-01-30 16:24:02 +01002114 struct btrfs_ioctl_search_args __user *uargs;
2115 struct btrfs_ioctl_search_key sk;
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002116 struct inode *inode;
2117 int ret;
2118 size_t buf_size;
Chris Masonac8e9812010-02-28 15:39:26 -05002119
2120 if (!capable(CAP_SYS_ADMIN))
2121 return -EPERM;
2122
Gerhard Heiftba346b32014-01-30 16:24:02 +01002123 uargs = (struct btrfs_ioctl_search_args __user *)argp;
Chris Masonac8e9812010-02-28 15:39:26 -05002124
Gerhard Heiftba346b32014-01-30 16:24:02 +01002125 if (copy_from_user(&sk, &uargs->key, sizeof(sk)))
2126 return -EFAULT;
2127
2128 buf_size = sizeof(uargs->buf);
Chris Masonac8e9812010-02-28 15:39:26 -05002129
Al Viro496ad9a2013-01-23 17:07:38 -05002130 inode = file_inode(file);
Gerhard Heiftba346b32014-01-30 16:24:02 +01002131 ret = search_ioctl(inode, &sk, &buf_size, uargs->buf);
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002132
2133 /*
2134 * In the origin implementation an overflow is handled by returning a
2135 * search header with a len of zero, so reset ret.
2136 */
2137 if (ret == -EOVERFLOW)
2138 ret = 0;
2139
Gerhard Heiftba346b32014-01-30 16:24:02 +01002140 if (ret == 0 && copy_to_user(&uargs->key, &sk, sizeof(sk)))
Chris Masonac8e9812010-02-28 15:39:26 -05002141 ret = -EFAULT;
Chris Masonac8e9812010-02-28 15:39:26 -05002142 return ret;
2143}
2144
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002145static noinline int btrfs_ioctl_tree_search_v2(struct file *file,
2146 void __user *argp)
2147{
2148 struct btrfs_ioctl_search_args_v2 __user *uarg;
2149 struct btrfs_ioctl_search_args_v2 args;
2150 struct inode *inode;
2151 int ret;
2152 size_t buf_size;
2153 const size_t buf_limit = 16 * 1024 * 1024;
2154
2155 if (!capable(CAP_SYS_ADMIN))
2156 return -EPERM;
2157
2158 /* copy search header and buffer size */
2159 uarg = (struct btrfs_ioctl_search_args_v2 __user *)argp;
2160 if (copy_from_user(&args, uarg, sizeof(args)))
2161 return -EFAULT;
2162
2163 buf_size = args.buf_size;
2164
2165 if (buf_size < sizeof(struct btrfs_ioctl_search_header))
2166 return -EOVERFLOW;
2167
2168 /* limit result size to 16MB */
2169 if (buf_size > buf_limit)
2170 buf_size = buf_limit;
2171
2172 inode = file_inode(file);
2173 ret = search_ioctl(inode, &args.key, &buf_size,
2174 (char *)(&uarg->buf[0]));
2175 if (ret == 0 && copy_to_user(&uarg->key, &args.key, sizeof(args.key)))
2176 ret = -EFAULT;
2177 else if (ret == -EOVERFLOW &&
2178 copy_to_user(&uarg->buf_size, &buf_size, sizeof(buf_size)))
2179 ret = -EFAULT;
2180
Yan, Zheng76dda932009-09-21 16:00:26 -04002181 return ret;
2182}
2183
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002184/*
Chris Masonac8e9812010-02-28 15:39:26 -05002185 * Search INODE_REFs to identify path name of 'dirid' directory
2186 * in a 'tree_id' tree. and sets path name to 'name'.
2187 */
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002188static noinline int btrfs_search_path_in_tree(struct btrfs_fs_info *info,
2189 u64 tree_id, u64 dirid, char *name)
2190{
2191 struct btrfs_root *root;
2192 struct btrfs_key key;
Chris Masonac8e9812010-02-28 15:39:26 -05002193 char *ptr;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002194 int ret = -1;
2195 int slot;
2196 int len;
2197 int total_len = 0;
2198 struct btrfs_inode_ref *iref;
2199 struct extent_buffer *l;
2200 struct btrfs_path *path;
2201
2202 if (dirid == BTRFS_FIRST_FREE_OBJECTID) {
2203 name[0]='\0';
2204 return 0;
2205 }
2206
2207 path = btrfs_alloc_path();
2208 if (!path)
2209 return -ENOMEM;
2210
Chris Masonac8e9812010-02-28 15:39:26 -05002211 ptr = &name[BTRFS_INO_LOOKUP_PATH_MAX];
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002212
2213 key.objectid = tree_id;
2214 key.type = BTRFS_ROOT_ITEM_KEY;
2215 key.offset = (u64)-1;
2216 root = btrfs_read_fs_root_no_name(info, &key);
2217 if (IS_ERR(root)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05002218 printk(KERN_ERR "BTRFS: could not find root %llu\n", tree_id);
Chris Mason8ad6fca2010-03-18 12:23:10 -04002219 ret = -ENOENT;
2220 goto out;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002221 }
2222
2223 key.objectid = dirid;
2224 key.type = BTRFS_INODE_REF_KEY;
Chris Mason8ad6fca2010-03-18 12:23:10 -04002225 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002226
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302227 while (1) {
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002228 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2229 if (ret < 0)
2230 goto out;
Filipe David Borba Manana18674c62013-08-14 03:00:21 +01002231 else if (ret > 0) {
2232 ret = btrfs_previous_item(root, path, dirid,
2233 BTRFS_INODE_REF_KEY);
2234 if (ret < 0)
2235 goto out;
2236 else if (ret > 0) {
2237 ret = -ENOENT;
2238 goto out;
2239 }
2240 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002241
2242 l = path->nodes[0];
2243 slot = path->slots[0];
2244 btrfs_item_key_to_cpu(l, &key, slot);
2245
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002246 iref = btrfs_item_ptr(l, slot, struct btrfs_inode_ref);
2247 len = btrfs_inode_ref_name_len(l, iref);
2248 ptr -= len + 1;
2249 total_len += len + 1;
Filipe David Borba Mananaa696cf32013-08-14 03:00:20 +01002250 if (ptr < name) {
2251 ret = -ENAMETOOLONG;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002252 goto out;
Filipe David Borba Mananaa696cf32013-08-14 03:00:20 +01002253 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002254
2255 *(ptr + len) = '/';
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302256 read_extent_buffer(l, ptr, (unsigned long)(iref + 1), len);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002257
2258 if (key.offset == BTRFS_FIRST_FREE_OBJECTID)
2259 break;
2260
David Sterbab3b4aa72011-04-21 01:20:15 +02002261 btrfs_release_path(path);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002262 key.objectid = key.offset;
Chris Mason8ad6fca2010-03-18 12:23:10 -04002263 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002264 dirid = key.objectid;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002265 }
Li Zefan77906a502011-07-14 03:16:00 +00002266 memmove(name, ptr, total_len);
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302267 name[total_len] = '\0';
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002268 ret = 0;
2269out:
2270 btrfs_free_path(path);
Chris Masonac8e9812010-02-28 15:39:26 -05002271 return ret;
2272}
2273
2274static noinline int btrfs_ioctl_ino_lookup(struct file *file,
2275 void __user *argp)
2276{
2277 struct btrfs_ioctl_ino_lookup_args *args;
2278 struct inode *inode;
2279 int ret;
2280
2281 if (!capable(CAP_SYS_ADMIN))
2282 return -EPERM;
2283
Julia Lawall2354d082010-10-29 15:14:18 -04002284 args = memdup_user(argp, sizeof(*args));
2285 if (IS_ERR(args))
2286 return PTR_ERR(args);
Dan Carpenterc2b96922010-03-20 11:24:15 +00002287
Al Viro496ad9a2013-01-23 17:07:38 -05002288 inode = file_inode(file);
Chris Masonac8e9812010-02-28 15:39:26 -05002289
Chris Mason1b53ac42010-03-18 12:17:05 -04002290 if (args->treeid == 0)
2291 args->treeid = BTRFS_I(inode)->root->root_key.objectid;
2292
Chris Masonac8e9812010-02-28 15:39:26 -05002293 ret = btrfs_search_path_in_tree(BTRFS_I(inode)->root->fs_info,
2294 args->treeid, args->objectid,
2295 args->name);
2296
2297 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
2298 ret = -EFAULT;
2299
2300 kfree(args);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002301 return ret;
2302}
2303
Yan, Zheng76dda932009-09-21 16:00:26 -04002304static noinline int btrfs_ioctl_snap_destroy(struct file *file,
2305 void __user *arg)
2306{
Al Viro54563d42013-09-01 15:57:51 -04002307 struct dentry *parent = file->f_path.dentry;
Yan, Zheng76dda932009-09-21 16:00:26 -04002308 struct dentry *dentry;
2309 struct inode *dir = parent->d_inode;
2310 struct inode *inode;
2311 struct btrfs_root *root = BTRFS_I(dir)->root;
2312 struct btrfs_root *dest = NULL;
2313 struct btrfs_ioctl_vol_args *vol_args;
2314 struct btrfs_trans_handle *trans;
Miao Xiec58aaad2013-02-28 10:05:36 +00002315 struct btrfs_block_rsv block_rsv;
David Sterba521e0542014-04-15 16:41:44 +02002316 u64 root_flags;
Miao Xiec58aaad2013-02-28 10:05:36 +00002317 u64 qgroup_reserved;
Yan, Zheng76dda932009-09-21 16:00:26 -04002318 int namelen;
2319 int ret;
2320 int err = 0;
2321
Yan, Zheng76dda932009-09-21 16:00:26 -04002322 vol_args = memdup_user(arg, sizeof(*vol_args));
2323 if (IS_ERR(vol_args))
2324 return PTR_ERR(vol_args);
2325
2326 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
2327 namelen = strlen(vol_args->name);
2328 if (strchr(vol_args->name, '/') ||
2329 strncmp(vol_args->name, "..", namelen) == 0) {
2330 err = -EINVAL;
2331 goto out;
2332 }
2333
Al Viroa561be72011-11-23 11:57:51 -05002334 err = mnt_want_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04002335 if (err)
2336 goto out;
2337
David Sterba521e0542014-04-15 16:41:44 +02002338
David Sterba5c50c9b2013-03-22 18:12:51 +00002339 err = mutex_lock_killable_nested(&dir->i_mutex, I_MUTEX_PARENT);
2340 if (err == -EINTR)
David Sterbae43f9982013-12-06 17:51:32 +01002341 goto out_drop_write;
Yan, Zheng76dda932009-09-21 16:00:26 -04002342 dentry = lookup_one_len(vol_args->name, parent, namelen);
2343 if (IS_ERR(dentry)) {
2344 err = PTR_ERR(dentry);
2345 goto out_unlock_dir;
2346 }
2347
2348 if (!dentry->d_inode) {
2349 err = -ENOENT;
2350 goto out_dput;
2351 }
2352
2353 inode = dentry->d_inode;
Sage Weil4260f7c2010-10-29 15:46:43 -04002354 dest = BTRFS_I(inode)->root;
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302355 if (!capable(CAP_SYS_ADMIN)) {
Sage Weil4260f7c2010-10-29 15:46:43 -04002356 /*
2357 * Regular user. Only allow this with a special mount
2358 * option, when the user has write+exec access to the
2359 * subvol root, and when rmdir(2) would have been
2360 * allowed.
2361 *
2362 * Note that this is _not_ check that the subvol is
2363 * empty or doesn't contain data that we wouldn't
2364 * otherwise be able to delete.
2365 *
2366 * Users who want to delete empty subvols should try
2367 * rmdir(2).
2368 */
2369 err = -EPERM;
2370 if (!btrfs_test_opt(root, USER_SUBVOL_RM_ALLOWED))
2371 goto out_dput;
2372
2373 /*
2374 * Do not allow deletion if the parent dir is the same
2375 * as the dir to be deleted. That means the ioctl
2376 * must be called on the dentry referencing the root
2377 * of the subvol, not a random directory contained
2378 * within it.
2379 */
2380 err = -EINVAL;
2381 if (root == dest)
2382 goto out_dput;
2383
2384 err = inode_permission(inode, MAY_WRITE | MAY_EXEC);
2385 if (err)
2386 goto out_dput;
Sage Weil4260f7c2010-10-29 15:46:43 -04002387 }
2388
Miao Xie5c39da52012-10-22 11:39:53 +00002389 /* check if subvolume may be deleted by a user */
2390 err = btrfs_may_delete(dir, dentry, 1);
2391 if (err)
2392 goto out_dput;
2393
Li Zefan33345d012011-04-20 10:31:50 +08002394 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
Yan, Zheng76dda932009-09-21 16:00:26 -04002395 err = -EINVAL;
2396 goto out_dput;
2397 }
2398
Yan, Zheng76dda932009-09-21 16:00:26 -04002399 mutex_lock(&inode->i_mutex);
David Sterba521e0542014-04-15 16:41:44 +02002400
2401 /*
2402 * Don't allow to delete a subvolume with send in progress. This is
2403 * inside the i_mutex so the error handling that has to drop the bit
2404 * again is not run concurrently.
2405 */
2406 spin_lock(&dest->root_item_lock);
Filipe Mananac55bfa62014-05-25 03:55:44 +01002407 root_flags = btrfs_root_flags(&dest->root_item);
2408 if (dest->send_in_progress == 0) {
2409 btrfs_set_root_flags(&dest->root_item,
David Sterba521e0542014-04-15 16:41:44 +02002410 root_flags | BTRFS_ROOT_SUBVOL_DEAD);
2411 spin_unlock(&dest->root_item_lock);
2412 } else {
2413 spin_unlock(&dest->root_item_lock);
2414 btrfs_warn(root->fs_info,
2415 "Attempt to delete subvolume %llu during send",
Filipe Mananac55bfa62014-05-25 03:55:44 +01002416 dest->root_key.objectid);
David Sterba521e0542014-04-15 16:41:44 +02002417 err = -EPERM;
2418 goto out_dput;
2419 }
2420
Yan, Zheng76dda932009-09-21 16:00:26 -04002421 err = d_invalidate(dentry);
2422 if (err)
2423 goto out_unlock;
2424
2425 down_write(&root->fs_info->subvol_sem);
2426
2427 err = may_destroy_subvol(dest);
2428 if (err)
2429 goto out_up_write;
2430
Miao Xiec58aaad2013-02-28 10:05:36 +00002431 btrfs_init_block_rsv(&block_rsv, BTRFS_BLOCK_RSV_TEMP);
2432 /*
2433 * One for dir inode, two for dir entries, two for root
2434 * ref/backref.
2435 */
2436 err = btrfs_subvolume_reserve_metadata(root, &block_rsv,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04002437 5, &qgroup_reserved, true);
Miao Xiec58aaad2013-02-28 10:05:36 +00002438 if (err)
2439 goto out_up_write;
2440
Yan, Zhenga22285a2010-05-16 10:48:46 -04002441 trans = btrfs_start_transaction(root, 0);
2442 if (IS_ERR(trans)) {
2443 err = PTR_ERR(trans);
Miao Xiec58aaad2013-02-28 10:05:36 +00002444 goto out_release;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002445 }
Miao Xiec58aaad2013-02-28 10:05:36 +00002446 trans->block_rsv = &block_rsv;
2447 trans->bytes_reserved = block_rsv.size;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002448
Yan, Zheng76dda932009-09-21 16:00:26 -04002449 ret = btrfs_unlink_subvol(trans, root, dir,
2450 dest->root_key.objectid,
2451 dentry->d_name.name,
2452 dentry->d_name.len);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002453 if (ret) {
2454 err = ret;
2455 btrfs_abort_transaction(trans, root, ret);
2456 goto out_end_trans;
2457 }
Yan, Zheng76dda932009-09-21 16:00:26 -04002458
2459 btrfs_record_root_in_trans(trans, dest);
2460
2461 memset(&dest->root_item.drop_progress, 0,
2462 sizeof(dest->root_item.drop_progress));
2463 dest->root_item.drop_level = 0;
2464 btrfs_set_root_refs(&dest->root_item, 0);
2465
Miao Xie27cdeb72014-04-02 19:51:05 +08002466 if (!test_and_set_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &dest->state)) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04002467 ret = btrfs_insert_orphan_item(trans,
2468 root->fs_info->tree_root,
2469 dest->root_key.objectid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002470 if (ret) {
2471 btrfs_abort_transaction(trans, root, ret);
2472 err = ret;
2473 goto out_end_trans;
2474 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04002475 }
Stefan Behrensdd5f9612013-08-15 17:11:20 +02002476
2477 ret = btrfs_uuid_tree_rem(trans, root->fs_info->uuid_root,
2478 dest->root_item.uuid, BTRFS_UUID_KEY_SUBVOL,
2479 dest->root_key.objectid);
2480 if (ret && ret != -ENOENT) {
2481 btrfs_abort_transaction(trans, root, ret);
2482 err = ret;
2483 goto out_end_trans;
2484 }
2485 if (!btrfs_is_empty_uuid(dest->root_item.received_uuid)) {
2486 ret = btrfs_uuid_tree_rem(trans, root->fs_info->uuid_root,
2487 dest->root_item.received_uuid,
2488 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
2489 dest->root_key.objectid);
2490 if (ret && ret != -ENOENT) {
2491 btrfs_abort_transaction(trans, root, ret);
2492 err = ret;
2493 goto out_end_trans;
2494 }
2495 }
2496
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002497out_end_trans:
Miao Xiec58aaad2013-02-28 10:05:36 +00002498 trans->block_rsv = NULL;
2499 trans->bytes_reserved = 0;
Sage Weil531cb132010-10-29 15:41:32 -04002500 ret = btrfs_end_transaction(trans, root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002501 if (ret && !err)
2502 err = ret;
Yan, Zheng76dda932009-09-21 16:00:26 -04002503 inode->i_flags |= S_DEAD;
Miao Xiec58aaad2013-02-28 10:05:36 +00002504out_release:
2505 btrfs_subvolume_release_metadata(root, &block_rsv, qgroup_reserved);
Yan, Zheng76dda932009-09-21 16:00:26 -04002506out_up_write:
2507 up_write(&root->fs_info->subvol_sem);
2508out_unlock:
David Sterba521e0542014-04-15 16:41:44 +02002509 if (err) {
2510 spin_lock(&dest->root_item_lock);
Filipe Mananac55bfa62014-05-25 03:55:44 +01002511 root_flags = btrfs_root_flags(&dest->root_item);
2512 btrfs_set_root_flags(&dest->root_item,
David Sterba521e0542014-04-15 16:41:44 +02002513 root_flags & ~BTRFS_ROOT_SUBVOL_DEAD);
2514 spin_unlock(&dest->root_item_lock);
2515 }
Yan, Zheng76dda932009-09-21 16:00:26 -04002516 mutex_unlock(&inode->i_mutex);
2517 if (!err) {
Yan, Zhengefefb142009-10-09 09:25:16 -04002518 shrink_dcache_sb(root->fs_info->sb);
Yan, Zheng76dda932009-09-21 16:00:26 -04002519 btrfs_invalidate_inodes(dest);
2520 d_delete(dentry);
David Sterba61155aa2014-04-15 16:42:03 +02002521 ASSERT(dest->send_in_progress == 0);
Liu Bofa6ac872013-02-20 14:10:23 +00002522
2523 /* the last ref */
2524 if (dest->cache_inode) {
2525 iput(dest->cache_inode);
2526 dest->cache_inode = NULL;
2527 }
Yan, Zheng76dda932009-09-21 16:00:26 -04002528 }
2529out_dput:
2530 dput(dentry);
2531out_unlock_dir:
2532 mutex_unlock(&dir->i_mutex);
David Sterbae43f9982013-12-06 17:51:32 +01002533out_drop_write:
Al Viro2a79f172011-12-09 08:06:57 -05002534 mnt_drop_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04002535out:
2536 kfree(vol_args);
2537 return err;
2538}
2539
Chris Mason1e701a32010-03-11 09:42:04 -05002540static int btrfs_ioctl_defrag(struct file *file, void __user *argp)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002541{
Al Viro496ad9a2013-01-23 17:07:38 -05002542 struct inode *inode = file_inode(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002543 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason1e701a32010-03-11 09:42:04 -05002544 struct btrfs_ioctl_defrag_range_args *range;
Yan Zhengc146afa2008-11-12 14:34:12 -05002545 int ret;
2546
Ilya Dryomov25122d12013-01-20 15:57:57 +02002547 ret = mnt_want_write_file(file);
2548 if (ret)
2549 return ret;
Li Zefanb83cc962010-12-20 16:04:08 +08002550
Ilya Dryomov25122d12013-01-20 15:57:57 +02002551 if (btrfs_root_readonly(root)) {
2552 ret = -EROFS;
2553 goto out;
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002554 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002555
2556 switch (inode->i_mode & S_IFMT) {
2557 case S_IFDIR:
Chris Masone441d542009-01-05 16:57:23 -05002558 if (!capable(CAP_SYS_ADMIN)) {
2559 ret = -EPERM;
2560 goto out;
2561 }
Eric Sandeende78b512013-01-31 18:21:12 +00002562 ret = btrfs_defrag_root(root);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04002563 if (ret)
2564 goto out;
Eric Sandeende78b512013-01-31 18:21:12 +00002565 ret = btrfs_defrag_root(root->fs_info->extent_root);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002566 break;
2567 case S_IFREG:
Chris Masone441d542009-01-05 16:57:23 -05002568 if (!(file->f_mode & FMODE_WRITE)) {
2569 ret = -EINVAL;
2570 goto out;
2571 }
Chris Mason1e701a32010-03-11 09:42:04 -05002572
2573 range = kzalloc(sizeof(*range), GFP_KERNEL);
2574 if (!range) {
2575 ret = -ENOMEM;
2576 goto out;
2577 }
2578
2579 if (argp) {
2580 if (copy_from_user(range, argp,
2581 sizeof(*range))) {
2582 ret = -EFAULT;
2583 kfree(range);
Dan Carpenter683be162010-03-20 11:24:48 +00002584 goto out;
Chris Mason1e701a32010-03-11 09:42:04 -05002585 }
2586 /* compression requires us to start the IO */
2587 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
2588 range->flags |= BTRFS_DEFRAG_RANGE_START_IO;
2589 range->extent_thresh = (u32)-1;
2590 }
2591 } else {
2592 /* the rest are all set to zero by kzalloc */
2593 range->len = (u64)-1;
2594 }
Al Viro496ad9a2013-01-23 17:07:38 -05002595 ret = btrfs_defrag_file(file_inode(file), file,
Chris Mason4cb53002011-05-24 15:35:30 -04002596 range, 0, 0);
2597 if (ret > 0)
2598 ret = 0;
Chris Mason1e701a32010-03-11 09:42:04 -05002599 kfree(range);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002600 break;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04002601 default:
2602 ret = -EINVAL;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002603 }
Chris Masone441d542009-01-05 16:57:23 -05002604out:
Ilya Dryomov25122d12013-01-20 15:57:57 +02002605 mnt_drop_write_file(file);
Chris Masone441d542009-01-05 16:57:23 -05002606 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002607}
2608
Christoph Hellwigb2950862008-12-02 09:54:17 -05002609static long btrfs_ioctl_add_dev(struct btrfs_root *root, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002610{
2611 struct btrfs_ioctl_vol_args *vol_args;
2612 int ret;
2613
Chris Masone441d542009-01-05 16:57:23 -05002614 if (!capable(CAP_SYS_ADMIN))
2615 return -EPERM;
2616
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002617 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
2618 1)) {
Anand Jaine57138b2013-08-21 11:44:48 +08002619 return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002620 }
2621
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002622 mutex_lock(&root->fs_info->volume_mutex);
Li Zefandae7b662009-04-08 15:06:54 +08002623 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002624 if (IS_ERR(vol_args)) {
2625 ret = PTR_ERR(vol_args);
2626 goto out;
2627 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002628
Mark Fasheh5516e592008-07-24 12:20:14 -04002629 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002630 ret = btrfs_init_new_device(root, vol_args->name);
2631
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002632 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002633out:
2634 mutex_unlock(&root->fs_info->volume_mutex);
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002635 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002636 return ret;
2637}
2638
Miao Xieda249272012-11-26 08:44:50 +00002639static long btrfs_ioctl_rm_dev(struct file *file, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002640{
Al Viro496ad9a2013-01-23 17:07:38 -05002641 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002642 struct btrfs_ioctl_vol_args *vol_args;
2643 int ret;
2644
Chris Masone441d542009-01-05 16:57:23 -05002645 if (!capable(CAP_SYS_ADMIN))
2646 return -EPERM;
2647
Miao Xieda249272012-11-26 08:44:50 +00002648 ret = mnt_want_write_file(file);
2649 if (ret)
2650 return ret;
Yan Zhengc146afa2008-11-12 14:34:12 -05002651
Li Zefandae7b662009-04-08 15:06:54 +08002652 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002653 if (IS_ERR(vol_args)) {
2654 ret = PTR_ERR(vol_args);
2655 goto out;
2656 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002657
Mark Fasheh5516e592008-07-24 12:20:14 -04002658 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002659
Anand Jain183860f2013-05-17 10:52:45 +00002660 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
2661 1)) {
2662 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
2663 goto out;
2664 }
2665
2666 mutex_lock(&root->fs_info->volume_mutex);
2667 ret = btrfs_rm_device(root, vol_args->name);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002668 mutex_unlock(&root->fs_info->volume_mutex);
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002669 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
Anand Jain183860f2013-05-17 10:52:45 +00002670
2671out:
2672 kfree(vol_args);
Ilya Dryomov4ac20c72013-01-20 15:57:57 +02002673 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002674 return ret;
2675}
2676
Jan Schmidt475f6382011-03-11 15:41:01 +01002677static long btrfs_ioctl_fs_info(struct btrfs_root *root, void __user *arg)
2678{
Li Zefan027ed2f2011-06-08 08:27:56 +00002679 struct btrfs_ioctl_fs_info_args *fi_args;
Jan Schmidt475f6382011-03-11 15:41:01 +01002680 struct btrfs_device *device;
2681 struct btrfs_device *next;
2682 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
Li Zefan027ed2f2011-06-08 08:27:56 +00002683 int ret = 0;
Jan Schmidt475f6382011-03-11 15:41:01 +01002684
Li Zefan027ed2f2011-06-08 08:27:56 +00002685 fi_args = kzalloc(sizeof(*fi_args), GFP_KERNEL);
2686 if (!fi_args)
2687 return -ENOMEM;
2688
Filipe David Borba Mananaf7171752013-08-12 20:56:58 +01002689 mutex_lock(&fs_devices->device_list_mutex);
Li Zefan027ed2f2011-06-08 08:27:56 +00002690 fi_args->num_devices = fs_devices->num_devices;
2691 memcpy(&fi_args->fsid, root->fs_info->fsid, sizeof(fi_args->fsid));
Jan Schmidt475f6382011-03-11 15:41:01 +01002692
Jan Schmidt475f6382011-03-11 15:41:01 +01002693 list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) {
Li Zefan027ed2f2011-06-08 08:27:56 +00002694 if (device->devid > fi_args->max_id)
2695 fi_args->max_id = device->devid;
Jan Schmidt475f6382011-03-11 15:41:01 +01002696 }
2697 mutex_unlock(&fs_devices->device_list_mutex);
2698
David Sterba80a773f2014-05-07 18:17:06 +02002699 fi_args->nodesize = root->fs_info->super_copy->nodesize;
2700 fi_args->sectorsize = root->fs_info->super_copy->sectorsize;
2701 fi_args->clone_alignment = root->fs_info->super_copy->sectorsize;
2702
Li Zefan027ed2f2011-06-08 08:27:56 +00002703 if (copy_to_user(arg, fi_args, sizeof(*fi_args)))
2704 ret = -EFAULT;
Jan Schmidt475f6382011-03-11 15:41:01 +01002705
Li Zefan027ed2f2011-06-08 08:27:56 +00002706 kfree(fi_args);
2707 return ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01002708}
2709
2710static long btrfs_ioctl_dev_info(struct btrfs_root *root, void __user *arg)
2711{
2712 struct btrfs_ioctl_dev_info_args *di_args;
2713 struct btrfs_device *dev;
2714 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
2715 int ret = 0;
2716 char *s_uuid = NULL;
Jan Schmidt475f6382011-03-11 15:41:01 +01002717
Jan Schmidt475f6382011-03-11 15:41:01 +01002718 di_args = memdup_user(arg, sizeof(*di_args));
2719 if (IS_ERR(di_args))
2720 return PTR_ERR(di_args);
2721
Stefan Behrensdd5f9612013-08-15 17:11:20 +02002722 if (!btrfs_is_empty_uuid(di_args->uuid))
Jan Schmidt475f6382011-03-11 15:41:01 +01002723 s_uuid = di_args->uuid;
2724
2725 mutex_lock(&fs_devices->device_list_mutex);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01002726 dev = btrfs_find_device(root->fs_info, di_args->devid, s_uuid, NULL);
Jan Schmidt475f6382011-03-11 15:41:01 +01002727
2728 if (!dev) {
2729 ret = -ENODEV;
2730 goto out;
2731 }
2732
2733 di_args->devid = dev->devid;
2734 di_args->bytes_used = dev->bytes_used;
2735 di_args->total_bytes = dev->total_bytes;
2736 memcpy(di_args->uuid, dev->uuid, sizeof(di_args->uuid));
Jim Meyeringa27202f2012-04-26 18:36:56 +02002737 if (dev->name) {
Josef Bacik606686e2012-06-04 14:03:51 -04002738 struct rcu_string *name;
2739
2740 rcu_read_lock();
2741 name = rcu_dereference(dev->name);
2742 strncpy(di_args->path, name->str, sizeof(di_args->path));
2743 rcu_read_unlock();
Jim Meyeringa27202f2012-04-26 18:36:56 +02002744 di_args->path[sizeof(di_args->path) - 1] = 0;
2745 } else {
Stefan Behrens99ba55a2012-03-19 16:17:22 +01002746 di_args->path[0] = '\0';
Jim Meyeringa27202f2012-04-26 18:36:56 +02002747 }
Jan Schmidt475f6382011-03-11 15:41:01 +01002748
2749out:
David Sterba55793c02013-04-26 15:20:23 +00002750 mutex_unlock(&fs_devices->device_list_mutex);
Jan Schmidt475f6382011-03-11 15:41:01 +01002751 if (ret == 0 && copy_to_user(arg, di_args, sizeof(*di_args)))
2752 ret = -EFAULT;
2753
2754 kfree(di_args);
2755 return ret;
2756}
2757
Mark Fasheh416161d2013-08-06 11:42:51 -07002758static struct page *extent_same_get_page(struct inode *inode, u64 off)
2759{
2760 struct page *page;
2761 pgoff_t index;
2762 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2763
2764 index = off >> PAGE_CACHE_SHIFT;
2765
2766 page = grab_cache_page(inode->i_mapping, index);
2767 if (!page)
2768 return NULL;
2769
2770 if (!PageUptodate(page)) {
2771 if (extent_read_full_page_nolock(tree, page, btrfs_get_extent,
2772 0))
2773 return NULL;
2774 lock_page(page);
2775 if (!PageUptodate(page)) {
2776 unlock_page(page);
2777 page_cache_release(page);
2778 return NULL;
2779 }
2780 }
2781 unlock_page(page);
2782
2783 return page;
2784}
2785
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002786static inline void lock_extent_range(struct inode *inode, u64 off, u64 len)
2787{
2788 /* do any pending delalloc/csum calc on src, one way or
2789 another, and lock file content */
2790 while (1) {
2791 struct btrfs_ordered_extent *ordered;
2792 lock_extent(&BTRFS_I(inode)->io_tree, off, off + len - 1);
2793 ordered = btrfs_lookup_first_ordered_extent(inode,
2794 off + len - 1);
Filipe Mananaff5df9b2014-05-30 17:56:24 +01002795 if ((!ordered ||
2796 ordered->file_offset + ordered->len <= off ||
2797 ordered->file_offset >= off + len) &&
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002798 !test_range_bit(&BTRFS_I(inode)->io_tree, off,
Filipe Mananaff5df9b2014-05-30 17:56:24 +01002799 off + len - 1, EXTENT_DELALLOC, 0, NULL)) {
2800 if (ordered)
2801 btrfs_put_ordered_extent(ordered);
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002802 break;
Filipe Mananaff5df9b2014-05-30 17:56:24 +01002803 }
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002804 unlock_extent(&BTRFS_I(inode)->io_tree, off, off + len - 1);
2805 if (ordered)
2806 btrfs_put_ordered_extent(ordered);
2807 btrfs_wait_ordered_range(inode, off, len);
2808 }
2809}
2810
Mark Fasheh416161d2013-08-06 11:42:51 -07002811static void btrfs_double_unlock(struct inode *inode1, u64 loff1,
2812 struct inode *inode2, u64 loff2, u64 len)
2813{
2814 unlock_extent(&BTRFS_I(inode1)->io_tree, loff1, loff1 + len - 1);
2815 unlock_extent(&BTRFS_I(inode2)->io_tree, loff2, loff2 + len - 1);
2816
2817 mutex_unlock(&inode1->i_mutex);
2818 mutex_unlock(&inode2->i_mutex);
2819}
2820
2821static void btrfs_double_lock(struct inode *inode1, u64 loff1,
2822 struct inode *inode2, u64 loff2, u64 len)
2823{
2824 if (inode1 < inode2) {
2825 swap(inode1, inode2);
2826 swap(loff1, loff2);
2827 }
2828
2829 mutex_lock_nested(&inode1->i_mutex, I_MUTEX_PARENT);
2830 lock_extent_range(inode1, loff1, len);
2831 if (inode1 != inode2) {
2832 mutex_lock_nested(&inode2->i_mutex, I_MUTEX_CHILD);
2833 lock_extent_range(inode2, loff2, len);
2834 }
2835}
2836
2837static int btrfs_cmp_data(struct inode *src, u64 loff, struct inode *dst,
2838 u64 dst_loff, u64 len)
2839{
2840 int ret = 0;
2841 struct page *src_page, *dst_page;
2842 unsigned int cmp_len = PAGE_CACHE_SIZE;
2843 void *addr, *dst_addr;
2844
2845 while (len) {
2846 if (len < PAGE_CACHE_SIZE)
2847 cmp_len = len;
2848
2849 src_page = extent_same_get_page(src, loff);
2850 if (!src_page)
2851 return -EINVAL;
2852 dst_page = extent_same_get_page(dst, dst_loff);
2853 if (!dst_page) {
2854 page_cache_release(src_page);
2855 return -EINVAL;
2856 }
2857 addr = kmap_atomic(src_page);
2858 dst_addr = kmap_atomic(dst_page);
2859
2860 flush_dcache_page(src_page);
2861 flush_dcache_page(dst_page);
2862
2863 if (memcmp(addr, dst_addr, cmp_len))
2864 ret = BTRFS_SAME_DATA_DIFFERS;
2865
2866 kunmap_atomic(addr);
2867 kunmap_atomic(dst_addr);
2868 page_cache_release(src_page);
2869 page_cache_release(dst_page);
2870
2871 if (ret)
2872 break;
2873
2874 loff += cmp_len;
2875 dst_loff += cmp_len;
2876 len -= cmp_len;
2877 }
2878
2879 return ret;
2880}
2881
2882static int extent_same_check_offsets(struct inode *inode, u64 off, u64 len)
2883{
2884 u64 bs = BTRFS_I(inode)->root->fs_info->sb->s_blocksize;
2885
2886 if (off + len > inode->i_size || off + len < off)
2887 return -EINVAL;
2888 /* Check that we are block aligned - btrfs_clone() requires this */
2889 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs))
2890 return -EINVAL;
2891
2892 return 0;
2893}
2894
2895static int btrfs_extent_same(struct inode *src, u64 loff, u64 len,
2896 struct inode *dst, u64 dst_loff)
2897{
2898 int ret;
2899
2900 /*
2901 * btrfs_clone() can't handle extents in the same file
2902 * yet. Once that works, we can drop this check and replace it
2903 * with a check for the same inode, but overlapping extents.
2904 */
2905 if (src == dst)
2906 return -EINVAL;
2907
2908 btrfs_double_lock(src, loff, dst, dst_loff, len);
2909
2910 ret = extent_same_check_offsets(src, loff, len);
2911 if (ret)
2912 goto out_unlock;
2913
2914 ret = extent_same_check_offsets(dst, dst_loff, len);
2915 if (ret)
2916 goto out_unlock;
2917
2918 /* don't make the dst file partly checksummed */
2919 if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
2920 (BTRFS_I(dst)->flags & BTRFS_INODE_NODATASUM)) {
2921 ret = -EINVAL;
2922 goto out_unlock;
2923 }
2924
2925 ret = btrfs_cmp_data(src, loff, dst, dst_loff, len);
2926 if (ret == 0)
2927 ret = btrfs_clone(src, dst, loff, len, len, dst_loff);
2928
2929out_unlock:
2930 btrfs_double_unlock(src, loff, dst, dst_loff, len);
2931
2932 return ret;
2933}
2934
2935#define BTRFS_MAX_DEDUPE_LEN (16 * 1024 * 1024)
2936
2937static long btrfs_ioctl_file_extent_same(struct file *file,
Al Viro1c1c8742013-12-11 23:07:51 -05002938 struct btrfs_ioctl_same_args __user *argp)
Mark Fasheh416161d2013-08-06 11:42:51 -07002939{
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07002940 struct btrfs_ioctl_same_args *same;
2941 struct btrfs_ioctl_same_extent_info *info;
Al Viro1c1c8742013-12-11 23:07:51 -05002942 struct inode *src = file_inode(file);
Mark Fasheh416161d2013-08-06 11:42:51 -07002943 u64 off;
2944 u64 len;
2945 int i;
2946 int ret;
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07002947 unsigned long size;
Mark Fasheh416161d2013-08-06 11:42:51 -07002948 u64 bs = BTRFS_I(src)->root->fs_info->sb->s_blocksize;
2949 bool is_admin = capable(CAP_SYS_ADMIN);
Al Viro1c1c8742013-12-11 23:07:51 -05002950 u16 count;
Mark Fasheh416161d2013-08-06 11:42:51 -07002951
2952 if (!(file->f_mode & FMODE_READ))
2953 return -EINVAL;
2954
2955 ret = mnt_want_write_file(file);
2956 if (ret)
2957 return ret;
2958
Al Viro1c1c8742013-12-11 23:07:51 -05002959 if (get_user(count, &argp->dest_count)) {
Mark Fasheh416161d2013-08-06 11:42:51 -07002960 ret = -EFAULT;
2961 goto out;
2962 }
2963
Al Viro1c1c8742013-12-11 23:07:51 -05002964 size = offsetof(struct btrfs_ioctl_same_args __user, info[count]);
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07002965
Al Viro1c1c8742013-12-11 23:07:51 -05002966 same = memdup_user(argp, size);
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07002967
Geyslan G. Bem229eed42013-10-14 12:18:25 -03002968 if (IS_ERR(same)) {
2969 ret = PTR_ERR(same);
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07002970 goto out;
2971 }
2972
2973 off = same->logical_offset;
2974 len = same->length;
Mark Fasheh416161d2013-08-06 11:42:51 -07002975
2976 /*
2977 * Limit the total length we will dedupe for each operation.
2978 * This is intended to bound the total time spent in this
2979 * ioctl to something sane.
2980 */
2981 if (len > BTRFS_MAX_DEDUPE_LEN)
2982 len = BTRFS_MAX_DEDUPE_LEN;
2983
2984 if (WARN_ON_ONCE(bs < PAGE_CACHE_SIZE)) {
2985 /*
2986 * Btrfs does not support blocksize < page_size. As a
2987 * result, btrfs_cmp_data() won't correctly handle
2988 * this situation without an update.
2989 */
2990 ret = -EINVAL;
2991 goto out;
2992 }
2993
2994 ret = -EISDIR;
2995 if (S_ISDIR(src->i_mode))
2996 goto out;
2997
2998 ret = -EACCES;
2999 if (!S_ISREG(src->i_mode))
3000 goto out;
3001
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003002 /* pre-format output fields to sane values */
Al Viro1c1c8742013-12-11 23:07:51 -05003003 for (i = 0; i < count; i++) {
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003004 same->info[i].bytes_deduped = 0ULL;
3005 same->info[i].status = 0;
3006 }
3007
Al Viro1c1c8742013-12-11 23:07:51 -05003008 for (i = 0, info = same->info; i < count; i++, info++) {
3009 struct inode *dst;
3010 struct fd dst_file = fdget(info->fd);
3011 if (!dst_file.file) {
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003012 info->status = -EBADF;
Al Viro1c1c8742013-12-11 23:07:51 -05003013 continue;
Mark Fasheh416161d2013-08-06 11:42:51 -07003014 }
Al Viro1c1c8742013-12-11 23:07:51 -05003015 dst = file_inode(dst_file.file);
Mark Fasheh416161d2013-08-06 11:42:51 -07003016
Al Viro1c1c8742013-12-11 23:07:51 -05003017 if (!(is_admin || (dst_file.file->f_mode & FMODE_WRITE))) {
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003018 info->status = -EINVAL;
Al Viro1c1c8742013-12-11 23:07:51 -05003019 } else if (file->f_path.mnt != dst_file.file->f_path.mnt) {
3020 info->status = -EXDEV;
3021 } else if (S_ISDIR(dst->i_mode)) {
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003022 info->status = -EISDIR;
Al Viro1c1c8742013-12-11 23:07:51 -05003023 } else if (!S_ISREG(dst->i_mode)) {
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003024 info->status = -EACCES;
Al Viro1c1c8742013-12-11 23:07:51 -05003025 } else {
3026 info->status = btrfs_extent_same(src, off, len, dst,
3027 info->logical_offset);
3028 if (info->status == 0)
3029 info->bytes_deduped += len;
Mark Fasheh416161d2013-08-06 11:42:51 -07003030 }
Al Viro1c1c8742013-12-11 23:07:51 -05003031 fdput(dst_file);
Mark Fasheh416161d2013-08-06 11:42:51 -07003032 }
3033
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003034 ret = copy_to_user(argp, same, size);
3035 if (ret)
3036 ret = -EFAULT;
3037
Mark Fasheh416161d2013-08-06 11:42:51 -07003038out:
3039 mnt_drop_write_file(file);
3040 return ret;
3041}
3042
Josef Bacikfcebe452014-05-13 17:30:47 -07003043/* Helper to check and see if this root currently has a ref on the given disk
3044 * bytenr. If it does then we need to update the quota for this root. This
3045 * doesn't do anything if quotas aren't enabled.
3046 */
3047static int check_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
3048 u64 disko)
3049{
3050 struct seq_list tree_mod_seq_elem = {};
3051 struct ulist *roots;
3052 struct ulist_iterator uiter;
3053 struct ulist_node *root_node = NULL;
3054 int ret;
3055
3056 if (!root->fs_info->quota_enabled)
3057 return 1;
3058
3059 btrfs_get_tree_mod_seq(root->fs_info, &tree_mod_seq_elem);
3060 ret = btrfs_find_all_roots(trans, root->fs_info, disko,
3061 tree_mod_seq_elem.seq, &roots);
3062 if (ret < 0)
3063 goto out;
3064 ret = 0;
3065 ULIST_ITER_INIT(&uiter);
3066 while ((root_node = ulist_next(roots, &uiter))) {
3067 if (root_node->val == root->objectid) {
3068 ret = 1;
3069 break;
3070 }
3071 }
3072 ulist_free(roots);
3073out:
3074 btrfs_put_tree_mod_seq(root->fs_info, &tree_mod_seq_elem);
3075 return ret;
3076}
3077
Filipe Mananaf82a9902014-06-01 01:50:28 +01003078static int clone_finish_inode_update(struct btrfs_trans_handle *trans,
3079 struct inode *inode,
3080 u64 endoff,
3081 const u64 destoff,
3082 const u64 olen)
3083{
3084 struct btrfs_root *root = BTRFS_I(inode)->root;
3085 int ret;
3086
3087 inode_inc_iversion(inode);
3088 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
3089 /*
3090 * We round up to the block size at eof when determining which
3091 * extents to clone above, but shouldn't round up the file size.
3092 */
3093 if (endoff > destoff + olen)
3094 endoff = destoff + olen;
3095 if (endoff > inode->i_size)
3096 btrfs_i_size_write(inode, endoff);
3097
3098 ret = btrfs_update_inode(trans, root, inode);
3099 if (ret) {
3100 btrfs_abort_transaction(trans, root, ret);
3101 btrfs_end_transaction(trans, root);
3102 goto out;
3103 }
3104 ret = btrfs_end_transaction(trans, root);
3105out:
3106 return ret;
3107}
3108
Filipe Manana7ffbb592014-06-09 03:48:05 +01003109static void clone_update_extent_map(struct inode *inode,
3110 const struct btrfs_trans_handle *trans,
3111 const struct btrfs_path *path,
Filipe Manana7ffbb592014-06-09 03:48:05 +01003112 const u64 hole_offset,
3113 const u64 hole_len)
3114{
3115 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
3116 struct extent_map *em;
3117 int ret;
3118
3119 em = alloc_extent_map();
3120 if (!em) {
3121 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3122 &BTRFS_I(inode)->runtime_flags);
3123 return;
3124 }
3125
Filipe Manana14f59792014-06-29 21:45:40 +01003126 if (path) {
3127 struct btrfs_file_extent_item *fi;
3128
3129 fi = btrfs_item_ptr(path->nodes[0], path->slots[0],
3130 struct btrfs_file_extent_item);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003131 btrfs_extent_item_to_extent_map(inode, path, fi, false, em);
3132 em->generation = -1;
3133 if (btrfs_file_extent_type(path->nodes[0], fi) ==
3134 BTRFS_FILE_EXTENT_INLINE)
3135 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3136 &BTRFS_I(inode)->runtime_flags);
3137 } else {
3138 em->start = hole_offset;
3139 em->len = hole_len;
3140 em->ram_bytes = em->len;
3141 em->orig_start = hole_offset;
3142 em->block_start = EXTENT_MAP_HOLE;
3143 em->block_len = 0;
3144 em->orig_block_len = 0;
3145 em->compress_type = BTRFS_COMPRESS_NONE;
3146 em->generation = trans->transid;
3147 }
3148
3149 while (1) {
3150 write_lock(&em_tree->lock);
3151 ret = add_extent_mapping(em_tree, em, 1);
3152 write_unlock(&em_tree->lock);
3153 if (ret != -EEXIST) {
3154 free_extent_map(em);
3155 break;
3156 }
3157 btrfs_drop_extent_cache(inode, em->start,
3158 em->start + em->len - 1, 0);
3159 }
3160
3161 if (unlikely(ret))
3162 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3163 &BTRFS_I(inode)->runtime_flags);
3164}
3165
Mark Fasheh32b7c682013-08-06 11:42:49 -07003166/**
3167 * btrfs_clone() - clone a range from inode file to another
3168 *
3169 * @src: Inode to clone from
3170 * @inode: Inode to clone to
3171 * @off: Offset within source to start clone from
3172 * @olen: Original length, passed by user, of range to clone
3173 * @olen_aligned: Block-aligned value of olen, extent_same uses
3174 * identical values here
3175 * @destoff: Offset within @inode to start clone
3176 */
3177static int btrfs_clone(struct inode *src, struct inode *inode,
Filipe Mananaf82a9902014-06-01 01:50:28 +01003178 const u64 off, const u64 olen, const u64 olen_aligned,
3179 const u64 destoff)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003180{
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003181 struct btrfs_root *root = BTRFS_I(inode)->root;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003182 struct btrfs_path *path = NULL;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003183 struct extent_buffer *leaf;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003184 struct btrfs_trans_handle *trans;
3185 char *buf = NULL;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003186 struct btrfs_key key;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003187 u32 nritems;
3188 int slot;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003189 int ret;
Josef Bacikfcebe452014-05-13 17:30:47 -07003190 int no_quota;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003191 const u64 len = olen_aligned;
Josef Bacikfcebe452014-05-13 17:30:47 -07003192 u64 last_disko = 0;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003193 u64 last_dest_end = destoff;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003194
3195 ret = -ENOMEM;
3196 buf = vmalloc(btrfs_level_size(root, 0));
3197 if (!buf)
Mark Fasheh32b7c682013-08-06 11:42:49 -07003198 return ret;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003199
3200 path = btrfs_alloc_path();
3201 if (!path) {
3202 vfree(buf);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003203 return ret;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003204 }
Mark Fasheh32b7c682013-08-06 11:42:49 -07003205
Yan Zhengae01a0a2008-08-04 23:23:47 -04003206 path->reada = 2;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003207 /* clone data */
Li Zefan33345d012011-04-20 10:31:50 +08003208 key.objectid = btrfs_ino(src);
Yan Zhengae01a0a2008-08-04 23:23:47 -04003209 key.type = BTRFS_EXTENT_DATA_KEY;
Filipe Manana2c463822014-05-31 02:31:05 +01003210 key.offset = off;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003211
3212 while (1) {
3213 /*
3214 * note the key will change type as we walk through the
3215 * tree.
3216 */
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003217 path->leave_spinning = 1;
David Sterba362a20c2011-08-01 18:11:57 +02003218 ret = btrfs_search_slot(NULL, BTRFS_I(src)->root, &key, path,
3219 0, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003220 if (ret < 0)
3221 goto out;
Filipe Manana2c463822014-05-31 02:31:05 +01003222 /*
3223 * First search, if no extent item that starts at offset off was
3224 * found but the previous item is an extent item, it's possible
3225 * it might overlap our target range, therefore process it.
3226 */
3227 if (key.offset == off && ret > 0 && path->slots[0] > 0) {
3228 btrfs_item_key_to_cpu(path->nodes[0], &key,
3229 path->slots[0] - 1);
3230 if (key.type == BTRFS_EXTENT_DATA_KEY)
3231 path->slots[0]--;
3232 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003233
Yan Zhengae01a0a2008-08-04 23:23:47 -04003234 nritems = btrfs_header_nritems(path->nodes[0]);
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003235process_slot:
Josef Bacikfcebe452014-05-13 17:30:47 -07003236 no_quota = 1;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003237 if (path->slots[0] >= nritems) {
David Sterba362a20c2011-08-01 18:11:57 +02003238 ret = btrfs_next_leaf(BTRFS_I(src)->root, path);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003239 if (ret < 0)
3240 goto out;
3241 if (ret > 0)
3242 break;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003243 nritems = btrfs_header_nritems(path->nodes[0]);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003244 }
3245 leaf = path->nodes[0];
3246 slot = path->slots[0];
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003247
Yan Zhengae01a0a2008-08-04 23:23:47 -04003248 btrfs_item_key_to_cpu(leaf, &key, slot);
Chris Masond20f7042008-12-08 16:58:54 -05003249 if (btrfs_key_type(&key) > BTRFS_EXTENT_DATA_KEY ||
Li Zefan33345d012011-04-20 10:31:50 +08003250 key.objectid != btrfs_ino(src))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003251 break;
3252
Sage Weilc5c9cd42008-11-12 14:32:25 -05003253 if (btrfs_key_type(&key) == BTRFS_EXTENT_DATA_KEY) {
3254 struct btrfs_file_extent_item *extent;
3255 int type;
Zheng Yan31840ae2008-09-23 13:14:14 -04003256 u32 size;
3257 struct btrfs_key new_key;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003258 u64 disko = 0, diskl = 0;
3259 u64 datao = 0, datal = 0;
3260 u8 comp;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003261 u64 drop_start;
Zheng Yan31840ae2008-09-23 13:14:14 -04003262
Sage Weilc5c9cd42008-11-12 14:32:25 -05003263 extent = btrfs_item_ptr(leaf, slot,
3264 struct btrfs_file_extent_item);
3265 comp = btrfs_file_extent_compression(leaf, extent);
3266 type = btrfs_file_extent_type(leaf, extent);
Chris Masonc8a894d2009-06-27 21:07:03 -04003267 if (type == BTRFS_FILE_EXTENT_REG ||
3268 type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masond3977122009-01-05 21:25:51 -05003269 disko = btrfs_file_extent_disk_bytenr(leaf,
3270 extent);
3271 diskl = btrfs_file_extent_disk_num_bytes(leaf,
3272 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003273 datao = btrfs_file_extent_offset(leaf, extent);
Chris Masond3977122009-01-05 21:25:51 -05003274 datal = btrfs_file_extent_num_bytes(leaf,
3275 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003276 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
3277 /* take upper bound, may be compressed */
3278 datal = btrfs_file_extent_ram_bytes(leaf,
3279 extent);
3280 }
Zheng Yan31840ae2008-09-23 13:14:14 -04003281
Filipe Manana2c463822014-05-31 02:31:05 +01003282 /*
3283 * The first search might have left us at an extent
3284 * item that ends before our target range's start, can
3285 * happen if we have holes and NO_HOLES feature enabled.
3286 */
3287 if (key.offset + datal <= off) {
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003288 path->slots[0]++;
3289 goto process_slot;
Filipe Manana2c463822014-05-31 02:31:05 +01003290 } else if (key.offset >= off + len) {
3291 break;
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003292 }
3293
3294 size = btrfs_item_size_nr(leaf, slot);
3295 read_extent_buffer(leaf, buf,
3296 btrfs_item_ptr_offset(leaf, slot),
3297 size);
3298
3299 btrfs_release_path(path);
3300 path->leave_spinning = 0;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003301
Zheng Yan31840ae2008-09-23 13:14:14 -04003302 memcpy(&new_key, &key, sizeof(new_key));
Li Zefan33345d012011-04-20 10:31:50 +08003303 new_key.objectid = btrfs_ino(inode);
Li Zefan4d728ec2011-01-26 14:10:43 +08003304 if (off <= key.offset)
3305 new_key.offset = key.offset + destoff - off;
3306 else
3307 new_key.offset = destoff;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003308
Sage Weilb6f34092011-09-20 14:48:51 -04003309 /*
Filipe Mananaf82a9902014-06-01 01:50:28 +01003310 * Deal with a hole that doesn't have an extent item
3311 * that represents it (NO_HOLES feature enabled).
3312 * This hole is either in the middle of the cloning
3313 * range or at the beginning (fully overlaps it or
3314 * partially overlaps it).
3315 */
3316 if (new_key.offset != last_dest_end)
3317 drop_start = last_dest_end;
3318 else
3319 drop_start = new_key.offset;
3320
3321 /*
Sage Weilb6f34092011-09-20 14:48:51 -04003322 * 1 - adjusting old extent (we may have to split it)
3323 * 1 - add new extent
3324 * 1 - inode update
3325 */
3326 trans = btrfs_start_transaction(root, 3);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003327 if (IS_ERR(trans)) {
3328 ret = PTR_ERR(trans);
3329 goto out;
3330 }
3331
Chris Masonc8a894d2009-06-27 21:07:03 -04003332 if (type == BTRFS_FILE_EXTENT_REG ||
3333 type == BTRFS_FILE_EXTENT_PREALLOC) {
Li Zefand72c0842011-09-11 10:52:25 -04003334 /*
3335 * a | --- range to clone ---| b
3336 * | ------------- extent ------------- |
3337 */
3338
Antonio Ospite93915582014-06-04 14:03:48 +02003339 /* subtract range b */
Li Zefand72c0842011-09-11 10:52:25 -04003340 if (key.offset + datal > off + len)
3341 datal = off + len - key.offset;
3342
Antonio Ospite93915582014-06-04 14:03:48 +02003343 /* subtract range a */
Yan, Zhenga22285a2010-05-16 10:48:46 -04003344 if (off > key.offset) {
3345 datao += off - key.offset;
3346 datal -= off - key.offset;
3347 }
3348
Josef Bacik5dc562c2012-08-17 13:14:17 -04003349 ret = btrfs_drop_extents(trans, root, inode,
Filipe Mananaf82a9902014-06-01 01:50:28 +01003350 drop_start,
Yan, Zhenga22285a2010-05-16 10:48:46 -04003351 new_key.offset + datal,
Josef Bacik26714852012-08-29 12:24:27 -04003352 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003353 if (ret) {
David Sterba3f9e3df2014-04-15 18:50:17 +02003354 if (ret != -EOPNOTSUPP)
Liu Bo00fdf132014-03-10 18:56:07 +08003355 btrfs_abort_transaction(trans,
3356 root, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003357 btrfs_end_transaction(trans, root);
3358 goto out;
3359 }
Yan, Zhenga22285a2010-05-16 10:48:46 -04003360
Sage Weilc5c9cd42008-11-12 14:32:25 -05003361 ret = btrfs_insert_empty_item(trans, root, path,
3362 &new_key, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003363 if (ret) {
3364 btrfs_abort_transaction(trans, root,
3365 ret);
3366 btrfs_end_transaction(trans, root);
3367 goto out;
3368 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05003369
3370 leaf = path->nodes[0];
3371 slot = path->slots[0];
3372 write_extent_buffer(leaf, buf,
3373 btrfs_item_ptr_offset(leaf, slot),
3374 size);
3375
3376 extent = btrfs_item_ptr(leaf, slot,
3377 struct btrfs_file_extent_item);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003378
Sage Weilc5c9cd42008-11-12 14:32:25 -05003379 /* disko == 0 means it's a hole */
3380 if (!disko)
3381 datao = 0;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003382
3383 btrfs_set_file_extent_offset(leaf, extent,
3384 datao);
3385 btrfs_set_file_extent_num_bytes(leaf, extent,
3386 datal);
Josef Bacikfcebe452014-05-13 17:30:47 -07003387
3388 /*
3389 * We need to look up the roots that point at
3390 * this bytenr and see if the new root does. If
3391 * it does not we need to make sure we update
3392 * quotas appropriately.
3393 */
3394 if (disko && root != BTRFS_I(src)->root &&
3395 disko != last_disko) {
3396 no_quota = check_ref(trans, root,
3397 disko);
3398 if (no_quota < 0) {
3399 btrfs_abort_transaction(trans,
3400 root,
3401 ret);
3402 btrfs_end_transaction(trans,
3403 root);
3404 ret = no_quota;
3405 goto out;
3406 }
3407 }
3408
Sage Weilc5c9cd42008-11-12 14:32:25 -05003409 if (disko) {
3410 inode_add_bytes(inode, datal);
3411 ret = btrfs_inc_extent_ref(trans, root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003412 disko, diskl, 0,
3413 root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08003414 btrfs_ino(inode),
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003415 new_key.offset - datao,
Josef Bacikfcebe452014-05-13 17:30:47 -07003416 no_quota);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003417 if (ret) {
3418 btrfs_abort_transaction(trans,
3419 root,
3420 ret);
3421 btrfs_end_transaction(trans,
3422 root);
3423 goto out;
3424
3425 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05003426 }
3427 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
3428 u64 skip = 0;
3429 u64 trim = 0;
Liu Bod3ecfcd2014-05-09 10:01:02 +08003430 u64 aligned_end = 0;
3431
Sage Weilc5c9cd42008-11-12 14:32:25 -05003432 if (off > key.offset) {
3433 skip = off - key.offset;
3434 new_key.offset += skip;
3435 }
Chris Masond3977122009-01-05 21:25:51 -05003436
Liu Boaa42ffd2012-09-18 03:52:23 -06003437 if (key.offset + datal > off + len)
3438 trim = key.offset + datal - (off + len);
Chris Masond3977122009-01-05 21:25:51 -05003439
Sage Weilc5c9cd42008-11-12 14:32:25 -05003440 if (comp && (skip || trim)) {
Sage Weilc5c9cd42008-11-12 14:32:25 -05003441 ret = -EINVAL;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003442 btrfs_end_transaction(trans, root);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003443 goto out;
3444 }
3445 size -= skip + trim;
3446 datal -= skip + trim;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003447
Liu Bod3ecfcd2014-05-09 10:01:02 +08003448 aligned_end = ALIGN(new_key.offset + datal,
3449 root->sectorsize);
Josef Bacik5dc562c2012-08-17 13:14:17 -04003450 ret = btrfs_drop_extents(trans, root, inode,
Filipe Mananaf82a9902014-06-01 01:50:28 +01003451 drop_start,
Liu Bod3ecfcd2014-05-09 10:01:02 +08003452 aligned_end,
Josef Bacik26714852012-08-29 12:24:27 -04003453 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003454 if (ret) {
David Sterba3f9e3df2014-04-15 18:50:17 +02003455 if (ret != -EOPNOTSUPP)
Chris Mason3a29bc02014-04-07 07:10:40 -07003456 btrfs_abort_transaction(trans,
3457 root, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003458 btrfs_end_transaction(trans, root);
3459 goto out;
3460 }
Yan, Zhenga22285a2010-05-16 10:48:46 -04003461
Sage Weilc5c9cd42008-11-12 14:32:25 -05003462 ret = btrfs_insert_empty_item(trans, root, path,
3463 &new_key, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003464 if (ret) {
3465 btrfs_abort_transaction(trans, root,
3466 ret);
3467 btrfs_end_transaction(trans, root);
3468 goto out;
3469 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05003470
3471 if (skip) {
Chris Masond3977122009-01-05 21:25:51 -05003472 u32 start =
3473 btrfs_file_extent_calc_inline_size(0);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003474 memmove(buf+start, buf+start+skip,
3475 datal);
3476 }
3477
3478 leaf = path->nodes[0];
3479 slot = path->slots[0];
3480 write_extent_buffer(leaf, buf,
3481 btrfs_item_ptr_offset(leaf, slot),
3482 size);
3483 inode_add_bytes(inode, datal);
3484 }
3485
Filipe Manana7ffbb592014-06-09 03:48:05 +01003486 /* If we have an implicit hole (NO_HOLES feature). */
3487 if (drop_start < new_key.offset)
3488 clone_update_extent_map(inode, trans,
Filipe Manana14f59792014-06-29 21:45:40 +01003489 NULL, drop_start,
Filipe Manana7ffbb592014-06-09 03:48:05 +01003490 new_key.offset - drop_start);
3491
Filipe Manana14f59792014-06-29 21:45:40 +01003492 clone_update_extent_map(inode, trans, path, 0, 0);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003493
Sage Weilc5c9cd42008-11-12 14:32:25 -05003494 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02003495 btrfs_release_path(path);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003496
Filipe Manana62e23902014-08-08 02:47:06 +01003497 last_dest_end = ALIGN(new_key.offset + datal,
3498 root->sectorsize);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003499 ret = clone_finish_inode_update(trans, inode,
3500 last_dest_end,
3501 destoff, olen);
3502 if (ret)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003503 goto out;
Filipe Manana2c463822014-05-31 02:31:05 +01003504 if (new_key.offset + datal >= destoff + len)
3505 break;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003506 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003507 btrfs_release_path(path);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003508 key.offset++;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003509 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003510 ret = 0;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003511
Filipe Mananaf82a9902014-06-01 01:50:28 +01003512 if (last_dest_end < destoff + len) {
3513 /*
3514 * We have an implicit hole (NO_HOLES feature is enabled) that
3515 * fully or partially overlaps our cloning range at its end.
3516 */
3517 btrfs_release_path(path);
3518
3519 /*
3520 * 1 - remove extent(s)
3521 * 1 - inode update
3522 */
3523 trans = btrfs_start_transaction(root, 2);
3524 if (IS_ERR(trans)) {
3525 ret = PTR_ERR(trans);
3526 goto out;
3527 }
3528 ret = btrfs_drop_extents(trans, root, inode,
3529 last_dest_end, destoff + len, 1);
3530 if (ret) {
3531 if (ret != -EOPNOTSUPP)
3532 btrfs_abort_transaction(trans, root, ret);
3533 btrfs_end_transaction(trans, root);
3534 goto out;
3535 }
Filipe Manana14f59792014-06-29 21:45:40 +01003536 clone_update_extent_map(inode, trans, NULL, last_dest_end,
3537 destoff + len - last_dest_end);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003538 ret = clone_finish_inode_update(trans, inode, destoff + len,
3539 destoff, olen);
3540 }
3541
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003542out:
Mark Fasheh32b7c682013-08-06 11:42:49 -07003543 btrfs_free_path(path);
3544 vfree(buf);
3545 return ret;
3546}
3547
3548static noinline long btrfs_ioctl_clone(struct file *file, unsigned long srcfd,
3549 u64 off, u64 olen, u64 destoff)
3550{
Al Viro54563d42013-09-01 15:57:51 -04003551 struct inode *inode = file_inode(file);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003552 struct btrfs_root *root = BTRFS_I(inode)->root;
3553 struct fd src_file;
3554 struct inode *src;
3555 int ret;
3556 u64 len = olen;
3557 u64 bs = root->fs_info->sb->s_blocksize;
3558 int same_inode = 0;
3559
3560 /*
3561 * TODO:
3562 * - split compressed inline extents. annoying: we need to
3563 * decompress into destination's address_space (the file offset
3564 * may change, so source mapping won't do), then recompress (or
3565 * otherwise reinsert) a subrange.
Liu Bo00fdf132014-03-10 18:56:07 +08003566 *
3567 * - split destination inode's inline extents. The inline extents can
3568 * be either compressed or non-compressed.
Mark Fasheh32b7c682013-08-06 11:42:49 -07003569 */
3570
3571 /* the destination must be opened for writing */
3572 if (!(file->f_mode & FMODE_WRITE) || (file->f_flags & O_APPEND))
3573 return -EINVAL;
3574
3575 if (btrfs_root_readonly(root))
3576 return -EROFS;
3577
3578 ret = mnt_want_write_file(file);
3579 if (ret)
3580 return ret;
3581
3582 src_file = fdget(srcfd);
3583 if (!src_file.file) {
3584 ret = -EBADF;
3585 goto out_drop_write;
3586 }
3587
3588 ret = -EXDEV;
3589 if (src_file.file->f_path.mnt != file->f_path.mnt)
3590 goto out_fput;
3591
3592 src = file_inode(src_file.file);
3593
3594 ret = -EINVAL;
3595 if (src == inode)
3596 same_inode = 1;
3597
3598 /* the src must be open for reading */
3599 if (!(src_file.file->f_mode & FMODE_READ))
3600 goto out_fput;
3601
3602 /* don't make the dst file partly checksummed */
3603 if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
3604 (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM))
3605 goto out_fput;
3606
3607 ret = -EISDIR;
3608 if (S_ISDIR(src->i_mode) || S_ISDIR(inode->i_mode))
3609 goto out_fput;
3610
3611 ret = -EXDEV;
3612 if (src->i_sb != inode->i_sb)
3613 goto out_fput;
3614
3615 if (!same_inode) {
3616 if (inode < src) {
3617 mutex_lock_nested(&inode->i_mutex, I_MUTEX_PARENT);
3618 mutex_lock_nested(&src->i_mutex, I_MUTEX_CHILD);
3619 } else {
3620 mutex_lock_nested(&src->i_mutex, I_MUTEX_PARENT);
3621 mutex_lock_nested(&inode->i_mutex, I_MUTEX_CHILD);
3622 }
3623 } else {
3624 mutex_lock(&src->i_mutex);
3625 }
3626
3627 /* determine range to clone */
3628 ret = -EINVAL;
3629 if (off + len > src->i_size || off + len < off)
3630 goto out_unlock;
3631 if (len == 0)
3632 olen = len = src->i_size - off;
3633 /* if we extend to eof, continue to block boundary */
3634 if (off + len == src->i_size)
3635 len = ALIGN(src->i_size, bs) - off;
3636
3637 /* verify the end result is block aligned */
3638 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs) ||
3639 !IS_ALIGNED(destoff, bs))
3640 goto out_unlock;
3641
3642 /* verify if ranges are overlapped within the same file */
3643 if (same_inode) {
3644 if (destoff + len > off && destoff < off + len)
3645 goto out_unlock;
3646 }
3647
3648 if (destoff > inode->i_size) {
3649 ret = btrfs_cont_expand(inode, inode->i_size, destoff);
3650 if (ret)
3651 goto out_unlock;
3652 }
3653
Filipe Mananac125b8b2014-05-23 05:03:34 +01003654 /*
3655 * Lock the target range too. Right after we replace the file extent
3656 * items in the fs tree (which now point to the cloned data), we might
3657 * have a worker replace them with extent items relative to a write
3658 * operation that was issued before this clone operation (i.e. confront
3659 * with inode.c:btrfs_finish_ordered_io).
3660 */
3661 if (same_inode) {
3662 u64 lock_start = min_t(u64, off, destoff);
3663 u64 lock_len = max_t(u64, off, destoff) + len - lock_start;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003664
Filipe Mananac125b8b2014-05-23 05:03:34 +01003665 lock_extent_range(src, lock_start, lock_len);
3666 } else {
3667 lock_extent_range(src, off, len);
3668 lock_extent_range(inode, destoff, len);
3669 }
Mark Fasheh32b7c682013-08-06 11:42:49 -07003670
3671 ret = btrfs_clone(src, inode, off, olen, len, destoff);
3672
Filipe Mananac125b8b2014-05-23 05:03:34 +01003673 if (same_inode) {
3674 u64 lock_start = min_t(u64, off, destoff);
3675 u64 lock_end = max_t(u64, off, destoff) + len - 1;
3676
3677 unlock_extent(&BTRFS_I(src)->io_tree, lock_start, lock_end);
3678 } else {
3679 unlock_extent(&BTRFS_I(src)->io_tree, off, off + len - 1);
3680 unlock_extent(&BTRFS_I(inode)->io_tree, destoff,
3681 destoff + len - 1);
3682 }
3683 /*
3684 * Truncate page cache pages so that future reads will see the cloned
3685 * data immediately and not the previous data.
3686 */
3687 truncate_inode_pages_range(&inode->i_data, destoff,
3688 PAGE_CACHE_ALIGN(destoff + len) - 1);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003689out_unlock:
Filipe David Borba Mananac57c2b32014-01-11 21:31:25 +00003690 if (!same_inode) {
3691 if (inode < src) {
3692 mutex_unlock(&src->i_mutex);
3693 mutex_unlock(&inode->i_mutex);
3694 } else {
3695 mutex_unlock(&inode->i_mutex);
3696 mutex_unlock(&src->i_mutex);
3697 }
3698 } else {
3699 mutex_unlock(&src->i_mutex);
3700 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003701out_fput:
Al Viro2903ff02012-08-28 12:52:22 -04003702 fdput(src_file);
Yan Zhengab67b7c2008-12-19 10:58:39 -05003703out_drop_write:
Al Viro2a79f172011-12-09 08:06:57 -05003704 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003705 return ret;
3706}
3707
Christoph Hellwig7a865e82008-12-02 09:52:24 -05003708static long btrfs_ioctl_clone_range(struct file *file, void __user *argp)
Sage Weilc5c9cd42008-11-12 14:32:25 -05003709{
3710 struct btrfs_ioctl_clone_range_args args;
3711
Christoph Hellwig7a865e82008-12-02 09:52:24 -05003712 if (copy_from_user(&args, argp, sizeof(args)))
Sage Weilc5c9cd42008-11-12 14:32:25 -05003713 return -EFAULT;
3714 return btrfs_ioctl_clone(file, args.src_fd, args.src_offset,
3715 args.src_length, args.dest_offset);
3716}
3717
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003718/*
3719 * there are many ways the trans_start and trans_end ioctls can lead
3720 * to deadlocks. They should only be used by applications that
3721 * basically own the machine, and have a very in depth understanding
3722 * of all the possible deadlocks and enospc problems.
3723 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05003724static long btrfs_ioctl_trans_start(struct file *file)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003725{
Al Viro496ad9a2013-01-23 17:07:38 -05003726 struct inode *inode = file_inode(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003727 struct btrfs_root *root = BTRFS_I(inode)->root;
3728 struct btrfs_trans_handle *trans;
Sage Weil1ab86ae2009-09-29 18:38:44 -04003729 int ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003730
Sage Weil1ab86ae2009-09-29 18:38:44 -04003731 ret = -EPERM;
Christoph Hellwigdf5b5522008-06-11 21:53:58 -04003732 if (!capable(CAP_SYS_ADMIN))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003733 goto out;
Sage Weil1ab86ae2009-09-29 18:38:44 -04003734
3735 ret = -EINPROGRESS;
3736 if (file->private_data)
3737 goto out;
Sage Weil9ca9ee02008-08-04 10:41:27 -04003738
Li Zefanb83cc962010-12-20 16:04:08 +08003739 ret = -EROFS;
3740 if (btrfs_root_readonly(root))
3741 goto out;
3742
Al Viroa561be72011-11-23 11:57:51 -05003743 ret = mnt_want_write_file(file);
Yan Zhengc146afa2008-11-12 14:34:12 -05003744 if (ret)
3745 goto out;
3746
Josef Bacika4abeea2011-04-11 17:25:13 -04003747 atomic_inc(&root->fs_info->open_ioctl_trans);
Sage Weil9ca9ee02008-08-04 10:41:27 -04003748
Sage Weil1ab86ae2009-09-29 18:38:44 -04003749 ret = -ENOMEM;
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003750 trans = btrfs_start_ioctl_transaction(root);
Tsutomu Itohabd30bb2011-01-24 00:57:10 +00003751 if (IS_ERR(trans))
Sage Weil1ab86ae2009-09-29 18:38:44 -04003752 goto out_drop;
3753
3754 file->private_data = trans;
3755 return 0;
3756
3757out_drop:
Josef Bacika4abeea2011-04-11 17:25:13 -04003758 atomic_dec(&root->fs_info->open_ioctl_trans);
Al Viro2a79f172011-12-09 08:06:57 -05003759 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003760out:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003761 return ret;
3762}
3763
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003764static long btrfs_ioctl_default_subvol(struct file *file, void __user *argp)
3765{
Al Viro496ad9a2013-01-23 17:07:38 -05003766 struct inode *inode = file_inode(file);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003767 struct btrfs_root *root = BTRFS_I(inode)->root;
3768 struct btrfs_root *new_root;
3769 struct btrfs_dir_item *di;
3770 struct btrfs_trans_handle *trans;
3771 struct btrfs_path *path;
3772 struct btrfs_key location;
3773 struct btrfs_disk_key disk_key;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003774 u64 objectid = 0;
3775 u64 dir_id;
Miao Xie3c04ce02012-11-26 08:43:07 +00003776 int ret;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003777
3778 if (!capable(CAP_SYS_ADMIN))
3779 return -EPERM;
3780
Miao Xie3c04ce02012-11-26 08:43:07 +00003781 ret = mnt_want_write_file(file);
3782 if (ret)
3783 return ret;
3784
3785 if (copy_from_user(&objectid, argp, sizeof(objectid))) {
3786 ret = -EFAULT;
3787 goto out;
3788 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003789
3790 if (!objectid)
chandan1cecf572013-09-13 19:34:10 +05303791 objectid = BTRFS_FS_TREE_OBJECTID;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003792
3793 location.objectid = objectid;
3794 location.type = BTRFS_ROOT_ITEM_KEY;
3795 location.offset = (u64)-1;
3796
3797 new_root = btrfs_read_fs_root_no_name(root->fs_info, &location);
Miao Xie3c04ce02012-11-26 08:43:07 +00003798 if (IS_ERR(new_root)) {
3799 ret = PTR_ERR(new_root);
3800 goto out;
3801 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003802
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003803 path = btrfs_alloc_path();
Miao Xie3c04ce02012-11-26 08:43:07 +00003804 if (!path) {
3805 ret = -ENOMEM;
3806 goto out;
3807 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003808 path->leave_spinning = 1;
3809
3810 trans = btrfs_start_transaction(root, 1);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00003811 if (IS_ERR(trans)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003812 btrfs_free_path(path);
Miao Xie3c04ce02012-11-26 08:43:07 +00003813 ret = PTR_ERR(trans);
3814 goto out;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003815 }
3816
David Sterba6c417612011-04-13 15:41:04 +02003817 dir_id = btrfs_super_root_dir(root->fs_info->super_copy);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003818 di = btrfs_lookup_dir_item(trans, root->fs_info->tree_root, path,
3819 dir_id, "default", 7, 1);
Dan Carpentercf1e99a2010-05-29 09:47:24 +00003820 if (IS_ERR_OR_NULL(di)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003821 btrfs_free_path(path);
3822 btrfs_end_transaction(trans, root);
Frank Holtonefe120a2013-12-20 11:37:06 -05003823 btrfs_err(new_root->fs_info, "Umm, you don't have the default dir"
3824 "item, this isn't going to work");
Miao Xie3c04ce02012-11-26 08:43:07 +00003825 ret = -ENOENT;
3826 goto out;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003827 }
3828
3829 btrfs_cpu_key_to_disk(&disk_key, &new_root->root_key);
3830 btrfs_set_dir_item_key(path->nodes[0], di, &disk_key);
3831 btrfs_mark_buffer_dirty(path->nodes[0]);
3832 btrfs_free_path(path);
3833
Mitch Harder2b0ce2c2012-07-24 11:58:43 -06003834 btrfs_set_fs_incompat(root->fs_info, DEFAULT_SUBVOL);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003835 btrfs_end_transaction(trans, root);
Miao Xie3c04ce02012-11-26 08:43:07 +00003836out:
3837 mnt_drop_write_file(file);
3838 return ret;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003839}
3840
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02003841void btrfs_get_block_group_info(struct list_head *groups_list,
3842 struct btrfs_ioctl_space_info *space)
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003843{
3844 struct btrfs_block_group_cache *block_group;
3845
3846 space->total_bytes = 0;
3847 space->used_bytes = 0;
3848 space->flags = 0;
3849 list_for_each_entry(block_group, groups_list, list) {
3850 space->flags = block_group->flags;
3851 space->total_bytes += block_group->key.offset;
3852 space->used_bytes +=
3853 btrfs_block_group_used(&block_group->item);
3854 }
3855}
3856
Eric Sandeen48a3b632013-04-25 20:41:01 +00003857static long btrfs_ioctl_space_info(struct btrfs_root *root, void __user *arg)
Josef Bacik1406e432010-01-13 18:19:06 +00003858{
3859 struct btrfs_ioctl_space_args space_args;
3860 struct btrfs_ioctl_space_info space;
3861 struct btrfs_ioctl_space_info *dest;
Chris Mason7fde62b2010-03-16 15:40:10 -04003862 struct btrfs_ioctl_space_info *dest_orig;
Daniel J Blueman13f26962011-04-11 15:56:31 +00003863 struct btrfs_ioctl_space_info __user *user_dest;
Josef Bacik1406e432010-01-13 18:19:06 +00003864 struct btrfs_space_info *info;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003865 u64 types[] = {BTRFS_BLOCK_GROUP_DATA,
3866 BTRFS_BLOCK_GROUP_SYSTEM,
3867 BTRFS_BLOCK_GROUP_METADATA,
3868 BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA};
3869 int num_types = 4;
Chris Mason7fde62b2010-03-16 15:40:10 -04003870 int alloc_size;
Josef Bacik1406e432010-01-13 18:19:06 +00003871 int ret = 0;
Dan Rosenberg51788b12011-02-14 16:04:23 -05003872 u64 slot_count = 0;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003873 int i, c;
Josef Bacik1406e432010-01-13 18:19:06 +00003874
3875 if (copy_from_user(&space_args,
3876 (struct btrfs_ioctl_space_args __user *)arg,
3877 sizeof(space_args)))
3878 return -EFAULT;
3879
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003880 for (i = 0; i < num_types; i++) {
3881 struct btrfs_space_info *tmp;
3882
3883 info = NULL;
3884 rcu_read_lock();
3885 list_for_each_entry_rcu(tmp, &root->fs_info->space_info,
3886 list) {
3887 if (tmp->flags == types[i]) {
3888 info = tmp;
3889 break;
3890 }
3891 }
3892 rcu_read_unlock();
3893
3894 if (!info)
3895 continue;
3896
3897 down_read(&info->groups_sem);
3898 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
3899 if (!list_empty(&info->block_groups[c]))
3900 slot_count++;
3901 }
3902 up_read(&info->groups_sem);
3903 }
Josef Bacik1406e432010-01-13 18:19:06 +00003904
David Sterba36523e952014-02-07 14:34:12 +01003905 /*
3906 * Global block reserve, exported as a space_info
3907 */
3908 slot_count++;
3909
Chris Mason7fde62b2010-03-16 15:40:10 -04003910 /* space_slots == 0 means they are asking for a count */
3911 if (space_args.space_slots == 0) {
3912 space_args.total_spaces = slot_count;
3913 goto out;
3914 }
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003915
Dan Rosenberg51788b12011-02-14 16:04:23 -05003916 slot_count = min_t(u64, space_args.space_slots, slot_count);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003917
Chris Mason7fde62b2010-03-16 15:40:10 -04003918 alloc_size = sizeof(*dest) * slot_count;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003919
Chris Mason7fde62b2010-03-16 15:40:10 -04003920 /* we generally have at most 6 or so space infos, one for each raid
3921 * level. So, a whole page should be more than enough for everyone
3922 */
3923 if (alloc_size > PAGE_CACHE_SIZE)
3924 return -ENOMEM;
3925
3926 space_args.total_spaces = 0;
3927 dest = kmalloc(alloc_size, GFP_NOFS);
3928 if (!dest)
3929 return -ENOMEM;
3930 dest_orig = dest;
3931
3932 /* now we have a buffer to copy into */
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003933 for (i = 0; i < num_types; i++) {
3934 struct btrfs_space_info *tmp;
Chris Mason7fde62b2010-03-16 15:40:10 -04003935
Dan Rosenberg51788b12011-02-14 16:04:23 -05003936 if (!slot_count)
3937 break;
3938
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003939 info = NULL;
3940 rcu_read_lock();
3941 list_for_each_entry_rcu(tmp, &root->fs_info->space_info,
3942 list) {
3943 if (tmp->flags == types[i]) {
3944 info = tmp;
3945 break;
3946 }
3947 }
3948 rcu_read_unlock();
Chris Mason7fde62b2010-03-16 15:40:10 -04003949
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003950 if (!info)
3951 continue;
3952 down_read(&info->groups_sem);
3953 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
3954 if (!list_empty(&info->block_groups[c])) {
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02003955 btrfs_get_block_group_info(
3956 &info->block_groups[c], &space);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003957 memcpy(dest, &space, sizeof(space));
3958 dest++;
3959 space_args.total_spaces++;
Dan Rosenberg51788b12011-02-14 16:04:23 -05003960 slot_count--;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003961 }
Dan Rosenberg51788b12011-02-14 16:04:23 -05003962 if (!slot_count)
3963 break;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003964 }
3965 up_read(&info->groups_sem);
Josef Bacik1406e432010-01-13 18:19:06 +00003966 }
Josef Bacik1406e432010-01-13 18:19:06 +00003967
David Sterba36523e952014-02-07 14:34:12 +01003968 /*
3969 * Add global block reserve
3970 */
3971 if (slot_count) {
3972 struct btrfs_block_rsv *block_rsv = &root->fs_info->global_block_rsv;
3973
3974 spin_lock(&block_rsv->lock);
3975 space.total_bytes = block_rsv->size;
3976 space.used_bytes = block_rsv->size - block_rsv->reserved;
3977 spin_unlock(&block_rsv->lock);
3978 space.flags = BTRFS_SPACE_INFO_GLOBAL_RSV;
3979 memcpy(dest, &space, sizeof(space));
3980 space_args.total_spaces++;
3981 }
3982
Daniel J Blueman2eec6c82012-04-26 00:37:14 +08003983 user_dest = (struct btrfs_ioctl_space_info __user *)
Chris Mason7fde62b2010-03-16 15:40:10 -04003984 (arg + sizeof(struct btrfs_ioctl_space_args));
3985
3986 if (copy_to_user(user_dest, dest_orig, alloc_size))
3987 ret = -EFAULT;
3988
3989 kfree(dest_orig);
3990out:
3991 if (ret == 0 && copy_to_user(arg, &space_args, sizeof(space_args)))
Josef Bacik1406e432010-01-13 18:19:06 +00003992 ret = -EFAULT;
3993
3994 return ret;
3995}
3996
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003997/*
3998 * there are many ways the trans_start and trans_end ioctls can lead
3999 * to deadlocks. They should only be used by applications that
4000 * basically own the machine, and have a very in depth understanding
4001 * of all the possible deadlocks and enospc problems.
4002 */
4003long btrfs_ioctl_trans_end(struct file *file)
4004{
Al Viro496ad9a2013-01-23 17:07:38 -05004005 struct inode *inode = file_inode(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004006 struct btrfs_root *root = BTRFS_I(inode)->root;
4007 struct btrfs_trans_handle *trans;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004008
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004009 trans = file->private_data;
Sage Weil1ab86ae2009-09-29 18:38:44 -04004010 if (!trans)
4011 return -EINVAL;
Christoph Hellwigb2141072008-09-05 16:43:31 -04004012 file->private_data = NULL;
Sage Weil9ca9ee02008-08-04 10:41:27 -04004013
Sage Weil1ab86ae2009-09-29 18:38:44 -04004014 btrfs_end_transaction(trans, root);
4015
Josef Bacika4abeea2011-04-11 17:25:13 -04004016 atomic_dec(&root->fs_info->open_ioctl_trans);
Sage Weil9ca9ee02008-08-04 10:41:27 -04004017
Al Viro2a79f172011-12-09 08:06:57 -05004018 mnt_drop_write_file(file);
Sage Weil1ab86ae2009-09-29 18:38:44 -04004019 return 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004020}
4021
Miao Xie9a8c28b2012-11-26 08:40:43 +00004022static noinline long btrfs_ioctl_start_sync(struct btrfs_root *root,
4023 void __user *argp)
Sage Weil46204592010-10-29 15:41:32 -04004024{
Sage Weil46204592010-10-29 15:41:32 -04004025 struct btrfs_trans_handle *trans;
4026 u64 transid;
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004027 int ret;
Sage Weil46204592010-10-29 15:41:32 -04004028
Miao Xied4edf392013-02-20 09:17:06 +00004029 trans = btrfs_attach_transaction_barrier(root);
Miao Xieff7c1d32012-11-26 08:41:29 +00004030 if (IS_ERR(trans)) {
4031 if (PTR_ERR(trans) != -ENOENT)
4032 return PTR_ERR(trans);
4033
4034 /* No running transaction, don't bother */
4035 transid = root->fs_info->last_trans_committed;
4036 goto out;
4037 }
Sage Weil46204592010-10-29 15:41:32 -04004038 transid = trans->transid;
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004039 ret = btrfs_commit_transaction_async(trans, root, 0);
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00004040 if (ret) {
4041 btrfs_end_transaction(trans, root);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004042 return ret;
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00004043 }
Miao Xieff7c1d32012-11-26 08:41:29 +00004044out:
Sage Weil46204592010-10-29 15:41:32 -04004045 if (argp)
4046 if (copy_to_user(argp, &transid, sizeof(transid)))
4047 return -EFAULT;
4048 return 0;
4049}
4050
Miao Xie9a8c28b2012-11-26 08:40:43 +00004051static noinline long btrfs_ioctl_wait_sync(struct btrfs_root *root,
4052 void __user *argp)
Sage Weil46204592010-10-29 15:41:32 -04004053{
Sage Weil46204592010-10-29 15:41:32 -04004054 u64 transid;
4055
4056 if (argp) {
4057 if (copy_from_user(&transid, argp, sizeof(transid)))
4058 return -EFAULT;
4059 } else {
4060 transid = 0; /* current trans */
4061 }
4062 return btrfs_wait_for_commit(root, transid);
4063}
4064
Miao Xieb8e95482012-11-26 08:48:01 +00004065static long btrfs_ioctl_scrub(struct file *file, void __user *arg)
Jan Schmidt475f6382011-03-11 15:41:01 +01004066{
Al Viro496ad9a2013-01-23 17:07:38 -05004067 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Jan Schmidt475f6382011-03-11 15:41:01 +01004068 struct btrfs_ioctl_scrub_args *sa;
Miao Xieb8e95482012-11-26 08:48:01 +00004069 int ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01004070
4071 if (!capable(CAP_SYS_ADMIN))
4072 return -EPERM;
4073
4074 sa = memdup_user(arg, sizeof(*sa));
4075 if (IS_ERR(sa))
4076 return PTR_ERR(sa);
4077
Miao Xieb8e95482012-11-26 08:48:01 +00004078 if (!(sa->flags & BTRFS_SCRUB_READONLY)) {
4079 ret = mnt_want_write_file(file);
4080 if (ret)
4081 goto out;
4082 }
4083
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01004084 ret = btrfs_scrub_dev(root->fs_info, sa->devid, sa->start, sa->end,
Stefan Behrens63a212a2012-11-05 18:29:28 +01004085 &sa->progress, sa->flags & BTRFS_SCRUB_READONLY,
4086 0);
Jan Schmidt475f6382011-03-11 15:41:01 +01004087
4088 if (copy_to_user(arg, sa, sizeof(*sa)))
4089 ret = -EFAULT;
4090
Miao Xieb8e95482012-11-26 08:48:01 +00004091 if (!(sa->flags & BTRFS_SCRUB_READONLY))
4092 mnt_drop_write_file(file);
4093out:
Jan Schmidt475f6382011-03-11 15:41:01 +01004094 kfree(sa);
4095 return ret;
4096}
4097
4098static long btrfs_ioctl_scrub_cancel(struct btrfs_root *root, void __user *arg)
4099{
4100 if (!capable(CAP_SYS_ADMIN))
4101 return -EPERM;
4102
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01004103 return btrfs_scrub_cancel(root->fs_info);
Jan Schmidt475f6382011-03-11 15:41:01 +01004104}
4105
4106static long btrfs_ioctl_scrub_progress(struct btrfs_root *root,
4107 void __user *arg)
4108{
4109 struct btrfs_ioctl_scrub_args *sa;
4110 int ret;
4111
4112 if (!capable(CAP_SYS_ADMIN))
4113 return -EPERM;
4114
4115 sa = memdup_user(arg, sizeof(*sa));
4116 if (IS_ERR(sa))
4117 return PTR_ERR(sa);
4118
4119 ret = btrfs_scrub_progress(root, sa->devid, &sa->progress);
4120
4121 if (copy_to_user(arg, sa, sizeof(*sa)))
4122 ret = -EFAULT;
4123
4124 kfree(sa);
4125 return ret;
4126}
4127
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004128static long btrfs_ioctl_get_dev_stats(struct btrfs_root *root,
David Sterbab27f7c02012-06-22 06:30:39 -06004129 void __user *arg)
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004130{
4131 struct btrfs_ioctl_get_dev_stats *sa;
4132 int ret;
4133
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004134 sa = memdup_user(arg, sizeof(*sa));
4135 if (IS_ERR(sa))
4136 return PTR_ERR(sa);
4137
David Sterbab27f7c02012-06-22 06:30:39 -06004138 if ((sa->flags & BTRFS_DEV_STATS_RESET) && !capable(CAP_SYS_ADMIN)) {
4139 kfree(sa);
4140 return -EPERM;
4141 }
4142
4143 ret = btrfs_get_dev_stats(root, sa);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004144
4145 if (copy_to_user(arg, sa, sizeof(*sa)))
4146 ret = -EFAULT;
4147
4148 kfree(sa);
4149 return ret;
4150}
4151
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004152static long btrfs_ioctl_dev_replace(struct btrfs_root *root, void __user *arg)
4153{
4154 struct btrfs_ioctl_dev_replace_args *p;
4155 int ret;
4156
4157 if (!capable(CAP_SYS_ADMIN))
4158 return -EPERM;
4159
4160 p = memdup_user(arg, sizeof(*p));
4161 if (IS_ERR(p))
4162 return PTR_ERR(p);
4163
4164 switch (p->cmd) {
4165 case BTRFS_IOCTL_DEV_REPLACE_CMD_START:
Ilya Dryomovadfa97c2013-10-10 20:39:28 +03004166 if (root->fs_info->sb->s_flags & MS_RDONLY) {
4167 ret = -EROFS;
4168 goto out;
4169 }
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004170 if (atomic_xchg(
4171 &root->fs_info->mutually_exclusive_operation_running,
4172 1)) {
Anand Jaine57138b2013-08-21 11:44:48 +08004173 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004174 } else {
4175 ret = btrfs_dev_replace_start(root, p);
4176 atomic_set(
4177 &root->fs_info->mutually_exclusive_operation_running,
4178 0);
4179 }
4180 break;
4181 case BTRFS_IOCTL_DEV_REPLACE_CMD_STATUS:
4182 btrfs_dev_replace_status(root->fs_info, p);
4183 ret = 0;
4184 break;
4185 case BTRFS_IOCTL_DEV_REPLACE_CMD_CANCEL:
4186 ret = btrfs_dev_replace_cancel(root->fs_info, p);
4187 break;
4188 default:
4189 ret = -EINVAL;
4190 break;
4191 }
4192
4193 if (copy_to_user(arg, p, sizeof(*p)))
4194 ret = -EFAULT;
Ilya Dryomovadfa97c2013-10-10 20:39:28 +03004195out:
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004196 kfree(p);
4197 return ret;
4198}
4199
Jan Schmidtd7728c92011-07-07 16:48:38 +02004200static long btrfs_ioctl_ino_to_path(struct btrfs_root *root, void __user *arg)
4201{
4202 int ret = 0;
4203 int i;
Chris Mason740c3d22011-11-02 15:48:34 -04004204 u64 rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004205 int size;
Chris Mason806468f2011-11-06 03:07:10 -05004206 struct btrfs_ioctl_ino_path_args *ipa = NULL;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004207 struct inode_fs_paths *ipath = NULL;
4208 struct btrfs_path *path;
4209
Kusanagi Kouichi82b22ac2013-01-28 11:33:31 +00004210 if (!capable(CAP_DAC_READ_SEARCH))
Jan Schmidtd7728c92011-07-07 16:48:38 +02004211 return -EPERM;
4212
4213 path = btrfs_alloc_path();
4214 if (!path) {
4215 ret = -ENOMEM;
4216 goto out;
4217 }
4218
4219 ipa = memdup_user(arg, sizeof(*ipa));
4220 if (IS_ERR(ipa)) {
4221 ret = PTR_ERR(ipa);
4222 ipa = NULL;
4223 goto out;
4224 }
4225
4226 size = min_t(u32, ipa->size, 4096);
4227 ipath = init_ipath(size, root, path);
4228 if (IS_ERR(ipath)) {
4229 ret = PTR_ERR(ipath);
4230 ipath = NULL;
4231 goto out;
4232 }
4233
4234 ret = paths_from_inode(ipa->inum, ipath);
4235 if (ret < 0)
4236 goto out;
4237
4238 for (i = 0; i < ipath->fspath->elem_cnt; ++i) {
Jeff Mahoney745c4d82011-11-20 07:31:57 -05004239 rel_ptr = ipath->fspath->val[i] -
4240 (u64)(unsigned long)ipath->fspath->val;
Chris Mason740c3d22011-11-02 15:48:34 -04004241 ipath->fspath->val[i] = rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004242 }
4243
Jeff Mahoney745c4d82011-11-20 07:31:57 -05004244 ret = copy_to_user((void *)(unsigned long)ipa->fspath,
4245 (void *)(unsigned long)ipath->fspath, size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004246 if (ret) {
4247 ret = -EFAULT;
4248 goto out;
4249 }
4250
4251out:
4252 btrfs_free_path(path);
4253 free_ipath(ipath);
4254 kfree(ipa);
4255
4256 return ret;
4257}
4258
4259static int build_ino_list(u64 inum, u64 offset, u64 root, void *ctx)
4260{
4261 struct btrfs_data_container *inodes = ctx;
4262 const size_t c = 3 * sizeof(u64);
4263
4264 if (inodes->bytes_left >= c) {
4265 inodes->bytes_left -= c;
4266 inodes->val[inodes->elem_cnt] = inum;
4267 inodes->val[inodes->elem_cnt + 1] = offset;
4268 inodes->val[inodes->elem_cnt + 2] = root;
4269 inodes->elem_cnt += 3;
4270 } else {
4271 inodes->bytes_missing += c - inodes->bytes_left;
4272 inodes->bytes_left = 0;
4273 inodes->elem_missed += 3;
4274 }
4275
4276 return 0;
4277}
4278
4279static long btrfs_ioctl_logical_to_ino(struct btrfs_root *root,
4280 void __user *arg)
4281{
4282 int ret = 0;
4283 int size;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004284 struct btrfs_ioctl_logical_ino_args *loi;
4285 struct btrfs_data_container *inodes = NULL;
4286 struct btrfs_path *path = NULL;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004287
4288 if (!capable(CAP_SYS_ADMIN))
4289 return -EPERM;
4290
4291 loi = memdup_user(arg, sizeof(*loi));
4292 if (IS_ERR(loi)) {
4293 ret = PTR_ERR(loi);
4294 loi = NULL;
4295 goto out;
4296 }
4297
4298 path = btrfs_alloc_path();
4299 if (!path) {
4300 ret = -ENOMEM;
4301 goto out;
4302 }
4303
Liu Bo425d17a2012-09-07 20:01:30 -06004304 size = min_t(u32, loi->size, 64 * 1024);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004305 inodes = init_data_container(size);
4306 if (IS_ERR(inodes)) {
4307 ret = PTR_ERR(inodes);
4308 inodes = NULL;
4309 goto out;
4310 }
4311
Liu Bodf031f02012-09-07 20:01:29 -06004312 ret = iterate_inodes_from_logical(loi->logical, root->fs_info, path,
4313 build_ino_list, inodes);
4314 if (ret == -EINVAL)
Jan Schmidtd7728c92011-07-07 16:48:38 +02004315 ret = -ENOENT;
4316 if (ret < 0)
4317 goto out;
4318
Jeff Mahoney745c4d82011-11-20 07:31:57 -05004319 ret = copy_to_user((void *)(unsigned long)loi->inodes,
4320 (void *)(unsigned long)inodes, size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004321 if (ret)
4322 ret = -EFAULT;
4323
4324out:
4325 btrfs_free_path(path);
Liu Bo425d17a2012-09-07 20:01:30 -06004326 vfree(inodes);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004327 kfree(loi);
4328
4329 return ret;
4330}
4331
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004332void update_ioctl_balance_args(struct btrfs_fs_info *fs_info, int lock,
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004333 struct btrfs_ioctl_balance_args *bargs)
4334{
4335 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
4336
4337 bargs->flags = bctl->flags;
4338
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004339 if (atomic_read(&fs_info->balance_running))
4340 bargs->state |= BTRFS_BALANCE_STATE_RUNNING;
4341 if (atomic_read(&fs_info->balance_pause_req))
4342 bargs->state |= BTRFS_BALANCE_STATE_PAUSE_REQ;
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004343 if (atomic_read(&fs_info->balance_cancel_req))
4344 bargs->state |= BTRFS_BALANCE_STATE_CANCEL_REQ;
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004345
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004346 memcpy(&bargs->data, &bctl->data, sizeof(bargs->data));
4347 memcpy(&bargs->meta, &bctl->meta, sizeof(bargs->meta));
4348 memcpy(&bargs->sys, &bctl->sys, sizeof(bargs->sys));
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004349
4350 if (lock) {
4351 spin_lock(&fs_info->balance_lock);
4352 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
4353 spin_unlock(&fs_info->balance_lock);
4354 } else {
4355 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
4356 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004357}
4358
Liu Bo9ba1f6e2012-05-11 18:11:26 +08004359static long btrfs_ioctl_balance(struct file *file, void __user *arg)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004360{
Al Viro496ad9a2013-01-23 17:07:38 -05004361 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004362 struct btrfs_fs_info *fs_info = root->fs_info;
4363 struct btrfs_ioctl_balance_args *bargs;
4364 struct btrfs_balance_control *bctl;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004365 bool need_unlock; /* for mut. excl. ops lock */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004366 int ret;
4367
4368 if (!capable(CAP_SYS_ADMIN))
4369 return -EPERM;
4370
Liu Boe54bfa32012-06-29 03:58:48 -06004371 ret = mnt_want_write_file(file);
Liu Bo9ba1f6e2012-05-11 18:11:26 +08004372 if (ret)
4373 return ret;
4374
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004375again:
4376 if (!atomic_xchg(&fs_info->mutually_exclusive_operation_running, 1)) {
4377 mutex_lock(&fs_info->volume_mutex);
4378 mutex_lock(&fs_info->balance_mutex);
4379 need_unlock = true;
4380 goto locked;
4381 }
4382
4383 /*
4384 * mut. excl. ops lock is locked. Three possibilites:
4385 * (1) some other op is running
4386 * (2) balance is running
4387 * (3) balance is paused -- special case (think resume)
4388 */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004389 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004390 if (fs_info->balance_ctl) {
4391 /* this is either (2) or (3) */
4392 if (!atomic_read(&fs_info->balance_running)) {
4393 mutex_unlock(&fs_info->balance_mutex);
4394 if (!mutex_trylock(&fs_info->volume_mutex))
4395 goto again;
4396 mutex_lock(&fs_info->balance_mutex);
4397
4398 if (fs_info->balance_ctl &&
4399 !atomic_read(&fs_info->balance_running)) {
4400 /* this is (3) */
4401 need_unlock = false;
4402 goto locked;
4403 }
4404
4405 mutex_unlock(&fs_info->balance_mutex);
4406 mutex_unlock(&fs_info->volume_mutex);
4407 goto again;
4408 } else {
4409 /* this is (2) */
4410 mutex_unlock(&fs_info->balance_mutex);
4411 ret = -EINPROGRESS;
4412 goto out;
4413 }
4414 } else {
4415 /* this is (1) */
4416 mutex_unlock(&fs_info->balance_mutex);
Anand Jaine57138b2013-08-21 11:44:48 +08004417 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004418 goto out;
4419 }
4420
4421locked:
4422 BUG_ON(!atomic_read(&fs_info->mutually_exclusive_operation_running));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004423
4424 if (arg) {
4425 bargs = memdup_user(arg, sizeof(*bargs));
4426 if (IS_ERR(bargs)) {
4427 ret = PTR_ERR(bargs);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004428 goto out_unlock;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004429 }
Ilya Dryomovde322262012-01-16 22:04:49 +02004430
4431 if (bargs->flags & BTRFS_BALANCE_RESUME) {
4432 if (!fs_info->balance_ctl) {
4433 ret = -ENOTCONN;
4434 goto out_bargs;
4435 }
4436
4437 bctl = fs_info->balance_ctl;
4438 spin_lock(&fs_info->balance_lock);
4439 bctl->flags |= BTRFS_BALANCE_RESUME;
4440 spin_unlock(&fs_info->balance_lock);
4441
4442 goto do_balance;
4443 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004444 } else {
4445 bargs = NULL;
4446 }
4447
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004448 if (fs_info->balance_ctl) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004449 ret = -EINPROGRESS;
4450 goto out_bargs;
4451 }
4452
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004453 bctl = kzalloc(sizeof(*bctl), GFP_NOFS);
4454 if (!bctl) {
4455 ret = -ENOMEM;
4456 goto out_bargs;
4457 }
4458
4459 bctl->fs_info = fs_info;
4460 if (arg) {
4461 memcpy(&bctl->data, &bargs->data, sizeof(bctl->data));
4462 memcpy(&bctl->meta, &bargs->meta, sizeof(bctl->meta));
4463 memcpy(&bctl->sys, &bargs->sys, sizeof(bctl->sys));
4464
4465 bctl->flags = bargs->flags;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02004466 } else {
4467 /* balance everything - no filters */
4468 bctl->flags |= BTRFS_BALANCE_TYPE_MASK;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004469 }
4470
Ilya Dryomovde322262012-01-16 22:04:49 +02004471do_balance:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004472 /*
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004473 * Ownership of bctl and mutually_exclusive_operation_running
4474 * goes to to btrfs_balance. bctl is freed in __cancel_balance,
4475 * or, if restriper was paused all the way until unmount, in
4476 * free_fs_info. mutually_exclusive_operation_running is
4477 * cleared in __cancel_balance.
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004478 */
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004479 need_unlock = false;
4480
4481 ret = btrfs_balance(bctl, bargs);
4482
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004483 if (arg) {
4484 if (copy_to_user(arg, bargs, sizeof(*bargs)))
4485 ret = -EFAULT;
4486 }
4487
4488out_bargs:
4489 kfree(bargs);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004490out_unlock:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004491 mutex_unlock(&fs_info->balance_mutex);
4492 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004493 if (need_unlock)
4494 atomic_set(&fs_info->mutually_exclusive_operation_running, 0);
4495out:
Liu Boe54bfa32012-06-29 03:58:48 -06004496 mnt_drop_write_file(file);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004497 return ret;
4498}
4499
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004500static long btrfs_ioctl_balance_ctl(struct btrfs_root *root, int cmd)
4501{
4502 if (!capable(CAP_SYS_ADMIN))
4503 return -EPERM;
4504
4505 switch (cmd) {
4506 case BTRFS_BALANCE_CTL_PAUSE:
4507 return btrfs_pause_balance(root->fs_info);
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004508 case BTRFS_BALANCE_CTL_CANCEL:
4509 return btrfs_cancel_balance(root->fs_info);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004510 }
4511
4512 return -EINVAL;
4513}
4514
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004515static long btrfs_ioctl_balance_progress(struct btrfs_root *root,
4516 void __user *arg)
4517{
4518 struct btrfs_fs_info *fs_info = root->fs_info;
4519 struct btrfs_ioctl_balance_args *bargs;
4520 int ret = 0;
4521
4522 if (!capable(CAP_SYS_ADMIN))
4523 return -EPERM;
4524
4525 mutex_lock(&fs_info->balance_mutex);
4526 if (!fs_info->balance_ctl) {
4527 ret = -ENOTCONN;
4528 goto out;
4529 }
4530
4531 bargs = kzalloc(sizeof(*bargs), GFP_NOFS);
4532 if (!bargs) {
4533 ret = -ENOMEM;
4534 goto out;
4535 }
4536
4537 update_ioctl_balance_args(fs_info, 1, bargs);
4538
4539 if (copy_to_user(arg, bargs, sizeof(*bargs)))
4540 ret = -EFAULT;
4541
4542 kfree(bargs);
4543out:
4544 mutex_unlock(&fs_info->balance_mutex);
4545 return ret;
4546}
4547
Miao Xie905b0dd2012-11-26 08:50:11 +00004548static long btrfs_ioctl_quota_ctl(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004549{
Al Viro496ad9a2013-01-23 17:07:38 -05004550 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004551 struct btrfs_ioctl_quota_ctl_args *sa;
4552 struct btrfs_trans_handle *trans = NULL;
4553 int ret;
4554 int err;
4555
4556 if (!capable(CAP_SYS_ADMIN))
4557 return -EPERM;
4558
Miao Xie905b0dd2012-11-26 08:50:11 +00004559 ret = mnt_want_write_file(file);
4560 if (ret)
4561 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004562
4563 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004564 if (IS_ERR(sa)) {
4565 ret = PTR_ERR(sa);
4566 goto drop_write;
4567 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004568
Wang Shilong7708f022013-04-07 10:24:57 +00004569 down_write(&root->fs_info->subvol_sem);
Jan Schmidt2f232032013-04-25 16:04:51 +00004570 trans = btrfs_start_transaction(root->fs_info->tree_root, 2);
4571 if (IS_ERR(trans)) {
4572 ret = PTR_ERR(trans);
4573 goto out;
Arne Jansen5d13a372011-09-14 15:53:51 +02004574 }
4575
4576 switch (sa->cmd) {
4577 case BTRFS_QUOTA_CTL_ENABLE:
4578 ret = btrfs_quota_enable(trans, root->fs_info);
4579 break;
4580 case BTRFS_QUOTA_CTL_DISABLE:
4581 ret = btrfs_quota_disable(trans, root->fs_info);
4582 break;
Arne Jansen5d13a372011-09-14 15:53:51 +02004583 default:
4584 ret = -EINVAL;
4585 break;
4586 }
4587
Jan Schmidt2f232032013-04-25 16:04:51 +00004588 err = btrfs_commit_transaction(trans, root->fs_info->tree_root);
4589 if (err && !ret)
4590 ret = err;
Arne Jansen5d13a372011-09-14 15:53:51 +02004591out:
4592 kfree(sa);
Wang Shilong7708f022013-04-07 10:24:57 +00004593 up_write(&root->fs_info->subvol_sem);
Miao Xie905b0dd2012-11-26 08:50:11 +00004594drop_write:
4595 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004596 return ret;
4597}
4598
Miao Xie905b0dd2012-11-26 08:50:11 +00004599static long btrfs_ioctl_qgroup_assign(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004600{
Al Viro496ad9a2013-01-23 17:07:38 -05004601 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004602 struct btrfs_ioctl_qgroup_assign_args *sa;
4603 struct btrfs_trans_handle *trans;
4604 int ret;
4605 int err;
4606
4607 if (!capable(CAP_SYS_ADMIN))
4608 return -EPERM;
4609
Miao Xie905b0dd2012-11-26 08:50:11 +00004610 ret = mnt_want_write_file(file);
4611 if (ret)
4612 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004613
4614 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004615 if (IS_ERR(sa)) {
4616 ret = PTR_ERR(sa);
4617 goto drop_write;
4618 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004619
4620 trans = btrfs_join_transaction(root);
4621 if (IS_ERR(trans)) {
4622 ret = PTR_ERR(trans);
4623 goto out;
4624 }
4625
4626 /* FIXME: check if the IDs really exist */
4627 if (sa->assign) {
4628 ret = btrfs_add_qgroup_relation(trans, root->fs_info,
4629 sa->src, sa->dst);
4630 } else {
4631 ret = btrfs_del_qgroup_relation(trans, root->fs_info,
4632 sa->src, sa->dst);
4633 }
4634
4635 err = btrfs_end_transaction(trans, root);
4636 if (err && !ret)
4637 ret = err;
4638
4639out:
4640 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004641drop_write:
4642 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004643 return ret;
4644}
4645
Miao Xie905b0dd2012-11-26 08:50:11 +00004646static long btrfs_ioctl_qgroup_create(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004647{
Al Viro496ad9a2013-01-23 17:07:38 -05004648 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004649 struct btrfs_ioctl_qgroup_create_args *sa;
4650 struct btrfs_trans_handle *trans;
4651 int ret;
4652 int err;
4653
4654 if (!capable(CAP_SYS_ADMIN))
4655 return -EPERM;
4656
Miao Xie905b0dd2012-11-26 08:50:11 +00004657 ret = mnt_want_write_file(file);
4658 if (ret)
4659 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004660
4661 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004662 if (IS_ERR(sa)) {
4663 ret = PTR_ERR(sa);
4664 goto drop_write;
4665 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004666
Miao Xied86e56c2012-11-15 11:35:41 +00004667 if (!sa->qgroupid) {
4668 ret = -EINVAL;
4669 goto out;
4670 }
4671
Arne Jansen5d13a372011-09-14 15:53:51 +02004672 trans = btrfs_join_transaction(root);
4673 if (IS_ERR(trans)) {
4674 ret = PTR_ERR(trans);
4675 goto out;
4676 }
4677
4678 /* FIXME: check if the IDs really exist */
4679 if (sa->create) {
4680 ret = btrfs_create_qgroup(trans, root->fs_info, sa->qgroupid,
4681 NULL);
4682 } else {
4683 ret = btrfs_remove_qgroup(trans, root->fs_info, sa->qgroupid);
4684 }
4685
4686 err = btrfs_end_transaction(trans, root);
4687 if (err && !ret)
4688 ret = err;
4689
4690out:
4691 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004692drop_write:
4693 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004694 return ret;
4695}
4696
Miao Xie905b0dd2012-11-26 08:50:11 +00004697static long btrfs_ioctl_qgroup_limit(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004698{
Al Viro496ad9a2013-01-23 17:07:38 -05004699 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004700 struct btrfs_ioctl_qgroup_limit_args *sa;
4701 struct btrfs_trans_handle *trans;
4702 int ret;
4703 int err;
4704 u64 qgroupid;
4705
4706 if (!capable(CAP_SYS_ADMIN))
4707 return -EPERM;
4708
Miao Xie905b0dd2012-11-26 08:50:11 +00004709 ret = mnt_want_write_file(file);
4710 if (ret)
4711 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004712
4713 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004714 if (IS_ERR(sa)) {
4715 ret = PTR_ERR(sa);
4716 goto drop_write;
4717 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004718
4719 trans = btrfs_join_transaction(root);
4720 if (IS_ERR(trans)) {
4721 ret = PTR_ERR(trans);
4722 goto out;
4723 }
4724
4725 qgroupid = sa->qgroupid;
4726 if (!qgroupid) {
4727 /* take the current subvol as qgroup */
4728 qgroupid = root->root_key.objectid;
4729 }
4730
4731 /* FIXME: check if the IDs really exist */
4732 ret = btrfs_limit_qgroup(trans, root->fs_info, qgroupid, &sa->lim);
4733
4734 err = btrfs_end_transaction(trans, root);
4735 if (err && !ret)
4736 ret = err;
4737
4738out:
4739 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004740drop_write:
4741 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004742 return ret;
4743}
4744
Jan Schmidt2f232032013-04-25 16:04:51 +00004745static long btrfs_ioctl_quota_rescan(struct file *file, void __user *arg)
4746{
Al Viro6d0379e2013-06-16 19:32:35 +04004747 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Jan Schmidt2f232032013-04-25 16:04:51 +00004748 struct btrfs_ioctl_quota_rescan_args *qsa;
4749 int ret;
4750
4751 if (!capable(CAP_SYS_ADMIN))
4752 return -EPERM;
4753
4754 ret = mnt_want_write_file(file);
4755 if (ret)
4756 return ret;
4757
4758 qsa = memdup_user(arg, sizeof(*qsa));
4759 if (IS_ERR(qsa)) {
4760 ret = PTR_ERR(qsa);
4761 goto drop_write;
4762 }
4763
4764 if (qsa->flags) {
4765 ret = -EINVAL;
4766 goto out;
4767 }
4768
4769 ret = btrfs_qgroup_rescan(root->fs_info);
4770
4771out:
4772 kfree(qsa);
4773drop_write:
4774 mnt_drop_write_file(file);
4775 return ret;
4776}
4777
4778static long btrfs_ioctl_quota_rescan_status(struct file *file, void __user *arg)
4779{
Al Viro6d0379e2013-06-16 19:32:35 +04004780 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Jan Schmidt2f232032013-04-25 16:04:51 +00004781 struct btrfs_ioctl_quota_rescan_args *qsa;
4782 int ret = 0;
4783
4784 if (!capable(CAP_SYS_ADMIN))
4785 return -EPERM;
4786
4787 qsa = kzalloc(sizeof(*qsa), GFP_NOFS);
4788 if (!qsa)
4789 return -ENOMEM;
4790
4791 if (root->fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_RESCAN) {
4792 qsa->flags = 1;
4793 qsa->progress = root->fs_info->qgroup_rescan_progress.objectid;
4794 }
4795
4796 if (copy_to_user(arg, qsa, sizeof(*qsa)))
4797 ret = -EFAULT;
4798
4799 kfree(qsa);
4800 return ret;
4801}
4802
Jan Schmidt57254b6e2013-05-06 19:14:17 +00004803static long btrfs_ioctl_quota_rescan_wait(struct file *file, void __user *arg)
4804{
Al Viro54563d42013-09-01 15:57:51 -04004805 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Jan Schmidt57254b6e2013-05-06 19:14:17 +00004806
4807 if (!capable(CAP_SYS_ADMIN))
4808 return -EPERM;
4809
4810 return btrfs_qgroup_wait_for_completion(root->fs_info);
4811}
4812
Hugo Millsabccd002014-01-30 20:17:00 +00004813static long _btrfs_ioctl_set_received_subvol(struct file *file,
4814 struct btrfs_ioctl_received_subvol_args *sa)
Alexander Block8ea05e32012-07-25 17:35:53 +02004815{
Al Viro496ad9a2013-01-23 17:07:38 -05004816 struct inode *inode = file_inode(file);
Alexander Block8ea05e32012-07-25 17:35:53 +02004817 struct btrfs_root *root = BTRFS_I(inode)->root;
4818 struct btrfs_root_item *root_item = &root->root_item;
4819 struct btrfs_trans_handle *trans;
4820 struct timespec ct = CURRENT_TIME;
4821 int ret = 0;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004822 int received_uuid_changed;
Alexander Block8ea05e32012-07-25 17:35:53 +02004823
David Sterbabd60ea02014-01-16 15:50:22 +01004824 if (!inode_owner_or_capable(inode))
4825 return -EPERM;
4826
Alexander Block8ea05e32012-07-25 17:35:53 +02004827 ret = mnt_want_write_file(file);
4828 if (ret < 0)
4829 return ret;
4830
4831 down_write(&root->fs_info->subvol_sem);
4832
4833 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
4834 ret = -EINVAL;
4835 goto out;
4836 }
4837
4838 if (btrfs_root_readonly(root)) {
4839 ret = -EROFS;
4840 goto out;
4841 }
4842
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004843 /*
4844 * 1 - root item
4845 * 2 - uuid items (received uuid + subvol uuid)
4846 */
4847 trans = btrfs_start_transaction(root, 3);
Alexander Block8ea05e32012-07-25 17:35:53 +02004848 if (IS_ERR(trans)) {
4849 ret = PTR_ERR(trans);
4850 trans = NULL;
4851 goto out;
4852 }
4853
4854 sa->rtransid = trans->transid;
4855 sa->rtime.sec = ct.tv_sec;
4856 sa->rtime.nsec = ct.tv_nsec;
4857
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004858 received_uuid_changed = memcmp(root_item->received_uuid, sa->uuid,
4859 BTRFS_UUID_SIZE);
4860 if (received_uuid_changed &&
4861 !btrfs_is_empty_uuid(root_item->received_uuid))
4862 btrfs_uuid_tree_rem(trans, root->fs_info->uuid_root,
4863 root_item->received_uuid,
4864 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4865 root->root_key.objectid);
Alexander Block8ea05e32012-07-25 17:35:53 +02004866 memcpy(root_item->received_uuid, sa->uuid, BTRFS_UUID_SIZE);
4867 btrfs_set_root_stransid(root_item, sa->stransid);
4868 btrfs_set_root_rtransid(root_item, sa->rtransid);
Qu Wenruo3cae2102013-07-16 11:19:18 +08004869 btrfs_set_stack_timespec_sec(&root_item->stime, sa->stime.sec);
4870 btrfs_set_stack_timespec_nsec(&root_item->stime, sa->stime.nsec);
4871 btrfs_set_stack_timespec_sec(&root_item->rtime, sa->rtime.sec);
4872 btrfs_set_stack_timespec_nsec(&root_item->rtime, sa->rtime.nsec);
Alexander Block8ea05e32012-07-25 17:35:53 +02004873
4874 ret = btrfs_update_root(trans, root->fs_info->tree_root,
4875 &root->root_key, &root->root_item);
4876 if (ret < 0) {
4877 btrfs_end_transaction(trans, root);
Alexander Block8ea05e32012-07-25 17:35:53 +02004878 goto out;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004879 }
4880 if (received_uuid_changed && !btrfs_is_empty_uuid(sa->uuid)) {
4881 ret = btrfs_uuid_tree_add(trans, root->fs_info->uuid_root,
4882 sa->uuid,
4883 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4884 root->root_key.objectid);
4885 if (ret < 0 && ret != -EEXIST) {
4886 btrfs_abort_transaction(trans, root, ret);
Alexander Block8ea05e32012-07-25 17:35:53 +02004887 goto out;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004888 }
4889 }
4890 ret = btrfs_commit_transaction(trans, root);
4891 if (ret < 0) {
4892 btrfs_abort_transaction(trans, root, ret);
4893 goto out;
Alexander Block8ea05e32012-07-25 17:35:53 +02004894 }
4895
Hugo Millsabccd002014-01-30 20:17:00 +00004896out:
4897 up_write(&root->fs_info->subvol_sem);
4898 mnt_drop_write_file(file);
4899 return ret;
4900}
4901
4902#ifdef CONFIG_64BIT
4903static long btrfs_ioctl_set_received_subvol_32(struct file *file,
4904 void __user *arg)
4905{
4906 struct btrfs_ioctl_received_subvol_args_32 *args32 = NULL;
4907 struct btrfs_ioctl_received_subvol_args *args64 = NULL;
4908 int ret = 0;
4909
4910 args32 = memdup_user(arg, sizeof(*args32));
4911 if (IS_ERR(args32)) {
4912 ret = PTR_ERR(args32);
4913 args32 = NULL;
4914 goto out;
4915 }
4916
4917 args64 = kmalloc(sizeof(*args64), GFP_NOFS);
Dan Carpenter84dbeb82014-03-28 11:06:00 +03004918 if (!args64) {
4919 ret = -ENOMEM;
Hugo Millsabccd002014-01-30 20:17:00 +00004920 goto out;
4921 }
4922
4923 memcpy(args64->uuid, args32->uuid, BTRFS_UUID_SIZE);
4924 args64->stransid = args32->stransid;
4925 args64->rtransid = args32->rtransid;
4926 args64->stime.sec = args32->stime.sec;
4927 args64->stime.nsec = args32->stime.nsec;
4928 args64->rtime.sec = args32->rtime.sec;
4929 args64->rtime.nsec = args32->rtime.nsec;
4930 args64->flags = args32->flags;
4931
4932 ret = _btrfs_ioctl_set_received_subvol(file, args64);
4933 if (ret)
4934 goto out;
4935
4936 memcpy(args32->uuid, args64->uuid, BTRFS_UUID_SIZE);
4937 args32->stransid = args64->stransid;
4938 args32->rtransid = args64->rtransid;
4939 args32->stime.sec = args64->stime.sec;
4940 args32->stime.nsec = args64->stime.nsec;
4941 args32->rtime.sec = args64->rtime.sec;
4942 args32->rtime.nsec = args64->rtime.nsec;
4943 args32->flags = args64->flags;
4944
4945 ret = copy_to_user(arg, args32, sizeof(*args32));
4946 if (ret)
4947 ret = -EFAULT;
4948
4949out:
4950 kfree(args32);
4951 kfree(args64);
4952 return ret;
4953}
4954#endif
4955
4956static long btrfs_ioctl_set_received_subvol(struct file *file,
4957 void __user *arg)
4958{
4959 struct btrfs_ioctl_received_subvol_args *sa = NULL;
4960 int ret = 0;
4961
4962 sa = memdup_user(arg, sizeof(*sa));
4963 if (IS_ERR(sa)) {
4964 ret = PTR_ERR(sa);
4965 sa = NULL;
4966 goto out;
4967 }
4968
4969 ret = _btrfs_ioctl_set_received_subvol(file, sa);
4970
4971 if (ret)
4972 goto out;
4973
Alexander Block8ea05e32012-07-25 17:35:53 +02004974 ret = copy_to_user(arg, sa, sizeof(*sa));
4975 if (ret)
4976 ret = -EFAULT;
4977
4978out:
4979 kfree(sa);
Alexander Block8ea05e32012-07-25 17:35:53 +02004980 return ret;
4981}
4982
jeff.liu867ab662013-01-05 02:48:01 +00004983static int btrfs_ioctl_get_fslabel(struct file *file, void __user *arg)
4984{
Al Viro6d0379e2013-06-16 19:32:35 +04004985 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Anand Jaina1b83ac2013-07-19 17:39:32 +08004986 size_t len;
jeff.liu867ab662013-01-05 02:48:01 +00004987 int ret;
Anand Jaina1b83ac2013-07-19 17:39:32 +08004988 char label[BTRFS_LABEL_SIZE];
4989
4990 spin_lock(&root->fs_info->super_lock);
4991 memcpy(label, root->fs_info->super_copy->label, BTRFS_LABEL_SIZE);
4992 spin_unlock(&root->fs_info->super_lock);
4993
4994 len = strnlen(label, BTRFS_LABEL_SIZE);
jeff.liu867ab662013-01-05 02:48:01 +00004995
4996 if (len == BTRFS_LABEL_SIZE) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004997 btrfs_warn(root->fs_info,
4998 "label is too long, return the first %zu bytes", --len);
jeff.liu867ab662013-01-05 02:48:01 +00004999 }
5000
jeff.liu867ab662013-01-05 02:48:01 +00005001 ret = copy_to_user(arg, label, len);
jeff.liu867ab662013-01-05 02:48:01 +00005002
5003 return ret ? -EFAULT : 0;
5004}
5005
jeff.liua8bfd4a2013-01-05 02:48:08 +00005006static int btrfs_ioctl_set_fslabel(struct file *file, void __user *arg)
5007{
Al Viro6d0379e2013-06-16 19:32:35 +04005008 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
jeff.liua8bfd4a2013-01-05 02:48:08 +00005009 struct btrfs_super_block *super_block = root->fs_info->super_copy;
5010 struct btrfs_trans_handle *trans;
5011 char label[BTRFS_LABEL_SIZE];
5012 int ret;
5013
5014 if (!capable(CAP_SYS_ADMIN))
5015 return -EPERM;
5016
5017 if (copy_from_user(label, arg, sizeof(label)))
5018 return -EFAULT;
5019
5020 if (strnlen(label, BTRFS_LABEL_SIZE) == BTRFS_LABEL_SIZE) {
Frank Holtonefe120a2013-12-20 11:37:06 -05005021 btrfs_err(root->fs_info, "unable to set label with more than %d bytes",
jeff.liua8bfd4a2013-01-05 02:48:08 +00005022 BTRFS_LABEL_SIZE - 1);
5023 return -EINVAL;
5024 }
5025
5026 ret = mnt_want_write_file(file);
5027 if (ret)
5028 return ret;
5029
jeff.liua8bfd4a2013-01-05 02:48:08 +00005030 trans = btrfs_start_transaction(root, 0);
5031 if (IS_ERR(trans)) {
5032 ret = PTR_ERR(trans);
5033 goto out_unlock;
5034 }
5035
Anand Jaina1b83ac2013-07-19 17:39:32 +08005036 spin_lock(&root->fs_info->super_lock);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005037 strcpy(super_block->label, label);
Anand Jaina1b83ac2013-07-19 17:39:32 +08005038 spin_unlock(&root->fs_info->super_lock);
Jeff Mahoneyd0270ac2014-02-07 14:33:57 +01005039 ret = btrfs_commit_transaction(trans, root);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005040
5041out_unlock:
jeff.liua8bfd4a2013-01-05 02:48:08 +00005042 mnt_drop_write_file(file);
5043 return ret;
5044}
5045
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005046#define INIT_FEATURE_FLAGS(suffix) \
5047 { .compat_flags = BTRFS_FEATURE_COMPAT_##suffix, \
5048 .compat_ro_flags = BTRFS_FEATURE_COMPAT_RO_##suffix, \
5049 .incompat_flags = BTRFS_FEATURE_INCOMPAT_##suffix }
5050
5051static int btrfs_ioctl_get_supported_features(struct file *file,
5052 void __user *arg)
5053{
5054 static struct btrfs_ioctl_feature_flags features[3] = {
5055 INIT_FEATURE_FLAGS(SUPP),
5056 INIT_FEATURE_FLAGS(SAFE_SET),
5057 INIT_FEATURE_FLAGS(SAFE_CLEAR)
5058 };
5059
5060 if (copy_to_user(arg, &features, sizeof(features)))
5061 return -EFAULT;
5062
5063 return 0;
5064}
5065
5066static int btrfs_ioctl_get_features(struct file *file, void __user *arg)
5067{
5068 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
5069 struct btrfs_super_block *super_block = root->fs_info->super_copy;
5070 struct btrfs_ioctl_feature_flags features;
5071
5072 features.compat_flags = btrfs_super_compat_flags(super_block);
5073 features.compat_ro_flags = btrfs_super_compat_ro_flags(super_block);
5074 features.incompat_flags = btrfs_super_incompat_flags(super_block);
5075
5076 if (copy_to_user(arg, &features, sizeof(features)))
5077 return -EFAULT;
5078
5079 return 0;
5080}
5081
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005082static int check_feature_bits(struct btrfs_root *root,
5083 enum btrfs_feature_set set,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005084 u64 change_mask, u64 flags, u64 supported_flags,
5085 u64 safe_set, u64 safe_clear)
5086{
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005087 const char *type = btrfs_feature_set_names[set];
5088 char *names;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005089 u64 disallowed, unsupported;
5090 u64 set_mask = flags & change_mask;
5091 u64 clear_mask = ~flags & change_mask;
5092
5093 unsupported = set_mask & ~supported_flags;
5094 if (unsupported) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005095 names = btrfs_printable_features(set, unsupported);
5096 if (names) {
5097 btrfs_warn(root->fs_info,
5098 "this kernel does not support the %s feature bit%s",
5099 names, strchr(names, ',') ? "s" : "");
5100 kfree(names);
5101 } else
5102 btrfs_warn(root->fs_info,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005103 "this kernel does not support %s bits 0x%llx",
5104 type, unsupported);
5105 return -EOPNOTSUPP;
5106 }
5107
5108 disallowed = set_mask & ~safe_set;
5109 if (disallowed) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005110 names = btrfs_printable_features(set, disallowed);
5111 if (names) {
5112 btrfs_warn(root->fs_info,
5113 "can't set the %s feature bit%s while mounted",
5114 names, strchr(names, ',') ? "s" : "");
5115 kfree(names);
5116 } else
5117 btrfs_warn(root->fs_info,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005118 "can't set %s bits 0x%llx while mounted",
5119 type, disallowed);
5120 return -EPERM;
5121 }
5122
5123 disallowed = clear_mask & ~safe_clear;
5124 if (disallowed) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005125 names = btrfs_printable_features(set, disallowed);
5126 if (names) {
5127 btrfs_warn(root->fs_info,
5128 "can't clear the %s feature bit%s while mounted",
5129 names, strchr(names, ',') ? "s" : "");
5130 kfree(names);
5131 } else
5132 btrfs_warn(root->fs_info,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005133 "can't clear %s bits 0x%llx while mounted",
5134 type, disallowed);
5135 return -EPERM;
5136 }
5137
5138 return 0;
5139}
5140
5141#define check_feature(root, change_mask, flags, mask_base) \
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005142check_feature_bits(root, FEAT_##mask_base, change_mask, flags, \
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005143 BTRFS_FEATURE_ ## mask_base ## _SUPP, \
5144 BTRFS_FEATURE_ ## mask_base ## _SAFE_SET, \
5145 BTRFS_FEATURE_ ## mask_base ## _SAFE_CLEAR)
5146
5147static int btrfs_ioctl_set_features(struct file *file, void __user *arg)
5148{
5149 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
5150 struct btrfs_super_block *super_block = root->fs_info->super_copy;
5151 struct btrfs_ioctl_feature_flags flags[2];
5152 struct btrfs_trans_handle *trans;
5153 u64 newflags;
5154 int ret;
5155
5156 if (!capable(CAP_SYS_ADMIN))
5157 return -EPERM;
5158
5159 if (copy_from_user(flags, arg, sizeof(flags)))
5160 return -EFAULT;
5161
5162 /* Nothing to do */
5163 if (!flags[0].compat_flags && !flags[0].compat_ro_flags &&
5164 !flags[0].incompat_flags)
5165 return 0;
5166
5167 ret = check_feature(root, flags[0].compat_flags,
5168 flags[1].compat_flags, COMPAT);
5169 if (ret)
5170 return ret;
5171
5172 ret = check_feature(root, flags[0].compat_ro_flags,
5173 flags[1].compat_ro_flags, COMPAT_RO);
5174 if (ret)
5175 return ret;
5176
5177 ret = check_feature(root, flags[0].incompat_flags,
5178 flags[1].incompat_flags, INCOMPAT);
5179 if (ret)
5180 return ret;
5181
David Sterba8051aa12014-02-07 14:34:04 +01005182 trans = btrfs_start_transaction(root, 0);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005183 if (IS_ERR(trans))
5184 return PTR_ERR(trans);
5185
5186 spin_lock(&root->fs_info->super_lock);
5187 newflags = btrfs_super_compat_flags(super_block);
5188 newflags |= flags[0].compat_flags & flags[1].compat_flags;
5189 newflags &= ~(flags[0].compat_flags & ~flags[1].compat_flags);
5190 btrfs_set_super_compat_flags(super_block, newflags);
5191
5192 newflags = btrfs_super_compat_ro_flags(super_block);
5193 newflags |= flags[0].compat_ro_flags & flags[1].compat_ro_flags;
5194 newflags &= ~(flags[0].compat_ro_flags & ~flags[1].compat_ro_flags);
5195 btrfs_set_super_compat_ro_flags(super_block, newflags);
5196
5197 newflags = btrfs_super_incompat_flags(super_block);
5198 newflags |= flags[0].incompat_flags & flags[1].incompat_flags;
5199 newflags &= ~(flags[0].incompat_flags & ~flags[1].incompat_flags);
5200 btrfs_set_super_incompat_flags(super_block, newflags);
5201 spin_unlock(&root->fs_info->super_lock);
5202
Jeff Mahoneyd0270ac2014-02-07 14:33:57 +01005203 return btrfs_commit_transaction(trans, root);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005204}
5205
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005206long btrfs_ioctl(struct file *file, unsigned int
5207 cmd, unsigned long arg)
5208{
Al Viro496ad9a2013-01-23 17:07:38 -05005209 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05005210 void __user *argp = (void __user *)arg;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005211
5212 switch (cmd) {
Christoph Hellwig6cbff002009-04-17 10:37:41 +02005213 case FS_IOC_GETFLAGS:
5214 return btrfs_ioctl_getflags(file, argp);
5215 case FS_IOC_SETFLAGS:
5216 return btrfs_ioctl_setflags(file, argp);
5217 case FS_IOC_GETVERSION:
5218 return btrfs_ioctl_getversion(file, argp);
Li Dongyangf7039b12011-03-24 10:24:28 +00005219 case FITRIM:
5220 return btrfs_ioctl_fitrim(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005221 case BTRFS_IOC_SNAP_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005222 return btrfs_ioctl_snap_create(file, argp, 0);
Li Zefanfdfb1e42010-12-10 06:41:56 +00005223 case BTRFS_IOC_SNAP_CREATE_V2:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005224 return btrfs_ioctl_snap_create_v2(file, argp, 0);
Chris Mason3de45862008-11-17 21:02:50 -05005225 case BTRFS_IOC_SUBVOL_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005226 return btrfs_ioctl_snap_create(file, argp, 1);
Arne Jansen6f72c7e2011-09-14 15:58:21 +02005227 case BTRFS_IOC_SUBVOL_CREATE_V2:
5228 return btrfs_ioctl_snap_create_v2(file, argp, 1);
Yan, Zheng76dda932009-09-21 16:00:26 -04005229 case BTRFS_IOC_SNAP_DESTROY:
5230 return btrfs_ioctl_snap_destroy(file, argp);
Li Zefan0caa1022010-12-20 16:30:25 +08005231 case BTRFS_IOC_SUBVOL_GETFLAGS:
5232 return btrfs_ioctl_subvol_getflags(file, argp);
5233 case BTRFS_IOC_SUBVOL_SETFLAGS:
5234 return btrfs_ioctl_subvol_setflags(file, argp);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00005235 case BTRFS_IOC_DEFAULT_SUBVOL:
5236 return btrfs_ioctl_default_subvol(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005237 case BTRFS_IOC_DEFRAG:
Chris Mason1e701a32010-03-11 09:42:04 -05005238 return btrfs_ioctl_defrag(file, NULL);
5239 case BTRFS_IOC_DEFRAG_RANGE:
5240 return btrfs_ioctl_defrag(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005241 case BTRFS_IOC_RESIZE:
Miao Xie198605a2012-11-26 08:43:45 +00005242 return btrfs_ioctl_resize(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005243 case BTRFS_IOC_ADD_DEV:
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05005244 return btrfs_ioctl_add_dev(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005245 case BTRFS_IOC_RM_DEV:
Miao Xieda249272012-11-26 08:44:50 +00005246 return btrfs_ioctl_rm_dev(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005247 case BTRFS_IOC_FS_INFO:
5248 return btrfs_ioctl_fs_info(root, argp);
5249 case BTRFS_IOC_DEV_INFO:
5250 return btrfs_ioctl_dev_info(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005251 case BTRFS_IOC_BALANCE:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08005252 return btrfs_ioctl_balance(file, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005253 case BTRFS_IOC_CLONE:
Sage Weilc5c9cd42008-11-12 14:32:25 -05005254 return btrfs_ioctl_clone(file, arg, 0, 0, 0);
5255 case BTRFS_IOC_CLONE_RANGE:
Christoph Hellwig7a865e82008-12-02 09:52:24 -05005256 return btrfs_ioctl_clone_range(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005257 case BTRFS_IOC_TRANS_START:
5258 return btrfs_ioctl_trans_start(file);
5259 case BTRFS_IOC_TRANS_END:
5260 return btrfs_ioctl_trans_end(file);
Chris Masonac8e9812010-02-28 15:39:26 -05005261 case BTRFS_IOC_TREE_SEARCH:
5262 return btrfs_ioctl_tree_search(file, argp);
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01005263 case BTRFS_IOC_TREE_SEARCH_V2:
5264 return btrfs_ioctl_tree_search_v2(file, argp);
Chris Masonac8e9812010-02-28 15:39:26 -05005265 case BTRFS_IOC_INO_LOOKUP:
5266 return btrfs_ioctl_ino_lookup(file, argp);
Jan Schmidtd7728c92011-07-07 16:48:38 +02005267 case BTRFS_IOC_INO_PATHS:
5268 return btrfs_ioctl_ino_to_path(root, argp);
5269 case BTRFS_IOC_LOGICAL_INO:
5270 return btrfs_ioctl_logical_to_ino(root, argp);
Josef Bacik1406e432010-01-13 18:19:06 +00005271 case BTRFS_IOC_SPACE_INFO:
5272 return btrfs_ioctl_space_info(root, argp);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005273 case BTRFS_IOC_SYNC: {
5274 int ret;
5275
Miao Xie6c255e62014-03-06 13:55:01 +08005276 ret = btrfs_start_delalloc_roots(root->fs_info, 0, -1);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005277 if (ret)
5278 return ret;
5279 ret = btrfs_sync_fs(file->f_dentry->d_sb, 1);
5280 return ret;
5281 }
Sage Weil46204592010-10-29 15:41:32 -04005282 case BTRFS_IOC_START_SYNC:
Miao Xie9a8c28b2012-11-26 08:40:43 +00005283 return btrfs_ioctl_start_sync(root, argp);
Sage Weil46204592010-10-29 15:41:32 -04005284 case BTRFS_IOC_WAIT_SYNC:
Miao Xie9a8c28b2012-11-26 08:40:43 +00005285 return btrfs_ioctl_wait_sync(root, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005286 case BTRFS_IOC_SCRUB:
Miao Xieb8e95482012-11-26 08:48:01 +00005287 return btrfs_ioctl_scrub(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005288 case BTRFS_IOC_SCRUB_CANCEL:
5289 return btrfs_ioctl_scrub_cancel(root, argp);
5290 case BTRFS_IOC_SCRUB_PROGRESS:
5291 return btrfs_ioctl_scrub_progress(root, argp);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02005292 case BTRFS_IOC_BALANCE_V2:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08005293 return btrfs_ioctl_balance(file, argp);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02005294 case BTRFS_IOC_BALANCE_CTL:
5295 return btrfs_ioctl_balance_ctl(root, arg);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02005296 case BTRFS_IOC_BALANCE_PROGRESS:
5297 return btrfs_ioctl_balance_progress(root, argp);
Alexander Block8ea05e32012-07-25 17:35:53 +02005298 case BTRFS_IOC_SET_RECEIVED_SUBVOL:
5299 return btrfs_ioctl_set_received_subvol(file, argp);
Hugo Millsabccd002014-01-30 20:17:00 +00005300#ifdef CONFIG_64BIT
5301 case BTRFS_IOC_SET_RECEIVED_SUBVOL_32:
5302 return btrfs_ioctl_set_received_subvol_32(file, argp);
5303#endif
Alexander Block31db9f72012-07-25 23:19:24 +02005304 case BTRFS_IOC_SEND:
5305 return btrfs_ioctl_send(file, argp);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02005306 case BTRFS_IOC_GET_DEV_STATS:
David Sterbab27f7c02012-06-22 06:30:39 -06005307 return btrfs_ioctl_get_dev_stats(root, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005308 case BTRFS_IOC_QUOTA_CTL:
Miao Xie905b0dd2012-11-26 08:50:11 +00005309 return btrfs_ioctl_quota_ctl(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005310 case BTRFS_IOC_QGROUP_ASSIGN:
Miao Xie905b0dd2012-11-26 08:50:11 +00005311 return btrfs_ioctl_qgroup_assign(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005312 case BTRFS_IOC_QGROUP_CREATE:
Miao Xie905b0dd2012-11-26 08:50:11 +00005313 return btrfs_ioctl_qgroup_create(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005314 case BTRFS_IOC_QGROUP_LIMIT:
Miao Xie905b0dd2012-11-26 08:50:11 +00005315 return btrfs_ioctl_qgroup_limit(file, argp);
Jan Schmidt2f232032013-04-25 16:04:51 +00005316 case BTRFS_IOC_QUOTA_RESCAN:
5317 return btrfs_ioctl_quota_rescan(file, argp);
5318 case BTRFS_IOC_QUOTA_RESCAN_STATUS:
5319 return btrfs_ioctl_quota_rescan_status(file, argp);
Jan Schmidt57254b6e2013-05-06 19:14:17 +00005320 case BTRFS_IOC_QUOTA_RESCAN_WAIT:
5321 return btrfs_ioctl_quota_rescan_wait(file, argp);
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01005322 case BTRFS_IOC_DEV_REPLACE:
5323 return btrfs_ioctl_dev_replace(root, argp);
jeff.liu867ab662013-01-05 02:48:01 +00005324 case BTRFS_IOC_GET_FSLABEL:
5325 return btrfs_ioctl_get_fslabel(file, argp);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005326 case BTRFS_IOC_SET_FSLABEL:
5327 return btrfs_ioctl_set_fslabel(file, argp);
Mark Fasheh416161d2013-08-06 11:42:51 -07005328 case BTRFS_IOC_FILE_EXTENT_SAME:
5329 return btrfs_ioctl_file_extent_same(file, argp);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005330 case BTRFS_IOC_GET_SUPPORTED_FEATURES:
5331 return btrfs_ioctl_get_supported_features(file, argp);
5332 case BTRFS_IOC_GET_FEATURES:
5333 return btrfs_ioctl_get_features(file, argp);
5334 case BTRFS_IOC_SET_FEATURES:
5335 return btrfs_ioctl_set_features(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005336 }
5337
5338 return -ENOTTY;
5339}