blob: 87a7267a6bb2f50e2d0d28b57985937858533a06 [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 Sterba707e8a02014-06-04 19:22:26 +0200483 leaf = btrfs_alloc_free_block(trans, root, root->nodesize,
Jan Schmidt5581a512012-05-16 17:04:52 +0200484 0, objectid, NULL, 0, 0, 0);
Josef Bacik8e8a1e32008-07-24 12:17:14 -0400485 if (IS_ERR(leaf)) {
486 ret = PTR_ERR(leaf);
487 goto fail;
488 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400489
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400490 memset_extent_buffer(leaf, 0, 0, sizeof(struct btrfs_header));
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400491 btrfs_set_header_bytenr(leaf, leaf->start);
492 btrfs_set_header_generation(leaf, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400493 btrfs_set_header_backref_rev(leaf, BTRFS_MIXED_BACKREF_REV);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400494 btrfs_set_header_owner(leaf, objectid);
495
Ross Kirk0a4e5582013-09-24 10:12:38 +0100496 write_extent_buffer(leaf, root->fs_info->fsid, btrfs_header_fsid(),
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400497 BTRFS_FSID_SIZE);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400498 write_extent_buffer(leaf, root->fs_info->chunk_tree_uuid,
Geert Uytterhoevenb308bc22013-08-20 13:20:15 +0200499 btrfs_header_chunk_tree_uuid(leaf),
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400500 BTRFS_UUID_SIZE);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400501 btrfs_mark_buffer_dirty(leaf);
502
Alexander Block8ea05e32012-07-25 17:35:53 +0200503 memset(&root_item, 0, sizeof(root_item));
504
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400505 inode_item = &root_item.inode;
Qu Wenruo3cae2102013-07-16 11:19:18 +0800506 btrfs_set_stack_inode_generation(inode_item, 1);
507 btrfs_set_stack_inode_size(inode_item, 3);
508 btrfs_set_stack_inode_nlink(inode_item, 1);
David Sterba707e8a02014-06-04 19:22:26 +0200509 btrfs_set_stack_inode_nbytes(inode_item, root->nodesize);
Qu Wenruo3cae2102013-07-16 11:19:18 +0800510 btrfs_set_stack_inode_mode(inode_item, S_IFDIR | 0755);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400511
Qu Wenruo3cae2102013-07-16 11:19:18 +0800512 btrfs_set_root_flags(&root_item, 0);
513 btrfs_set_root_limit(&root_item, 0);
514 btrfs_set_stack_inode_flags(inode_item, BTRFS_INODE_ROOT_ITEM_INIT);
Li Zefan08fe4db2011-03-28 02:01:25 +0000515
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400516 btrfs_set_root_bytenr(&root_item, leaf->start);
Yan Zheng84234f32008-10-29 14:49:05 -0400517 btrfs_set_root_generation(&root_item, trans->transid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400518 btrfs_set_root_level(&root_item, 0);
519 btrfs_set_root_refs(&root_item, 1);
Yan, Zheng86b9f2e2009-11-12 09:36:50 +0000520 btrfs_set_root_used(&root_item, leaf->len);
Yan Zheng80ff3852008-10-30 14:20:02 -0400521 btrfs_set_root_last_snapshot(&root_item, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400522
Alexander Block8ea05e32012-07-25 17:35:53 +0200523 btrfs_set_root_generation_v2(&root_item,
524 btrfs_root_generation(&root_item));
525 uuid_le_gen(&new_uuid);
526 memcpy(root_item.uuid, new_uuid.b, BTRFS_UUID_SIZE);
Qu Wenruo3cae2102013-07-16 11:19:18 +0800527 btrfs_set_stack_timespec_sec(&root_item.otime, cur_time.tv_sec);
528 btrfs_set_stack_timespec_nsec(&root_item.otime, cur_time.tv_nsec);
Alexander Block8ea05e32012-07-25 17:35:53 +0200529 root_item.ctime = root_item.otime;
530 btrfs_set_root_ctransid(&root_item, trans->transid);
531 btrfs_set_root_otransid(&root_item, trans->transid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400532
Chris Mason925baed2008-06-25 16:01:30 -0400533 btrfs_tree_unlock(leaf);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400534 free_extent_buffer(leaf);
535 leaf = NULL;
536
537 btrfs_set_root_dirid(&root_item, new_dirid);
538
539 key.objectid = objectid;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400540 key.offset = 0;
David Sterba962a2982014-06-04 18:41:45 +0200541 key.type = BTRFS_ROOT_ITEM_KEY;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400542 ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
543 &root_item);
544 if (ret)
545 goto fail;
546
Yan, Zheng76dda932009-09-21 16:00:26 -0400547 key.offset = (u64)-1;
548 new_root = btrfs_read_fs_root_no_name(root->fs_info, &key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100549 if (IS_ERR(new_root)) {
550 btrfs_abort_transaction(trans, root, PTR_ERR(new_root));
551 ret = PTR_ERR(new_root);
552 goto fail;
553 }
Yan, Zheng76dda932009-09-21 16:00:26 -0400554
555 btrfs_record_root_in_trans(trans, new_root);
556
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000557 ret = btrfs_create_subvol_root(trans, new_root, root, new_dirid);
Mark Fashehce598972011-07-26 11:32:23 -0700558 if (ret) {
559 /* We potentially lose an unused inode item here */
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100560 btrfs_abort_transaction(trans, root, ret);
Mark Fashehce598972011-07-26 11:32:23 -0700561 goto fail;
562 }
563
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400564 /*
565 * insert the directory item
566 */
Chris Mason3de45862008-11-17 21:02:50 -0500567 ret = btrfs_set_inode_index(dir, &index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100568 if (ret) {
569 btrfs_abort_transaction(trans, root, ret);
570 goto fail;
571 }
Chris Mason3de45862008-11-17 21:02:50 -0500572
573 ret = btrfs_insert_dir_item(trans, root,
Miao Xie16cdcec2011-04-22 18:12:22 +0800574 name, namelen, dir, &key,
Chris Mason3de45862008-11-17 21:02:50 -0500575 BTRFS_FT_DIR, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100576 if (ret) {
577 btrfs_abort_transaction(trans, root, ret);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400578 goto fail;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100579 }
Chris Mason0660b5a2008-11-17 20:37:39 -0500580
Yan Zheng52c26172009-01-05 15:43:43 -0500581 btrfs_i_size_write(dir, dir->i_size + namelen * 2);
582 ret = btrfs_update_inode(trans, root, dir);
583 BUG_ON(ret);
584
Chris Mason0660b5a2008-11-17 20:37:39 -0500585 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -0400586 objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +0800587 btrfs_ino(dir), index, name, namelen);
Chris Mason0660b5a2008-11-17 20:37:39 -0500588 BUG_ON(ret);
589
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200590 ret = btrfs_uuid_tree_add(trans, root->fs_info->uuid_root,
591 root_item.uuid, BTRFS_UUID_KEY_SUBVOL,
592 objectid);
593 if (ret)
594 btrfs_abort_transaction(trans, root, ret);
595
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400596fail:
Miao Xied5c12072013-02-28 10:04:33 +0000597 trans->block_rsv = NULL;
598 trans->bytes_reserved = 0;
Liu Bode6e8202014-01-09 14:57:06 +0800599 btrfs_subvolume_release_metadata(root, &block_rsv, qgroup_reserved);
600
Sage Weil72fd0322010-10-29 15:41:32 -0400601 if (async_transid) {
602 *async_transid = trans->transid;
603 err = btrfs_commit_transaction_async(trans, root, 1);
Miao Xie00d71c92013-03-04 09:45:06 +0000604 if (err)
605 err = btrfs_commit_transaction(trans, root);
Sage Weil72fd0322010-10-29 15:41:32 -0400606 } else {
607 err = btrfs_commit_transaction(trans, root);
608 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400609 if (err && !ret)
610 ret = err;
Chris Mason1a65e242013-02-06 12:06:02 -0500611
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900612 if (!ret) {
613 inode = btrfs_lookup_dentry(dir, dentry);
Liu Bode6e8202014-01-09 14:57:06 +0800614 if (IS_ERR(inode))
615 return PTR_ERR(inode);
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900616 d_instantiate(dentry, inode);
617 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400618 return ret;
619}
620
Miao Xie8257b2d2014-03-06 13:38:19 +0800621static void btrfs_wait_nocow_write(struct btrfs_root *root)
622{
623 s64 writers;
624 DEFINE_WAIT(wait);
625
626 do {
627 prepare_to_wait(&root->subv_writers->wait, &wait,
628 TASK_UNINTERRUPTIBLE);
629
630 writers = percpu_counter_sum(&root->subv_writers->counter);
631 if (writers)
632 schedule();
633
634 finish_wait(&root->subv_writers->wait, &wait);
635 } while (writers);
636}
637
Miao Xiee9662f72013-02-28 10:01:15 +0000638static int create_snapshot(struct btrfs_root *root, struct inode *dir,
639 struct dentry *dentry, char *name, int namelen,
640 u64 *async_transid, bool readonly,
641 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400642{
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000643 struct inode *inode;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400644 struct btrfs_pending_snapshot *pending_snapshot;
645 struct btrfs_trans_handle *trans;
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000646 int ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400647
Miao Xie27cdeb72014-04-02 19:51:05 +0800648 if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400649 return -EINVAL;
650
Miao Xie8257b2d2014-03-06 13:38:19 +0800651 atomic_inc(&root->will_be_snapshoted);
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100652 smp_mb__after_atomic();
Miao Xie8257b2d2014-03-06 13:38:19 +0800653 btrfs_wait_nocow_write(root);
654
Miao Xie6a038432013-05-15 07:48:24 +0000655 ret = btrfs_start_delalloc_inodes(root, 0);
656 if (ret)
Miao Xie8257b2d2014-03-06 13:38:19 +0800657 goto out;
Miao Xie6a038432013-05-15 07:48:24 +0000658
Miao Xieb0244192013-11-04 23:13:25 +0800659 btrfs_wait_ordered_extents(root, -1);
Miao Xie6a038432013-05-15 07:48:24 +0000660
Yan, Zhenga22285a2010-05-16 10:48:46 -0400661 pending_snapshot = kzalloc(sizeof(*pending_snapshot), GFP_NOFS);
Miao Xie8257b2d2014-03-06 13:38:19 +0800662 if (!pending_snapshot) {
663 ret = -ENOMEM;
664 goto out;
665 }
Yan, Zhenga22285a2010-05-16 10:48:46 -0400666
Miao Xie66d8f3d2012-09-06 04:02:28 -0600667 btrfs_init_block_rsv(&pending_snapshot->block_rsv,
668 BTRFS_BLOCK_RSV_TEMP);
Miao Xied5c12072013-02-28 10:04:33 +0000669 /*
670 * 1 - parent dir inode
671 * 2 - dir entries
672 * 1 - root item
673 * 2 - root ref/backref
674 * 1 - root of snapshot
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200675 * 1 - UUID item
Miao Xied5c12072013-02-28 10:04:33 +0000676 */
677 ret = btrfs_subvolume_reserve_metadata(BTRFS_I(dir)->root,
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200678 &pending_snapshot->block_rsv, 8,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -0400679 &pending_snapshot->qgroup_reserved,
680 false);
Miao Xied5c12072013-02-28 10:04:33 +0000681 if (ret)
Miao Xie8257b2d2014-03-06 13:38:19 +0800682 goto free;
Miao Xied5c12072013-02-28 10:04:33 +0000683
Yan, Zhenga22285a2010-05-16 10:48:46 -0400684 pending_snapshot->dentry = dentry;
685 pending_snapshot->root = root;
Li Zefanb83cc962010-12-20 16:04:08 +0800686 pending_snapshot->readonly = readonly;
Miao Xiee9662f72013-02-28 10:01:15 +0000687 pending_snapshot->dir = dir;
Miao Xie8696c532013-02-07 06:02:44 +0000688 pending_snapshot->inherit = inherit;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400689
Miao Xied5c12072013-02-28 10:04:33 +0000690 trans = btrfs_start_transaction(root, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400691 if (IS_ERR(trans)) {
692 ret = PTR_ERR(trans);
693 goto fail;
694 }
695
Josef Bacik83515832011-06-14 15:16:14 -0400696 spin_lock(&root->fs_info->trans_lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400697 list_add(&pending_snapshot->list,
698 &trans->transaction->pending_snapshots);
Josef Bacik83515832011-06-14 15:16:14 -0400699 spin_unlock(&root->fs_info->trans_lock);
Sage Weil72fd0322010-10-29 15:41:32 -0400700 if (async_transid) {
701 *async_transid = trans->transid;
702 ret = btrfs_commit_transaction_async(trans,
703 root->fs_info->extent_root, 1);
Miao Xie00d71c92013-03-04 09:45:06 +0000704 if (ret)
705 ret = btrfs_commit_transaction(trans, root);
Sage Weil72fd0322010-10-29 15:41:32 -0400706 } else {
707 ret = btrfs_commit_transaction(trans,
708 root->fs_info->extent_root);
709 }
Miao Xieaec80302013-03-04 09:44:29 +0000710 if (ret)
Josef Bacikc37b2b62012-10-22 15:51:44 -0400711 goto fail;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400712
713 ret = pending_snapshot->error;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400714 if (ret)
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000715 goto fail;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400716
Al Viro2fbe8c82011-07-16 21:38:06 -0400717 inode = btrfs_lookup_dentry(dentry->d_parent->d_inode, dentry);
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000718 if (IS_ERR(inode)) {
719 ret = PTR_ERR(inode);
720 goto fail;
721 }
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900722
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000723 d_instantiate(dentry, inode);
724 ret = 0;
725fail:
Miao Xied5c12072013-02-28 10:04:33 +0000726 btrfs_subvolume_release_metadata(BTRFS_I(dir)->root,
727 &pending_snapshot->block_rsv,
728 pending_snapshot->qgroup_reserved);
Miao Xie8257b2d2014-03-06 13:38:19 +0800729free:
Yan, Zhenga22285a2010-05-16 10:48:46 -0400730 kfree(pending_snapshot);
Miao Xie8257b2d2014-03-06 13:38:19 +0800731out:
732 atomic_dec(&root->will_be_snapshoted);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400733 return ret;
734}
735
Sage Weil4260f7c2010-10-29 15:46:43 -0400736/* copy of check_sticky in fs/namei.c()
737* It's inline, so penalty for filesystems that don't use sticky bit is
738* minimal.
739*/
740static inline int btrfs_check_sticky(struct inode *dir, struct inode *inode)
741{
Eric W. Biederman2f2f43d2012-02-10 11:05:07 -0800742 kuid_t fsuid = current_fsuid();
Sage Weil4260f7c2010-10-29 15:46:43 -0400743
744 if (!(dir->i_mode & S_ISVTX))
745 return 0;
Eric W. Biederman2f2f43d2012-02-10 11:05:07 -0800746 if (uid_eq(inode->i_uid, fsuid))
Sage Weil4260f7c2010-10-29 15:46:43 -0400747 return 0;
Eric W. Biederman2f2f43d2012-02-10 11:05:07 -0800748 if (uid_eq(dir->i_uid, fsuid))
Sage Weil4260f7c2010-10-29 15:46:43 -0400749 return 0;
750 return !capable(CAP_FOWNER);
751}
752
753/* copy of may_delete in fs/namei.c()
754 * Check whether we can remove a link victim from directory dir, check
755 * whether the type of victim is right.
756 * 1. We can't do it if dir is read-only (done in permission())
757 * 2. We should have write and exec permissions on dir
758 * 3. We can't remove anything from append-only dir
759 * 4. We can't do anything with immutable dir (done in permission())
760 * 5. If the sticky bit on dir is set we should either
761 * a. be owner of dir, or
762 * b. be owner of victim, or
763 * c. have CAP_FOWNER capability
764 * 6. If the victim is append-only or immutable we can't do antyhing with
765 * links pointing to it.
766 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
767 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
768 * 9. We can't remove a root or mountpoint.
769 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
770 * nfs_async_unlink().
771 */
772
Dulshani Gunawardhana67871252013-10-31 10:33:04 +0530773static int btrfs_may_delete(struct inode *dir, struct dentry *victim, int isdir)
Sage Weil4260f7c2010-10-29 15:46:43 -0400774{
775 int error;
776
777 if (!victim->d_inode)
778 return -ENOENT;
779
780 BUG_ON(victim->d_parent->d_inode != dir);
Jeff Layton4fa6b5e2012-10-10 15:25:25 -0400781 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
Sage Weil4260f7c2010-10-29 15:46:43 -0400782
783 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
784 if (error)
785 return error;
786 if (IS_APPEND(dir))
787 return -EPERM;
788 if (btrfs_check_sticky(dir, victim->d_inode)||
789 IS_APPEND(victim->d_inode)||
790 IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode))
791 return -EPERM;
792 if (isdir) {
793 if (!S_ISDIR(victim->d_inode->i_mode))
794 return -ENOTDIR;
795 if (IS_ROOT(victim))
796 return -EBUSY;
797 } else if (S_ISDIR(victim->d_inode->i_mode))
798 return -EISDIR;
799 if (IS_DEADDIR(dir))
800 return -ENOENT;
801 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
802 return -EBUSY;
803 return 0;
804}
805
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400806/* copy of may_create in fs/namei.c() */
807static inline int btrfs_may_create(struct inode *dir, struct dentry *child)
808{
809 if (child->d_inode)
810 return -EEXIST;
811 if (IS_DEADDIR(dir))
812 return -ENOENT;
813 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
814}
815
816/*
817 * Create a new subvolume below @parent. This is largely modeled after
818 * sys_mkdirat and vfs_mkdir, but we only do a single component lookup
819 * inside this filesystem so it's quite a bit simpler.
820 */
Yan, Zheng76dda932009-09-21 16:00:26 -0400821static noinline int btrfs_mksubvol(struct path *parent,
822 char *name, int namelen,
Sage Weil72fd0322010-10-29 15:41:32 -0400823 struct btrfs_root *snap_src,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200824 u64 *async_transid, bool readonly,
Miao Xie8696c532013-02-07 06:02:44 +0000825 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400826{
Yan, Zheng76dda932009-09-21 16:00:26 -0400827 struct inode *dir = parent->dentry->d_inode;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400828 struct dentry *dentry;
829 int error;
830
David Sterba5c50c9b2013-03-22 18:12:51 +0000831 error = mutex_lock_killable_nested(&dir->i_mutex, I_MUTEX_PARENT);
832 if (error == -EINTR)
833 return error;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400834
835 dentry = lookup_one_len(name, parent->dentry, namelen);
836 error = PTR_ERR(dentry);
837 if (IS_ERR(dentry))
838 goto out_unlock;
839
840 error = -EEXIST;
841 if (dentry->d_inode)
842 goto out_dput;
843
Yan, Zheng76dda932009-09-21 16:00:26 -0400844 error = btrfs_may_create(dir, dentry);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400845 if (error)
Liu Boa874a632012-06-29 03:58:46 -0600846 goto out_dput;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400847
Chris Mason9c520572012-12-17 14:26:57 -0500848 /*
849 * even if this name doesn't exist, we may get hash collisions.
850 * check for them now when we can safely fail
851 */
852 error = btrfs_check_dir_item_collision(BTRFS_I(dir)->root,
853 dir->i_ino, name,
854 namelen);
855 if (error)
856 goto out_dput;
857
Yan, Zheng76dda932009-09-21 16:00:26 -0400858 down_read(&BTRFS_I(dir)->root->fs_info->subvol_sem);
859
860 if (btrfs_root_refs(&BTRFS_I(dir)->root->root_item) == 0)
861 goto out_up_read;
862
Chris Mason3de45862008-11-17 21:02:50 -0500863 if (snap_src) {
Miao Xiee9662f72013-02-28 10:01:15 +0000864 error = create_snapshot(snap_src, dir, dentry, name, namelen,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200865 async_transid, readonly, inherit);
Chris Mason3de45862008-11-17 21:02:50 -0500866 } else {
Miao Xied5c12072013-02-28 10:04:33 +0000867 error = create_subvol(dir, dentry, name, namelen,
868 async_transid, inherit);
Chris Mason3de45862008-11-17 21:02:50 -0500869 }
Yan, Zheng76dda932009-09-21 16:00:26 -0400870 if (!error)
871 fsnotify_mkdir(dir, dentry);
872out_up_read:
873 up_read(&BTRFS_I(dir)->root->fs_info->subvol_sem);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400874out_dput:
875 dput(dentry);
876out_unlock:
Yan, Zheng76dda932009-09-21 16:00:26 -0400877 mutex_unlock(&dir->i_mutex);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400878 return error;
879}
880
Chris Mason4cb53002011-05-24 15:35:30 -0400881/*
882 * When we're defragging a range, we don't want to kick it off again
883 * if it is really just waiting for delalloc to send it down.
884 * If we find a nice big extent or delalloc range for the bytes in the
885 * file you want to defrag, we return 0 to let you know to skip this
886 * part of the file
887 */
David Sterbaaab110a2014-07-29 17:32:10 +0200888static int check_defrag_in_cache(struct inode *inode, u64 offset, u32 thresh)
Chris Mason4cb53002011-05-24 15:35:30 -0400889{
890 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
891 struct extent_map *em = NULL;
892 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
893 u64 end;
894
895 read_lock(&em_tree->lock);
896 em = lookup_extent_mapping(em_tree, offset, PAGE_CACHE_SIZE);
897 read_unlock(&em_tree->lock);
898
899 if (em) {
900 end = extent_map_end(em);
901 free_extent_map(em);
902 if (end - offset > thresh)
903 return 0;
904 }
905 /* if we already have a nice delalloc here, just stop */
906 thresh /= 2;
907 end = count_range_bits(io_tree, &offset, offset + thresh,
908 thresh, EXTENT_DELALLOC, 1);
909 if (end >= thresh)
910 return 0;
911 return 1;
912}
913
914/*
915 * helper function to walk through a file and find extents
916 * newer than a specific transid, and smaller than thresh.
917 *
918 * This is used by the defragging code to find new and small
919 * extents
920 */
921static int find_new_extents(struct btrfs_root *root,
922 struct inode *inode, u64 newer_than,
David Sterbaaab110a2014-07-29 17:32:10 +0200923 u64 *off, u32 thresh)
Chris Mason4cb53002011-05-24 15:35:30 -0400924{
925 struct btrfs_path *path;
926 struct btrfs_key min_key;
Chris Mason4cb53002011-05-24 15:35:30 -0400927 struct extent_buffer *leaf;
928 struct btrfs_file_extent_item *extent;
929 int type;
930 int ret;
David Sterbaa4689d22011-05-31 17:08:14 +0000931 u64 ino = btrfs_ino(inode);
Chris Mason4cb53002011-05-24 15:35:30 -0400932
933 path = btrfs_alloc_path();
934 if (!path)
935 return -ENOMEM;
936
David Sterbaa4689d22011-05-31 17:08:14 +0000937 min_key.objectid = ino;
Chris Mason4cb53002011-05-24 15:35:30 -0400938 min_key.type = BTRFS_EXTENT_DATA_KEY;
939 min_key.offset = *off;
940
Dulshani Gunawardhana67871252013-10-31 10:33:04 +0530941 while (1) {
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +0100942 ret = btrfs_search_forward(root, &min_key, path, newer_than);
Chris Mason4cb53002011-05-24 15:35:30 -0400943 if (ret != 0)
944 goto none;
Filipe Mananaf094c9bd2014-03-12 01:28:24 +0000945process_slot:
David Sterbaa4689d22011-05-31 17:08:14 +0000946 if (min_key.objectid != ino)
Chris Mason4cb53002011-05-24 15:35:30 -0400947 goto none;
948 if (min_key.type != BTRFS_EXTENT_DATA_KEY)
949 goto none;
950
951 leaf = path->nodes[0];
952 extent = btrfs_item_ptr(leaf, path->slots[0],
953 struct btrfs_file_extent_item);
954
955 type = btrfs_file_extent_type(leaf, extent);
956 if (type == BTRFS_FILE_EXTENT_REG &&
957 btrfs_file_extent_num_bytes(leaf, extent) < thresh &&
958 check_defrag_in_cache(inode, min_key.offset, thresh)) {
959 *off = min_key.offset;
960 btrfs_free_path(path);
961 return 0;
962 }
963
Filipe Mananaf094c9bd2014-03-12 01:28:24 +0000964 path->slots[0]++;
965 if (path->slots[0] < btrfs_header_nritems(leaf)) {
966 btrfs_item_key_to_cpu(leaf, &min_key, path->slots[0]);
967 goto process_slot;
968 }
969
Chris Mason4cb53002011-05-24 15:35:30 -0400970 if (min_key.offset == (u64)-1)
971 goto none;
972
973 min_key.offset++;
974 btrfs_release_path(path);
975 }
976none:
977 btrfs_free_path(path);
978 return -ENOENT;
979}
980
Li Zefan6c282eb2012-06-11 16:03:35 +0800981static struct extent_map *defrag_lookup_extent(struct inode *inode, u64 start)
Liu Bo17ce6ef2012-03-29 09:57:45 -0400982{
983 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason940100a2010-03-10 10:52:59 -0500984 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Li Zefan6c282eb2012-06-11 16:03:35 +0800985 struct extent_map *em;
986 u64 len = PAGE_CACHE_SIZE;
Chris Mason940100a2010-03-10 10:52:59 -0500987
988 /*
989 * hopefully we have this extent in the tree already, try without
990 * the full extent lock
991 */
992 read_lock(&em_tree->lock);
993 em = lookup_extent_mapping(em_tree, start, len);
994 read_unlock(&em_tree->lock);
995
996 if (!em) {
Filipe Manana308d9802014-03-11 13:56:15 +0000997 struct extent_state *cached = NULL;
998 u64 end = start + len - 1;
999
Chris Mason940100a2010-03-10 10:52:59 -05001000 /* get the big lock and read metadata off disk */
Filipe Manana308d9802014-03-11 13:56:15 +00001001 lock_extent_bits(io_tree, start, end, 0, &cached);
Chris Mason940100a2010-03-10 10:52:59 -05001002 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
Filipe Manana308d9802014-03-11 13:56:15 +00001003 unlock_extent_cached(io_tree, start, end, &cached, GFP_NOFS);
Chris Mason940100a2010-03-10 10:52:59 -05001004
Dan Carpenter6cf8bfb2010-03-20 11:22:10 +00001005 if (IS_ERR(em))
Li Zefan6c282eb2012-06-11 16:03:35 +08001006 return NULL;
Chris Mason940100a2010-03-10 10:52:59 -05001007 }
1008
Li Zefan6c282eb2012-06-11 16:03:35 +08001009 return em;
1010}
1011
1012static bool defrag_check_next_extent(struct inode *inode, struct extent_map *em)
1013{
1014 struct extent_map *next;
1015 bool ret = true;
1016
1017 /* this is the last extent */
1018 if (em->start + em->len >= i_size_read(inode))
1019 return false;
1020
1021 next = defrag_lookup_extent(inode, em->start + em->len);
Chris Masone9512d72014-08-26 13:55:54 -07001022 if (!next || next->block_start >= EXTENT_MAP_LAST_BYTE)
1023 ret = false;
1024 else if ((em->block_start + em->block_len == next->block_start) &&
1025 (em->block_len > 128 * 1024 && next->block_len > 128 * 1024))
Li Zefan6c282eb2012-06-11 16:03:35 +08001026 ret = false;
1027
1028 free_extent_map(next);
1029 return ret;
1030}
1031
David Sterbaaab110a2014-07-29 17:32:10 +02001032static int should_defrag_range(struct inode *inode, u64 start, u32 thresh,
Andrew Mahonea43a2112012-06-19 21:08:32 -04001033 u64 *last_len, u64 *skip, u64 *defrag_end,
1034 int compress)
Li Zefan6c282eb2012-06-11 16:03:35 +08001035{
1036 struct extent_map *em;
1037 int ret = 1;
1038 bool next_mergeable = true;
1039
1040 /*
1041 * make sure that once we start defragging an extent, we keep on
1042 * defragging it
1043 */
1044 if (start < *defrag_end)
1045 return 1;
1046
1047 *skip = 0;
1048
1049 em = defrag_lookup_extent(inode, start);
1050 if (!em)
1051 return 0;
1052
Chris Mason940100a2010-03-10 10:52:59 -05001053 /* this will cover holes, and inline extents */
Liu Bo17ce6ef2012-03-29 09:57:45 -04001054 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
Chris Mason940100a2010-03-10 10:52:59 -05001055 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -04001056 goto out;
1057 }
1058
Li Zefan6c282eb2012-06-11 16:03:35 +08001059 next_mergeable = defrag_check_next_extent(inode, em);
Chris Mason940100a2010-03-10 10:52:59 -05001060 /*
Li Zefan6c282eb2012-06-11 16:03:35 +08001061 * we hit a real extent, if it is big or the next extent is not a
1062 * real extent, don't bother defragging it
Chris Mason940100a2010-03-10 10:52:59 -05001063 */
Andrew Mahonea43a2112012-06-19 21:08:32 -04001064 if (!compress && (*last_len == 0 || *last_len >= thresh) &&
Li Zefan6c282eb2012-06-11 16:03:35 +08001065 (em->len >= thresh || !next_mergeable))
Chris Mason940100a2010-03-10 10:52:59 -05001066 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -04001067out:
Chris Mason940100a2010-03-10 10:52:59 -05001068 /*
1069 * last_len ends up being a counter of how many bytes we've defragged.
1070 * every time we choose not to defrag an extent, we reset *last_len
1071 * so that the next tiny extent will force a defrag.
1072 *
1073 * The end result of this is that tiny extents before a single big
1074 * extent will force at least part of that big extent to be defragged.
1075 */
1076 if (ret) {
Chris Mason940100a2010-03-10 10:52:59 -05001077 *defrag_end = extent_map_end(em);
1078 } else {
1079 *last_len = 0;
1080 *skip = extent_map_end(em);
1081 *defrag_end = 0;
1082 }
1083
1084 free_extent_map(em);
1085 return ret;
1086}
1087
Chris Mason4cb53002011-05-24 15:35:30 -04001088/*
1089 * it doesn't do much good to defrag one or two pages
1090 * at a time. This pulls in a nice chunk of pages
1091 * to COW and defrag.
1092 *
1093 * It also makes sure the delalloc code has enough
1094 * dirty data to avoid making new small extents as part
1095 * of the defrag
1096 *
1097 * It's a good idea to start RA on this range
1098 * before calling this.
1099 */
1100static int cluster_pages_for_defrag(struct inode *inode,
1101 struct page **pages,
1102 unsigned long start_index,
Justin Maggardc41570c2014-01-21 11:18:29 -08001103 unsigned long num_pages)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001104{
Chris Mason4cb53002011-05-24 15:35:30 -04001105 unsigned long file_end;
1106 u64 isize = i_size_read(inode);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001107 u64 page_start;
1108 u64 page_end;
Liu Bo1f12bd02012-03-29 09:57:44 -04001109 u64 page_cnt;
Chris Mason4cb53002011-05-24 15:35:30 -04001110 int ret;
1111 int i;
1112 int i_done;
1113 struct btrfs_ordered_extent *ordered;
1114 struct extent_state *cached_state = NULL;
Miao Xie600a45e2012-02-16 15:01:24 +08001115 struct extent_io_tree *tree;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04001116 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
Chris Mason4cb53002011-05-24 15:35:30 -04001117
Chris Mason4cb53002011-05-24 15:35:30 -04001118 file_end = (isize - 1) >> PAGE_CACHE_SHIFT;
Liu Bo1f12bd02012-03-29 09:57:44 -04001119 if (!isize || start_index > file_end)
1120 return 0;
1121
1122 page_cnt = min_t(u64, (u64)num_pages, (u64)file_end - start_index + 1);
Chris Mason4cb53002011-05-24 15:35:30 -04001123
1124 ret = btrfs_delalloc_reserve_space(inode,
Liu Bo1f12bd02012-03-29 09:57:44 -04001125 page_cnt << PAGE_CACHE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001126 if (ret)
1127 return ret;
Chris Mason4cb53002011-05-24 15:35:30 -04001128 i_done = 0;
Miao Xie600a45e2012-02-16 15:01:24 +08001129 tree = &BTRFS_I(inode)->io_tree;
Chris Mason4cb53002011-05-24 15:35:30 -04001130
1131 /* step one, lock all the pages */
Liu Bo1f12bd02012-03-29 09:57:44 -04001132 for (i = 0; i < page_cnt; i++) {
Chris Mason4cb53002011-05-24 15:35:30 -04001133 struct page *page;
Miao Xie600a45e2012-02-16 15:01:24 +08001134again:
Josef Bacika94733d2011-07-11 10:47:06 -04001135 page = find_or_create_page(inode->i_mapping,
Miao Xie600a45e2012-02-16 15:01:24 +08001136 start_index + i, mask);
Chris Mason4cb53002011-05-24 15:35:30 -04001137 if (!page)
1138 break;
1139
Miao Xie600a45e2012-02-16 15:01:24 +08001140 page_start = page_offset(page);
1141 page_end = page_start + PAGE_CACHE_SIZE - 1;
1142 while (1) {
Filipe Manana308d9802014-03-11 13:56:15 +00001143 lock_extent_bits(tree, page_start, page_end,
1144 0, &cached_state);
Miao Xie600a45e2012-02-16 15:01:24 +08001145 ordered = btrfs_lookup_ordered_extent(inode,
1146 page_start);
Filipe Manana308d9802014-03-11 13:56:15 +00001147 unlock_extent_cached(tree, page_start, page_end,
1148 &cached_state, GFP_NOFS);
Miao Xie600a45e2012-02-16 15:01:24 +08001149 if (!ordered)
1150 break;
1151
1152 unlock_page(page);
1153 btrfs_start_ordered_extent(inode, ordered, 1);
1154 btrfs_put_ordered_extent(ordered);
1155 lock_page(page);
Liu Bo1f12bd02012-03-29 09:57:44 -04001156 /*
1157 * we unlocked the page above, so we need check if
1158 * it was released or not.
1159 */
1160 if (page->mapping != inode->i_mapping) {
1161 unlock_page(page);
1162 page_cache_release(page);
1163 goto again;
1164 }
Miao Xie600a45e2012-02-16 15:01:24 +08001165 }
1166
Chris Mason4cb53002011-05-24 15:35:30 -04001167 if (!PageUptodate(page)) {
1168 btrfs_readpage(NULL, page);
1169 lock_page(page);
1170 if (!PageUptodate(page)) {
1171 unlock_page(page);
1172 page_cache_release(page);
1173 ret = -EIO;
1174 break;
1175 }
1176 }
Miao Xie600a45e2012-02-16 15:01:24 +08001177
Miao Xie600a45e2012-02-16 15:01:24 +08001178 if (page->mapping != inode->i_mapping) {
1179 unlock_page(page);
1180 page_cache_release(page);
1181 goto again;
1182 }
1183
Chris Mason4cb53002011-05-24 15:35:30 -04001184 pages[i] = page;
1185 i_done++;
1186 }
1187 if (!i_done || ret)
1188 goto out;
1189
1190 if (!(inode->i_sb->s_flags & MS_ACTIVE))
1191 goto out;
1192
1193 /*
1194 * so now we have a nice long stream of locked
1195 * and up to date pages, lets wait on them
1196 */
1197 for (i = 0; i < i_done; i++)
1198 wait_on_page_writeback(pages[i]);
1199
1200 page_start = page_offset(pages[0]);
1201 page_end = page_offset(pages[i_done - 1]) + PAGE_CACHE_SIZE;
1202
1203 lock_extent_bits(&BTRFS_I(inode)->io_tree,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001204 page_start, page_end - 1, 0, &cached_state);
Chris Mason4cb53002011-05-24 15:35:30 -04001205 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start,
1206 page_end - 1, EXTENT_DIRTY | EXTENT_DELALLOC |
Liu Bo9e8a4a82012-09-05 19:10:51 -06001207 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, 0, 0,
1208 &cached_state, GFP_NOFS);
Chris Mason4cb53002011-05-24 15:35:30 -04001209
Liu Bo1f12bd02012-03-29 09:57:44 -04001210 if (i_done != page_cnt) {
Josef Bacik9e0baf62011-07-15 15:16:44 +00001211 spin_lock(&BTRFS_I(inode)->lock);
1212 BTRFS_I(inode)->outstanding_extents++;
1213 spin_unlock(&BTRFS_I(inode)->lock);
Chris Mason4cb53002011-05-24 15:35:30 -04001214 btrfs_delalloc_release_space(inode,
Liu Bo1f12bd02012-03-29 09:57:44 -04001215 (page_cnt - i_done) << PAGE_CACHE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001216 }
1217
1218
Liu Bo9e8a4a82012-09-05 19:10:51 -06001219 set_extent_defrag(&BTRFS_I(inode)->io_tree, page_start, page_end - 1,
1220 &cached_state, GFP_NOFS);
Chris Mason4cb53002011-05-24 15:35:30 -04001221
1222 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
1223 page_start, page_end - 1, &cached_state,
1224 GFP_NOFS);
1225
1226 for (i = 0; i < i_done; i++) {
1227 clear_page_dirty_for_io(pages[i]);
1228 ClearPageChecked(pages[i]);
1229 set_page_extent_mapped(pages[i]);
1230 set_page_dirty(pages[i]);
1231 unlock_page(pages[i]);
1232 page_cache_release(pages[i]);
1233 }
1234 return i_done;
1235out:
1236 for (i = 0; i < i_done; i++) {
1237 unlock_page(pages[i]);
1238 page_cache_release(pages[i]);
1239 }
Liu Bo1f12bd02012-03-29 09:57:44 -04001240 btrfs_delalloc_release_space(inode, page_cnt << PAGE_CACHE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001241 return ret;
1242
1243}
1244
1245int btrfs_defrag_file(struct inode *inode, struct file *file,
1246 struct btrfs_ioctl_defrag_range_args *range,
1247 u64 newer_than, unsigned long max_to_defrag)
1248{
1249 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason4cb53002011-05-24 15:35:30 -04001250 struct file_ra_state *ra = NULL;
1251 unsigned long last_index;
Li Zefan151a31b2011-09-02 15:56:39 +08001252 u64 isize = i_size_read(inode);
Chris Mason940100a2010-03-10 10:52:59 -05001253 u64 last_len = 0;
1254 u64 skip = 0;
1255 u64 defrag_end = 0;
Chris Mason4cb53002011-05-24 15:35:30 -04001256 u64 newer_off = range->start;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001257 unsigned long i;
Li Zefan008873e2011-09-02 15:57:07 +08001258 unsigned long ra_index = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001259 int ret;
Chris Mason4cb53002011-05-24 15:35:30 -04001260 int defrag_count = 0;
Li Zefan1a419d82010-10-25 15:12:50 +08001261 int compress_type = BTRFS_COMPRESS_ZLIB;
David Sterbaaab110a2014-07-29 17:32:10 +02001262 u32 extent_thresh = range->extent_thresh;
Justin Maggardc41570c2014-01-21 11:18:29 -08001263 unsigned long max_cluster = (256 * 1024) >> PAGE_CACHE_SHIFT;
1264 unsigned long cluster = max_cluster;
Chris Mason4cb53002011-05-24 15:35:30 -04001265 u64 new_align = ~((u64)128 * 1024 - 1);
1266 struct page **pages = NULL;
1267
Liu Bo0abd5b12013-04-16 09:20:28 +00001268 if (isize == 0)
1269 return 0;
1270
1271 if (range->start >= isize)
1272 return -EINVAL;
Li Zefan1a419d82010-10-25 15:12:50 +08001273
1274 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS) {
1275 if (range->compress_type > BTRFS_COMPRESS_TYPES)
1276 return -EINVAL;
1277 if (range->compress_type)
1278 compress_type = range->compress_type;
1279 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001280
Liu Bo0abd5b12013-04-16 09:20:28 +00001281 if (extent_thresh == 0)
1282 extent_thresh = 256 * 1024;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001283
Chris Mason4cb53002011-05-24 15:35:30 -04001284 /*
1285 * if we were not given a file, allocate a readahead
1286 * context
1287 */
1288 if (!file) {
1289 ra = kzalloc(sizeof(*ra), GFP_NOFS);
1290 if (!ra)
1291 return -ENOMEM;
1292 file_ra_state_init(ra, inode->i_mapping);
1293 } else {
1294 ra = &file->f_ra;
1295 }
1296
Dulshani Gunawardhanad9b0d9b2013-10-31 10:32:18 +05301297 pages = kmalloc_array(max_cluster, sizeof(struct page *),
Chris Mason4cb53002011-05-24 15:35:30 -04001298 GFP_NOFS);
1299 if (!pages) {
1300 ret = -ENOMEM;
1301 goto out_ra;
1302 }
1303
1304 /* find the last page to defrag */
Chris Mason1e701a32010-03-11 09:42:04 -05001305 if (range->start + range->len > range->start) {
Li Zefan151a31b2011-09-02 15:56:39 +08001306 last_index = min_t(u64, isize - 1,
Chris Mason1e701a32010-03-11 09:42:04 -05001307 range->start + range->len - 1) >> PAGE_CACHE_SHIFT;
1308 } else {
Li Zefan151a31b2011-09-02 15:56:39 +08001309 last_index = (isize - 1) >> PAGE_CACHE_SHIFT;
Chris Mason1e701a32010-03-11 09:42:04 -05001310 }
1311
Chris Mason4cb53002011-05-24 15:35:30 -04001312 if (newer_than) {
1313 ret = find_new_extents(root, inode, newer_than,
1314 &newer_off, 64 * 1024);
1315 if (!ret) {
1316 range->start = newer_off;
1317 /*
1318 * we always align our defrag to help keep
1319 * the extents in the file evenly spaced
1320 */
1321 i = (newer_off & new_align) >> PAGE_CACHE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001322 } else
1323 goto out_ra;
1324 } else {
1325 i = range->start >> PAGE_CACHE_SHIFT;
1326 }
1327 if (!max_to_defrag)
Liu Bo7ec31b52012-01-26 15:01:12 -05001328 max_to_defrag = last_index + 1;
Chris Mason4cb53002011-05-24 15:35:30 -04001329
Li Zefan2a0f7f52011-10-10 15:43:34 -04001330 /*
1331 * make writeback starts from i, so the defrag range can be
1332 * written sequentially.
1333 */
1334 if (i < inode->i_mapping->writeback_index)
1335 inode->i_mapping->writeback_index = i;
1336
Chris Masonf7f43cc2011-10-11 11:41:40 -04001337 while (i <= last_index && defrag_count < max_to_defrag &&
David Sterbaed6078f2014-06-05 01:59:57 +02001338 (i < DIV_ROUND_UP(i_size_read(inode), PAGE_CACHE_SIZE))) {
Chris Mason4cb53002011-05-24 15:35:30 -04001339 /*
1340 * make sure we stop running if someone unmounts
1341 * the FS
1342 */
1343 if (!(inode->i_sb->s_flags & MS_ACTIVE))
1344 break;
1345
David Sterba210549e2013-02-09 23:38:06 +00001346 if (btrfs_defrag_cancelled(root->fs_info)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05001347 printk(KERN_DEBUG "BTRFS: defrag_file cancelled\n");
David Sterba210549e2013-02-09 23:38:06 +00001348 ret = -EAGAIN;
1349 break;
1350 }
1351
Liu Bo66c26892012-03-29 09:57:45 -04001352 if (!should_defrag_range(inode, (u64)i << PAGE_CACHE_SHIFT,
Li Zefan6c282eb2012-06-11 16:03:35 +08001353 extent_thresh, &last_len, &skip,
Andrew Mahonea43a2112012-06-19 21:08:32 -04001354 &defrag_end, range->flags &
1355 BTRFS_DEFRAG_RANGE_COMPRESS)) {
Chris Mason940100a2010-03-10 10:52:59 -05001356 unsigned long next;
1357 /*
1358 * the should_defrag function tells us how much to skip
1359 * bump our counter by the suggested amount
1360 */
David Sterbaed6078f2014-06-05 01:59:57 +02001361 next = DIV_ROUND_UP(skip, PAGE_CACHE_SIZE);
Chris Mason940100a2010-03-10 10:52:59 -05001362 i = max(i + 1, next);
1363 continue;
1364 }
Li Zefan008873e2011-09-02 15:57:07 +08001365
1366 if (!newer_than) {
1367 cluster = (PAGE_CACHE_ALIGN(defrag_end) >>
1368 PAGE_CACHE_SHIFT) - i;
1369 cluster = min(cluster, max_cluster);
1370 } else {
1371 cluster = max_cluster;
1372 }
1373
Li Zefan008873e2011-09-02 15:57:07 +08001374 if (i + cluster > ra_index) {
1375 ra_index = max(i, ra_index);
1376 btrfs_force_ra(inode->i_mapping, ra, file, ra_index,
1377 cluster);
1378 ra_index += max_cluster;
1379 }
Chris Mason940100a2010-03-10 10:52:59 -05001380
Liu Boecb8bea2012-03-29 09:57:44 -04001381 mutex_lock(&inode->i_mutex);
Filipe David Borba Manana633085c2013-08-16 15:23:33 +01001382 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)
1383 BTRFS_I(inode)->force_compress = compress_type;
Li Zefan008873e2011-09-02 15:57:07 +08001384 ret = cluster_pages_for_defrag(inode, pages, i, cluster);
Liu Boecb8bea2012-03-29 09:57:44 -04001385 if (ret < 0) {
1386 mutex_unlock(&inode->i_mutex);
Chris Mason4cb53002011-05-24 15:35:30 -04001387 goto out_ra;
Liu Boecb8bea2012-03-29 09:57:44 -04001388 }
Chris Mason940100a2010-03-10 10:52:59 -05001389
Chris Mason4cb53002011-05-24 15:35:30 -04001390 defrag_count += ret;
Namjae Jeond0e1d662012-12-11 16:00:21 -08001391 balance_dirty_pages_ratelimited(inode->i_mapping);
Liu Boecb8bea2012-03-29 09:57:44 -04001392 mutex_unlock(&inode->i_mutex);
Chris Mason4cb53002011-05-24 15:35:30 -04001393
1394 if (newer_than) {
1395 if (newer_off == (u64)-1)
1396 break;
1397
Liu Boe1f041e2012-03-29 09:57:45 -04001398 if (ret > 0)
1399 i += ret;
1400
Chris Mason4cb53002011-05-24 15:35:30 -04001401 newer_off = max(newer_off + 1,
1402 (u64)i << PAGE_CACHE_SHIFT);
1403
1404 ret = find_new_extents(root, inode,
1405 newer_than, &newer_off,
1406 64 * 1024);
1407 if (!ret) {
1408 range->start = newer_off;
1409 i = (newer_off & new_align) >> PAGE_CACHE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001410 } else {
1411 break;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001412 }
Chris Mason4cb53002011-05-24 15:35:30 -04001413 } else {
Li Zefan008873e2011-09-02 15:57:07 +08001414 if (ret > 0) {
Li Zefancbcc8322011-09-02 15:56:25 +08001415 i += ret;
Li Zefan008873e2011-09-02 15:57:07 +08001416 last_len += ret << PAGE_CACHE_SHIFT;
1417 } else {
Li Zefancbcc8322011-09-02 15:56:25 +08001418 i++;
Li Zefan008873e2011-09-02 15:57:07 +08001419 last_len = 0;
1420 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001421 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001422 }
1423
Filipe Mananadec8ef92014-03-01 10:55:54 +00001424 if ((range->flags & BTRFS_DEFRAG_RANGE_START_IO)) {
Chris Mason1e701a32010-03-11 09:42:04 -05001425 filemap_flush(inode->i_mapping);
Filipe Mananadec8ef92014-03-01 10:55:54 +00001426 if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
1427 &BTRFS_I(inode)->runtime_flags))
1428 filemap_flush(inode->i_mapping);
1429 }
Chris Mason1e701a32010-03-11 09:42:04 -05001430
1431 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
1432 /* the filemap_flush will queue IO into the worker threads, but
1433 * we have to make sure the IO is actually started and that
1434 * ordered extents get created before we return
1435 */
1436 atomic_inc(&root->fs_info->async_submit_draining);
1437 while (atomic_read(&root->fs_info->nr_async_submits) ||
1438 atomic_read(&root->fs_info->async_delalloc_pages)) {
1439 wait_event(root->fs_info->async_submit_wait,
1440 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
1441 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
1442 }
1443 atomic_dec(&root->fs_info->async_submit_draining);
Chris Mason1e701a32010-03-11 09:42:04 -05001444 }
1445
Li Zefan1a419d82010-10-25 15:12:50 +08001446 if (range->compress_type == BTRFS_COMPRESS_LZO) {
Mitch Harder2b0ce2c2012-07-24 11:58:43 -06001447 btrfs_set_fs_incompat(root->fs_info, COMPRESS_LZO);
Li Zefan1a419d82010-10-25 15:12:50 +08001448 }
1449
Diego Calleja60ccf822011-09-01 16:33:57 +02001450 ret = defrag_count;
Chris Mason940100a2010-03-10 10:52:59 -05001451
Chris Mason4cb53002011-05-24 15:35:30 -04001452out_ra:
Filipe David Borba Manana633085c2013-08-16 15:23:33 +01001453 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS) {
1454 mutex_lock(&inode->i_mutex);
1455 BTRFS_I(inode)->force_compress = BTRFS_COMPRESS_NONE;
1456 mutex_unlock(&inode->i_mutex);
1457 }
Chris Mason4cb53002011-05-24 15:35:30 -04001458 if (!file)
1459 kfree(ra);
1460 kfree(pages);
Chris Mason940100a2010-03-10 10:52:59 -05001461 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001462}
1463
Miao Xie198605a2012-11-26 08:43:45 +00001464static noinline int btrfs_ioctl_resize(struct file *file,
Yan, Zheng76dda932009-09-21 16:00:26 -04001465 void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001466{
1467 u64 new_size;
1468 u64 old_size;
1469 u64 devid = 1;
Al Viro496ad9a2013-01-23 17:07:38 -05001470 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001471 struct btrfs_ioctl_vol_args *vol_args;
1472 struct btrfs_trans_handle *trans;
1473 struct btrfs_device *device = NULL;
1474 char *sizestr;
Gui Hecheng9a40f122014-03-31 18:03:25 +08001475 char *retptr;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001476 char *devstr = NULL;
1477 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001478 int mod = 0;
1479
Chris Masone441d542009-01-05 16:57:23 -05001480 if (!capable(CAP_SYS_ADMIN))
1481 return -EPERM;
1482
Miao Xie198605a2012-11-26 08:43:45 +00001483 ret = mnt_want_write_file(file);
1484 if (ret)
1485 return ret;
1486
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01001487 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
1488 1)) {
Miao Xie97547672012-12-21 10:38:50 +00001489 mnt_drop_write_file(file);
Anand Jaine57138b2013-08-21 11:44:48 +08001490 return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001491 }
1492
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01001493 mutex_lock(&root->fs_info->volume_mutex);
Li Zefandae7b662009-04-08 15:06:54 +08001494 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001495 if (IS_ERR(vol_args)) {
1496 ret = PTR_ERR(vol_args);
1497 goto out;
1498 }
Mark Fasheh5516e592008-07-24 12:20:14 -04001499
1500 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001501
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001502 sizestr = vol_args->name;
1503 devstr = strchr(sizestr, ':');
1504 if (devstr) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001505 sizestr = devstr + 1;
1506 *devstr = '\0';
1507 devstr = vol_args->name;
ZhangZhen58dfae62014-05-13 16:36:08 +08001508 ret = kstrtoull(devstr, 10, &devid);
1509 if (ret)
1510 goto out_free;
Miao Xiedfd79822012-12-21 09:21:30 +00001511 if (!devid) {
1512 ret = -EINVAL;
1513 goto out_free;
1514 }
Frank Holtonefe120a2013-12-20 11:37:06 -05001515 btrfs_info(root->fs_info, "resizing devid %llu", devid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001516 }
Miao Xiedba60f32012-12-21 09:19:51 +00001517
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01001518 device = btrfs_find_device(root->fs_info, devid, NULL, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001519 if (!device) {
Frank Holtonefe120a2013-12-20 11:37:06 -05001520 btrfs_info(root->fs_info, "resizer unable to find device %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001521 devid);
Miao Xiedfd79822012-12-21 09:21:30 +00001522 ret = -ENODEV;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001523 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001524 }
Miao Xiedba60f32012-12-21 09:19:51 +00001525
1526 if (!device->writeable) {
Frank Holtonefe120a2013-12-20 11:37:06 -05001527 btrfs_info(root->fs_info,
1528 "resizer unable to apply on readonly device %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001529 devid);
Miao Xiedfd79822012-12-21 09:21:30 +00001530 ret = -EPERM;
Liu Bo4e42ae12012-06-14 02:23:19 -06001531 goto out_free;
1532 }
1533
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001534 if (!strcmp(sizestr, "max"))
1535 new_size = device->bdev->bd_inode->i_size;
1536 else {
1537 if (sizestr[0] == '-') {
1538 mod = -1;
1539 sizestr++;
1540 } else if (sizestr[0] == '+') {
1541 mod = 1;
1542 sizestr++;
1543 }
Gui Hecheng9a40f122014-03-31 18:03:25 +08001544 new_size = memparse(sizestr, &retptr);
1545 if (*retptr != '\0' || new_size == 0) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001546 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001547 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001548 }
1549 }
1550
Stefan Behrens63a212a2012-11-05 18:29:28 +01001551 if (device->is_tgtdev_for_dev_replace) {
Miao Xiedfd79822012-12-21 09:21:30 +00001552 ret = -EPERM;
Stefan Behrens63a212a2012-11-05 18:29:28 +01001553 goto out_free;
1554 }
1555
Miao Xie7cc8e582014-09-03 21:35:38 +08001556 old_size = btrfs_device_get_total_bytes(device);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001557
1558 if (mod < 0) {
1559 if (new_size > old_size) {
1560 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001561 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001562 }
1563 new_size = old_size - new_size;
1564 } else if (mod > 0) {
Wenliang Faneb8052e2013-12-20 15:28:56 +08001565 if (new_size > ULLONG_MAX - old_size) {
Gui Hecheng902c68a2014-05-29 09:19:58 +08001566 ret = -ERANGE;
Wenliang Faneb8052e2013-12-20 15:28:56 +08001567 goto out_free;
1568 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001569 new_size = old_size + new_size;
1570 }
1571
1572 if (new_size < 256 * 1024 * 1024) {
1573 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001574 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001575 }
1576 if (new_size > device->bdev->bd_inode->i_size) {
1577 ret = -EFBIG;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001578 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001579 }
1580
1581 do_div(new_size, root->sectorsize);
1582 new_size *= root->sectorsize;
1583
Frank Holtonefe120a2013-12-20 11:37:06 -05001584 printk_in_rcu(KERN_INFO "BTRFS: new size for %s is %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001585 rcu_str_deref(device->name), new_size);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001586
1587 if (new_size > old_size) {
Yan, Zhenga22285a2010-05-16 10:48:46 -04001588 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001589 if (IS_ERR(trans)) {
1590 ret = PTR_ERR(trans);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001591 goto out_free;
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001592 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001593 ret = btrfs_grow_device(trans, device, new_size);
1594 btrfs_commit_transaction(trans, root);
Mike Fleetwoodece7d202011-11-18 18:55:01 +00001595 } else if (new_size < old_size) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001596 ret = btrfs_shrink_device(device, new_size);
jeff.liu0253f402012-10-27 12:06:39 +00001597 } /* equal, nothing need to do */
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001598
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001599out_free:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001600 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001601out:
1602 mutex_unlock(&root->fs_info->volume_mutex);
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01001603 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
Ilya Dryomov18f39c42013-01-20 15:57:57 +02001604 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001605 return ret;
1606}
1607
Sage Weil72fd0322010-10-29 15:41:32 -04001608static noinline int btrfs_ioctl_snap_create_transid(struct file *file,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001609 char *name, unsigned long fd, int subvol,
1610 u64 *transid, bool readonly,
Miao Xie8696c532013-02-07 06:02:44 +00001611 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001612{
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001613 int namelen;
Chris Mason3de45862008-11-17 21:02:50 -05001614 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001615
Liu Boa874a632012-06-29 03:58:46 -06001616 ret = mnt_want_write_file(file);
1617 if (ret)
1618 goto out;
1619
Sage Weil72fd0322010-10-29 15:41:32 -04001620 namelen = strlen(name);
1621 if (strchr(name, '/')) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001622 ret = -EINVAL;
Liu Boa874a632012-06-29 03:58:46 -06001623 goto out_drop_write;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001624 }
1625
Chris Mason16780ca2012-02-20 22:14:55 -05001626 if (name[0] == '.' &&
1627 (namelen == 1 || (name[1] == '.' && namelen == 2))) {
1628 ret = -EEXIST;
Liu Boa874a632012-06-29 03:58:46 -06001629 goto out_drop_write;
Chris Mason16780ca2012-02-20 22:14:55 -05001630 }
1631
Chris Mason3de45862008-11-17 21:02:50 -05001632 if (subvol) {
Sage Weil72fd0322010-10-29 15:41:32 -04001633 ret = btrfs_mksubvol(&file->f_path, name, namelen,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001634 NULL, transid, readonly, inherit);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001635 } else {
Al Viro2903ff02012-08-28 12:52:22 -04001636 struct fd src = fdget(fd);
Chris Mason3de45862008-11-17 21:02:50 -05001637 struct inode *src_inode;
Al Viro2903ff02012-08-28 12:52:22 -04001638 if (!src.file) {
Chris Mason3de45862008-11-17 21:02:50 -05001639 ret = -EINVAL;
Liu Boa874a632012-06-29 03:58:46 -06001640 goto out_drop_write;
Chris Mason3de45862008-11-17 21:02:50 -05001641 }
1642
Al Viro496ad9a2013-01-23 17:07:38 -05001643 src_inode = file_inode(src.file);
1644 if (src_inode->i_sb != file_inode(file)->i_sb) {
Frank Holtonefe120a2013-12-20 11:37:06 -05001645 btrfs_info(BTRFS_I(src_inode)->root->fs_info,
1646 "Snapshot src from another FS");
Kusanagi Kouichi23ad5b12014-01-30 16:32:02 +09001647 ret = -EXDEV;
David Sterbad0242062014-01-15 18:15:52 +01001648 } else if (!inode_owner_or_capable(src_inode)) {
1649 /*
1650 * Subvolume creation is not restricted, but snapshots
1651 * are limited to own subvolumes only
1652 */
1653 ret = -EPERM;
Al Viroecd18812012-08-26 21:20:24 -04001654 } else {
1655 ret = btrfs_mksubvol(&file->f_path, name, namelen,
1656 BTRFS_I(src_inode)->root,
1657 transid, readonly, inherit);
Chris Mason3de45862008-11-17 21:02:50 -05001658 }
Al Viro2903ff02012-08-28 12:52:22 -04001659 fdput(src);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001660 }
Liu Boa874a632012-06-29 03:58:46 -06001661out_drop_write:
1662 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001663out:
Sage Weil72fd0322010-10-29 15:41:32 -04001664 return ret;
1665}
1666
1667static noinline int btrfs_ioctl_snap_create(struct file *file,
Li Zefanfa0d2b92010-12-20 15:53:28 +08001668 void __user *arg, int subvol)
Sage Weil72fd0322010-10-29 15:41:32 -04001669{
Li Zefanfa0d2b92010-12-20 15:53:28 +08001670 struct btrfs_ioctl_vol_args *vol_args;
Sage Weil72fd0322010-10-29 15:41:32 -04001671 int ret;
1672
Li Zefanfa0d2b92010-12-20 15:53:28 +08001673 vol_args = memdup_user(arg, sizeof(*vol_args));
1674 if (IS_ERR(vol_args))
1675 return PTR_ERR(vol_args);
1676 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Sage Weil72fd0322010-10-29 15:41:32 -04001677
Li Zefanfa0d2b92010-12-20 15:53:28 +08001678 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
Li Zefanb83cc962010-12-20 16:04:08 +08001679 vol_args->fd, subvol,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001680 NULL, false, NULL);
Li Zefanfdfb1e42010-12-10 06:41:56 +00001681
Li Zefanfa0d2b92010-12-20 15:53:28 +08001682 kfree(vol_args);
1683 return ret;
1684}
Li Zefanfdfb1e42010-12-10 06:41:56 +00001685
Li Zefanfa0d2b92010-12-20 15:53:28 +08001686static noinline int btrfs_ioctl_snap_create_v2(struct file *file,
1687 void __user *arg, int subvol)
1688{
1689 struct btrfs_ioctl_vol_args_v2 *vol_args;
1690 int ret;
1691 u64 transid = 0;
1692 u64 *ptr = NULL;
Li Zefanb83cc962010-12-20 16:04:08 +08001693 bool readonly = false;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001694 struct btrfs_qgroup_inherit *inherit = NULL;
Li Zefanfdfb1e42010-12-10 06:41:56 +00001695
Li Zefanfa0d2b92010-12-20 15:53:28 +08001696 vol_args = memdup_user(arg, sizeof(*vol_args));
1697 if (IS_ERR(vol_args))
1698 return PTR_ERR(vol_args);
1699 vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
Sage Weil75eaa0e2010-12-10 00:36:28 +00001700
Li Zefanb83cc962010-12-20 16:04:08 +08001701 if (vol_args->flags &
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001702 ~(BTRFS_SUBVOL_CREATE_ASYNC | BTRFS_SUBVOL_RDONLY |
1703 BTRFS_SUBVOL_QGROUP_INHERIT)) {
Li Zefanb83cc962010-12-20 16:04:08 +08001704 ret = -EOPNOTSUPP;
Dan Carpenterc47ca322014-09-04 14:09:15 +03001705 goto free_args;
Sage Weil72fd0322010-10-29 15:41:32 -04001706 }
Li Zefanfa0d2b92010-12-20 15:53:28 +08001707
1708 if (vol_args->flags & BTRFS_SUBVOL_CREATE_ASYNC)
1709 ptr = &transid;
Li Zefanb83cc962010-12-20 16:04:08 +08001710 if (vol_args->flags & BTRFS_SUBVOL_RDONLY)
1711 readonly = true;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001712 if (vol_args->flags & BTRFS_SUBVOL_QGROUP_INHERIT) {
1713 if (vol_args->size > PAGE_CACHE_SIZE) {
1714 ret = -EINVAL;
Dan Carpenterc47ca322014-09-04 14:09:15 +03001715 goto free_args;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001716 }
1717 inherit = memdup_user(vol_args->qgroup_inherit, vol_args->size);
1718 if (IS_ERR(inherit)) {
1719 ret = PTR_ERR(inherit);
Dan Carpenterc47ca322014-09-04 14:09:15 +03001720 goto free_args;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001721 }
1722 }
Li Zefanfa0d2b92010-12-20 15:53:28 +08001723
1724 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001725 vol_args->fd, subvol, ptr,
Miao Xie8696c532013-02-07 06:02:44 +00001726 readonly, inherit);
Dan Carpenterc47ca322014-09-04 14:09:15 +03001727 if (ret)
1728 goto free_inherit;
Li Zefanfa0d2b92010-12-20 15:53:28 +08001729
Dan Carpenterc47ca322014-09-04 14:09:15 +03001730 if (ptr && copy_to_user(arg +
1731 offsetof(struct btrfs_ioctl_vol_args_v2,
1732 transid),
1733 ptr, sizeof(*ptr)))
Li Zefanfa0d2b92010-12-20 15:53:28 +08001734 ret = -EFAULT;
Dan Carpenterc47ca322014-09-04 14:09:15 +03001735
1736free_inherit:
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001737 kfree(inherit);
Dan Carpenterc47ca322014-09-04 14:09:15 +03001738free_args:
1739 kfree(vol_args);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001740 return ret;
1741}
1742
Li Zefan0caa1022010-12-20 16:30:25 +08001743static noinline int btrfs_ioctl_subvol_getflags(struct file *file,
1744 void __user *arg)
1745{
Al Viro496ad9a2013-01-23 17:07:38 -05001746 struct inode *inode = file_inode(file);
Li Zefan0caa1022010-12-20 16:30:25 +08001747 struct btrfs_root *root = BTRFS_I(inode)->root;
1748 int ret = 0;
1749 u64 flags = 0;
1750
Li Zefan33345d012011-04-20 10:31:50 +08001751 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID)
Li Zefan0caa1022010-12-20 16:30:25 +08001752 return -EINVAL;
1753
1754 down_read(&root->fs_info->subvol_sem);
1755 if (btrfs_root_readonly(root))
1756 flags |= BTRFS_SUBVOL_RDONLY;
1757 up_read(&root->fs_info->subvol_sem);
1758
1759 if (copy_to_user(arg, &flags, sizeof(flags)))
1760 ret = -EFAULT;
1761
1762 return ret;
1763}
1764
1765static noinline int btrfs_ioctl_subvol_setflags(struct file *file,
1766 void __user *arg)
1767{
Al Viro496ad9a2013-01-23 17:07:38 -05001768 struct inode *inode = file_inode(file);
Li Zefan0caa1022010-12-20 16:30:25 +08001769 struct btrfs_root *root = BTRFS_I(inode)->root;
1770 struct btrfs_trans_handle *trans;
1771 u64 root_flags;
1772 u64 flags;
1773 int ret = 0;
1774
David Sterbabd60ea02014-01-16 15:50:22 +01001775 if (!inode_owner_or_capable(inode))
1776 return -EPERM;
1777
Liu Bob9ca0662012-06-29 03:58:49 -06001778 ret = mnt_want_write_file(file);
1779 if (ret)
1780 goto out;
Li Zefan0caa1022010-12-20 16:30:25 +08001781
Liu Bob9ca0662012-06-29 03:58:49 -06001782 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
1783 ret = -EINVAL;
1784 goto out_drop_write;
1785 }
Li Zefan0caa1022010-12-20 16:30:25 +08001786
Liu Bob9ca0662012-06-29 03:58:49 -06001787 if (copy_from_user(&flags, arg, sizeof(flags))) {
1788 ret = -EFAULT;
1789 goto out_drop_write;
1790 }
Li Zefan0caa1022010-12-20 16:30:25 +08001791
Liu Bob9ca0662012-06-29 03:58:49 -06001792 if (flags & BTRFS_SUBVOL_CREATE_ASYNC) {
1793 ret = -EINVAL;
1794 goto out_drop_write;
1795 }
Li Zefan0caa1022010-12-20 16:30:25 +08001796
Liu Bob9ca0662012-06-29 03:58:49 -06001797 if (flags & ~BTRFS_SUBVOL_RDONLY) {
1798 ret = -EOPNOTSUPP;
1799 goto out_drop_write;
1800 }
Li Zefan0caa1022010-12-20 16:30:25 +08001801
1802 down_write(&root->fs_info->subvol_sem);
1803
1804 /* nothing to do */
1805 if (!!(flags & BTRFS_SUBVOL_RDONLY) == btrfs_root_readonly(root))
Liu Bob9ca0662012-06-29 03:58:49 -06001806 goto out_drop_sem;
Li Zefan0caa1022010-12-20 16:30:25 +08001807
1808 root_flags = btrfs_root_flags(&root->root_item);
David Sterba2c686532013-12-16 17:34:17 +01001809 if (flags & BTRFS_SUBVOL_RDONLY) {
Li Zefan0caa1022010-12-20 16:30:25 +08001810 btrfs_set_root_flags(&root->root_item,
1811 root_flags | BTRFS_ROOT_SUBVOL_RDONLY);
David Sterba2c686532013-12-16 17:34:17 +01001812 } else {
1813 /*
1814 * Block RO -> RW transition if this subvolume is involved in
1815 * send
1816 */
1817 spin_lock(&root->root_item_lock);
1818 if (root->send_in_progress == 0) {
1819 btrfs_set_root_flags(&root->root_item,
Li Zefan0caa1022010-12-20 16:30:25 +08001820 root_flags & ~BTRFS_ROOT_SUBVOL_RDONLY);
David Sterba2c686532013-12-16 17:34:17 +01001821 spin_unlock(&root->root_item_lock);
1822 } else {
1823 spin_unlock(&root->root_item_lock);
1824 btrfs_warn(root->fs_info,
1825 "Attempt to set subvolume %llu read-write during send",
1826 root->root_key.objectid);
1827 ret = -EPERM;
1828 goto out_drop_sem;
1829 }
1830 }
Li Zefan0caa1022010-12-20 16:30:25 +08001831
1832 trans = btrfs_start_transaction(root, 1);
1833 if (IS_ERR(trans)) {
1834 ret = PTR_ERR(trans);
1835 goto out_reset;
1836 }
1837
Li Zefanb4dc2b82011-02-16 06:06:34 +00001838 ret = btrfs_update_root(trans, root->fs_info->tree_root,
Li Zefan0caa1022010-12-20 16:30:25 +08001839 &root->root_key, &root->root_item);
1840
1841 btrfs_commit_transaction(trans, root);
1842out_reset:
1843 if (ret)
1844 btrfs_set_root_flags(&root->root_item, root_flags);
Liu Bob9ca0662012-06-29 03:58:49 -06001845out_drop_sem:
Li Zefan0caa1022010-12-20 16:30:25 +08001846 up_write(&root->fs_info->subvol_sem);
Liu Bob9ca0662012-06-29 03:58:49 -06001847out_drop_write:
1848 mnt_drop_write_file(file);
1849out:
Li Zefan0caa1022010-12-20 16:30:25 +08001850 return ret;
1851}
1852
Yan, Zheng76dda932009-09-21 16:00:26 -04001853/*
1854 * helper to check if the subvolume references other subvolumes
1855 */
1856static noinline int may_destroy_subvol(struct btrfs_root *root)
1857{
1858 struct btrfs_path *path;
Josef Bacik175a2b82013-08-12 15:36:44 -04001859 struct btrfs_dir_item *di;
Yan, Zheng76dda932009-09-21 16:00:26 -04001860 struct btrfs_key key;
Josef Bacik175a2b82013-08-12 15:36:44 -04001861 u64 dir_id;
Yan, Zheng76dda932009-09-21 16:00:26 -04001862 int ret;
1863
1864 path = btrfs_alloc_path();
1865 if (!path)
1866 return -ENOMEM;
1867
Josef Bacik175a2b82013-08-12 15:36:44 -04001868 /* Make sure this root isn't set as the default subvol */
1869 dir_id = btrfs_super_root_dir(root->fs_info->super_copy);
1870 di = btrfs_lookup_dir_item(NULL, root->fs_info->tree_root, path,
1871 dir_id, "default", 7, 0);
1872 if (di && !IS_ERR(di)) {
1873 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &key);
1874 if (key.objectid == root->root_key.objectid) {
Guangyu Sun72de6b52014-03-11 11:24:18 -07001875 ret = -EPERM;
1876 btrfs_err(root->fs_info, "deleting default subvolume "
1877 "%llu is not allowed", key.objectid);
Josef Bacik175a2b82013-08-12 15:36:44 -04001878 goto out;
1879 }
1880 btrfs_release_path(path);
1881 }
1882
Yan, Zheng76dda932009-09-21 16:00:26 -04001883 key.objectid = root->root_key.objectid;
1884 key.type = BTRFS_ROOT_REF_KEY;
1885 key.offset = (u64)-1;
1886
1887 ret = btrfs_search_slot(NULL, root->fs_info->tree_root,
1888 &key, path, 0, 0);
1889 if (ret < 0)
1890 goto out;
1891 BUG_ON(ret == 0);
1892
1893 ret = 0;
1894 if (path->slots[0] > 0) {
1895 path->slots[0]--;
1896 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1897 if (key.objectid == root->root_key.objectid &&
1898 key.type == BTRFS_ROOT_REF_KEY)
1899 ret = -ENOTEMPTY;
1900 }
1901out:
1902 btrfs_free_path(path);
1903 return ret;
1904}
1905
Chris Masonac8e9812010-02-28 15:39:26 -05001906static noinline int key_in_sk(struct btrfs_key *key,
1907 struct btrfs_ioctl_search_key *sk)
1908{
Chris Masonabc6e132010-03-18 12:10:08 -04001909 struct btrfs_key test;
1910 int ret;
1911
1912 test.objectid = sk->min_objectid;
1913 test.type = sk->min_type;
1914 test.offset = sk->min_offset;
1915
1916 ret = btrfs_comp_cpu_keys(key, &test);
1917 if (ret < 0)
Chris Masonac8e9812010-02-28 15:39:26 -05001918 return 0;
Chris Masonabc6e132010-03-18 12:10:08 -04001919
1920 test.objectid = sk->max_objectid;
1921 test.type = sk->max_type;
1922 test.offset = sk->max_offset;
1923
1924 ret = btrfs_comp_cpu_keys(key, &test);
1925 if (ret > 0)
Chris Masonac8e9812010-02-28 15:39:26 -05001926 return 0;
1927 return 1;
1928}
1929
1930static noinline int copy_to_sk(struct btrfs_root *root,
1931 struct btrfs_path *path,
1932 struct btrfs_key *key,
1933 struct btrfs_ioctl_search_key *sk,
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001934 size_t *buf_size,
Gerhard Heiftba346b32014-01-30 16:24:02 +01001935 char __user *ubuf,
Chris Masonac8e9812010-02-28 15:39:26 -05001936 unsigned long *sk_offset,
1937 int *num_found)
1938{
1939 u64 found_transid;
1940 struct extent_buffer *leaf;
1941 struct btrfs_ioctl_search_header sh;
1942 unsigned long item_off;
1943 unsigned long item_len;
1944 int nritems;
1945 int i;
1946 int slot;
Chris Masonac8e9812010-02-28 15:39:26 -05001947 int ret = 0;
1948
1949 leaf = path->nodes[0];
1950 slot = path->slots[0];
1951 nritems = btrfs_header_nritems(leaf);
1952
1953 if (btrfs_header_generation(leaf) > sk->max_transid) {
1954 i = nritems;
1955 goto advance_key;
1956 }
1957 found_transid = btrfs_header_generation(leaf);
1958
1959 for (i = slot; i < nritems; i++) {
1960 item_off = btrfs_item_ptr_offset(leaf, i);
1961 item_len = btrfs_item_size_nr(leaf, i);
1962
Gabriel de Perthuis03b71c62013-05-06 17:40:18 +00001963 btrfs_item_key_to_cpu(leaf, key, i);
1964 if (!key_in_sk(key, sk))
1965 continue;
1966
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001967 if (sizeof(sh) + item_len > *buf_size) {
Gerhard Heift8f5f6172014-01-30 16:23:59 +01001968 if (*num_found) {
1969 ret = 1;
1970 goto out;
1971 }
Chris Masonac8e9812010-02-28 15:39:26 -05001972
Gerhard Heift8f5f6172014-01-30 16:23:59 +01001973 /*
1974 * return one empty item back for v1, which does not
1975 * handle -EOVERFLOW
1976 */
1977
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001978 *buf_size = sizeof(sh) + item_len;
Chris Masonac8e9812010-02-28 15:39:26 -05001979 item_len = 0;
Gerhard Heift8f5f6172014-01-30 16:23:59 +01001980 ret = -EOVERFLOW;
1981 }
Chris Masonac8e9812010-02-28 15:39:26 -05001982
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001983 if (sizeof(sh) + item_len + *sk_offset > *buf_size) {
Chris Masonac8e9812010-02-28 15:39:26 -05001984 ret = 1;
Gerhard Heift25c9bc22014-01-30 16:23:57 +01001985 goto out;
Chris Masonac8e9812010-02-28 15:39:26 -05001986 }
1987
Chris Masonac8e9812010-02-28 15:39:26 -05001988 sh.objectid = key->objectid;
1989 sh.offset = key->offset;
1990 sh.type = key->type;
1991 sh.len = item_len;
1992 sh.transid = found_transid;
1993
1994 /* copy search result header */
Gerhard Heiftba346b32014-01-30 16:24:02 +01001995 if (copy_to_user(ubuf + *sk_offset, &sh, sizeof(sh))) {
1996 ret = -EFAULT;
1997 goto out;
1998 }
1999
Chris Masonac8e9812010-02-28 15:39:26 -05002000 *sk_offset += sizeof(sh);
2001
2002 if (item_len) {
Gerhard Heiftba346b32014-01-30 16:24:02 +01002003 char __user *up = ubuf + *sk_offset;
Chris Masonac8e9812010-02-28 15:39:26 -05002004 /* copy the item */
Gerhard Heiftba346b32014-01-30 16:24:02 +01002005 if (read_extent_buffer_to_user(leaf, up,
2006 item_off, item_len)) {
2007 ret = -EFAULT;
2008 goto out;
2009 }
2010
Chris Masonac8e9812010-02-28 15:39:26 -05002011 *sk_offset += item_len;
Chris Masonac8e9812010-02-28 15:39:26 -05002012 }
Hugo Millse2156862011-05-14 17:43:41 +00002013 (*num_found)++;
Chris Masonac8e9812010-02-28 15:39:26 -05002014
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002015 if (ret) /* -EOVERFLOW from above */
2016 goto out;
2017
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002018 if (*num_found >= sk->nr_items) {
2019 ret = 1;
2020 goto out;
2021 }
Chris Masonac8e9812010-02-28 15:39:26 -05002022 }
2023advance_key:
Chris Masonac8e9812010-02-28 15:39:26 -05002024 ret = 0;
Chris Masonabc6e132010-03-18 12:10:08 -04002025 if (key->offset < (u64)-1 && key->offset < sk->max_offset)
2026 key->offset++;
2027 else if (key->type < (u8)-1 && key->type < sk->max_type) {
2028 key->offset = 0;
2029 key->type++;
2030 } else if (key->objectid < (u64)-1 && key->objectid < sk->max_objectid) {
2031 key->offset = 0;
2032 key->type = 0;
2033 key->objectid++;
2034 } else
2035 ret = 1;
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002036out:
Gerhard Heiftba346b32014-01-30 16:24:02 +01002037 /*
2038 * 0: all items from this leaf copied, continue with next
2039 * 1: * more items can be copied, but unused buffer is too small
2040 * * all items were found
2041 * Either way, it will stops the loop which iterates to the next
2042 * leaf
2043 * -EOVERFLOW: item was to large for buffer
2044 * -EFAULT: could not copy extent buffer back to userspace
2045 */
Chris Masonac8e9812010-02-28 15:39:26 -05002046 return ret;
2047}
2048
2049static noinline int search_ioctl(struct inode *inode,
Gerhard Heift12544442014-01-30 16:23:58 +01002050 struct btrfs_ioctl_search_key *sk,
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002051 size_t *buf_size,
Gerhard Heiftba346b32014-01-30 16:24:02 +01002052 char __user *ubuf)
Chris Masonac8e9812010-02-28 15:39:26 -05002053{
2054 struct btrfs_root *root;
2055 struct btrfs_key key;
Chris Masonac8e9812010-02-28 15:39:26 -05002056 struct btrfs_path *path;
Chris Masonac8e9812010-02-28 15:39:26 -05002057 struct btrfs_fs_info *info = BTRFS_I(inode)->root->fs_info;
2058 int ret;
2059 int num_found = 0;
2060 unsigned long sk_offset = 0;
2061
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002062 if (*buf_size < sizeof(struct btrfs_ioctl_search_header)) {
2063 *buf_size = sizeof(struct btrfs_ioctl_search_header);
Gerhard Heift12544442014-01-30 16:23:58 +01002064 return -EOVERFLOW;
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002065 }
Gerhard Heift12544442014-01-30 16:23:58 +01002066
Chris Masonac8e9812010-02-28 15:39:26 -05002067 path = btrfs_alloc_path();
2068 if (!path)
2069 return -ENOMEM;
2070
2071 if (sk->tree_id == 0) {
2072 /* search the root of the inode that was passed */
2073 root = BTRFS_I(inode)->root;
2074 } else {
2075 key.objectid = sk->tree_id;
2076 key.type = BTRFS_ROOT_ITEM_KEY;
2077 key.offset = (u64)-1;
2078 root = btrfs_read_fs_root_no_name(info, &key);
2079 if (IS_ERR(root)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05002080 printk(KERN_ERR "BTRFS: could not find root %llu\n",
Chris Masonac8e9812010-02-28 15:39:26 -05002081 sk->tree_id);
2082 btrfs_free_path(path);
2083 return -ENOENT;
2084 }
2085 }
2086
2087 key.objectid = sk->min_objectid;
2088 key.type = sk->min_type;
2089 key.offset = sk->min_offset;
2090
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302091 while (1) {
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +01002092 ret = btrfs_search_forward(root, &key, path, sk->min_transid);
Chris Masonac8e9812010-02-28 15:39:26 -05002093 if (ret != 0) {
2094 if (ret > 0)
2095 ret = 0;
2096 goto err;
2097 }
Gerhard Heiftba346b32014-01-30 16:24:02 +01002098 ret = copy_to_sk(root, path, &key, sk, buf_size, ubuf,
Chris Masonac8e9812010-02-28 15:39:26 -05002099 &sk_offset, &num_found);
David Sterbab3b4aa72011-04-21 01:20:15 +02002100 btrfs_release_path(path);
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002101 if (ret)
Chris Masonac8e9812010-02-28 15:39:26 -05002102 break;
2103
2104 }
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002105 if (ret > 0)
2106 ret = 0;
Chris Masonac8e9812010-02-28 15:39:26 -05002107err:
2108 sk->nr_items = num_found;
2109 btrfs_free_path(path);
2110 return ret;
2111}
2112
2113static noinline int btrfs_ioctl_tree_search(struct file *file,
2114 void __user *argp)
2115{
Gerhard Heiftba346b32014-01-30 16:24:02 +01002116 struct btrfs_ioctl_search_args __user *uargs;
2117 struct btrfs_ioctl_search_key sk;
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002118 struct inode *inode;
2119 int ret;
2120 size_t buf_size;
Chris Masonac8e9812010-02-28 15:39:26 -05002121
2122 if (!capable(CAP_SYS_ADMIN))
2123 return -EPERM;
2124
Gerhard Heiftba346b32014-01-30 16:24:02 +01002125 uargs = (struct btrfs_ioctl_search_args __user *)argp;
Chris Masonac8e9812010-02-28 15:39:26 -05002126
Gerhard Heiftba346b32014-01-30 16:24:02 +01002127 if (copy_from_user(&sk, &uargs->key, sizeof(sk)))
2128 return -EFAULT;
2129
2130 buf_size = sizeof(uargs->buf);
Chris Masonac8e9812010-02-28 15:39:26 -05002131
Al Viro496ad9a2013-01-23 17:07:38 -05002132 inode = file_inode(file);
Gerhard Heiftba346b32014-01-30 16:24:02 +01002133 ret = search_ioctl(inode, &sk, &buf_size, uargs->buf);
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002134
2135 /*
2136 * In the origin implementation an overflow is handled by returning a
2137 * search header with a len of zero, so reset ret.
2138 */
2139 if (ret == -EOVERFLOW)
2140 ret = 0;
2141
Gerhard Heiftba346b32014-01-30 16:24:02 +01002142 if (ret == 0 && copy_to_user(&uargs->key, &sk, sizeof(sk)))
Chris Masonac8e9812010-02-28 15:39:26 -05002143 ret = -EFAULT;
Chris Masonac8e9812010-02-28 15:39:26 -05002144 return ret;
2145}
2146
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002147static noinline int btrfs_ioctl_tree_search_v2(struct file *file,
2148 void __user *argp)
2149{
2150 struct btrfs_ioctl_search_args_v2 __user *uarg;
2151 struct btrfs_ioctl_search_args_v2 args;
2152 struct inode *inode;
2153 int ret;
2154 size_t buf_size;
2155 const size_t buf_limit = 16 * 1024 * 1024;
2156
2157 if (!capable(CAP_SYS_ADMIN))
2158 return -EPERM;
2159
2160 /* copy search header and buffer size */
2161 uarg = (struct btrfs_ioctl_search_args_v2 __user *)argp;
2162 if (copy_from_user(&args, uarg, sizeof(args)))
2163 return -EFAULT;
2164
2165 buf_size = args.buf_size;
2166
2167 if (buf_size < sizeof(struct btrfs_ioctl_search_header))
2168 return -EOVERFLOW;
2169
2170 /* limit result size to 16MB */
2171 if (buf_size > buf_limit)
2172 buf_size = buf_limit;
2173
2174 inode = file_inode(file);
2175 ret = search_ioctl(inode, &args.key, &buf_size,
2176 (char *)(&uarg->buf[0]));
2177 if (ret == 0 && copy_to_user(&uarg->key, &args.key, sizeof(args.key)))
2178 ret = -EFAULT;
2179 else if (ret == -EOVERFLOW &&
2180 copy_to_user(&uarg->buf_size, &buf_size, sizeof(buf_size)))
2181 ret = -EFAULT;
2182
Yan, Zheng76dda932009-09-21 16:00:26 -04002183 return ret;
2184}
2185
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002186/*
Chris Masonac8e9812010-02-28 15:39:26 -05002187 * Search INODE_REFs to identify path name of 'dirid' directory
2188 * in a 'tree_id' tree. and sets path name to 'name'.
2189 */
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002190static noinline int btrfs_search_path_in_tree(struct btrfs_fs_info *info,
2191 u64 tree_id, u64 dirid, char *name)
2192{
2193 struct btrfs_root *root;
2194 struct btrfs_key key;
Chris Masonac8e9812010-02-28 15:39:26 -05002195 char *ptr;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002196 int ret = -1;
2197 int slot;
2198 int len;
2199 int total_len = 0;
2200 struct btrfs_inode_ref *iref;
2201 struct extent_buffer *l;
2202 struct btrfs_path *path;
2203
2204 if (dirid == BTRFS_FIRST_FREE_OBJECTID) {
2205 name[0]='\0';
2206 return 0;
2207 }
2208
2209 path = btrfs_alloc_path();
2210 if (!path)
2211 return -ENOMEM;
2212
Chris Masonac8e9812010-02-28 15:39:26 -05002213 ptr = &name[BTRFS_INO_LOOKUP_PATH_MAX];
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002214
2215 key.objectid = tree_id;
2216 key.type = BTRFS_ROOT_ITEM_KEY;
2217 key.offset = (u64)-1;
2218 root = btrfs_read_fs_root_no_name(info, &key);
2219 if (IS_ERR(root)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05002220 printk(KERN_ERR "BTRFS: could not find root %llu\n", tree_id);
Chris Mason8ad6fca2010-03-18 12:23:10 -04002221 ret = -ENOENT;
2222 goto out;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002223 }
2224
2225 key.objectid = dirid;
2226 key.type = BTRFS_INODE_REF_KEY;
Chris Mason8ad6fca2010-03-18 12:23:10 -04002227 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002228
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302229 while (1) {
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002230 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2231 if (ret < 0)
2232 goto out;
Filipe David Borba Manana18674c62013-08-14 03:00:21 +01002233 else if (ret > 0) {
2234 ret = btrfs_previous_item(root, path, dirid,
2235 BTRFS_INODE_REF_KEY);
2236 if (ret < 0)
2237 goto out;
2238 else if (ret > 0) {
2239 ret = -ENOENT;
2240 goto out;
2241 }
2242 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002243
2244 l = path->nodes[0];
2245 slot = path->slots[0];
2246 btrfs_item_key_to_cpu(l, &key, slot);
2247
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002248 iref = btrfs_item_ptr(l, slot, struct btrfs_inode_ref);
2249 len = btrfs_inode_ref_name_len(l, iref);
2250 ptr -= len + 1;
2251 total_len += len + 1;
Filipe David Borba Mananaa696cf32013-08-14 03:00:20 +01002252 if (ptr < name) {
2253 ret = -ENAMETOOLONG;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002254 goto out;
Filipe David Borba Mananaa696cf32013-08-14 03:00:20 +01002255 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002256
2257 *(ptr + len) = '/';
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302258 read_extent_buffer(l, ptr, (unsigned long)(iref + 1), len);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002259
2260 if (key.offset == BTRFS_FIRST_FREE_OBJECTID)
2261 break;
2262
David Sterbab3b4aa72011-04-21 01:20:15 +02002263 btrfs_release_path(path);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002264 key.objectid = key.offset;
Chris Mason8ad6fca2010-03-18 12:23:10 -04002265 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002266 dirid = key.objectid;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002267 }
Li Zefan77906a502011-07-14 03:16:00 +00002268 memmove(name, ptr, total_len);
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302269 name[total_len] = '\0';
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002270 ret = 0;
2271out:
2272 btrfs_free_path(path);
Chris Masonac8e9812010-02-28 15:39:26 -05002273 return ret;
2274}
2275
2276static noinline int btrfs_ioctl_ino_lookup(struct file *file,
2277 void __user *argp)
2278{
2279 struct btrfs_ioctl_ino_lookup_args *args;
2280 struct inode *inode;
2281 int ret;
2282
2283 if (!capable(CAP_SYS_ADMIN))
2284 return -EPERM;
2285
Julia Lawall2354d082010-10-29 15:14:18 -04002286 args = memdup_user(argp, sizeof(*args));
2287 if (IS_ERR(args))
2288 return PTR_ERR(args);
Dan Carpenterc2b96922010-03-20 11:24:15 +00002289
Al Viro496ad9a2013-01-23 17:07:38 -05002290 inode = file_inode(file);
Chris Masonac8e9812010-02-28 15:39:26 -05002291
Chris Mason1b53ac42010-03-18 12:17:05 -04002292 if (args->treeid == 0)
2293 args->treeid = BTRFS_I(inode)->root->root_key.objectid;
2294
Chris Masonac8e9812010-02-28 15:39:26 -05002295 ret = btrfs_search_path_in_tree(BTRFS_I(inode)->root->fs_info,
2296 args->treeid, args->objectid,
2297 args->name);
2298
2299 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
2300 ret = -EFAULT;
2301
2302 kfree(args);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002303 return ret;
2304}
2305
Yan, Zheng76dda932009-09-21 16:00:26 -04002306static noinline int btrfs_ioctl_snap_destroy(struct file *file,
2307 void __user *arg)
2308{
Al Viro54563d42013-09-01 15:57:51 -04002309 struct dentry *parent = file->f_path.dentry;
Yan, Zheng76dda932009-09-21 16:00:26 -04002310 struct dentry *dentry;
2311 struct inode *dir = parent->d_inode;
2312 struct inode *inode;
2313 struct btrfs_root *root = BTRFS_I(dir)->root;
2314 struct btrfs_root *dest = NULL;
2315 struct btrfs_ioctl_vol_args *vol_args;
2316 struct btrfs_trans_handle *trans;
Miao Xiec58aaad2013-02-28 10:05:36 +00002317 struct btrfs_block_rsv block_rsv;
David Sterba521e0542014-04-15 16:41:44 +02002318 u64 root_flags;
Miao Xiec58aaad2013-02-28 10:05:36 +00002319 u64 qgroup_reserved;
Yan, Zheng76dda932009-09-21 16:00:26 -04002320 int namelen;
2321 int ret;
2322 int err = 0;
2323
Yan, Zheng76dda932009-09-21 16:00:26 -04002324 vol_args = memdup_user(arg, sizeof(*vol_args));
2325 if (IS_ERR(vol_args))
2326 return PTR_ERR(vol_args);
2327
2328 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
2329 namelen = strlen(vol_args->name);
2330 if (strchr(vol_args->name, '/') ||
2331 strncmp(vol_args->name, "..", namelen) == 0) {
2332 err = -EINVAL;
2333 goto out;
2334 }
2335
Al Viroa561be72011-11-23 11:57:51 -05002336 err = mnt_want_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04002337 if (err)
2338 goto out;
2339
David Sterba521e0542014-04-15 16:41:44 +02002340
David Sterba5c50c9b2013-03-22 18:12:51 +00002341 err = mutex_lock_killable_nested(&dir->i_mutex, I_MUTEX_PARENT);
2342 if (err == -EINTR)
David Sterbae43f9982013-12-06 17:51:32 +01002343 goto out_drop_write;
Yan, Zheng76dda932009-09-21 16:00:26 -04002344 dentry = lookup_one_len(vol_args->name, parent, namelen);
2345 if (IS_ERR(dentry)) {
2346 err = PTR_ERR(dentry);
2347 goto out_unlock_dir;
2348 }
2349
2350 if (!dentry->d_inode) {
2351 err = -ENOENT;
2352 goto out_dput;
2353 }
2354
2355 inode = dentry->d_inode;
Sage Weil4260f7c2010-10-29 15:46:43 -04002356 dest = BTRFS_I(inode)->root;
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302357 if (!capable(CAP_SYS_ADMIN)) {
Sage Weil4260f7c2010-10-29 15:46:43 -04002358 /*
2359 * Regular user. Only allow this with a special mount
2360 * option, when the user has write+exec access to the
2361 * subvol root, and when rmdir(2) would have been
2362 * allowed.
2363 *
2364 * Note that this is _not_ check that the subvol is
2365 * empty or doesn't contain data that we wouldn't
2366 * otherwise be able to delete.
2367 *
2368 * Users who want to delete empty subvols should try
2369 * rmdir(2).
2370 */
2371 err = -EPERM;
2372 if (!btrfs_test_opt(root, USER_SUBVOL_RM_ALLOWED))
2373 goto out_dput;
2374
2375 /*
2376 * Do not allow deletion if the parent dir is the same
2377 * as the dir to be deleted. That means the ioctl
2378 * must be called on the dentry referencing the root
2379 * of the subvol, not a random directory contained
2380 * within it.
2381 */
2382 err = -EINVAL;
2383 if (root == dest)
2384 goto out_dput;
2385
2386 err = inode_permission(inode, MAY_WRITE | MAY_EXEC);
2387 if (err)
2388 goto out_dput;
Sage Weil4260f7c2010-10-29 15:46:43 -04002389 }
2390
Miao Xie5c39da52012-10-22 11:39:53 +00002391 /* check if subvolume may be deleted by a user */
2392 err = btrfs_may_delete(dir, dentry, 1);
2393 if (err)
2394 goto out_dput;
2395
Li Zefan33345d012011-04-20 10:31:50 +08002396 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
Yan, Zheng76dda932009-09-21 16:00:26 -04002397 err = -EINVAL;
2398 goto out_dput;
2399 }
2400
Yan, Zheng76dda932009-09-21 16:00:26 -04002401 mutex_lock(&inode->i_mutex);
David Sterba521e0542014-04-15 16:41:44 +02002402
2403 /*
2404 * Don't allow to delete a subvolume with send in progress. This is
2405 * inside the i_mutex so the error handling that has to drop the bit
2406 * again is not run concurrently.
2407 */
2408 spin_lock(&dest->root_item_lock);
Filipe Mananac55bfa62014-05-25 03:55:44 +01002409 root_flags = btrfs_root_flags(&dest->root_item);
2410 if (dest->send_in_progress == 0) {
2411 btrfs_set_root_flags(&dest->root_item,
David Sterba521e0542014-04-15 16:41:44 +02002412 root_flags | BTRFS_ROOT_SUBVOL_DEAD);
2413 spin_unlock(&dest->root_item_lock);
2414 } else {
2415 spin_unlock(&dest->root_item_lock);
2416 btrfs_warn(root->fs_info,
2417 "Attempt to delete subvolume %llu during send",
Filipe Mananac55bfa62014-05-25 03:55:44 +01002418 dest->root_key.objectid);
David Sterba521e0542014-04-15 16:41:44 +02002419 err = -EPERM;
2420 goto out_dput;
2421 }
2422
Yan, Zheng76dda932009-09-21 16:00:26 -04002423 err = d_invalidate(dentry);
2424 if (err)
2425 goto out_unlock;
2426
2427 down_write(&root->fs_info->subvol_sem);
2428
2429 err = may_destroy_subvol(dest);
2430 if (err)
2431 goto out_up_write;
2432
Miao Xiec58aaad2013-02-28 10:05:36 +00002433 btrfs_init_block_rsv(&block_rsv, BTRFS_BLOCK_RSV_TEMP);
2434 /*
2435 * One for dir inode, two for dir entries, two for root
2436 * ref/backref.
2437 */
2438 err = btrfs_subvolume_reserve_metadata(root, &block_rsv,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04002439 5, &qgroup_reserved, true);
Miao Xiec58aaad2013-02-28 10:05:36 +00002440 if (err)
2441 goto out_up_write;
2442
Yan, Zhenga22285a2010-05-16 10:48:46 -04002443 trans = btrfs_start_transaction(root, 0);
2444 if (IS_ERR(trans)) {
2445 err = PTR_ERR(trans);
Miao Xiec58aaad2013-02-28 10:05:36 +00002446 goto out_release;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002447 }
Miao Xiec58aaad2013-02-28 10:05:36 +00002448 trans->block_rsv = &block_rsv;
2449 trans->bytes_reserved = block_rsv.size;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002450
Yan, Zheng76dda932009-09-21 16:00:26 -04002451 ret = btrfs_unlink_subvol(trans, root, dir,
2452 dest->root_key.objectid,
2453 dentry->d_name.name,
2454 dentry->d_name.len);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002455 if (ret) {
2456 err = ret;
2457 btrfs_abort_transaction(trans, root, ret);
2458 goto out_end_trans;
2459 }
Yan, Zheng76dda932009-09-21 16:00:26 -04002460
2461 btrfs_record_root_in_trans(trans, dest);
2462
2463 memset(&dest->root_item.drop_progress, 0,
2464 sizeof(dest->root_item.drop_progress));
2465 dest->root_item.drop_level = 0;
2466 btrfs_set_root_refs(&dest->root_item, 0);
2467
Miao Xie27cdeb72014-04-02 19:51:05 +08002468 if (!test_and_set_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &dest->state)) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04002469 ret = btrfs_insert_orphan_item(trans,
2470 root->fs_info->tree_root,
2471 dest->root_key.objectid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002472 if (ret) {
2473 btrfs_abort_transaction(trans, root, ret);
2474 err = ret;
2475 goto out_end_trans;
2476 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04002477 }
Stefan Behrensdd5f9612013-08-15 17:11:20 +02002478
2479 ret = btrfs_uuid_tree_rem(trans, root->fs_info->uuid_root,
2480 dest->root_item.uuid, BTRFS_UUID_KEY_SUBVOL,
2481 dest->root_key.objectid);
2482 if (ret && ret != -ENOENT) {
2483 btrfs_abort_transaction(trans, root, ret);
2484 err = ret;
2485 goto out_end_trans;
2486 }
2487 if (!btrfs_is_empty_uuid(dest->root_item.received_uuid)) {
2488 ret = btrfs_uuid_tree_rem(trans, root->fs_info->uuid_root,
2489 dest->root_item.received_uuid,
2490 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
2491 dest->root_key.objectid);
2492 if (ret && ret != -ENOENT) {
2493 btrfs_abort_transaction(trans, root, ret);
2494 err = ret;
2495 goto out_end_trans;
2496 }
2497 }
2498
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002499out_end_trans:
Miao Xiec58aaad2013-02-28 10:05:36 +00002500 trans->block_rsv = NULL;
2501 trans->bytes_reserved = 0;
Sage Weil531cb132010-10-29 15:41:32 -04002502 ret = btrfs_end_transaction(trans, root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002503 if (ret && !err)
2504 err = ret;
Yan, Zheng76dda932009-09-21 16:00:26 -04002505 inode->i_flags |= S_DEAD;
Miao Xiec58aaad2013-02-28 10:05:36 +00002506out_release:
2507 btrfs_subvolume_release_metadata(root, &block_rsv, qgroup_reserved);
Yan, Zheng76dda932009-09-21 16:00:26 -04002508out_up_write:
2509 up_write(&root->fs_info->subvol_sem);
2510out_unlock:
David Sterba521e0542014-04-15 16:41:44 +02002511 if (err) {
2512 spin_lock(&dest->root_item_lock);
Filipe Mananac55bfa62014-05-25 03:55:44 +01002513 root_flags = btrfs_root_flags(&dest->root_item);
2514 btrfs_set_root_flags(&dest->root_item,
David Sterba521e0542014-04-15 16:41:44 +02002515 root_flags & ~BTRFS_ROOT_SUBVOL_DEAD);
2516 spin_unlock(&dest->root_item_lock);
2517 }
Yan, Zheng76dda932009-09-21 16:00:26 -04002518 mutex_unlock(&inode->i_mutex);
2519 if (!err) {
Yan, Zhengefefb142009-10-09 09:25:16 -04002520 shrink_dcache_sb(root->fs_info->sb);
Yan, Zheng76dda932009-09-21 16:00:26 -04002521 btrfs_invalidate_inodes(dest);
2522 d_delete(dentry);
David Sterba61155aa2014-04-15 16:42:03 +02002523 ASSERT(dest->send_in_progress == 0);
Liu Bofa6ac872013-02-20 14:10:23 +00002524
2525 /* the last ref */
David Sterba57cdc8d2014-02-05 02:37:48 +01002526 if (dest->ino_cache_inode) {
2527 iput(dest->ino_cache_inode);
2528 dest->ino_cache_inode = NULL;
Liu Bofa6ac872013-02-20 14:10:23 +00002529 }
Yan, Zheng76dda932009-09-21 16:00:26 -04002530 }
2531out_dput:
2532 dput(dentry);
2533out_unlock_dir:
2534 mutex_unlock(&dir->i_mutex);
David Sterbae43f9982013-12-06 17:51:32 +01002535out_drop_write:
Al Viro2a79f172011-12-09 08:06:57 -05002536 mnt_drop_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04002537out:
2538 kfree(vol_args);
2539 return err;
2540}
2541
Chris Mason1e701a32010-03-11 09:42:04 -05002542static int btrfs_ioctl_defrag(struct file *file, void __user *argp)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002543{
Al Viro496ad9a2013-01-23 17:07:38 -05002544 struct inode *inode = file_inode(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002545 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason1e701a32010-03-11 09:42:04 -05002546 struct btrfs_ioctl_defrag_range_args *range;
Yan Zhengc146afa2008-11-12 14:34:12 -05002547 int ret;
2548
Ilya Dryomov25122d12013-01-20 15:57:57 +02002549 ret = mnt_want_write_file(file);
2550 if (ret)
2551 return ret;
Li Zefanb83cc962010-12-20 16:04:08 +08002552
Ilya Dryomov25122d12013-01-20 15:57:57 +02002553 if (btrfs_root_readonly(root)) {
2554 ret = -EROFS;
2555 goto out;
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002556 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002557
2558 switch (inode->i_mode & S_IFMT) {
2559 case S_IFDIR:
Chris Masone441d542009-01-05 16:57:23 -05002560 if (!capable(CAP_SYS_ADMIN)) {
2561 ret = -EPERM;
2562 goto out;
2563 }
Eric Sandeende78b512013-01-31 18:21:12 +00002564 ret = btrfs_defrag_root(root);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04002565 if (ret)
2566 goto out;
Eric Sandeende78b512013-01-31 18:21:12 +00002567 ret = btrfs_defrag_root(root->fs_info->extent_root);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002568 break;
2569 case S_IFREG:
Chris Masone441d542009-01-05 16:57:23 -05002570 if (!(file->f_mode & FMODE_WRITE)) {
2571 ret = -EINVAL;
2572 goto out;
2573 }
Chris Mason1e701a32010-03-11 09:42:04 -05002574
2575 range = kzalloc(sizeof(*range), GFP_KERNEL);
2576 if (!range) {
2577 ret = -ENOMEM;
2578 goto out;
2579 }
2580
2581 if (argp) {
2582 if (copy_from_user(range, argp,
2583 sizeof(*range))) {
2584 ret = -EFAULT;
2585 kfree(range);
Dan Carpenter683be162010-03-20 11:24:48 +00002586 goto out;
Chris Mason1e701a32010-03-11 09:42:04 -05002587 }
2588 /* compression requires us to start the IO */
2589 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
2590 range->flags |= BTRFS_DEFRAG_RANGE_START_IO;
2591 range->extent_thresh = (u32)-1;
2592 }
2593 } else {
2594 /* the rest are all set to zero by kzalloc */
2595 range->len = (u64)-1;
2596 }
Al Viro496ad9a2013-01-23 17:07:38 -05002597 ret = btrfs_defrag_file(file_inode(file), file,
Chris Mason4cb53002011-05-24 15:35:30 -04002598 range, 0, 0);
2599 if (ret > 0)
2600 ret = 0;
Chris Mason1e701a32010-03-11 09:42:04 -05002601 kfree(range);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002602 break;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04002603 default:
2604 ret = -EINVAL;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002605 }
Chris Masone441d542009-01-05 16:57:23 -05002606out:
Ilya Dryomov25122d12013-01-20 15:57:57 +02002607 mnt_drop_write_file(file);
Chris Masone441d542009-01-05 16:57:23 -05002608 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002609}
2610
Christoph Hellwigb2950862008-12-02 09:54:17 -05002611static long btrfs_ioctl_add_dev(struct btrfs_root *root, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002612{
2613 struct btrfs_ioctl_vol_args *vol_args;
2614 int ret;
2615
Chris Masone441d542009-01-05 16:57:23 -05002616 if (!capable(CAP_SYS_ADMIN))
2617 return -EPERM;
2618
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002619 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
2620 1)) {
Anand Jaine57138b2013-08-21 11:44:48 +08002621 return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002622 }
2623
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002624 mutex_lock(&root->fs_info->volume_mutex);
Li Zefandae7b662009-04-08 15:06:54 +08002625 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002626 if (IS_ERR(vol_args)) {
2627 ret = PTR_ERR(vol_args);
2628 goto out;
2629 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002630
Mark Fasheh5516e592008-07-24 12:20:14 -04002631 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002632 ret = btrfs_init_new_device(root, vol_args->name);
2633
Anand Jain43d20762014-07-01 00:58:56 +08002634 if (!ret)
2635 btrfs_info(root->fs_info, "disk added %s",vol_args->name);
2636
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002637 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002638out:
2639 mutex_unlock(&root->fs_info->volume_mutex);
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002640 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002641 return ret;
2642}
2643
Miao Xieda249272012-11-26 08:44:50 +00002644static long btrfs_ioctl_rm_dev(struct file *file, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002645{
Al Viro496ad9a2013-01-23 17:07:38 -05002646 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002647 struct btrfs_ioctl_vol_args *vol_args;
2648 int ret;
2649
Chris Masone441d542009-01-05 16:57:23 -05002650 if (!capable(CAP_SYS_ADMIN))
2651 return -EPERM;
2652
Miao Xieda249272012-11-26 08:44:50 +00002653 ret = mnt_want_write_file(file);
2654 if (ret)
2655 return ret;
Yan Zhengc146afa2008-11-12 14:34:12 -05002656
Li Zefandae7b662009-04-08 15:06:54 +08002657 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002658 if (IS_ERR(vol_args)) {
2659 ret = PTR_ERR(vol_args);
Dan Carpenterc47ca322014-09-04 14:09:15 +03002660 goto err_drop;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002661 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002662
Mark Fasheh5516e592008-07-24 12:20:14 -04002663 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002664
Anand Jain183860f2013-05-17 10:52:45 +00002665 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
2666 1)) {
2667 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
2668 goto out;
2669 }
2670
2671 mutex_lock(&root->fs_info->volume_mutex);
2672 ret = btrfs_rm_device(root, vol_args->name);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002673 mutex_unlock(&root->fs_info->volume_mutex);
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002674 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
Anand Jain183860f2013-05-17 10:52:45 +00002675
Anand Jainec95d492014-07-01 00:58:57 +08002676 if (!ret)
2677 btrfs_info(root->fs_info, "disk deleted %s",vol_args->name);
2678
Anand Jain183860f2013-05-17 10:52:45 +00002679out:
2680 kfree(vol_args);
Dan Carpenterc47ca322014-09-04 14:09:15 +03002681err_drop:
Ilya Dryomov4ac20c72013-01-20 15:57:57 +02002682 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002683 return ret;
2684}
2685
Jan Schmidt475f6382011-03-11 15:41:01 +01002686static long btrfs_ioctl_fs_info(struct btrfs_root *root, void __user *arg)
2687{
Li Zefan027ed2f2011-06-08 08:27:56 +00002688 struct btrfs_ioctl_fs_info_args *fi_args;
Jan Schmidt475f6382011-03-11 15:41:01 +01002689 struct btrfs_device *device;
2690 struct btrfs_device *next;
2691 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
Li Zefan027ed2f2011-06-08 08:27:56 +00002692 int ret = 0;
Jan Schmidt475f6382011-03-11 15:41:01 +01002693
Li Zefan027ed2f2011-06-08 08:27:56 +00002694 fi_args = kzalloc(sizeof(*fi_args), GFP_KERNEL);
2695 if (!fi_args)
2696 return -ENOMEM;
2697
Filipe David Borba Mananaf7171752013-08-12 20:56:58 +01002698 mutex_lock(&fs_devices->device_list_mutex);
Li Zefan027ed2f2011-06-08 08:27:56 +00002699 fi_args->num_devices = fs_devices->num_devices;
2700 memcpy(&fi_args->fsid, root->fs_info->fsid, sizeof(fi_args->fsid));
Jan Schmidt475f6382011-03-11 15:41:01 +01002701
Jan Schmidt475f6382011-03-11 15:41:01 +01002702 list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) {
Li Zefan027ed2f2011-06-08 08:27:56 +00002703 if (device->devid > fi_args->max_id)
2704 fi_args->max_id = device->devid;
Jan Schmidt475f6382011-03-11 15:41:01 +01002705 }
2706 mutex_unlock(&fs_devices->device_list_mutex);
2707
David Sterba80a773f2014-05-07 18:17:06 +02002708 fi_args->nodesize = root->fs_info->super_copy->nodesize;
2709 fi_args->sectorsize = root->fs_info->super_copy->sectorsize;
2710 fi_args->clone_alignment = root->fs_info->super_copy->sectorsize;
2711
Li Zefan027ed2f2011-06-08 08:27:56 +00002712 if (copy_to_user(arg, fi_args, sizeof(*fi_args)))
2713 ret = -EFAULT;
Jan Schmidt475f6382011-03-11 15:41:01 +01002714
Li Zefan027ed2f2011-06-08 08:27:56 +00002715 kfree(fi_args);
2716 return ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01002717}
2718
2719static long btrfs_ioctl_dev_info(struct btrfs_root *root, void __user *arg)
2720{
2721 struct btrfs_ioctl_dev_info_args *di_args;
2722 struct btrfs_device *dev;
2723 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
2724 int ret = 0;
2725 char *s_uuid = NULL;
Jan Schmidt475f6382011-03-11 15:41:01 +01002726
Jan Schmidt475f6382011-03-11 15:41:01 +01002727 di_args = memdup_user(arg, sizeof(*di_args));
2728 if (IS_ERR(di_args))
2729 return PTR_ERR(di_args);
2730
Stefan Behrensdd5f9612013-08-15 17:11:20 +02002731 if (!btrfs_is_empty_uuid(di_args->uuid))
Jan Schmidt475f6382011-03-11 15:41:01 +01002732 s_uuid = di_args->uuid;
2733
2734 mutex_lock(&fs_devices->device_list_mutex);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01002735 dev = btrfs_find_device(root->fs_info, di_args->devid, s_uuid, NULL);
Jan Schmidt475f6382011-03-11 15:41:01 +01002736
2737 if (!dev) {
2738 ret = -ENODEV;
2739 goto out;
2740 }
2741
2742 di_args->devid = dev->devid;
Miao Xie7cc8e582014-09-03 21:35:38 +08002743 di_args->bytes_used = btrfs_device_get_bytes_used(dev);
2744 di_args->total_bytes = btrfs_device_get_total_bytes(dev);
Jan Schmidt475f6382011-03-11 15:41:01 +01002745 memcpy(di_args->uuid, dev->uuid, sizeof(di_args->uuid));
Jim Meyeringa27202f2012-04-26 18:36:56 +02002746 if (dev->name) {
Josef Bacik606686e2012-06-04 14:03:51 -04002747 struct rcu_string *name;
2748
2749 rcu_read_lock();
2750 name = rcu_dereference(dev->name);
2751 strncpy(di_args->path, name->str, sizeof(di_args->path));
2752 rcu_read_unlock();
Jim Meyeringa27202f2012-04-26 18:36:56 +02002753 di_args->path[sizeof(di_args->path) - 1] = 0;
2754 } else {
Stefan Behrens99ba55a2012-03-19 16:17:22 +01002755 di_args->path[0] = '\0';
Jim Meyeringa27202f2012-04-26 18:36:56 +02002756 }
Jan Schmidt475f6382011-03-11 15:41:01 +01002757
2758out:
David Sterba55793c02013-04-26 15:20:23 +00002759 mutex_unlock(&fs_devices->device_list_mutex);
Jan Schmidt475f6382011-03-11 15:41:01 +01002760 if (ret == 0 && copy_to_user(arg, di_args, sizeof(*di_args)))
2761 ret = -EFAULT;
2762
2763 kfree(di_args);
2764 return ret;
2765}
2766
Mark Fasheh416161d2013-08-06 11:42:51 -07002767static struct page *extent_same_get_page(struct inode *inode, u64 off)
2768{
2769 struct page *page;
2770 pgoff_t index;
2771 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2772
2773 index = off >> PAGE_CACHE_SHIFT;
2774
2775 page = grab_cache_page(inode->i_mapping, index);
2776 if (!page)
2777 return NULL;
2778
2779 if (!PageUptodate(page)) {
2780 if (extent_read_full_page_nolock(tree, page, btrfs_get_extent,
2781 0))
2782 return NULL;
2783 lock_page(page);
2784 if (!PageUptodate(page)) {
2785 unlock_page(page);
2786 page_cache_release(page);
2787 return NULL;
2788 }
2789 }
2790 unlock_page(page);
2791
2792 return page;
2793}
2794
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002795static inline void lock_extent_range(struct inode *inode, u64 off, u64 len)
2796{
2797 /* do any pending delalloc/csum calc on src, one way or
2798 another, and lock file content */
2799 while (1) {
2800 struct btrfs_ordered_extent *ordered;
2801 lock_extent(&BTRFS_I(inode)->io_tree, off, off + len - 1);
2802 ordered = btrfs_lookup_first_ordered_extent(inode,
2803 off + len - 1);
Filipe Mananaff5df9b2014-05-30 17:56:24 +01002804 if ((!ordered ||
2805 ordered->file_offset + ordered->len <= off ||
2806 ordered->file_offset >= off + len) &&
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002807 !test_range_bit(&BTRFS_I(inode)->io_tree, off,
Filipe Mananaff5df9b2014-05-30 17:56:24 +01002808 off + len - 1, EXTENT_DELALLOC, 0, NULL)) {
2809 if (ordered)
2810 btrfs_put_ordered_extent(ordered);
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002811 break;
Filipe Mananaff5df9b2014-05-30 17:56:24 +01002812 }
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002813 unlock_extent(&BTRFS_I(inode)->io_tree, off, off + len - 1);
2814 if (ordered)
2815 btrfs_put_ordered_extent(ordered);
2816 btrfs_wait_ordered_range(inode, off, len);
2817 }
2818}
2819
Mark Fasheh416161d2013-08-06 11:42:51 -07002820static void btrfs_double_unlock(struct inode *inode1, u64 loff1,
2821 struct inode *inode2, u64 loff2, u64 len)
2822{
2823 unlock_extent(&BTRFS_I(inode1)->io_tree, loff1, loff1 + len - 1);
2824 unlock_extent(&BTRFS_I(inode2)->io_tree, loff2, loff2 + len - 1);
2825
2826 mutex_unlock(&inode1->i_mutex);
2827 mutex_unlock(&inode2->i_mutex);
2828}
2829
2830static void btrfs_double_lock(struct inode *inode1, u64 loff1,
2831 struct inode *inode2, u64 loff2, u64 len)
2832{
2833 if (inode1 < inode2) {
2834 swap(inode1, inode2);
2835 swap(loff1, loff2);
2836 }
2837
2838 mutex_lock_nested(&inode1->i_mutex, I_MUTEX_PARENT);
2839 lock_extent_range(inode1, loff1, len);
2840 if (inode1 != inode2) {
2841 mutex_lock_nested(&inode2->i_mutex, I_MUTEX_CHILD);
2842 lock_extent_range(inode2, loff2, len);
2843 }
2844}
2845
2846static int btrfs_cmp_data(struct inode *src, u64 loff, struct inode *dst,
2847 u64 dst_loff, u64 len)
2848{
2849 int ret = 0;
2850 struct page *src_page, *dst_page;
2851 unsigned int cmp_len = PAGE_CACHE_SIZE;
2852 void *addr, *dst_addr;
2853
2854 while (len) {
2855 if (len < PAGE_CACHE_SIZE)
2856 cmp_len = len;
2857
2858 src_page = extent_same_get_page(src, loff);
2859 if (!src_page)
2860 return -EINVAL;
2861 dst_page = extent_same_get_page(dst, dst_loff);
2862 if (!dst_page) {
2863 page_cache_release(src_page);
2864 return -EINVAL;
2865 }
2866 addr = kmap_atomic(src_page);
2867 dst_addr = kmap_atomic(dst_page);
2868
2869 flush_dcache_page(src_page);
2870 flush_dcache_page(dst_page);
2871
2872 if (memcmp(addr, dst_addr, cmp_len))
2873 ret = BTRFS_SAME_DATA_DIFFERS;
2874
2875 kunmap_atomic(addr);
2876 kunmap_atomic(dst_addr);
2877 page_cache_release(src_page);
2878 page_cache_release(dst_page);
2879
2880 if (ret)
2881 break;
2882
2883 loff += cmp_len;
2884 dst_loff += cmp_len;
2885 len -= cmp_len;
2886 }
2887
2888 return ret;
2889}
2890
2891static int extent_same_check_offsets(struct inode *inode, u64 off, u64 len)
2892{
2893 u64 bs = BTRFS_I(inode)->root->fs_info->sb->s_blocksize;
2894
2895 if (off + len > inode->i_size || off + len < off)
2896 return -EINVAL;
2897 /* Check that we are block aligned - btrfs_clone() requires this */
2898 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs))
2899 return -EINVAL;
2900
2901 return 0;
2902}
2903
2904static int btrfs_extent_same(struct inode *src, u64 loff, u64 len,
2905 struct inode *dst, u64 dst_loff)
2906{
2907 int ret;
2908
2909 /*
2910 * btrfs_clone() can't handle extents in the same file
2911 * yet. Once that works, we can drop this check and replace it
2912 * with a check for the same inode, but overlapping extents.
2913 */
2914 if (src == dst)
2915 return -EINVAL;
2916
2917 btrfs_double_lock(src, loff, dst, dst_loff, len);
2918
2919 ret = extent_same_check_offsets(src, loff, len);
2920 if (ret)
2921 goto out_unlock;
2922
2923 ret = extent_same_check_offsets(dst, dst_loff, len);
2924 if (ret)
2925 goto out_unlock;
2926
2927 /* don't make the dst file partly checksummed */
2928 if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
2929 (BTRFS_I(dst)->flags & BTRFS_INODE_NODATASUM)) {
2930 ret = -EINVAL;
2931 goto out_unlock;
2932 }
2933
2934 ret = btrfs_cmp_data(src, loff, dst, dst_loff, len);
2935 if (ret == 0)
2936 ret = btrfs_clone(src, dst, loff, len, len, dst_loff);
2937
2938out_unlock:
2939 btrfs_double_unlock(src, loff, dst, dst_loff, len);
2940
2941 return ret;
2942}
2943
2944#define BTRFS_MAX_DEDUPE_LEN (16 * 1024 * 1024)
2945
2946static long btrfs_ioctl_file_extent_same(struct file *file,
Al Viro1c1c8742013-12-11 23:07:51 -05002947 struct btrfs_ioctl_same_args __user *argp)
Mark Fasheh416161d2013-08-06 11:42:51 -07002948{
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07002949 struct btrfs_ioctl_same_args *same;
2950 struct btrfs_ioctl_same_extent_info *info;
Al Viro1c1c8742013-12-11 23:07:51 -05002951 struct inode *src = file_inode(file);
Mark Fasheh416161d2013-08-06 11:42:51 -07002952 u64 off;
2953 u64 len;
2954 int i;
2955 int ret;
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07002956 unsigned long size;
Mark Fasheh416161d2013-08-06 11:42:51 -07002957 u64 bs = BTRFS_I(src)->root->fs_info->sb->s_blocksize;
2958 bool is_admin = capable(CAP_SYS_ADMIN);
Al Viro1c1c8742013-12-11 23:07:51 -05002959 u16 count;
Mark Fasheh416161d2013-08-06 11:42:51 -07002960
2961 if (!(file->f_mode & FMODE_READ))
2962 return -EINVAL;
2963
2964 ret = mnt_want_write_file(file);
2965 if (ret)
2966 return ret;
2967
Al Viro1c1c8742013-12-11 23:07:51 -05002968 if (get_user(count, &argp->dest_count)) {
Mark Fasheh416161d2013-08-06 11:42:51 -07002969 ret = -EFAULT;
2970 goto out;
2971 }
2972
Al Viro1c1c8742013-12-11 23:07:51 -05002973 size = offsetof(struct btrfs_ioctl_same_args __user, info[count]);
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07002974
Al Viro1c1c8742013-12-11 23:07:51 -05002975 same = memdup_user(argp, size);
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07002976
Geyslan G. Bem229eed42013-10-14 12:18:25 -03002977 if (IS_ERR(same)) {
2978 ret = PTR_ERR(same);
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07002979 goto out;
2980 }
2981
2982 off = same->logical_offset;
2983 len = same->length;
Mark Fasheh416161d2013-08-06 11:42:51 -07002984
2985 /*
2986 * Limit the total length we will dedupe for each operation.
2987 * This is intended to bound the total time spent in this
2988 * ioctl to something sane.
2989 */
2990 if (len > BTRFS_MAX_DEDUPE_LEN)
2991 len = BTRFS_MAX_DEDUPE_LEN;
2992
2993 if (WARN_ON_ONCE(bs < PAGE_CACHE_SIZE)) {
2994 /*
2995 * Btrfs does not support blocksize < page_size. As a
2996 * result, btrfs_cmp_data() won't correctly handle
2997 * this situation without an update.
2998 */
2999 ret = -EINVAL;
3000 goto out;
3001 }
3002
3003 ret = -EISDIR;
3004 if (S_ISDIR(src->i_mode))
3005 goto out;
3006
3007 ret = -EACCES;
3008 if (!S_ISREG(src->i_mode))
3009 goto out;
3010
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003011 /* pre-format output fields to sane values */
Al Viro1c1c8742013-12-11 23:07:51 -05003012 for (i = 0; i < count; i++) {
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003013 same->info[i].bytes_deduped = 0ULL;
3014 same->info[i].status = 0;
3015 }
3016
Al Viro1c1c8742013-12-11 23:07:51 -05003017 for (i = 0, info = same->info; i < count; i++, info++) {
3018 struct inode *dst;
3019 struct fd dst_file = fdget(info->fd);
3020 if (!dst_file.file) {
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003021 info->status = -EBADF;
Al Viro1c1c8742013-12-11 23:07:51 -05003022 continue;
Mark Fasheh416161d2013-08-06 11:42:51 -07003023 }
Al Viro1c1c8742013-12-11 23:07:51 -05003024 dst = file_inode(dst_file.file);
Mark Fasheh416161d2013-08-06 11:42:51 -07003025
Al Viro1c1c8742013-12-11 23:07:51 -05003026 if (!(is_admin || (dst_file.file->f_mode & FMODE_WRITE))) {
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003027 info->status = -EINVAL;
Al Viro1c1c8742013-12-11 23:07:51 -05003028 } else if (file->f_path.mnt != dst_file.file->f_path.mnt) {
3029 info->status = -EXDEV;
3030 } else if (S_ISDIR(dst->i_mode)) {
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003031 info->status = -EISDIR;
Al Viro1c1c8742013-12-11 23:07:51 -05003032 } else if (!S_ISREG(dst->i_mode)) {
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003033 info->status = -EACCES;
Al Viro1c1c8742013-12-11 23:07:51 -05003034 } else {
3035 info->status = btrfs_extent_same(src, off, len, dst,
3036 info->logical_offset);
3037 if (info->status == 0)
3038 info->bytes_deduped += len;
Mark Fasheh416161d2013-08-06 11:42:51 -07003039 }
Al Viro1c1c8742013-12-11 23:07:51 -05003040 fdput(dst_file);
Mark Fasheh416161d2013-08-06 11:42:51 -07003041 }
3042
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003043 ret = copy_to_user(argp, same, size);
3044 if (ret)
3045 ret = -EFAULT;
3046
Mark Fasheh416161d2013-08-06 11:42:51 -07003047out:
3048 mnt_drop_write_file(file);
3049 return ret;
3050}
3051
Josef Bacikfcebe452014-05-13 17:30:47 -07003052/* Helper to check and see if this root currently has a ref on the given disk
3053 * bytenr. If it does then we need to update the quota for this root. This
3054 * doesn't do anything if quotas aren't enabled.
3055 */
3056static int check_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
3057 u64 disko)
3058{
3059 struct seq_list tree_mod_seq_elem = {};
3060 struct ulist *roots;
3061 struct ulist_iterator uiter;
3062 struct ulist_node *root_node = NULL;
3063 int ret;
3064
3065 if (!root->fs_info->quota_enabled)
3066 return 1;
3067
3068 btrfs_get_tree_mod_seq(root->fs_info, &tree_mod_seq_elem);
3069 ret = btrfs_find_all_roots(trans, root->fs_info, disko,
3070 tree_mod_seq_elem.seq, &roots);
3071 if (ret < 0)
3072 goto out;
3073 ret = 0;
3074 ULIST_ITER_INIT(&uiter);
3075 while ((root_node = ulist_next(roots, &uiter))) {
3076 if (root_node->val == root->objectid) {
3077 ret = 1;
3078 break;
3079 }
3080 }
3081 ulist_free(roots);
3082out:
3083 btrfs_put_tree_mod_seq(root->fs_info, &tree_mod_seq_elem);
3084 return ret;
3085}
3086
Filipe Mananaf82a9902014-06-01 01:50:28 +01003087static int clone_finish_inode_update(struct btrfs_trans_handle *trans,
3088 struct inode *inode,
3089 u64 endoff,
3090 const u64 destoff,
3091 const u64 olen)
3092{
3093 struct btrfs_root *root = BTRFS_I(inode)->root;
3094 int ret;
3095
3096 inode_inc_iversion(inode);
3097 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
3098 /*
3099 * We round up to the block size at eof when determining which
3100 * extents to clone above, but shouldn't round up the file size.
3101 */
3102 if (endoff > destoff + olen)
3103 endoff = destoff + olen;
3104 if (endoff > inode->i_size)
3105 btrfs_i_size_write(inode, endoff);
3106
3107 ret = btrfs_update_inode(trans, root, inode);
3108 if (ret) {
3109 btrfs_abort_transaction(trans, root, ret);
3110 btrfs_end_transaction(trans, root);
3111 goto out;
3112 }
3113 ret = btrfs_end_transaction(trans, root);
3114out:
3115 return ret;
3116}
3117
Filipe Manana7ffbb592014-06-09 03:48:05 +01003118static void clone_update_extent_map(struct inode *inode,
3119 const struct btrfs_trans_handle *trans,
3120 const struct btrfs_path *path,
Filipe Manana7ffbb592014-06-09 03:48:05 +01003121 const u64 hole_offset,
3122 const u64 hole_len)
3123{
3124 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
3125 struct extent_map *em;
3126 int ret;
3127
3128 em = alloc_extent_map();
3129 if (!em) {
3130 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3131 &BTRFS_I(inode)->runtime_flags);
3132 return;
3133 }
3134
Filipe Manana14f59792014-06-29 21:45:40 +01003135 if (path) {
3136 struct btrfs_file_extent_item *fi;
3137
3138 fi = btrfs_item_ptr(path->nodes[0], path->slots[0],
3139 struct btrfs_file_extent_item);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003140 btrfs_extent_item_to_extent_map(inode, path, fi, false, em);
3141 em->generation = -1;
3142 if (btrfs_file_extent_type(path->nodes[0], fi) ==
3143 BTRFS_FILE_EXTENT_INLINE)
3144 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3145 &BTRFS_I(inode)->runtime_flags);
3146 } else {
3147 em->start = hole_offset;
3148 em->len = hole_len;
3149 em->ram_bytes = em->len;
3150 em->orig_start = hole_offset;
3151 em->block_start = EXTENT_MAP_HOLE;
3152 em->block_len = 0;
3153 em->orig_block_len = 0;
3154 em->compress_type = BTRFS_COMPRESS_NONE;
3155 em->generation = trans->transid;
3156 }
3157
3158 while (1) {
3159 write_lock(&em_tree->lock);
3160 ret = add_extent_mapping(em_tree, em, 1);
3161 write_unlock(&em_tree->lock);
3162 if (ret != -EEXIST) {
3163 free_extent_map(em);
3164 break;
3165 }
3166 btrfs_drop_extent_cache(inode, em->start,
3167 em->start + em->len - 1, 0);
3168 }
3169
3170 if (unlikely(ret))
3171 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3172 &BTRFS_I(inode)->runtime_flags);
3173}
3174
Mark Fasheh32b7c682013-08-06 11:42:49 -07003175/**
3176 * btrfs_clone() - clone a range from inode file to another
3177 *
3178 * @src: Inode to clone from
3179 * @inode: Inode to clone to
3180 * @off: Offset within source to start clone from
3181 * @olen: Original length, passed by user, of range to clone
3182 * @olen_aligned: Block-aligned value of olen, extent_same uses
3183 * identical values here
3184 * @destoff: Offset within @inode to start clone
3185 */
3186static int btrfs_clone(struct inode *src, struct inode *inode,
Filipe Mananaf82a9902014-06-01 01:50:28 +01003187 const u64 off, const u64 olen, const u64 olen_aligned,
3188 const u64 destoff)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003189{
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003190 struct btrfs_root *root = BTRFS_I(inode)->root;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003191 struct btrfs_path *path = NULL;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003192 struct extent_buffer *leaf;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003193 struct btrfs_trans_handle *trans;
3194 char *buf = NULL;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003195 struct btrfs_key key;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003196 u32 nritems;
3197 int slot;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003198 int ret;
Josef Bacikfcebe452014-05-13 17:30:47 -07003199 int no_quota;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003200 const u64 len = olen_aligned;
Josef Bacikfcebe452014-05-13 17:30:47 -07003201 u64 last_disko = 0;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003202 u64 last_dest_end = destoff;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003203
3204 ret = -ENOMEM;
David Sterba707e8a02014-06-04 19:22:26 +02003205 buf = vmalloc(root->nodesize);
Yan Zhengae01a0a2008-08-04 23:23:47 -04003206 if (!buf)
Mark Fasheh32b7c682013-08-06 11:42:49 -07003207 return ret;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003208
3209 path = btrfs_alloc_path();
3210 if (!path) {
3211 vfree(buf);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003212 return ret;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003213 }
Mark Fasheh32b7c682013-08-06 11:42:49 -07003214
Yan Zhengae01a0a2008-08-04 23:23:47 -04003215 path->reada = 2;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003216 /* clone data */
Li Zefan33345d012011-04-20 10:31:50 +08003217 key.objectid = btrfs_ino(src);
Yan Zhengae01a0a2008-08-04 23:23:47 -04003218 key.type = BTRFS_EXTENT_DATA_KEY;
Filipe Manana2c463822014-05-31 02:31:05 +01003219 key.offset = off;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003220
3221 while (1) {
3222 /*
3223 * note the key will change type as we walk through the
3224 * tree.
3225 */
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003226 path->leave_spinning = 1;
David Sterba362a20c2011-08-01 18:11:57 +02003227 ret = btrfs_search_slot(NULL, BTRFS_I(src)->root, &key, path,
3228 0, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003229 if (ret < 0)
3230 goto out;
Filipe Manana2c463822014-05-31 02:31:05 +01003231 /*
3232 * First search, if no extent item that starts at offset off was
3233 * found but the previous item is an extent item, it's possible
3234 * it might overlap our target range, therefore process it.
3235 */
3236 if (key.offset == off && ret > 0 && path->slots[0] > 0) {
3237 btrfs_item_key_to_cpu(path->nodes[0], &key,
3238 path->slots[0] - 1);
3239 if (key.type == BTRFS_EXTENT_DATA_KEY)
3240 path->slots[0]--;
3241 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003242
Yan Zhengae01a0a2008-08-04 23:23:47 -04003243 nritems = btrfs_header_nritems(path->nodes[0]);
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003244process_slot:
Josef Bacikfcebe452014-05-13 17:30:47 -07003245 no_quota = 1;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003246 if (path->slots[0] >= nritems) {
David Sterba362a20c2011-08-01 18:11:57 +02003247 ret = btrfs_next_leaf(BTRFS_I(src)->root, path);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003248 if (ret < 0)
3249 goto out;
3250 if (ret > 0)
3251 break;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003252 nritems = btrfs_header_nritems(path->nodes[0]);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003253 }
3254 leaf = path->nodes[0];
3255 slot = path->slots[0];
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003256
Yan Zhengae01a0a2008-08-04 23:23:47 -04003257 btrfs_item_key_to_cpu(leaf, &key, slot);
David Sterba962a2982014-06-04 18:41:45 +02003258 if (key.type > BTRFS_EXTENT_DATA_KEY ||
Li Zefan33345d012011-04-20 10:31:50 +08003259 key.objectid != btrfs_ino(src))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003260 break;
3261
David Sterba962a2982014-06-04 18:41:45 +02003262 if (key.type == BTRFS_EXTENT_DATA_KEY) {
Sage Weilc5c9cd42008-11-12 14:32:25 -05003263 struct btrfs_file_extent_item *extent;
3264 int type;
Zheng Yan31840ae2008-09-23 13:14:14 -04003265 u32 size;
3266 struct btrfs_key new_key;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003267 u64 disko = 0, diskl = 0;
3268 u64 datao = 0, datal = 0;
3269 u8 comp;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003270 u64 drop_start;
Zheng Yan31840ae2008-09-23 13:14:14 -04003271
Sage Weilc5c9cd42008-11-12 14:32:25 -05003272 extent = btrfs_item_ptr(leaf, slot,
3273 struct btrfs_file_extent_item);
3274 comp = btrfs_file_extent_compression(leaf, extent);
3275 type = btrfs_file_extent_type(leaf, extent);
Chris Masonc8a894d2009-06-27 21:07:03 -04003276 if (type == BTRFS_FILE_EXTENT_REG ||
3277 type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masond3977122009-01-05 21:25:51 -05003278 disko = btrfs_file_extent_disk_bytenr(leaf,
3279 extent);
3280 diskl = btrfs_file_extent_disk_num_bytes(leaf,
3281 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003282 datao = btrfs_file_extent_offset(leaf, extent);
Chris Masond3977122009-01-05 21:25:51 -05003283 datal = btrfs_file_extent_num_bytes(leaf,
3284 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003285 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
3286 /* take upper bound, may be compressed */
3287 datal = btrfs_file_extent_ram_bytes(leaf,
3288 extent);
3289 }
Zheng Yan31840ae2008-09-23 13:14:14 -04003290
Filipe Manana2c463822014-05-31 02:31:05 +01003291 /*
3292 * The first search might have left us at an extent
3293 * item that ends before our target range's start, can
3294 * happen if we have holes and NO_HOLES feature enabled.
3295 */
3296 if (key.offset + datal <= off) {
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003297 path->slots[0]++;
3298 goto process_slot;
Filipe Manana2c463822014-05-31 02:31:05 +01003299 } else if (key.offset >= off + len) {
3300 break;
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003301 }
3302
3303 size = btrfs_item_size_nr(leaf, slot);
3304 read_extent_buffer(leaf, buf,
3305 btrfs_item_ptr_offset(leaf, slot),
3306 size);
3307
3308 btrfs_release_path(path);
3309 path->leave_spinning = 0;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003310
Zheng Yan31840ae2008-09-23 13:14:14 -04003311 memcpy(&new_key, &key, sizeof(new_key));
Li Zefan33345d012011-04-20 10:31:50 +08003312 new_key.objectid = btrfs_ino(inode);
Li Zefan4d728ec2011-01-26 14:10:43 +08003313 if (off <= key.offset)
3314 new_key.offset = key.offset + destoff - off;
3315 else
3316 new_key.offset = destoff;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003317
Sage Weilb6f34092011-09-20 14:48:51 -04003318 /*
Filipe Mananaf82a9902014-06-01 01:50:28 +01003319 * Deal with a hole that doesn't have an extent item
3320 * that represents it (NO_HOLES feature enabled).
3321 * This hole is either in the middle of the cloning
3322 * range or at the beginning (fully overlaps it or
3323 * partially overlaps it).
3324 */
3325 if (new_key.offset != last_dest_end)
3326 drop_start = last_dest_end;
3327 else
3328 drop_start = new_key.offset;
3329
3330 /*
Sage Weilb6f34092011-09-20 14:48:51 -04003331 * 1 - adjusting old extent (we may have to split it)
3332 * 1 - add new extent
3333 * 1 - inode update
3334 */
3335 trans = btrfs_start_transaction(root, 3);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003336 if (IS_ERR(trans)) {
3337 ret = PTR_ERR(trans);
3338 goto out;
3339 }
3340
Chris Masonc8a894d2009-06-27 21:07:03 -04003341 if (type == BTRFS_FILE_EXTENT_REG ||
3342 type == BTRFS_FILE_EXTENT_PREALLOC) {
Li Zefand72c0842011-09-11 10:52:25 -04003343 /*
3344 * a | --- range to clone ---| b
3345 * | ------------- extent ------------- |
3346 */
3347
Antonio Ospite93915582014-06-04 14:03:48 +02003348 /* subtract range b */
Li Zefand72c0842011-09-11 10:52:25 -04003349 if (key.offset + datal > off + len)
3350 datal = off + len - key.offset;
3351
Antonio Ospite93915582014-06-04 14:03:48 +02003352 /* subtract range a */
Yan, Zhenga22285a2010-05-16 10:48:46 -04003353 if (off > key.offset) {
3354 datao += off - key.offset;
3355 datal -= off - key.offset;
3356 }
3357
Josef Bacik5dc562c2012-08-17 13:14:17 -04003358 ret = btrfs_drop_extents(trans, root, inode,
Filipe Mananaf82a9902014-06-01 01:50:28 +01003359 drop_start,
Yan, Zhenga22285a2010-05-16 10:48:46 -04003360 new_key.offset + datal,
Josef Bacik26714852012-08-29 12:24:27 -04003361 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003362 if (ret) {
David Sterba3f9e3df2014-04-15 18:50:17 +02003363 if (ret != -EOPNOTSUPP)
Liu Bo00fdf132014-03-10 18:56:07 +08003364 btrfs_abort_transaction(trans,
3365 root, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003366 btrfs_end_transaction(trans, root);
3367 goto out;
3368 }
Yan, Zhenga22285a2010-05-16 10:48:46 -04003369
Sage Weilc5c9cd42008-11-12 14:32:25 -05003370 ret = btrfs_insert_empty_item(trans, root, path,
3371 &new_key, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003372 if (ret) {
3373 btrfs_abort_transaction(trans, root,
3374 ret);
3375 btrfs_end_transaction(trans, root);
3376 goto out;
3377 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05003378
3379 leaf = path->nodes[0];
3380 slot = path->slots[0];
3381 write_extent_buffer(leaf, buf,
3382 btrfs_item_ptr_offset(leaf, slot),
3383 size);
3384
3385 extent = btrfs_item_ptr(leaf, slot,
3386 struct btrfs_file_extent_item);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003387
Sage Weilc5c9cd42008-11-12 14:32:25 -05003388 /* disko == 0 means it's a hole */
3389 if (!disko)
3390 datao = 0;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003391
3392 btrfs_set_file_extent_offset(leaf, extent,
3393 datao);
3394 btrfs_set_file_extent_num_bytes(leaf, extent,
3395 datal);
Josef Bacikfcebe452014-05-13 17:30:47 -07003396
3397 /*
3398 * We need to look up the roots that point at
3399 * this bytenr and see if the new root does. If
3400 * it does not we need to make sure we update
3401 * quotas appropriately.
3402 */
3403 if (disko && root != BTRFS_I(src)->root &&
3404 disko != last_disko) {
3405 no_quota = check_ref(trans, root,
3406 disko);
3407 if (no_quota < 0) {
3408 btrfs_abort_transaction(trans,
3409 root,
3410 ret);
3411 btrfs_end_transaction(trans,
3412 root);
3413 ret = no_quota;
3414 goto out;
3415 }
3416 }
3417
Sage Weilc5c9cd42008-11-12 14:32:25 -05003418 if (disko) {
3419 inode_add_bytes(inode, datal);
3420 ret = btrfs_inc_extent_ref(trans, root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003421 disko, diskl, 0,
3422 root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08003423 btrfs_ino(inode),
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003424 new_key.offset - datao,
Josef Bacikfcebe452014-05-13 17:30:47 -07003425 no_quota);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003426 if (ret) {
3427 btrfs_abort_transaction(trans,
3428 root,
3429 ret);
3430 btrfs_end_transaction(trans,
3431 root);
3432 goto out;
3433
3434 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05003435 }
3436 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
3437 u64 skip = 0;
3438 u64 trim = 0;
Liu Bod3ecfcd2014-05-09 10:01:02 +08003439 u64 aligned_end = 0;
3440
Sage Weilc5c9cd42008-11-12 14:32:25 -05003441 if (off > key.offset) {
3442 skip = off - key.offset;
3443 new_key.offset += skip;
3444 }
Chris Masond3977122009-01-05 21:25:51 -05003445
Liu Boaa42ffd2012-09-18 03:52:23 -06003446 if (key.offset + datal > off + len)
3447 trim = key.offset + datal - (off + len);
Chris Masond3977122009-01-05 21:25:51 -05003448
Sage Weilc5c9cd42008-11-12 14:32:25 -05003449 if (comp && (skip || trim)) {
Sage Weilc5c9cd42008-11-12 14:32:25 -05003450 ret = -EINVAL;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003451 btrfs_end_transaction(trans, root);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003452 goto out;
3453 }
3454 size -= skip + trim;
3455 datal -= skip + trim;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003456
Liu Bod3ecfcd2014-05-09 10:01:02 +08003457 aligned_end = ALIGN(new_key.offset + datal,
3458 root->sectorsize);
Josef Bacik5dc562c2012-08-17 13:14:17 -04003459 ret = btrfs_drop_extents(trans, root, inode,
Filipe Mananaf82a9902014-06-01 01:50:28 +01003460 drop_start,
Liu Bod3ecfcd2014-05-09 10:01:02 +08003461 aligned_end,
Josef Bacik26714852012-08-29 12:24:27 -04003462 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003463 if (ret) {
David Sterba3f9e3df2014-04-15 18:50:17 +02003464 if (ret != -EOPNOTSUPP)
Chris Mason3a29bc02014-04-07 07:10:40 -07003465 btrfs_abort_transaction(trans,
3466 root, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003467 btrfs_end_transaction(trans, root);
3468 goto out;
3469 }
Yan, Zhenga22285a2010-05-16 10:48:46 -04003470
Sage Weilc5c9cd42008-11-12 14:32:25 -05003471 ret = btrfs_insert_empty_item(trans, root, path,
3472 &new_key, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003473 if (ret) {
3474 btrfs_abort_transaction(trans, root,
3475 ret);
3476 btrfs_end_transaction(trans, root);
3477 goto out;
3478 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05003479
3480 if (skip) {
Chris Masond3977122009-01-05 21:25:51 -05003481 u32 start =
3482 btrfs_file_extent_calc_inline_size(0);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003483 memmove(buf+start, buf+start+skip,
3484 datal);
3485 }
3486
3487 leaf = path->nodes[0];
3488 slot = path->slots[0];
3489 write_extent_buffer(leaf, buf,
3490 btrfs_item_ptr_offset(leaf, slot),
3491 size);
3492 inode_add_bytes(inode, datal);
3493 }
3494
Filipe Manana7ffbb592014-06-09 03:48:05 +01003495 /* If we have an implicit hole (NO_HOLES feature). */
3496 if (drop_start < new_key.offset)
3497 clone_update_extent_map(inode, trans,
Filipe Manana14f59792014-06-29 21:45:40 +01003498 NULL, drop_start,
Filipe Manana7ffbb592014-06-09 03:48:05 +01003499 new_key.offset - drop_start);
3500
Filipe Manana14f59792014-06-29 21:45:40 +01003501 clone_update_extent_map(inode, trans, path, 0, 0);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003502
Sage Weilc5c9cd42008-11-12 14:32:25 -05003503 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02003504 btrfs_release_path(path);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003505
Filipe Manana62e23902014-08-08 02:47:06 +01003506 last_dest_end = ALIGN(new_key.offset + datal,
3507 root->sectorsize);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003508 ret = clone_finish_inode_update(trans, inode,
3509 last_dest_end,
3510 destoff, olen);
3511 if (ret)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003512 goto out;
Filipe Manana2c463822014-05-31 02:31:05 +01003513 if (new_key.offset + datal >= destoff + len)
3514 break;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003515 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003516 btrfs_release_path(path);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003517 key.offset++;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003518 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003519 ret = 0;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003520
Filipe Mananaf82a9902014-06-01 01:50:28 +01003521 if (last_dest_end < destoff + len) {
3522 /*
3523 * We have an implicit hole (NO_HOLES feature is enabled) that
3524 * fully or partially overlaps our cloning range at its end.
3525 */
3526 btrfs_release_path(path);
3527
3528 /*
3529 * 1 - remove extent(s)
3530 * 1 - inode update
3531 */
3532 trans = btrfs_start_transaction(root, 2);
3533 if (IS_ERR(trans)) {
3534 ret = PTR_ERR(trans);
3535 goto out;
3536 }
3537 ret = btrfs_drop_extents(trans, root, inode,
3538 last_dest_end, destoff + len, 1);
3539 if (ret) {
3540 if (ret != -EOPNOTSUPP)
3541 btrfs_abort_transaction(trans, root, ret);
3542 btrfs_end_transaction(trans, root);
3543 goto out;
3544 }
Filipe Manana14f59792014-06-29 21:45:40 +01003545 clone_update_extent_map(inode, trans, NULL, last_dest_end,
3546 destoff + len - last_dest_end);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003547 ret = clone_finish_inode_update(trans, inode, destoff + len,
3548 destoff, olen);
3549 }
3550
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003551out:
Mark Fasheh32b7c682013-08-06 11:42:49 -07003552 btrfs_free_path(path);
3553 vfree(buf);
3554 return ret;
3555}
3556
3557static noinline long btrfs_ioctl_clone(struct file *file, unsigned long srcfd,
3558 u64 off, u64 olen, u64 destoff)
3559{
Al Viro54563d42013-09-01 15:57:51 -04003560 struct inode *inode = file_inode(file);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003561 struct btrfs_root *root = BTRFS_I(inode)->root;
3562 struct fd src_file;
3563 struct inode *src;
3564 int ret;
3565 u64 len = olen;
3566 u64 bs = root->fs_info->sb->s_blocksize;
3567 int same_inode = 0;
3568
3569 /*
3570 * TODO:
3571 * - split compressed inline extents. annoying: we need to
3572 * decompress into destination's address_space (the file offset
3573 * may change, so source mapping won't do), then recompress (or
3574 * otherwise reinsert) a subrange.
Liu Bo00fdf132014-03-10 18:56:07 +08003575 *
3576 * - split destination inode's inline extents. The inline extents can
3577 * be either compressed or non-compressed.
Mark Fasheh32b7c682013-08-06 11:42:49 -07003578 */
3579
3580 /* the destination must be opened for writing */
3581 if (!(file->f_mode & FMODE_WRITE) || (file->f_flags & O_APPEND))
3582 return -EINVAL;
3583
3584 if (btrfs_root_readonly(root))
3585 return -EROFS;
3586
3587 ret = mnt_want_write_file(file);
3588 if (ret)
3589 return ret;
3590
3591 src_file = fdget(srcfd);
3592 if (!src_file.file) {
3593 ret = -EBADF;
3594 goto out_drop_write;
3595 }
3596
3597 ret = -EXDEV;
3598 if (src_file.file->f_path.mnt != file->f_path.mnt)
3599 goto out_fput;
3600
3601 src = file_inode(src_file.file);
3602
3603 ret = -EINVAL;
3604 if (src == inode)
3605 same_inode = 1;
3606
3607 /* the src must be open for reading */
3608 if (!(src_file.file->f_mode & FMODE_READ))
3609 goto out_fput;
3610
3611 /* don't make the dst file partly checksummed */
3612 if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
3613 (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM))
3614 goto out_fput;
3615
3616 ret = -EISDIR;
3617 if (S_ISDIR(src->i_mode) || S_ISDIR(inode->i_mode))
3618 goto out_fput;
3619
3620 ret = -EXDEV;
3621 if (src->i_sb != inode->i_sb)
3622 goto out_fput;
3623
3624 if (!same_inode) {
3625 if (inode < src) {
3626 mutex_lock_nested(&inode->i_mutex, I_MUTEX_PARENT);
3627 mutex_lock_nested(&src->i_mutex, I_MUTEX_CHILD);
3628 } else {
3629 mutex_lock_nested(&src->i_mutex, I_MUTEX_PARENT);
3630 mutex_lock_nested(&inode->i_mutex, I_MUTEX_CHILD);
3631 }
3632 } else {
3633 mutex_lock(&src->i_mutex);
3634 }
3635
3636 /* determine range to clone */
3637 ret = -EINVAL;
3638 if (off + len > src->i_size || off + len < off)
3639 goto out_unlock;
3640 if (len == 0)
3641 olen = len = src->i_size - off;
3642 /* if we extend to eof, continue to block boundary */
3643 if (off + len == src->i_size)
3644 len = ALIGN(src->i_size, bs) - off;
3645
3646 /* verify the end result is block aligned */
3647 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs) ||
3648 !IS_ALIGNED(destoff, bs))
3649 goto out_unlock;
3650
3651 /* verify if ranges are overlapped within the same file */
3652 if (same_inode) {
3653 if (destoff + len > off && destoff < off + len)
3654 goto out_unlock;
3655 }
3656
3657 if (destoff > inode->i_size) {
3658 ret = btrfs_cont_expand(inode, inode->i_size, destoff);
3659 if (ret)
3660 goto out_unlock;
3661 }
3662
Filipe Mananac125b8b2014-05-23 05:03:34 +01003663 /*
3664 * Lock the target range too. Right after we replace the file extent
3665 * items in the fs tree (which now point to the cloned data), we might
3666 * have a worker replace them with extent items relative to a write
3667 * operation that was issued before this clone operation (i.e. confront
3668 * with inode.c:btrfs_finish_ordered_io).
3669 */
3670 if (same_inode) {
3671 u64 lock_start = min_t(u64, off, destoff);
3672 u64 lock_len = max_t(u64, off, destoff) + len - lock_start;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003673
Filipe Mananac125b8b2014-05-23 05:03:34 +01003674 lock_extent_range(src, lock_start, lock_len);
3675 } else {
3676 lock_extent_range(src, off, len);
3677 lock_extent_range(inode, destoff, len);
3678 }
Mark Fasheh32b7c682013-08-06 11:42:49 -07003679
3680 ret = btrfs_clone(src, inode, off, olen, len, destoff);
3681
Filipe Mananac125b8b2014-05-23 05:03:34 +01003682 if (same_inode) {
3683 u64 lock_start = min_t(u64, off, destoff);
3684 u64 lock_end = max_t(u64, off, destoff) + len - 1;
3685
3686 unlock_extent(&BTRFS_I(src)->io_tree, lock_start, lock_end);
3687 } else {
3688 unlock_extent(&BTRFS_I(src)->io_tree, off, off + len - 1);
3689 unlock_extent(&BTRFS_I(inode)->io_tree, destoff,
3690 destoff + len - 1);
3691 }
3692 /*
3693 * Truncate page cache pages so that future reads will see the cloned
3694 * data immediately and not the previous data.
3695 */
3696 truncate_inode_pages_range(&inode->i_data, destoff,
3697 PAGE_CACHE_ALIGN(destoff + len) - 1);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003698out_unlock:
Filipe David Borba Mananac57c2b32014-01-11 21:31:25 +00003699 if (!same_inode) {
3700 if (inode < src) {
3701 mutex_unlock(&src->i_mutex);
3702 mutex_unlock(&inode->i_mutex);
3703 } else {
3704 mutex_unlock(&inode->i_mutex);
3705 mutex_unlock(&src->i_mutex);
3706 }
3707 } else {
3708 mutex_unlock(&src->i_mutex);
3709 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003710out_fput:
Al Viro2903ff02012-08-28 12:52:22 -04003711 fdput(src_file);
Yan Zhengab67b7c2008-12-19 10:58:39 -05003712out_drop_write:
Al Viro2a79f172011-12-09 08:06:57 -05003713 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003714 return ret;
3715}
3716
Christoph Hellwig7a865e82008-12-02 09:52:24 -05003717static long btrfs_ioctl_clone_range(struct file *file, void __user *argp)
Sage Weilc5c9cd42008-11-12 14:32:25 -05003718{
3719 struct btrfs_ioctl_clone_range_args args;
3720
Christoph Hellwig7a865e82008-12-02 09:52:24 -05003721 if (copy_from_user(&args, argp, sizeof(args)))
Sage Weilc5c9cd42008-11-12 14:32:25 -05003722 return -EFAULT;
3723 return btrfs_ioctl_clone(file, args.src_fd, args.src_offset,
3724 args.src_length, args.dest_offset);
3725}
3726
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003727/*
3728 * there are many ways the trans_start and trans_end ioctls can lead
3729 * to deadlocks. They should only be used by applications that
3730 * basically own the machine, and have a very in depth understanding
3731 * of all the possible deadlocks and enospc problems.
3732 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05003733static long btrfs_ioctl_trans_start(struct file *file)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003734{
Al Viro496ad9a2013-01-23 17:07:38 -05003735 struct inode *inode = file_inode(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003736 struct btrfs_root *root = BTRFS_I(inode)->root;
3737 struct btrfs_trans_handle *trans;
Sage Weil1ab86ae2009-09-29 18:38:44 -04003738 int ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003739
Sage Weil1ab86ae2009-09-29 18:38:44 -04003740 ret = -EPERM;
Christoph Hellwigdf5b5522008-06-11 21:53:58 -04003741 if (!capable(CAP_SYS_ADMIN))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003742 goto out;
Sage Weil1ab86ae2009-09-29 18:38:44 -04003743
3744 ret = -EINPROGRESS;
3745 if (file->private_data)
3746 goto out;
Sage Weil9ca9ee02008-08-04 10:41:27 -04003747
Li Zefanb83cc962010-12-20 16:04:08 +08003748 ret = -EROFS;
3749 if (btrfs_root_readonly(root))
3750 goto out;
3751
Al Viroa561be72011-11-23 11:57:51 -05003752 ret = mnt_want_write_file(file);
Yan Zhengc146afa2008-11-12 14:34:12 -05003753 if (ret)
3754 goto out;
3755
Josef Bacika4abeea2011-04-11 17:25:13 -04003756 atomic_inc(&root->fs_info->open_ioctl_trans);
Sage Weil9ca9ee02008-08-04 10:41:27 -04003757
Sage Weil1ab86ae2009-09-29 18:38:44 -04003758 ret = -ENOMEM;
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003759 trans = btrfs_start_ioctl_transaction(root);
Tsutomu Itohabd30bb2011-01-24 00:57:10 +00003760 if (IS_ERR(trans))
Sage Weil1ab86ae2009-09-29 18:38:44 -04003761 goto out_drop;
3762
3763 file->private_data = trans;
3764 return 0;
3765
3766out_drop:
Josef Bacika4abeea2011-04-11 17:25:13 -04003767 atomic_dec(&root->fs_info->open_ioctl_trans);
Al Viro2a79f172011-12-09 08:06:57 -05003768 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003769out:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003770 return ret;
3771}
3772
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003773static long btrfs_ioctl_default_subvol(struct file *file, void __user *argp)
3774{
Al Viro496ad9a2013-01-23 17:07:38 -05003775 struct inode *inode = file_inode(file);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003776 struct btrfs_root *root = BTRFS_I(inode)->root;
3777 struct btrfs_root *new_root;
3778 struct btrfs_dir_item *di;
3779 struct btrfs_trans_handle *trans;
3780 struct btrfs_path *path;
3781 struct btrfs_key location;
3782 struct btrfs_disk_key disk_key;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003783 u64 objectid = 0;
3784 u64 dir_id;
Miao Xie3c04ce02012-11-26 08:43:07 +00003785 int ret;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003786
3787 if (!capable(CAP_SYS_ADMIN))
3788 return -EPERM;
3789
Miao Xie3c04ce02012-11-26 08:43:07 +00003790 ret = mnt_want_write_file(file);
3791 if (ret)
3792 return ret;
3793
3794 if (copy_from_user(&objectid, argp, sizeof(objectid))) {
3795 ret = -EFAULT;
3796 goto out;
3797 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003798
3799 if (!objectid)
chandan1cecf572013-09-13 19:34:10 +05303800 objectid = BTRFS_FS_TREE_OBJECTID;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003801
3802 location.objectid = objectid;
3803 location.type = BTRFS_ROOT_ITEM_KEY;
3804 location.offset = (u64)-1;
3805
3806 new_root = btrfs_read_fs_root_no_name(root->fs_info, &location);
Miao Xie3c04ce02012-11-26 08:43:07 +00003807 if (IS_ERR(new_root)) {
3808 ret = PTR_ERR(new_root);
3809 goto out;
3810 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003811
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003812 path = btrfs_alloc_path();
Miao Xie3c04ce02012-11-26 08:43:07 +00003813 if (!path) {
3814 ret = -ENOMEM;
3815 goto out;
3816 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003817 path->leave_spinning = 1;
3818
3819 trans = btrfs_start_transaction(root, 1);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00003820 if (IS_ERR(trans)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003821 btrfs_free_path(path);
Miao Xie3c04ce02012-11-26 08:43:07 +00003822 ret = PTR_ERR(trans);
3823 goto out;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003824 }
3825
David Sterba6c417612011-04-13 15:41:04 +02003826 dir_id = btrfs_super_root_dir(root->fs_info->super_copy);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003827 di = btrfs_lookup_dir_item(trans, root->fs_info->tree_root, path,
3828 dir_id, "default", 7, 1);
Dan Carpentercf1e99a2010-05-29 09:47:24 +00003829 if (IS_ERR_OR_NULL(di)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003830 btrfs_free_path(path);
3831 btrfs_end_transaction(trans, root);
Frank Holtonefe120a2013-12-20 11:37:06 -05003832 btrfs_err(new_root->fs_info, "Umm, you don't have the default dir"
3833 "item, this isn't going to work");
Miao Xie3c04ce02012-11-26 08:43:07 +00003834 ret = -ENOENT;
3835 goto out;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003836 }
3837
3838 btrfs_cpu_key_to_disk(&disk_key, &new_root->root_key);
3839 btrfs_set_dir_item_key(path->nodes[0], di, &disk_key);
3840 btrfs_mark_buffer_dirty(path->nodes[0]);
3841 btrfs_free_path(path);
3842
Mitch Harder2b0ce2c2012-07-24 11:58:43 -06003843 btrfs_set_fs_incompat(root->fs_info, DEFAULT_SUBVOL);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003844 btrfs_end_transaction(trans, root);
Miao Xie3c04ce02012-11-26 08:43:07 +00003845out:
3846 mnt_drop_write_file(file);
3847 return ret;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003848}
3849
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02003850void btrfs_get_block_group_info(struct list_head *groups_list,
3851 struct btrfs_ioctl_space_info *space)
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003852{
3853 struct btrfs_block_group_cache *block_group;
3854
3855 space->total_bytes = 0;
3856 space->used_bytes = 0;
3857 space->flags = 0;
3858 list_for_each_entry(block_group, groups_list, list) {
3859 space->flags = block_group->flags;
3860 space->total_bytes += block_group->key.offset;
3861 space->used_bytes +=
3862 btrfs_block_group_used(&block_group->item);
3863 }
3864}
3865
Eric Sandeen48a3b632013-04-25 20:41:01 +00003866static long btrfs_ioctl_space_info(struct btrfs_root *root, void __user *arg)
Josef Bacik1406e432010-01-13 18:19:06 +00003867{
3868 struct btrfs_ioctl_space_args space_args;
3869 struct btrfs_ioctl_space_info space;
3870 struct btrfs_ioctl_space_info *dest;
Chris Mason7fde62b2010-03-16 15:40:10 -04003871 struct btrfs_ioctl_space_info *dest_orig;
Daniel J Blueman13f26962011-04-11 15:56:31 +00003872 struct btrfs_ioctl_space_info __user *user_dest;
Josef Bacik1406e432010-01-13 18:19:06 +00003873 struct btrfs_space_info *info;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003874 u64 types[] = {BTRFS_BLOCK_GROUP_DATA,
3875 BTRFS_BLOCK_GROUP_SYSTEM,
3876 BTRFS_BLOCK_GROUP_METADATA,
3877 BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA};
3878 int num_types = 4;
Chris Mason7fde62b2010-03-16 15:40:10 -04003879 int alloc_size;
Josef Bacik1406e432010-01-13 18:19:06 +00003880 int ret = 0;
Dan Rosenberg51788b12011-02-14 16:04:23 -05003881 u64 slot_count = 0;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003882 int i, c;
Josef Bacik1406e432010-01-13 18:19:06 +00003883
3884 if (copy_from_user(&space_args,
3885 (struct btrfs_ioctl_space_args __user *)arg,
3886 sizeof(space_args)))
3887 return -EFAULT;
3888
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003889 for (i = 0; i < num_types; i++) {
3890 struct btrfs_space_info *tmp;
3891
3892 info = NULL;
3893 rcu_read_lock();
3894 list_for_each_entry_rcu(tmp, &root->fs_info->space_info,
3895 list) {
3896 if (tmp->flags == types[i]) {
3897 info = tmp;
3898 break;
3899 }
3900 }
3901 rcu_read_unlock();
3902
3903 if (!info)
3904 continue;
3905
3906 down_read(&info->groups_sem);
3907 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
3908 if (!list_empty(&info->block_groups[c]))
3909 slot_count++;
3910 }
3911 up_read(&info->groups_sem);
3912 }
Josef Bacik1406e432010-01-13 18:19:06 +00003913
David Sterba36523e952014-02-07 14:34:12 +01003914 /*
3915 * Global block reserve, exported as a space_info
3916 */
3917 slot_count++;
3918
Chris Mason7fde62b2010-03-16 15:40:10 -04003919 /* space_slots == 0 means they are asking for a count */
3920 if (space_args.space_slots == 0) {
3921 space_args.total_spaces = slot_count;
3922 goto out;
3923 }
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003924
Dan Rosenberg51788b12011-02-14 16:04:23 -05003925 slot_count = min_t(u64, space_args.space_slots, slot_count);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003926
Chris Mason7fde62b2010-03-16 15:40:10 -04003927 alloc_size = sizeof(*dest) * slot_count;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003928
Chris Mason7fde62b2010-03-16 15:40:10 -04003929 /* we generally have at most 6 or so space infos, one for each raid
3930 * level. So, a whole page should be more than enough for everyone
3931 */
3932 if (alloc_size > PAGE_CACHE_SIZE)
3933 return -ENOMEM;
3934
3935 space_args.total_spaces = 0;
3936 dest = kmalloc(alloc_size, GFP_NOFS);
3937 if (!dest)
3938 return -ENOMEM;
3939 dest_orig = dest;
3940
3941 /* now we have a buffer to copy into */
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003942 for (i = 0; i < num_types; i++) {
3943 struct btrfs_space_info *tmp;
Chris Mason7fde62b2010-03-16 15:40:10 -04003944
Dan Rosenberg51788b12011-02-14 16:04:23 -05003945 if (!slot_count)
3946 break;
3947
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003948 info = NULL;
3949 rcu_read_lock();
3950 list_for_each_entry_rcu(tmp, &root->fs_info->space_info,
3951 list) {
3952 if (tmp->flags == types[i]) {
3953 info = tmp;
3954 break;
3955 }
3956 }
3957 rcu_read_unlock();
Chris Mason7fde62b2010-03-16 15:40:10 -04003958
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003959 if (!info)
3960 continue;
3961 down_read(&info->groups_sem);
3962 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
3963 if (!list_empty(&info->block_groups[c])) {
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02003964 btrfs_get_block_group_info(
3965 &info->block_groups[c], &space);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003966 memcpy(dest, &space, sizeof(space));
3967 dest++;
3968 space_args.total_spaces++;
Dan Rosenberg51788b12011-02-14 16:04:23 -05003969 slot_count--;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003970 }
Dan Rosenberg51788b12011-02-14 16:04:23 -05003971 if (!slot_count)
3972 break;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003973 }
3974 up_read(&info->groups_sem);
Josef Bacik1406e432010-01-13 18:19:06 +00003975 }
Josef Bacik1406e432010-01-13 18:19:06 +00003976
David Sterba36523e952014-02-07 14:34:12 +01003977 /*
3978 * Add global block reserve
3979 */
3980 if (slot_count) {
3981 struct btrfs_block_rsv *block_rsv = &root->fs_info->global_block_rsv;
3982
3983 spin_lock(&block_rsv->lock);
3984 space.total_bytes = block_rsv->size;
3985 space.used_bytes = block_rsv->size - block_rsv->reserved;
3986 spin_unlock(&block_rsv->lock);
3987 space.flags = BTRFS_SPACE_INFO_GLOBAL_RSV;
3988 memcpy(dest, &space, sizeof(space));
3989 space_args.total_spaces++;
3990 }
3991
Daniel J Blueman2eec6c82012-04-26 00:37:14 +08003992 user_dest = (struct btrfs_ioctl_space_info __user *)
Chris Mason7fde62b2010-03-16 15:40:10 -04003993 (arg + sizeof(struct btrfs_ioctl_space_args));
3994
3995 if (copy_to_user(user_dest, dest_orig, alloc_size))
3996 ret = -EFAULT;
3997
3998 kfree(dest_orig);
3999out:
4000 if (ret == 0 && copy_to_user(arg, &space_args, sizeof(space_args)))
Josef Bacik1406e432010-01-13 18:19:06 +00004001 ret = -EFAULT;
4002
4003 return ret;
4004}
4005
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004006/*
4007 * there are many ways the trans_start and trans_end ioctls can lead
4008 * to deadlocks. They should only be used by applications that
4009 * basically own the machine, and have a very in depth understanding
4010 * of all the possible deadlocks and enospc problems.
4011 */
4012long btrfs_ioctl_trans_end(struct file *file)
4013{
Al Viro496ad9a2013-01-23 17:07:38 -05004014 struct inode *inode = file_inode(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004015 struct btrfs_root *root = BTRFS_I(inode)->root;
4016 struct btrfs_trans_handle *trans;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004017
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004018 trans = file->private_data;
Sage Weil1ab86ae2009-09-29 18:38:44 -04004019 if (!trans)
4020 return -EINVAL;
Christoph Hellwigb2141072008-09-05 16:43:31 -04004021 file->private_data = NULL;
Sage Weil9ca9ee02008-08-04 10:41:27 -04004022
Sage Weil1ab86ae2009-09-29 18:38:44 -04004023 btrfs_end_transaction(trans, root);
4024
Josef Bacika4abeea2011-04-11 17:25:13 -04004025 atomic_dec(&root->fs_info->open_ioctl_trans);
Sage Weil9ca9ee02008-08-04 10:41:27 -04004026
Al Viro2a79f172011-12-09 08:06:57 -05004027 mnt_drop_write_file(file);
Sage Weil1ab86ae2009-09-29 18:38:44 -04004028 return 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004029}
4030
Miao Xie9a8c28b2012-11-26 08:40:43 +00004031static noinline long btrfs_ioctl_start_sync(struct btrfs_root *root,
4032 void __user *argp)
Sage Weil46204592010-10-29 15:41:32 -04004033{
Sage Weil46204592010-10-29 15:41:32 -04004034 struct btrfs_trans_handle *trans;
4035 u64 transid;
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004036 int ret;
Sage Weil46204592010-10-29 15:41:32 -04004037
Miao Xied4edf392013-02-20 09:17:06 +00004038 trans = btrfs_attach_transaction_barrier(root);
Miao Xieff7c1d32012-11-26 08:41:29 +00004039 if (IS_ERR(trans)) {
4040 if (PTR_ERR(trans) != -ENOENT)
4041 return PTR_ERR(trans);
4042
4043 /* No running transaction, don't bother */
4044 transid = root->fs_info->last_trans_committed;
4045 goto out;
4046 }
Sage Weil46204592010-10-29 15:41:32 -04004047 transid = trans->transid;
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004048 ret = btrfs_commit_transaction_async(trans, root, 0);
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00004049 if (ret) {
4050 btrfs_end_transaction(trans, root);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004051 return ret;
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00004052 }
Miao Xieff7c1d32012-11-26 08:41:29 +00004053out:
Sage Weil46204592010-10-29 15:41:32 -04004054 if (argp)
4055 if (copy_to_user(argp, &transid, sizeof(transid)))
4056 return -EFAULT;
4057 return 0;
4058}
4059
Miao Xie9a8c28b2012-11-26 08:40:43 +00004060static noinline long btrfs_ioctl_wait_sync(struct btrfs_root *root,
4061 void __user *argp)
Sage Weil46204592010-10-29 15:41:32 -04004062{
Sage Weil46204592010-10-29 15:41:32 -04004063 u64 transid;
4064
4065 if (argp) {
4066 if (copy_from_user(&transid, argp, sizeof(transid)))
4067 return -EFAULT;
4068 } else {
4069 transid = 0; /* current trans */
4070 }
4071 return btrfs_wait_for_commit(root, transid);
4072}
4073
Miao Xieb8e95482012-11-26 08:48:01 +00004074static long btrfs_ioctl_scrub(struct file *file, void __user *arg)
Jan Schmidt475f6382011-03-11 15:41:01 +01004075{
Al Viro496ad9a2013-01-23 17:07:38 -05004076 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Jan Schmidt475f6382011-03-11 15:41:01 +01004077 struct btrfs_ioctl_scrub_args *sa;
Miao Xieb8e95482012-11-26 08:48:01 +00004078 int ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01004079
4080 if (!capable(CAP_SYS_ADMIN))
4081 return -EPERM;
4082
4083 sa = memdup_user(arg, sizeof(*sa));
4084 if (IS_ERR(sa))
4085 return PTR_ERR(sa);
4086
Miao Xieb8e95482012-11-26 08:48:01 +00004087 if (!(sa->flags & BTRFS_SCRUB_READONLY)) {
4088 ret = mnt_want_write_file(file);
4089 if (ret)
4090 goto out;
4091 }
4092
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01004093 ret = btrfs_scrub_dev(root->fs_info, sa->devid, sa->start, sa->end,
Stefan Behrens63a212a2012-11-05 18:29:28 +01004094 &sa->progress, sa->flags & BTRFS_SCRUB_READONLY,
4095 0);
Jan Schmidt475f6382011-03-11 15:41:01 +01004096
4097 if (copy_to_user(arg, sa, sizeof(*sa)))
4098 ret = -EFAULT;
4099
Miao Xieb8e95482012-11-26 08:48:01 +00004100 if (!(sa->flags & BTRFS_SCRUB_READONLY))
4101 mnt_drop_write_file(file);
4102out:
Jan Schmidt475f6382011-03-11 15:41:01 +01004103 kfree(sa);
4104 return ret;
4105}
4106
4107static long btrfs_ioctl_scrub_cancel(struct btrfs_root *root, void __user *arg)
4108{
4109 if (!capable(CAP_SYS_ADMIN))
4110 return -EPERM;
4111
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01004112 return btrfs_scrub_cancel(root->fs_info);
Jan Schmidt475f6382011-03-11 15:41:01 +01004113}
4114
4115static long btrfs_ioctl_scrub_progress(struct btrfs_root *root,
4116 void __user *arg)
4117{
4118 struct btrfs_ioctl_scrub_args *sa;
4119 int ret;
4120
4121 if (!capable(CAP_SYS_ADMIN))
4122 return -EPERM;
4123
4124 sa = memdup_user(arg, sizeof(*sa));
4125 if (IS_ERR(sa))
4126 return PTR_ERR(sa);
4127
4128 ret = btrfs_scrub_progress(root, sa->devid, &sa->progress);
4129
4130 if (copy_to_user(arg, sa, sizeof(*sa)))
4131 ret = -EFAULT;
4132
4133 kfree(sa);
4134 return ret;
4135}
4136
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004137static long btrfs_ioctl_get_dev_stats(struct btrfs_root *root,
David Sterbab27f7c02012-06-22 06:30:39 -06004138 void __user *arg)
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004139{
4140 struct btrfs_ioctl_get_dev_stats *sa;
4141 int ret;
4142
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004143 sa = memdup_user(arg, sizeof(*sa));
4144 if (IS_ERR(sa))
4145 return PTR_ERR(sa);
4146
David Sterbab27f7c02012-06-22 06:30:39 -06004147 if ((sa->flags & BTRFS_DEV_STATS_RESET) && !capable(CAP_SYS_ADMIN)) {
4148 kfree(sa);
4149 return -EPERM;
4150 }
4151
4152 ret = btrfs_get_dev_stats(root, sa);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004153
4154 if (copy_to_user(arg, sa, sizeof(*sa)))
4155 ret = -EFAULT;
4156
4157 kfree(sa);
4158 return ret;
4159}
4160
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004161static long btrfs_ioctl_dev_replace(struct btrfs_root *root, void __user *arg)
4162{
4163 struct btrfs_ioctl_dev_replace_args *p;
4164 int ret;
4165
4166 if (!capable(CAP_SYS_ADMIN))
4167 return -EPERM;
4168
4169 p = memdup_user(arg, sizeof(*p));
4170 if (IS_ERR(p))
4171 return PTR_ERR(p);
4172
4173 switch (p->cmd) {
4174 case BTRFS_IOCTL_DEV_REPLACE_CMD_START:
Ilya Dryomovadfa97c2013-10-10 20:39:28 +03004175 if (root->fs_info->sb->s_flags & MS_RDONLY) {
4176 ret = -EROFS;
4177 goto out;
4178 }
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004179 if (atomic_xchg(
4180 &root->fs_info->mutually_exclusive_operation_running,
4181 1)) {
Anand Jaine57138b2013-08-21 11:44:48 +08004182 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004183 } else {
4184 ret = btrfs_dev_replace_start(root, p);
4185 atomic_set(
4186 &root->fs_info->mutually_exclusive_operation_running,
4187 0);
4188 }
4189 break;
4190 case BTRFS_IOCTL_DEV_REPLACE_CMD_STATUS:
4191 btrfs_dev_replace_status(root->fs_info, p);
4192 ret = 0;
4193 break;
4194 case BTRFS_IOCTL_DEV_REPLACE_CMD_CANCEL:
4195 ret = btrfs_dev_replace_cancel(root->fs_info, p);
4196 break;
4197 default:
4198 ret = -EINVAL;
4199 break;
4200 }
4201
4202 if (copy_to_user(arg, p, sizeof(*p)))
4203 ret = -EFAULT;
Ilya Dryomovadfa97c2013-10-10 20:39:28 +03004204out:
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004205 kfree(p);
4206 return ret;
4207}
4208
Jan Schmidtd7728c92011-07-07 16:48:38 +02004209static long btrfs_ioctl_ino_to_path(struct btrfs_root *root, void __user *arg)
4210{
4211 int ret = 0;
4212 int i;
Chris Mason740c3d22011-11-02 15:48:34 -04004213 u64 rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004214 int size;
Chris Mason806468f2011-11-06 03:07:10 -05004215 struct btrfs_ioctl_ino_path_args *ipa = NULL;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004216 struct inode_fs_paths *ipath = NULL;
4217 struct btrfs_path *path;
4218
Kusanagi Kouichi82b22ac2013-01-28 11:33:31 +00004219 if (!capable(CAP_DAC_READ_SEARCH))
Jan Schmidtd7728c92011-07-07 16:48:38 +02004220 return -EPERM;
4221
4222 path = btrfs_alloc_path();
4223 if (!path) {
4224 ret = -ENOMEM;
4225 goto out;
4226 }
4227
4228 ipa = memdup_user(arg, sizeof(*ipa));
4229 if (IS_ERR(ipa)) {
4230 ret = PTR_ERR(ipa);
4231 ipa = NULL;
4232 goto out;
4233 }
4234
4235 size = min_t(u32, ipa->size, 4096);
4236 ipath = init_ipath(size, root, path);
4237 if (IS_ERR(ipath)) {
4238 ret = PTR_ERR(ipath);
4239 ipath = NULL;
4240 goto out;
4241 }
4242
4243 ret = paths_from_inode(ipa->inum, ipath);
4244 if (ret < 0)
4245 goto out;
4246
4247 for (i = 0; i < ipath->fspath->elem_cnt; ++i) {
Jeff Mahoney745c4d82011-11-20 07:31:57 -05004248 rel_ptr = ipath->fspath->val[i] -
4249 (u64)(unsigned long)ipath->fspath->val;
Chris Mason740c3d22011-11-02 15:48:34 -04004250 ipath->fspath->val[i] = rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004251 }
4252
Jeff Mahoney745c4d82011-11-20 07:31:57 -05004253 ret = copy_to_user((void *)(unsigned long)ipa->fspath,
4254 (void *)(unsigned long)ipath->fspath, size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004255 if (ret) {
4256 ret = -EFAULT;
4257 goto out;
4258 }
4259
4260out:
4261 btrfs_free_path(path);
4262 free_ipath(ipath);
4263 kfree(ipa);
4264
4265 return ret;
4266}
4267
4268static int build_ino_list(u64 inum, u64 offset, u64 root, void *ctx)
4269{
4270 struct btrfs_data_container *inodes = ctx;
4271 const size_t c = 3 * sizeof(u64);
4272
4273 if (inodes->bytes_left >= c) {
4274 inodes->bytes_left -= c;
4275 inodes->val[inodes->elem_cnt] = inum;
4276 inodes->val[inodes->elem_cnt + 1] = offset;
4277 inodes->val[inodes->elem_cnt + 2] = root;
4278 inodes->elem_cnt += 3;
4279 } else {
4280 inodes->bytes_missing += c - inodes->bytes_left;
4281 inodes->bytes_left = 0;
4282 inodes->elem_missed += 3;
4283 }
4284
4285 return 0;
4286}
4287
4288static long btrfs_ioctl_logical_to_ino(struct btrfs_root *root,
4289 void __user *arg)
4290{
4291 int ret = 0;
4292 int size;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004293 struct btrfs_ioctl_logical_ino_args *loi;
4294 struct btrfs_data_container *inodes = NULL;
4295 struct btrfs_path *path = NULL;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004296
4297 if (!capable(CAP_SYS_ADMIN))
4298 return -EPERM;
4299
4300 loi = memdup_user(arg, sizeof(*loi));
4301 if (IS_ERR(loi)) {
4302 ret = PTR_ERR(loi);
4303 loi = NULL;
4304 goto out;
4305 }
4306
4307 path = btrfs_alloc_path();
4308 if (!path) {
4309 ret = -ENOMEM;
4310 goto out;
4311 }
4312
Liu Bo425d17a2012-09-07 20:01:30 -06004313 size = min_t(u32, loi->size, 64 * 1024);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004314 inodes = init_data_container(size);
4315 if (IS_ERR(inodes)) {
4316 ret = PTR_ERR(inodes);
4317 inodes = NULL;
4318 goto out;
4319 }
4320
Liu Bodf031f02012-09-07 20:01:29 -06004321 ret = iterate_inodes_from_logical(loi->logical, root->fs_info, path,
4322 build_ino_list, inodes);
4323 if (ret == -EINVAL)
Jan Schmidtd7728c92011-07-07 16:48:38 +02004324 ret = -ENOENT;
4325 if (ret < 0)
4326 goto out;
4327
Jeff Mahoney745c4d82011-11-20 07:31:57 -05004328 ret = copy_to_user((void *)(unsigned long)loi->inodes,
4329 (void *)(unsigned long)inodes, size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004330 if (ret)
4331 ret = -EFAULT;
4332
4333out:
4334 btrfs_free_path(path);
Liu Bo425d17a2012-09-07 20:01:30 -06004335 vfree(inodes);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004336 kfree(loi);
4337
4338 return ret;
4339}
4340
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004341void update_ioctl_balance_args(struct btrfs_fs_info *fs_info, int lock,
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004342 struct btrfs_ioctl_balance_args *bargs)
4343{
4344 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
4345
4346 bargs->flags = bctl->flags;
4347
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004348 if (atomic_read(&fs_info->balance_running))
4349 bargs->state |= BTRFS_BALANCE_STATE_RUNNING;
4350 if (atomic_read(&fs_info->balance_pause_req))
4351 bargs->state |= BTRFS_BALANCE_STATE_PAUSE_REQ;
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004352 if (atomic_read(&fs_info->balance_cancel_req))
4353 bargs->state |= BTRFS_BALANCE_STATE_CANCEL_REQ;
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004354
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004355 memcpy(&bargs->data, &bctl->data, sizeof(bargs->data));
4356 memcpy(&bargs->meta, &bctl->meta, sizeof(bargs->meta));
4357 memcpy(&bargs->sys, &bctl->sys, sizeof(bargs->sys));
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004358
4359 if (lock) {
4360 spin_lock(&fs_info->balance_lock);
4361 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
4362 spin_unlock(&fs_info->balance_lock);
4363 } else {
4364 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
4365 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004366}
4367
Liu Bo9ba1f6e2012-05-11 18:11:26 +08004368static long btrfs_ioctl_balance(struct file *file, void __user *arg)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004369{
Al Viro496ad9a2013-01-23 17:07:38 -05004370 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004371 struct btrfs_fs_info *fs_info = root->fs_info;
4372 struct btrfs_ioctl_balance_args *bargs;
4373 struct btrfs_balance_control *bctl;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004374 bool need_unlock; /* for mut. excl. ops lock */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004375 int ret;
4376
4377 if (!capable(CAP_SYS_ADMIN))
4378 return -EPERM;
4379
Liu Boe54bfa32012-06-29 03:58:48 -06004380 ret = mnt_want_write_file(file);
Liu Bo9ba1f6e2012-05-11 18:11:26 +08004381 if (ret)
4382 return ret;
4383
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004384again:
4385 if (!atomic_xchg(&fs_info->mutually_exclusive_operation_running, 1)) {
4386 mutex_lock(&fs_info->volume_mutex);
4387 mutex_lock(&fs_info->balance_mutex);
4388 need_unlock = true;
4389 goto locked;
4390 }
4391
4392 /*
4393 * mut. excl. ops lock is locked. Three possibilites:
4394 * (1) some other op is running
4395 * (2) balance is running
4396 * (3) balance is paused -- special case (think resume)
4397 */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004398 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004399 if (fs_info->balance_ctl) {
4400 /* this is either (2) or (3) */
4401 if (!atomic_read(&fs_info->balance_running)) {
4402 mutex_unlock(&fs_info->balance_mutex);
4403 if (!mutex_trylock(&fs_info->volume_mutex))
4404 goto again;
4405 mutex_lock(&fs_info->balance_mutex);
4406
4407 if (fs_info->balance_ctl &&
4408 !atomic_read(&fs_info->balance_running)) {
4409 /* this is (3) */
4410 need_unlock = false;
4411 goto locked;
4412 }
4413
4414 mutex_unlock(&fs_info->balance_mutex);
4415 mutex_unlock(&fs_info->volume_mutex);
4416 goto again;
4417 } else {
4418 /* this is (2) */
4419 mutex_unlock(&fs_info->balance_mutex);
4420 ret = -EINPROGRESS;
4421 goto out;
4422 }
4423 } else {
4424 /* this is (1) */
4425 mutex_unlock(&fs_info->balance_mutex);
Anand Jaine57138b2013-08-21 11:44:48 +08004426 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004427 goto out;
4428 }
4429
4430locked:
4431 BUG_ON(!atomic_read(&fs_info->mutually_exclusive_operation_running));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004432
4433 if (arg) {
4434 bargs = memdup_user(arg, sizeof(*bargs));
4435 if (IS_ERR(bargs)) {
4436 ret = PTR_ERR(bargs);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004437 goto out_unlock;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004438 }
Ilya Dryomovde322262012-01-16 22:04:49 +02004439
4440 if (bargs->flags & BTRFS_BALANCE_RESUME) {
4441 if (!fs_info->balance_ctl) {
4442 ret = -ENOTCONN;
4443 goto out_bargs;
4444 }
4445
4446 bctl = fs_info->balance_ctl;
4447 spin_lock(&fs_info->balance_lock);
4448 bctl->flags |= BTRFS_BALANCE_RESUME;
4449 spin_unlock(&fs_info->balance_lock);
4450
4451 goto do_balance;
4452 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004453 } else {
4454 bargs = NULL;
4455 }
4456
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004457 if (fs_info->balance_ctl) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004458 ret = -EINPROGRESS;
4459 goto out_bargs;
4460 }
4461
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004462 bctl = kzalloc(sizeof(*bctl), GFP_NOFS);
4463 if (!bctl) {
4464 ret = -ENOMEM;
4465 goto out_bargs;
4466 }
4467
4468 bctl->fs_info = fs_info;
4469 if (arg) {
4470 memcpy(&bctl->data, &bargs->data, sizeof(bctl->data));
4471 memcpy(&bctl->meta, &bargs->meta, sizeof(bctl->meta));
4472 memcpy(&bctl->sys, &bargs->sys, sizeof(bctl->sys));
4473
4474 bctl->flags = bargs->flags;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02004475 } else {
4476 /* balance everything - no filters */
4477 bctl->flags |= BTRFS_BALANCE_TYPE_MASK;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004478 }
4479
Ilya Dryomovde322262012-01-16 22:04:49 +02004480do_balance:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004481 /*
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004482 * Ownership of bctl and mutually_exclusive_operation_running
4483 * goes to to btrfs_balance. bctl is freed in __cancel_balance,
4484 * or, if restriper was paused all the way until unmount, in
4485 * free_fs_info. mutually_exclusive_operation_running is
4486 * cleared in __cancel_balance.
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004487 */
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004488 need_unlock = false;
4489
4490 ret = btrfs_balance(bctl, bargs);
4491
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004492 if (arg) {
4493 if (copy_to_user(arg, bargs, sizeof(*bargs)))
4494 ret = -EFAULT;
4495 }
4496
4497out_bargs:
4498 kfree(bargs);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004499out_unlock:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004500 mutex_unlock(&fs_info->balance_mutex);
4501 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004502 if (need_unlock)
4503 atomic_set(&fs_info->mutually_exclusive_operation_running, 0);
4504out:
Liu Boe54bfa32012-06-29 03:58:48 -06004505 mnt_drop_write_file(file);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004506 return ret;
4507}
4508
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004509static long btrfs_ioctl_balance_ctl(struct btrfs_root *root, int cmd)
4510{
4511 if (!capable(CAP_SYS_ADMIN))
4512 return -EPERM;
4513
4514 switch (cmd) {
4515 case BTRFS_BALANCE_CTL_PAUSE:
4516 return btrfs_pause_balance(root->fs_info);
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004517 case BTRFS_BALANCE_CTL_CANCEL:
4518 return btrfs_cancel_balance(root->fs_info);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004519 }
4520
4521 return -EINVAL;
4522}
4523
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004524static long btrfs_ioctl_balance_progress(struct btrfs_root *root,
4525 void __user *arg)
4526{
4527 struct btrfs_fs_info *fs_info = root->fs_info;
4528 struct btrfs_ioctl_balance_args *bargs;
4529 int ret = 0;
4530
4531 if (!capable(CAP_SYS_ADMIN))
4532 return -EPERM;
4533
4534 mutex_lock(&fs_info->balance_mutex);
4535 if (!fs_info->balance_ctl) {
4536 ret = -ENOTCONN;
4537 goto out;
4538 }
4539
4540 bargs = kzalloc(sizeof(*bargs), GFP_NOFS);
4541 if (!bargs) {
4542 ret = -ENOMEM;
4543 goto out;
4544 }
4545
4546 update_ioctl_balance_args(fs_info, 1, bargs);
4547
4548 if (copy_to_user(arg, bargs, sizeof(*bargs)))
4549 ret = -EFAULT;
4550
4551 kfree(bargs);
4552out:
4553 mutex_unlock(&fs_info->balance_mutex);
4554 return ret;
4555}
4556
Miao Xie905b0dd2012-11-26 08:50:11 +00004557static long btrfs_ioctl_quota_ctl(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004558{
Al Viro496ad9a2013-01-23 17:07:38 -05004559 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004560 struct btrfs_ioctl_quota_ctl_args *sa;
4561 struct btrfs_trans_handle *trans = NULL;
4562 int ret;
4563 int err;
4564
4565 if (!capable(CAP_SYS_ADMIN))
4566 return -EPERM;
4567
Miao Xie905b0dd2012-11-26 08:50:11 +00004568 ret = mnt_want_write_file(file);
4569 if (ret)
4570 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004571
4572 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004573 if (IS_ERR(sa)) {
4574 ret = PTR_ERR(sa);
4575 goto drop_write;
4576 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004577
Wang Shilong7708f022013-04-07 10:24:57 +00004578 down_write(&root->fs_info->subvol_sem);
Jan Schmidt2f232032013-04-25 16:04:51 +00004579 trans = btrfs_start_transaction(root->fs_info->tree_root, 2);
4580 if (IS_ERR(trans)) {
4581 ret = PTR_ERR(trans);
4582 goto out;
Arne Jansen5d13a372011-09-14 15:53:51 +02004583 }
4584
4585 switch (sa->cmd) {
4586 case BTRFS_QUOTA_CTL_ENABLE:
4587 ret = btrfs_quota_enable(trans, root->fs_info);
4588 break;
4589 case BTRFS_QUOTA_CTL_DISABLE:
4590 ret = btrfs_quota_disable(trans, root->fs_info);
4591 break;
Arne Jansen5d13a372011-09-14 15:53:51 +02004592 default:
4593 ret = -EINVAL;
4594 break;
4595 }
4596
Jan Schmidt2f232032013-04-25 16:04:51 +00004597 err = btrfs_commit_transaction(trans, root->fs_info->tree_root);
4598 if (err && !ret)
4599 ret = err;
Arne Jansen5d13a372011-09-14 15:53:51 +02004600out:
4601 kfree(sa);
Wang Shilong7708f022013-04-07 10:24:57 +00004602 up_write(&root->fs_info->subvol_sem);
Miao Xie905b0dd2012-11-26 08:50:11 +00004603drop_write:
4604 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004605 return ret;
4606}
4607
Miao Xie905b0dd2012-11-26 08:50:11 +00004608static long btrfs_ioctl_qgroup_assign(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004609{
Al Viro496ad9a2013-01-23 17:07:38 -05004610 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004611 struct btrfs_ioctl_qgroup_assign_args *sa;
4612 struct btrfs_trans_handle *trans;
4613 int ret;
4614 int err;
4615
4616 if (!capable(CAP_SYS_ADMIN))
4617 return -EPERM;
4618
Miao Xie905b0dd2012-11-26 08:50:11 +00004619 ret = mnt_want_write_file(file);
4620 if (ret)
4621 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004622
4623 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004624 if (IS_ERR(sa)) {
4625 ret = PTR_ERR(sa);
4626 goto drop_write;
4627 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004628
4629 trans = btrfs_join_transaction(root);
4630 if (IS_ERR(trans)) {
4631 ret = PTR_ERR(trans);
4632 goto out;
4633 }
4634
4635 /* FIXME: check if the IDs really exist */
4636 if (sa->assign) {
4637 ret = btrfs_add_qgroup_relation(trans, root->fs_info,
4638 sa->src, sa->dst);
4639 } else {
4640 ret = btrfs_del_qgroup_relation(trans, root->fs_info,
4641 sa->src, sa->dst);
4642 }
4643
4644 err = btrfs_end_transaction(trans, root);
4645 if (err && !ret)
4646 ret = err;
4647
4648out:
4649 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004650drop_write:
4651 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004652 return ret;
4653}
4654
Miao Xie905b0dd2012-11-26 08:50:11 +00004655static long btrfs_ioctl_qgroup_create(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004656{
Al Viro496ad9a2013-01-23 17:07:38 -05004657 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004658 struct btrfs_ioctl_qgroup_create_args *sa;
4659 struct btrfs_trans_handle *trans;
4660 int ret;
4661 int err;
4662
4663 if (!capable(CAP_SYS_ADMIN))
4664 return -EPERM;
4665
Miao Xie905b0dd2012-11-26 08:50:11 +00004666 ret = mnt_want_write_file(file);
4667 if (ret)
4668 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004669
4670 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004671 if (IS_ERR(sa)) {
4672 ret = PTR_ERR(sa);
4673 goto drop_write;
4674 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004675
Miao Xied86e56c2012-11-15 11:35:41 +00004676 if (!sa->qgroupid) {
4677 ret = -EINVAL;
4678 goto out;
4679 }
4680
Arne Jansen5d13a372011-09-14 15:53:51 +02004681 trans = btrfs_join_transaction(root);
4682 if (IS_ERR(trans)) {
4683 ret = PTR_ERR(trans);
4684 goto out;
4685 }
4686
4687 /* FIXME: check if the IDs really exist */
4688 if (sa->create) {
4689 ret = btrfs_create_qgroup(trans, root->fs_info, sa->qgroupid,
4690 NULL);
4691 } else {
4692 ret = btrfs_remove_qgroup(trans, root->fs_info, sa->qgroupid);
4693 }
4694
4695 err = btrfs_end_transaction(trans, root);
4696 if (err && !ret)
4697 ret = err;
4698
4699out:
4700 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004701drop_write:
4702 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004703 return ret;
4704}
4705
Miao Xie905b0dd2012-11-26 08:50:11 +00004706static long btrfs_ioctl_qgroup_limit(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004707{
Al Viro496ad9a2013-01-23 17:07:38 -05004708 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004709 struct btrfs_ioctl_qgroup_limit_args *sa;
4710 struct btrfs_trans_handle *trans;
4711 int ret;
4712 int err;
4713 u64 qgroupid;
4714
4715 if (!capable(CAP_SYS_ADMIN))
4716 return -EPERM;
4717
Miao Xie905b0dd2012-11-26 08:50:11 +00004718 ret = mnt_want_write_file(file);
4719 if (ret)
4720 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004721
4722 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004723 if (IS_ERR(sa)) {
4724 ret = PTR_ERR(sa);
4725 goto drop_write;
4726 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004727
4728 trans = btrfs_join_transaction(root);
4729 if (IS_ERR(trans)) {
4730 ret = PTR_ERR(trans);
4731 goto out;
4732 }
4733
4734 qgroupid = sa->qgroupid;
4735 if (!qgroupid) {
4736 /* take the current subvol as qgroup */
4737 qgroupid = root->root_key.objectid;
4738 }
4739
4740 /* FIXME: check if the IDs really exist */
4741 ret = btrfs_limit_qgroup(trans, root->fs_info, qgroupid, &sa->lim);
4742
4743 err = btrfs_end_transaction(trans, root);
4744 if (err && !ret)
4745 ret = err;
4746
4747out:
4748 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004749drop_write:
4750 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004751 return ret;
4752}
4753
Jan Schmidt2f232032013-04-25 16:04:51 +00004754static long btrfs_ioctl_quota_rescan(struct file *file, void __user *arg)
4755{
Al Viro6d0379e2013-06-16 19:32:35 +04004756 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Jan Schmidt2f232032013-04-25 16:04:51 +00004757 struct btrfs_ioctl_quota_rescan_args *qsa;
4758 int ret;
4759
4760 if (!capable(CAP_SYS_ADMIN))
4761 return -EPERM;
4762
4763 ret = mnt_want_write_file(file);
4764 if (ret)
4765 return ret;
4766
4767 qsa = memdup_user(arg, sizeof(*qsa));
4768 if (IS_ERR(qsa)) {
4769 ret = PTR_ERR(qsa);
4770 goto drop_write;
4771 }
4772
4773 if (qsa->flags) {
4774 ret = -EINVAL;
4775 goto out;
4776 }
4777
4778 ret = btrfs_qgroup_rescan(root->fs_info);
4779
4780out:
4781 kfree(qsa);
4782drop_write:
4783 mnt_drop_write_file(file);
4784 return ret;
4785}
4786
4787static long btrfs_ioctl_quota_rescan_status(struct file *file, void __user *arg)
4788{
Al Viro6d0379e2013-06-16 19:32:35 +04004789 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Jan Schmidt2f232032013-04-25 16:04:51 +00004790 struct btrfs_ioctl_quota_rescan_args *qsa;
4791 int ret = 0;
4792
4793 if (!capable(CAP_SYS_ADMIN))
4794 return -EPERM;
4795
4796 qsa = kzalloc(sizeof(*qsa), GFP_NOFS);
4797 if (!qsa)
4798 return -ENOMEM;
4799
4800 if (root->fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_RESCAN) {
4801 qsa->flags = 1;
4802 qsa->progress = root->fs_info->qgroup_rescan_progress.objectid;
4803 }
4804
4805 if (copy_to_user(arg, qsa, sizeof(*qsa)))
4806 ret = -EFAULT;
4807
4808 kfree(qsa);
4809 return ret;
4810}
4811
Jan Schmidt57254b6e2013-05-06 19:14:17 +00004812static long btrfs_ioctl_quota_rescan_wait(struct file *file, void __user *arg)
4813{
Al Viro54563d42013-09-01 15:57:51 -04004814 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Jan Schmidt57254b6e2013-05-06 19:14:17 +00004815
4816 if (!capable(CAP_SYS_ADMIN))
4817 return -EPERM;
4818
4819 return btrfs_qgroup_wait_for_completion(root->fs_info);
4820}
4821
Hugo Millsabccd002014-01-30 20:17:00 +00004822static long _btrfs_ioctl_set_received_subvol(struct file *file,
4823 struct btrfs_ioctl_received_subvol_args *sa)
Alexander Block8ea05e32012-07-25 17:35:53 +02004824{
Al Viro496ad9a2013-01-23 17:07:38 -05004825 struct inode *inode = file_inode(file);
Alexander Block8ea05e32012-07-25 17:35:53 +02004826 struct btrfs_root *root = BTRFS_I(inode)->root;
4827 struct btrfs_root_item *root_item = &root->root_item;
4828 struct btrfs_trans_handle *trans;
4829 struct timespec ct = CURRENT_TIME;
4830 int ret = 0;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004831 int received_uuid_changed;
Alexander Block8ea05e32012-07-25 17:35:53 +02004832
David Sterbabd60ea02014-01-16 15:50:22 +01004833 if (!inode_owner_or_capable(inode))
4834 return -EPERM;
4835
Alexander Block8ea05e32012-07-25 17:35:53 +02004836 ret = mnt_want_write_file(file);
4837 if (ret < 0)
4838 return ret;
4839
4840 down_write(&root->fs_info->subvol_sem);
4841
4842 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
4843 ret = -EINVAL;
4844 goto out;
4845 }
4846
4847 if (btrfs_root_readonly(root)) {
4848 ret = -EROFS;
4849 goto out;
4850 }
4851
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004852 /*
4853 * 1 - root item
4854 * 2 - uuid items (received uuid + subvol uuid)
4855 */
4856 trans = btrfs_start_transaction(root, 3);
Alexander Block8ea05e32012-07-25 17:35:53 +02004857 if (IS_ERR(trans)) {
4858 ret = PTR_ERR(trans);
4859 trans = NULL;
4860 goto out;
4861 }
4862
4863 sa->rtransid = trans->transid;
4864 sa->rtime.sec = ct.tv_sec;
4865 sa->rtime.nsec = ct.tv_nsec;
4866
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004867 received_uuid_changed = memcmp(root_item->received_uuid, sa->uuid,
4868 BTRFS_UUID_SIZE);
4869 if (received_uuid_changed &&
4870 !btrfs_is_empty_uuid(root_item->received_uuid))
4871 btrfs_uuid_tree_rem(trans, root->fs_info->uuid_root,
4872 root_item->received_uuid,
4873 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4874 root->root_key.objectid);
Alexander Block8ea05e32012-07-25 17:35:53 +02004875 memcpy(root_item->received_uuid, sa->uuid, BTRFS_UUID_SIZE);
4876 btrfs_set_root_stransid(root_item, sa->stransid);
4877 btrfs_set_root_rtransid(root_item, sa->rtransid);
Qu Wenruo3cae2102013-07-16 11:19:18 +08004878 btrfs_set_stack_timespec_sec(&root_item->stime, sa->stime.sec);
4879 btrfs_set_stack_timespec_nsec(&root_item->stime, sa->stime.nsec);
4880 btrfs_set_stack_timespec_sec(&root_item->rtime, sa->rtime.sec);
4881 btrfs_set_stack_timespec_nsec(&root_item->rtime, sa->rtime.nsec);
Alexander Block8ea05e32012-07-25 17:35:53 +02004882
4883 ret = btrfs_update_root(trans, root->fs_info->tree_root,
4884 &root->root_key, &root->root_item);
4885 if (ret < 0) {
4886 btrfs_end_transaction(trans, root);
Alexander Block8ea05e32012-07-25 17:35:53 +02004887 goto out;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004888 }
4889 if (received_uuid_changed && !btrfs_is_empty_uuid(sa->uuid)) {
4890 ret = btrfs_uuid_tree_add(trans, root->fs_info->uuid_root,
4891 sa->uuid,
4892 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4893 root->root_key.objectid);
4894 if (ret < 0 && ret != -EEXIST) {
4895 btrfs_abort_transaction(trans, root, ret);
Alexander Block8ea05e32012-07-25 17:35:53 +02004896 goto out;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004897 }
4898 }
4899 ret = btrfs_commit_transaction(trans, root);
4900 if (ret < 0) {
4901 btrfs_abort_transaction(trans, root, ret);
4902 goto out;
Alexander Block8ea05e32012-07-25 17:35:53 +02004903 }
4904
Hugo Millsabccd002014-01-30 20:17:00 +00004905out:
4906 up_write(&root->fs_info->subvol_sem);
4907 mnt_drop_write_file(file);
4908 return ret;
4909}
4910
4911#ifdef CONFIG_64BIT
4912static long btrfs_ioctl_set_received_subvol_32(struct file *file,
4913 void __user *arg)
4914{
4915 struct btrfs_ioctl_received_subvol_args_32 *args32 = NULL;
4916 struct btrfs_ioctl_received_subvol_args *args64 = NULL;
4917 int ret = 0;
4918
4919 args32 = memdup_user(arg, sizeof(*args32));
4920 if (IS_ERR(args32)) {
4921 ret = PTR_ERR(args32);
4922 args32 = NULL;
4923 goto out;
4924 }
4925
4926 args64 = kmalloc(sizeof(*args64), GFP_NOFS);
Dan Carpenter84dbeb82014-03-28 11:06:00 +03004927 if (!args64) {
4928 ret = -ENOMEM;
Hugo Millsabccd002014-01-30 20:17:00 +00004929 goto out;
4930 }
4931
4932 memcpy(args64->uuid, args32->uuid, BTRFS_UUID_SIZE);
4933 args64->stransid = args32->stransid;
4934 args64->rtransid = args32->rtransid;
4935 args64->stime.sec = args32->stime.sec;
4936 args64->stime.nsec = args32->stime.nsec;
4937 args64->rtime.sec = args32->rtime.sec;
4938 args64->rtime.nsec = args32->rtime.nsec;
4939 args64->flags = args32->flags;
4940
4941 ret = _btrfs_ioctl_set_received_subvol(file, args64);
4942 if (ret)
4943 goto out;
4944
4945 memcpy(args32->uuid, args64->uuid, BTRFS_UUID_SIZE);
4946 args32->stransid = args64->stransid;
4947 args32->rtransid = args64->rtransid;
4948 args32->stime.sec = args64->stime.sec;
4949 args32->stime.nsec = args64->stime.nsec;
4950 args32->rtime.sec = args64->rtime.sec;
4951 args32->rtime.nsec = args64->rtime.nsec;
4952 args32->flags = args64->flags;
4953
4954 ret = copy_to_user(arg, args32, sizeof(*args32));
4955 if (ret)
4956 ret = -EFAULT;
4957
4958out:
4959 kfree(args32);
4960 kfree(args64);
4961 return ret;
4962}
4963#endif
4964
4965static long btrfs_ioctl_set_received_subvol(struct file *file,
4966 void __user *arg)
4967{
4968 struct btrfs_ioctl_received_subvol_args *sa = NULL;
4969 int ret = 0;
4970
4971 sa = memdup_user(arg, sizeof(*sa));
4972 if (IS_ERR(sa)) {
4973 ret = PTR_ERR(sa);
4974 sa = NULL;
4975 goto out;
4976 }
4977
4978 ret = _btrfs_ioctl_set_received_subvol(file, sa);
4979
4980 if (ret)
4981 goto out;
4982
Alexander Block8ea05e32012-07-25 17:35:53 +02004983 ret = copy_to_user(arg, sa, sizeof(*sa));
4984 if (ret)
4985 ret = -EFAULT;
4986
4987out:
4988 kfree(sa);
Alexander Block8ea05e32012-07-25 17:35:53 +02004989 return ret;
4990}
4991
jeff.liu867ab662013-01-05 02:48:01 +00004992static int btrfs_ioctl_get_fslabel(struct file *file, void __user *arg)
4993{
Al Viro6d0379e2013-06-16 19:32:35 +04004994 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Anand Jaina1b83ac2013-07-19 17:39:32 +08004995 size_t len;
jeff.liu867ab662013-01-05 02:48:01 +00004996 int ret;
Anand Jaina1b83ac2013-07-19 17:39:32 +08004997 char label[BTRFS_LABEL_SIZE];
4998
4999 spin_lock(&root->fs_info->super_lock);
5000 memcpy(label, root->fs_info->super_copy->label, BTRFS_LABEL_SIZE);
5001 spin_unlock(&root->fs_info->super_lock);
5002
5003 len = strnlen(label, BTRFS_LABEL_SIZE);
jeff.liu867ab662013-01-05 02:48:01 +00005004
5005 if (len == BTRFS_LABEL_SIZE) {
Frank Holtonefe120a2013-12-20 11:37:06 -05005006 btrfs_warn(root->fs_info,
5007 "label is too long, return the first %zu bytes", --len);
jeff.liu867ab662013-01-05 02:48:01 +00005008 }
5009
jeff.liu867ab662013-01-05 02:48:01 +00005010 ret = copy_to_user(arg, label, len);
jeff.liu867ab662013-01-05 02:48:01 +00005011
5012 return ret ? -EFAULT : 0;
5013}
5014
jeff.liua8bfd4a2013-01-05 02:48:08 +00005015static int btrfs_ioctl_set_fslabel(struct file *file, void __user *arg)
5016{
Al Viro6d0379e2013-06-16 19:32:35 +04005017 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
jeff.liua8bfd4a2013-01-05 02:48:08 +00005018 struct btrfs_super_block *super_block = root->fs_info->super_copy;
5019 struct btrfs_trans_handle *trans;
5020 char label[BTRFS_LABEL_SIZE];
5021 int ret;
5022
5023 if (!capable(CAP_SYS_ADMIN))
5024 return -EPERM;
5025
5026 if (copy_from_user(label, arg, sizeof(label)))
5027 return -EFAULT;
5028
5029 if (strnlen(label, BTRFS_LABEL_SIZE) == BTRFS_LABEL_SIZE) {
Frank Holtonefe120a2013-12-20 11:37:06 -05005030 btrfs_err(root->fs_info, "unable to set label with more than %d bytes",
jeff.liua8bfd4a2013-01-05 02:48:08 +00005031 BTRFS_LABEL_SIZE - 1);
5032 return -EINVAL;
5033 }
5034
5035 ret = mnt_want_write_file(file);
5036 if (ret)
5037 return ret;
5038
jeff.liua8bfd4a2013-01-05 02:48:08 +00005039 trans = btrfs_start_transaction(root, 0);
5040 if (IS_ERR(trans)) {
5041 ret = PTR_ERR(trans);
5042 goto out_unlock;
5043 }
5044
Anand Jaina1b83ac2013-07-19 17:39:32 +08005045 spin_lock(&root->fs_info->super_lock);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005046 strcpy(super_block->label, label);
Anand Jaina1b83ac2013-07-19 17:39:32 +08005047 spin_unlock(&root->fs_info->super_lock);
Jeff Mahoneyd0270ac2014-02-07 14:33:57 +01005048 ret = btrfs_commit_transaction(trans, root);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005049
5050out_unlock:
jeff.liua8bfd4a2013-01-05 02:48:08 +00005051 mnt_drop_write_file(file);
5052 return ret;
5053}
5054
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005055#define INIT_FEATURE_FLAGS(suffix) \
5056 { .compat_flags = BTRFS_FEATURE_COMPAT_##suffix, \
5057 .compat_ro_flags = BTRFS_FEATURE_COMPAT_RO_##suffix, \
5058 .incompat_flags = BTRFS_FEATURE_INCOMPAT_##suffix }
5059
5060static int btrfs_ioctl_get_supported_features(struct file *file,
5061 void __user *arg)
5062{
5063 static struct btrfs_ioctl_feature_flags features[3] = {
5064 INIT_FEATURE_FLAGS(SUPP),
5065 INIT_FEATURE_FLAGS(SAFE_SET),
5066 INIT_FEATURE_FLAGS(SAFE_CLEAR)
5067 };
5068
5069 if (copy_to_user(arg, &features, sizeof(features)))
5070 return -EFAULT;
5071
5072 return 0;
5073}
5074
5075static int btrfs_ioctl_get_features(struct file *file, void __user *arg)
5076{
5077 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
5078 struct btrfs_super_block *super_block = root->fs_info->super_copy;
5079 struct btrfs_ioctl_feature_flags features;
5080
5081 features.compat_flags = btrfs_super_compat_flags(super_block);
5082 features.compat_ro_flags = btrfs_super_compat_ro_flags(super_block);
5083 features.incompat_flags = btrfs_super_incompat_flags(super_block);
5084
5085 if (copy_to_user(arg, &features, sizeof(features)))
5086 return -EFAULT;
5087
5088 return 0;
5089}
5090
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005091static int check_feature_bits(struct btrfs_root *root,
5092 enum btrfs_feature_set set,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005093 u64 change_mask, u64 flags, u64 supported_flags,
5094 u64 safe_set, u64 safe_clear)
5095{
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005096 const char *type = btrfs_feature_set_names[set];
5097 char *names;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005098 u64 disallowed, unsupported;
5099 u64 set_mask = flags & change_mask;
5100 u64 clear_mask = ~flags & change_mask;
5101
5102 unsupported = set_mask & ~supported_flags;
5103 if (unsupported) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005104 names = btrfs_printable_features(set, unsupported);
5105 if (names) {
5106 btrfs_warn(root->fs_info,
5107 "this kernel does not support the %s feature bit%s",
5108 names, strchr(names, ',') ? "s" : "");
5109 kfree(names);
5110 } else
5111 btrfs_warn(root->fs_info,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005112 "this kernel does not support %s bits 0x%llx",
5113 type, unsupported);
5114 return -EOPNOTSUPP;
5115 }
5116
5117 disallowed = set_mask & ~safe_set;
5118 if (disallowed) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005119 names = btrfs_printable_features(set, disallowed);
5120 if (names) {
5121 btrfs_warn(root->fs_info,
5122 "can't set the %s feature bit%s while mounted",
5123 names, strchr(names, ',') ? "s" : "");
5124 kfree(names);
5125 } else
5126 btrfs_warn(root->fs_info,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005127 "can't set %s bits 0x%llx while mounted",
5128 type, disallowed);
5129 return -EPERM;
5130 }
5131
5132 disallowed = clear_mask & ~safe_clear;
5133 if (disallowed) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005134 names = btrfs_printable_features(set, disallowed);
5135 if (names) {
5136 btrfs_warn(root->fs_info,
5137 "can't clear the %s feature bit%s while mounted",
5138 names, strchr(names, ',') ? "s" : "");
5139 kfree(names);
5140 } else
5141 btrfs_warn(root->fs_info,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005142 "can't clear %s bits 0x%llx while mounted",
5143 type, disallowed);
5144 return -EPERM;
5145 }
5146
5147 return 0;
5148}
5149
5150#define check_feature(root, change_mask, flags, mask_base) \
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005151check_feature_bits(root, FEAT_##mask_base, change_mask, flags, \
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005152 BTRFS_FEATURE_ ## mask_base ## _SUPP, \
5153 BTRFS_FEATURE_ ## mask_base ## _SAFE_SET, \
5154 BTRFS_FEATURE_ ## mask_base ## _SAFE_CLEAR)
5155
5156static int btrfs_ioctl_set_features(struct file *file, void __user *arg)
5157{
5158 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
5159 struct btrfs_super_block *super_block = root->fs_info->super_copy;
5160 struct btrfs_ioctl_feature_flags flags[2];
5161 struct btrfs_trans_handle *trans;
5162 u64 newflags;
5163 int ret;
5164
5165 if (!capable(CAP_SYS_ADMIN))
5166 return -EPERM;
5167
5168 if (copy_from_user(flags, arg, sizeof(flags)))
5169 return -EFAULT;
5170
5171 /* Nothing to do */
5172 if (!flags[0].compat_flags && !flags[0].compat_ro_flags &&
5173 !flags[0].incompat_flags)
5174 return 0;
5175
5176 ret = check_feature(root, flags[0].compat_flags,
5177 flags[1].compat_flags, COMPAT);
5178 if (ret)
5179 return ret;
5180
5181 ret = check_feature(root, flags[0].compat_ro_flags,
5182 flags[1].compat_ro_flags, COMPAT_RO);
5183 if (ret)
5184 return ret;
5185
5186 ret = check_feature(root, flags[0].incompat_flags,
5187 flags[1].incompat_flags, INCOMPAT);
5188 if (ret)
5189 return ret;
5190
David Sterba8051aa12014-02-07 14:34:04 +01005191 trans = btrfs_start_transaction(root, 0);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005192 if (IS_ERR(trans))
5193 return PTR_ERR(trans);
5194
5195 spin_lock(&root->fs_info->super_lock);
5196 newflags = btrfs_super_compat_flags(super_block);
5197 newflags |= flags[0].compat_flags & flags[1].compat_flags;
5198 newflags &= ~(flags[0].compat_flags & ~flags[1].compat_flags);
5199 btrfs_set_super_compat_flags(super_block, newflags);
5200
5201 newflags = btrfs_super_compat_ro_flags(super_block);
5202 newflags |= flags[0].compat_ro_flags & flags[1].compat_ro_flags;
5203 newflags &= ~(flags[0].compat_ro_flags & ~flags[1].compat_ro_flags);
5204 btrfs_set_super_compat_ro_flags(super_block, newflags);
5205
5206 newflags = btrfs_super_incompat_flags(super_block);
5207 newflags |= flags[0].incompat_flags & flags[1].incompat_flags;
5208 newflags &= ~(flags[0].incompat_flags & ~flags[1].incompat_flags);
5209 btrfs_set_super_incompat_flags(super_block, newflags);
5210 spin_unlock(&root->fs_info->super_lock);
5211
Jeff Mahoneyd0270ac2014-02-07 14:33:57 +01005212 return btrfs_commit_transaction(trans, root);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005213}
5214
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005215long btrfs_ioctl(struct file *file, unsigned int
5216 cmd, unsigned long arg)
5217{
Al Viro496ad9a2013-01-23 17:07:38 -05005218 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05005219 void __user *argp = (void __user *)arg;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005220
5221 switch (cmd) {
Christoph Hellwig6cbff002009-04-17 10:37:41 +02005222 case FS_IOC_GETFLAGS:
5223 return btrfs_ioctl_getflags(file, argp);
5224 case FS_IOC_SETFLAGS:
5225 return btrfs_ioctl_setflags(file, argp);
5226 case FS_IOC_GETVERSION:
5227 return btrfs_ioctl_getversion(file, argp);
Li Dongyangf7039b12011-03-24 10:24:28 +00005228 case FITRIM:
5229 return btrfs_ioctl_fitrim(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005230 case BTRFS_IOC_SNAP_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005231 return btrfs_ioctl_snap_create(file, argp, 0);
Li Zefanfdfb1e42010-12-10 06:41:56 +00005232 case BTRFS_IOC_SNAP_CREATE_V2:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005233 return btrfs_ioctl_snap_create_v2(file, argp, 0);
Chris Mason3de45862008-11-17 21:02:50 -05005234 case BTRFS_IOC_SUBVOL_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005235 return btrfs_ioctl_snap_create(file, argp, 1);
Arne Jansen6f72c7e2011-09-14 15:58:21 +02005236 case BTRFS_IOC_SUBVOL_CREATE_V2:
5237 return btrfs_ioctl_snap_create_v2(file, argp, 1);
Yan, Zheng76dda932009-09-21 16:00:26 -04005238 case BTRFS_IOC_SNAP_DESTROY:
5239 return btrfs_ioctl_snap_destroy(file, argp);
Li Zefan0caa1022010-12-20 16:30:25 +08005240 case BTRFS_IOC_SUBVOL_GETFLAGS:
5241 return btrfs_ioctl_subvol_getflags(file, argp);
5242 case BTRFS_IOC_SUBVOL_SETFLAGS:
5243 return btrfs_ioctl_subvol_setflags(file, argp);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00005244 case BTRFS_IOC_DEFAULT_SUBVOL:
5245 return btrfs_ioctl_default_subvol(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005246 case BTRFS_IOC_DEFRAG:
Chris Mason1e701a32010-03-11 09:42:04 -05005247 return btrfs_ioctl_defrag(file, NULL);
5248 case BTRFS_IOC_DEFRAG_RANGE:
5249 return btrfs_ioctl_defrag(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005250 case BTRFS_IOC_RESIZE:
Miao Xie198605a2012-11-26 08:43:45 +00005251 return btrfs_ioctl_resize(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005252 case BTRFS_IOC_ADD_DEV:
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05005253 return btrfs_ioctl_add_dev(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005254 case BTRFS_IOC_RM_DEV:
Miao Xieda249272012-11-26 08:44:50 +00005255 return btrfs_ioctl_rm_dev(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005256 case BTRFS_IOC_FS_INFO:
5257 return btrfs_ioctl_fs_info(root, argp);
5258 case BTRFS_IOC_DEV_INFO:
5259 return btrfs_ioctl_dev_info(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005260 case BTRFS_IOC_BALANCE:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08005261 return btrfs_ioctl_balance(file, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005262 case BTRFS_IOC_CLONE:
Sage Weilc5c9cd42008-11-12 14:32:25 -05005263 return btrfs_ioctl_clone(file, arg, 0, 0, 0);
5264 case BTRFS_IOC_CLONE_RANGE:
Christoph Hellwig7a865e82008-12-02 09:52:24 -05005265 return btrfs_ioctl_clone_range(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005266 case BTRFS_IOC_TRANS_START:
5267 return btrfs_ioctl_trans_start(file);
5268 case BTRFS_IOC_TRANS_END:
5269 return btrfs_ioctl_trans_end(file);
Chris Masonac8e9812010-02-28 15:39:26 -05005270 case BTRFS_IOC_TREE_SEARCH:
5271 return btrfs_ioctl_tree_search(file, argp);
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01005272 case BTRFS_IOC_TREE_SEARCH_V2:
5273 return btrfs_ioctl_tree_search_v2(file, argp);
Chris Masonac8e9812010-02-28 15:39:26 -05005274 case BTRFS_IOC_INO_LOOKUP:
5275 return btrfs_ioctl_ino_lookup(file, argp);
Jan Schmidtd7728c92011-07-07 16:48:38 +02005276 case BTRFS_IOC_INO_PATHS:
5277 return btrfs_ioctl_ino_to_path(root, argp);
5278 case BTRFS_IOC_LOGICAL_INO:
5279 return btrfs_ioctl_logical_to_ino(root, argp);
Josef Bacik1406e432010-01-13 18:19:06 +00005280 case BTRFS_IOC_SPACE_INFO:
5281 return btrfs_ioctl_space_info(root, argp);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005282 case BTRFS_IOC_SYNC: {
5283 int ret;
5284
Miao Xie6c255e62014-03-06 13:55:01 +08005285 ret = btrfs_start_delalloc_roots(root->fs_info, 0, -1);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005286 if (ret)
5287 return ret;
5288 ret = btrfs_sync_fs(file->f_dentry->d_sb, 1);
David Sterba2fad4e82014-07-23 14:39:35 +02005289 /*
5290 * The transaction thread may want to do more work,
5291 * namely it pokes the cleaner ktread that will start
5292 * processing uncleaned subvols.
5293 */
5294 wake_up_process(root->fs_info->transaction_kthread);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005295 return ret;
5296 }
Sage Weil46204592010-10-29 15:41:32 -04005297 case BTRFS_IOC_START_SYNC:
Miao Xie9a8c28b2012-11-26 08:40:43 +00005298 return btrfs_ioctl_start_sync(root, argp);
Sage Weil46204592010-10-29 15:41:32 -04005299 case BTRFS_IOC_WAIT_SYNC:
Miao Xie9a8c28b2012-11-26 08:40:43 +00005300 return btrfs_ioctl_wait_sync(root, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005301 case BTRFS_IOC_SCRUB:
Miao Xieb8e95482012-11-26 08:48:01 +00005302 return btrfs_ioctl_scrub(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005303 case BTRFS_IOC_SCRUB_CANCEL:
5304 return btrfs_ioctl_scrub_cancel(root, argp);
5305 case BTRFS_IOC_SCRUB_PROGRESS:
5306 return btrfs_ioctl_scrub_progress(root, argp);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02005307 case BTRFS_IOC_BALANCE_V2:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08005308 return btrfs_ioctl_balance(file, argp);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02005309 case BTRFS_IOC_BALANCE_CTL:
5310 return btrfs_ioctl_balance_ctl(root, arg);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02005311 case BTRFS_IOC_BALANCE_PROGRESS:
5312 return btrfs_ioctl_balance_progress(root, argp);
Alexander Block8ea05e32012-07-25 17:35:53 +02005313 case BTRFS_IOC_SET_RECEIVED_SUBVOL:
5314 return btrfs_ioctl_set_received_subvol(file, argp);
Hugo Millsabccd002014-01-30 20:17:00 +00005315#ifdef CONFIG_64BIT
5316 case BTRFS_IOC_SET_RECEIVED_SUBVOL_32:
5317 return btrfs_ioctl_set_received_subvol_32(file, argp);
5318#endif
Alexander Block31db9f72012-07-25 23:19:24 +02005319 case BTRFS_IOC_SEND:
5320 return btrfs_ioctl_send(file, argp);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02005321 case BTRFS_IOC_GET_DEV_STATS:
David Sterbab27f7c02012-06-22 06:30:39 -06005322 return btrfs_ioctl_get_dev_stats(root, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005323 case BTRFS_IOC_QUOTA_CTL:
Miao Xie905b0dd2012-11-26 08:50:11 +00005324 return btrfs_ioctl_quota_ctl(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005325 case BTRFS_IOC_QGROUP_ASSIGN:
Miao Xie905b0dd2012-11-26 08:50:11 +00005326 return btrfs_ioctl_qgroup_assign(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005327 case BTRFS_IOC_QGROUP_CREATE:
Miao Xie905b0dd2012-11-26 08:50:11 +00005328 return btrfs_ioctl_qgroup_create(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005329 case BTRFS_IOC_QGROUP_LIMIT:
Miao Xie905b0dd2012-11-26 08:50:11 +00005330 return btrfs_ioctl_qgroup_limit(file, argp);
Jan Schmidt2f232032013-04-25 16:04:51 +00005331 case BTRFS_IOC_QUOTA_RESCAN:
5332 return btrfs_ioctl_quota_rescan(file, argp);
5333 case BTRFS_IOC_QUOTA_RESCAN_STATUS:
5334 return btrfs_ioctl_quota_rescan_status(file, argp);
Jan Schmidt57254b6e2013-05-06 19:14:17 +00005335 case BTRFS_IOC_QUOTA_RESCAN_WAIT:
5336 return btrfs_ioctl_quota_rescan_wait(file, argp);
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01005337 case BTRFS_IOC_DEV_REPLACE:
5338 return btrfs_ioctl_dev_replace(root, argp);
jeff.liu867ab662013-01-05 02:48:01 +00005339 case BTRFS_IOC_GET_FSLABEL:
5340 return btrfs_ioctl_get_fslabel(file, argp);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005341 case BTRFS_IOC_SET_FSLABEL:
5342 return btrfs_ioctl_set_fslabel(file, argp);
Mark Fasheh416161d2013-08-06 11:42:51 -07005343 case BTRFS_IOC_FILE_EXTENT_SAME:
5344 return btrfs_ioctl_file_extent_same(file, argp);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005345 case BTRFS_IOC_GET_SUPPORTED_FEATURES:
5346 return btrfs_ioctl_get_supported_features(file, argp);
5347 case BTRFS_IOC_GET_FEATURES:
5348 return btrfs_ioctl_get_features(file, argp);
5349 case BTRFS_IOC_SET_FEATURES:
5350 return btrfs_ioctl_set_features(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005351 }
5352
5353 return -ENOTTY;
5354}