blob: 3419f5e72bf971164b4d6f74b69fcc5b42185972 [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 {
Filipe Manana78a017a2014-09-11 11:44:49 +0100335 ret = btrfs_set_prop(inode, "btrfs.compression", NULL, 0, 0);
336 if (ret && ret != -ENODATA)
337 goto out_drop;
Li Zefanebcb9042011-04-15 03:03:17 +0000338 ip->flags &= ~(BTRFS_INODE_COMPRESS | BTRFS_INODE_NOCOMPRESS);
Liu Bo75e7cb72011-03-22 10:12:20 +0000339 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200340
Li Zefan4da6f1a2011-12-29 13:39:50 +0800341 trans = btrfs_start_transaction(root, 1);
Li Zefanf062abf2011-12-29 13:36:45 +0800342 if (IS_ERR(trans)) {
343 ret = PTR_ERR(trans);
344 goto out_drop;
345 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200346
Li Zefan306424cc2011-12-14 20:12:02 -0500347 btrfs_update_iflags(inode);
Josef Bacik0c4d2d92012-04-05 15:03:02 -0400348 inode_inc_iversion(inode);
Li Zefan306424cc2011-12-14 20:12:02 -0500349 inode->i_ctime = CURRENT_TIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200350 ret = btrfs_update_inode(trans, root, inode);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200351
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200352 btrfs_end_transaction(trans, root);
Li Zefanf062abf2011-12-29 13:36:45 +0800353 out_drop:
354 if (ret) {
355 ip->flags = ip_oldflags;
356 inode->i_flags = i_oldflags;
357 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200358
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200359 out_unlock:
360 mutex_unlock(&inode->i_mutex);
Jan Karae7848682012-06-12 16:20:32 +0200361 mnt_drop_write_file(file);
liubo2d4e6f62011-02-24 09:38:16 +0000362 return ret;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200363}
364
365static int btrfs_ioctl_getversion(struct file *file, int __user *arg)
366{
Al Viro496ad9a2013-01-23 17:07:38 -0500367 struct inode *inode = file_inode(file);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200368
369 return put_user(inode->i_generation, arg);
370}
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400371
Li Dongyangf7039b12011-03-24 10:24:28 +0000372static noinline int btrfs_ioctl_fitrim(struct file *file, void __user *arg)
373{
Al Viro54563d42013-09-01 15:57:51 -0400374 struct btrfs_fs_info *fs_info = btrfs_sb(file_inode(file)->i_sb);
Li Dongyangf7039b12011-03-24 10:24:28 +0000375 struct btrfs_device *device;
376 struct request_queue *q;
377 struct fstrim_range range;
378 u64 minlen = ULLONG_MAX;
379 u64 num_devices = 0;
Al Viro815745c2011-11-17 15:40:49 -0500380 u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy);
Li Dongyangf7039b12011-03-24 10:24:28 +0000381 int ret;
382
383 if (!capable(CAP_SYS_ADMIN))
384 return -EPERM;
385
Xiao Guangrong1f781602011-04-20 10:09:16 +0000386 rcu_read_lock();
387 list_for_each_entry_rcu(device, &fs_info->fs_devices->devices,
388 dev_list) {
Li Dongyangf7039b12011-03-24 10:24:28 +0000389 if (!device->bdev)
390 continue;
391 q = bdev_get_queue(device->bdev);
392 if (blk_queue_discard(q)) {
393 num_devices++;
394 minlen = min((u64)q->limits.discard_granularity,
395 minlen);
396 }
397 }
Xiao Guangrong1f781602011-04-20 10:09:16 +0000398 rcu_read_unlock();
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200399
Li Dongyangf7039b12011-03-24 10:24:28 +0000400 if (!num_devices)
401 return -EOPNOTSUPP;
Li Dongyangf7039b12011-03-24 10:24:28 +0000402 if (copy_from_user(&range, arg, sizeof(range)))
403 return -EFAULT;
Lukas Czernere515c182012-10-16 09:34:36 +0000404 if (range.start > total_bytes ||
405 range.len < fs_info->sb->s_blocksize)
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200406 return -EINVAL;
Li Dongyangf7039b12011-03-24 10:24:28 +0000407
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200408 range.len = min(range.len, total_bytes - range.start);
Li Dongyangf7039b12011-03-24 10:24:28 +0000409 range.minlen = max(range.minlen, minlen);
Al Viro815745c2011-11-17 15:40:49 -0500410 ret = btrfs_trim_fs(fs_info->tree_root, &range);
Li Dongyangf7039b12011-03-24 10:24:28 +0000411 if (ret < 0)
412 return ret;
413
414 if (copy_to_user(arg, &range, sizeof(range)))
415 return -EFAULT;
416
417 return 0;
418}
419
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200420int btrfs_is_empty_uuid(u8 *uuid)
421{
Chris Mason46e0f662013-11-15 12:14:55 +0100422 int i;
423
424 for (i = 0; i < BTRFS_UUID_SIZE; i++) {
425 if (uuid[i])
426 return 0;
427 }
428 return 1;
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200429}
430
Miao Xied5c12072013-02-28 10:04:33 +0000431static noinline int create_subvol(struct inode *dir,
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400432 struct dentry *dentry,
Sage Weil72fd0322010-10-29 15:41:32 -0400433 char *name, int namelen,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200434 u64 *async_transid,
Miao Xie8696c532013-02-07 06:02:44 +0000435 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400436{
437 struct btrfs_trans_handle *trans;
438 struct btrfs_key key;
439 struct btrfs_root_item root_item;
440 struct btrfs_inode_item *inode_item;
441 struct extent_buffer *leaf;
Miao Xied5c12072013-02-28 10:04:33 +0000442 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -0400443 struct btrfs_root *new_root;
Miao Xied5c12072013-02-28 10:04:33 +0000444 struct btrfs_block_rsv block_rsv;
Alexander Block8ea05e32012-07-25 17:35:53 +0200445 struct timespec cur_time = CURRENT_TIME;
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900446 struct inode *inode;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400447 int ret;
448 int err;
449 u64 objectid;
450 u64 new_dirid = BTRFS_FIRST_FREE_OBJECTID;
Chris Mason3de45862008-11-17 21:02:50 -0500451 u64 index = 0;
Miao Xied5c12072013-02-28 10:04:33 +0000452 u64 qgroup_reserved;
Alexander Block8ea05e32012-07-25 17:35:53 +0200453 uuid_le new_uuid;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400454
Li Zefan581bb052011-04-20 10:06:11 +0800455 ret = btrfs_find_free_objectid(root->fs_info->tree_root, &objectid);
Al Viro2fbe8c82011-07-16 21:38:06 -0400456 if (ret)
Yan, Zhenga22285a2010-05-16 10:48:46 -0400457 return ret;
Josef Bacik6a912212010-11-20 09:48:00 +0000458
Miao Xied5c12072013-02-28 10:04:33 +0000459 btrfs_init_block_rsv(&block_rsv, BTRFS_BLOCK_RSV_TEMP);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400460 /*
Miao Xied5c12072013-02-28 10:04:33 +0000461 * The same as the snapshot creation, please see the comment
462 * of create_snapshot().
Josef Bacik9ed74f22009-09-11 16:12:44 -0400463 */
Miao Xied5c12072013-02-28 10:04:33 +0000464 ret = btrfs_subvolume_reserve_metadata(root, &block_rsv,
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200465 8, &qgroup_reserved, false);
Miao Xied5c12072013-02-28 10:04:33 +0000466 if (ret)
467 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400468
Miao Xied5c12072013-02-28 10:04:33 +0000469 trans = btrfs_start_transaction(root, 0);
470 if (IS_ERR(trans)) {
471 ret = PTR_ERR(trans);
Liu Bode6e8202014-01-09 14:57:06 +0800472 btrfs_subvolume_release_metadata(root, &block_rsv,
473 qgroup_reserved);
474 return ret;
Miao Xied5c12072013-02-28 10:04:33 +0000475 }
476 trans->block_rsv = &block_rsv;
477 trans->bytes_reserved = block_rsv.size;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400478
Miao Xie8696c532013-02-07 06:02:44 +0000479 ret = btrfs_qgroup_inherit(trans, root->fs_info, 0, objectid, inherit);
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200480 if (ret)
481 goto fail;
482
David Sterba4d75f8a2014-06-15 01:54:12 +0200483 leaf = btrfs_alloc_tree_block(trans, root, 0, objectid, NULL, 0, 0, 0);
Josef Bacik8e8a1e32008-07-24 12:17:14 -0400484 if (IS_ERR(leaf)) {
485 ret = PTR_ERR(leaf);
486 goto fail;
487 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400488
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400489 memset_extent_buffer(leaf, 0, 0, sizeof(struct btrfs_header));
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400490 btrfs_set_header_bytenr(leaf, leaf->start);
491 btrfs_set_header_generation(leaf, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400492 btrfs_set_header_backref_rev(leaf, BTRFS_MIXED_BACKREF_REV);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400493 btrfs_set_header_owner(leaf, objectid);
494
Ross Kirk0a4e5582013-09-24 10:12:38 +0100495 write_extent_buffer(leaf, root->fs_info->fsid, btrfs_header_fsid(),
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400496 BTRFS_FSID_SIZE);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400497 write_extent_buffer(leaf, root->fs_info->chunk_tree_uuid,
Geert Uytterhoevenb308bc22013-08-20 13:20:15 +0200498 btrfs_header_chunk_tree_uuid(leaf),
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400499 BTRFS_UUID_SIZE);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400500 btrfs_mark_buffer_dirty(leaf);
501
Alexander Block8ea05e32012-07-25 17:35:53 +0200502 memset(&root_item, 0, sizeof(root_item));
503
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400504 inode_item = &root_item.inode;
Qu Wenruo3cae2102013-07-16 11:19:18 +0800505 btrfs_set_stack_inode_generation(inode_item, 1);
506 btrfs_set_stack_inode_size(inode_item, 3);
507 btrfs_set_stack_inode_nlink(inode_item, 1);
David Sterba707e8a02014-06-04 19:22:26 +0200508 btrfs_set_stack_inode_nbytes(inode_item, root->nodesize);
Qu Wenruo3cae2102013-07-16 11:19:18 +0800509 btrfs_set_stack_inode_mode(inode_item, S_IFDIR | 0755);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400510
Qu Wenruo3cae2102013-07-16 11:19:18 +0800511 btrfs_set_root_flags(&root_item, 0);
512 btrfs_set_root_limit(&root_item, 0);
513 btrfs_set_stack_inode_flags(inode_item, BTRFS_INODE_ROOT_ITEM_INIT);
Li Zefan08fe4db2011-03-28 02:01:25 +0000514
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400515 btrfs_set_root_bytenr(&root_item, leaf->start);
Yan Zheng84234f32008-10-29 14:49:05 -0400516 btrfs_set_root_generation(&root_item, trans->transid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400517 btrfs_set_root_level(&root_item, 0);
518 btrfs_set_root_refs(&root_item, 1);
Yan, Zheng86b9f2e2009-11-12 09:36:50 +0000519 btrfs_set_root_used(&root_item, leaf->len);
Yan Zheng80ff3852008-10-30 14:20:02 -0400520 btrfs_set_root_last_snapshot(&root_item, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400521
Alexander Block8ea05e32012-07-25 17:35:53 +0200522 btrfs_set_root_generation_v2(&root_item,
523 btrfs_root_generation(&root_item));
524 uuid_le_gen(&new_uuid);
525 memcpy(root_item.uuid, new_uuid.b, BTRFS_UUID_SIZE);
Qu Wenruo3cae2102013-07-16 11:19:18 +0800526 btrfs_set_stack_timespec_sec(&root_item.otime, cur_time.tv_sec);
527 btrfs_set_stack_timespec_nsec(&root_item.otime, cur_time.tv_nsec);
Alexander Block8ea05e32012-07-25 17:35:53 +0200528 root_item.ctime = root_item.otime;
529 btrfs_set_root_ctransid(&root_item, trans->transid);
530 btrfs_set_root_otransid(&root_item, trans->transid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400531
Chris Mason925baed2008-06-25 16:01:30 -0400532 btrfs_tree_unlock(leaf);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400533 free_extent_buffer(leaf);
534 leaf = NULL;
535
536 btrfs_set_root_dirid(&root_item, new_dirid);
537
538 key.objectid = objectid;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400539 key.offset = 0;
David Sterba962a2982014-06-04 18:41:45 +0200540 key.type = BTRFS_ROOT_ITEM_KEY;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400541 ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
542 &root_item);
543 if (ret)
544 goto fail;
545
Yan, Zheng76dda932009-09-21 16:00:26 -0400546 key.offset = (u64)-1;
547 new_root = btrfs_read_fs_root_no_name(root->fs_info, &key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100548 if (IS_ERR(new_root)) {
549 btrfs_abort_transaction(trans, root, PTR_ERR(new_root));
550 ret = PTR_ERR(new_root);
551 goto fail;
552 }
Yan, Zheng76dda932009-09-21 16:00:26 -0400553
554 btrfs_record_root_in_trans(trans, new_root);
555
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000556 ret = btrfs_create_subvol_root(trans, new_root, root, new_dirid);
Mark Fashehce598972011-07-26 11:32:23 -0700557 if (ret) {
558 /* We potentially lose an unused inode item here */
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100559 btrfs_abort_transaction(trans, root, ret);
Mark Fashehce598972011-07-26 11:32:23 -0700560 goto fail;
561 }
562
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400563 /*
564 * insert the directory item
565 */
Chris Mason3de45862008-11-17 21:02:50 -0500566 ret = btrfs_set_inode_index(dir, &index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100567 if (ret) {
568 btrfs_abort_transaction(trans, root, ret);
569 goto fail;
570 }
Chris Mason3de45862008-11-17 21:02:50 -0500571
572 ret = btrfs_insert_dir_item(trans, root,
Miao Xie16cdcec2011-04-22 18:12:22 +0800573 name, namelen, dir, &key,
Chris Mason3de45862008-11-17 21:02:50 -0500574 BTRFS_FT_DIR, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100575 if (ret) {
576 btrfs_abort_transaction(trans, root, ret);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400577 goto fail;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100578 }
Chris Mason0660b5a2008-11-17 20:37:39 -0500579
Yan Zheng52c26172009-01-05 15:43:43 -0500580 btrfs_i_size_write(dir, dir->i_size + namelen * 2);
581 ret = btrfs_update_inode(trans, root, dir);
582 BUG_ON(ret);
583
Chris Mason0660b5a2008-11-17 20:37:39 -0500584 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -0400585 objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +0800586 btrfs_ino(dir), index, name, namelen);
Chris Mason0660b5a2008-11-17 20:37:39 -0500587 BUG_ON(ret);
588
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200589 ret = btrfs_uuid_tree_add(trans, root->fs_info->uuid_root,
590 root_item.uuid, BTRFS_UUID_KEY_SUBVOL,
591 objectid);
592 if (ret)
593 btrfs_abort_transaction(trans, root, ret);
594
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400595fail:
Miao Xied5c12072013-02-28 10:04:33 +0000596 trans->block_rsv = NULL;
597 trans->bytes_reserved = 0;
Liu Bode6e8202014-01-09 14:57:06 +0800598 btrfs_subvolume_release_metadata(root, &block_rsv, qgroup_reserved);
599
Sage Weil72fd0322010-10-29 15:41:32 -0400600 if (async_transid) {
601 *async_transid = trans->transid;
602 err = btrfs_commit_transaction_async(trans, root, 1);
Miao Xie00d71c92013-03-04 09:45:06 +0000603 if (err)
604 err = btrfs_commit_transaction(trans, root);
Sage Weil72fd0322010-10-29 15:41:32 -0400605 } else {
606 err = btrfs_commit_transaction(trans, root);
607 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400608 if (err && !ret)
609 ret = err;
Chris Mason1a65e242013-02-06 12:06:02 -0500610
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900611 if (!ret) {
612 inode = btrfs_lookup_dentry(dir, dentry);
Liu Bode6e8202014-01-09 14:57:06 +0800613 if (IS_ERR(inode))
614 return PTR_ERR(inode);
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900615 d_instantiate(dentry, inode);
616 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400617 return ret;
618}
619
Filipe Manana9ea24bb2014-10-29 11:57:59 +0000620static void btrfs_wait_for_no_snapshoting_writes(struct btrfs_root *root)
Miao Xie8257b2d2014-03-06 13:38:19 +0800621{
622 s64 writers;
623 DEFINE_WAIT(wait);
624
625 do {
626 prepare_to_wait(&root->subv_writers->wait, &wait,
627 TASK_UNINTERRUPTIBLE);
628
629 writers = percpu_counter_sum(&root->subv_writers->counter);
630 if (writers)
631 schedule();
632
633 finish_wait(&root->subv_writers->wait, &wait);
634 } while (writers);
635}
636
Miao Xiee9662f72013-02-28 10:01:15 +0000637static int create_snapshot(struct btrfs_root *root, struct inode *dir,
638 struct dentry *dentry, char *name, int namelen,
639 u64 *async_transid, bool readonly,
640 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400641{
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000642 struct inode *inode;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400643 struct btrfs_pending_snapshot *pending_snapshot;
644 struct btrfs_trans_handle *trans;
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000645 int ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400646
Miao Xie27cdeb72014-04-02 19:51:05 +0800647 if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400648 return -EINVAL;
649
Miao Xie8257b2d2014-03-06 13:38:19 +0800650 atomic_inc(&root->will_be_snapshoted);
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100651 smp_mb__after_atomic();
Filipe Manana9ea24bb2014-10-29 11:57:59 +0000652 btrfs_wait_for_no_snapshoting_writes(root);
Miao Xie8257b2d2014-03-06 13:38:19 +0800653
Miao Xie6a038432013-05-15 07:48:24 +0000654 ret = btrfs_start_delalloc_inodes(root, 0);
655 if (ret)
Miao Xie8257b2d2014-03-06 13:38:19 +0800656 goto out;
Miao Xie6a038432013-05-15 07:48:24 +0000657
Miao Xieb0244192013-11-04 23:13:25 +0800658 btrfs_wait_ordered_extents(root, -1);
Miao Xie6a038432013-05-15 07:48:24 +0000659
Yan, Zhenga22285a2010-05-16 10:48:46 -0400660 pending_snapshot = kzalloc(sizeof(*pending_snapshot), GFP_NOFS);
Miao Xie8257b2d2014-03-06 13:38:19 +0800661 if (!pending_snapshot) {
662 ret = -ENOMEM;
663 goto out;
664 }
Yan, Zhenga22285a2010-05-16 10:48:46 -0400665
Miao Xie66d8f3d2012-09-06 04:02:28 -0600666 btrfs_init_block_rsv(&pending_snapshot->block_rsv,
667 BTRFS_BLOCK_RSV_TEMP);
Miao Xied5c12072013-02-28 10:04:33 +0000668 /*
669 * 1 - parent dir inode
670 * 2 - dir entries
671 * 1 - root item
672 * 2 - root ref/backref
673 * 1 - root of snapshot
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200674 * 1 - UUID item
Miao Xied5c12072013-02-28 10:04:33 +0000675 */
676 ret = btrfs_subvolume_reserve_metadata(BTRFS_I(dir)->root,
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200677 &pending_snapshot->block_rsv, 8,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -0400678 &pending_snapshot->qgroup_reserved,
679 false);
Miao Xied5c12072013-02-28 10:04:33 +0000680 if (ret)
Miao Xie8257b2d2014-03-06 13:38:19 +0800681 goto free;
Miao Xied5c12072013-02-28 10:04:33 +0000682
Yan, Zhenga22285a2010-05-16 10:48:46 -0400683 pending_snapshot->dentry = dentry;
684 pending_snapshot->root = root;
Li Zefanb83cc962010-12-20 16:04:08 +0800685 pending_snapshot->readonly = readonly;
Miao Xiee9662f72013-02-28 10:01:15 +0000686 pending_snapshot->dir = dir;
Miao Xie8696c532013-02-07 06:02:44 +0000687 pending_snapshot->inherit = inherit;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400688
Miao Xied5c12072013-02-28 10:04:33 +0000689 trans = btrfs_start_transaction(root, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400690 if (IS_ERR(trans)) {
691 ret = PTR_ERR(trans);
692 goto fail;
693 }
694
Josef Bacik83515832011-06-14 15:16:14 -0400695 spin_lock(&root->fs_info->trans_lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400696 list_add(&pending_snapshot->list,
697 &trans->transaction->pending_snapshots);
Josef Bacik83515832011-06-14 15:16:14 -0400698 spin_unlock(&root->fs_info->trans_lock);
Sage Weil72fd0322010-10-29 15:41:32 -0400699 if (async_transid) {
700 *async_transid = trans->transid;
701 ret = btrfs_commit_transaction_async(trans,
702 root->fs_info->extent_root, 1);
Miao Xie00d71c92013-03-04 09:45:06 +0000703 if (ret)
704 ret = btrfs_commit_transaction(trans, root);
Sage Weil72fd0322010-10-29 15:41:32 -0400705 } else {
706 ret = btrfs_commit_transaction(trans,
707 root->fs_info->extent_root);
708 }
Miao Xieaec80302013-03-04 09:44:29 +0000709 if (ret)
Josef Bacikc37b2b62012-10-22 15:51:44 -0400710 goto fail;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400711
712 ret = pending_snapshot->error;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400713 if (ret)
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000714 goto fail;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400715
Chris Masond3797302014-10-15 13:50:56 -0700716 ret = btrfs_orphan_cleanup(pending_snapshot->snap);
717 if (ret)
718 goto fail;
719
Al Viro2fbe8c82011-07-16 21:38:06 -0400720 inode = btrfs_lookup_dentry(dentry->d_parent->d_inode, dentry);
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000721 if (IS_ERR(inode)) {
722 ret = PTR_ERR(inode);
723 goto fail;
724 }
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900725
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000726 d_instantiate(dentry, inode);
727 ret = 0;
728fail:
Miao Xied5c12072013-02-28 10:04:33 +0000729 btrfs_subvolume_release_metadata(BTRFS_I(dir)->root,
730 &pending_snapshot->block_rsv,
731 pending_snapshot->qgroup_reserved);
Miao Xie8257b2d2014-03-06 13:38:19 +0800732free:
Yan, Zhenga22285a2010-05-16 10:48:46 -0400733 kfree(pending_snapshot);
Miao Xie8257b2d2014-03-06 13:38:19 +0800734out:
Filipe Manana9ea24bb2014-10-29 11:57:59 +0000735 if (atomic_dec_and_test(&root->will_be_snapshoted))
736 wake_up_atomic_t(&root->will_be_snapshoted);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400737 return ret;
738}
739
Sage Weil4260f7c2010-10-29 15:46:43 -0400740/* copy of may_delete in fs/namei.c()
741 * Check whether we can remove a link victim from directory dir, check
742 * whether the type of victim is right.
743 * 1. We can't do it if dir is read-only (done in permission())
744 * 2. We should have write and exec permissions on dir
745 * 3. We can't remove anything from append-only dir
746 * 4. We can't do anything with immutable dir (done in permission())
747 * 5. If the sticky bit on dir is set we should either
748 * a. be owner of dir, or
749 * b. be owner of victim, or
750 * c. have CAP_FOWNER capability
751 * 6. If the victim is append-only or immutable we can't do antyhing with
752 * links pointing to it.
753 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
754 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
755 * 9. We can't remove a root or mountpoint.
756 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
757 * nfs_async_unlink().
758 */
759
Dulshani Gunawardhana67871252013-10-31 10:33:04 +0530760static int btrfs_may_delete(struct inode *dir, struct dentry *victim, int isdir)
Sage Weil4260f7c2010-10-29 15:46:43 -0400761{
762 int error;
763
764 if (!victim->d_inode)
765 return -ENOENT;
766
767 BUG_ON(victim->d_parent->d_inode != dir);
Jeff Layton4fa6b5e2012-10-10 15:25:25 -0400768 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
Sage Weil4260f7c2010-10-29 15:46:43 -0400769
770 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
771 if (error)
772 return error;
773 if (IS_APPEND(dir))
774 return -EPERM;
Miklos Szeredicbdf35b2014-10-24 00:14:36 +0200775 if (check_sticky(dir, victim->d_inode) || IS_APPEND(victim->d_inode) ||
Sage Weil4260f7c2010-10-29 15:46:43 -0400776 IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode))
777 return -EPERM;
778 if (isdir) {
David Howellse36cb0b2015-01-29 12:02:35 +0000779 if (!d_is_dir(victim))
Sage Weil4260f7c2010-10-29 15:46:43 -0400780 return -ENOTDIR;
781 if (IS_ROOT(victim))
782 return -EBUSY;
David Howellse36cb0b2015-01-29 12:02:35 +0000783 } else if (d_is_dir(victim))
Sage Weil4260f7c2010-10-29 15:46:43 -0400784 return -EISDIR;
785 if (IS_DEADDIR(dir))
786 return -ENOENT;
787 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
788 return -EBUSY;
789 return 0;
790}
791
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400792/* copy of may_create in fs/namei.c() */
793static inline int btrfs_may_create(struct inode *dir, struct dentry *child)
794{
795 if (child->d_inode)
796 return -EEXIST;
797 if (IS_DEADDIR(dir))
798 return -ENOENT;
799 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
800}
801
802/*
803 * Create a new subvolume below @parent. This is largely modeled after
804 * sys_mkdirat and vfs_mkdir, but we only do a single component lookup
805 * inside this filesystem so it's quite a bit simpler.
806 */
Yan, Zheng76dda932009-09-21 16:00:26 -0400807static noinline int btrfs_mksubvol(struct path *parent,
808 char *name, int namelen,
Sage Weil72fd0322010-10-29 15:41:32 -0400809 struct btrfs_root *snap_src,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200810 u64 *async_transid, bool readonly,
Miao Xie8696c532013-02-07 06:02:44 +0000811 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400812{
Yan, Zheng76dda932009-09-21 16:00:26 -0400813 struct inode *dir = parent->dentry->d_inode;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400814 struct dentry *dentry;
815 int error;
816
David Sterba5c50c9b2013-03-22 18:12:51 +0000817 error = mutex_lock_killable_nested(&dir->i_mutex, I_MUTEX_PARENT);
818 if (error == -EINTR)
819 return error;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400820
821 dentry = lookup_one_len(name, parent->dentry, namelen);
822 error = PTR_ERR(dentry);
823 if (IS_ERR(dentry))
824 goto out_unlock;
825
826 error = -EEXIST;
827 if (dentry->d_inode)
828 goto out_dput;
829
Yan, Zheng76dda932009-09-21 16:00:26 -0400830 error = btrfs_may_create(dir, dentry);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400831 if (error)
Liu Boa874a632012-06-29 03:58:46 -0600832 goto out_dput;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400833
Chris Mason9c520572012-12-17 14:26:57 -0500834 /*
835 * even if this name doesn't exist, we may get hash collisions.
836 * check for them now when we can safely fail
837 */
838 error = btrfs_check_dir_item_collision(BTRFS_I(dir)->root,
839 dir->i_ino, name,
840 namelen);
841 if (error)
842 goto out_dput;
843
Yan, Zheng76dda932009-09-21 16:00:26 -0400844 down_read(&BTRFS_I(dir)->root->fs_info->subvol_sem);
845
846 if (btrfs_root_refs(&BTRFS_I(dir)->root->root_item) == 0)
847 goto out_up_read;
848
Chris Mason3de45862008-11-17 21:02:50 -0500849 if (snap_src) {
Miao Xiee9662f72013-02-28 10:01:15 +0000850 error = create_snapshot(snap_src, dir, dentry, name, namelen,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200851 async_transid, readonly, inherit);
Chris Mason3de45862008-11-17 21:02:50 -0500852 } else {
Miao Xied5c12072013-02-28 10:04:33 +0000853 error = create_subvol(dir, dentry, name, namelen,
854 async_transid, inherit);
Chris Mason3de45862008-11-17 21:02:50 -0500855 }
Yan, Zheng76dda932009-09-21 16:00:26 -0400856 if (!error)
857 fsnotify_mkdir(dir, dentry);
858out_up_read:
859 up_read(&BTRFS_I(dir)->root->fs_info->subvol_sem);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400860out_dput:
861 dput(dentry);
862out_unlock:
Yan, Zheng76dda932009-09-21 16:00:26 -0400863 mutex_unlock(&dir->i_mutex);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400864 return error;
865}
866
Chris Mason4cb53002011-05-24 15:35:30 -0400867/*
868 * When we're defragging a range, we don't want to kick it off again
869 * if it is really just waiting for delalloc to send it down.
870 * If we find a nice big extent or delalloc range for the bytes in the
871 * file you want to defrag, we return 0 to let you know to skip this
872 * part of the file
873 */
David Sterbaaab110a2014-07-29 17:32:10 +0200874static int check_defrag_in_cache(struct inode *inode, u64 offset, u32 thresh)
Chris Mason4cb53002011-05-24 15:35:30 -0400875{
876 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
877 struct extent_map *em = NULL;
878 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
879 u64 end;
880
881 read_lock(&em_tree->lock);
882 em = lookup_extent_mapping(em_tree, offset, PAGE_CACHE_SIZE);
883 read_unlock(&em_tree->lock);
884
885 if (em) {
886 end = extent_map_end(em);
887 free_extent_map(em);
888 if (end - offset > thresh)
889 return 0;
890 }
891 /* if we already have a nice delalloc here, just stop */
892 thresh /= 2;
893 end = count_range_bits(io_tree, &offset, offset + thresh,
894 thresh, EXTENT_DELALLOC, 1);
895 if (end >= thresh)
896 return 0;
897 return 1;
898}
899
900/*
901 * helper function to walk through a file and find extents
902 * newer than a specific transid, and smaller than thresh.
903 *
904 * This is used by the defragging code to find new and small
905 * extents
906 */
907static int find_new_extents(struct btrfs_root *root,
908 struct inode *inode, u64 newer_than,
David Sterbaaab110a2014-07-29 17:32:10 +0200909 u64 *off, u32 thresh)
Chris Mason4cb53002011-05-24 15:35:30 -0400910{
911 struct btrfs_path *path;
912 struct btrfs_key min_key;
Chris Mason4cb53002011-05-24 15:35:30 -0400913 struct extent_buffer *leaf;
914 struct btrfs_file_extent_item *extent;
915 int type;
916 int ret;
David Sterbaa4689d22011-05-31 17:08:14 +0000917 u64 ino = btrfs_ino(inode);
Chris Mason4cb53002011-05-24 15:35:30 -0400918
919 path = btrfs_alloc_path();
920 if (!path)
921 return -ENOMEM;
922
David Sterbaa4689d22011-05-31 17:08:14 +0000923 min_key.objectid = ino;
Chris Mason4cb53002011-05-24 15:35:30 -0400924 min_key.type = BTRFS_EXTENT_DATA_KEY;
925 min_key.offset = *off;
926
Dulshani Gunawardhana67871252013-10-31 10:33:04 +0530927 while (1) {
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +0100928 ret = btrfs_search_forward(root, &min_key, path, newer_than);
Chris Mason4cb53002011-05-24 15:35:30 -0400929 if (ret != 0)
930 goto none;
Filipe Mananaf094c9bd2014-03-12 01:28:24 +0000931process_slot:
David Sterbaa4689d22011-05-31 17:08:14 +0000932 if (min_key.objectid != ino)
Chris Mason4cb53002011-05-24 15:35:30 -0400933 goto none;
934 if (min_key.type != BTRFS_EXTENT_DATA_KEY)
935 goto none;
936
937 leaf = path->nodes[0];
938 extent = btrfs_item_ptr(leaf, path->slots[0],
939 struct btrfs_file_extent_item);
940
941 type = btrfs_file_extent_type(leaf, extent);
942 if (type == BTRFS_FILE_EXTENT_REG &&
943 btrfs_file_extent_num_bytes(leaf, extent) < thresh &&
944 check_defrag_in_cache(inode, min_key.offset, thresh)) {
945 *off = min_key.offset;
946 btrfs_free_path(path);
947 return 0;
948 }
949
Filipe Mananaf094c9bd2014-03-12 01:28:24 +0000950 path->slots[0]++;
951 if (path->slots[0] < btrfs_header_nritems(leaf)) {
952 btrfs_item_key_to_cpu(leaf, &min_key, path->slots[0]);
953 goto process_slot;
954 }
955
Chris Mason4cb53002011-05-24 15:35:30 -0400956 if (min_key.offset == (u64)-1)
957 goto none;
958
959 min_key.offset++;
960 btrfs_release_path(path);
961 }
962none:
963 btrfs_free_path(path);
964 return -ENOENT;
965}
966
Li Zefan6c282eb2012-06-11 16:03:35 +0800967static struct extent_map *defrag_lookup_extent(struct inode *inode, u64 start)
Liu Bo17ce6ef2012-03-29 09:57:45 -0400968{
969 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason940100a2010-03-10 10:52:59 -0500970 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Li Zefan6c282eb2012-06-11 16:03:35 +0800971 struct extent_map *em;
972 u64 len = PAGE_CACHE_SIZE;
Chris Mason940100a2010-03-10 10:52:59 -0500973
974 /*
975 * hopefully we have this extent in the tree already, try without
976 * the full extent lock
977 */
978 read_lock(&em_tree->lock);
979 em = lookup_extent_mapping(em_tree, start, len);
980 read_unlock(&em_tree->lock);
981
982 if (!em) {
Filipe Manana308d9802014-03-11 13:56:15 +0000983 struct extent_state *cached = NULL;
984 u64 end = start + len - 1;
985
Chris Mason940100a2010-03-10 10:52:59 -0500986 /* get the big lock and read metadata off disk */
Filipe Manana308d9802014-03-11 13:56:15 +0000987 lock_extent_bits(io_tree, start, end, 0, &cached);
Chris Mason940100a2010-03-10 10:52:59 -0500988 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
Filipe Manana308d9802014-03-11 13:56:15 +0000989 unlock_extent_cached(io_tree, start, end, &cached, GFP_NOFS);
Chris Mason940100a2010-03-10 10:52:59 -0500990
Dan Carpenter6cf8bfb2010-03-20 11:22:10 +0000991 if (IS_ERR(em))
Li Zefan6c282eb2012-06-11 16:03:35 +0800992 return NULL;
Chris Mason940100a2010-03-10 10:52:59 -0500993 }
994
Li Zefan6c282eb2012-06-11 16:03:35 +0800995 return em;
996}
997
998static bool defrag_check_next_extent(struct inode *inode, struct extent_map *em)
999{
1000 struct extent_map *next;
1001 bool ret = true;
1002
1003 /* this is the last extent */
1004 if (em->start + em->len >= i_size_read(inode))
1005 return false;
1006
1007 next = defrag_lookup_extent(inode, em->start + em->len);
Chris Masone9512d72014-08-26 13:55:54 -07001008 if (!next || next->block_start >= EXTENT_MAP_LAST_BYTE)
1009 ret = false;
1010 else if ((em->block_start + em->block_len == next->block_start) &&
1011 (em->block_len > 128 * 1024 && next->block_len > 128 * 1024))
Li Zefan6c282eb2012-06-11 16:03:35 +08001012 ret = false;
1013
1014 free_extent_map(next);
1015 return ret;
1016}
1017
David Sterbaaab110a2014-07-29 17:32:10 +02001018static int should_defrag_range(struct inode *inode, u64 start, u32 thresh,
Andrew Mahonea43a2112012-06-19 21:08:32 -04001019 u64 *last_len, u64 *skip, u64 *defrag_end,
1020 int compress)
Li Zefan6c282eb2012-06-11 16:03:35 +08001021{
1022 struct extent_map *em;
1023 int ret = 1;
1024 bool next_mergeable = true;
1025
1026 /*
1027 * make sure that once we start defragging an extent, we keep on
1028 * defragging it
1029 */
1030 if (start < *defrag_end)
1031 return 1;
1032
1033 *skip = 0;
1034
1035 em = defrag_lookup_extent(inode, start);
1036 if (!em)
1037 return 0;
1038
Chris Mason940100a2010-03-10 10:52:59 -05001039 /* this will cover holes, and inline extents */
Liu Bo17ce6ef2012-03-29 09:57:45 -04001040 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
Chris Mason940100a2010-03-10 10:52:59 -05001041 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -04001042 goto out;
1043 }
1044
Li Zefan6c282eb2012-06-11 16:03:35 +08001045 next_mergeable = defrag_check_next_extent(inode, em);
Chris Mason940100a2010-03-10 10:52:59 -05001046 /*
Li Zefan6c282eb2012-06-11 16:03:35 +08001047 * we hit a real extent, if it is big or the next extent is not a
1048 * real extent, don't bother defragging it
Chris Mason940100a2010-03-10 10:52:59 -05001049 */
Andrew Mahonea43a2112012-06-19 21:08:32 -04001050 if (!compress && (*last_len == 0 || *last_len >= thresh) &&
Li Zefan6c282eb2012-06-11 16:03:35 +08001051 (em->len >= thresh || !next_mergeable))
Chris Mason940100a2010-03-10 10:52:59 -05001052 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -04001053out:
Chris Mason940100a2010-03-10 10:52:59 -05001054 /*
1055 * last_len ends up being a counter of how many bytes we've defragged.
1056 * every time we choose not to defrag an extent, we reset *last_len
1057 * so that the next tiny extent will force a defrag.
1058 *
1059 * The end result of this is that tiny extents before a single big
1060 * extent will force at least part of that big extent to be defragged.
1061 */
1062 if (ret) {
Chris Mason940100a2010-03-10 10:52:59 -05001063 *defrag_end = extent_map_end(em);
1064 } else {
1065 *last_len = 0;
1066 *skip = extent_map_end(em);
1067 *defrag_end = 0;
1068 }
1069
1070 free_extent_map(em);
1071 return ret;
1072}
1073
Chris Mason4cb53002011-05-24 15:35:30 -04001074/*
1075 * it doesn't do much good to defrag one or two pages
1076 * at a time. This pulls in a nice chunk of pages
1077 * to COW and defrag.
1078 *
1079 * It also makes sure the delalloc code has enough
1080 * dirty data to avoid making new small extents as part
1081 * of the defrag
1082 *
1083 * It's a good idea to start RA on this range
1084 * before calling this.
1085 */
1086static int cluster_pages_for_defrag(struct inode *inode,
1087 struct page **pages,
1088 unsigned long start_index,
Justin Maggardc41570c2014-01-21 11:18:29 -08001089 unsigned long num_pages)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001090{
Chris Mason4cb53002011-05-24 15:35:30 -04001091 unsigned long file_end;
1092 u64 isize = i_size_read(inode);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001093 u64 page_start;
1094 u64 page_end;
Liu Bo1f12bd02012-03-29 09:57:44 -04001095 u64 page_cnt;
Chris Mason4cb53002011-05-24 15:35:30 -04001096 int ret;
1097 int i;
1098 int i_done;
1099 struct btrfs_ordered_extent *ordered;
1100 struct extent_state *cached_state = NULL;
Miao Xie600a45e2012-02-16 15:01:24 +08001101 struct extent_io_tree *tree;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04001102 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
Chris Mason4cb53002011-05-24 15:35:30 -04001103
Chris Mason4cb53002011-05-24 15:35:30 -04001104 file_end = (isize - 1) >> PAGE_CACHE_SHIFT;
Liu Bo1f12bd02012-03-29 09:57:44 -04001105 if (!isize || start_index > file_end)
1106 return 0;
1107
1108 page_cnt = min_t(u64, (u64)num_pages, (u64)file_end - start_index + 1);
Chris Mason4cb53002011-05-24 15:35:30 -04001109
1110 ret = btrfs_delalloc_reserve_space(inode,
Liu Bo1f12bd02012-03-29 09:57:44 -04001111 page_cnt << PAGE_CACHE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001112 if (ret)
1113 return ret;
Chris Mason4cb53002011-05-24 15:35:30 -04001114 i_done = 0;
Miao Xie600a45e2012-02-16 15:01:24 +08001115 tree = &BTRFS_I(inode)->io_tree;
Chris Mason4cb53002011-05-24 15:35:30 -04001116
1117 /* step one, lock all the pages */
Liu Bo1f12bd02012-03-29 09:57:44 -04001118 for (i = 0; i < page_cnt; i++) {
Chris Mason4cb53002011-05-24 15:35:30 -04001119 struct page *page;
Miao Xie600a45e2012-02-16 15:01:24 +08001120again:
Josef Bacika94733d2011-07-11 10:47:06 -04001121 page = find_or_create_page(inode->i_mapping,
Miao Xie600a45e2012-02-16 15:01:24 +08001122 start_index + i, mask);
Chris Mason4cb53002011-05-24 15:35:30 -04001123 if (!page)
1124 break;
1125
Miao Xie600a45e2012-02-16 15:01:24 +08001126 page_start = page_offset(page);
1127 page_end = page_start + PAGE_CACHE_SIZE - 1;
1128 while (1) {
Filipe Manana308d9802014-03-11 13:56:15 +00001129 lock_extent_bits(tree, page_start, page_end,
1130 0, &cached_state);
Miao Xie600a45e2012-02-16 15:01:24 +08001131 ordered = btrfs_lookup_ordered_extent(inode,
1132 page_start);
Filipe Manana308d9802014-03-11 13:56:15 +00001133 unlock_extent_cached(tree, page_start, page_end,
1134 &cached_state, GFP_NOFS);
Miao Xie600a45e2012-02-16 15:01:24 +08001135 if (!ordered)
1136 break;
1137
1138 unlock_page(page);
1139 btrfs_start_ordered_extent(inode, ordered, 1);
1140 btrfs_put_ordered_extent(ordered);
1141 lock_page(page);
Liu Bo1f12bd02012-03-29 09:57:44 -04001142 /*
1143 * we unlocked the page above, so we need check if
1144 * it was released or not.
1145 */
1146 if (page->mapping != inode->i_mapping) {
1147 unlock_page(page);
1148 page_cache_release(page);
1149 goto again;
1150 }
Miao Xie600a45e2012-02-16 15:01:24 +08001151 }
1152
Chris Mason4cb53002011-05-24 15:35:30 -04001153 if (!PageUptodate(page)) {
1154 btrfs_readpage(NULL, page);
1155 lock_page(page);
1156 if (!PageUptodate(page)) {
1157 unlock_page(page);
1158 page_cache_release(page);
1159 ret = -EIO;
1160 break;
1161 }
1162 }
Miao Xie600a45e2012-02-16 15:01:24 +08001163
Miao Xie600a45e2012-02-16 15:01:24 +08001164 if (page->mapping != inode->i_mapping) {
1165 unlock_page(page);
1166 page_cache_release(page);
1167 goto again;
1168 }
1169
Chris Mason4cb53002011-05-24 15:35:30 -04001170 pages[i] = page;
1171 i_done++;
1172 }
1173 if (!i_done || ret)
1174 goto out;
1175
1176 if (!(inode->i_sb->s_flags & MS_ACTIVE))
1177 goto out;
1178
1179 /*
1180 * so now we have a nice long stream of locked
1181 * and up to date pages, lets wait on them
1182 */
1183 for (i = 0; i < i_done; i++)
1184 wait_on_page_writeback(pages[i]);
1185
1186 page_start = page_offset(pages[0]);
1187 page_end = page_offset(pages[i_done - 1]) + PAGE_CACHE_SIZE;
1188
1189 lock_extent_bits(&BTRFS_I(inode)->io_tree,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001190 page_start, page_end - 1, 0, &cached_state);
Chris Mason4cb53002011-05-24 15:35:30 -04001191 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start,
1192 page_end - 1, EXTENT_DIRTY | EXTENT_DELALLOC |
Liu Bo9e8a4a82012-09-05 19:10:51 -06001193 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, 0, 0,
1194 &cached_state, GFP_NOFS);
Chris Mason4cb53002011-05-24 15:35:30 -04001195
Liu Bo1f12bd02012-03-29 09:57:44 -04001196 if (i_done != page_cnt) {
Josef Bacik9e0baf62011-07-15 15:16:44 +00001197 spin_lock(&BTRFS_I(inode)->lock);
1198 BTRFS_I(inode)->outstanding_extents++;
1199 spin_unlock(&BTRFS_I(inode)->lock);
Chris Mason4cb53002011-05-24 15:35:30 -04001200 btrfs_delalloc_release_space(inode,
Liu Bo1f12bd02012-03-29 09:57:44 -04001201 (page_cnt - i_done) << PAGE_CACHE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001202 }
1203
1204
Liu Bo9e8a4a82012-09-05 19:10:51 -06001205 set_extent_defrag(&BTRFS_I(inode)->io_tree, page_start, page_end - 1,
1206 &cached_state, GFP_NOFS);
Chris Mason4cb53002011-05-24 15:35:30 -04001207
1208 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
1209 page_start, page_end - 1, &cached_state,
1210 GFP_NOFS);
1211
1212 for (i = 0; i < i_done; i++) {
1213 clear_page_dirty_for_io(pages[i]);
1214 ClearPageChecked(pages[i]);
1215 set_page_extent_mapped(pages[i]);
1216 set_page_dirty(pages[i]);
1217 unlock_page(pages[i]);
1218 page_cache_release(pages[i]);
1219 }
1220 return i_done;
1221out:
1222 for (i = 0; i < i_done; i++) {
1223 unlock_page(pages[i]);
1224 page_cache_release(pages[i]);
1225 }
Liu Bo1f12bd02012-03-29 09:57:44 -04001226 btrfs_delalloc_release_space(inode, page_cnt << PAGE_CACHE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001227 return ret;
1228
1229}
1230
1231int btrfs_defrag_file(struct inode *inode, struct file *file,
1232 struct btrfs_ioctl_defrag_range_args *range,
1233 u64 newer_than, unsigned long max_to_defrag)
1234{
1235 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason4cb53002011-05-24 15:35:30 -04001236 struct file_ra_state *ra = NULL;
1237 unsigned long last_index;
Li Zefan151a31b2011-09-02 15:56:39 +08001238 u64 isize = i_size_read(inode);
Chris Mason940100a2010-03-10 10:52:59 -05001239 u64 last_len = 0;
1240 u64 skip = 0;
1241 u64 defrag_end = 0;
Chris Mason4cb53002011-05-24 15:35:30 -04001242 u64 newer_off = range->start;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001243 unsigned long i;
Li Zefan008873e2011-09-02 15:57:07 +08001244 unsigned long ra_index = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001245 int ret;
Chris Mason4cb53002011-05-24 15:35:30 -04001246 int defrag_count = 0;
Li Zefan1a419d82010-10-25 15:12:50 +08001247 int compress_type = BTRFS_COMPRESS_ZLIB;
David Sterbaaab110a2014-07-29 17:32:10 +02001248 u32 extent_thresh = range->extent_thresh;
Justin Maggardc41570c2014-01-21 11:18:29 -08001249 unsigned long max_cluster = (256 * 1024) >> PAGE_CACHE_SHIFT;
1250 unsigned long cluster = max_cluster;
Chris Mason4cb53002011-05-24 15:35:30 -04001251 u64 new_align = ~((u64)128 * 1024 - 1);
1252 struct page **pages = NULL;
1253
Liu Bo0abd5b12013-04-16 09:20:28 +00001254 if (isize == 0)
1255 return 0;
1256
1257 if (range->start >= isize)
1258 return -EINVAL;
Li Zefan1a419d82010-10-25 15:12:50 +08001259
1260 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS) {
1261 if (range->compress_type > BTRFS_COMPRESS_TYPES)
1262 return -EINVAL;
1263 if (range->compress_type)
1264 compress_type = range->compress_type;
1265 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001266
Liu Bo0abd5b12013-04-16 09:20:28 +00001267 if (extent_thresh == 0)
1268 extent_thresh = 256 * 1024;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001269
Chris Mason4cb53002011-05-24 15:35:30 -04001270 /*
1271 * if we were not given a file, allocate a readahead
1272 * context
1273 */
1274 if (!file) {
1275 ra = kzalloc(sizeof(*ra), GFP_NOFS);
1276 if (!ra)
1277 return -ENOMEM;
1278 file_ra_state_init(ra, inode->i_mapping);
1279 } else {
1280 ra = &file->f_ra;
1281 }
1282
Dulshani Gunawardhanad9b0d9b2013-10-31 10:32:18 +05301283 pages = kmalloc_array(max_cluster, sizeof(struct page *),
Chris Mason4cb53002011-05-24 15:35:30 -04001284 GFP_NOFS);
1285 if (!pages) {
1286 ret = -ENOMEM;
1287 goto out_ra;
1288 }
1289
1290 /* find the last page to defrag */
Chris Mason1e701a32010-03-11 09:42:04 -05001291 if (range->start + range->len > range->start) {
Li Zefan151a31b2011-09-02 15:56:39 +08001292 last_index = min_t(u64, isize - 1,
Chris Mason1e701a32010-03-11 09:42:04 -05001293 range->start + range->len - 1) >> PAGE_CACHE_SHIFT;
1294 } else {
Li Zefan151a31b2011-09-02 15:56:39 +08001295 last_index = (isize - 1) >> PAGE_CACHE_SHIFT;
Chris Mason1e701a32010-03-11 09:42:04 -05001296 }
1297
Chris Mason4cb53002011-05-24 15:35:30 -04001298 if (newer_than) {
1299 ret = find_new_extents(root, inode, newer_than,
1300 &newer_off, 64 * 1024);
1301 if (!ret) {
1302 range->start = newer_off;
1303 /*
1304 * we always align our defrag to help keep
1305 * the extents in the file evenly spaced
1306 */
1307 i = (newer_off & new_align) >> PAGE_CACHE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001308 } else
1309 goto out_ra;
1310 } else {
1311 i = range->start >> PAGE_CACHE_SHIFT;
1312 }
1313 if (!max_to_defrag)
Liu Bo7ec31b52012-01-26 15:01:12 -05001314 max_to_defrag = last_index + 1;
Chris Mason4cb53002011-05-24 15:35:30 -04001315
Li Zefan2a0f7f52011-10-10 15:43:34 -04001316 /*
1317 * make writeback starts from i, so the defrag range can be
1318 * written sequentially.
1319 */
1320 if (i < inode->i_mapping->writeback_index)
1321 inode->i_mapping->writeback_index = i;
1322
Chris Masonf7f43cc2011-10-11 11:41:40 -04001323 while (i <= last_index && defrag_count < max_to_defrag &&
David Sterbaed6078f2014-06-05 01:59:57 +02001324 (i < DIV_ROUND_UP(i_size_read(inode), PAGE_CACHE_SIZE))) {
Chris Mason4cb53002011-05-24 15:35:30 -04001325 /*
1326 * make sure we stop running if someone unmounts
1327 * the FS
1328 */
1329 if (!(inode->i_sb->s_flags & MS_ACTIVE))
1330 break;
1331
David Sterba210549e2013-02-09 23:38:06 +00001332 if (btrfs_defrag_cancelled(root->fs_info)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05001333 printk(KERN_DEBUG "BTRFS: defrag_file cancelled\n");
David Sterba210549e2013-02-09 23:38:06 +00001334 ret = -EAGAIN;
1335 break;
1336 }
1337
Liu Bo66c26892012-03-29 09:57:45 -04001338 if (!should_defrag_range(inode, (u64)i << PAGE_CACHE_SHIFT,
Li Zefan6c282eb2012-06-11 16:03:35 +08001339 extent_thresh, &last_len, &skip,
Andrew Mahonea43a2112012-06-19 21:08:32 -04001340 &defrag_end, range->flags &
1341 BTRFS_DEFRAG_RANGE_COMPRESS)) {
Chris Mason940100a2010-03-10 10:52:59 -05001342 unsigned long next;
1343 /*
1344 * the should_defrag function tells us how much to skip
1345 * bump our counter by the suggested amount
1346 */
David Sterbaed6078f2014-06-05 01:59:57 +02001347 next = DIV_ROUND_UP(skip, PAGE_CACHE_SIZE);
Chris Mason940100a2010-03-10 10:52:59 -05001348 i = max(i + 1, next);
1349 continue;
1350 }
Li Zefan008873e2011-09-02 15:57:07 +08001351
1352 if (!newer_than) {
1353 cluster = (PAGE_CACHE_ALIGN(defrag_end) >>
1354 PAGE_CACHE_SHIFT) - i;
1355 cluster = min(cluster, max_cluster);
1356 } else {
1357 cluster = max_cluster;
1358 }
1359
Li Zefan008873e2011-09-02 15:57:07 +08001360 if (i + cluster > ra_index) {
1361 ra_index = max(i, ra_index);
1362 btrfs_force_ra(inode->i_mapping, ra, file, ra_index,
1363 cluster);
1364 ra_index += max_cluster;
1365 }
Chris Mason940100a2010-03-10 10:52:59 -05001366
Liu Boecb8bea2012-03-29 09:57:44 -04001367 mutex_lock(&inode->i_mutex);
Filipe David Borba Manana633085c2013-08-16 15:23:33 +01001368 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)
1369 BTRFS_I(inode)->force_compress = compress_type;
Li Zefan008873e2011-09-02 15:57:07 +08001370 ret = cluster_pages_for_defrag(inode, pages, i, cluster);
Liu Boecb8bea2012-03-29 09:57:44 -04001371 if (ret < 0) {
1372 mutex_unlock(&inode->i_mutex);
Chris Mason4cb53002011-05-24 15:35:30 -04001373 goto out_ra;
Liu Boecb8bea2012-03-29 09:57:44 -04001374 }
Chris Mason940100a2010-03-10 10:52:59 -05001375
Chris Mason4cb53002011-05-24 15:35:30 -04001376 defrag_count += ret;
Namjae Jeond0e1d662012-12-11 16:00:21 -08001377 balance_dirty_pages_ratelimited(inode->i_mapping);
Liu Boecb8bea2012-03-29 09:57:44 -04001378 mutex_unlock(&inode->i_mutex);
Chris Mason4cb53002011-05-24 15:35:30 -04001379
1380 if (newer_than) {
1381 if (newer_off == (u64)-1)
1382 break;
1383
Liu Boe1f041e2012-03-29 09:57:45 -04001384 if (ret > 0)
1385 i += ret;
1386
Chris Mason4cb53002011-05-24 15:35:30 -04001387 newer_off = max(newer_off + 1,
1388 (u64)i << PAGE_CACHE_SHIFT);
1389
1390 ret = find_new_extents(root, inode,
1391 newer_than, &newer_off,
1392 64 * 1024);
1393 if (!ret) {
1394 range->start = newer_off;
1395 i = (newer_off & new_align) >> PAGE_CACHE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001396 } else {
1397 break;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001398 }
Chris Mason4cb53002011-05-24 15:35:30 -04001399 } else {
Li Zefan008873e2011-09-02 15:57:07 +08001400 if (ret > 0) {
Li Zefancbcc8322011-09-02 15:56:25 +08001401 i += ret;
Li Zefan008873e2011-09-02 15:57:07 +08001402 last_len += ret << PAGE_CACHE_SHIFT;
1403 } else {
Li Zefancbcc8322011-09-02 15:56:25 +08001404 i++;
Li Zefan008873e2011-09-02 15:57:07 +08001405 last_len = 0;
1406 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001407 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001408 }
1409
Filipe Mananadec8ef92014-03-01 10:55:54 +00001410 if ((range->flags & BTRFS_DEFRAG_RANGE_START_IO)) {
Chris Mason1e701a32010-03-11 09:42:04 -05001411 filemap_flush(inode->i_mapping);
Filipe Mananadec8ef92014-03-01 10:55:54 +00001412 if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
1413 &BTRFS_I(inode)->runtime_flags))
1414 filemap_flush(inode->i_mapping);
1415 }
Chris Mason1e701a32010-03-11 09:42:04 -05001416
1417 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
1418 /* the filemap_flush will queue IO into the worker threads, but
1419 * we have to make sure the IO is actually started and that
1420 * ordered extents get created before we return
1421 */
1422 atomic_inc(&root->fs_info->async_submit_draining);
1423 while (atomic_read(&root->fs_info->nr_async_submits) ||
1424 atomic_read(&root->fs_info->async_delalloc_pages)) {
1425 wait_event(root->fs_info->async_submit_wait,
1426 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
1427 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
1428 }
1429 atomic_dec(&root->fs_info->async_submit_draining);
Chris Mason1e701a32010-03-11 09:42:04 -05001430 }
1431
Li Zefan1a419d82010-10-25 15:12:50 +08001432 if (range->compress_type == BTRFS_COMPRESS_LZO) {
Mitch Harder2b0ce2c2012-07-24 11:58:43 -06001433 btrfs_set_fs_incompat(root->fs_info, COMPRESS_LZO);
Li Zefan1a419d82010-10-25 15:12:50 +08001434 }
1435
Diego Calleja60ccf822011-09-01 16:33:57 +02001436 ret = defrag_count;
Chris Mason940100a2010-03-10 10:52:59 -05001437
Chris Mason4cb53002011-05-24 15:35:30 -04001438out_ra:
Filipe David Borba Manana633085c2013-08-16 15:23:33 +01001439 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS) {
1440 mutex_lock(&inode->i_mutex);
1441 BTRFS_I(inode)->force_compress = BTRFS_COMPRESS_NONE;
1442 mutex_unlock(&inode->i_mutex);
1443 }
Chris Mason4cb53002011-05-24 15:35:30 -04001444 if (!file)
1445 kfree(ra);
1446 kfree(pages);
Chris Mason940100a2010-03-10 10:52:59 -05001447 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001448}
1449
Miao Xie198605a2012-11-26 08:43:45 +00001450static noinline int btrfs_ioctl_resize(struct file *file,
Yan, Zheng76dda932009-09-21 16:00:26 -04001451 void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001452{
1453 u64 new_size;
1454 u64 old_size;
1455 u64 devid = 1;
Al Viro496ad9a2013-01-23 17:07:38 -05001456 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001457 struct btrfs_ioctl_vol_args *vol_args;
1458 struct btrfs_trans_handle *trans;
1459 struct btrfs_device *device = NULL;
1460 char *sizestr;
Gui Hecheng9a40f122014-03-31 18:03:25 +08001461 char *retptr;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001462 char *devstr = NULL;
1463 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001464 int mod = 0;
1465
Chris Masone441d542009-01-05 16:57:23 -05001466 if (!capable(CAP_SYS_ADMIN))
1467 return -EPERM;
1468
Miao Xie198605a2012-11-26 08:43:45 +00001469 ret = mnt_want_write_file(file);
1470 if (ret)
1471 return ret;
1472
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01001473 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
1474 1)) {
Miao Xie97547672012-12-21 10:38:50 +00001475 mnt_drop_write_file(file);
Anand Jaine57138b2013-08-21 11:44:48 +08001476 return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001477 }
1478
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01001479 mutex_lock(&root->fs_info->volume_mutex);
Li Zefandae7b662009-04-08 15:06:54 +08001480 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001481 if (IS_ERR(vol_args)) {
1482 ret = PTR_ERR(vol_args);
1483 goto out;
1484 }
Mark Fasheh5516e592008-07-24 12:20:14 -04001485
1486 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001487
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001488 sizestr = vol_args->name;
1489 devstr = strchr(sizestr, ':');
1490 if (devstr) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001491 sizestr = devstr + 1;
1492 *devstr = '\0';
1493 devstr = vol_args->name;
ZhangZhen58dfae62014-05-13 16:36:08 +08001494 ret = kstrtoull(devstr, 10, &devid);
1495 if (ret)
1496 goto out_free;
Miao Xiedfd79822012-12-21 09:21:30 +00001497 if (!devid) {
1498 ret = -EINVAL;
1499 goto out_free;
1500 }
Frank Holtonefe120a2013-12-20 11:37:06 -05001501 btrfs_info(root->fs_info, "resizing devid %llu", devid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001502 }
Miao Xiedba60f32012-12-21 09:19:51 +00001503
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01001504 device = btrfs_find_device(root->fs_info, devid, NULL, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001505 if (!device) {
Frank Holtonefe120a2013-12-20 11:37:06 -05001506 btrfs_info(root->fs_info, "resizer unable to find device %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001507 devid);
Miao Xiedfd79822012-12-21 09:21:30 +00001508 ret = -ENODEV;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001509 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001510 }
Miao Xiedba60f32012-12-21 09:19:51 +00001511
1512 if (!device->writeable) {
Frank Holtonefe120a2013-12-20 11:37:06 -05001513 btrfs_info(root->fs_info,
1514 "resizer unable to apply on readonly device %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001515 devid);
Miao Xiedfd79822012-12-21 09:21:30 +00001516 ret = -EPERM;
Liu Bo4e42ae12012-06-14 02:23:19 -06001517 goto out_free;
1518 }
1519
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001520 if (!strcmp(sizestr, "max"))
1521 new_size = device->bdev->bd_inode->i_size;
1522 else {
1523 if (sizestr[0] == '-') {
1524 mod = -1;
1525 sizestr++;
1526 } else if (sizestr[0] == '+') {
1527 mod = 1;
1528 sizestr++;
1529 }
Gui Hecheng9a40f122014-03-31 18:03:25 +08001530 new_size = memparse(sizestr, &retptr);
1531 if (*retptr != '\0' || new_size == 0) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001532 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001533 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001534 }
1535 }
1536
Stefan Behrens63a212a2012-11-05 18:29:28 +01001537 if (device->is_tgtdev_for_dev_replace) {
Miao Xiedfd79822012-12-21 09:21:30 +00001538 ret = -EPERM;
Stefan Behrens63a212a2012-11-05 18:29:28 +01001539 goto out_free;
1540 }
1541
Miao Xie7cc8e582014-09-03 21:35:38 +08001542 old_size = btrfs_device_get_total_bytes(device);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001543
1544 if (mod < 0) {
1545 if (new_size > old_size) {
1546 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001547 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001548 }
1549 new_size = old_size - new_size;
1550 } else if (mod > 0) {
Wenliang Faneb8052e2013-12-20 15:28:56 +08001551 if (new_size > ULLONG_MAX - old_size) {
Gui Hecheng902c68a2014-05-29 09:19:58 +08001552 ret = -ERANGE;
Wenliang Faneb8052e2013-12-20 15:28:56 +08001553 goto out_free;
1554 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001555 new_size = old_size + new_size;
1556 }
1557
1558 if (new_size < 256 * 1024 * 1024) {
1559 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001560 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001561 }
1562 if (new_size > device->bdev->bd_inode->i_size) {
1563 ret = -EFBIG;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001564 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001565 }
1566
David Sterbab8b93ad2015-01-16 17:26:13 +01001567 new_size = div_u64(new_size, root->sectorsize);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001568 new_size *= root->sectorsize;
1569
Frank Holtonefe120a2013-12-20 11:37:06 -05001570 printk_in_rcu(KERN_INFO "BTRFS: new size for %s is %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001571 rcu_str_deref(device->name), new_size);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001572
1573 if (new_size > old_size) {
Yan, Zhenga22285a2010-05-16 10:48:46 -04001574 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001575 if (IS_ERR(trans)) {
1576 ret = PTR_ERR(trans);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001577 goto out_free;
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001578 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001579 ret = btrfs_grow_device(trans, device, new_size);
1580 btrfs_commit_transaction(trans, root);
Mike Fleetwoodece7d202011-11-18 18:55:01 +00001581 } else if (new_size < old_size) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001582 ret = btrfs_shrink_device(device, new_size);
jeff.liu0253f402012-10-27 12:06:39 +00001583 } /* equal, nothing need to do */
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001584
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001585out_free:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001586 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001587out:
1588 mutex_unlock(&root->fs_info->volume_mutex);
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01001589 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
Ilya Dryomov18f39c42013-01-20 15:57:57 +02001590 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001591 return ret;
1592}
1593
Sage Weil72fd0322010-10-29 15:41:32 -04001594static noinline int btrfs_ioctl_snap_create_transid(struct file *file,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001595 char *name, unsigned long fd, int subvol,
1596 u64 *transid, bool readonly,
Miao Xie8696c532013-02-07 06:02:44 +00001597 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001598{
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001599 int namelen;
Chris Mason3de45862008-11-17 21:02:50 -05001600 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001601
Liu Boa874a632012-06-29 03:58:46 -06001602 ret = mnt_want_write_file(file);
1603 if (ret)
1604 goto out;
1605
Sage Weil72fd0322010-10-29 15:41:32 -04001606 namelen = strlen(name);
1607 if (strchr(name, '/')) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001608 ret = -EINVAL;
Liu Boa874a632012-06-29 03:58:46 -06001609 goto out_drop_write;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001610 }
1611
Chris Mason16780ca2012-02-20 22:14:55 -05001612 if (name[0] == '.' &&
1613 (namelen == 1 || (name[1] == '.' && namelen == 2))) {
1614 ret = -EEXIST;
Liu Boa874a632012-06-29 03:58:46 -06001615 goto out_drop_write;
Chris Mason16780ca2012-02-20 22:14:55 -05001616 }
1617
Chris Mason3de45862008-11-17 21:02:50 -05001618 if (subvol) {
Sage Weil72fd0322010-10-29 15:41:32 -04001619 ret = btrfs_mksubvol(&file->f_path, name, namelen,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001620 NULL, transid, readonly, inherit);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001621 } else {
Al Viro2903ff02012-08-28 12:52:22 -04001622 struct fd src = fdget(fd);
Chris Mason3de45862008-11-17 21:02:50 -05001623 struct inode *src_inode;
Al Viro2903ff02012-08-28 12:52:22 -04001624 if (!src.file) {
Chris Mason3de45862008-11-17 21:02:50 -05001625 ret = -EINVAL;
Liu Boa874a632012-06-29 03:58:46 -06001626 goto out_drop_write;
Chris Mason3de45862008-11-17 21:02:50 -05001627 }
1628
Al Viro496ad9a2013-01-23 17:07:38 -05001629 src_inode = file_inode(src.file);
1630 if (src_inode->i_sb != file_inode(file)->i_sb) {
Frank Holtonefe120a2013-12-20 11:37:06 -05001631 btrfs_info(BTRFS_I(src_inode)->root->fs_info,
1632 "Snapshot src from another FS");
Kusanagi Kouichi23ad5b12014-01-30 16:32:02 +09001633 ret = -EXDEV;
David Sterbad0242062014-01-15 18:15:52 +01001634 } else if (!inode_owner_or_capable(src_inode)) {
1635 /*
1636 * Subvolume creation is not restricted, but snapshots
1637 * are limited to own subvolumes only
1638 */
1639 ret = -EPERM;
Al Viroecd18812012-08-26 21:20:24 -04001640 } else {
1641 ret = btrfs_mksubvol(&file->f_path, name, namelen,
1642 BTRFS_I(src_inode)->root,
1643 transid, readonly, inherit);
Chris Mason3de45862008-11-17 21:02:50 -05001644 }
Al Viro2903ff02012-08-28 12:52:22 -04001645 fdput(src);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001646 }
Liu Boa874a632012-06-29 03:58:46 -06001647out_drop_write:
1648 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001649out:
Sage Weil72fd0322010-10-29 15:41:32 -04001650 return ret;
1651}
1652
1653static noinline int btrfs_ioctl_snap_create(struct file *file,
Li Zefanfa0d2b92010-12-20 15:53:28 +08001654 void __user *arg, int subvol)
Sage Weil72fd0322010-10-29 15:41:32 -04001655{
Li Zefanfa0d2b92010-12-20 15:53:28 +08001656 struct btrfs_ioctl_vol_args *vol_args;
Sage Weil72fd0322010-10-29 15:41:32 -04001657 int ret;
1658
Li Zefanfa0d2b92010-12-20 15:53:28 +08001659 vol_args = memdup_user(arg, sizeof(*vol_args));
1660 if (IS_ERR(vol_args))
1661 return PTR_ERR(vol_args);
1662 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Sage Weil72fd0322010-10-29 15:41:32 -04001663
Li Zefanfa0d2b92010-12-20 15:53:28 +08001664 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
Li Zefanb83cc962010-12-20 16:04:08 +08001665 vol_args->fd, subvol,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001666 NULL, false, NULL);
Li Zefanfdfb1e42010-12-10 06:41:56 +00001667
Li Zefanfa0d2b92010-12-20 15:53:28 +08001668 kfree(vol_args);
1669 return ret;
1670}
Li Zefanfdfb1e42010-12-10 06:41:56 +00001671
Li Zefanfa0d2b92010-12-20 15:53:28 +08001672static noinline int btrfs_ioctl_snap_create_v2(struct file *file,
1673 void __user *arg, int subvol)
1674{
1675 struct btrfs_ioctl_vol_args_v2 *vol_args;
1676 int ret;
1677 u64 transid = 0;
1678 u64 *ptr = NULL;
Li Zefanb83cc962010-12-20 16:04:08 +08001679 bool readonly = false;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001680 struct btrfs_qgroup_inherit *inherit = NULL;
Li Zefanfdfb1e42010-12-10 06:41:56 +00001681
Li Zefanfa0d2b92010-12-20 15:53:28 +08001682 vol_args = memdup_user(arg, sizeof(*vol_args));
1683 if (IS_ERR(vol_args))
1684 return PTR_ERR(vol_args);
1685 vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
Sage Weil75eaa0e2010-12-10 00:36:28 +00001686
Li Zefanb83cc962010-12-20 16:04:08 +08001687 if (vol_args->flags &
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001688 ~(BTRFS_SUBVOL_CREATE_ASYNC | BTRFS_SUBVOL_RDONLY |
1689 BTRFS_SUBVOL_QGROUP_INHERIT)) {
Li Zefanb83cc962010-12-20 16:04:08 +08001690 ret = -EOPNOTSUPP;
Dan Carpenterc47ca322014-09-04 14:09:15 +03001691 goto free_args;
Sage Weil72fd0322010-10-29 15:41:32 -04001692 }
Li Zefanfa0d2b92010-12-20 15:53:28 +08001693
1694 if (vol_args->flags & BTRFS_SUBVOL_CREATE_ASYNC)
1695 ptr = &transid;
Li Zefanb83cc962010-12-20 16:04:08 +08001696 if (vol_args->flags & BTRFS_SUBVOL_RDONLY)
1697 readonly = true;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001698 if (vol_args->flags & BTRFS_SUBVOL_QGROUP_INHERIT) {
1699 if (vol_args->size > PAGE_CACHE_SIZE) {
1700 ret = -EINVAL;
Dan Carpenterc47ca322014-09-04 14:09:15 +03001701 goto free_args;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001702 }
1703 inherit = memdup_user(vol_args->qgroup_inherit, vol_args->size);
1704 if (IS_ERR(inherit)) {
1705 ret = PTR_ERR(inherit);
Dan Carpenterc47ca322014-09-04 14:09:15 +03001706 goto free_args;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001707 }
1708 }
Li Zefanfa0d2b92010-12-20 15:53:28 +08001709
1710 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001711 vol_args->fd, subvol, ptr,
Miao Xie8696c532013-02-07 06:02:44 +00001712 readonly, inherit);
Dan Carpenterc47ca322014-09-04 14:09:15 +03001713 if (ret)
1714 goto free_inherit;
Li Zefanfa0d2b92010-12-20 15:53:28 +08001715
Dan Carpenterc47ca322014-09-04 14:09:15 +03001716 if (ptr && copy_to_user(arg +
1717 offsetof(struct btrfs_ioctl_vol_args_v2,
1718 transid),
1719 ptr, sizeof(*ptr)))
Li Zefanfa0d2b92010-12-20 15:53:28 +08001720 ret = -EFAULT;
Dan Carpenterc47ca322014-09-04 14:09:15 +03001721
1722free_inherit:
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001723 kfree(inherit);
Dan Carpenterc47ca322014-09-04 14:09:15 +03001724free_args:
1725 kfree(vol_args);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001726 return ret;
1727}
1728
Li Zefan0caa1022010-12-20 16:30:25 +08001729static noinline int btrfs_ioctl_subvol_getflags(struct file *file,
1730 void __user *arg)
1731{
Al Viro496ad9a2013-01-23 17:07:38 -05001732 struct inode *inode = file_inode(file);
Li Zefan0caa1022010-12-20 16:30:25 +08001733 struct btrfs_root *root = BTRFS_I(inode)->root;
1734 int ret = 0;
1735 u64 flags = 0;
1736
Li Zefan33345d012011-04-20 10:31:50 +08001737 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID)
Li Zefan0caa1022010-12-20 16:30:25 +08001738 return -EINVAL;
1739
1740 down_read(&root->fs_info->subvol_sem);
1741 if (btrfs_root_readonly(root))
1742 flags |= BTRFS_SUBVOL_RDONLY;
1743 up_read(&root->fs_info->subvol_sem);
1744
1745 if (copy_to_user(arg, &flags, sizeof(flags)))
1746 ret = -EFAULT;
1747
1748 return ret;
1749}
1750
1751static noinline int btrfs_ioctl_subvol_setflags(struct file *file,
1752 void __user *arg)
1753{
Al Viro496ad9a2013-01-23 17:07:38 -05001754 struct inode *inode = file_inode(file);
Li Zefan0caa1022010-12-20 16:30:25 +08001755 struct btrfs_root *root = BTRFS_I(inode)->root;
1756 struct btrfs_trans_handle *trans;
1757 u64 root_flags;
1758 u64 flags;
1759 int ret = 0;
1760
David Sterbabd60ea02014-01-16 15:50:22 +01001761 if (!inode_owner_or_capable(inode))
1762 return -EPERM;
1763
Liu Bob9ca0662012-06-29 03:58:49 -06001764 ret = mnt_want_write_file(file);
1765 if (ret)
1766 goto out;
Li Zefan0caa1022010-12-20 16:30:25 +08001767
Liu Bob9ca0662012-06-29 03:58:49 -06001768 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
1769 ret = -EINVAL;
1770 goto out_drop_write;
1771 }
Li Zefan0caa1022010-12-20 16:30:25 +08001772
Liu Bob9ca0662012-06-29 03:58:49 -06001773 if (copy_from_user(&flags, arg, sizeof(flags))) {
1774 ret = -EFAULT;
1775 goto out_drop_write;
1776 }
Li Zefan0caa1022010-12-20 16:30:25 +08001777
Liu Bob9ca0662012-06-29 03:58:49 -06001778 if (flags & BTRFS_SUBVOL_CREATE_ASYNC) {
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 (flags & ~BTRFS_SUBVOL_RDONLY) {
1784 ret = -EOPNOTSUPP;
1785 goto out_drop_write;
1786 }
Li Zefan0caa1022010-12-20 16:30:25 +08001787
1788 down_write(&root->fs_info->subvol_sem);
1789
1790 /* nothing to do */
1791 if (!!(flags & BTRFS_SUBVOL_RDONLY) == btrfs_root_readonly(root))
Liu Bob9ca0662012-06-29 03:58:49 -06001792 goto out_drop_sem;
Li Zefan0caa1022010-12-20 16:30:25 +08001793
1794 root_flags = btrfs_root_flags(&root->root_item);
David Sterba2c686532013-12-16 17:34:17 +01001795 if (flags & BTRFS_SUBVOL_RDONLY) {
Li Zefan0caa1022010-12-20 16:30:25 +08001796 btrfs_set_root_flags(&root->root_item,
1797 root_flags | BTRFS_ROOT_SUBVOL_RDONLY);
David Sterba2c686532013-12-16 17:34:17 +01001798 } else {
1799 /*
1800 * Block RO -> RW transition if this subvolume is involved in
1801 * send
1802 */
1803 spin_lock(&root->root_item_lock);
1804 if (root->send_in_progress == 0) {
1805 btrfs_set_root_flags(&root->root_item,
Li Zefan0caa1022010-12-20 16:30:25 +08001806 root_flags & ~BTRFS_ROOT_SUBVOL_RDONLY);
David Sterba2c686532013-12-16 17:34:17 +01001807 spin_unlock(&root->root_item_lock);
1808 } else {
1809 spin_unlock(&root->root_item_lock);
1810 btrfs_warn(root->fs_info,
1811 "Attempt to set subvolume %llu read-write during send",
1812 root->root_key.objectid);
1813 ret = -EPERM;
1814 goto out_drop_sem;
1815 }
1816 }
Li Zefan0caa1022010-12-20 16:30:25 +08001817
1818 trans = btrfs_start_transaction(root, 1);
1819 if (IS_ERR(trans)) {
1820 ret = PTR_ERR(trans);
1821 goto out_reset;
1822 }
1823
Li Zefanb4dc2b82011-02-16 06:06:34 +00001824 ret = btrfs_update_root(trans, root->fs_info->tree_root,
Li Zefan0caa1022010-12-20 16:30:25 +08001825 &root->root_key, &root->root_item);
1826
1827 btrfs_commit_transaction(trans, root);
1828out_reset:
1829 if (ret)
1830 btrfs_set_root_flags(&root->root_item, root_flags);
Liu Bob9ca0662012-06-29 03:58:49 -06001831out_drop_sem:
Li Zefan0caa1022010-12-20 16:30:25 +08001832 up_write(&root->fs_info->subvol_sem);
Liu Bob9ca0662012-06-29 03:58:49 -06001833out_drop_write:
1834 mnt_drop_write_file(file);
1835out:
Li Zefan0caa1022010-12-20 16:30:25 +08001836 return ret;
1837}
1838
Yan, Zheng76dda932009-09-21 16:00:26 -04001839/*
1840 * helper to check if the subvolume references other subvolumes
1841 */
1842static noinline int may_destroy_subvol(struct btrfs_root *root)
1843{
1844 struct btrfs_path *path;
Josef Bacik175a2b82013-08-12 15:36:44 -04001845 struct btrfs_dir_item *di;
Yan, Zheng76dda932009-09-21 16:00:26 -04001846 struct btrfs_key key;
Josef Bacik175a2b82013-08-12 15:36:44 -04001847 u64 dir_id;
Yan, Zheng76dda932009-09-21 16:00:26 -04001848 int ret;
1849
1850 path = btrfs_alloc_path();
1851 if (!path)
1852 return -ENOMEM;
1853
Josef Bacik175a2b82013-08-12 15:36:44 -04001854 /* Make sure this root isn't set as the default subvol */
1855 dir_id = btrfs_super_root_dir(root->fs_info->super_copy);
1856 di = btrfs_lookup_dir_item(NULL, root->fs_info->tree_root, path,
1857 dir_id, "default", 7, 0);
1858 if (di && !IS_ERR(di)) {
1859 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &key);
1860 if (key.objectid == root->root_key.objectid) {
Guangyu Sun72de6b52014-03-11 11:24:18 -07001861 ret = -EPERM;
1862 btrfs_err(root->fs_info, "deleting default subvolume "
1863 "%llu is not allowed", key.objectid);
Josef Bacik175a2b82013-08-12 15:36:44 -04001864 goto out;
1865 }
1866 btrfs_release_path(path);
1867 }
1868
Yan, Zheng76dda932009-09-21 16:00:26 -04001869 key.objectid = root->root_key.objectid;
1870 key.type = BTRFS_ROOT_REF_KEY;
1871 key.offset = (u64)-1;
1872
1873 ret = btrfs_search_slot(NULL, root->fs_info->tree_root,
1874 &key, path, 0, 0);
1875 if (ret < 0)
1876 goto out;
1877 BUG_ON(ret == 0);
1878
1879 ret = 0;
1880 if (path->slots[0] > 0) {
1881 path->slots[0]--;
1882 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1883 if (key.objectid == root->root_key.objectid &&
1884 key.type == BTRFS_ROOT_REF_KEY)
1885 ret = -ENOTEMPTY;
1886 }
1887out:
1888 btrfs_free_path(path);
1889 return ret;
1890}
1891
Chris Masonac8e9812010-02-28 15:39:26 -05001892static noinline int key_in_sk(struct btrfs_key *key,
1893 struct btrfs_ioctl_search_key *sk)
1894{
Chris Masonabc6e132010-03-18 12:10:08 -04001895 struct btrfs_key test;
1896 int ret;
1897
1898 test.objectid = sk->min_objectid;
1899 test.type = sk->min_type;
1900 test.offset = sk->min_offset;
1901
1902 ret = btrfs_comp_cpu_keys(key, &test);
1903 if (ret < 0)
Chris Masonac8e9812010-02-28 15:39:26 -05001904 return 0;
Chris Masonabc6e132010-03-18 12:10:08 -04001905
1906 test.objectid = sk->max_objectid;
1907 test.type = sk->max_type;
1908 test.offset = sk->max_offset;
1909
1910 ret = btrfs_comp_cpu_keys(key, &test);
1911 if (ret > 0)
Chris Masonac8e9812010-02-28 15:39:26 -05001912 return 0;
1913 return 1;
1914}
1915
1916static noinline int copy_to_sk(struct btrfs_root *root,
1917 struct btrfs_path *path,
1918 struct btrfs_key *key,
1919 struct btrfs_ioctl_search_key *sk,
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001920 size_t *buf_size,
Gerhard Heiftba346b32014-01-30 16:24:02 +01001921 char __user *ubuf,
Chris Masonac8e9812010-02-28 15:39:26 -05001922 unsigned long *sk_offset,
1923 int *num_found)
1924{
1925 u64 found_transid;
1926 struct extent_buffer *leaf;
1927 struct btrfs_ioctl_search_header sh;
1928 unsigned long item_off;
1929 unsigned long item_len;
1930 int nritems;
1931 int i;
1932 int slot;
Chris Masonac8e9812010-02-28 15:39:26 -05001933 int ret = 0;
1934
1935 leaf = path->nodes[0];
1936 slot = path->slots[0];
1937 nritems = btrfs_header_nritems(leaf);
1938
1939 if (btrfs_header_generation(leaf) > sk->max_transid) {
1940 i = nritems;
1941 goto advance_key;
1942 }
1943 found_transid = btrfs_header_generation(leaf);
1944
1945 for (i = slot; i < nritems; i++) {
1946 item_off = btrfs_item_ptr_offset(leaf, i);
1947 item_len = btrfs_item_size_nr(leaf, i);
1948
Gabriel de Perthuis03b71c62013-05-06 17:40:18 +00001949 btrfs_item_key_to_cpu(leaf, key, i);
1950 if (!key_in_sk(key, sk))
1951 continue;
1952
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001953 if (sizeof(sh) + item_len > *buf_size) {
Gerhard Heift8f5f6172014-01-30 16:23:59 +01001954 if (*num_found) {
1955 ret = 1;
1956 goto out;
1957 }
Chris Masonac8e9812010-02-28 15:39:26 -05001958
Gerhard Heift8f5f6172014-01-30 16:23:59 +01001959 /*
1960 * return one empty item back for v1, which does not
1961 * handle -EOVERFLOW
1962 */
1963
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001964 *buf_size = sizeof(sh) + item_len;
Chris Masonac8e9812010-02-28 15:39:26 -05001965 item_len = 0;
Gerhard Heift8f5f6172014-01-30 16:23:59 +01001966 ret = -EOVERFLOW;
1967 }
Chris Masonac8e9812010-02-28 15:39:26 -05001968
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001969 if (sizeof(sh) + item_len + *sk_offset > *buf_size) {
Chris Masonac8e9812010-02-28 15:39:26 -05001970 ret = 1;
Gerhard Heift25c9bc22014-01-30 16:23:57 +01001971 goto out;
Chris Masonac8e9812010-02-28 15:39:26 -05001972 }
1973
Chris Masonac8e9812010-02-28 15:39:26 -05001974 sh.objectid = key->objectid;
1975 sh.offset = key->offset;
1976 sh.type = key->type;
1977 sh.len = item_len;
1978 sh.transid = found_transid;
1979
1980 /* copy search result header */
Gerhard Heiftba346b32014-01-30 16:24:02 +01001981 if (copy_to_user(ubuf + *sk_offset, &sh, sizeof(sh))) {
1982 ret = -EFAULT;
1983 goto out;
1984 }
1985
Chris Masonac8e9812010-02-28 15:39:26 -05001986 *sk_offset += sizeof(sh);
1987
1988 if (item_len) {
Gerhard Heiftba346b32014-01-30 16:24:02 +01001989 char __user *up = ubuf + *sk_offset;
Chris Masonac8e9812010-02-28 15:39:26 -05001990 /* copy the item */
Gerhard Heiftba346b32014-01-30 16:24:02 +01001991 if (read_extent_buffer_to_user(leaf, up,
1992 item_off, item_len)) {
1993 ret = -EFAULT;
1994 goto out;
1995 }
1996
Chris Masonac8e9812010-02-28 15:39:26 -05001997 *sk_offset += item_len;
Chris Masonac8e9812010-02-28 15:39:26 -05001998 }
Hugo Millse2156862011-05-14 17:43:41 +00001999 (*num_found)++;
Chris Masonac8e9812010-02-28 15:39:26 -05002000
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002001 if (ret) /* -EOVERFLOW from above */
2002 goto out;
2003
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002004 if (*num_found >= sk->nr_items) {
2005 ret = 1;
2006 goto out;
2007 }
Chris Masonac8e9812010-02-28 15:39:26 -05002008 }
2009advance_key:
Chris Masonac8e9812010-02-28 15:39:26 -05002010 ret = 0;
Chris Masonabc6e132010-03-18 12:10:08 -04002011 if (key->offset < (u64)-1 && key->offset < sk->max_offset)
2012 key->offset++;
2013 else if (key->type < (u8)-1 && key->type < sk->max_type) {
2014 key->offset = 0;
2015 key->type++;
2016 } else if (key->objectid < (u64)-1 && key->objectid < sk->max_objectid) {
2017 key->offset = 0;
2018 key->type = 0;
2019 key->objectid++;
2020 } else
2021 ret = 1;
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002022out:
Gerhard Heiftba346b32014-01-30 16:24:02 +01002023 /*
2024 * 0: all items from this leaf copied, continue with next
2025 * 1: * more items can be copied, but unused buffer is too small
2026 * * all items were found
2027 * Either way, it will stops the loop which iterates to the next
2028 * leaf
2029 * -EOVERFLOW: item was to large for buffer
2030 * -EFAULT: could not copy extent buffer back to userspace
2031 */
Chris Masonac8e9812010-02-28 15:39:26 -05002032 return ret;
2033}
2034
2035static noinline int search_ioctl(struct inode *inode,
Gerhard Heift12544442014-01-30 16:23:58 +01002036 struct btrfs_ioctl_search_key *sk,
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002037 size_t *buf_size,
Gerhard Heiftba346b32014-01-30 16:24:02 +01002038 char __user *ubuf)
Chris Masonac8e9812010-02-28 15:39:26 -05002039{
2040 struct btrfs_root *root;
2041 struct btrfs_key key;
Chris Masonac8e9812010-02-28 15:39:26 -05002042 struct btrfs_path *path;
Chris Masonac8e9812010-02-28 15:39:26 -05002043 struct btrfs_fs_info *info = BTRFS_I(inode)->root->fs_info;
2044 int ret;
2045 int num_found = 0;
2046 unsigned long sk_offset = 0;
2047
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002048 if (*buf_size < sizeof(struct btrfs_ioctl_search_header)) {
2049 *buf_size = sizeof(struct btrfs_ioctl_search_header);
Gerhard Heift12544442014-01-30 16:23:58 +01002050 return -EOVERFLOW;
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002051 }
Gerhard Heift12544442014-01-30 16:23:58 +01002052
Chris Masonac8e9812010-02-28 15:39:26 -05002053 path = btrfs_alloc_path();
2054 if (!path)
2055 return -ENOMEM;
2056
2057 if (sk->tree_id == 0) {
2058 /* search the root of the inode that was passed */
2059 root = BTRFS_I(inode)->root;
2060 } else {
2061 key.objectid = sk->tree_id;
2062 key.type = BTRFS_ROOT_ITEM_KEY;
2063 key.offset = (u64)-1;
2064 root = btrfs_read_fs_root_no_name(info, &key);
2065 if (IS_ERR(root)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05002066 printk(KERN_ERR "BTRFS: could not find root %llu\n",
Chris Masonac8e9812010-02-28 15:39:26 -05002067 sk->tree_id);
2068 btrfs_free_path(path);
2069 return -ENOENT;
2070 }
2071 }
2072
2073 key.objectid = sk->min_objectid;
2074 key.type = sk->min_type;
2075 key.offset = sk->min_offset;
2076
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302077 while (1) {
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +01002078 ret = btrfs_search_forward(root, &key, path, sk->min_transid);
Chris Masonac8e9812010-02-28 15:39:26 -05002079 if (ret != 0) {
2080 if (ret > 0)
2081 ret = 0;
2082 goto err;
2083 }
Gerhard Heiftba346b32014-01-30 16:24:02 +01002084 ret = copy_to_sk(root, path, &key, sk, buf_size, ubuf,
Chris Masonac8e9812010-02-28 15:39:26 -05002085 &sk_offset, &num_found);
David Sterbab3b4aa72011-04-21 01:20:15 +02002086 btrfs_release_path(path);
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002087 if (ret)
Chris Masonac8e9812010-02-28 15:39:26 -05002088 break;
2089
2090 }
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002091 if (ret > 0)
2092 ret = 0;
Chris Masonac8e9812010-02-28 15:39:26 -05002093err:
2094 sk->nr_items = num_found;
2095 btrfs_free_path(path);
2096 return ret;
2097}
2098
2099static noinline int btrfs_ioctl_tree_search(struct file *file,
2100 void __user *argp)
2101{
Gerhard Heiftba346b32014-01-30 16:24:02 +01002102 struct btrfs_ioctl_search_args __user *uargs;
2103 struct btrfs_ioctl_search_key sk;
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002104 struct inode *inode;
2105 int ret;
2106 size_t buf_size;
Chris Masonac8e9812010-02-28 15:39:26 -05002107
2108 if (!capable(CAP_SYS_ADMIN))
2109 return -EPERM;
2110
Gerhard Heiftba346b32014-01-30 16:24:02 +01002111 uargs = (struct btrfs_ioctl_search_args __user *)argp;
Chris Masonac8e9812010-02-28 15:39:26 -05002112
Gerhard Heiftba346b32014-01-30 16:24:02 +01002113 if (copy_from_user(&sk, &uargs->key, sizeof(sk)))
2114 return -EFAULT;
2115
2116 buf_size = sizeof(uargs->buf);
Chris Masonac8e9812010-02-28 15:39:26 -05002117
Al Viro496ad9a2013-01-23 17:07:38 -05002118 inode = file_inode(file);
Gerhard Heiftba346b32014-01-30 16:24:02 +01002119 ret = search_ioctl(inode, &sk, &buf_size, uargs->buf);
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002120
2121 /*
2122 * In the origin implementation an overflow is handled by returning a
2123 * search header with a len of zero, so reset ret.
2124 */
2125 if (ret == -EOVERFLOW)
2126 ret = 0;
2127
Gerhard Heiftba346b32014-01-30 16:24:02 +01002128 if (ret == 0 && copy_to_user(&uargs->key, &sk, sizeof(sk)))
Chris Masonac8e9812010-02-28 15:39:26 -05002129 ret = -EFAULT;
Chris Masonac8e9812010-02-28 15:39:26 -05002130 return ret;
2131}
2132
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002133static noinline int btrfs_ioctl_tree_search_v2(struct file *file,
2134 void __user *argp)
2135{
2136 struct btrfs_ioctl_search_args_v2 __user *uarg;
2137 struct btrfs_ioctl_search_args_v2 args;
2138 struct inode *inode;
2139 int ret;
2140 size_t buf_size;
2141 const size_t buf_limit = 16 * 1024 * 1024;
2142
2143 if (!capable(CAP_SYS_ADMIN))
2144 return -EPERM;
2145
2146 /* copy search header and buffer size */
2147 uarg = (struct btrfs_ioctl_search_args_v2 __user *)argp;
2148 if (copy_from_user(&args, uarg, sizeof(args)))
2149 return -EFAULT;
2150
2151 buf_size = args.buf_size;
2152
2153 if (buf_size < sizeof(struct btrfs_ioctl_search_header))
2154 return -EOVERFLOW;
2155
2156 /* limit result size to 16MB */
2157 if (buf_size > buf_limit)
2158 buf_size = buf_limit;
2159
2160 inode = file_inode(file);
2161 ret = search_ioctl(inode, &args.key, &buf_size,
2162 (char *)(&uarg->buf[0]));
2163 if (ret == 0 && copy_to_user(&uarg->key, &args.key, sizeof(args.key)))
2164 ret = -EFAULT;
2165 else if (ret == -EOVERFLOW &&
2166 copy_to_user(&uarg->buf_size, &buf_size, sizeof(buf_size)))
2167 ret = -EFAULT;
2168
Yan, Zheng76dda932009-09-21 16:00:26 -04002169 return ret;
2170}
2171
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002172/*
Chris Masonac8e9812010-02-28 15:39:26 -05002173 * Search INODE_REFs to identify path name of 'dirid' directory
2174 * in a 'tree_id' tree. and sets path name to 'name'.
2175 */
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002176static noinline int btrfs_search_path_in_tree(struct btrfs_fs_info *info,
2177 u64 tree_id, u64 dirid, char *name)
2178{
2179 struct btrfs_root *root;
2180 struct btrfs_key key;
Chris Masonac8e9812010-02-28 15:39:26 -05002181 char *ptr;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002182 int ret = -1;
2183 int slot;
2184 int len;
2185 int total_len = 0;
2186 struct btrfs_inode_ref *iref;
2187 struct extent_buffer *l;
2188 struct btrfs_path *path;
2189
2190 if (dirid == BTRFS_FIRST_FREE_OBJECTID) {
2191 name[0]='\0';
2192 return 0;
2193 }
2194
2195 path = btrfs_alloc_path();
2196 if (!path)
2197 return -ENOMEM;
2198
Chris Masonac8e9812010-02-28 15:39:26 -05002199 ptr = &name[BTRFS_INO_LOOKUP_PATH_MAX];
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002200
2201 key.objectid = tree_id;
2202 key.type = BTRFS_ROOT_ITEM_KEY;
2203 key.offset = (u64)-1;
2204 root = btrfs_read_fs_root_no_name(info, &key);
2205 if (IS_ERR(root)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05002206 printk(KERN_ERR "BTRFS: could not find root %llu\n", tree_id);
Chris Mason8ad6fca2010-03-18 12:23:10 -04002207 ret = -ENOENT;
2208 goto out;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002209 }
2210
2211 key.objectid = dirid;
2212 key.type = BTRFS_INODE_REF_KEY;
Chris Mason8ad6fca2010-03-18 12:23:10 -04002213 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002214
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302215 while (1) {
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002216 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2217 if (ret < 0)
2218 goto out;
Filipe David Borba Manana18674c62013-08-14 03:00:21 +01002219 else if (ret > 0) {
2220 ret = btrfs_previous_item(root, path, dirid,
2221 BTRFS_INODE_REF_KEY);
2222 if (ret < 0)
2223 goto out;
2224 else if (ret > 0) {
2225 ret = -ENOENT;
2226 goto out;
2227 }
2228 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002229
2230 l = path->nodes[0];
2231 slot = path->slots[0];
2232 btrfs_item_key_to_cpu(l, &key, slot);
2233
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002234 iref = btrfs_item_ptr(l, slot, struct btrfs_inode_ref);
2235 len = btrfs_inode_ref_name_len(l, iref);
2236 ptr -= len + 1;
2237 total_len += len + 1;
Filipe David Borba Mananaa696cf32013-08-14 03:00:20 +01002238 if (ptr < name) {
2239 ret = -ENAMETOOLONG;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002240 goto out;
Filipe David Borba Mananaa696cf32013-08-14 03:00:20 +01002241 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002242
2243 *(ptr + len) = '/';
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302244 read_extent_buffer(l, ptr, (unsigned long)(iref + 1), len);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002245
2246 if (key.offset == BTRFS_FIRST_FREE_OBJECTID)
2247 break;
2248
David Sterbab3b4aa72011-04-21 01:20:15 +02002249 btrfs_release_path(path);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002250 key.objectid = key.offset;
Chris Mason8ad6fca2010-03-18 12:23:10 -04002251 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002252 dirid = key.objectid;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002253 }
Li Zefan77906a502011-07-14 03:16:00 +00002254 memmove(name, ptr, total_len);
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302255 name[total_len] = '\0';
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002256 ret = 0;
2257out:
2258 btrfs_free_path(path);
Chris Masonac8e9812010-02-28 15:39:26 -05002259 return ret;
2260}
2261
2262static noinline int btrfs_ioctl_ino_lookup(struct file *file,
2263 void __user *argp)
2264{
2265 struct btrfs_ioctl_ino_lookup_args *args;
2266 struct inode *inode;
2267 int ret;
2268
2269 if (!capable(CAP_SYS_ADMIN))
2270 return -EPERM;
2271
Julia Lawall2354d082010-10-29 15:14:18 -04002272 args = memdup_user(argp, sizeof(*args));
2273 if (IS_ERR(args))
2274 return PTR_ERR(args);
Dan Carpenterc2b96922010-03-20 11:24:15 +00002275
Al Viro496ad9a2013-01-23 17:07:38 -05002276 inode = file_inode(file);
Chris Masonac8e9812010-02-28 15:39:26 -05002277
Chris Mason1b53ac42010-03-18 12:17:05 -04002278 if (args->treeid == 0)
2279 args->treeid = BTRFS_I(inode)->root->root_key.objectid;
2280
Chris Masonac8e9812010-02-28 15:39:26 -05002281 ret = btrfs_search_path_in_tree(BTRFS_I(inode)->root->fs_info,
2282 args->treeid, args->objectid,
2283 args->name);
2284
2285 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
2286 ret = -EFAULT;
2287
2288 kfree(args);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002289 return ret;
2290}
2291
Yan, Zheng76dda932009-09-21 16:00:26 -04002292static noinline int btrfs_ioctl_snap_destroy(struct file *file,
2293 void __user *arg)
2294{
Al Viro54563d42013-09-01 15:57:51 -04002295 struct dentry *parent = file->f_path.dentry;
Yan, Zheng76dda932009-09-21 16:00:26 -04002296 struct dentry *dentry;
2297 struct inode *dir = parent->d_inode;
2298 struct inode *inode;
2299 struct btrfs_root *root = BTRFS_I(dir)->root;
2300 struct btrfs_root *dest = NULL;
2301 struct btrfs_ioctl_vol_args *vol_args;
2302 struct btrfs_trans_handle *trans;
Miao Xiec58aaad2013-02-28 10:05:36 +00002303 struct btrfs_block_rsv block_rsv;
David Sterba521e0542014-04-15 16:41:44 +02002304 u64 root_flags;
Miao Xiec58aaad2013-02-28 10:05:36 +00002305 u64 qgroup_reserved;
Yan, Zheng76dda932009-09-21 16:00:26 -04002306 int namelen;
2307 int ret;
2308 int err = 0;
2309
Yan, Zheng76dda932009-09-21 16:00:26 -04002310 vol_args = memdup_user(arg, sizeof(*vol_args));
2311 if (IS_ERR(vol_args))
2312 return PTR_ERR(vol_args);
2313
2314 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
2315 namelen = strlen(vol_args->name);
2316 if (strchr(vol_args->name, '/') ||
2317 strncmp(vol_args->name, "..", namelen) == 0) {
2318 err = -EINVAL;
2319 goto out;
2320 }
2321
Al Viroa561be72011-11-23 11:57:51 -05002322 err = mnt_want_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04002323 if (err)
2324 goto out;
2325
David Sterba521e0542014-04-15 16:41:44 +02002326
David Sterba5c50c9b2013-03-22 18:12:51 +00002327 err = mutex_lock_killable_nested(&dir->i_mutex, I_MUTEX_PARENT);
2328 if (err == -EINTR)
David Sterbae43f9982013-12-06 17:51:32 +01002329 goto out_drop_write;
Yan, Zheng76dda932009-09-21 16:00:26 -04002330 dentry = lookup_one_len(vol_args->name, parent, namelen);
2331 if (IS_ERR(dentry)) {
2332 err = PTR_ERR(dentry);
2333 goto out_unlock_dir;
2334 }
2335
2336 if (!dentry->d_inode) {
2337 err = -ENOENT;
2338 goto out_dput;
2339 }
2340
2341 inode = dentry->d_inode;
Sage Weil4260f7c2010-10-29 15:46:43 -04002342 dest = BTRFS_I(inode)->root;
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302343 if (!capable(CAP_SYS_ADMIN)) {
Sage Weil4260f7c2010-10-29 15:46:43 -04002344 /*
2345 * Regular user. Only allow this with a special mount
2346 * option, when the user has write+exec access to the
2347 * subvol root, and when rmdir(2) would have been
2348 * allowed.
2349 *
2350 * Note that this is _not_ check that the subvol is
2351 * empty or doesn't contain data that we wouldn't
2352 * otherwise be able to delete.
2353 *
2354 * Users who want to delete empty subvols should try
2355 * rmdir(2).
2356 */
2357 err = -EPERM;
2358 if (!btrfs_test_opt(root, USER_SUBVOL_RM_ALLOWED))
2359 goto out_dput;
2360
2361 /*
2362 * Do not allow deletion if the parent dir is the same
2363 * as the dir to be deleted. That means the ioctl
2364 * must be called on the dentry referencing the root
2365 * of the subvol, not a random directory contained
2366 * within it.
2367 */
2368 err = -EINVAL;
2369 if (root == dest)
2370 goto out_dput;
2371
2372 err = inode_permission(inode, MAY_WRITE | MAY_EXEC);
2373 if (err)
2374 goto out_dput;
Sage Weil4260f7c2010-10-29 15:46:43 -04002375 }
2376
Miao Xie5c39da52012-10-22 11:39:53 +00002377 /* check if subvolume may be deleted by a user */
2378 err = btrfs_may_delete(dir, dentry, 1);
2379 if (err)
2380 goto out_dput;
2381
Li Zefan33345d012011-04-20 10:31:50 +08002382 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
Yan, Zheng76dda932009-09-21 16:00:26 -04002383 err = -EINVAL;
2384 goto out_dput;
2385 }
2386
Yan, Zheng76dda932009-09-21 16:00:26 -04002387 mutex_lock(&inode->i_mutex);
David Sterba521e0542014-04-15 16:41:44 +02002388
2389 /*
2390 * Don't allow to delete a subvolume with send in progress. This is
2391 * inside the i_mutex so the error handling that has to drop the bit
2392 * again is not run concurrently.
2393 */
2394 spin_lock(&dest->root_item_lock);
Filipe Mananac55bfa62014-05-25 03:55:44 +01002395 root_flags = btrfs_root_flags(&dest->root_item);
2396 if (dest->send_in_progress == 0) {
2397 btrfs_set_root_flags(&dest->root_item,
David Sterba521e0542014-04-15 16:41:44 +02002398 root_flags | BTRFS_ROOT_SUBVOL_DEAD);
2399 spin_unlock(&dest->root_item_lock);
2400 } else {
2401 spin_unlock(&dest->root_item_lock);
2402 btrfs_warn(root->fs_info,
2403 "Attempt to delete subvolume %llu during send",
Filipe Mananac55bfa62014-05-25 03:55:44 +01002404 dest->root_key.objectid);
David Sterba521e0542014-04-15 16:41:44 +02002405 err = -EPERM;
2406 goto out_dput;
2407 }
2408
Eric W. Biederman5542aa22014-02-13 09:46:25 -08002409 d_invalidate(dentry);
Yan, Zheng76dda932009-09-21 16:00:26 -04002410
2411 down_write(&root->fs_info->subvol_sem);
2412
2413 err = may_destroy_subvol(dest);
2414 if (err)
2415 goto out_up_write;
2416
Miao Xiec58aaad2013-02-28 10:05:36 +00002417 btrfs_init_block_rsv(&block_rsv, BTRFS_BLOCK_RSV_TEMP);
2418 /*
2419 * One for dir inode, two for dir entries, two for root
2420 * ref/backref.
2421 */
2422 err = btrfs_subvolume_reserve_metadata(root, &block_rsv,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04002423 5, &qgroup_reserved, true);
Miao Xiec58aaad2013-02-28 10:05:36 +00002424 if (err)
2425 goto out_up_write;
2426
Yan, Zhenga22285a2010-05-16 10:48:46 -04002427 trans = btrfs_start_transaction(root, 0);
2428 if (IS_ERR(trans)) {
2429 err = PTR_ERR(trans);
Miao Xiec58aaad2013-02-28 10:05:36 +00002430 goto out_release;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002431 }
Miao Xiec58aaad2013-02-28 10:05:36 +00002432 trans->block_rsv = &block_rsv;
2433 trans->bytes_reserved = block_rsv.size;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002434
Yan, Zheng76dda932009-09-21 16:00:26 -04002435 ret = btrfs_unlink_subvol(trans, root, dir,
2436 dest->root_key.objectid,
2437 dentry->d_name.name,
2438 dentry->d_name.len);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002439 if (ret) {
2440 err = ret;
2441 btrfs_abort_transaction(trans, root, ret);
2442 goto out_end_trans;
2443 }
Yan, Zheng76dda932009-09-21 16:00:26 -04002444
2445 btrfs_record_root_in_trans(trans, dest);
2446
2447 memset(&dest->root_item.drop_progress, 0,
2448 sizeof(dest->root_item.drop_progress));
2449 dest->root_item.drop_level = 0;
2450 btrfs_set_root_refs(&dest->root_item, 0);
2451
Miao Xie27cdeb72014-04-02 19:51:05 +08002452 if (!test_and_set_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &dest->state)) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04002453 ret = btrfs_insert_orphan_item(trans,
2454 root->fs_info->tree_root,
2455 dest->root_key.objectid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002456 if (ret) {
2457 btrfs_abort_transaction(trans, root, ret);
2458 err = ret;
2459 goto out_end_trans;
2460 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04002461 }
Stefan Behrensdd5f9612013-08-15 17:11:20 +02002462
2463 ret = btrfs_uuid_tree_rem(trans, root->fs_info->uuid_root,
2464 dest->root_item.uuid, BTRFS_UUID_KEY_SUBVOL,
2465 dest->root_key.objectid);
2466 if (ret && ret != -ENOENT) {
2467 btrfs_abort_transaction(trans, root, ret);
2468 err = ret;
2469 goto out_end_trans;
2470 }
2471 if (!btrfs_is_empty_uuid(dest->root_item.received_uuid)) {
2472 ret = btrfs_uuid_tree_rem(trans, root->fs_info->uuid_root,
2473 dest->root_item.received_uuid,
2474 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
2475 dest->root_key.objectid);
2476 if (ret && ret != -ENOENT) {
2477 btrfs_abort_transaction(trans, root, ret);
2478 err = ret;
2479 goto out_end_trans;
2480 }
2481 }
2482
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002483out_end_trans:
Miao Xiec58aaad2013-02-28 10:05:36 +00002484 trans->block_rsv = NULL;
2485 trans->bytes_reserved = 0;
Sage Weil531cb132010-10-29 15:41:32 -04002486 ret = btrfs_end_transaction(trans, root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002487 if (ret && !err)
2488 err = ret;
Yan, Zheng76dda932009-09-21 16:00:26 -04002489 inode->i_flags |= S_DEAD;
Miao Xiec58aaad2013-02-28 10:05:36 +00002490out_release:
2491 btrfs_subvolume_release_metadata(root, &block_rsv, qgroup_reserved);
Yan, Zheng76dda932009-09-21 16:00:26 -04002492out_up_write:
2493 up_write(&root->fs_info->subvol_sem);
David Sterba521e0542014-04-15 16:41:44 +02002494 if (err) {
2495 spin_lock(&dest->root_item_lock);
Filipe Mananac55bfa62014-05-25 03:55:44 +01002496 root_flags = btrfs_root_flags(&dest->root_item);
2497 btrfs_set_root_flags(&dest->root_item,
David Sterba521e0542014-04-15 16:41:44 +02002498 root_flags & ~BTRFS_ROOT_SUBVOL_DEAD);
2499 spin_unlock(&dest->root_item_lock);
2500 }
Yan, Zheng76dda932009-09-21 16:00:26 -04002501 mutex_unlock(&inode->i_mutex);
2502 if (!err) {
Yan, Zhengefefb142009-10-09 09:25:16 -04002503 shrink_dcache_sb(root->fs_info->sb);
Yan, Zheng76dda932009-09-21 16:00:26 -04002504 btrfs_invalidate_inodes(dest);
2505 d_delete(dentry);
David Sterba61155aa2014-04-15 16:42:03 +02002506 ASSERT(dest->send_in_progress == 0);
Liu Bofa6ac872013-02-20 14:10:23 +00002507
2508 /* the last ref */
David Sterba57cdc8d2014-02-05 02:37:48 +01002509 if (dest->ino_cache_inode) {
2510 iput(dest->ino_cache_inode);
2511 dest->ino_cache_inode = NULL;
Liu Bofa6ac872013-02-20 14:10:23 +00002512 }
Yan, Zheng76dda932009-09-21 16:00:26 -04002513 }
2514out_dput:
2515 dput(dentry);
2516out_unlock_dir:
2517 mutex_unlock(&dir->i_mutex);
David Sterbae43f9982013-12-06 17:51:32 +01002518out_drop_write:
Al Viro2a79f172011-12-09 08:06:57 -05002519 mnt_drop_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04002520out:
2521 kfree(vol_args);
2522 return err;
2523}
2524
Chris Mason1e701a32010-03-11 09:42:04 -05002525static int btrfs_ioctl_defrag(struct file *file, void __user *argp)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002526{
Al Viro496ad9a2013-01-23 17:07:38 -05002527 struct inode *inode = file_inode(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002528 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason1e701a32010-03-11 09:42:04 -05002529 struct btrfs_ioctl_defrag_range_args *range;
Yan Zhengc146afa2008-11-12 14:34:12 -05002530 int ret;
2531
Ilya Dryomov25122d12013-01-20 15:57:57 +02002532 ret = mnt_want_write_file(file);
2533 if (ret)
2534 return ret;
Li Zefanb83cc962010-12-20 16:04:08 +08002535
Ilya Dryomov25122d12013-01-20 15:57:57 +02002536 if (btrfs_root_readonly(root)) {
2537 ret = -EROFS;
2538 goto out;
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002539 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002540
2541 switch (inode->i_mode & S_IFMT) {
2542 case S_IFDIR:
Chris Masone441d542009-01-05 16:57:23 -05002543 if (!capable(CAP_SYS_ADMIN)) {
2544 ret = -EPERM;
2545 goto out;
2546 }
Eric Sandeende78b512013-01-31 18:21:12 +00002547 ret = btrfs_defrag_root(root);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04002548 if (ret)
2549 goto out;
Eric Sandeende78b512013-01-31 18:21:12 +00002550 ret = btrfs_defrag_root(root->fs_info->extent_root);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002551 break;
2552 case S_IFREG:
Chris Masone441d542009-01-05 16:57:23 -05002553 if (!(file->f_mode & FMODE_WRITE)) {
2554 ret = -EINVAL;
2555 goto out;
2556 }
Chris Mason1e701a32010-03-11 09:42:04 -05002557
2558 range = kzalloc(sizeof(*range), GFP_KERNEL);
2559 if (!range) {
2560 ret = -ENOMEM;
2561 goto out;
2562 }
2563
2564 if (argp) {
2565 if (copy_from_user(range, argp,
2566 sizeof(*range))) {
2567 ret = -EFAULT;
2568 kfree(range);
Dan Carpenter683be162010-03-20 11:24:48 +00002569 goto out;
Chris Mason1e701a32010-03-11 09:42:04 -05002570 }
2571 /* compression requires us to start the IO */
2572 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
2573 range->flags |= BTRFS_DEFRAG_RANGE_START_IO;
2574 range->extent_thresh = (u32)-1;
2575 }
2576 } else {
2577 /* the rest are all set to zero by kzalloc */
2578 range->len = (u64)-1;
2579 }
Al Viro496ad9a2013-01-23 17:07:38 -05002580 ret = btrfs_defrag_file(file_inode(file), file,
Chris Mason4cb53002011-05-24 15:35:30 -04002581 range, 0, 0);
2582 if (ret > 0)
2583 ret = 0;
Chris Mason1e701a32010-03-11 09:42:04 -05002584 kfree(range);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002585 break;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04002586 default:
2587 ret = -EINVAL;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002588 }
Chris Masone441d542009-01-05 16:57:23 -05002589out:
Ilya Dryomov25122d12013-01-20 15:57:57 +02002590 mnt_drop_write_file(file);
Chris Masone441d542009-01-05 16:57:23 -05002591 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002592}
2593
Christoph Hellwigb2950862008-12-02 09:54:17 -05002594static long btrfs_ioctl_add_dev(struct btrfs_root *root, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002595{
2596 struct btrfs_ioctl_vol_args *vol_args;
2597 int ret;
2598
Chris Masone441d542009-01-05 16:57:23 -05002599 if (!capable(CAP_SYS_ADMIN))
2600 return -EPERM;
2601
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002602 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
2603 1)) {
Anand Jaine57138b2013-08-21 11:44:48 +08002604 return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002605 }
2606
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002607 mutex_lock(&root->fs_info->volume_mutex);
Li Zefandae7b662009-04-08 15:06:54 +08002608 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002609 if (IS_ERR(vol_args)) {
2610 ret = PTR_ERR(vol_args);
2611 goto out;
2612 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002613
Mark Fasheh5516e592008-07-24 12:20:14 -04002614 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002615 ret = btrfs_init_new_device(root, vol_args->name);
2616
Anand Jain43d20762014-07-01 00:58:56 +08002617 if (!ret)
2618 btrfs_info(root->fs_info, "disk added %s",vol_args->name);
2619
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002620 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002621out:
2622 mutex_unlock(&root->fs_info->volume_mutex);
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002623 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002624 return ret;
2625}
2626
Miao Xieda249272012-11-26 08:44:50 +00002627static long btrfs_ioctl_rm_dev(struct file *file, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002628{
Al Viro496ad9a2013-01-23 17:07:38 -05002629 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002630 struct btrfs_ioctl_vol_args *vol_args;
2631 int ret;
2632
Chris Masone441d542009-01-05 16:57:23 -05002633 if (!capable(CAP_SYS_ADMIN))
2634 return -EPERM;
2635
Miao Xieda249272012-11-26 08:44:50 +00002636 ret = mnt_want_write_file(file);
2637 if (ret)
2638 return ret;
Yan Zhengc146afa2008-11-12 14:34:12 -05002639
Li Zefandae7b662009-04-08 15:06:54 +08002640 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002641 if (IS_ERR(vol_args)) {
2642 ret = PTR_ERR(vol_args);
Dan Carpenterc47ca322014-09-04 14:09:15 +03002643 goto err_drop;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002644 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002645
Mark Fasheh5516e592008-07-24 12:20:14 -04002646 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002647
Anand Jain183860f2013-05-17 10:52:45 +00002648 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
2649 1)) {
2650 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
2651 goto out;
2652 }
2653
2654 mutex_lock(&root->fs_info->volume_mutex);
2655 ret = btrfs_rm_device(root, vol_args->name);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002656 mutex_unlock(&root->fs_info->volume_mutex);
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002657 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
Anand Jain183860f2013-05-17 10:52:45 +00002658
Anand Jainec95d492014-07-01 00:58:57 +08002659 if (!ret)
2660 btrfs_info(root->fs_info, "disk deleted %s",vol_args->name);
2661
Anand Jain183860f2013-05-17 10:52:45 +00002662out:
2663 kfree(vol_args);
Dan Carpenterc47ca322014-09-04 14:09:15 +03002664err_drop:
Ilya Dryomov4ac20c72013-01-20 15:57:57 +02002665 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002666 return ret;
2667}
2668
Jan Schmidt475f6382011-03-11 15:41:01 +01002669static long btrfs_ioctl_fs_info(struct btrfs_root *root, void __user *arg)
2670{
Li Zefan027ed2f2011-06-08 08:27:56 +00002671 struct btrfs_ioctl_fs_info_args *fi_args;
Jan Schmidt475f6382011-03-11 15:41:01 +01002672 struct btrfs_device *device;
2673 struct btrfs_device *next;
2674 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
Li Zefan027ed2f2011-06-08 08:27:56 +00002675 int ret = 0;
Jan Schmidt475f6382011-03-11 15:41:01 +01002676
Li Zefan027ed2f2011-06-08 08:27:56 +00002677 fi_args = kzalloc(sizeof(*fi_args), GFP_KERNEL);
2678 if (!fi_args)
2679 return -ENOMEM;
2680
Filipe David Borba Mananaf7171752013-08-12 20:56:58 +01002681 mutex_lock(&fs_devices->device_list_mutex);
Li Zefan027ed2f2011-06-08 08:27:56 +00002682 fi_args->num_devices = fs_devices->num_devices;
2683 memcpy(&fi_args->fsid, root->fs_info->fsid, sizeof(fi_args->fsid));
Jan Schmidt475f6382011-03-11 15:41:01 +01002684
Jan Schmidt475f6382011-03-11 15:41:01 +01002685 list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) {
Li Zefan027ed2f2011-06-08 08:27:56 +00002686 if (device->devid > fi_args->max_id)
2687 fi_args->max_id = device->devid;
Jan Schmidt475f6382011-03-11 15:41:01 +01002688 }
2689 mutex_unlock(&fs_devices->device_list_mutex);
2690
David Sterba80a773f2014-05-07 18:17:06 +02002691 fi_args->nodesize = root->fs_info->super_copy->nodesize;
2692 fi_args->sectorsize = root->fs_info->super_copy->sectorsize;
2693 fi_args->clone_alignment = root->fs_info->super_copy->sectorsize;
2694
Li Zefan027ed2f2011-06-08 08:27:56 +00002695 if (copy_to_user(arg, fi_args, sizeof(*fi_args)))
2696 ret = -EFAULT;
Jan Schmidt475f6382011-03-11 15:41:01 +01002697
Li Zefan027ed2f2011-06-08 08:27:56 +00002698 kfree(fi_args);
2699 return ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01002700}
2701
2702static long btrfs_ioctl_dev_info(struct btrfs_root *root, void __user *arg)
2703{
2704 struct btrfs_ioctl_dev_info_args *di_args;
2705 struct btrfs_device *dev;
2706 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
2707 int ret = 0;
2708 char *s_uuid = NULL;
Jan Schmidt475f6382011-03-11 15:41:01 +01002709
Jan Schmidt475f6382011-03-11 15:41:01 +01002710 di_args = memdup_user(arg, sizeof(*di_args));
2711 if (IS_ERR(di_args))
2712 return PTR_ERR(di_args);
2713
Stefan Behrensdd5f9612013-08-15 17:11:20 +02002714 if (!btrfs_is_empty_uuid(di_args->uuid))
Jan Schmidt475f6382011-03-11 15:41:01 +01002715 s_uuid = di_args->uuid;
2716
2717 mutex_lock(&fs_devices->device_list_mutex);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01002718 dev = btrfs_find_device(root->fs_info, di_args->devid, s_uuid, NULL);
Jan Schmidt475f6382011-03-11 15:41:01 +01002719
2720 if (!dev) {
2721 ret = -ENODEV;
2722 goto out;
2723 }
2724
2725 di_args->devid = dev->devid;
Miao Xie7cc8e582014-09-03 21:35:38 +08002726 di_args->bytes_used = btrfs_device_get_bytes_used(dev);
2727 di_args->total_bytes = btrfs_device_get_total_bytes(dev);
Jan Schmidt475f6382011-03-11 15:41:01 +01002728 memcpy(di_args->uuid, dev->uuid, sizeof(di_args->uuid));
Jim Meyeringa27202f2012-04-26 18:36:56 +02002729 if (dev->name) {
Josef Bacik606686e2012-06-04 14:03:51 -04002730 struct rcu_string *name;
2731
2732 rcu_read_lock();
2733 name = rcu_dereference(dev->name);
2734 strncpy(di_args->path, name->str, sizeof(di_args->path));
2735 rcu_read_unlock();
Jim Meyeringa27202f2012-04-26 18:36:56 +02002736 di_args->path[sizeof(di_args->path) - 1] = 0;
2737 } else {
Stefan Behrens99ba55a2012-03-19 16:17:22 +01002738 di_args->path[0] = '\0';
Jim Meyeringa27202f2012-04-26 18:36:56 +02002739 }
Jan Schmidt475f6382011-03-11 15:41:01 +01002740
2741out:
David Sterba55793c02013-04-26 15:20:23 +00002742 mutex_unlock(&fs_devices->device_list_mutex);
Jan Schmidt475f6382011-03-11 15:41:01 +01002743 if (ret == 0 && copy_to_user(arg, di_args, sizeof(*di_args)))
2744 ret = -EFAULT;
2745
2746 kfree(di_args);
2747 return ret;
2748}
2749
Mark Fasheh416161d2013-08-06 11:42:51 -07002750static struct page *extent_same_get_page(struct inode *inode, u64 off)
2751{
2752 struct page *page;
2753 pgoff_t index;
2754 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2755
2756 index = off >> PAGE_CACHE_SHIFT;
2757
2758 page = grab_cache_page(inode->i_mapping, index);
2759 if (!page)
2760 return NULL;
2761
2762 if (!PageUptodate(page)) {
2763 if (extent_read_full_page_nolock(tree, page, btrfs_get_extent,
2764 0))
2765 return NULL;
2766 lock_page(page);
2767 if (!PageUptodate(page)) {
2768 unlock_page(page);
2769 page_cache_release(page);
2770 return NULL;
2771 }
2772 }
2773 unlock_page(page);
2774
2775 return page;
2776}
2777
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002778static inline void lock_extent_range(struct inode *inode, u64 off, u64 len)
2779{
2780 /* do any pending delalloc/csum calc on src, one way or
2781 another, and lock file content */
2782 while (1) {
2783 struct btrfs_ordered_extent *ordered;
2784 lock_extent(&BTRFS_I(inode)->io_tree, off, off + len - 1);
2785 ordered = btrfs_lookup_first_ordered_extent(inode,
2786 off + len - 1);
Filipe Mananaff5df9b2014-05-30 17:56:24 +01002787 if ((!ordered ||
2788 ordered->file_offset + ordered->len <= off ||
2789 ordered->file_offset >= off + len) &&
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002790 !test_range_bit(&BTRFS_I(inode)->io_tree, off,
Filipe Mananaff5df9b2014-05-30 17:56:24 +01002791 off + len - 1, EXTENT_DELALLOC, 0, NULL)) {
2792 if (ordered)
2793 btrfs_put_ordered_extent(ordered);
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002794 break;
Filipe Mananaff5df9b2014-05-30 17:56:24 +01002795 }
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002796 unlock_extent(&BTRFS_I(inode)->io_tree, off, off + len - 1);
2797 if (ordered)
2798 btrfs_put_ordered_extent(ordered);
2799 btrfs_wait_ordered_range(inode, off, len);
2800 }
2801}
2802
Mark Fasheh416161d2013-08-06 11:42:51 -07002803static void btrfs_double_unlock(struct inode *inode1, u64 loff1,
2804 struct inode *inode2, u64 loff2, u64 len)
2805{
2806 unlock_extent(&BTRFS_I(inode1)->io_tree, loff1, loff1 + len - 1);
2807 unlock_extent(&BTRFS_I(inode2)->io_tree, loff2, loff2 + len - 1);
2808
2809 mutex_unlock(&inode1->i_mutex);
2810 mutex_unlock(&inode2->i_mutex);
2811}
2812
2813static void btrfs_double_lock(struct inode *inode1, u64 loff1,
2814 struct inode *inode2, u64 loff2, u64 len)
2815{
2816 if (inode1 < inode2) {
2817 swap(inode1, inode2);
2818 swap(loff1, loff2);
2819 }
2820
2821 mutex_lock_nested(&inode1->i_mutex, I_MUTEX_PARENT);
2822 lock_extent_range(inode1, loff1, len);
2823 if (inode1 != inode2) {
2824 mutex_lock_nested(&inode2->i_mutex, I_MUTEX_CHILD);
2825 lock_extent_range(inode2, loff2, len);
2826 }
2827}
2828
2829static int btrfs_cmp_data(struct inode *src, u64 loff, struct inode *dst,
2830 u64 dst_loff, u64 len)
2831{
2832 int ret = 0;
2833 struct page *src_page, *dst_page;
2834 unsigned int cmp_len = PAGE_CACHE_SIZE;
2835 void *addr, *dst_addr;
2836
2837 while (len) {
2838 if (len < PAGE_CACHE_SIZE)
2839 cmp_len = len;
2840
2841 src_page = extent_same_get_page(src, loff);
2842 if (!src_page)
2843 return -EINVAL;
2844 dst_page = extent_same_get_page(dst, dst_loff);
2845 if (!dst_page) {
2846 page_cache_release(src_page);
2847 return -EINVAL;
2848 }
2849 addr = kmap_atomic(src_page);
2850 dst_addr = kmap_atomic(dst_page);
2851
2852 flush_dcache_page(src_page);
2853 flush_dcache_page(dst_page);
2854
2855 if (memcmp(addr, dst_addr, cmp_len))
2856 ret = BTRFS_SAME_DATA_DIFFERS;
2857
2858 kunmap_atomic(addr);
2859 kunmap_atomic(dst_addr);
2860 page_cache_release(src_page);
2861 page_cache_release(dst_page);
2862
2863 if (ret)
2864 break;
2865
2866 loff += cmp_len;
2867 dst_loff += cmp_len;
2868 len -= cmp_len;
2869 }
2870
2871 return ret;
2872}
2873
2874static int extent_same_check_offsets(struct inode *inode, u64 off, u64 len)
2875{
2876 u64 bs = BTRFS_I(inode)->root->fs_info->sb->s_blocksize;
2877
2878 if (off + len > inode->i_size || off + len < off)
2879 return -EINVAL;
2880 /* Check that we are block aligned - btrfs_clone() requires this */
2881 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs))
2882 return -EINVAL;
2883
2884 return 0;
2885}
2886
2887static int btrfs_extent_same(struct inode *src, u64 loff, u64 len,
2888 struct inode *dst, u64 dst_loff)
2889{
2890 int ret;
2891
2892 /*
2893 * btrfs_clone() can't handle extents in the same file
2894 * yet. Once that works, we can drop this check and replace it
2895 * with a check for the same inode, but overlapping extents.
2896 */
2897 if (src == dst)
2898 return -EINVAL;
2899
Filipe Manana113e8282015-03-30 18:26:47 +01002900 if (len == 0)
2901 return 0;
2902
Mark Fasheh416161d2013-08-06 11:42:51 -07002903 btrfs_double_lock(src, loff, dst, dst_loff, len);
2904
2905 ret = extent_same_check_offsets(src, loff, len);
2906 if (ret)
2907 goto out_unlock;
2908
2909 ret = extent_same_check_offsets(dst, dst_loff, len);
2910 if (ret)
2911 goto out_unlock;
2912
2913 /* don't make the dst file partly checksummed */
2914 if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
2915 (BTRFS_I(dst)->flags & BTRFS_INODE_NODATASUM)) {
2916 ret = -EINVAL;
2917 goto out_unlock;
2918 }
2919
2920 ret = btrfs_cmp_data(src, loff, dst, dst_loff, len);
2921 if (ret == 0)
2922 ret = btrfs_clone(src, dst, loff, len, len, dst_loff);
2923
2924out_unlock:
2925 btrfs_double_unlock(src, loff, dst, dst_loff, len);
2926
2927 return ret;
2928}
2929
2930#define BTRFS_MAX_DEDUPE_LEN (16 * 1024 * 1024)
2931
2932static long btrfs_ioctl_file_extent_same(struct file *file,
Al Viro1c1c8742013-12-11 23:07:51 -05002933 struct btrfs_ioctl_same_args __user *argp)
Mark Fasheh416161d2013-08-06 11:42:51 -07002934{
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07002935 struct btrfs_ioctl_same_args *same;
2936 struct btrfs_ioctl_same_extent_info *info;
Al Viro1c1c8742013-12-11 23:07:51 -05002937 struct inode *src = file_inode(file);
Mark Fasheh416161d2013-08-06 11:42:51 -07002938 u64 off;
2939 u64 len;
2940 int i;
2941 int ret;
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07002942 unsigned long size;
Mark Fasheh416161d2013-08-06 11:42:51 -07002943 u64 bs = BTRFS_I(src)->root->fs_info->sb->s_blocksize;
2944 bool is_admin = capable(CAP_SYS_ADMIN);
Al Viro1c1c8742013-12-11 23:07:51 -05002945 u16 count;
Mark Fasheh416161d2013-08-06 11:42:51 -07002946
2947 if (!(file->f_mode & FMODE_READ))
2948 return -EINVAL;
2949
2950 ret = mnt_want_write_file(file);
2951 if (ret)
2952 return ret;
2953
Al Viro1c1c8742013-12-11 23:07:51 -05002954 if (get_user(count, &argp->dest_count)) {
Mark Fasheh416161d2013-08-06 11:42:51 -07002955 ret = -EFAULT;
2956 goto out;
2957 }
2958
Al Viro1c1c8742013-12-11 23:07:51 -05002959 size = offsetof(struct btrfs_ioctl_same_args __user, info[count]);
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07002960
Al Viro1c1c8742013-12-11 23:07:51 -05002961 same = memdup_user(argp, size);
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07002962
Geyslan G. Bem229eed42013-10-14 12:18:25 -03002963 if (IS_ERR(same)) {
2964 ret = PTR_ERR(same);
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07002965 goto out;
2966 }
2967
2968 off = same->logical_offset;
2969 len = same->length;
Mark Fasheh416161d2013-08-06 11:42:51 -07002970
2971 /*
2972 * Limit the total length we will dedupe for each operation.
2973 * This is intended to bound the total time spent in this
2974 * ioctl to something sane.
2975 */
2976 if (len > BTRFS_MAX_DEDUPE_LEN)
2977 len = BTRFS_MAX_DEDUPE_LEN;
2978
2979 if (WARN_ON_ONCE(bs < PAGE_CACHE_SIZE)) {
2980 /*
2981 * Btrfs does not support blocksize < page_size. As a
2982 * result, btrfs_cmp_data() won't correctly handle
2983 * this situation without an update.
2984 */
2985 ret = -EINVAL;
2986 goto out;
2987 }
2988
2989 ret = -EISDIR;
2990 if (S_ISDIR(src->i_mode))
2991 goto out;
2992
2993 ret = -EACCES;
2994 if (!S_ISREG(src->i_mode))
2995 goto out;
2996
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07002997 /* pre-format output fields to sane values */
Al Viro1c1c8742013-12-11 23:07:51 -05002998 for (i = 0; i < count; i++) {
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07002999 same->info[i].bytes_deduped = 0ULL;
3000 same->info[i].status = 0;
3001 }
3002
Al Viro1c1c8742013-12-11 23:07:51 -05003003 for (i = 0, info = same->info; i < count; i++, info++) {
3004 struct inode *dst;
3005 struct fd dst_file = fdget(info->fd);
3006 if (!dst_file.file) {
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003007 info->status = -EBADF;
Al Viro1c1c8742013-12-11 23:07:51 -05003008 continue;
Mark Fasheh416161d2013-08-06 11:42:51 -07003009 }
Al Viro1c1c8742013-12-11 23:07:51 -05003010 dst = file_inode(dst_file.file);
Mark Fasheh416161d2013-08-06 11:42:51 -07003011
Al Viro1c1c8742013-12-11 23:07:51 -05003012 if (!(is_admin || (dst_file.file->f_mode & FMODE_WRITE))) {
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003013 info->status = -EINVAL;
Al Viro1c1c8742013-12-11 23:07:51 -05003014 } else if (file->f_path.mnt != dst_file.file->f_path.mnt) {
3015 info->status = -EXDEV;
3016 } else if (S_ISDIR(dst->i_mode)) {
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003017 info->status = -EISDIR;
Al Viro1c1c8742013-12-11 23:07:51 -05003018 } else if (!S_ISREG(dst->i_mode)) {
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003019 info->status = -EACCES;
Al Viro1c1c8742013-12-11 23:07:51 -05003020 } else {
3021 info->status = btrfs_extent_same(src, off, len, dst,
3022 info->logical_offset);
3023 if (info->status == 0)
3024 info->bytes_deduped += len;
Mark Fasheh416161d2013-08-06 11:42:51 -07003025 }
Al Viro1c1c8742013-12-11 23:07:51 -05003026 fdput(dst_file);
Mark Fasheh416161d2013-08-06 11:42:51 -07003027 }
3028
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003029 ret = copy_to_user(argp, same, size);
3030 if (ret)
3031 ret = -EFAULT;
3032
Mark Fasheh416161d2013-08-06 11:42:51 -07003033out:
3034 mnt_drop_write_file(file);
3035 return ret;
3036}
3037
Josef Bacikfcebe452014-05-13 17:30:47 -07003038/* Helper to check and see if this root currently has a ref on the given disk
3039 * bytenr. If it does then we need to update the quota for this root. This
3040 * doesn't do anything if quotas aren't enabled.
3041 */
3042static int check_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
3043 u64 disko)
3044{
David Sterba3284da72015-02-25 15:47:32 +01003045 struct seq_list tree_mod_seq_elem = SEQ_LIST_INIT(tree_mod_seq_elem);
Josef Bacikfcebe452014-05-13 17:30:47 -07003046 struct ulist *roots;
3047 struct ulist_iterator uiter;
3048 struct ulist_node *root_node = NULL;
3049 int ret;
3050
3051 if (!root->fs_info->quota_enabled)
3052 return 1;
3053
3054 btrfs_get_tree_mod_seq(root->fs_info, &tree_mod_seq_elem);
3055 ret = btrfs_find_all_roots(trans, root->fs_info, disko,
3056 tree_mod_seq_elem.seq, &roots);
3057 if (ret < 0)
3058 goto out;
3059 ret = 0;
3060 ULIST_ITER_INIT(&uiter);
3061 while ((root_node = ulist_next(roots, &uiter))) {
3062 if (root_node->val == root->objectid) {
3063 ret = 1;
3064 break;
3065 }
3066 }
3067 ulist_free(roots);
3068out:
3069 btrfs_put_tree_mod_seq(root->fs_info, &tree_mod_seq_elem);
3070 return ret;
3071}
3072
Filipe Mananaf82a9902014-06-01 01:50:28 +01003073static int clone_finish_inode_update(struct btrfs_trans_handle *trans,
3074 struct inode *inode,
3075 u64 endoff,
3076 const u64 destoff,
3077 const u64 olen)
3078{
3079 struct btrfs_root *root = BTRFS_I(inode)->root;
3080 int ret;
3081
3082 inode_inc_iversion(inode);
3083 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
3084 /*
3085 * We round up to the block size at eof when determining which
3086 * extents to clone above, but shouldn't round up the file size.
3087 */
3088 if (endoff > destoff + olen)
3089 endoff = destoff + olen;
3090 if (endoff > inode->i_size)
3091 btrfs_i_size_write(inode, endoff);
3092
3093 ret = btrfs_update_inode(trans, root, inode);
3094 if (ret) {
3095 btrfs_abort_transaction(trans, root, ret);
3096 btrfs_end_transaction(trans, root);
3097 goto out;
3098 }
3099 ret = btrfs_end_transaction(trans, root);
3100out:
3101 return ret;
3102}
3103
Filipe Manana7ffbb592014-06-09 03:48:05 +01003104static void clone_update_extent_map(struct inode *inode,
3105 const struct btrfs_trans_handle *trans,
3106 const struct btrfs_path *path,
Filipe Manana7ffbb592014-06-09 03:48:05 +01003107 const u64 hole_offset,
3108 const u64 hole_len)
3109{
3110 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
3111 struct extent_map *em;
3112 int ret;
3113
3114 em = alloc_extent_map();
3115 if (!em) {
3116 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3117 &BTRFS_I(inode)->runtime_flags);
3118 return;
3119 }
3120
Filipe Manana14f59792014-06-29 21:45:40 +01003121 if (path) {
3122 struct btrfs_file_extent_item *fi;
3123
3124 fi = btrfs_item_ptr(path->nodes[0], path->slots[0],
3125 struct btrfs_file_extent_item);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003126 btrfs_extent_item_to_extent_map(inode, path, fi, false, em);
3127 em->generation = -1;
3128 if (btrfs_file_extent_type(path->nodes[0], fi) ==
3129 BTRFS_FILE_EXTENT_INLINE)
3130 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3131 &BTRFS_I(inode)->runtime_flags);
3132 } else {
3133 em->start = hole_offset;
3134 em->len = hole_len;
3135 em->ram_bytes = em->len;
3136 em->orig_start = hole_offset;
3137 em->block_start = EXTENT_MAP_HOLE;
3138 em->block_len = 0;
3139 em->orig_block_len = 0;
3140 em->compress_type = BTRFS_COMPRESS_NONE;
3141 em->generation = trans->transid;
3142 }
3143
3144 while (1) {
3145 write_lock(&em_tree->lock);
3146 ret = add_extent_mapping(em_tree, em, 1);
3147 write_unlock(&em_tree->lock);
3148 if (ret != -EEXIST) {
3149 free_extent_map(em);
3150 break;
3151 }
3152 btrfs_drop_extent_cache(inode, em->start,
3153 em->start + em->len - 1, 0);
3154 }
3155
David Sterbaee39b432014-09-30 01:33:33 +02003156 if (ret)
Filipe Manana7ffbb592014-06-09 03:48:05 +01003157 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3158 &BTRFS_I(inode)->runtime_flags);
3159}
3160
Mark Fasheh32b7c682013-08-06 11:42:49 -07003161/**
3162 * btrfs_clone() - clone a range from inode file to another
3163 *
3164 * @src: Inode to clone from
3165 * @inode: Inode to clone to
3166 * @off: Offset within source to start clone from
3167 * @olen: Original length, passed by user, of range to clone
3168 * @olen_aligned: Block-aligned value of olen, extent_same uses
3169 * identical values here
3170 * @destoff: Offset within @inode to start clone
3171 */
3172static int btrfs_clone(struct inode *src, struct inode *inode,
Filipe Mananaf82a9902014-06-01 01:50:28 +01003173 const u64 off, const u64 olen, const u64 olen_aligned,
3174 const u64 destoff)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003175{
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003176 struct btrfs_root *root = BTRFS_I(inode)->root;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003177 struct btrfs_path *path = NULL;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003178 struct extent_buffer *leaf;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003179 struct btrfs_trans_handle *trans;
3180 char *buf = NULL;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003181 struct btrfs_key key;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003182 u32 nritems;
3183 int slot;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003184 int ret;
Josef Bacikfcebe452014-05-13 17:30:47 -07003185 int no_quota;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003186 const u64 len = olen_aligned;
Josef Bacikfcebe452014-05-13 17:30:47 -07003187 u64 last_disko = 0;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003188 u64 last_dest_end = destoff;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003189
3190 ret = -ENOMEM;
David Sterba707e8a02014-06-04 19:22:26 +02003191 buf = vmalloc(root->nodesize);
Yan Zhengae01a0a2008-08-04 23:23:47 -04003192 if (!buf)
Mark Fasheh32b7c682013-08-06 11:42:49 -07003193 return ret;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003194
3195 path = btrfs_alloc_path();
3196 if (!path) {
3197 vfree(buf);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003198 return ret;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003199 }
Mark Fasheh32b7c682013-08-06 11:42:49 -07003200
Yan Zhengae01a0a2008-08-04 23:23:47 -04003201 path->reada = 2;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003202 /* clone data */
Li Zefan33345d012011-04-20 10:31:50 +08003203 key.objectid = btrfs_ino(src);
Yan Zhengae01a0a2008-08-04 23:23:47 -04003204 key.type = BTRFS_EXTENT_DATA_KEY;
Filipe Manana2c463822014-05-31 02:31:05 +01003205 key.offset = off;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003206
3207 while (1) {
Filipe Mananadf858e72015-03-31 14:56:46 +01003208 u64 next_key_min_offset;
3209
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003210 /*
3211 * note the key will change type as we walk through the
3212 * tree.
3213 */
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003214 path->leave_spinning = 1;
David Sterba362a20c2011-08-01 18:11:57 +02003215 ret = btrfs_search_slot(NULL, BTRFS_I(src)->root, &key, path,
3216 0, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003217 if (ret < 0)
3218 goto out;
Filipe Manana2c463822014-05-31 02:31:05 +01003219 /*
3220 * First search, if no extent item that starts at offset off was
3221 * found but the previous item is an extent item, it's possible
3222 * it might overlap our target range, therefore process it.
3223 */
3224 if (key.offset == off && ret > 0 && path->slots[0] > 0) {
3225 btrfs_item_key_to_cpu(path->nodes[0], &key,
3226 path->slots[0] - 1);
3227 if (key.type == BTRFS_EXTENT_DATA_KEY)
3228 path->slots[0]--;
3229 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003230
Yan Zhengae01a0a2008-08-04 23:23:47 -04003231 nritems = btrfs_header_nritems(path->nodes[0]);
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003232process_slot:
Josef Bacikfcebe452014-05-13 17:30:47 -07003233 no_quota = 1;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003234 if (path->slots[0] >= nritems) {
David Sterba362a20c2011-08-01 18:11:57 +02003235 ret = btrfs_next_leaf(BTRFS_I(src)->root, path);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003236 if (ret < 0)
3237 goto out;
3238 if (ret > 0)
3239 break;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003240 nritems = btrfs_header_nritems(path->nodes[0]);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003241 }
3242 leaf = path->nodes[0];
3243 slot = path->slots[0];
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003244
Yan Zhengae01a0a2008-08-04 23:23:47 -04003245 btrfs_item_key_to_cpu(leaf, &key, slot);
David Sterba962a2982014-06-04 18:41:45 +02003246 if (key.type > BTRFS_EXTENT_DATA_KEY ||
Li Zefan33345d012011-04-20 10:31:50 +08003247 key.objectid != btrfs_ino(src))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003248 break;
3249
David Sterba962a2982014-06-04 18:41:45 +02003250 if (key.type == BTRFS_EXTENT_DATA_KEY) {
Sage Weilc5c9cd42008-11-12 14:32:25 -05003251 struct btrfs_file_extent_item *extent;
3252 int type;
Zheng Yan31840ae2008-09-23 13:14:14 -04003253 u32 size;
3254 struct btrfs_key new_key;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003255 u64 disko = 0, diskl = 0;
3256 u64 datao = 0, datal = 0;
3257 u8 comp;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003258 u64 drop_start;
Zheng Yan31840ae2008-09-23 13:14:14 -04003259
Sage Weilc5c9cd42008-11-12 14:32:25 -05003260 extent = btrfs_item_ptr(leaf, slot,
3261 struct btrfs_file_extent_item);
3262 comp = btrfs_file_extent_compression(leaf, extent);
3263 type = btrfs_file_extent_type(leaf, extent);
Chris Masonc8a894d2009-06-27 21:07:03 -04003264 if (type == BTRFS_FILE_EXTENT_REG ||
3265 type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masond3977122009-01-05 21:25:51 -05003266 disko = btrfs_file_extent_disk_bytenr(leaf,
3267 extent);
3268 diskl = btrfs_file_extent_disk_num_bytes(leaf,
3269 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003270 datao = btrfs_file_extent_offset(leaf, extent);
Chris Masond3977122009-01-05 21:25:51 -05003271 datal = btrfs_file_extent_num_bytes(leaf,
3272 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003273 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
3274 /* take upper bound, may be compressed */
3275 datal = btrfs_file_extent_ram_bytes(leaf,
3276 extent);
3277 }
Zheng Yan31840ae2008-09-23 13:14:14 -04003278
Filipe Manana2c463822014-05-31 02:31:05 +01003279 /*
3280 * The first search might have left us at an extent
3281 * item that ends before our target range's start, can
3282 * happen if we have holes and NO_HOLES feature enabled.
3283 */
3284 if (key.offset + datal <= off) {
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003285 path->slots[0]++;
3286 goto process_slot;
Filipe Manana2c463822014-05-31 02:31:05 +01003287 } else if (key.offset >= off + len) {
3288 break;
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003289 }
Filipe Mananadf858e72015-03-31 14:56:46 +01003290 next_key_min_offset = key.offset + datal;
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003291 size = btrfs_item_size_nr(leaf, slot);
3292 read_extent_buffer(leaf, buf,
3293 btrfs_item_ptr_offset(leaf, slot),
3294 size);
3295
3296 btrfs_release_path(path);
3297 path->leave_spinning = 0;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003298
Zheng Yan31840ae2008-09-23 13:14:14 -04003299 memcpy(&new_key, &key, sizeof(new_key));
Li Zefan33345d012011-04-20 10:31:50 +08003300 new_key.objectid = btrfs_ino(inode);
Li Zefan4d728ec2011-01-26 14:10:43 +08003301 if (off <= key.offset)
3302 new_key.offset = key.offset + destoff - off;
3303 else
3304 new_key.offset = destoff;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003305
Sage Weilb6f34092011-09-20 14:48:51 -04003306 /*
Filipe Mananaf82a9902014-06-01 01:50:28 +01003307 * Deal with a hole that doesn't have an extent item
3308 * that represents it (NO_HOLES feature enabled).
3309 * This hole is either in the middle of the cloning
3310 * range or at the beginning (fully overlaps it or
3311 * partially overlaps it).
3312 */
3313 if (new_key.offset != last_dest_end)
3314 drop_start = last_dest_end;
3315 else
3316 drop_start = new_key.offset;
3317
3318 /*
Sage Weilb6f34092011-09-20 14:48:51 -04003319 * 1 - adjusting old extent (we may have to split it)
3320 * 1 - add new extent
3321 * 1 - inode update
3322 */
3323 trans = btrfs_start_transaction(root, 3);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003324 if (IS_ERR(trans)) {
3325 ret = PTR_ERR(trans);
3326 goto out;
3327 }
3328
Chris Masonc8a894d2009-06-27 21:07:03 -04003329 if (type == BTRFS_FILE_EXTENT_REG ||
3330 type == BTRFS_FILE_EXTENT_PREALLOC) {
Li Zefand72c0842011-09-11 10:52:25 -04003331 /*
3332 * a | --- range to clone ---| b
3333 * | ------------- extent ------------- |
3334 */
3335
Antonio Ospite93915582014-06-04 14:03:48 +02003336 /* subtract range b */
Li Zefand72c0842011-09-11 10:52:25 -04003337 if (key.offset + datal > off + len)
3338 datal = off + len - key.offset;
3339
Antonio Ospite93915582014-06-04 14:03:48 +02003340 /* subtract range a */
Yan, Zhenga22285a2010-05-16 10:48:46 -04003341 if (off > key.offset) {
3342 datao += off - key.offset;
3343 datal -= off - key.offset;
3344 }
3345
Josef Bacik5dc562c2012-08-17 13:14:17 -04003346 ret = btrfs_drop_extents(trans, root, inode,
Filipe Mananaf82a9902014-06-01 01:50:28 +01003347 drop_start,
Yan, Zhenga22285a2010-05-16 10:48:46 -04003348 new_key.offset + datal,
Josef Bacik26714852012-08-29 12:24:27 -04003349 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003350 if (ret) {
David Sterba3f9e3df2014-04-15 18:50:17 +02003351 if (ret != -EOPNOTSUPP)
Liu Bo00fdf132014-03-10 18:56:07 +08003352 btrfs_abort_transaction(trans,
3353 root, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003354 btrfs_end_transaction(trans, root);
3355 goto out;
3356 }
Yan, Zhenga22285a2010-05-16 10:48:46 -04003357
Sage Weilc5c9cd42008-11-12 14:32:25 -05003358 ret = btrfs_insert_empty_item(trans, root, path,
3359 &new_key, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003360 if (ret) {
3361 btrfs_abort_transaction(trans, root,
3362 ret);
3363 btrfs_end_transaction(trans, root);
3364 goto out;
3365 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05003366
3367 leaf = path->nodes[0];
3368 slot = path->slots[0];
3369 write_extent_buffer(leaf, buf,
3370 btrfs_item_ptr_offset(leaf, slot),
3371 size);
3372
3373 extent = btrfs_item_ptr(leaf, slot,
3374 struct btrfs_file_extent_item);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003375
Sage Weilc5c9cd42008-11-12 14:32:25 -05003376 /* disko == 0 means it's a hole */
3377 if (!disko)
3378 datao = 0;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003379
3380 btrfs_set_file_extent_offset(leaf, extent,
3381 datao);
3382 btrfs_set_file_extent_num_bytes(leaf, extent,
3383 datal);
Josef Bacikfcebe452014-05-13 17:30:47 -07003384
3385 /*
3386 * We need to look up the roots that point at
3387 * this bytenr and see if the new root does. If
3388 * it does not we need to make sure we update
3389 * quotas appropriately.
3390 */
3391 if (disko && root != BTRFS_I(src)->root &&
3392 disko != last_disko) {
3393 no_quota = check_ref(trans, root,
3394 disko);
3395 if (no_quota < 0) {
3396 btrfs_abort_transaction(trans,
3397 root,
3398 ret);
3399 btrfs_end_transaction(trans,
3400 root);
3401 ret = no_quota;
3402 goto out;
3403 }
3404 }
3405
Sage Weilc5c9cd42008-11-12 14:32:25 -05003406 if (disko) {
3407 inode_add_bytes(inode, datal);
3408 ret = btrfs_inc_extent_ref(trans, root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003409 disko, diskl, 0,
3410 root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08003411 btrfs_ino(inode),
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003412 new_key.offset - datao,
Josef Bacikfcebe452014-05-13 17:30:47 -07003413 no_quota);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003414 if (ret) {
3415 btrfs_abort_transaction(trans,
3416 root,
3417 ret);
3418 btrfs_end_transaction(trans,
3419 root);
3420 goto out;
3421
3422 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05003423 }
3424 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
3425 u64 skip = 0;
3426 u64 trim = 0;
Liu Bod3ecfcd2014-05-09 10:01:02 +08003427 u64 aligned_end = 0;
3428
Sage Weilc5c9cd42008-11-12 14:32:25 -05003429 if (off > key.offset) {
3430 skip = off - key.offset;
3431 new_key.offset += skip;
3432 }
Chris Masond3977122009-01-05 21:25:51 -05003433
Liu Boaa42ffd2012-09-18 03:52:23 -06003434 if (key.offset + datal > off + len)
3435 trim = key.offset + datal - (off + len);
Chris Masond3977122009-01-05 21:25:51 -05003436
Sage Weilc5c9cd42008-11-12 14:32:25 -05003437 if (comp && (skip || trim)) {
Sage Weilc5c9cd42008-11-12 14:32:25 -05003438 ret = -EINVAL;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003439 btrfs_end_transaction(trans, root);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003440 goto out;
3441 }
3442 size -= skip + trim;
3443 datal -= skip + trim;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003444
Liu Bod3ecfcd2014-05-09 10:01:02 +08003445 aligned_end = ALIGN(new_key.offset + datal,
3446 root->sectorsize);
Josef Bacik5dc562c2012-08-17 13:14:17 -04003447 ret = btrfs_drop_extents(trans, root, inode,
Filipe Mananaf82a9902014-06-01 01:50:28 +01003448 drop_start,
Liu Bod3ecfcd2014-05-09 10:01:02 +08003449 aligned_end,
Josef Bacik26714852012-08-29 12:24:27 -04003450 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003451 if (ret) {
David Sterba3f9e3df2014-04-15 18:50:17 +02003452 if (ret != -EOPNOTSUPP)
Chris Mason3a29bc02014-04-07 07:10:40 -07003453 btrfs_abort_transaction(trans,
3454 root, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003455 btrfs_end_transaction(trans, root);
3456 goto out;
3457 }
Yan, Zhenga22285a2010-05-16 10:48:46 -04003458
Sage Weilc5c9cd42008-11-12 14:32:25 -05003459 ret = btrfs_insert_empty_item(trans, root, path,
3460 &new_key, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003461 if (ret) {
3462 btrfs_abort_transaction(trans, root,
3463 ret);
3464 btrfs_end_transaction(trans, root);
3465 goto out;
3466 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05003467
3468 if (skip) {
Chris Masond3977122009-01-05 21:25:51 -05003469 u32 start =
3470 btrfs_file_extent_calc_inline_size(0);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003471 memmove(buf+start, buf+start+skip,
3472 datal);
3473 }
3474
3475 leaf = path->nodes[0];
3476 slot = path->slots[0];
3477 write_extent_buffer(leaf, buf,
3478 btrfs_item_ptr_offset(leaf, slot),
3479 size);
3480 inode_add_bytes(inode, datal);
3481 }
3482
Filipe Manana7ffbb592014-06-09 03:48:05 +01003483 /* If we have an implicit hole (NO_HOLES feature). */
3484 if (drop_start < new_key.offset)
3485 clone_update_extent_map(inode, trans,
Filipe Manana14f59792014-06-29 21:45:40 +01003486 NULL, drop_start,
Filipe Manana7ffbb592014-06-09 03:48:05 +01003487 new_key.offset - drop_start);
3488
Filipe Manana14f59792014-06-29 21:45:40 +01003489 clone_update_extent_map(inode, trans, path, 0, 0);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003490
Sage Weilc5c9cd42008-11-12 14:32:25 -05003491 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02003492 btrfs_release_path(path);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003493
Filipe Manana62e23902014-08-08 02:47:06 +01003494 last_dest_end = ALIGN(new_key.offset + datal,
3495 root->sectorsize);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003496 ret = clone_finish_inode_update(trans, inode,
3497 last_dest_end,
3498 destoff, olen);
3499 if (ret)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003500 goto out;
Filipe Manana2c463822014-05-31 02:31:05 +01003501 if (new_key.offset + datal >= destoff + len)
3502 break;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003503 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003504 btrfs_release_path(path);
Filipe Mananadf858e72015-03-31 14:56:46 +01003505 key.offset = next_key_min_offset;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003506 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003507 ret = 0;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003508
Filipe Mananaf82a9902014-06-01 01:50:28 +01003509 if (last_dest_end < destoff + len) {
3510 /*
3511 * We have an implicit hole (NO_HOLES feature is enabled) that
3512 * fully or partially overlaps our cloning range at its end.
3513 */
3514 btrfs_release_path(path);
3515
3516 /*
3517 * 1 - remove extent(s)
3518 * 1 - inode update
3519 */
3520 trans = btrfs_start_transaction(root, 2);
3521 if (IS_ERR(trans)) {
3522 ret = PTR_ERR(trans);
3523 goto out;
3524 }
3525 ret = btrfs_drop_extents(trans, root, inode,
3526 last_dest_end, destoff + len, 1);
3527 if (ret) {
3528 if (ret != -EOPNOTSUPP)
3529 btrfs_abort_transaction(trans, root, ret);
3530 btrfs_end_transaction(trans, root);
3531 goto out;
3532 }
Filipe Manana14f59792014-06-29 21:45:40 +01003533 clone_update_extent_map(inode, trans, NULL, last_dest_end,
3534 destoff + len - last_dest_end);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003535 ret = clone_finish_inode_update(trans, inode, destoff + len,
3536 destoff, olen);
3537 }
3538
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003539out:
Mark Fasheh32b7c682013-08-06 11:42:49 -07003540 btrfs_free_path(path);
3541 vfree(buf);
3542 return ret;
3543}
3544
3545static noinline long btrfs_ioctl_clone(struct file *file, unsigned long srcfd,
3546 u64 off, u64 olen, u64 destoff)
3547{
Al Viro54563d42013-09-01 15:57:51 -04003548 struct inode *inode = file_inode(file);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003549 struct btrfs_root *root = BTRFS_I(inode)->root;
3550 struct fd src_file;
3551 struct inode *src;
3552 int ret;
3553 u64 len = olen;
3554 u64 bs = root->fs_info->sb->s_blocksize;
3555 int same_inode = 0;
3556
3557 /*
3558 * TODO:
3559 * - split compressed inline extents. annoying: we need to
3560 * decompress into destination's address_space (the file offset
3561 * may change, so source mapping won't do), then recompress (or
3562 * otherwise reinsert) a subrange.
Liu Bo00fdf132014-03-10 18:56:07 +08003563 *
3564 * - split destination inode's inline extents. The inline extents can
3565 * be either compressed or non-compressed.
Mark Fasheh32b7c682013-08-06 11:42:49 -07003566 */
3567
3568 /* the destination must be opened for writing */
3569 if (!(file->f_mode & FMODE_WRITE) || (file->f_flags & O_APPEND))
3570 return -EINVAL;
3571
3572 if (btrfs_root_readonly(root))
3573 return -EROFS;
3574
3575 ret = mnt_want_write_file(file);
3576 if (ret)
3577 return ret;
3578
3579 src_file = fdget(srcfd);
3580 if (!src_file.file) {
3581 ret = -EBADF;
3582 goto out_drop_write;
3583 }
3584
3585 ret = -EXDEV;
3586 if (src_file.file->f_path.mnt != file->f_path.mnt)
3587 goto out_fput;
3588
3589 src = file_inode(src_file.file);
3590
3591 ret = -EINVAL;
3592 if (src == inode)
3593 same_inode = 1;
3594
3595 /* the src must be open for reading */
3596 if (!(src_file.file->f_mode & FMODE_READ))
3597 goto out_fput;
3598
3599 /* don't make the dst file partly checksummed */
3600 if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
3601 (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM))
3602 goto out_fput;
3603
3604 ret = -EISDIR;
3605 if (S_ISDIR(src->i_mode) || S_ISDIR(inode->i_mode))
3606 goto out_fput;
3607
3608 ret = -EXDEV;
3609 if (src->i_sb != inode->i_sb)
3610 goto out_fput;
3611
3612 if (!same_inode) {
3613 if (inode < src) {
3614 mutex_lock_nested(&inode->i_mutex, I_MUTEX_PARENT);
3615 mutex_lock_nested(&src->i_mutex, I_MUTEX_CHILD);
3616 } else {
3617 mutex_lock_nested(&src->i_mutex, I_MUTEX_PARENT);
3618 mutex_lock_nested(&inode->i_mutex, I_MUTEX_CHILD);
3619 }
3620 } else {
3621 mutex_lock(&src->i_mutex);
3622 }
3623
3624 /* determine range to clone */
3625 ret = -EINVAL;
3626 if (off + len > src->i_size || off + len < off)
3627 goto out_unlock;
3628 if (len == 0)
3629 olen = len = src->i_size - off;
3630 /* if we extend to eof, continue to block boundary */
3631 if (off + len == src->i_size)
3632 len = ALIGN(src->i_size, bs) - off;
3633
3634 /* verify the end result is block aligned */
3635 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs) ||
3636 !IS_ALIGNED(destoff, bs))
3637 goto out_unlock;
3638
3639 /* verify if ranges are overlapped within the same file */
3640 if (same_inode) {
3641 if (destoff + len > off && destoff < off + len)
3642 goto out_unlock;
3643 }
3644
3645 if (destoff > inode->i_size) {
3646 ret = btrfs_cont_expand(inode, inode->i_size, destoff);
3647 if (ret)
3648 goto out_unlock;
3649 }
3650
Filipe Mananac125b8b2014-05-23 05:03:34 +01003651 /*
3652 * Lock the target range too. Right after we replace the file extent
3653 * items in the fs tree (which now point to the cloned data), we might
3654 * have a worker replace them with extent items relative to a write
3655 * operation that was issued before this clone operation (i.e. confront
3656 * with inode.c:btrfs_finish_ordered_io).
3657 */
3658 if (same_inode) {
3659 u64 lock_start = min_t(u64, off, destoff);
3660 u64 lock_len = max_t(u64, off, destoff) + len - lock_start;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003661
Filipe Mananac125b8b2014-05-23 05:03:34 +01003662 lock_extent_range(src, lock_start, lock_len);
3663 } else {
3664 lock_extent_range(src, off, len);
3665 lock_extent_range(inode, destoff, len);
3666 }
Mark Fasheh32b7c682013-08-06 11:42:49 -07003667
3668 ret = btrfs_clone(src, inode, off, olen, len, destoff);
3669
Filipe Mananac125b8b2014-05-23 05:03:34 +01003670 if (same_inode) {
3671 u64 lock_start = min_t(u64, off, destoff);
3672 u64 lock_end = max_t(u64, off, destoff) + len - 1;
3673
3674 unlock_extent(&BTRFS_I(src)->io_tree, lock_start, lock_end);
3675 } else {
3676 unlock_extent(&BTRFS_I(src)->io_tree, off, off + len - 1);
3677 unlock_extent(&BTRFS_I(inode)->io_tree, destoff,
3678 destoff + len - 1);
3679 }
3680 /*
3681 * Truncate page cache pages so that future reads will see the cloned
3682 * data immediately and not the previous data.
3683 */
3684 truncate_inode_pages_range(&inode->i_data, destoff,
3685 PAGE_CACHE_ALIGN(destoff + len) - 1);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003686out_unlock:
Filipe David Borba Mananac57c2b32014-01-11 21:31:25 +00003687 if (!same_inode) {
3688 if (inode < src) {
3689 mutex_unlock(&src->i_mutex);
3690 mutex_unlock(&inode->i_mutex);
3691 } else {
3692 mutex_unlock(&inode->i_mutex);
3693 mutex_unlock(&src->i_mutex);
3694 }
3695 } else {
3696 mutex_unlock(&src->i_mutex);
3697 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003698out_fput:
Al Viro2903ff02012-08-28 12:52:22 -04003699 fdput(src_file);
Yan Zhengab67b7c2008-12-19 10:58:39 -05003700out_drop_write:
Al Viro2a79f172011-12-09 08:06:57 -05003701 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003702 return ret;
3703}
3704
Christoph Hellwig7a865e82008-12-02 09:52:24 -05003705static long btrfs_ioctl_clone_range(struct file *file, void __user *argp)
Sage Weilc5c9cd42008-11-12 14:32:25 -05003706{
3707 struct btrfs_ioctl_clone_range_args args;
3708
Christoph Hellwig7a865e82008-12-02 09:52:24 -05003709 if (copy_from_user(&args, argp, sizeof(args)))
Sage Weilc5c9cd42008-11-12 14:32:25 -05003710 return -EFAULT;
3711 return btrfs_ioctl_clone(file, args.src_fd, args.src_offset,
3712 args.src_length, args.dest_offset);
3713}
3714
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003715/*
3716 * there are many ways the trans_start and trans_end ioctls can lead
3717 * to deadlocks. They should only be used by applications that
3718 * basically own the machine, and have a very in depth understanding
3719 * of all the possible deadlocks and enospc problems.
3720 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05003721static long btrfs_ioctl_trans_start(struct file *file)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003722{
Al Viro496ad9a2013-01-23 17:07:38 -05003723 struct inode *inode = file_inode(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003724 struct btrfs_root *root = BTRFS_I(inode)->root;
3725 struct btrfs_trans_handle *trans;
Sage Weil1ab86ae2009-09-29 18:38:44 -04003726 int ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003727
Sage Weil1ab86ae2009-09-29 18:38:44 -04003728 ret = -EPERM;
Christoph Hellwigdf5b5522008-06-11 21:53:58 -04003729 if (!capable(CAP_SYS_ADMIN))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003730 goto out;
Sage Weil1ab86ae2009-09-29 18:38:44 -04003731
3732 ret = -EINPROGRESS;
3733 if (file->private_data)
3734 goto out;
Sage Weil9ca9ee02008-08-04 10:41:27 -04003735
Li Zefanb83cc962010-12-20 16:04:08 +08003736 ret = -EROFS;
3737 if (btrfs_root_readonly(root))
3738 goto out;
3739
Al Viroa561be72011-11-23 11:57:51 -05003740 ret = mnt_want_write_file(file);
Yan Zhengc146afa2008-11-12 14:34:12 -05003741 if (ret)
3742 goto out;
3743
Josef Bacika4abeea2011-04-11 17:25:13 -04003744 atomic_inc(&root->fs_info->open_ioctl_trans);
Sage Weil9ca9ee02008-08-04 10:41:27 -04003745
Sage Weil1ab86ae2009-09-29 18:38:44 -04003746 ret = -ENOMEM;
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003747 trans = btrfs_start_ioctl_transaction(root);
Tsutomu Itohabd30bb2011-01-24 00:57:10 +00003748 if (IS_ERR(trans))
Sage Weil1ab86ae2009-09-29 18:38:44 -04003749 goto out_drop;
3750
3751 file->private_data = trans;
3752 return 0;
3753
3754out_drop:
Josef Bacika4abeea2011-04-11 17:25:13 -04003755 atomic_dec(&root->fs_info->open_ioctl_trans);
Al Viro2a79f172011-12-09 08:06:57 -05003756 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003757out:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003758 return ret;
3759}
3760
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003761static long btrfs_ioctl_default_subvol(struct file *file, void __user *argp)
3762{
Al Viro496ad9a2013-01-23 17:07:38 -05003763 struct inode *inode = file_inode(file);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003764 struct btrfs_root *root = BTRFS_I(inode)->root;
3765 struct btrfs_root *new_root;
3766 struct btrfs_dir_item *di;
3767 struct btrfs_trans_handle *trans;
3768 struct btrfs_path *path;
3769 struct btrfs_key location;
3770 struct btrfs_disk_key disk_key;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003771 u64 objectid = 0;
3772 u64 dir_id;
Miao Xie3c04ce02012-11-26 08:43:07 +00003773 int ret;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003774
3775 if (!capable(CAP_SYS_ADMIN))
3776 return -EPERM;
3777
Miao Xie3c04ce02012-11-26 08:43:07 +00003778 ret = mnt_want_write_file(file);
3779 if (ret)
3780 return ret;
3781
3782 if (copy_from_user(&objectid, argp, sizeof(objectid))) {
3783 ret = -EFAULT;
3784 goto out;
3785 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003786
3787 if (!objectid)
chandan1cecf572013-09-13 19:34:10 +05303788 objectid = BTRFS_FS_TREE_OBJECTID;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003789
3790 location.objectid = objectid;
3791 location.type = BTRFS_ROOT_ITEM_KEY;
3792 location.offset = (u64)-1;
3793
3794 new_root = btrfs_read_fs_root_no_name(root->fs_info, &location);
Miao Xie3c04ce02012-11-26 08:43:07 +00003795 if (IS_ERR(new_root)) {
3796 ret = PTR_ERR(new_root);
3797 goto out;
3798 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003799
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003800 path = btrfs_alloc_path();
Miao Xie3c04ce02012-11-26 08:43:07 +00003801 if (!path) {
3802 ret = -ENOMEM;
3803 goto out;
3804 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003805 path->leave_spinning = 1;
3806
3807 trans = btrfs_start_transaction(root, 1);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00003808 if (IS_ERR(trans)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003809 btrfs_free_path(path);
Miao Xie3c04ce02012-11-26 08:43:07 +00003810 ret = PTR_ERR(trans);
3811 goto out;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003812 }
3813
David Sterba6c417612011-04-13 15:41:04 +02003814 dir_id = btrfs_super_root_dir(root->fs_info->super_copy);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003815 di = btrfs_lookup_dir_item(trans, root->fs_info->tree_root, path,
3816 dir_id, "default", 7, 1);
Dan Carpentercf1e99a2010-05-29 09:47:24 +00003817 if (IS_ERR_OR_NULL(di)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003818 btrfs_free_path(path);
3819 btrfs_end_transaction(trans, root);
Frank Holtonefe120a2013-12-20 11:37:06 -05003820 btrfs_err(new_root->fs_info, "Umm, you don't have the default dir"
3821 "item, this isn't going to work");
Miao Xie3c04ce02012-11-26 08:43:07 +00003822 ret = -ENOENT;
3823 goto out;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003824 }
3825
3826 btrfs_cpu_key_to_disk(&disk_key, &new_root->root_key);
3827 btrfs_set_dir_item_key(path->nodes[0], di, &disk_key);
3828 btrfs_mark_buffer_dirty(path->nodes[0]);
3829 btrfs_free_path(path);
3830
Mitch Harder2b0ce2c2012-07-24 11:58:43 -06003831 btrfs_set_fs_incompat(root->fs_info, DEFAULT_SUBVOL);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003832 btrfs_end_transaction(trans, root);
Miao Xie3c04ce02012-11-26 08:43:07 +00003833out:
3834 mnt_drop_write_file(file);
3835 return ret;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003836}
3837
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02003838void btrfs_get_block_group_info(struct list_head *groups_list,
3839 struct btrfs_ioctl_space_info *space)
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003840{
3841 struct btrfs_block_group_cache *block_group;
3842
3843 space->total_bytes = 0;
3844 space->used_bytes = 0;
3845 space->flags = 0;
3846 list_for_each_entry(block_group, groups_list, list) {
3847 space->flags = block_group->flags;
3848 space->total_bytes += block_group->key.offset;
3849 space->used_bytes +=
3850 btrfs_block_group_used(&block_group->item);
3851 }
3852}
3853
Eric Sandeen48a3b632013-04-25 20:41:01 +00003854static long btrfs_ioctl_space_info(struct btrfs_root *root, void __user *arg)
Josef Bacik1406e432010-01-13 18:19:06 +00003855{
3856 struct btrfs_ioctl_space_args space_args;
3857 struct btrfs_ioctl_space_info space;
3858 struct btrfs_ioctl_space_info *dest;
Chris Mason7fde62b2010-03-16 15:40:10 -04003859 struct btrfs_ioctl_space_info *dest_orig;
Daniel J Blueman13f26962011-04-11 15:56:31 +00003860 struct btrfs_ioctl_space_info __user *user_dest;
Josef Bacik1406e432010-01-13 18:19:06 +00003861 struct btrfs_space_info *info;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003862 u64 types[] = {BTRFS_BLOCK_GROUP_DATA,
3863 BTRFS_BLOCK_GROUP_SYSTEM,
3864 BTRFS_BLOCK_GROUP_METADATA,
3865 BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA};
3866 int num_types = 4;
Chris Mason7fde62b2010-03-16 15:40:10 -04003867 int alloc_size;
Josef Bacik1406e432010-01-13 18:19:06 +00003868 int ret = 0;
Dan Rosenberg51788b12011-02-14 16:04:23 -05003869 u64 slot_count = 0;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003870 int i, c;
Josef Bacik1406e432010-01-13 18:19:06 +00003871
3872 if (copy_from_user(&space_args,
3873 (struct btrfs_ioctl_space_args __user *)arg,
3874 sizeof(space_args)))
3875 return -EFAULT;
3876
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003877 for (i = 0; i < num_types; i++) {
3878 struct btrfs_space_info *tmp;
3879
3880 info = NULL;
3881 rcu_read_lock();
3882 list_for_each_entry_rcu(tmp, &root->fs_info->space_info,
3883 list) {
3884 if (tmp->flags == types[i]) {
3885 info = tmp;
3886 break;
3887 }
3888 }
3889 rcu_read_unlock();
3890
3891 if (!info)
3892 continue;
3893
3894 down_read(&info->groups_sem);
3895 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
3896 if (!list_empty(&info->block_groups[c]))
3897 slot_count++;
3898 }
3899 up_read(&info->groups_sem);
3900 }
Josef Bacik1406e432010-01-13 18:19:06 +00003901
David Sterba36523e952014-02-07 14:34:12 +01003902 /*
3903 * Global block reserve, exported as a space_info
3904 */
3905 slot_count++;
3906
Chris Mason7fde62b2010-03-16 15:40:10 -04003907 /* space_slots == 0 means they are asking for a count */
3908 if (space_args.space_slots == 0) {
3909 space_args.total_spaces = slot_count;
3910 goto out;
3911 }
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003912
Dan Rosenberg51788b12011-02-14 16:04:23 -05003913 slot_count = min_t(u64, space_args.space_slots, slot_count);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003914
Chris Mason7fde62b2010-03-16 15:40:10 -04003915 alloc_size = sizeof(*dest) * slot_count;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003916
Chris Mason7fde62b2010-03-16 15:40:10 -04003917 /* we generally have at most 6 or so space infos, one for each raid
3918 * level. So, a whole page should be more than enough for everyone
3919 */
3920 if (alloc_size > PAGE_CACHE_SIZE)
3921 return -ENOMEM;
3922
3923 space_args.total_spaces = 0;
3924 dest = kmalloc(alloc_size, GFP_NOFS);
3925 if (!dest)
3926 return -ENOMEM;
3927 dest_orig = dest;
3928
3929 /* now we have a buffer to copy into */
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003930 for (i = 0; i < num_types; i++) {
3931 struct btrfs_space_info *tmp;
Chris Mason7fde62b2010-03-16 15:40:10 -04003932
Dan Rosenberg51788b12011-02-14 16:04:23 -05003933 if (!slot_count)
3934 break;
3935
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003936 info = NULL;
3937 rcu_read_lock();
3938 list_for_each_entry_rcu(tmp, &root->fs_info->space_info,
3939 list) {
3940 if (tmp->flags == types[i]) {
3941 info = tmp;
3942 break;
3943 }
3944 }
3945 rcu_read_unlock();
Chris Mason7fde62b2010-03-16 15:40:10 -04003946
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003947 if (!info)
3948 continue;
3949 down_read(&info->groups_sem);
3950 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
3951 if (!list_empty(&info->block_groups[c])) {
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02003952 btrfs_get_block_group_info(
3953 &info->block_groups[c], &space);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003954 memcpy(dest, &space, sizeof(space));
3955 dest++;
3956 space_args.total_spaces++;
Dan Rosenberg51788b12011-02-14 16:04:23 -05003957 slot_count--;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003958 }
Dan Rosenberg51788b12011-02-14 16:04:23 -05003959 if (!slot_count)
3960 break;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003961 }
3962 up_read(&info->groups_sem);
Josef Bacik1406e432010-01-13 18:19:06 +00003963 }
Josef Bacik1406e432010-01-13 18:19:06 +00003964
David Sterba36523e952014-02-07 14:34:12 +01003965 /*
3966 * Add global block reserve
3967 */
3968 if (slot_count) {
3969 struct btrfs_block_rsv *block_rsv = &root->fs_info->global_block_rsv;
3970
3971 spin_lock(&block_rsv->lock);
3972 space.total_bytes = block_rsv->size;
3973 space.used_bytes = block_rsv->size - block_rsv->reserved;
3974 spin_unlock(&block_rsv->lock);
3975 space.flags = BTRFS_SPACE_INFO_GLOBAL_RSV;
3976 memcpy(dest, &space, sizeof(space));
3977 space_args.total_spaces++;
3978 }
3979
Daniel J Blueman2eec6c82012-04-26 00:37:14 +08003980 user_dest = (struct btrfs_ioctl_space_info __user *)
Chris Mason7fde62b2010-03-16 15:40:10 -04003981 (arg + sizeof(struct btrfs_ioctl_space_args));
3982
3983 if (copy_to_user(user_dest, dest_orig, alloc_size))
3984 ret = -EFAULT;
3985
3986 kfree(dest_orig);
3987out:
3988 if (ret == 0 && copy_to_user(arg, &space_args, sizeof(space_args)))
Josef Bacik1406e432010-01-13 18:19:06 +00003989 ret = -EFAULT;
3990
3991 return ret;
3992}
3993
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003994/*
3995 * there are many ways the trans_start and trans_end ioctls can lead
3996 * to deadlocks. They should only be used by applications that
3997 * basically own the machine, and have a very in depth understanding
3998 * of all the possible deadlocks and enospc problems.
3999 */
4000long btrfs_ioctl_trans_end(struct file *file)
4001{
Al Viro496ad9a2013-01-23 17:07:38 -05004002 struct inode *inode = file_inode(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004003 struct btrfs_root *root = BTRFS_I(inode)->root;
4004 struct btrfs_trans_handle *trans;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004005
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004006 trans = file->private_data;
Sage Weil1ab86ae2009-09-29 18:38:44 -04004007 if (!trans)
4008 return -EINVAL;
Christoph Hellwigb2141072008-09-05 16:43:31 -04004009 file->private_data = NULL;
Sage Weil9ca9ee02008-08-04 10:41:27 -04004010
Sage Weil1ab86ae2009-09-29 18:38:44 -04004011 btrfs_end_transaction(trans, root);
4012
Josef Bacika4abeea2011-04-11 17:25:13 -04004013 atomic_dec(&root->fs_info->open_ioctl_trans);
Sage Weil9ca9ee02008-08-04 10:41:27 -04004014
Al Viro2a79f172011-12-09 08:06:57 -05004015 mnt_drop_write_file(file);
Sage Weil1ab86ae2009-09-29 18:38:44 -04004016 return 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004017}
4018
Miao Xie9a8c28b2012-11-26 08:40:43 +00004019static noinline long btrfs_ioctl_start_sync(struct btrfs_root *root,
4020 void __user *argp)
Sage Weil46204592010-10-29 15:41:32 -04004021{
Sage Weil46204592010-10-29 15:41:32 -04004022 struct btrfs_trans_handle *trans;
4023 u64 transid;
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004024 int ret;
Sage Weil46204592010-10-29 15:41:32 -04004025
Miao Xied4edf392013-02-20 09:17:06 +00004026 trans = btrfs_attach_transaction_barrier(root);
Miao Xieff7c1d32012-11-26 08:41:29 +00004027 if (IS_ERR(trans)) {
4028 if (PTR_ERR(trans) != -ENOENT)
4029 return PTR_ERR(trans);
4030
4031 /* No running transaction, don't bother */
4032 transid = root->fs_info->last_trans_committed;
4033 goto out;
4034 }
Sage Weil46204592010-10-29 15:41:32 -04004035 transid = trans->transid;
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004036 ret = btrfs_commit_transaction_async(trans, root, 0);
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00004037 if (ret) {
4038 btrfs_end_transaction(trans, root);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004039 return ret;
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00004040 }
Miao Xieff7c1d32012-11-26 08:41:29 +00004041out:
Sage Weil46204592010-10-29 15:41:32 -04004042 if (argp)
4043 if (copy_to_user(argp, &transid, sizeof(transid)))
4044 return -EFAULT;
4045 return 0;
4046}
4047
Miao Xie9a8c28b2012-11-26 08:40:43 +00004048static noinline long btrfs_ioctl_wait_sync(struct btrfs_root *root,
4049 void __user *argp)
Sage Weil46204592010-10-29 15:41:32 -04004050{
Sage Weil46204592010-10-29 15:41:32 -04004051 u64 transid;
4052
4053 if (argp) {
4054 if (copy_from_user(&transid, argp, sizeof(transid)))
4055 return -EFAULT;
4056 } else {
4057 transid = 0; /* current trans */
4058 }
4059 return btrfs_wait_for_commit(root, transid);
4060}
4061
Miao Xieb8e95482012-11-26 08:48:01 +00004062static long btrfs_ioctl_scrub(struct file *file, void __user *arg)
Jan Schmidt475f6382011-03-11 15:41:01 +01004063{
Al Viro496ad9a2013-01-23 17:07:38 -05004064 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Jan Schmidt475f6382011-03-11 15:41:01 +01004065 struct btrfs_ioctl_scrub_args *sa;
Miao Xieb8e95482012-11-26 08:48:01 +00004066 int ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01004067
4068 if (!capable(CAP_SYS_ADMIN))
4069 return -EPERM;
4070
4071 sa = memdup_user(arg, sizeof(*sa));
4072 if (IS_ERR(sa))
4073 return PTR_ERR(sa);
4074
Miao Xieb8e95482012-11-26 08:48:01 +00004075 if (!(sa->flags & BTRFS_SCRUB_READONLY)) {
4076 ret = mnt_want_write_file(file);
4077 if (ret)
4078 goto out;
4079 }
4080
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01004081 ret = btrfs_scrub_dev(root->fs_info, sa->devid, sa->start, sa->end,
Stefan Behrens63a212a2012-11-05 18:29:28 +01004082 &sa->progress, sa->flags & BTRFS_SCRUB_READONLY,
4083 0);
Jan Schmidt475f6382011-03-11 15:41:01 +01004084
4085 if (copy_to_user(arg, sa, sizeof(*sa)))
4086 ret = -EFAULT;
4087
Miao Xieb8e95482012-11-26 08:48:01 +00004088 if (!(sa->flags & BTRFS_SCRUB_READONLY))
4089 mnt_drop_write_file(file);
4090out:
Jan Schmidt475f6382011-03-11 15:41:01 +01004091 kfree(sa);
4092 return ret;
4093}
4094
4095static long btrfs_ioctl_scrub_cancel(struct btrfs_root *root, void __user *arg)
4096{
4097 if (!capable(CAP_SYS_ADMIN))
4098 return -EPERM;
4099
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01004100 return btrfs_scrub_cancel(root->fs_info);
Jan Schmidt475f6382011-03-11 15:41:01 +01004101}
4102
4103static long btrfs_ioctl_scrub_progress(struct btrfs_root *root,
4104 void __user *arg)
4105{
4106 struct btrfs_ioctl_scrub_args *sa;
4107 int ret;
4108
4109 if (!capable(CAP_SYS_ADMIN))
4110 return -EPERM;
4111
4112 sa = memdup_user(arg, sizeof(*sa));
4113 if (IS_ERR(sa))
4114 return PTR_ERR(sa);
4115
4116 ret = btrfs_scrub_progress(root, sa->devid, &sa->progress);
4117
4118 if (copy_to_user(arg, sa, sizeof(*sa)))
4119 ret = -EFAULT;
4120
4121 kfree(sa);
4122 return ret;
4123}
4124
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004125static long btrfs_ioctl_get_dev_stats(struct btrfs_root *root,
David Sterbab27f7c02012-06-22 06:30:39 -06004126 void __user *arg)
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004127{
4128 struct btrfs_ioctl_get_dev_stats *sa;
4129 int ret;
4130
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004131 sa = memdup_user(arg, sizeof(*sa));
4132 if (IS_ERR(sa))
4133 return PTR_ERR(sa);
4134
David Sterbab27f7c02012-06-22 06:30:39 -06004135 if ((sa->flags & BTRFS_DEV_STATS_RESET) && !capable(CAP_SYS_ADMIN)) {
4136 kfree(sa);
4137 return -EPERM;
4138 }
4139
4140 ret = btrfs_get_dev_stats(root, sa);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004141
4142 if (copy_to_user(arg, sa, sizeof(*sa)))
4143 ret = -EFAULT;
4144
4145 kfree(sa);
4146 return ret;
4147}
4148
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004149static long btrfs_ioctl_dev_replace(struct btrfs_root *root, void __user *arg)
4150{
4151 struct btrfs_ioctl_dev_replace_args *p;
4152 int ret;
4153
4154 if (!capable(CAP_SYS_ADMIN))
4155 return -EPERM;
4156
4157 p = memdup_user(arg, sizeof(*p));
4158 if (IS_ERR(p))
4159 return PTR_ERR(p);
4160
4161 switch (p->cmd) {
4162 case BTRFS_IOCTL_DEV_REPLACE_CMD_START:
Ilya Dryomovadfa97c2013-10-10 20:39:28 +03004163 if (root->fs_info->sb->s_flags & MS_RDONLY) {
4164 ret = -EROFS;
4165 goto out;
4166 }
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004167 if (atomic_xchg(
4168 &root->fs_info->mutually_exclusive_operation_running,
4169 1)) {
Anand Jaine57138b2013-08-21 11:44:48 +08004170 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004171 } else {
4172 ret = btrfs_dev_replace_start(root, p);
4173 atomic_set(
4174 &root->fs_info->mutually_exclusive_operation_running,
4175 0);
4176 }
4177 break;
4178 case BTRFS_IOCTL_DEV_REPLACE_CMD_STATUS:
4179 btrfs_dev_replace_status(root->fs_info, p);
4180 ret = 0;
4181 break;
4182 case BTRFS_IOCTL_DEV_REPLACE_CMD_CANCEL:
4183 ret = btrfs_dev_replace_cancel(root->fs_info, p);
4184 break;
4185 default:
4186 ret = -EINVAL;
4187 break;
4188 }
4189
4190 if (copy_to_user(arg, p, sizeof(*p)))
4191 ret = -EFAULT;
Ilya Dryomovadfa97c2013-10-10 20:39:28 +03004192out:
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004193 kfree(p);
4194 return ret;
4195}
4196
Jan Schmidtd7728c92011-07-07 16:48:38 +02004197static long btrfs_ioctl_ino_to_path(struct btrfs_root *root, void __user *arg)
4198{
4199 int ret = 0;
4200 int i;
Chris Mason740c3d22011-11-02 15:48:34 -04004201 u64 rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004202 int size;
Chris Mason806468f2011-11-06 03:07:10 -05004203 struct btrfs_ioctl_ino_path_args *ipa = NULL;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004204 struct inode_fs_paths *ipath = NULL;
4205 struct btrfs_path *path;
4206
Kusanagi Kouichi82b22ac2013-01-28 11:33:31 +00004207 if (!capable(CAP_DAC_READ_SEARCH))
Jan Schmidtd7728c92011-07-07 16:48:38 +02004208 return -EPERM;
4209
4210 path = btrfs_alloc_path();
4211 if (!path) {
4212 ret = -ENOMEM;
4213 goto out;
4214 }
4215
4216 ipa = memdup_user(arg, sizeof(*ipa));
4217 if (IS_ERR(ipa)) {
4218 ret = PTR_ERR(ipa);
4219 ipa = NULL;
4220 goto out;
4221 }
4222
4223 size = min_t(u32, ipa->size, 4096);
4224 ipath = init_ipath(size, root, path);
4225 if (IS_ERR(ipath)) {
4226 ret = PTR_ERR(ipath);
4227 ipath = NULL;
4228 goto out;
4229 }
4230
4231 ret = paths_from_inode(ipa->inum, ipath);
4232 if (ret < 0)
4233 goto out;
4234
4235 for (i = 0; i < ipath->fspath->elem_cnt; ++i) {
Jeff Mahoney745c4d82011-11-20 07:31:57 -05004236 rel_ptr = ipath->fspath->val[i] -
4237 (u64)(unsigned long)ipath->fspath->val;
Chris Mason740c3d22011-11-02 15:48:34 -04004238 ipath->fspath->val[i] = rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004239 }
4240
Jeff Mahoney745c4d82011-11-20 07:31:57 -05004241 ret = copy_to_user((void *)(unsigned long)ipa->fspath,
4242 (void *)(unsigned long)ipath->fspath, size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004243 if (ret) {
4244 ret = -EFAULT;
4245 goto out;
4246 }
4247
4248out:
4249 btrfs_free_path(path);
4250 free_ipath(ipath);
4251 kfree(ipa);
4252
4253 return ret;
4254}
4255
4256static int build_ino_list(u64 inum, u64 offset, u64 root, void *ctx)
4257{
4258 struct btrfs_data_container *inodes = ctx;
4259 const size_t c = 3 * sizeof(u64);
4260
4261 if (inodes->bytes_left >= c) {
4262 inodes->bytes_left -= c;
4263 inodes->val[inodes->elem_cnt] = inum;
4264 inodes->val[inodes->elem_cnt + 1] = offset;
4265 inodes->val[inodes->elem_cnt + 2] = root;
4266 inodes->elem_cnt += 3;
4267 } else {
4268 inodes->bytes_missing += c - inodes->bytes_left;
4269 inodes->bytes_left = 0;
4270 inodes->elem_missed += 3;
4271 }
4272
4273 return 0;
4274}
4275
4276static long btrfs_ioctl_logical_to_ino(struct btrfs_root *root,
4277 void __user *arg)
4278{
4279 int ret = 0;
4280 int size;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004281 struct btrfs_ioctl_logical_ino_args *loi;
4282 struct btrfs_data_container *inodes = NULL;
4283 struct btrfs_path *path = NULL;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004284
4285 if (!capable(CAP_SYS_ADMIN))
4286 return -EPERM;
4287
4288 loi = memdup_user(arg, sizeof(*loi));
4289 if (IS_ERR(loi)) {
4290 ret = PTR_ERR(loi);
4291 loi = NULL;
4292 goto out;
4293 }
4294
4295 path = btrfs_alloc_path();
4296 if (!path) {
4297 ret = -ENOMEM;
4298 goto out;
4299 }
4300
Liu Bo425d17a2012-09-07 20:01:30 -06004301 size = min_t(u32, loi->size, 64 * 1024);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004302 inodes = init_data_container(size);
4303 if (IS_ERR(inodes)) {
4304 ret = PTR_ERR(inodes);
4305 inodes = NULL;
4306 goto out;
4307 }
4308
Liu Bodf031f02012-09-07 20:01:29 -06004309 ret = iterate_inodes_from_logical(loi->logical, root->fs_info, path,
4310 build_ino_list, inodes);
4311 if (ret == -EINVAL)
Jan Schmidtd7728c92011-07-07 16:48:38 +02004312 ret = -ENOENT;
4313 if (ret < 0)
4314 goto out;
4315
Jeff Mahoney745c4d82011-11-20 07:31:57 -05004316 ret = copy_to_user((void *)(unsigned long)loi->inodes,
4317 (void *)(unsigned long)inodes, size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004318 if (ret)
4319 ret = -EFAULT;
4320
4321out:
4322 btrfs_free_path(path);
Liu Bo425d17a2012-09-07 20:01:30 -06004323 vfree(inodes);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004324 kfree(loi);
4325
4326 return ret;
4327}
4328
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004329void update_ioctl_balance_args(struct btrfs_fs_info *fs_info, int lock,
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004330 struct btrfs_ioctl_balance_args *bargs)
4331{
4332 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
4333
4334 bargs->flags = bctl->flags;
4335
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004336 if (atomic_read(&fs_info->balance_running))
4337 bargs->state |= BTRFS_BALANCE_STATE_RUNNING;
4338 if (atomic_read(&fs_info->balance_pause_req))
4339 bargs->state |= BTRFS_BALANCE_STATE_PAUSE_REQ;
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004340 if (atomic_read(&fs_info->balance_cancel_req))
4341 bargs->state |= BTRFS_BALANCE_STATE_CANCEL_REQ;
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004342
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004343 memcpy(&bargs->data, &bctl->data, sizeof(bargs->data));
4344 memcpy(&bargs->meta, &bctl->meta, sizeof(bargs->meta));
4345 memcpy(&bargs->sys, &bctl->sys, sizeof(bargs->sys));
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004346
4347 if (lock) {
4348 spin_lock(&fs_info->balance_lock);
4349 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
4350 spin_unlock(&fs_info->balance_lock);
4351 } else {
4352 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
4353 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004354}
4355
Liu Bo9ba1f6e2012-05-11 18:11:26 +08004356static long btrfs_ioctl_balance(struct file *file, void __user *arg)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004357{
Al Viro496ad9a2013-01-23 17:07:38 -05004358 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004359 struct btrfs_fs_info *fs_info = root->fs_info;
4360 struct btrfs_ioctl_balance_args *bargs;
4361 struct btrfs_balance_control *bctl;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004362 bool need_unlock; /* for mut. excl. ops lock */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004363 int ret;
4364
4365 if (!capable(CAP_SYS_ADMIN))
4366 return -EPERM;
4367
Liu Boe54bfa32012-06-29 03:58:48 -06004368 ret = mnt_want_write_file(file);
Liu Bo9ba1f6e2012-05-11 18:11:26 +08004369 if (ret)
4370 return ret;
4371
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004372again:
4373 if (!atomic_xchg(&fs_info->mutually_exclusive_operation_running, 1)) {
4374 mutex_lock(&fs_info->volume_mutex);
4375 mutex_lock(&fs_info->balance_mutex);
4376 need_unlock = true;
4377 goto locked;
4378 }
4379
4380 /*
4381 * mut. excl. ops lock is locked. Three possibilites:
4382 * (1) some other op is running
4383 * (2) balance is running
4384 * (3) balance is paused -- special case (think resume)
4385 */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004386 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004387 if (fs_info->balance_ctl) {
4388 /* this is either (2) or (3) */
4389 if (!atomic_read(&fs_info->balance_running)) {
4390 mutex_unlock(&fs_info->balance_mutex);
4391 if (!mutex_trylock(&fs_info->volume_mutex))
4392 goto again;
4393 mutex_lock(&fs_info->balance_mutex);
4394
4395 if (fs_info->balance_ctl &&
4396 !atomic_read(&fs_info->balance_running)) {
4397 /* this is (3) */
4398 need_unlock = false;
4399 goto locked;
4400 }
4401
4402 mutex_unlock(&fs_info->balance_mutex);
4403 mutex_unlock(&fs_info->volume_mutex);
4404 goto again;
4405 } else {
4406 /* this is (2) */
4407 mutex_unlock(&fs_info->balance_mutex);
4408 ret = -EINPROGRESS;
4409 goto out;
4410 }
4411 } else {
4412 /* this is (1) */
4413 mutex_unlock(&fs_info->balance_mutex);
Anand Jaine57138b2013-08-21 11:44:48 +08004414 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004415 goto out;
4416 }
4417
4418locked:
4419 BUG_ON(!atomic_read(&fs_info->mutually_exclusive_operation_running));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004420
4421 if (arg) {
4422 bargs = memdup_user(arg, sizeof(*bargs));
4423 if (IS_ERR(bargs)) {
4424 ret = PTR_ERR(bargs);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004425 goto out_unlock;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004426 }
Ilya Dryomovde322262012-01-16 22:04:49 +02004427
4428 if (bargs->flags & BTRFS_BALANCE_RESUME) {
4429 if (!fs_info->balance_ctl) {
4430 ret = -ENOTCONN;
4431 goto out_bargs;
4432 }
4433
4434 bctl = fs_info->balance_ctl;
4435 spin_lock(&fs_info->balance_lock);
4436 bctl->flags |= BTRFS_BALANCE_RESUME;
4437 spin_unlock(&fs_info->balance_lock);
4438
4439 goto do_balance;
4440 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004441 } else {
4442 bargs = NULL;
4443 }
4444
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004445 if (fs_info->balance_ctl) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004446 ret = -EINPROGRESS;
4447 goto out_bargs;
4448 }
4449
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004450 bctl = kzalloc(sizeof(*bctl), GFP_NOFS);
4451 if (!bctl) {
4452 ret = -ENOMEM;
4453 goto out_bargs;
4454 }
4455
4456 bctl->fs_info = fs_info;
4457 if (arg) {
4458 memcpy(&bctl->data, &bargs->data, sizeof(bctl->data));
4459 memcpy(&bctl->meta, &bargs->meta, sizeof(bctl->meta));
4460 memcpy(&bctl->sys, &bargs->sys, sizeof(bctl->sys));
4461
4462 bctl->flags = bargs->flags;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02004463 } else {
4464 /* balance everything - no filters */
4465 bctl->flags |= BTRFS_BALANCE_TYPE_MASK;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004466 }
4467
Ilya Dryomovde322262012-01-16 22:04:49 +02004468do_balance:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004469 /*
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004470 * Ownership of bctl and mutually_exclusive_operation_running
4471 * goes to to btrfs_balance. bctl is freed in __cancel_balance,
4472 * or, if restriper was paused all the way until unmount, in
4473 * free_fs_info. mutually_exclusive_operation_running is
4474 * cleared in __cancel_balance.
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004475 */
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004476 need_unlock = false;
4477
4478 ret = btrfs_balance(bctl, bargs);
4479
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004480 if (arg) {
4481 if (copy_to_user(arg, bargs, sizeof(*bargs)))
4482 ret = -EFAULT;
4483 }
4484
4485out_bargs:
4486 kfree(bargs);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004487out_unlock:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004488 mutex_unlock(&fs_info->balance_mutex);
4489 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004490 if (need_unlock)
4491 atomic_set(&fs_info->mutually_exclusive_operation_running, 0);
4492out:
Liu Boe54bfa32012-06-29 03:58:48 -06004493 mnt_drop_write_file(file);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004494 return ret;
4495}
4496
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004497static long btrfs_ioctl_balance_ctl(struct btrfs_root *root, int cmd)
4498{
4499 if (!capable(CAP_SYS_ADMIN))
4500 return -EPERM;
4501
4502 switch (cmd) {
4503 case BTRFS_BALANCE_CTL_PAUSE:
4504 return btrfs_pause_balance(root->fs_info);
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004505 case BTRFS_BALANCE_CTL_CANCEL:
4506 return btrfs_cancel_balance(root->fs_info);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004507 }
4508
4509 return -EINVAL;
4510}
4511
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004512static long btrfs_ioctl_balance_progress(struct btrfs_root *root,
4513 void __user *arg)
4514{
4515 struct btrfs_fs_info *fs_info = root->fs_info;
4516 struct btrfs_ioctl_balance_args *bargs;
4517 int ret = 0;
4518
4519 if (!capable(CAP_SYS_ADMIN))
4520 return -EPERM;
4521
4522 mutex_lock(&fs_info->balance_mutex);
4523 if (!fs_info->balance_ctl) {
4524 ret = -ENOTCONN;
4525 goto out;
4526 }
4527
4528 bargs = kzalloc(sizeof(*bargs), GFP_NOFS);
4529 if (!bargs) {
4530 ret = -ENOMEM;
4531 goto out;
4532 }
4533
4534 update_ioctl_balance_args(fs_info, 1, bargs);
4535
4536 if (copy_to_user(arg, bargs, sizeof(*bargs)))
4537 ret = -EFAULT;
4538
4539 kfree(bargs);
4540out:
4541 mutex_unlock(&fs_info->balance_mutex);
4542 return ret;
4543}
4544
Miao Xie905b0dd2012-11-26 08:50:11 +00004545static long btrfs_ioctl_quota_ctl(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004546{
Al Viro496ad9a2013-01-23 17:07:38 -05004547 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004548 struct btrfs_ioctl_quota_ctl_args *sa;
4549 struct btrfs_trans_handle *trans = NULL;
4550 int ret;
4551 int err;
4552
4553 if (!capable(CAP_SYS_ADMIN))
4554 return -EPERM;
4555
Miao Xie905b0dd2012-11-26 08:50:11 +00004556 ret = mnt_want_write_file(file);
4557 if (ret)
4558 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004559
4560 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004561 if (IS_ERR(sa)) {
4562 ret = PTR_ERR(sa);
4563 goto drop_write;
4564 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004565
Wang Shilong7708f022013-04-07 10:24:57 +00004566 down_write(&root->fs_info->subvol_sem);
Jan Schmidt2f232032013-04-25 16:04:51 +00004567 trans = btrfs_start_transaction(root->fs_info->tree_root, 2);
4568 if (IS_ERR(trans)) {
4569 ret = PTR_ERR(trans);
4570 goto out;
Arne Jansen5d13a372011-09-14 15:53:51 +02004571 }
4572
4573 switch (sa->cmd) {
4574 case BTRFS_QUOTA_CTL_ENABLE:
4575 ret = btrfs_quota_enable(trans, root->fs_info);
4576 break;
4577 case BTRFS_QUOTA_CTL_DISABLE:
4578 ret = btrfs_quota_disable(trans, root->fs_info);
4579 break;
Arne Jansen5d13a372011-09-14 15:53:51 +02004580 default:
4581 ret = -EINVAL;
4582 break;
4583 }
4584
Jan Schmidt2f232032013-04-25 16:04:51 +00004585 err = btrfs_commit_transaction(trans, root->fs_info->tree_root);
4586 if (err && !ret)
4587 ret = err;
Arne Jansen5d13a372011-09-14 15:53:51 +02004588out:
4589 kfree(sa);
Wang Shilong7708f022013-04-07 10:24:57 +00004590 up_write(&root->fs_info->subvol_sem);
Miao Xie905b0dd2012-11-26 08:50:11 +00004591drop_write:
4592 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004593 return ret;
4594}
4595
Miao Xie905b0dd2012-11-26 08:50:11 +00004596static long btrfs_ioctl_qgroup_assign(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004597{
Al Viro496ad9a2013-01-23 17:07:38 -05004598 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004599 struct btrfs_ioctl_qgroup_assign_args *sa;
4600 struct btrfs_trans_handle *trans;
4601 int ret;
4602 int err;
4603
4604 if (!capable(CAP_SYS_ADMIN))
4605 return -EPERM;
4606
Miao Xie905b0dd2012-11-26 08:50:11 +00004607 ret = mnt_want_write_file(file);
4608 if (ret)
4609 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004610
4611 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004612 if (IS_ERR(sa)) {
4613 ret = PTR_ERR(sa);
4614 goto drop_write;
4615 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004616
4617 trans = btrfs_join_transaction(root);
4618 if (IS_ERR(trans)) {
4619 ret = PTR_ERR(trans);
4620 goto out;
4621 }
4622
4623 /* FIXME: check if the IDs really exist */
4624 if (sa->assign) {
4625 ret = btrfs_add_qgroup_relation(trans, root->fs_info,
4626 sa->src, sa->dst);
4627 } else {
4628 ret = btrfs_del_qgroup_relation(trans, root->fs_info,
4629 sa->src, sa->dst);
4630 }
4631
4632 err = btrfs_end_transaction(trans, root);
4633 if (err && !ret)
4634 ret = err;
4635
4636out:
4637 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004638drop_write:
4639 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004640 return ret;
4641}
4642
Miao Xie905b0dd2012-11-26 08:50:11 +00004643static long btrfs_ioctl_qgroup_create(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004644{
Al Viro496ad9a2013-01-23 17:07:38 -05004645 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004646 struct btrfs_ioctl_qgroup_create_args *sa;
4647 struct btrfs_trans_handle *trans;
4648 int ret;
4649 int err;
4650
4651 if (!capable(CAP_SYS_ADMIN))
4652 return -EPERM;
4653
Miao Xie905b0dd2012-11-26 08:50:11 +00004654 ret = mnt_want_write_file(file);
4655 if (ret)
4656 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004657
4658 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004659 if (IS_ERR(sa)) {
4660 ret = PTR_ERR(sa);
4661 goto drop_write;
4662 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004663
Miao Xied86e56c2012-11-15 11:35:41 +00004664 if (!sa->qgroupid) {
4665 ret = -EINVAL;
4666 goto out;
4667 }
4668
Arne Jansen5d13a372011-09-14 15:53:51 +02004669 trans = btrfs_join_transaction(root);
4670 if (IS_ERR(trans)) {
4671 ret = PTR_ERR(trans);
4672 goto out;
4673 }
4674
4675 /* FIXME: check if the IDs really exist */
4676 if (sa->create) {
4677 ret = btrfs_create_qgroup(trans, root->fs_info, sa->qgroupid,
4678 NULL);
4679 } else {
4680 ret = btrfs_remove_qgroup(trans, root->fs_info, sa->qgroupid);
4681 }
4682
4683 err = btrfs_end_transaction(trans, root);
4684 if (err && !ret)
4685 ret = err;
4686
4687out:
4688 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004689drop_write:
4690 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004691 return ret;
4692}
4693
Miao Xie905b0dd2012-11-26 08:50:11 +00004694static long btrfs_ioctl_qgroup_limit(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004695{
Al Viro496ad9a2013-01-23 17:07:38 -05004696 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004697 struct btrfs_ioctl_qgroup_limit_args *sa;
4698 struct btrfs_trans_handle *trans;
4699 int ret;
4700 int err;
4701 u64 qgroupid;
4702
4703 if (!capable(CAP_SYS_ADMIN))
4704 return -EPERM;
4705
Miao Xie905b0dd2012-11-26 08:50:11 +00004706 ret = mnt_want_write_file(file);
4707 if (ret)
4708 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004709
4710 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004711 if (IS_ERR(sa)) {
4712 ret = PTR_ERR(sa);
4713 goto drop_write;
4714 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004715
4716 trans = btrfs_join_transaction(root);
4717 if (IS_ERR(trans)) {
4718 ret = PTR_ERR(trans);
4719 goto out;
4720 }
4721
4722 qgroupid = sa->qgroupid;
4723 if (!qgroupid) {
4724 /* take the current subvol as qgroup */
4725 qgroupid = root->root_key.objectid;
4726 }
4727
4728 /* FIXME: check if the IDs really exist */
4729 ret = btrfs_limit_qgroup(trans, root->fs_info, qgroupid, &sa->lim);
4730
4731 err = btrfs_end_transaction(trans, root);
4732 if (err && !ret)
4733 ret = err;
4734
4735out:
4736 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004737drop_write:
4738 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004739 return ret;
4740}
4741
Jan Schmidt2f232032013-04-25 16:04:51 +00004742static long btrfs_ioctl_quota_rescan(struct file *file, void __user *arg)
4743{
Al Viro6d0379e2013-06-16 19:32:35 +04004744 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Jan Schmidt2f232032013-04-25 16:04:51 +00004745 struct btrfs_ioctl_quota_rescan_args *qsa;
4746 int ret;
4747
4748 if (!capable(CAP_SYS_ADMIN))
4749 return -EPERM;
4750
4751 ret = mnt_want_write_file(file);
4752 if (ret)
4753 return ret;
4754
4755 qsa = memdup_user(arg, sizeof(*qsa));
4756 if (IS_ERR(qsa)) {
4757 ret = PTR_ERR(qsa);
4758 goto drop_write;
4759 }
4760
4761 if (qsa->flags) {
4762 ret = -EINVAL;
4763 goto out;
4764 }
4765
4766 ret = btrfs_qgroup_rescan(root->fs_info);
4767
4768out:
4769 kfree(qsa);
4770drop_write:
4771 mnt_drop_write_file(file);
4772 return ret;
4773}
4774
4775static long btrfs_ioctl_quota_rescan_status(struct file *file, void __user *arg)
4776{
Al Viro6d0379e2013-06-16 19:32:35 +04004777 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Jan Schmidt2f232032013-04-25 16:04:51 +00004778 struct btrfs_ioctl_quota_rescan_args *qsa;
4779 int ret = 0;
4780
4781 if (!capable(CAP_SYS_ADMIN))
4782 return -EPERM;
4783
4784 qsa = kzalloc(sizeof(*qsa), GFP_NOFS);
4785 if (!qsa)
4786 return -ENOMEM;
4787
4788 if (root->fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_RESCAN) {
4789 qsa->flags = 1;
4790 qsa->progress = root->fs_info->qgroup_rescan_progress.objectid;
4791 }
4792
4793 if (copy_to_user(arg, qsa, sizeof(*qsa)))
4794 ret = -EFAULT;
4795
4796 kfree(qsa);
4797 return ret;
4798}
4799
Jan Schmidt57254b6e2013-05-06 19:14:17 +00004800static long btrfs_ioctl_quota_rescan_wait(struct file *file, void __user *arg)
4801{
Al Viro54563d42013-09-01 15:57:51 -04004802 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Jan Schmidt57254b6e2013-05-06 19:14:17 +00004803
4804 if (!capable(CAP_SYS_ADMIN))
4805 return -EPERM;
4806
4807 return btrfs_qgroup_wait_for_completion(root->fs_info);
4808}
4809
Hugo Millsabccd002014-01-30 20:17:00 +00004810static long _btrfs_ioctl_set_received_subvol(struct file *file,
4811 struct btrfs_ioctl_received_subvol_args *sa)
Alexander Block8ea05e32012-07-25 17:35:53 +02004812{
Al Viro496ad9a2013-01-23 17:07:38 -05004813 struct inode *inode = file_inode(file);
Alexander Block8ea05e32012-07-25 17:35:53 +02004814 struct btrfs_root *root = BTRFS_I(inode)->root;
4815 struct btrfs_root_item *root_item = &root->root_item;
4816 struct btrfs_trans_handle *trans;
4817 struct timespec ct = CURRENT_TIME;
4818 int ret = 0;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004819 int received_uuid_changed;
Alexander Block8ea05e32012-07-25 17:35:53 +02004820
David Sterbabd60ea02014-01-16 15:50:22 +01004821 if (!inode_owner_or_capable(inode))
4822 return -EPERM;
4823
Alexander Block8ea05e32012-07-25 17:35:53 +02004824 ret = mnt_want_write_file(file);
4825 if (ret < 0)
4826 return ret;
4827
4828 down_write(&root->fs_info->subvol_sem);
4829
4830 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
4831 ret = -EINVAL;
4832 goto out;
4833 }
4834
4835 if (btrfs_root_readonly(root)) {
4836 ret = -EROFS;
4837 goto out;
4838 }
4839
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004840 /*
4841 * 1 - root item
4842 * 2 - uuid items (received uuid + subvol uuid)
4843 */
4844 trans = btrfs_start_transaction(root, 3);
Alexander Block8ea05e32012-07-25 17:35:53 +02004845 if (IS_ERR(trans)) {
4846 ret = PTR_ERR(trans);
4847 trans = NULL;
4848 goto out;
4849 }
4850
4851 sa->rtransid = trans->transid;
4852 sa->rtime.sec = ct.tv_sec;
4853 sa->rtime.nsec = ct.tv_nsec;
4854
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004855 received_uuid_changed = memcmp(root_item->received_uuid, sa->uuid,
4856 BTRFS_UUID_SIZE);
4857 if (received_uuid_changed &&
4858 !btrfs_is_empty_uuid(root_item->received_uuid))
4859 btrfs_uuid_tree_rem(trans, root->fs_info->uuid_root,
4860 root_item->received_uuid,
4861 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4862 root->root_key.objectid);
Alexander Block8ea05e32012-07-25 17:35:53 +02004863 memcpy(root_item->received_uuid, sa->uuid, BTRFS_UUID_SIZE);
4864 btrfs_set_root_stransid(root_item, sa->stransid);
4865 btrfs_set_root_rtransid(root_item, sa->rtransid);
Qu Wenruo3cae2102013-07-16 11:19:18 +08004866 btrfs_set_stack_timespec_sec(&root_item->stime, sa->stime.sec);
4867 btrfs_set_stack_timespec_nsec(&root_item->stime, sa->stime.nsec);
4868 btrfs_set_stack_timespec_sec(&root_item->rtime, sa->rtime.sec);
4869 btrfs_set_stack_timespec_nsec(&root_item->rtime, sa->rtime.nsec);
Alexander Block8ea05e32012-07-25 17:35:53 +02004870
4871 ret = btrfs_update_root(trans, root->fs_info->tree_root,
4872 &root->root_key, &root->root_item);
4873 if (ret < 0) {
4874 btrfs_end_transaction(trans, root);
Alexander Block8ea05e32012-07-25 17:35:53 +02004875 goto out;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004876 }
4877 if (received_uuid_changed && !btrfs_is_empty_uuid(sa->uuid)) {
4878 ret = btrfs_uuid_tree_add(trans, root->fs_info->uuid_root,
4879 sa->uuid,
4880 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4881 root->root_key.objectid);
4882 if (ret < 0 && ret != -EEXIST) {
4883 btrfs_abort_transaction(trans, root, ret);
Alexander Block8ea05e32012-07-25 17:35:53 +02004884 goto out;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004885 }
4886 }
4887 ret = btrfs_commit_transaction(trans, root);
4888 if (ret < 0) {
4889 btrfs_abort_transaction(trans, root, ret);
4890 goto out;
Alexander Block8ea05e32012-07-25 17:35:53 +02004891 }
4892
Hugo Millsabccd002014-01-30 20:17:00 +00004893out:
4894 up_write(&root->fs_info->subvol_sem);
4895 mnt_drop_write_file(file);
4896 return ret;
4897}
4898
4899#ifdef CONFIG_64BIT
4900static long btrfs_ioctl_set_received_subvol_32(struct file *file,
4901 void __user *arg)
4902{
4903 struct btrfs_ioctl_received_subvol_args_32 *args32 = NULL;
4904 struct btrfs_ioctl_received_subvol_args *args64 = NULL;
4905 int ret = 0;
4906
4907 args32 = memdup_user(arg, sizeof(*args32));
4908 if (IS_ERR(args32)) {
4909 ret = PTR_ERR(args32);
4910 args32 = NULL;
4911 goto out;
4912 }
4913
4914 args64 = kmalloc(sizeof(*args64), GFP_NOFS);
Dan Carpenter84dbeb82014-03-28 11:06:00 +03004915 if (!args64) {
4916 ret = -ENOMEM;
Hugo Millsabccd002014-01-30 20:17:00 +00004917 goto out;
4918 }
4919
4920 memcpy(args64->uuid, args32->uuid, BTRFS_UUID_SIZE);
4921 args64->stransid = args32->stransid;
4922 args64->rtransid = args32->rtransid;
4923 args64->stime.sec = args32->stime.sec;
4924 args64->stime.nsec = args32->stime.nsec;
4925 args64->rtime.sec = args32->rtime.sec;
4926 args64->rtime.nsec = args32->rtime.nsec;
4927 args64->flags = args32->flags;
4928
4929 ret = _btrfs_ioctl_set_received_subvol(file, args64);
4930 if (ret)
4931 goto out;
4932
4933 memcpy(args32->uuid, args64->uuid, BTRFS_UUID_SIZE);
4934 args32->stransid = args64->stransid;
4935 args32->rtransid = args64->rtransid;
4936 args32->stime.sec = args64->stime.sec;
4937 args32->stime.nsec = args64->stime.nsec;
4938 args32->rtime.sec = args64->rtime.sec;
4939 args32->rtime.nsec = args64->rtime.nsec;
4940 args32->flags = args64->flags;
4941
4942 ret = copy_to_user(arg, args32, sizeof(*args32));
4943 if (ret)
4944 ret = -EFAULT;
4945
4946out:
4947 kfree(args32);
4948 kfree(args64);
4949 return ret;
4950}
4951#endif
4952
4953static long btrfs_ioctl_set_received_subvol(struct file *file,
4954 void __user *arg)
4955{
4956 struct btrfs_ioctl_received_subvol_args *sa = NULL;
4957 int ret = 0;
4958
4959 sa = memdup_user(arg, sizeof(*sa));
4960 if (IS_ERR(sa)) {
4961 ret = PTR_ERR(sa);
4962 sa = NULL;
4963 goto out;
4964 }
4965
4966 ret = _btrfs_ioctl_set_received_subvol(file, sa);
4967
4968 if (ret)
4969 goto out;
4970
Alexander Block8ea05e32012-07-25 17:35:53 +02004971 ret = copy_to_user(arg, sa, sizeof(*sa));
4972 if (ret)
4973 ret = -EFAULT;
4974
4975out:
4976 kfree(sa);
Alexander Block8ea05e32012-07-25 17:35:53 +02004977 return ret;
4978}
4979
jeff.liu867ab662013-01-05 02:48:01 +00004980static int btrfs_ioctl_get_fslabel(struct file *file, void __user *arg)
4981{
Al Viro6d0379e2013-06-16 19:32:35 +04004982 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Anand Jaina1b83ac2013-07-19 17:39:32 +08004983 size_t len;
jeff.liu867ab662013-01-05 02:48:01 +00004984 int ret;
Anand Jaina1b83ac2013-07-19 17:39:32 +08004985 char label[BTRFS_LABEL_SIZE];
4986
4987 spin_lock(&root->fs_info->super_lock);
4988 memcpy(label, root->fs_info->super_copy->label, BTRFS_LABEL_SIZE);
4989 spin_unlock(&root->fs_info->super_lock);
4990
4991 len = strnlen(label, BTRFS_LABEL_SIZE);
jeff.liu867ab662013-01-05 02:48:01 +00004992
4993 if (len == BTRFS_LABEL_SIZE) {
Frank Holtonefe120a2013-12-20 11:37:06 -05004994 btrfs_warn(root->fs_info,
4995 "label is too long, return the first %zu bytes", --len);
jeff.liu867ab662013-01-05 02:48:01 +00004996 }
4997
jeff.liu867ab662013-01-05 02:48:01 +00004998 ret = copy_to_user(arg, label, len);
jeff.liu867ab662013-01-05 02:48:01 +00004999
5000 return ret ? -EFAULT : 0;
5001}
5002
jeff.liua8bfd4a2013-01-05 02:48:08 +00005003static int btrfs_ioctl_set_fslabel(struct file *file, void __user *arg)
5004{
Al Viro6d0379e2013-06-16 19:32:35 +04005005 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
jeff.liua8bfd4a2013-01-05 02:48:08 +00005006 struct btrfs_super_block *super_block = root->fs_info->super_copy;
5007 struct btrfs_trans_handle *trans;
5008 char label[BTRFS_LABEL_SIZE];
5009 int ret;
5010
5011 if (!capable(CAP_SYS_ADMIN))
5012 return -EPERM;
5013
5014 if (copy_from_user(label, arg, sizeof(label)))
5015 return -EFAULT;
5016
5017 if (strnlen(label, BTRFS_LABEL_SIZE) == BTRFS_LABEL_SIZE) {
Frank Holtonefe120a2013-12-20 11:37:06 -05005018 btrfs_err(root->fs_info, "unable to set label with more than %d bytes",
jeff.liua8bfd4a2013-01-05 02:48:08 +00005019 BTRFS_LABEL_SIZE - 1);
5020 return -EINVAL;
5021 }
5022
5023 ret = mnt_want_write_file(file);
5024 if (ret)
5025 return ret;
5026
jeff.liua8bfd4a2013-01-05 02:48:08 +00005027 trans = btrfs_start_transaction(root, 0);
5028 if (IS_ERR(trans)) {
5029 ret = PTR_ERR(trans);
5030 goto out_unlock;
5031 }
5032
Anand Jaina1b83ac2013-07-19 17:39:32 +08005033 spin_lock(&root->fs_info->super_lock);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005034 strcpy(super_block->label, label);
Anand Jaina1b83ac2013-07-19 17:39:32 +08005035 spin_unlock(&root->fs_info->super_lock);
Jeff Mahoneyd0270ac2014-02-07 14:33:57 +01005036 ret = btrfs_commit_transaction(trans, root);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005037
5038out_unlock:
jeff.liua8bfd4a2013-01-05 02:48:08 +00005039 mnt_drop_write_file(file);
5040 return ret;
5041}
5042
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005043#define INIT_FEATURE_FLAGS(suffix) \
5044 { .compat_flags = BTRFS_FEATURE_COMPAT_##suffix, \
5045 .compat_ro_flags = BTRFS_FEATURE_COMPAT_RO_##suffix, \
5046 .incompat_flags = BTRFS_FEATURE_INCOMPAT_##suffix }
5047
5048static int btrfs_ioctl_get_supported_features(struct file *file,
5049 void __user *arg)
5050{
5051 static struct btrfs_ioctl_feature_flags features[3] = {
5052 INIT_FEATURE_FLAGS(SUPP),
5053 INIT_FEATURE_FLAGS(SAFE_SET),
5054 INIT_FEATURE_FLAGS(SAFE_CLEAR)
5055 };
5056
5057 if (copy_to_user(arg, &features, sizeof(features)))
5058 return -EFAULT;
5059
5060 return 0;
5061}
5062
5063static int btrfs_ioctl_get_features(struct file *file, void __user *arg)
5064{
5065 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
5066 struct btrfs_super_block *super_block = root->fs_info->super_copy;
5067 struct btrfs_ioctl_feature_flags features;
5068
5069 features.compat_flags = btrfs_super_compat_flags(super_block);
5070 features.compat_ro_flags = btrfs_super_compat_ro_flags(super_block);
5071 features.incompat_flags = btrfs_super_incompat_flags(super_block);
5072
5073 if (copy_to_user(arg, &features, sizeof(features)))
5074 return -EFAULT;
5075
5076 return 0;
5077}
5078
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005079static int check_feature_bits(struct btrfs_root *root,
5080 enum btrfs_feature_set set,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005081 u64 change_mask, u64 flags, u64 supported_flags,
5082 u64 safe_set, u64 safe_clear)
5083{
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005084 const char *type = btrfs_feature_set_names[set];
5085 char *names;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005086 u64 disallowed, unsupported;
5087 u64 set_mask = flags & change_mask;
5088 u64 clear_mask = ~flags & change_mask;
5089
5090 unsupported = set_mask & ~supported_flags;
5091 if (unsupported) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005092 names = btrfs_printable_features(set, unsupported);
5093 if (names) {
5094 btrfs_warn(root->fs_info,
5095 "this kernel does not support the %s feature bit%s",
5096 names, strchr(names, ',') ? "s" : "");
5097 kfree(names);
5098 } else
5099 btrfs_warn(root->fs_info,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005100 "this kernel does not support %s bits 0x%llx",
5101 type, unsupported);
5102 return -EOPNOTSUPP;
5103 }
5104
5105 disallowed = set_mask & ~safe_set;
5106 if (disallowed) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005107 names = btrfs_printable_features(set, disallowed);
5108 if (names) {
5109 btrfs_warn(root->fs_info,
5110 "can't set the %s feature bit%s while mounted",
5111 names, strchr(names, ',') ? "s" : "");
5112 kfree(names);
5113 } else
5114 btrfs_warn(root->fs_info,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005115 "can't set %s bits 0x%llx while mounted",
5116 type, disallowed);
5117 return -EPERM;
5118 }
5119
5120 disallowed = clear_mask & ~safe_clear;
5121 if (disallowed) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005122 names = btrfs_printable_features(set, disallowed);
5123 if (names) {
5124 btrfs_warn(root->fs_info,
5125 "can't clear the %s feature bit%s while mounted",
5126 names, strchr(names, ',') ? "s" : "");
5127 kfree(names);
5128 } else
5129 btrfs_warn(root->fs_info,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005130 "can't clear %s bits 0x%llx while mounted",
5131 type, disallowed);
5132 return -EPERM;
5133 }
5134
5135 return 0;
5136}
5137
5138#define check_feature(root, change_mask, flags, mask_base) \
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005139check_feature_bits(root, FEAT_##mask_base, change_mask, flags, \
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005140 BTRFS_FEATURE_ ## mask_base ## _SUPP, \
5141 BTRFS_FEATURE_ ## mask_base ## _SAFE_SET, \
5142 BTRFS_FEATURE_ ## mask_base ## _SAFE_CLEAR)
5143
5144static int btrfs_ioctl_set_features(struct file *file, void __user *arg)
5145{
5146 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
5147 struct btrfs_super_block *super_block = root->fs_info->super_copy;
5148 struct btrfs_ioctl_feature_flags flags[2];
5149 struct btrfs_trans_handle *trans;
5150 u64 newflags;
5151 int ret;
5152
5153 if (!capable(CAP_SYS_ADMIN))
5154 return -EPERM;
5155
5156 if (copy_from_user(flags, arg, sizeof(flags)))
5157 return -EFAULT;
5158
5159 /* Nothing to do */
5160 if (!flags[0].compat_flags && !flags[0].compat_ro_flags &&
5161 !flags[0].incompat_flags)
5162 return 0;
5163
5164 ret = check_feature(root, flags[0].compat_flags,
5165 flags[1].compat_flags, COMPAT);
5166 if (ret)
5167 return ret;
5168
5169 ret = check_feature(root, flags[0].compat_ro_flags,
5170 flags[1].compat_ro_flags, COMPAT_RO);
5171 if (ret)
5172 return ret;
5173
5174 ret = check_feature(root, flags[0].incompat_flags,
5175 flags[1].incompat_flags, INCOMPAT);
5176 if (ret)
5177 return ret;
5178
David Sterba8051aa12014-02-07 14:34:04 +01005179 trans = btrfs_start_transaction(root, 0);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005180 if (IS_ERR(trans))
5181 return PTR_ERR(trans);
5182
5183 spin_lock(&root->fs_info->super_lock);
5184 newflags = btrfs_super_compat_flags(super_block);
5185 newflags |= flags[0].compat_flags & flags[1].compat_flags;
5186 newflags &= ~(flags[0].compat_flags & ~flags[1].compat_flags);
5187 btrfs_set_super_compat_flags(super_block, newflags);
5188
5189 newflags = btrfs_super_compat_ro_flags(super_block);
5190 newflags |= flags[0].compat_ro_flags & flags[1].compat_ro_flags;
5191 newflags &= ~(flags[0].compat_ro_flags & ~flags[1].compat_ro_flags);
5192 btrfs_set_super_compat_ro_flags(super_block, newflags);
5193
5194 newflags = btrfs_super_incompat_flags(super_block);
5195 newflags |= flags[0].incompat_flags & flags[1].incompat_flags;
5196 newflags &= ~(flags[0].incompat_flags & ~flags[1].incompat_flags);
5197 btrfs_set_super_incompat_flags(super_block, newflags);
5198 spin_unlock(&root->fs_info->super_lock);
5199
Jeff Mahoneyd0270ac2014-02-07 14:33:57 +01005200 return btrfs_commit_transaction(trans, root);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005201}
5202
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005203long btrfs_ioctl(struct file *file, unsigned int
5204 cmd, unsigned long arg)
5205{
Al Viro496ad9a2013-01-23 17:07:38 -05005206 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05005207 void __user *argp = (void __user *)arg;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005208
5209 switch (cmd) {
Christoph Hellwig6cbff002009-04-17 10:37:41 +02005210 case FS_IOC_GETFLAGS:
5211 return btrfs_ioctl_getflags(file, argp);
5212 case FS_IOC_SETFLAGS:
5213 return btrfs_ioctl_setflags(file, argp);
5214 case FS_IOC_GETVERSION:
5215 return btrfs_ioctl_getversion(file, argp);
Li Dongyangf7039b12011-03-24 10:24:28 +00005216 case FITRIM:
5217 return btrfs_ioctl_fitrim(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005218 case BTRFS_IOC_SNAP_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005219 return btrfs_ioctl_snap_create(file, argp, 0);
Li Zefanfdfb1e42010-12-10 06:41:56 +00005220 case BTRFS_IOC_SNAP_CREATE_V2:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005221 return btrfs_ioctl_snap_create_v2(file, argp, 0);
Chris Mason3de45862008-11-17 21:02:50 -05005222 case BTRFS_IOC_SUBVOL_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005223 return btrfs_ioctl_snap_create(file, argp, 1);
Arne Jansen6f72c7e2011-09-14 15:58:21 +02005224 case BTRFS_IOC_SUBVOL_CREATE_V2:
5225 return btrfs_ioctl_snap_create_v2(file, argp, 1);
Yan, Zheng76dda932009-09-21 16:00:26 -04005226 case BTRFS_IOC_SNAP_DESTROY:
5227 return btrfs_ioctl_snap_destroy(file, argp);
Li Zefan0caa1022010-12-20 16:30:25 +08005228 case BTRFS_IOC_SUBVOL_GETFLAGS:
5229 return btrfs_ioctl_subvol_getflags(file, argp);
5230 case BTRFS_IOC_SUBVOL_SETFLAGS:
5231 return btrfs_ioctl_subvol_setflags(file, argp);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00005232 case BTRFS_IOC_DEFAULT_SUBVOL:
5233 return btrfs_ioctl_default_subvol(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005234 case BTRFS_IOC_DEFRAG:
Chris Mason1e701a32010-03-11 09:42:04 -05005235 return btrfs_ioctl_defrag(file, NULL);
5236 case BTRFS_IOC_DEFRAG_RANGE:
5237 return btrfs_ioctl_defrag(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005238 case BTRFS_IOC_RESIZE:
Miao Xie198605a2012-11-26 08:43:45 +00005239 return btrfs_ioctl_resize(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005240 case BTRFS_IOC_ADD_DEV:
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05005241 return btrfs_ioctl_add_dev(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005242 case BTRFS_IOC_RM_DEV:
Miao Xieda249272012-11-26 08:44:50 +00005243 return btrfs_ioctl_rm_dev(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005244 case BTRFS_IOC_FS_INFO:
5245 return btrfs_ioctl_fs_info(root, argp);
5246 case BTRFS_IOC_DEV_INFO:
5247 return btrfs_ioctl_dev_info(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005248 case BTRFS_IOC_BALANCE:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08005249 return btrfs_ioctl_balance(file, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005250 case BTRFS_IOC_CLONE:
Sage Weilc5c9cd42008-11-12 14:32:25 -05005251 return btrfs_ioctl_clone(file, arg, 0, 0, 0);
5252 case BTRFS_IOC_CLONE_RANGE:
Christoph Hellwig7a865e82008-12-02 09:52:24 -05005253 return btrfs_ioctl_clone_range(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005254 case BTRFS_IOC_TRANS_START:
5255 return btrfs_ioctl_trans_start(file);
5256 case BTRFS_IOC_TRANS_END:
5257 return btrfs_ioctl_trans_end(file);
Chris Masonac8e9812010-02-28 15:39:26 -05005258 case BTRFS_IOC_TREE_SEARCH:
5259 return btrfs_ioctl_tree_search(file, argp);
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01005260 case BTRFS_IOC_TREE_SEARCH_V2:
5261 return btrfs_ioctl_tree_search_v2(file, argp);
Chris Masonac8e9812010-02-28 15:39:26 -05005262 case BTRFS_IOC_INO_LOOKUP:
5263 return btrfs_ioctl_ino_lookup(file, argp);
Jan Schmidtd7728c92011-07-07 16:48:38 +02005264 case BTRFS_IOC_INO_PATHS:
5265 return btrfs_ioctl_ino_to_path(root, argp);
5266 case BTRFS_IOC_LOGICAL_INO:
5267 return btrfs_ioctl_logical_to_ino(root, argp);
Josef Bacik1406e432010-01-13 18:19:06 +00005268 case BTRFS_IOC_SPACE_INFO:
5269 return btrfs_ioctl_space_info(root, argp);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005270 case BTRFS_IOC_SYNC: {
5271 int ret;
5272
Miao Xie6c255e62014-03-06 13:55:01 +08005273 ret = btrfs_start_delalloc_roots(root->fs_info, 0, -1);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005274 if (ret)
5275 return ret;
Al Viroddb52f42014-10-21 20:21:18 -04005276 ret = btrfs_sync_fs(file_inode(file)->i_sb, 1);
David Sterba2fad4e82014-07-23 14:39:35 +02005277 /*
5278 * The transaction thread may want to do more work,
5279 * namely it pokes the cleaner ktread that will start
5280 * processing uncleaned subvols.
5281 */
5282 wake_up_process(root->fs_info->transaction_kthread);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005283 return ret;
5284 }
Sage Weil46204592010-10-29 15:41:32 -04005285 case BTRFS_IOC_START_SYNC:
Miao Xie9a8c28b2012-11-26 08:40:43 +00005286 return btrfs_ioctl_start_sync(root, argp);
Sage Weil46204592010-10-29 15:41:32 -04005287 case BTRFS_IOC_WAIT_SYNC:
Miao Xie9a8c28b2012-11-26 08:40:43 +00005288 return btrfs_ioctl_wait_sync(root, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005289 case BTRFS_IOC_SCRUB:
Miao Xieb8e95482012-11-26 08:48:01 +00005290 return btrfs_ioctl_scrub(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005291 case BTRFS_IOC_SCRUB_CANCEL:
5292 return btrfs_ioctl_scrub_cancel(root, argp);
5293 case BTRFS_IOC_SCRUB_PROGRESS:
5294 return btrfs_ioctl_scrub_progress(root, argp);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02005295 case BTRFS_IOC_BALANCE_V2:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08005296 return btrfs_ioctl_balance(file, argp);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02005297 case BTRFS_IOC_BALANCE_CTL:
5298 return btrfs_ioctl_balance_ctl(root, arg);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02005299 case BTRFS_IOC_BALANCE_PROGRESS:
5300 return btrfs_ioctl_balance_progress(root, argp);
Alexander Block8ea05e32012-07-25 17:35:53 +02005301 case BTRFS_IOC_SET_RECEIVED_SUBVOL:
5302 return btrfs_ioctl_set_received_subvol(file, argp);
Hugo Millsabccd002014-01-30 20:17:00 +00005303#ifdef CONFIG_64BIT
5304 case BTRFS_IOC_SET_RECEIVED_SUBVOL_32:
5305 return btrfs_ioctl_set_received_subvol_32(file, argp);
5306#endif
Alexander Block31db9f72012-07-25 23:19:24 +02005307 case BTRFS_IOC_SEND:
5308 return btrfs_ioctl_send(file, argp);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02005309 case BTRFS_IOC_GET_DEV_STATS:
David Sterbab27f7c02012-06-22 06:30:39 -06005310 return btrfs_ioctl_get_dev_stats(root, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005311 case BTRFS_IOC_QUOTA_CTL:
Miao Xie905b0dd2012-11-26 08:50:11 +00005312 return btrfs_ioctl_quota_ctl(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005313 case BTRFS_IOC_QGROUP_ASSIGN:
Miao Xie905b0dd2012-11-26 08:50:11 +00005314 return btrfs_ioctl_qgroup_assign(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005315 case BTRFS_IOC_QGROUP_CREATE:
Miao Xie905b0dd2012-11-26 08:50:11 +00005316 return btrfs_ioctl_qgroup_create(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005317 case BTRFS_IOC_QGROUP_LIMIT:
Miao Xie905b0dd2012-11-26 08:50:11 +00005318 return btrfs_ioctl_qgroup_limit(file, argp);
Jan Schmidt2f232032013-04-25 16:04:51 +00005319 case BTRFS_IOC_QUOTA_RESCAN:
5320 return btrfs_ioctl_quota_rescan(file, argp);
5321 case BTRFS_IOC_QUOTA_RESCAN_STATUS:
5322 return btrfs_ioctl_quota_rescan_status(file, argp);
Jan Schmidt57254b6e2013-05-06 19:14:17 +00005323 case BTRFS_IOC_QUOTA_RESCAN_WAIT:
5324 return btrfs_ioctl_quota_rescan_wait(file, argp);
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01005325 case BTRFS_IOC_DEV_REPLACE:
5326 return btrfs_ioctl_dev_replace(root, argp);
jeff.liu867ab662013-01-05 02:48:01 +00005327 case BTRFS_IOC_GET_FSLABEL:
5328 return btrfs_ioctl_get_fslabel(file, argp);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005329 case BTRFS_IOC_SET_FSLABEL:
5330 return btrfs_ioctl_set_fslabel(file, argp);
Mark Fasheh416161d2013-08-06 11:42:51 -07005331 case BTRFS_IOC_FILE_EXTENT_SAME:
5332 return btrfs_ioctl_file_extent_same(file, argp);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005333 case BTRFS_IOC_GET_SUPPORTED_FEATURES:
5334 return btrfs_ioctl_get_supported_features(file, argp);
5335 case BTRFS_IOC_GET_FEATURES:
5336 return btrfs_ioctl_get_features(file, argp);
5337 case BTRFS_IOC_SET_FEATURES:
5338 return btrfs_ioctl_set_features(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005339 }
5340
5341 return -ENOTTY;
5342}