blob: 9ebe2dd31f2a7f650e8b36c3ba6da6a69e68dc2a [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
Qu Wenruoe09fe2d2015-02-27 16:24:23 +0800459 /*
460 * Don't create subvolume whose level is not zero. Or qgroup will be
461 * screwed up since it assume subvolme qgroup's level to be 0.
462 */
463 if (btrfs_qgroup_level(objectid))
464 return -ENOSPC;
465
Miao Xied5c12072013-02-28 10:04:33 +0000466 btrfs_init_block_rsv(&block_rsv, BTRFS_BLOCK_RSV_TEMP);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400467 /*
Miao Xied5c12072013-02-28 10:04:33 +0000468 * The same as the snapshot creation, please see the comment
469 * of create_snapshot().
Josef Bacik9ed74f22009-09-11 16:12:44 -0400470 */
Miao Xied5c12072013-02-28 10:04:33 +0000471 ret = btrfs_subvolume_reserve_metadata(root, &block_rsv,
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200472 8, &qgroup_reserved, false);
Miao Xied5c12072013-02-28 10:04:33 +0000473 if (ret)
474 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400475
Miao Xied5c12072013-02-28 10:04:33 +0000476 trans = btrfs_start_transaction(root, 0);
477 if (IS_ERR(trans)) {
478 ret = PTR_ERR(trans);
Liu Bode6e8202014-01-09 14:57:06 +0800479 btrfs_subvolume_release_metadata(root, &block_rsv,
480 qgroup_reserved);
481 return ret;
Miao Xied5c12072013-02-28 10:04:33 +0000482 }
483 trans->block_rsv = &block_rsv;
484 trans->bytes_reserved = block_rsv.size;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400485
Miao Xie8696c532013-02-07 06:02:44 +0000486 ret = btrfs_qgroup_inherit(trans, root->fs_info, 0, objectid, inherit);
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200487 if (ret)
488 goto fail;
489
David Sterba4d75f8a2014-06-15 01:54:12 +0200490 leaf = btrfs_alloc_tree_block(trans, root, 0, objectid, NULL, 0, 0, 0);
Josef Bacik8e8a1e32008-07-24 12:17:14 -0400491 if (IS_ERR(leaf)) {
492 ret = PTR_ERR(leaf);
493 goto fail;
494 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400495
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400496 memset_extent_buffer(leaf, 0, 0, sizeof(struct btrfs_header));
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400497 btrfs_set_header_bytenr(leaf, leaf->start);
498 btrfs_set_header_generation(leaf, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400499 btrfs_set_header_backref_rev(leaf, BTRFS_MIXED_BACKREF_REV);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400500 btrfs_set_header_owner(leaf, objectid);
501
Ross Kirk0a4e5582013-09-24 10:12:38 +0100502 write_extent_buffer(leaf, root->fs_info->fsid, btrfs_header_fsid(),
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400503 BTRFS_FSID_SIZE);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400504 write_extent_buffer(leaf, root->fs_info->chunk_tree_uuid,
Geert Uytterhoevenb308bc22013-08-20 13:20:15 +0200505 btrfs_header_chunk_tree_uuid(leaf),
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400506 BTRFS_UUID_SIZE);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400507 btrfs_mark_buffer_dirty(leaf);
508
Alexander Block8ea05e32012-07-25 17:35:53 +0200509 memset(&root_item, 0, sizeof(root_item));
510
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400511 inode_item = &root_item.inode;
Qu Wenruo3cae2102013-07-16 11:19:18 +0800512 btrfs_set_stack_inode_generation(inode_item, 1);
513 btrfs_set_stack_inode_size(inode_item, 3);
514 btrfs_set_stack_inode_nlink(inode_item, 1);
David Sterba707e8a02014-06-04 19:22:26 +0200515 btrfs_set_stack_inode_nbytes(inode_item, root->nodesize);
Qu Wenruo3cae2102013-07-16 11:19:18 +0800516 btrfs_set_stack_inode_mode(inode_item, S_IFDIR | 0755);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400517
Qu Wenruo3cae2102013-07-16 11:19:18 +0800518 btrfs_set_root_flags(&root_item, 0);
519 btrfs_set_root_limit(&root_item, 0);
520 btrfs_set_stack_inode_flags(inode_item, BTRFS_INODE_ROOT_ITEM_INIT);
Li Zefan08fe4db2011-03-28 02:01:25 +0000521
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400522 btrfs_set_root_bytenr(&root_item, leaf->start);
Yan Zheng84234f32008-10-29 14:49:05 -0400523 btrfs_set_root_generation(&root_item, trans->transid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400524 btrfs_set_root_level(&root_item, 0);
525 btrfs_set_root_refs(&root_item, 1);
Yan, Zheng86b9f2e2009-11-12 09:36:50 +0000526 btrfs_set_root_used(&root_item, leaf->len);
Yan Zheng80ff3852008-10-30 14:20:02 -0400527 btrfs_set_root_last_snapshot(&root_item, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400528
Alexander Block8ea05e32012-07-25 17:35:53 +0200529 btrfs_set_root_generation_v2(&root_item,
530 btrfs_root_generation(&root_item));
531 uuid_le_gen(&new_uuid);
532 memcpy(root_item.uuid, new_uuid.b, BTRFS_UUID_SIZE);
Qu Wenruo3cae2102013-07-16 11:19:18 +0800533 btrfs_set_stack_timespec_sec(&root_item.otime, cur_time.tv_sec);
534 btrfs_set_stack_timespec_nsec(&root_item.otime, cur_time.tv_nsec);
Alexander Block8ea05e32012-07-25 17:35:53 +0200535 root_item.ctime = root_item.otime;
536 btrfs_set_root_ctransid(&root_item, trans->transid);
537 btrfs_set_root_otransid(&root_item, trans->transid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400538
Chris Mason925baed2008-06-25 16:01:30 -0400539 btrfs_tree_unlock(leaf);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400540 free_extent_buffer(leaf);
541 leaf = NULL;
542
543 btrfs_set_root_dirid(&root_item, new_dirid);
544
545 key.objectid = objectid;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400546 key.offset = 0;
David Sterba962a2982014-06-04 18:41:45 +0200547 key.type = BTRFS_ROOT_ITEM_KEY;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400548 ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
549 &root_item);
550 if (ret)
551 goto fail;
552
Yan, Zheng76dda932009-09-21 16:00:26 -0400553 key.offset = (u64)-1;
554 new_root = btrfs_read_fs_root_no_name(root->fs_info, &key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100555 if (IS_ERR(new_root)) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100556 ret = PTR_ERR(new_root);
David Sterba6d13f542015-04-24 19:12:01 +0200557 btrfs_abort_transaction(trans, root, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100558 goto fail;
559 }
Yan, Zheng76dda932009-09-21 16:00:26 -0400560
561 btrfs_record_root_in_trans(trans, new_root);
562
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000563 ret = btrfs_create_subvol_root(trans, new_root, root, new_dirid);
Mark Fashehce598972011-07-26 11:32:23 -0700564 if (ret) {
565 /* We potentially lose an unused inode item here */
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100566 btrfs_abort_transaction(trans, root, ret);
Mark Fashehce598972011-07-26 11:32:23 -0700567 goto fail;
568 }
569
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400570 /*
571 * insert the directory item
572 */
Chris Mason3de45862008-11-17 21:02:50 -0500573 ret = btrfs_set_inode_index(dir, &index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100574 if (ret) {
575 btrfs_abort_transaction(trans, root, ret);
576 goto fail;
577 }
Chris Mason3de45862008-11-17 21:02:50 -0500578
579 ret = btrfs_insert_dir_item(trans, root,
Miao Xie16cdcec2011-04-22 18:12:22 +0800580 name, namelen, dir, &key,
Chris Mason3de45862008-11-17 21:02:50 -0500581 BTRFS_FT_DIR, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100582 if (ret) {
583 btrfs_abort_transaction(trans, root, ret);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400584 goto fail;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100585 }
Chris Mason0660b5a2008-11-17 20:37:39 -0500586
Yan Zheng52c26172009-01-05 15:43:43 -0500587 btrfs_i_size_write(dir, dir->i_size + namelen * 2);
588 ret = btrfs_update_inode(trans, root, dir);
589 BUG_ON(ret);
590
Chris Mason0660b5a2008-11-17 20:37:39 -0500591 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -0400592 objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +0800593 btrfs_ino(dir), index, name, namelen);
Chris Mason0660b5a2008-11-17 20:37:39 -0500594 BUG_ON(ret);
595
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200596 ret = btrfs_uuid_tree_add(trans, root->fs_info->uuid_root,
597 root_item.uuid, BTRFS_UUID_KEY_SUBVOL,
598 objectid);
599 if (ret)
600 btrfs_abort_transaction(trans, root, ret);
601
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400602fail:
Miao Xied5c12072013-02-28 10:04:33 +0000603 trans->block_rsv = NULL;
604 trans->bytes_reserved = 0;
Liu Bode6e8202014-01-09 14:57:06 +0800605 btrfs_subvolume_release_metadata(root, &block_rsv, qgroup_reserved);
606
Sage Weil72fd0322010-10-29 15:41:32 -0400607 if (async_transid) {
608 *async_transid = trans->transid;
609 err = btrfs_commit_transaction_async(trans, root, 1);
Miao Xie00d71c92013-03-04 09:45:06 +0000610 if (err)
611 err = btrfs_commit_transaction(trans, root);
Sage Weil72fd0322010-10-29 15:41:32 -0400612 } else {
613 err = btrfs_commit_transaction(trans, root);
614 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400615 if (err && !ret)
616 ret = err;
Chris Mason1a65e242013-02-06 12:06:02 -0500617
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900618 if (!ret) {
619 inode = btrfs_lookup_dentry(dir, dentry);
Liu Bode6e8202014-01-09 14:57:06 +0800620 if (IS_ERR(inode))
621 return PTR_ERR(inode);
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900622 d_instantiate(dentry, inode);
623 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400624 return ret;
625}
626
Filipe Manana9ea24bb2014-10-29 11:57:59 +0000627static void btrfs_wait_for_no_snapshoting_writes(struct btrfs_root *root)
Miao Xie8257b2d2014-03-06 13:38:19 +0800628{
629 s64 writers;
630 DEFINE_WAIT(wait);
631
632 do {
633 prepare_to_wait(&root->subv_writers->wait, &wait,
634 TASK_UNINTERRUPTIBLE);
635
636 writers = percpu_counter_sum(&root->subv_writers->counter);
637 if (writers)
638 schedule();
639
640 finish_wait(&root->subv_writers->wait, &wait);
641 } while (writers);
642}
643
Miao Xiee9662f72013-02-28 10:01:15 +0000644static int create_snapshot(struct btrfs_root *root, struct inode *dir,
645 struct dentry *dentry, char *name, int namelen,
646 u64 *async_transid, bool readonly,
647 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400648{
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000649 struct inode *inode;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400650 struct btrfs_pending_snapshot *pending_snapshot;
651 struct btrfs_trans_handle *trans;
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000652 int ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400653
Miao Xie27cdeb72014-04-02 19:51:05 +0800654 if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400655 return -EINVAL;
656
Miao Xie8257b2d2014-03-06 13:38:19 +0800657 atomic_inc(&root->will_be_snapshoted);
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100658 smp_mb__after_atomic();
Filipe Manana9ea24bb2014-10-29 11:57:59 +0000659 btrfs_wait_for_no_snapshoting_writes(root);
Miao Xie8257b2d2014-03-06 13:38:19 +0800660
Miao Xie6a038432013-05-15 07:48:24 +0000661 ret = btrfs_start_delalloc_inodes(root, 0);
662 if (ret)
Miao Xie8257b2d2014-03-06 13:38:19 +0800663 goto out;
Miao Xie6a038432013-05-15 07:48:24 +0000664
Miao Xieb0244192013-11-04 23:13:25 +0800665 btrfs_wait_ordered_extents(root, -1);
Miao Xie6a038432013-05-15 07:48:24 +0000666
Yan, Zhenga22285a2010-05-16 10:48:46 -0400667 pending_snapshot = kzalloc(sizeof(*pending_snapshot), GFP_NOFS);
Miao Xie8257b2d2014-03-06 13:38:19 +0800668 if (!pending_snapshot) {
669 ret = -ENOMEM;
670 goto out;
671 }
Yan, Zhenga22285a2010-05-16 10:48:46 -0400672
Miao Xie66d8f3d2012-09-06 04:02:28 -0600673 btrfs_init_block_rsv(&pending_snapshot->block_rsv,
674 BTRFS_BLOCK_RSV_TEMP);
Miao Xied5c12072013-02-28 10:04:33 +0000675 /*
676 * 1 - parent dir inode
677 * 2 - dir entries
678 * 1 - root item
679 * 2 - root ref/backref
680 * 1 - root of snapshot
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200681 * 1 - UUID item
Miao Xied5c12072013-02-28 10:04:33 +0000682 */
683 ret = btrfs_subvolume_reserve_metadata(BTRFS_I(dir)->root,
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200684 &pending_snapshot->block_rsv, 8,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -0400685 &pending_snapshot->qgroup_reserved,
686 false);
Miao Xied5c12072013-02-28 10:04:33 +0000687 if (ret)
Miao Xie8257b2d2014-03-06 13:38:19 +0800688 goto free;
Miao Xied5c12072013-02-28 10:04:33 +0000689
Yan, Zhenga22285a2010-05-16 10:48:46 -0400690 pending_snapshot->dentry = dentry;
691 pending_snapshot->root = root;
Li Zefanb83cc962010-12-20 16:04:08 +0800692 pending_snapshot->readonly = readonly;
Miao Xiee9662f72013-02-28 10:01:15 +0000693 pending_snapshot->dir = dir;
Miao Xie8696c532013-02-07 06:02:44 +0000694 pending_snapshot->inherit = inherit;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400695
Miao Xied5c12072013-02-28 10:04:33 +0000696 trans = btrfs_start_transaction(root, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400697 if (IS_ERR(trans)) {
698 ret = PTR_ERR(trans);
699 goto fail;
700 }
701
Josef Bacik83515832011-06-14 15:16:14 -0400702 spin_lock(&root->fs_info->trans_lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400703 list_add(&pending_snapshot->list,
704 &trans->transaction->pending_snapshots);
Josef Bacik83515832011-06-14 15:16:14 -0400705 spin_unlock(&root->fs_info->trans_lock);
Sage Weil72fd0322010-10-29 15:41:32 -0400706 if (async_transid) {
707 *async_transid = trans->transid;
708 ret = btrfs_commit_transaction_async(trans,
709 root->fs_info->extent_root, 1);
Miao Xie00d71c92013-03-04 09:45:06 +0000710 if (ret)
711 ret = btrfs_commit_transaction(trans, root);
Sage Weil72fd0322010-10-29 15:41:32 -0400712 } else {
713 ret = btrfs_commit_transaction(trans,
714 root->fs_info->extent_root);
715 }
Miao Xieaec80302013-03-04 09:44:29 +0000716 if (ret)
Josef Bacikc37b2b62012-10-22 15:51:44 -0400717 goto fail;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400718
719 ret = pending_snapshot->error;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400720 if (ret)
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000721 goto fail;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400722
Chris Masond3797302014-10-15 13:50:56 -0700723 ret = btrfs_orphan_cleanup(pending_snapshot->snap);
724 if (ret)
725 goto fail;
726
David Howells2b0143b2015-03-17 22:25:59 +0000727 inode = btrfs_lookup_dentry(d_inode(dentry->d_parent), dentry);
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000728 if (IS_ERR(inode)) {
729 ret = PTR_ERR(inode);
730 goto fail;
731 }
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900732
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000733 d_instantiate(dentry, inode);
734 ret = 0;
735fail:
Miao Xied5c12072013-02-28 10:04:33 +0000736 btrfs_subvolume_release_metadata(BTRFS_I(dir)->root,
737 &pending_snapshot->block_rsv,
738 pending_snapshot->qgroup_reserved);
Miao Xie8257b2d2014-03-06 13:38:19 +0800739free:
Yan, Zhenga22285a2010-05-16 10:48:46 -0400740 kfree(pending_snapshot);
Miao Xie8257b2d2014-03-06 13:38:19 +0800741out:
Filipe Manana9ea24bb2014-10-29 11:57:59 +0000742 if (atomic_dec_and_test(&root->will_be_snapshoted))
743 wake_up_atomic_t(&root->will_be_snapshoted);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400744 return ret;
745}
746
Sage Weil4260f7c2010-10-29 15:46:43 -0400747/* copy of may_delete in fs/namei.c()
748 * Check whether we can remove a link victim from directory dir, check
749 * whether the type of victim is right.
750 * 1. We can't do it if dir is read-only (done in permission())
751 * 2. We should have write and exec permissions on dir
752 * 3. We can't remove anything from append-only dir
753 * 4. We can't do anything with immutable dir (done in permission())
754 * 5. If the sticky bit on dir is set we should either
755 * a. be owner of dir, or
756 * b. be owner of victim, or
757 * c. have CAP_FOWNER capability
758 * 6. If the victim is append-only or immutable we can't do antyhing with
759 * links pointing to it.
760 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
761 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
762 * 9. We can't remove a root or mountpoint.
763 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
764 * nfs_async_unlink().
765 */
766
Dulshani Gunawardhana67871252013-10-31 10:33:04 +0530767static int btrfs_may_delete(struct inode *dir, struct dentry *victim, int isdir)
Sage Weil4260f7c2010-10-29 15:46:43 -0400768{
769 int error;
770
David Howells2b0143b2015-03-17 22:25:59 +0000771 if (d_really_is_negative(victim))
Sage Weil4260f7c2010-10-29 15:46:43 -0400772 return -ENOENT;
773
David Howells2b0143b2015-03-17 22:25:59 +0000774 BUG_ON(d_inode(victim->d_parent) != dir);
Jeff Layton4fa6b5e2012-10-10 15:25:25 -0400775 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
Sage Weil4260f7c2010-10-29 15:46:43 -0400776
777 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
778 if (error)
779 return error;
780 if (IS_APPEND(dir))
781 return -EPERM;
David Howells2b0143b2015-03-17 22:25:59 +0000782 if (check_sticky(dir, d_inode(victim)) || IS_APPEND(d_inode(victim)) ||
783 IS_IMMUTABLE(d_inode(victim)) || IS_SWAPFILE(d_inode(victim)))
Sage Weil4260f7c2010-10-29 15:46:43 -0400784 return -EPERM;
785 if (isdir) {
David Howellse36cb0b2015-01-29 12:02:35 +0000786 if (!d_is_dir(victim))
Sage Weil4260f7c2010-10-29 15:46:43 -0400787 return -ENOTDIR;
788 if (IS_ROOT(victim))
789 return -EBUSY;
David Howellse36cb0b2015-01-29 12:02:35 +0000790 } else if (d_is_dir(victim))
Sage Weil4260f7c2010-10-29 15:46:43 -0400791 return -EISDIR;
792 if (IS_DEADDIR(dir))
793 return -ENOENT;
794 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
795 return -EBUSY;
796 return 0;
797}
798
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400799/* copy of may_create in fs/namei.c() */
800static inline int btrfs_may_create(struct inode *dir, struct dentry *child)
801{
David Howells2b0143b2015-03-17 22:25:59 +0000802 if (d_really_is_positive(child))
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400803 return -EEXIST;
804 if (IS_DEADDIR(dir))
805 return -ENOENT;
806 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
807}
808
809/*
810 * Create a new subvolume below @parent. This is largely modeled after
811 * sys_mkdirat and vfs_mkdir, but we only do a single component lookup
812 * inside this filesystem so it's quite a bit simpler.
813 */
Yan, Zheng76dda932009-09-21 16:00:26 -0400814static noinline int btrfs_mksubvol(struct path *parent,
815 char *name, int namelen,
Sage Weil72fd0322010-10-29 15:41:32 -0400816 struct btrfs_root *snap_src,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200817 u64 *async_transid, bool readonly,
Miao Xie8696c532013-02-07 06:02:44 +0000818 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400819{
David Howells2b0143b2015-03-17 22:25:59 +0000820 struct inode *dir = d_inode(parent->dentry);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400821 struct dentry *dentry;
822 int error;
823
David Sterba5c50c9b2013-03-22 18:12:51 +0000824 error = mutex_lock_killable_nested(&dir->i_mutex, I_MUTEX_PARENT);
825 if (error == -EINTR)
826 return error;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400827
828 dentry = lookup_one_len(name, parent->dentry, namelen);
829 error = PTR_ERR(dentry);
830 if (IS_ERR(dentry))
831 goto out_unlock;
832
833 error = -EEXIST;
David Howells2b0143b2015-03-17 22:25:59 +0000834 if (d_really_is_positive(dentry))
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400835 goto out_dput;
836
Yan, Zheng76dda932009-09-21 16:00:26 -0400837 error = btrfs_may_create(dir, dentry);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400838 if (error)
Liu Boa874a632012-06-29 03:58:46 -0600839 goto out_dput;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400840
Chris Mason9c520572012-12-17 14:26:57 -0500841 /*
842 * even if this name doesn't exist, we may get hash collisions.
843 * check for them now when we can safely fail
844 */
845 error = btrfs_check_dir_item_collision(BTRFS_I(dir)->root,
846 dir->i_ino, name,
847 namelen);
848 if (error)
849 goto out_dput;
850
Yan, Zheng76dda932009-09-21 16:00:26 -0400851 down_read(&BTRFS_I(dir)->root->fs_info->subvol_sem);
852
853 if (btrfs_root_refs(&BTRFS_I(dir)->root->root_item) == 0)
854 goto out_up_read;
855
Chris Mason3de45862008-11-17 21:02:50 -0500856 if (snap_src) {
Miao Xiee9662f72013-02-28 10:01:15 +0000857 error = create_snapshot(snap_src, dir, dentry, name, namelen,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200858 async_transid, readonly, inherit);
Chris Mason3de45862008-11-17 21:02:50 -0500859 } else {
Miao Xied5c12072013-02-28 10:04:33 +0000860 error = create_subvol(dir, dentry, name, namelen,
861 async_transid, inherit);
Chris Mason3de45862008-11-17 21:02:50 -0500862 }
Yan, Zheng76dda932009-09-21 16:00:26 -0400863 if (!error)
864 fsnotify_mkdir(dir, dentry);
865out_up_read:
866 up_read(&BTRFS_I(dir)->root->fs_info->subvol_sem);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400867out_dput:
868 dput(dentry);
869out_unlock:
Yan, Zheng76dda932009-09-21 16:00:26 -0400870 mutex_unlock(&dir->i_mutex);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400871 return error;
872}
873
Chris Mason4cb53002011-05-24 15:35:30 -0400874/*
875 * When we're defragging a range, we don't want to kick it off again
876 * if it is really just waiting for delalloc to send it down.
877 * If we find a nice big extent or delalloc range for the bytes in the
878 * file you want to defrag, we return 0 to let you know to skip this
879 * part of the file
880 */
David Sterbaaab110a2014-07-29 17:32:10 +0200881static int check_defrag_in_cache(struct inode *inode, u64 offset, u32 thresh)
Chris Mason4cb53002011-05-24 15:35:30 -0400882{
883 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
884 struct extent_map *em = NULL;
885 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
886 u64 end;
887
888 read_lock(&em_tree->lock);
889 em = lookup_extent_mapping(em_tree, offset, PAGE_CACHE_SIZE);
890 read_unlock(&em_tree->lock);
891
892 if (em) {
893 end = extent_map_end(em);
894 free_extent_map(em);
895 if (end - offset > thresh)
896 return 0;
897 }
898 /* if we already have a nice delalloc here, just stop */
899 thresh /= 2;
900 end = count_range_bits(io_tree, &offset, offset + thresh,
901 thresh, EXTENT_DELALLOC, 1);
902 if (end >= thresh)
903 return 0;
904 return 1;
905}
906
907/*
908 * helper function to walk through a file and find extents
909 * newer than a specific transid, and smaller than thresh.
910 *
911 * This is used by the defragging code to find new and small
912 * extents
913 */
914static int find_new_extents(struct btrfs_root *root,
915 struct inode *inode, u64 newer_than,
David Sterbaaab110a2014-07-29 17:32:10 +0200916 u64 *off, u32 thresh)
Chris Mason4cb53002011-05-24 15:35:30 -0400917{
918 struct btrfs_path *path;
919 struct btrfs_key min_key;
Chris Mason4cb53002011-05-24 15:35:30 -0400920 struct extent_buffer *leaf;
921 struct btrfs_file_extent_item *extent;
922 int type;
923 int ret;
David Sterbaa4689d22011-05-31 17:08:14 +0000924 u64 ino = btrfs_ino(inode);
Chris Mason4cb53002011-05-24 15:35:30 -0400925
926 path = btrfs_alloc_path();
927 if (!path)
928 return -ENOMEM;
929
David Sterbaa4689d22011-05-31 17:08:14 +0000930 min_key.objectid = ino;
Chris Mason4cb53002011-05-24 15:35:30 -0400931 min_key.type = BTRFS_EXTENT_DATA_KEY;
932 min_key.offset = *off;
933
Dulshani Gunawardhana67871252013-10-31 10:33:04 +0530934 while (1) {
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +0100935 ret = btrfs_search_forward(root, &min_key, path, newer_than);
Chris Mason4cb53002011-05-24 15:35:30 -0400936 if (ret != 0)
937 goto none;
Filipe Mananaf094c9bd2014-03-12 01:28:24 +0000938process_slot:
David Sterbaa4689d22011-05-31 17:08:14 +0000939 if (min_key.objectid != ino)
Chris Mason4cb53002011-05-24 15:35:30 -0400940 goto none;
941 if (min_key.type != BTRFS_EXTENT_DATA_KEY)
942 goto none;
943
944 leaf = path->nodes[0];
945 extent = btrfs_item_ptr(leaf, path->slots[0],
946 struct btrfs_file_extent_item);
947
948 type = btrfs_file_extent_type(leaf, extent);
949 if (type == BTRFS_FILE_EXTENT_REG &&
950 btrfs_file_extent_num_bytes(leaf, extent) < thresh &&
951 check_defrag_in_cache(inode, min_key.offset, thresh)) {
952 *off = min_key.offset;
953 btrfs_free_path(path);
954 return 0;
955 }
956
Filipe Mananaf094c9bd2014-03-12 01:28:24 +0000957 path->slots[0]++;
958 if (path->slots[0] < btrfs_header_nritems(leaf)) {
959 btrfs_item_key_to_cpu(leaf, &min_key, path->slots[0]);
960 goto process_slot;
961 }
962
Chris Mason4cb53002011-05-24 15:35:30 -0400963 if (min_key.offset == (u64)-1)
964 goto none;
965
966 min_key.offset++;
967 btrfs_release_path(path);
968 }
969none:
970 btrfs_free_path(path);
971 return -ENOENT;
972}
973
Li Zefan6c282eb2012-06-11 16:03:35 +0800974static struct extent_map *defrag_lookup_extent(struct inode *inode, u64 start)
Liu Bo17ce6ef2012-03-29 09:57:45 -0400975{
976 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason940100a2010-03-10 10:52:59 -0500977 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Li Zefan6c282eb2012-06-11 16:03:35 +0800978 struct extent_map *em;
979 u64 len = PAGE_CACHE_SIZE;
Chris Mason940100a2010-03-10 10:52:59 -0500980
981 /*
982 * hopefully we have this extent in the tree already, try without
983 * the full extent lock
984 */
985 read_lock(&em_tree->lock);
986 em = lookup_extent_mapping(em_tree, start, len);
987 read_unlock(&em_tree->lock);
988
989 if (!em) {
Filipe Manana308d9802014-03-11 13:56:15 +0000990 struct extent_state *cached = NULL;
991 u64 end = start + len - 1;
992
Chris Mason940100a2010-03-10 10:52:59 -0500993 /* get the big lock and read metadata off disk */
Filipe Manana308d9802014-03-11 13:56:15 +0000994 lock_extent_bits(io_tree, start, end, 0, &cached);
Chris Mason940100a2010-03-10 10:52:59 -0500995 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
Filipe Manana308d9802014-03-11 13:56:15 +0000996 unlock_extent_cached(io_tree, start, end, &cached, GFP_NOFS);
Chris Mason940100a2010-03-10 10:52:59 -0500997
Dan Carpenter6cf8bfb2010-03-20 11:22:10 +0000998 if (IS_ERR(em))
Li Zefan6c282eb2012-06-11 16:03:35 +0800999 return NULL;
Chris Mason940100a2010-03-10 10:52:59 -05001000 }
1001
Li Zefan6c282eb2012-06-11 16:03:35 +08001002 return em;
1003}
1004
1005static bool defrag_check_next_extent(struct inode *inode, struct extent_map *em)
1006{
1007 struct extent_map *next;
1008 bool ret = true;
1009
1010 /* this is the last extent */
1011 if (em->start + em->len >= i_size_read(inode))
1012 return false;
1013
1014 next = defrag_lookup_extent(inode, em->start + em->len);
Chris Masone9512d72014-08-26 13:55:54 -07001015 if (!next || next->block_start >= EXTENT_MAP_LAST_BYTE)
1016 ret = false;
1017 else if ((em->block_start + em->block_len == next->block_start) &&
1018 (em->block_len > 128 * 1024 && next->block_len > 128 * 1024))
Li Zefan6c282eb2012-06-11 16:03:35 +08001019 ret = false;
1020
1021 free_extent_map(next);
1022 return ret;
1023}
1024
David Sterbaaab110a2014-07-29 17:32:10 +02001025static int should_defrag_range(struct inode *inode, u64 start, u32 thresh,
Andrew Mahonea43a2112012-06-19 21:08:32 -04001026 u64 *last_len, u64 *skip, u64 *defrag_end,
1027 int compress)
Li Zefan6c282eb2012-06-11 16:03:35 +08001028{
1029 struct extent_map *em;
1030 int ret = 1;
1031 bool next_mergeable = true;
1032
1033 /*
1034 * make sure that once we start defragging an extent, we keep on
1035 * defragging it
1036 */
1037 if (start < *defrag_end)
1038 return 1;
1039
1040 *skip = 0;
1041
1042 em = defrag_lookup_extent(inode, start);
1043 if (!em)
1044 return 0;
1045
Chris Mason940100a2010-03-10 10:52:59 -05001046 /* this will cover holes, and inline extents */
Liu Bo17ce6ef2012-03-29 09:57:45 -04001047 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
Chris Mason940100a2010-03-10 10:52:59 -05001048 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -04001049 goto out;
1050 }
1051
Li Zefan6c282eb2012-06-11 16:03:35 +08001052 next_mergeable = defrag_check_next_extent(inode, em);
Chris Mason940100a2010-03-10 10:52:59 -05001053 /*
Li Zefan6c282eb2012-06-11 16:03:35 +08001054 * we hit a real extent, if it is big or the next extent is not a
1055 * real extent, don't bother defragging it
Chris Mason940100a2010-03-10 10:52:59 -05001056 */
Andrew Mahonea43a2112012-06-19 21:08:32 -04001057 if (!compress && (*last_len == 0 || *last_len >= thresh) &&
Li Zefan6c282eb2012-06-11 16:03:35 +08001058 (em->len >= thresh || !next_mergeable))
Chris Mason940100a2010-03-10 10:52:59 -05001059 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -04001060out:
Chris Mason940100a2010-03-10 10:52:59 -05001061 /*
1062 * last_len ends up being a counter of how many bytes we've defragged.
1063 * every time we choose not to defrag an extent, we reset *last_len
1064 * so that the next tiny extent will force a defrag.
1065 *
1066 * The end result of this is that tiny extents before a single big
1067 * extent will force at least part of that big extent to be defragged.
1068 */
1069 if (ret) {
Chris Mason940100a2010-03-10 10:52:59 -05001070 *defrag_end = extent_map_end(em);
1071 } else {
1072 *last_len = 0;
1073 *skip = extent_map_end(em);
1074 *defrag_end = 0;
1075 }
1076
1077 free_extent_map(em);
1078 return ret;
1079}
1080
Chris Mason4cb53002011-05-24 15:35:30 -04001081/*
1082 * it doesn't do much good to defrag one or two pages
1083 * at a time. This pulls in a nice chunk of pages
1084 * to COW and defrag.
1085 *
1086 * It also makes sure the delalloc code has enough
1087 * dirty data to avoid making new small extents as part
1088 * of the defrag
1089 *
1090 * It's a good idea to start RA on this range
1091 * before calling this.
1092 */
1093static int cluster_pages_for_defrag(struct inode *inode,
1094 struct page **pages,
1095 unsigned long start_index,
Justin Maggardc41570c2014-01-21 11:18:29 -08001096 unsigned long num_pages)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001097{
Chris Mason4cb53002011-05-24 15:35:30 -04001098 unsigned long file_end;
1099 u64 isize = i_size_read(inode);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001100 u64 page_start;
1101 u64 page_end;
Liu Bo1f12bd02012-03-29 09:57:44 -04001102 u64 page_cnt;
Chris Mason4cb53002011-05-24 15:35:30 -04001103 int ret;
1104 int i;
1105 int i_done;
1106 struct btrfs_ordered_extent *ordered;
1107 struct extent_state *cached_state = NULL;
Miao Xie600a45e2012-02-16 15:01:24 +08001108 struct extent_io_tree *tree;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04001109 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
Chris Mason4cb53002011-05-24 15:35:30 -04001110
Chris Mason4cb53002011-05-24 15:35:30 -04001111 file_end = (isize - 1) >> PAGE_CACHE_SHIFT;
Liu Bo1f12bd02012-03-29 09:57:44 -04001112 if (!isize || start_index > file_end)
1113 return 0;
1114
1115 page_cnt = min_t(u64, (u64)num_pages, (u64)file_end - start_index + 1);
Chris Mason4cb53002011-05-24 15:35:30 -04001116
1117 ret = btrfs_delalloc_reserve_space(inode,
Liu Bo1f12bd02012-03-29 09:57:44 -04001118 page_cnt << PAGE_CACHE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001119 if (ret)
1120 return ret;
Chris Mason4cb53002011-05-24 15:35:30 -04001121 i_done = 0;
Miao Xie600a45e2012-02-16 15:01:24 +08001122 tree = &BTRFS_I(inode)->io_tree;
Chris Mason4cb53002011-05-24 15:35:30 -04001123
1124 /* step one, lock all the pages */
Liu Bo1f12bd02012-03-29 09:57:44 -04001125 for (i = 0; i < page_cnt; i++) {
Chris Mason4cb53002011-05-24 15:35:30 -04001126 struct page *page;
Miao Xie600a45e2012-02-16 15:01:24 +08001127again:
Josef Bacika94733d2011-07-11 10:47:06 -04001128 page = find_or_create_page(inode->i_mapping,
Miao Xie600a45e2012-02-16 15:01:24 +08001129 start_index + i, mask);
Chris Mason4cb53002011-05-24 15:35:30 -04001130 if (!page)
1131 break;
1132
Miao Xie600a45e2012-02-16 15:01:24 +08001133 page_start = page_offset(page);
1134 page_end = page_start + PAGE_CACHE_SIZE - 1;
1135 while (1) {
Filipe Manana308d9802014-03-11 13:56:15 +00001136 lock_extent_bits(tree, page_start, page_end,
1137 0, &cached_state);
Miao Xie600a45e2012-02-16 15:01:24 +08001138 ordered = btrfs_lookup_ordered_extent(inode,
1139 page_start);
Filipe Manana308d9802014-03-11 13:56:15 +00001140 unlock_extent_cached(tree, page_start, page_end,
1141 &cached_state, GFP_NOFS);
Miao Xie600a45e2012-02-16 15:01:24 +08001142 if (!ordered)
1143 break;
1144
1145 unlock_page(page);
1146 btrfs_start_ordered_extent(inode, ordered, 1);
1147 btrfs_put_ordered_extent(ordered);
1148 lock_page(page);
Liu Bo1f12bd02012-03-29 09:57:44 -04001149 /*
1150 * we unlocked the page above, so we need check if
1151 * it was released or not.
1152 */
1153 if (page->mapping != inode->i_mapping) {
1154 unlock_page(page);
1155 page_cache_release(page);
1156 goto again;
1157 }
Miao Xie600a45e2012-02-16 15:01:24 +08001158 }
1159
Chris Mason4cb53002011-05-24 15:35:30 -04001160 if (!PageUptodate(page)) {
1161 btrfs_readpage(NULL, page);
1162 lock_page(page);
1163 if (!PageUptodate(page)) {
1164 unlock_page(page);
1165 page_cache_release(page);
1166 ret = -EIO;
1167 break;
1168 }
1169 }
Miao Xie600a45e2012-02-16 15:01:24 +08001170
Miao Xie600a45e2012-02-16 15:01:24 +08001171 if (page->mapping != inode->i_mapping) {
1172 unlock_page(page);
1173 page_cache_release(page);
1174 goto again;
1175 }
1176
Chris Mason4cb53002011-05-24 15:35:30 -04001177 pages[i] = page;
1178 i_done++;
1179 }
1180 if (!i_done || ret)
1181 goto out;
1182
1183 if (!(inode->i_sb->s_flags & MS_ACTIVE))
1184 goto out;
1185
1186 /*
1187 * so now we have a nice long stream of locked
1188 * and up to date pages, lets wait on them
1189 */
1190 for (i = 0; i < i_done; i++)
1191 wait_on_page_writeback(pages[i]);
1192
1193 page_start = page_offset(pages[0]);
1194 page_end = page_offset(pages[i_done - 1]) + PAGE_CACHE_SIZE;
1195
1196 lock_extent_bits(&BTRFS_I(inode)->io_tree,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001197 page_start, page_end - 1, 0, &cached_state);
Chris Mason4cb53002011-05-24 15:35:30 -04001198 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start,
1199 page_end - 1, EXTENT_DIRTY | EXTENT_DELALLOC |
Liu Bo9e8a4a82012-09-05 19:10:51 -06001200 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, 0, 0,
1201 &cached_state, GFP_NOFS);
Chris Mason4cb53002011-05-24 15:35:30 -04001202
Liu Bo1f12bd02012-03-29 09:57:44 -04001203 if (i_done != page_cnt) {
Josef Bacik9e0baf62011-07-15 15:16:44 +00001204 spin_lock(&BTRFS_I(inode)->lock);
1205 BTRFS_I(inode)->outstanding_extents++;
1206 spin_unlock(&BTRFS_I(inode)->lock);
Chris Mason4cb53002011-05-24 15:35:30 -04001207 btrfs_delalloc_release_space(inode,
Liu Bo1f12bd02012-03-29 09:57:44 -04001208 (page_cnt - i_done) << PAGE_CACHE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001209 }
1210
1211
Liu Bo9e8a4a82012-09-05 19:10:51 -06001212 set_extent_defrag(&BTRFS_I(inode)->io_tree, page_start, page_end - 1,
1213 &cached_state, GFP_NOFS);
Chris Mason4cb53002011-05-24 15:35:30 -04001214
1215 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
1216 page_start, page_end - 1, &cached_state,
1217 GFP_NOFS);
1218
1219 for (i = 0; i < i_done; i++) {
1220 clear_page_dirty_for_io(pages[i]);
1221 ClearPageChecked(pages[i]);
1222 set_page_extent_mapped(pages[i]);
1223 set_page_dirty(pages[i]);
1224 unlock_page(pages[i]);
1225 page_cache_release(pages[i]);
1226 }
1227 return i_done;
1228out:
1229 for (i = 0; i < i_done; i++) {
1230 unlock_page(pages[i]);
1231 page_cache_release(pages[i]);
1232 }
Liu Bo1f12bd02012-03-29 09:57:44 -04001233 btrfs_delalloc_release_space(inode, page_cnt << PAGE_CACHE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001234 return ret;
1235
1236}
1237
1238int btrfs_defrag_file(struct inode *inode, struct file *file,
1239 struct btrfs_ioctl_defrag_range_args *range,
1240 u64 newer_than, unsigned long max_to_defrag)
1241{
1242 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason4cb53002011-05-24 15:35:30 -04001243 struct file_ra_state *ra = NULL;
1244 unsigned long last_index;
Li Zefan151a31b2011-09-02 15:56:39 +08001245 u64 isize = i_size_read(inode);
Chris Mason940100a2010-03-10 10:52:59 -05001246 u64 last_len = 0;
1247 u64 skip = 0;
1248 u64 defrag_end = 0;
Chris Mason4cb53002011-05-24 15:35:30 -04001249 u64 newer_off = range->start;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001250 unsigned long i;
Li Zefan008873e2011-09-02 15:57:07 +08001251 unsigned long ra_index = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001252 int ret;
Chris Mason4cb53002011-05-24 15:35:30 -04001253 int defrag_count = 0;
Li Zefan1a419d82010-10-25 15:12:50 +08001254 int compress_type = BTRFS_COMPRESS_ZLIB;
David Sterbaaab110a2014-07-29 17:32:10 +02001255 u32 extent_thresh = range->extent_thresh;
Justin Maggardc41570c2014-01-21 11:18:29 -08001256 unsigned long max_cluster = (256 * 1024) >> PAGE_CACHE_SHIFT;
1257 unsigned long cluster = max_cluster;
Chris Mason4cb53002011-05-24 15:35:30 -04001258 u64 new_align = ~((u64)128 * 1024 - 1);
1259 struct page **pages = NULL;
1260
Liu Bo0abd5b12013-04-16 09:20:28 +00001261 if (isize == 0)
1262 return 0;
1263
1264 if (range->start >= isize)
1265 return -EINVAL;
Li Zefan1a419d82010-10-25 15:12:50 +08001266
1267 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS) {
1268 if (range->compress_type > BTRFS_COMPRESS_TYPES)
1269 return -EINVAL;
1270 if (range->compress_type)
1271 compress_type = range->compress_type;
1272 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001273
Liu Bo0abd5b12013-04-16 09:20:28 +00001274 if (extent_thresh == 0)
1275 extent_thresh = 256 * 1024;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001276
Chris Mason4cb53002011-05-24 15:35:30 -04001277 /*
1278 * if we were not given a file, allocate a readahead
1279 * context
1280 */
1281 if (!file) {
1282 ra = kzalloc(sizeof(*ra), GFP_NOFS);
1283 if (!ra)
1284 return -ENOMEM;
1285 file_ra_state_init(ra, inode->i_mapping);
1286 } else {
1287 ra = &file->f_ra;
1288 }
1289
Dulshani Gunawardhanad9b0d9b2013-10-31 10:32:18 +05301290 pages = kmalloc_array(max_cluster, sizeof(struct page *),
Chris Mason4cb53002011-05-24 15:35:30 -04001291 GFP_NOFS);
1292 if (!pages) {
1293 ret = -ENOMEM;
1294 goto out_ra;
1295 }
1296
1297 /* find the last page to defrag */
Chris Mason1e701a32010-03-11 09:42:04 -05001298 if (range->start + range->len > range->start) {
Li Zefan151a31b2011-09-02 15:56:39 +08001299 last_index = min_t(u64, isize - 1,
Chris Mason1e701a32010-03-11 09:42:04 -05001300 range->start + range->len - 1) >> PAGE_CACHE_SHIFT;
1301 } else {
Li Zefan151a31b2011-09-02 15:56:39 +08001302 last_index = (isize - 1) >> PAGE_CACHE_SHIFT;
Chris Mason1e701a32010-03-11 09:42:04 -05001303 }
1304
Chris Mason4cb53002011-05-24 15:35:30 -04001305 if (newer_than) {
1306 ret = find_new_extents(root, inode, newer_than,
1307 &newer_off, 64 * 1024);
1308 if (!ret) {
1309 range->start = newer_off;
1310 /*
1311 * we always align our defrag to help keep
1312 * the extents in the file evenly spaced
1313 */
1314 i = (newer_off & new_align) >> PAGE_CACHE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001315 } else
1316 goto out_ra;
1317 } else {
1318 i = range->start >> PAGE_CACHE_SHIFT;
1319 }
1320 if (!max_to_defrag)
chandan070034b2015-06-09 10:35:11 +05301321 max_to_defrag = last_index - i + 1;
Chris Mason4cb53002011-05-24 15:35:30 -04001322
Li Zefan2a0f7f52011-10-10 15:43:34 -04001323 /*
1324 * make writeback starts from i, so the defrag range can be
1325 * written sequentially.
1326 */
1327 if (i < inode->i_mapping->writeback_index)
1328 inode->i_mapping->writeback_index = i;
1329
Chris Masonf7f43cc2011-10-11 11:41:40 -04001330 while (i <= last_index && defrag_count < max_to_defrag &&
David Sterbaed6078f2014-06-05 01:59:57 +02001331 (i < DIV_ROUND_UP(i_size_read(inode), PAGE_CACHE_SIZE))) {
Chris Mason4cb53002011-05-24 15:35:30 -04001332 /*
1333 * make sure we stop running if someone unmounts
1334 * the FS
1335 */
1336 if (!(inode->i_sb->s_flags & MS_ACTIVE))
1337 break;
1338
David Sterba210549e2013-02-09 23:38:06 +00001339 if (btrfs_defrag_cancelled(root->fs_info)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05001340 printk(KERN_DEBUG "BTRFS: defrag_file cancelled\n");
David Sterba210549e2013-02-09 23:38:06 +00001341 ret = -EAGAIN;
1342 break;
1343 }
1344
Liu Bo66c26892012-03-29 09:57:45 -04001345 if (!should_defrag_range(inode, (u64)i << PAGE_CACHE_SHIFT,
Li Zefan6c282eb2012-06-11 16:03:35 +08001346 extent_thresh, &last_len, &skip,
Andrew Mahonea43a2112012-06-19 21:08:32 -04001347 &defrag_end, range->flags &
1348 BTRFS_DEFRAG_RANGE_COMPRESS)) {
Chris Mason940100a2010-03-10 10:52:59 -05001349 unsigned long next;
1350 /*
1351 * the should_defrag function tells us how much to skip
1352 * bump our counter by the suggested amount
1353 */
David Sterbaed6078f2014-06-05 01:59:57 +02001354 next = DIV_ROUND_UP(skip, PAGE_CACHE_SIZE);
Chris Mason940100a2010-03-10 10:52:59 -05001355 i = max(i + 1, next);
1356 continue;
1357 }
Li Zefan008873e2011-09-02 15:57:07 +08001358
1359 if (!newer_than) {
1360 cluster = (PAGE_CACHE_ALIGN(defrag_end) >>
1361 PAGE_CACHE_SHIFT) - i;
1362 cluster = min(cluster, max_cluster);
1363 } else {
1364 cluster = max_cluster;
1365 }
1366
Li Zefan008873e2011-09-02 15:57:07 +08001367 if (i + cluster > ra_index) {
1368 ra_index = max(i, ra_index);
1369 btrfs_force_ra(inode->i_mapping, ra, file, ra_index,
1370 cluster);
chandane4826a52015-06-09 17:38:32 +05301371 ra_index += cluster;
Li Zefan008873e2011-09-02 15:57:07 +08001372 }
Chris Mason940100a2010-03-10 10:52:59 -05001373
Liu Boecb8bea2012-03-29 09:57:44 -04001374 mutex_lock(&inode->i_mutex);
Filipe David Borba Manana633085c2013-08-16 15:23:33 +01001375 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)
1376 BTRFS_I(inode)->force_compress = compress_type;
Li Zefan008873e2011-09-02 15:57:07 +08001377 ret = cluster_pages_for_defrag(inode, pages, i, cluster);
Liu Boecb8bea2012-03-29 09:57:44 -04001378 if (ret < 0) {
1379 mutex_unlock(&inode->i_mutex);
Chris Mason4cb53002011-05-24 15:35:30 -04001380 goto out_ra;
Liu Boecb8bea2012-03-29 09:57:44 -04001381 }
Chris Mason940100a2010-03-10 10:52:59 -05001382
Chris Mason4cb53002011-05-24 15:35:30 -04001383 defrag_count += ret;
Namjae Jeond0e1d662012-12-11 16:00:21 -08001384 balance_dirty_pages_ratelimited(inode->i_mapping);
Liu Boecb8bea2012-03-29 09:57:44 -04001385 mutex_unlock(&inode->i_mutex);
Chris Mason4cb53002011-05-24 15:35:30 -04001386
1387 if (newer_than) {
1388 if (newer_off == (u64)-1)
1389 break;
1390
Liu Boe1f041e2012-03-29 09:57:45 -04001391 if (ret > 0)
1392 i += ret;
1393
Chris Mason4cb53002011-05-24 15:35:30 -04001394 newer_off = max(newer_off + 1,
1395 (u64)i << PAGE_CACHE_SHIFT);
1396
1397 ret = find_new_extents(root, inode,
1398 newer_than, &newer_off,
1399 64 * 1024);
1400 if (!ret) {
1401 range->start = newer_off;
1402 i = (newer_off & new_align) >> PAGE_CACHE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001403 } else {
1404 break;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001405 }
Chris Mason4cb53002011-05-24 15:35:30 -04001406 } else {
Li Zefan008873e2011-09-02 15:57:07 +08001407 if (ret > 0) {
Li Zefancbcc8322011-09-02 15:56:25 +08001408 i += ret;
Li Zefan008873e2011-09-02 15:57:07 +08001409 last_len += ret << PAGE_CACHE_SHIFT;
1410 } else {
Li Zefancbcc8322011-09-02 15:56:25 +08001411 i++;
Li Zefan008873e2011-09-02 15:57:07 +08001412 last_len = 0;
1413 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001414 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001415 }
1416
Filipe Mananadec8ef92014-03-01 10:55:54 +00001417 if ((range->flags & BTRFS_DEFRAG_RANGE_START_IO)) {
Chris Mason1e701a32010-03-11 09:42:04 -05001418 filemap_flush(inode->i_mapping);
Filipe Mananadec8ef92014-03-01 10:55:54 +00001419 if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
1420 &BTRFS_I(inode)->runtime_flags))
1421 filemap_flush(inode->i_mapping);
1422 }
Chris Mason1e701a32010-03-11 09:42:04 -05001423
1424 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
1425 /* the filemap_flush will queue IO into the worker threads, but
1426 * we have to make sure the IO is actually started and that
1427 * ordered extents get created before we return
1428 */
1429 atomic_inc(&root->fs_info->async_submit_draining);
1430 while (atomic_read(&root->fs_info->nr_async_submits) ||
1431 atomic_read(&root->fs_info->async_delalloc_pages)) {
1432 wait_event(root->fs_info->async_submit_wait,
1433 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
1434 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
1435 }
1436 atomic_dec(&root->fs_info->async_submit_draining);
Chris Mason1e701a32010-03-11 09:42:04 -05001437 }
1438
Li Zefan1a419d82010-10-25 15:12:50 +08001439 if (range->compress_type == BTRFS_COMPRESS_LZO) {
Mitch Harder2b0ce2c2012-07-24 11:58:43 -06001440 btrfs_set_fs_incompat(root->fs_info, COMPRESS_LZO);
Li Zefan1a419d82010-10-25 15:12:50 +08001441 }
1442
Diego Calleja60ccf822011-09-01 16:33:57 +02001443 ret = defrag_count;
Chris Mason940100a2010-03-10 10:52:59 -05001444
Chris Mason4cb53002011-05-24 15:35:30 -04001445out_ra:
Filipe David Borba Manana633085c2013-08-16 15:23:33 +01001446 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS) {
1447 mutex_lock(&inode->i_mutex);
1448 BTRFS_I(inode)->force_compress = BTRFS_COMPRESS_NONE;
1449 mutex_unlock(&inode->i_mutex);
1450 }
Chris Mason4cb53002011-05-24 15:35:30 -04001451 if (!file)
1452 kfree(ra);
1453 kfree(pages);
Chris Mason940100a2010-03-10 10:52:59 -05001454 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001455}
1456
Miao Xie198605a2012-11-26 08:43:45 +00001457static noinline int btrfs_ioctl_resize(struct file *file,
Yan, Zheng76dda932009-09-21 16:00:26 -04001458 void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001459{
1460 u64 new_size;
1461 u64 old_size;
1462 u64 devid = 1;
Al Viro496ad9a2013-01-23 17:07:38 -05001463 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001464 struct btrfs_ioctl_vol_args *vol_args;
1465 struct btrfs_trans_handle *trans;
1466 struct btrfs_device *device = NULL;
1467 char *sizestr;
Gui Hecheng9a40f122014-03-31 18:03:25 +08001468 char *retptr;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001469 char *devstr = NULL;
1470 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001471 int mod = 0;
1472
Chris Masone441d542009-01-05 16:57:23 -05001473 if (!capable(CAP_SYS_ADMIN))
1474 return -EPERM;
1475
Miao Xie198605a2012-11-26 08:43:45 +00001476 ret = mnt_want_write_file(file);
1477 if (ret)
1478 return ret;
1479
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01001480 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
1481 1)) {
Miao Xie97547672012-12-21 10:38:50 +00001482 mnt_drop_write_file(file);
Anand Jaine57138b2013-08-21 11:44:48 +08001483 return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001484 }
1485
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01001486 mutex_lock(&root->fs_info->volume_mutex);
Li Zefandae7b662009-04-08 15:06:54 +08001487 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001488 if (IS_ERR(vol_args)) {
1489 ret = PTR_ERR(vol_args);
1490 goto out;
1491 }
Mark Fasheh5516e592008-07-24 12:20:14 -04001492
1493 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001494
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001495 sizestr = vol_args->name;
1496 devstr = strchr(sizestr, ':');
1497 if (devstr) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001498 sizestr = devstr + 1;
1499 *devstr = '\0';
1500 devstr = vol_args->name;
ZhangZhen58dfae62014-05-13 16:36:08 +08001501 ret = kstrtoull(devstr, 10, &devid);
1502 if (ret)
1503 goto out_free;
Miao Xiedfd79822012-12-21 09:21:30 +00001504 if (!devid) {
1505 ret = -EINVAL;
1506 goto out_free;
1507 }
Frank Holtonefe120a2013-12-20 11:37:06 -05001508 btrfs_info(root->fs_info, "resizing devid %llu", devid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001509 }
Miao Xiedba60f32012-12-21 09:19:51 +00001510
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01001511 device = btrfs_find_device(root->fs_info, devid, NULL, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001512 if (!device) {
Frank Holtonefe120a2013-12-20 11:37:06 -05001513 btrfs_info(root->fs_info, "resizer unable to find device %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001514 devid);
Miao Xiedfd79822012-12-21 09:21:30 +00001515 ret = -ENODEV;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001516 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001517 }
Miao Xiedba60f32012-12-21 09:19:51 +00001518
1519 if (!device->writeable) {
Frank Holtonefe120a2013-12-20 11:37:06 -05001520 btrfs_info(root->fs_info,
1521 "resizer unable to apply on readonly device %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001522 devid);
Miao Xiedfd79822012-12-21 09:21:30 +00001523 ret = -EPERM;
Liu Bo4e42ae12012-06-14 02:23:19 -06001524 goto out_free;
1525 }
1526
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001527 if (!strcmp(sizestr, "max"))
1528 new_size = device->bdev->bd_inode->i_size;
1529 else {
1530 if (sizestr[0] == '-') {
1531 mod = -1;
1532 sizestr++;
1533 } else if (sizestr[0] == '+') {
1534 mod = 1;
1535 sizestr++;
1536 }
Gui Hecheng9a40f122014-03-31 18:03:25 +08001537 new_size = memparse(sizestr, &retptr);
1538 if (*retptr != '\0' || new_size == 0) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001539 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001540 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001541 }
1542 }
1543
Stefan Behrens63a212a2012-11-05 18:29:28 +01001544 if (device->is_tgtdev_for_dev_replace) {
Miao Xiedfd79822012-12-21 09:21:30 +00001545 ret = -EPERM;
Stefan Behrens63a212a2012-11-05 18:29:28 +01001546 goto out_free;
1547 }
1548
Miao Xie7cc8e582014-09-03 21:35:38 +08001549 old_size = btrfs_device_get_total_bytes(device);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001550
1551 if (mod < 0) {
1552 if (new_size > old_size) {
1553 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001554 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001555 }
1556 new_size = old_size - new_size;
1557 } else if (mod > 0) {
Wenliang Faneb8052e2013-12-20 15:28:56 +08001558 if (new_size > ULLONG_MAX - old_size) {
Gui Hecheng902c68a2014-05-29 09:19:58 +08001559 ret = -ERANGE;
Wenliang Faneb8052e2013-12-20 15:28:56 +08001560 goto out_free;
1561 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001562 new_size = old_size + new_size;
1563 }
1564
1565 if (new_size < 256 * 1024 * 1024) {
1566 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001567 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001568 }
1569 if (new_size > device->bdev->bd_inode->i_size) {
1570 ret = -EFBIG;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001571 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001572 }
1573
David Sterbab8b93ad2015-01-16 17:26:13 +01001574 new_size = div_u64(new_size, root->sectorsize);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001575 new_size *= root->sectorsize;
1576
Frank Holtonefe120a2013-12-20 11:37:06 -05001577 printk_in_rcu(KERN_INFO "BTRFS: new size for %s is %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001578 rcu_str_deref(device->name), new_size);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001579
1580 if (new_size > old_size) {
Yan, Zhenga22285a2010-05-16 10:48:46 -04001581 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001582 if (IS_ERR(trans)) {
1583 ret = PTR_ERR(trans);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001584 goto out_free;
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001585 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001586 ret = btrfs_grow_device(trans, device, new_size);
1587 btrfs_commit_transaction(trans, root);
Mike Fleetwoodece7d202011-11-18 18:55:01 +00001588 } else if (new_size < old_size) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001589 ret = btrfs_shrink_device(device, new_size);
jeff.liu0253f402012-10-27 12:06:39 +00001590 } /* equal, nothing need to do */
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001591
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001592out_free:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001593 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001594out:
1595 mutex_unlock(&root->fs_info->volume_mutex);
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01001596 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
Ilya Dryomov18f39c42013-01-20 15:57:57 +02001597 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001598 return ret;
1599}
1600
Sage Weil72fd0322010-10-29 15:41:32 -04001601static noinline int btrfs_ioctl_snap_create_transid(struct file *file,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001602 char *name, unsigned long fd, int subvol,
1603 u64 *transid, bool readonly,
Miao Xie8696c532013-02-07 06:02:44 +00001604 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001605{
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001606 int namelen;
Chris Mason3de45862008-11-17 21:02:50 -05001607 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001608
Liu Boa874a632012-06-29 03:58:46 -06001609 ret = mnt_want_write_file(file);
1610 if (ret)
1611 goto out;
1612
Sage Weil72fd0322010-10-29 15:41:32 -04001613 namelen = strlen(name);
1614 if (strchr(name, '/')) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001615 ret = -EINVAL;
Liu Boa874a632012-06-29 03:58:46 -06001616 goto out_drop_write;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001617 }
1618
Chris Mason16780ca2012-02-20 22:14:55 -05001619 if (name[0] == '.' &&
1620 (namelen == 1 || (name[1] == '.' && namelen == 2))) {
1621 ret = -EEXIST;
Liu Boa874a632012-06-29 03:58:46 -06001622 goto out_drop_write;
Chris Mason16780ca2012-02-20 22:14:55 -05001623 }
1624
Chris Mason3de45862008-11-17 21:02:50 -05001625 if (subvol) {
Sage Weil72fd0322010-10-29 15:41:32 -04001626 ret = btrfs_mksubvol(&file->f_path, name, namelen,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001627 NULL, transid, readonly, inherit);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001628 } else {
Al Viro2903ff02012-08-28 12:52:22 -04001629 struct fd src = fdget(fd);
Chris Mason3de45862008-11-17 21:02:50 -05001630 struct inode *src_inode;
Al Viro2903ff02012-08-28 12:52:22 -04001631 if (!src.file) {
Chris Mason3de45862008-11-17 21:02:50 -05001632 ret = -EINVAL;
Liu Boa874a632012-06-29 03:58:46 -06001633 goto out_drop_write;
Chris Mason3de45862008-11-17 21:02:50 -05001634 }
1635
Al Viro496ad9a2013-01-23 17:07:38 -05001636 src_inode = file_inode(src.file);
1637 if (src_inode->i_sb != file_inode(file)->i_sb) {
Frank Holtonefe120a2013-12-20 11:37:06 -05001638 btrfs_info(BTRFS_I(src_inode)->root->fs_info,
1639 "Snapshot src from another FS");
Kusanagi Kouichi23ad5b12014-01-30 16:32:02 +09001640 ret = -EXDEV;
David Sterbad0242062014-01-15 18:15:52 +01001641 } else if (!inode_owner_or_capable(src_inode)) {
1642 /*
1643 * Subvolume creation is not restricted, but snapshots
1644 * are limited to own subvolumes only
1645 */
1646 ret = -EPERM;
Al Viroecd18812012-08-26 21:20:24 -04001647 } else {
1648 ret = btrfs_mksubvol(&file->f_path, name, namelen,
1649 BTRFS_I(src_inode)->root,
1650 transid, readonly, inherit);
Chris Mason3de45862008-11-17 21:02:50 -05001651 }
Al Viro2903ff02012-08-28 12:52:22 -04001652 fdput(src);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001653 }
Liu Boa874a632012-06-29 03:58:46 -06001654out_drop_write:
1655 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001656out:
Sage Weil72fd0322010-10-29 15:41:32 -04001657 return ret;
1658}
1659
1660static noinline int btrfs_ioctl_snap_create(struct file *file,
Li Zefanfa0d2b92010-12-20 15:53:28 +08001661 void __user *arg, int subvol)
Sage Weil72fd0322010-10-29 15:41:32 -04001662{
Li Zefanfa0d2b92010-12-20 15:53:28 +08001663 struct btrfs_ioctl_vol_args *vol_args;
Sage Weil72fd0322010-10-29 15:41:32 -04001664 int ret;
1665
Li Zefanfa0d2b92010-12-20 15:53:28 +08001666 vol_args = memdup_user(arg, sizeof(*vol_args));
1667 if (IS_ERR(vol_args))
1668 return PTR_ERR(vol_args);
1669 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Sage Weil72fd0322010-10-29 15:41:32 -04001670
Li Zefanfa0d2b92010-12-20 15:53:28 +08001671 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
Li Zefanb83cc962010-12-20 16:04:08 +08001672 vol_args->fd, subvol,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001673 NULL, false, NULL);
Li Zefanfdfb1e42010-12-10 06:41:56 +00001674
Li Zefanfa0d2b92010-12-20 15:53:28 +08001675 kfree(vol_args);
1676 return ret;
1677}
Li Zefanfdfb1e42010-12-10 06:41:56 +00001678
Li Zefanfa0d2b92010-12-20 15:53:28 +08001679static noinline int btrfs_ioctl_snap_create_v2(struct file *file,
1680 void __user *arg, int subvol)
1681{
1682 struct btrfs_ioctl_vol_args_v2 *vol_args;
1683 int ret;
1684 u64 transid = 0;
1685 u64 *ptr = NULL;
Li Zefanb83cc962010-12-20 16:04:08 +08001686 bool readonly = false;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001687 struct btrfs_qgroup_inherit *inherit = NULL;
Li Zefanfdfb1e42010-12-10 06:41:56 +00001688
Li Zefanfa0d2b92010-12-20 15:53:28 +08001689 vol_args = memdup_user(arg, sizeof(*vol_args));
1690 if (IS_ERR(vol_args))
1691 return PTR_ERR(vol_args);
1692 vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
Sage Weil75eaa0e2010-12-10 00:36:28 +00001693
Li Zefanb83cc962010-12-20 16:04:08 +08001694 if (vol_args->flags &
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001695 ~(BTRFS_SUBVOL_CREATE_ASYNC | BTRFS_SUBVOL_RDONLY |
1696 BTRFS_SUBVOL_QGROUP_INHERIT)) {
Li Zefanb83cc962010-12-20 16:04:08 +08001697 ret = -EOPNOTSUPP;
Dan Carpenterc47ca322014-09-04 14:09:15 +03001698 goto free_args;
Sage Weil72fd0322010-10-29 15:41:32 -04001699 }
Li Zefanfa0d2b92010-12-20 15:53:28 +08001700
1701 if (vol_args->flags & BTRFS_SUBVOL_CREATE_ASYNC)
1702 ptr = &transid;
Li Zefanb83cc962010-12-20 16:04:08 +08001703 if (vol_args->flags & BTRFS_SUBVOL_RDONLY)
1704 readonly = true;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001705 if (vol_args->flags & BTRFS_SUBVOL_QGROUP_INHERIT) {
1706 if (vol_args->size > PAGE_CACHE_SIZE) {
1707 ret = -EINVAL;
Dan Carpenterc47ca322014-09-04 14:09:15 +03001708 goto free_args;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001709 }
1710 inherit = memdup_user(vol_args->qgroup_inherit, vol_args->size);
1711 if (IS_ERR(inherit)) {
1712 ret = PTR_ERR(inherit);
Dan Carpenterc47ca322014-09-04 14:09:15 +03001713 goto free_args;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001714 }
1715 }
Li Zefanfa0d2b92010-12-20 15:53:28 +08001716
1717 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001718 vol_args->fd, subvol, ptr,
Miao Xie8696c532013-02-07 06:02:44 +00001719 readonly, inherit);
Dan Carpenterc47ca322014-09-04 14:09:15 +03001720 if (ret)
1721 goto free_inherit;
Li Zefanfa0d2b92010-12-20 15:53:28 +08001722
Dan Carpenterc47ca322014-09-04 14:09:15 +03001723 if (ptr && copy_to_user(arg +
1724 offsetof(struct btrfs_ioctl_vol_args_v2,
1725 transid),
1726 ptr, sizeof(*ptr)))
Li Zefanfa0d2b92010-12-20 15:53:28 +08001727 ret = -EFAULT;
Dan Carpenterc47ca322014-09-04 14:09:15 +03001728
1729free_inherit:
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001730 kfree(inherit);
Dan Carpenterc47ca322014-09-04 14:09:15 +03001731free_args:
1732 kfree(vol_args);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001733 return ret;
1734}
1735
Li Zefan0caa1022010-12-20 16:30:25 +08001736static noinline int btrfs_ioctl_subvol_getflags(struct file *file,
1737 void __user *arg)
1738{
Al Viro496ad9a2013-01-23 17:07:38 -05001739 struct inode *inode = file_inode(file);
Li Zefan0caa1022010-12-20 16:30:25 +08001740 struct btrfs_root *root = BTRFS_I(inode)->root;
1741 int ret = 0;
1742 u64 flags = 0;
1743
Li Zefan33345d012011-04-20 10:31:50 +08001744 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID)
Li Zefan0caa1022010-12-20 16:30:25 +08001745 return -EINVAL;
1746
1747 down_read(&root->fs_info->subvol_sem);
1748 if (btrfs_root_readonly(root))
1749 flags |= BTRFS_SUBVOL_RDONLY;
1750 up_read(&root->fs_info->subvol_sem);
1751
1752 if (copy_to_user(arg, &flags, sizeof(flags)))
1753 ret = -EFAULT;
1754
1755 return ret;
1756}
1757
1758static noinline int btrfs_ioctl_subvol_setflags(struct file *file,
1759 void __user *arg)
1760{
Al Viro496ad9a2013-01-23 17:07:38 -05001761 struct inode *inode = file_inode(file);
Li Zefan0caa1022010-12-20 16:30:25 +08001762 struct btrfs_root *root = BTRFS_I(inode)->root;
1763 struct btrfs_trans_handle *trans;
1764 u64 root_flags;
1765 u64 flags;
1766 int ret = 0;
1767
David Sterbabd60ea02014-01-16 15:50:22 +01001768 if (!inode_owner_or_capable(inode))
1769 return -EPERM;
1770
Liu Bob9ca0662012-06-29 03:58:49 -06001771 ret = mnt_want_write_file(file);
1772 if (ret)
1773 goto out;
Li Zefan0caa1022010-12-20 16:30:25 +08001774
Liu Bob9ca0662012-06-29 03:58:49 -06001775 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
1776 ret = -EINVAL;
1777 goto out_drop_write;
1778 }
Li Zefan0caa1022010-12-20 16:30:25 +08001779
Liu Bob9ca0662012-06-29 03:58:49 -06001780 if (copy_from_user(&flags, arg, sizeof(flags))) {
1781 ret = -EFAULT;
1782 goto out_drop_write;
1783 }
Li Zefan0caa1022010-12-20 16:30:25 +08001784
Liu Bob9ca0662012-06-29 03:58:49 -06001785 if (flags & BTRFS_SUBVOL_CREATE_ASYNC) {
1786 ret = -EINVAL;
1787 goto out_drop_write;
1788 }
Li Zefan0caa1022010-12-20 16:30:25 +08001789
Liu Bob9ca0662012-06-29 03:58:49 -06001790 if (flags & ~BTRFS_SUBVOL_RDONLY) {
1791 ret = -EOPNOTSUPP;
1792 goto out_drop_write;
1793 }
Li Zefan0caa1022010-12-20 16:30:25 +08001794
1795 down_write(&root->fs_info->subvol_sem);
1796
1797 /* nothing to do */
1798 if (!!(flags & BTRFS_SUBVOL_RDONLY) == btrfs_root_readonly(root))
Liu Bob9ca0662012-06-29 03:58:49 -06001799 goto out_drop_sem;
Li Zefan0caa1022010-12-20 16:30:25 +08001800
1801 root_flags = btrfs_root_flags(&root->root_item);
David Sterba2c686532013-12-16 17:34:17 +01001802 if (flags & BTRFS_SUBVOL_RDONLY) {
Li Zefan0caa1022010-12-20 16:30:25 +08001803 btrfs_set_root_flags(&root->root_item,
1804 root_flags | BTRFS_ROOT_SUBVOL_RDONLY);
David Sterba2c686532013-12-16 17:34:17 +01001805 } else {
1806 /*
1807 * Block RO -> RW transition if this subvolume is involved in
1808 * send
1809 */
1810 spin_lock(&root->root_item_lock);
1811 if (root->send_in_progress == 0) {
1812 btrfs_set_root_flags(&root->root_item,
Li Zefan0caa1022010-12-20 16:30:25 +08001813 root_flags & ~BTRFS_ROOT_SUBVOL_RDONLY);
David Sterba2c686532013-12-16 17:34:17 +01001814 spin_unlock(&root->root_item_lock);
1815 } else {
1816 spin_unlock(&root->root_item_lock);
1817 btrfs_warn(root->fs_info,
1818 "Attempt to set subvolume %llu read-write during send",
1819 root->root_key.objectid);
1820 ret = -EPERM;
1821 goto out_drop_sem;
1822 }
1823 }
Li Zefan0caa1022010-12-20 16:30:25 +08001824
1825 trans = btrfs_start_transaction(root, 1);
1826 if (IS_ERR(trans)) {
1827 ret = PTR_ERR(trans);
1828 goto out_reset;
1829 }
1830
Li Zefanb4dc2b82011-02-16 06:06:34 +00001831 ret = btrfs_update_root(trans, root->fs_info->tree_root,
Li Zefan0caa1022010-12-20 16:30:25 +08001832 &root->root_key, &root->root_item);
1833
1834 btrfs_commit_transaction(trans, root);
1835out_reset:
1836 if (ret)
1837 btrfs_set_root_flags(&root->root_item, root_flags);
Liu Bob9ca0662012-06-29 03:58:49 -06001838out_drop_sem:
Li Zefan0caa1022010-12-20 16:30:25 +08001839 up_write(&root->fs_info->subvol_sem);
Liu Bob9ca0662012-06-29 03:58:49 -06001840out_drop_write:
1841 mnt_drop_write_file(file);
1842out:
Li Zefan0caa1022010-12-20 16:30:25 +08001843 return ret;
1844}
1845
Yan, Zheng76dda932009-09-21 16:00:26 -04001846/*
1847 * helper to check if the subvolume references other subvolumes
1848 */
1849static noinline int may_destroy_subvol(struct btrfs_root *root)
1850{
1851 struct btrfs_path *path;
Josef Bacik175a2b82013-08-12 15:36:44 -04001852 struct btrfs_dir_item *di;
Yan, Zheng76dda932009-09-21 16:00:26 -04001853 struct btrfs_key key;
Josef Bacik175a2b82013-08-12 15:36:44 -04001854 u64 dir_id;
Yan, Zheng76dda932009-09-21 16:00:26 -04001855 int ret;
1856
1857 path = btrfs_alloc_path();
1858 if (!path)
1859 return -ENOMEM;
1860
Josef Bacik175a2b82013-08-12 15:36:44 -04001861 /* Make sure this root isn't set as the default subvol */
1862 dir_id = btrfs_super_root_dir(root->fs_info->super_copy);
1863 di = btrfs_lookup_dir_item(NULL, root->fs_info->tree_root, path,
1864 dir_id, "default", 7, 0);
1865 if (di && !IS_ERR(di)) {
1866 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &key);
1867 if (key.objectid == root->root_key.objectid) {
Guangyu Sun72de6b52014-03-11 11:24:18 -07001868 ret = -EPERM;
1869 btrfs_err(root->fs_info, "deleting default subvolume "
1870 "%llu is not allowed", key.objectid);
Josef Bacik175a2b82013-08-12 15:36:44 -04001871 goto out;
1872 }
1873 btrfs_release_path(path);
1874 }
1875
Yan, Zheng76dda932009-09-21 16:00:26 -04001876 key.objectid = root->root_key.objectid;
1877 key.type = BTRFS_ROOT_REF_KEY;
1878 key.offset = (u64)-1;
1879
1880 ret = btrfs_search_slot(NULL, root->fs_info->tree_root,
1881 &key, path, 0, 0);
1882 if (ret < 0)
1883 goto out;
1884 BUG_ON(ret == 0);
1885
1886 ret = 0;
1887 if (path->slots[0] > 0) {
1888 path->slots[0]--;
1889 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1890 if (key.objectid == root->root_key.objectid &&
1891 key.type == BTRFS_ROOT_REF_KEY)
1892 ret = -ENOTEMPTY;
1893 }
1894out:
1895 btrfs_free_path(path);
1896 return ret;
1897}
1898
Chris Masonac8e9812010-02-28 15:39:26 -05001899static noinline int key_in_sk(struct btrfs_key *key,
1900 struct btrfs_ioctl_search_key *sk)
1901{
Chris Masonabc6e132010-03-18 12:10:08 -04001902 struct btrfs_key test;
1903 int ret;
1904
1905 test.objectid = sk->min_objectid;
1906 test.type = sk->min_type;
1907 test.offset = sk->min_offset;
1908
1909 ret = btrfs_comp_cpu_keys(key, &test);
1910 if (ret < 0)
Chris Masonac8e9812010-02-28 15:39:26 -05001911 return 0;
Chris Masonabc6e132010-03-18 12:10:08 -04001912
1913 test.objectid = sk->max_objectid;
1914 test.type = sk->max_type;
1915 test.offset = sk->max_offset;
1916
1917 ret = btrfs_comp_cpu_keys(key, &test);
1918 if (ret > 0)
Chris Masonac8e9812010-02-28 15:39:26 -05001919 return 0;
1920 return 1;
1921}
1922
1923static noinline int copy_to_sk(struct btrfs_root *root,
1924 struct btrfs_path *path,
1925 struct btrfs_key *key,
1926 struct btrfs_ioctl_search_key *sk,
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001927 size_t *buf_size,
Gerhard Heiftba346b32014-01-30 16:24:02 +01001928 char __user *ubuf,
Chris Masonac8e9812010-02-28 15:39:26 -05001929 unsigned long *sk_offset,
1930 int *num_found)
1931{
1932 u64 found_transid;
1933 struct extent_buffer *leaf;
1934 struct btrfs_ioctl_search_header sh;
1935 unsigned long item_off;
1936 unsigned long item_len;
1937 int nritems;
1938 int i;
1939 int slot;
Chris Masonac8e9812010-02-28 15:39:26 -05001940 int ret = 0;
1941
1942 leaf = path->nodes[0];
1943 slot = path->slots[0];
1944 nritems = btrfs_header_nritems(leaf);
1945
1946 if (btrfs_header_generation(leaf) > sk->max_transid) {
1947 i = nritems;
1948 goto advance_key;
1949 }
1950 found_transid = btrfs_header_generation(leaf);
1951
1952 for (i = slot; i < nritems; i++) {
1953 item_off = btrfs_item_ptr_offset(leaf, i);
1954 item_len = btrfs_item_size_nr(leaf, i);
1955
Gabriel de Perthuis03b71c62013-05-06 17:40:18 +00001956 btrfs_item_key_to_cpu(leaf, key, i);
1957 if (!key_in_sk(key, sk))
1958 continue;
1959
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001960 if (sizeof(sh) + item_len > *buf_size) {
Gerhard Heift8f5f6172014-01-30 16:23:59 +01001961 if (*num_found) {
1962 ret = 1;
1963 goto out;
1964 }
Chris Masonac8e9812010-02-28 15:39:26 -05001965
Gerhard Heift8f5f6172014-01-30 16:23:59 +01001966 /*
1967 * return one empty item back for v1, which does not
1968 * handle -EOVERFLOW
1969 */
1970
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001971 *buf_size = sizeof(sh) + item_len;
Chris Masonac8e9812010-02-28 15:39:26 -05001972 item_len = 0;
Gerhard Heift8f5f6172014-01-30 16:23:59 +01001973 ret = -EOVERFLOW;
1974 }
Chris Masonac8e9812010-02-28 15:39:26 -05001975
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001976 if (sizeof(sh) + item_len + *sk_offset > *buf_size) {
Chris Masonac8e9812010-02-28 15:39:26 -05001977 ret = 1;
Gerhard Heift25c9bc22014-01-30 16:23:57 +01001978 goto out;
Chris Masonac8e9812010-02-28 15:39:26 -05001979 }
1980
Chris Masonac8e9812010-02-28 15:39:26 -05001981 sh.objectid = key->objectid;
1982 sh.offset = key->offset;
1983 sh.type = key->type;
1984 sh.len = item_len;
1985 sh.transid = found_transid;
1986
1987 /* copy search result header */
Gerhard Heiftba346b32014-01-30 16:24:02 +01001988 if (copy_to_user(ubuf + *sk_offset, &sh, sizeof(sh))) {
1989 ret = -EFAULT;
1990 goto out;
1991 }
1992
Chris Masonac8e9812010-02-28 15:39:26 -05001993 *sk_offset += sizeof(sh);
1994
1995 if (item_len) {
Gerhard Heiftba346b32014-01-30 16:24:02 +01001996 char __user *up = ubuf + *sk_offset;
Chris Masonac8e9812010-02-28 15:39:26 -05001997 /* copy the item */
Gerhard Heiftba346b32014-01-30 16:24:02 +01001998 if (read_extent_buffer_to_user(leaf, up,
1999 item_off, item_len)) {
2000 ret = -EFAULT;
2001 goto out;
2002 }
2003
Chris Masonac8e9812010-02-28 15:39:26 -05002004 *sk_offset += item_len;
Chris Masonac8e9812010-02-28 15:39:26 -05002005 }
Hugo Millse2156862011-05-14 17:43:41 +00002006 (*num_found)++;
Chris Masonac8e9812010-02-28 15:39:26 -05002007
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002008 if (ret) /* -EOVERFLOW from above */
2009 goto out;
2010
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002011 if (*num_found >= sk->nr_items) {
2012 ret = 1;
2013 goto out;
2014 }
Chris Masonac8e9812010-02-28 15:39:26 -05002015 }
2016advance_key:
Chris Masonac8e9812010-02-28 15:39:26 -05002017 ret = 0;
Chris Masonabc6e132010-03-18 12:10:08 -04002018 if (key->offset < (u64)-1 && key->offset < sk->max_offset)
2019 key->offset++;
2020 else if (key->type < (u8)-1 && key->type < sk->max_type) {
2021 key->offset = 0;
2022 key->type++;
2023 } else if (key->objectid < (u64)-1 && key->objectid < sk->max_objectid) {
2024 key->offset = 0;
2025 key->type = 0;
2026 key->objectid++;
2027 } else
2028 ret = 1;
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002029out:
Gerhard Heiftba346b32014-01-30 16:24:02 +01002030 /*
2031 * 0: all items from this leaf copied, continue with next
2032 * 1: * more items can be copied, but unused buffer is too small
2033 * * all items were found
2034 * Either way, it will stops the loop which iterates to the next
2035 * leaf
2036 * -EOVERFLOW: item was to large for buffer
2037 * -EFAULT: could not copy extent buffer back to userspace
2038 */
Chris Masonac8e9812010-02-28 15:39:26 -05002039 return ret;
2040}
2041
2042static noinline int search_ioctl(struct inode *inode,
Gerhard Heift12544442014-01-30 16:23:58 +01002043 struct btrfs_ioctl_search_key *sk,
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002044 size_t *buf_size,
Gerhard Heiftba346b32014-01-30 16:24:02 +01002045 char __user *ubuf)
Chris Masonac8e9812010-02-28 15:39:26 -05002046{
2047 struct btrfs_root *root;
2048 struct btrfs_key key;
Chris Masonac8e9812010-02-28 15:39:26 -05002049 struct btrfs_path *path;
Chris Masonac8e9812010-02-28 15:39:26 -05002050 struct btrfs_fs_info *info = BTRFS_I(inode)->root->fs_info;
2051 int ret;
2052 int num_found = 0;
2053 unsigned long sk_offset = 0;
2054
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002055 if (*buf_size < sizeof(struct btrfs_ioctl_search_header)) {
2056 *buf_size = sizeof(struct btrfs_ioctl_search_header);
Gerhard Heift12544442014-01-30 16:23:58 +01002057 return -EOVERFLOW;
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002058 }
Gerhard Heift12544442014-01-30 16:23:58 +01002059
Chris Masonac8e9812010-02-28 15:39:26 -05002060 path = btrfs_alloc_path();
2061 if (!path)
2062 return -ENOMEM;
2063
2064 if (sk->tree_id == 0) {
2065 /* search the root of the inode that was passed */
2066 root = BTRFS_I(inode)->root;
2067 } else {
2068 key.objectid = sk->tree_id;
2069 key.type = BTRFS_ROOT_ITEM_KEY;
2070 key.offset = (u64)-1;
2071 root = btrfs_read_fs_root_no_name(info, &key);
2072 if (IS_ERR(root)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05002073 printk(KERN_ERR "BTRFS: could not find root %llu\n",
Chris Masonac8e9812010-02-28 15:39:26 -05002074 sk->tree_id);
2075 btrfs_free_path(path);
2076 return -ENOENT;
2077 }
2078 }
2079
2080 key.objectid = sk->min_objectid;
2081 key.type = sk->min_type;
2082 key.offset = sk->min_offset;
2083
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302084 while (1) {
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +01002085 ret = btrfs_search_forward(root, &key, path, sk->min_transid);
Chris Masonac8e9812010-02-28 15:39:26 -05002086 if (ret != 0) {
2087 if (ret > 0)
2088 ret = 0;
2089 goto err;
2090 }
Gerhard Heiftba346b32014-01-30 16:24:02 +01002091 ret = copy_to_sk(root, path, &key, sk, buf_size, ubuf,
Chris Masonac8e9812010-02-28 15:39:26 -05002092 &sk_offset, &num_found);
David Sterbab3b4aa72011-04-21 01:20:15 +02002093 btrfs_release_path(path);
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002094 if (ret)
Chris Masonac8e9812010-02-28 15:39:26 -05002095 break;
2096
2097 }
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002098 if (ret > 0)
2099 ret = 0;
Chris Masonac8e9812010-02-28 15:39:26 -05002100err:
2101 sk->nr_items = num_found;
2102 btrfs_free_path(path);
2103 return ret;
2104}
2105
2106static noinline int btrfs_ioctl_tree_search(struct file *file,
2107 void __user *argp)
2108{
Gerhard Heiftba346b32014-01-30 16:24:02 +01002109 struct btrfs_ioctl_search_args __user *uargs;
2110 struct btrfs_ioctl_search_key sk;
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002111 struct inode *inode;
2112 int ret;
2113 size_t buf_size;
Chris Masonac8e9812010-02-28 15:39:26 -05002114
2115 if (!capable(CAP_SYS_ADMIN))
2116 return -EPERM;
2117
Gerhard Heiftba346b32014-01-30 16:24:02 +01002118 uargs = (struct btrfs_ioctl_search_args __user *)argp;
Chris Masonac8e9812010-02-28 15:39:26 -05002119
Gerhard Heiftba346b32014-01-30 16:24:02 +01002120 if (copy_from_user(&sk, &uargs->key, sizeof(sk)))
2121 return -EFAULT;
2122
2123 buf_size = sizeof(uargs->buf);
Chris Masonac8e9812010-02-28 15:39:26 -05002124
Al Viro496ad9a2013-01-23 17:07:38 -05002125 inode = file_inode(file);
Gerhard Heiftba346b32014-01-30 16:24:02 +01002126 ret = search_ioctl(inode, &sk, &buf_size, uargs->buf);
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002127
2128 /*
2129 * In the origin implementation an overflow is handled by returning a
2130 * search header with a len of zero, so reset ret.
2131 */
2132 if (ret == -EOVERFLOW)
2133 ret = 0;
2134
Gerhard Heiftba346b32014-01-30 16:24:02 +01002135 if (ret == 0 && copy_to_user(&uargs->key, &sk, sizeof(sk)))
Chris Masonac8e9812010-02-28 15:39:26 -05002136 ret = -EFAULT;
Chris Masonac8e9812010-02-28 15:39:26 -05002137 return ret;
2138}
2139
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002140static noinline int btrfs_ioctl_tree_search_v2(struct file *file,
2141 void __user *argp)
2142{
2143 struct btrfs_ioctl_search_args_v2 __user *uarg;
2144 struct btrfs_ioctl_search_args_v2 args;
2145 struct inode *inode;
2146 int ret;
2147 size_t buf_size;
2148 const size_t buf_limit = 16 * 1024 * 1024;
2149
2150 if (!capable(CAP_SYS_ADMIN))
2151 return -EPERM;
2152
2153 /* copy search header and buffer size */
2154 uarg = (struct btrfs_ioctl_search_args_v2 __user *)argp;
2155 if (copy_from_user(&args, uarg, sizeof(args)))
2156 return -EFAULT;
2157
2158 buf_size = args.buf_size;
2159
2160 if (buf_size < sizeof(struct btrfs_ioctl_search_header))
2161 return -EOVERFLOW;
2162
2163 /* limit result size to 16MB */
2164 if (buf_size > buf_limit)
2165 buf_size = buf_limit;
2166
2167 inode = file_inode(file);
2168 ret = search_ioctl(inode, &args.key, &buf_size,
2169 (char *)(&uarg->buf[0]));
2170 if (ret == 0 && copy_to_user(&uarg->key, &args.key, sizeof(args.key)))
2171 ret = -EFAULT;
2172 else if (ret == -EOVERFLOW &&
2173 copy_to_user(&uarg->buf_size, &buf_size, sizeof(buf_size)))
2174 ret = -EFAULT;
2175
Yan, Zheng76dda932009-09-21 16:00:26 -04002176 return ret;
2177}
2178
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002179/*
Chris Masonac8e9812010-02-28 15:39:26 -05002180 * Search INODE_REFs to identify path name of 'dirid' directory
2181 * in a 'tree_id' tree. and sets path name to 'name'.
2182 */
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002183static noinline int btrfs_search_path_in_tree(struct btrfs_fs_info *info,
2184 u64 tree_id, u64 dirid, char *name)
2185{
2186 struct btrfs_root *root;
2187 struct btrfs_key key;
Chris Masonac8e9812010-02-28 15:39:26 -05002188 char *ptr;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002189 int ret = -1;
2190 int slot;
2191 int len;
2192 int total_len = 0;
2193 struct btrfs_inode_ref *iref;
2194 struct extent_buffer *l;
2195 struct btrfs_path *path;
2196
2197 if (dirid == BTRFS_FIRST_FREE_OBJECTID) {
2198 name[0]='\0';
2199 return 0;
2200 }
2201
2202 path = btrfs_alloc_path();
2203 if (!path)
2204 return -ENOMEM;
2205
Chris Masonac8e9812010-02-28 15:39:26 -05002206 ptr = &name[BTRFS_INO_LOOKUP_PATH_MAX];
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002207
2208 key.objectid = tree_id;
2209 key.type = BTRFS_ROOT_ITEM_KEY;
2210 key.offset = (u64)-1;
2211 root = btrfs_read_fs_root_no_name(info, &key);
2212 if (IS_ERR(root)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05002213 printk(KERN_ERR "BTRFS: could not find root %llu\n", tree_id);
Chris Mason8ad6fca2010-03-18 12:23:10 -04002214 ret = -ENOENT;
2215 goto out;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002216 }
2217
2218 key.objectid = dirid;
2219 key.type = BTRFS_INODE_REF_KEY;
Chris Mason8ad6fca2010-03-18 12:23:10 -04002220 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002221
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302222 while (1) {
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002223 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2224 if (ret < 0)
2225 goto out;
Filipe David Borba Manana18674c62013-08-14 03:00:21 +01002226 else if (ret > 0) {
2227 ret = btrfs_previous_item(root, path, dirid,
2228 BTRFS_INODE_REF_KEY);
2229 if (ret < 0)
2230 goto out;
2231 else if (ret > 0) {
2232 ret = -ENOENT;
2233 goto out;
2234 }
2235 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002236
2237 l = path->nodes[0];
2238 slot = path->slots[0];
2239 btrfs_item_key_to_cpu(l, &key, slot);
2240
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002241 iref = btrfs_item_ptr(l, slot, struct btrfs_inode_ref);
2242 len = btrfs_inode_ref_name_len(l, iref);
2243 ptr -= len + 1;
2244 total_len += len + 1;
Filipe David Borba Mananaa696cf32013-08-14 03:00:20 +01002245 if (ptr < name) {
2246 ret = -ENAMETOOLONG;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002247 goto out;
Filipe David Borba Mananaa696cf32013-08-14 03:00:20 +01002248 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002249
2250 *(ptr + len) = '/';
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302251 read_extent_buffer(l, ptr, (unsigned long)(iref + 1), len);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002252
2253 if (key.offset == BTRFS_FIRST_FREE_OBJECTID)
2254 break;
2255
David Sterbab3b4aa72011-04-21 01:20:15 +02002256 btrfs_release_path(path);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002257 key.objectid = key.offset;
Chris Mason8ad6fca2010-03-18 12:23:10 -04002258 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002259 dirid = key.objectid;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002260 }
Li Zefan77906a502011-07-14 03:16:00 +00002261 memmove(name, ptr, total_len);
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302262 name[total_len] = '\0';
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002263 ret = 0;
2264out:
2265 btrfs_free_path(path);
Chris Masonac8e9812010-02-28 15:39:26 -05002266 return ret;
2267}
2268
2269static noinline int btrfs_ioctl_ino_lookup(struct file *file,
2270 void __user *argp)
2271{
2272 struct btrfs_ioctl_ino_lookup_args *args;
2273 struct inode *inode;
David Sterba01b810b2015-05-12 19:14:49 +02002274 int ret = 0;
Chris Masonac8e9812010-02-28 15:39:26 -05002275
Julia Lawall2354d082010-10-29 15:14:18 -04002276 args = memdup_user(argp, sizeof(*args));
2277 if (IS_ERR(args))
2278 return PTR_ERR(args);
Dan Carpenterc2b96922010-03-20 11:24:15 +00002279
Al Viro496ad9a2013-01-23 17:07:38 -05002280 inode = file_inode(file);
Chris Masonac8e9812010-02-28 15:39:26 -05002281
David Sterba01b810b2015-05-12 19:14:49 +02002282 /*
2283 * Unprivileged query to obtain the containing subvolume root id. The
2284 * path is reset so it's consistent with btrfs_search_path_in_tree.
2285 */
Chris Mason1b53ac42010-03-18 12:17:05 -04002286 if (args->treeid == 0)
2287 args->treeid = BTRFS_I(inode)->root->root_key.objectid;
2288
David Sterba01b810b2015-05-12 19:14:49 +02002289 if (args->objectid == BTRFS_FIRST_FREE_OBJECTID) {
2290 args->name[0] = 0;
2291 goto out;
2292 }
2293
2294 if (!capable(CAP_SYS_ADMIN)) {
2295 ret = -EPERM;
2296 goto out;
2297 }
2298
Chris Masonac8e9812010-02-28 15:39:26 -05002299 ret = btrfs_search_path_in_tree(BTRFS_I(inode)->root->fs_info,
2300 args->treeid, args->objectid,
2301 args->name);
2302
David Sterba01b810b2015-05-12 19:14:49 +02002303out:
Chris Masonac8e9812010-02-28 15:39:26 -05002304 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
2305 ret = -EFAULT;
2306
2307 kfree(args);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002308 return ret;
2309}
2310
Yan, Zheng76dda932009-09-21 16:00:26 -04002311static noinline int btrfs_ioctl_snap_destroy(struct file *file,
2312 void __user *arg)
2313{
Al Viro54563d42013-09-01 15:57:51 -04002314 struct dentry *parent = file->f_path.dentry;
Yan, Zheng76dda932009-09-21 16:00:26 -04002315 struct dentry *dentry;
David Howells2b0143b2015-03-17 22:25:59 +00002316 struct inode *dir = d_inode(parent);
Yan, Zheng76dda932009-09-21 16:00:26 -04002317 struct inode *inode;
2318 struct btrfs_root *root = BTRFS_I(dir)->root;
2319 struct btrfs_root *dest = NULL;
2320 struct btrfs_ioctl_vol_args *vol_args;
2321 struct btrfs_trans_handle *trans;
Miao Xiec58aaad2013-02-28 10:05:36 +00002322 struct btrfs_block_rsv block_rsv;
David Sterba521e0542014-04-15 16:41:44 +02002323 u64 root_flags;
Miao Xiec58aaad2013-02-28 10:05:36 +00002324 u64 qgroup_reserved;
Yan, Zheng76dda932009-09-21 16:00:26 -04002325 int namelen;
2326 int ret;
2327 int err = 0;
2328
Yan, Zheng76dda932009-09-21 16:00:26 -04002329 vol_args = memdup_user(arg, sizeof(*vol_args));
2330 if (IS_ERR(vol_args))
2331 return PTR_ERR(vol_args);
2332
2333 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
2334 namelen = strlen(vol_args->name);
2335 if (strchr(vol_args->name, '/') ||
2336 strncmp(vol_args->name, "..", namelen) == 0) {
2337 err = -EINVAL;
2338 goto out;
2339 }
2340
Al Viroa561be72011-11-23 11:57:51 -05002341 err = mnt_want_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04002342 if (err)
2343 goto out;
2344
David Sterba521e0542014-04-15 16:41:44 +02002345
David Sterba5c50c9b2013-03-22 18:12:51 +00002346 err = mutex_lock_killable_nested(&dir->i_mutex, I_MUTEX_PARENT);
2347 if (err == -EINTR)
David Sterbae43f9982013-12-06 17:51:32 +01002348 goto out_drop_write;
Yan, Zheng76dda932009-09-21 16:00:26 -04002349 dentry = lookup_one_len(vol_args->name, parent, namelen);
2350 if (IS_ERR(dentry)) {
2351 err = PTR_ERR(dentry);
2352 goto out_unlock_dir;
2353 }
2354
David Howells2b0143b2015-03-17 22:25:59 +00002355 if (d_really_is_negative(dentry)) {
Yan, Zheng76dda932009-09-21 16:00:26 -04002356 err = -ENOENT;
2357 goto out_dput;
2358 }
2359
David Howells2b0143b2015-03-17 22:25:59 +00002360 inode = d_inode(dentry);
Sage Weil4260f7c2010-10-29 15:46:43 -04002361 dest = BTRFS_I(inode)->root;
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302362 if (!capable(CAP_SYS_ADMIN)) {
Sage Weil4260f7c2010-10-29 15:46:43 -04002363 /*
2364 * Regular user. Only allow this with a special mount
2365 * option, when the user has write+exec access to the
2366 * subvol root, and when rmdir(2) would have been
2367 * allowed.
2368 *
2369 * Note that this is _not_ check that the subvol is
2370 * empty or doesn't contain data that we wouldn't
2371 * otherwise be able to delete.
2372 *
2373 * Users who want to delete empty subvols should try
2374 * rmdir(2).
2375 */
2376 err = -EPERM;
2377 if (!btrfs_test_opt(root, USER_SUBVOL_RM_ALLOWED))
2378 goto out_dput;
2379
2380 /*
2381 * Do not allow deletion if the parent dir is the same
2382 * as the dir to be deleted. That means the ioctl
2383 * must be called on the dentry referencing the root
2384 * of the subvol, not a random directory contained
2385 * within it.
2386 */
2387 err = -EINVAL;
2388 if (root == dest)
2389 goto out_dput;
2390
2391 err = inode_permission(inode, MAY_WRITE | MAY_EXEC);
2392 if (err)
2393 goto out_dput;
Sage Weil4260f7c2010-10-29 15:46:43 -04002394 }
2395
Miao Xie5c39da52012-10-22 11:39:53 +00002396 /* check if subvolume may be deleted by a user */
2397 err = btrfs_may_delete(dir, dentry, 1);
2398 if (err)
2399 goto out_dput;
2400
Li Zefan33345d012011-04-20 10:31:50 +08002401 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
Yan, Zheng76dda932009-09-21 16:00:26 -04002402 err = -EINVAL;
2403 goto out_dput;
2404 }
2405
Yan, Zheng76dda932009-09-21 16:00:26 -04002406 mutex_lock(&inode->i_mutex);
David Sterba521e0542014-04-15 16:41:44 +02002407
2408 /*
2409 * Don't allow to delete a subvolume with send in progress. This is
2410 * inside the i_mutex so the error handling that has to drop the bit
2411 * again is not run concurrently.
2412 */
2413 spin_lock(&dest->root_item_lock);
Filipe Mananac55bfa62014-05-25 03:55:44 +01002414 root_flags = btrfs_root_flags(&dest->root_item);
2415 if (dest->send_in_progress == 0) {
2416 btrfs_set_root_flags(&dest->root_item,
David Sterba521e0542014-04-15 16:41:44 +02002417 root_flags | BTRFS_ROOT_SUBVOL_DEAD);
2418 spin_unlock(&dest->root_item_lock);
2419 } else {
2420 spin_unlock(&dest->root_item_lock);
2421 btrfs_warn(root->fs_info,
2422 "Attempt to delete subvolume %llu during send",
Filipe Mananac55bfa62014-05-25 03:55:44 +01002423 dest->root_key.objectid);
David Sterba521e0542014-04-15 16:41:44 +02002424 err = -EPERM;
Omar Sandoval909e26d2015-04-10 14:20:40 -07002425 goto out_unlock_inode;
David Sterba521e0542014-04-15 16:41:44 +02002426 }
2427
Yan, Zheng76dda932009-09-21 16:00:26 -04002428 down_write(&root->fs_info->subvol_sem);
2429
2430 err = may_destroy_subvol(dest);
2431 if (err)
2432 goto out_up_write;
2433
Miao Xiec58aaad2013-02-28 10:05:36 +00002434 btrfs_init_block_rsv(&block_rsv, BTRFS_BLOCK_RSV_TEMP);
2435 /*
2436 * One for dir inode, two for dir entries, two for root
2437 * ref/backref.
2438 */
2439 err = btrfs_subvolume_reserve_metadata(root, &block_rsv,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04002440 5, &qgroup_reserved, true);
Miao Xiec58aaad2013-02-28 10:05:36 +00002441 if (err)
2442 goto out_up_write;
2443
Yan, Zhenga22285a2010-05-16 10:48:46 -04002444 trans = btrfs_start_transaction(root, 0);
2445 if (IS_ERR(trans)) {
2446 err = PTR_ERR(trans);
Miao Xiec58aaad2013-02-28 10:05:36 +00002447 goto out_release;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002448 }
Miao Xiec58aaad2013-02-28 10:05:36 +00002449 trans->block_rsv = &block_rsv;
2450 trans->bytes_reserved = block_rsv.size;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002451
Yan, Zheng76dda932009-09-21 16:00:26 -04002452 ret = btrfs_unlink_subvol(trans, root, dir,
2453 dest->root_key.objectid,
2454 dentry->d_name.name,
2455 dentry->d_name.len);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002456 if (ret) {
2457 err = ret;
2458 btrfs_abort_transaction(trans, root, ret);
2459 goto out_end_trans;
2460 }
Yan, Zheng76dda932009-09-21 16:00:26 -04002461
2462 btrfs_record_root_in_trans(trans, dest);
2463
2464 memset(&dest->root_item.drop_progress, 0,
2465 sizeof(dest->root_item.drop_progress));
2466 dest->root_item.drop_level = 0;
2467 btrfs_set_root_refs(&dest->root_item, 0);
2468
Miao Xie27cdeb72014-04-02 19:51:05 +08002469 if (!test_and_set_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &dest->state)) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04002470 ret = btrfs_insert_orphan_item(trans,
2471 root->fs_info->tree_root,
2472 dest->root_key.objectid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002473 if (ret) {
2474 btrfs_abort_transaction(trans, root, ret);
2475 err = ret;
2476 goto out_end_trans;
2477 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04002478 }
Stefan Behrensdd5f9612013-08-15 17:11:20 +02002479
2480 ret = btrfs_uuid_tree_rem(trans, root->fs_info->uuid_root,
2481 dest->root_item.uuid, BTRFS_UUID_KEY_SUBVOL,
2482 dest->root_key.objectid);
2483 if (ret && ret != -ENOENT) {
2484 btrfs_abort_transaction(trans, root, ret);
2485 err = ret;
2486 goto out_end_trans;
2487 }
2488 if (!btrfs_is_empty_uuid(dest->root_item.received_uuid)) {
2489 ret = btrfs_uuid_tree_rem(trans, root->fs_info->uuid_root,
2490 dest->root_item.received_uuid,
2491 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
2492 dest->root_key.objectid);
2493 if (ret && ret != -ENOENT) {
2494 btrfs_abort_transaction(trans, root, ret);
2495 err = ret;
2496 goto out_end_trans;
2497 }
2498 }
2499
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002500out_end_trans:
Miao Xiec58aaad2013-02-28 10:05:36 +00002501 trans->block_rsv = NULL;
2502 trans->bytes_reserved = 0;
Sage Weil531cb132010-10-29 15:41:32 -04002503 ret = btrfs_end_transaction(trans, root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002504 if (ret && !err)
2505 err = ret;
Yan, Zheng76dda932009-09-21 16:00:26 -04002506 inode->i_flags |= S_DEAD;
Miao Xiec58aaad2013-02-28 10:05:36 +00002507out_release:
2508 btrfs_subvolume_release_metadata(root, &block_rsv, qgroup_reserved);
Yan, Zheng76dda932009-09-21 16:00:26 -04002509out_up_write:
2510 up_write(&root->fs_info->subvol_sem);
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 }
Omar Sandoval909e26d2015-04-10 14:20:40 -07002518out_unlock_inode:
Yan, Zheng76dda932009-09-21 16:00:26 -04002519 mutex_unlock(&inode->i_mutex);
2520 if (!err) {
Omar Sandoval64ad6c42015-06-02 17:31:00 -07002521 d_invalidate(dentry);
Yan, Zheng76dda932009-09-21 16:00:26 -04002522 btrfs_invalidate_inodes(dest);
2523 d_delete(dentry);
David Sterba61155aa2014-04-15 16:42:03 +02002524 ASSERT(dest->send_in_progress == 0);
Liu Bofa6ac872013-02-20 14:10:23 +00002525
2526 /* the last ref */
David Sterba57cdc8d2014-02-05 02:37:48 +01002527 if (dest->ino_cache_inode) {
2528 iput(dest->ino_cache_inode);
2529 dest->ino_cache_inode = NULL;
Liu Bofa6ac872013-02-20 14:10:23 +00002530 }
Yan, Zheng76dda932009-09-21 16:00:26 -04002531 }
2532out_dput:
2533 dput(dentry);
2534out_unlock_dir:
2535 mutex_unlock(&dir->i_mutex);
David Sterbae43f9982013-12-06 17:51:32 +01002536out_drop_write:
Al Viro2a79f172011-12-09 08:06:57 -05002537 mnt_drop_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04002538out:
2539 kfree(vol_args);
2540 return err;
2541}
2542
Chris Mason1e701a32010-03-11 09:42:04 -05002543static int btrfs_ioctl_defrag(struct file *file, void __user *argp)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002544{
Al Viro496ad9a2013-01-23 17:07:38 -05002545 struct inode *inode = file_inode(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002546 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason1e701a32010-03-11 09:42:04 -05002547 struct btrfs_ioctl_defrag_range_args *range;
Yan Zhengc146afa2008-11-12 14:34:12 -05002548 int ret;
2549
Ilya Dryomov25122d12013-01-20 15:57:57 +02002550 ret = mnt_want_write_file(file);
2551 if (ret)
2552 return ret;
Li Zefanb83cc962010-12-20 16:04:08 +08002553
Ilya Dryomov25122d12013-01-20 15:57:57 +02002554 if (btrfs_root_readonly(root)) {
2555 ret = -EROFS;
2556 goto out;
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002557 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002558
2559 switch (inode->i_mode & S_IFMT) {
2560 case S_IFDIR:
Chris Masone441d542009-01-05 16:57:23 -05002561 if (!capable(CAP_SYS_ADMIN)) {
2562 ret = -EPERM;
2563 goto out;
2564 }
Eric Sandeende78b512013-01-31 18:21:12 +00002565 ret = btrfs_defrag_root(root);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04002566 if (ret)
2567 goto out;
Eric Sandeende78b512013-01-31 18:21:12 +00002568 ret = btrfs_defrag_root(root->fs_info->extent_root);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002569 break;
2570 case S_IFREG:
Chris Masone441d542009-01-05 16:57:23 -05002571 if (!(file->f_mode & FMODE_WRITE)) {
2572 ret = -EINVAL;
2573 goto out;
2574 }
Chris Mason1e701a32010-03-11 09:42:04 -05002575
2576 range = kzalloc(sizeof(*range), GFP_KERNEL);
2577 if (!range) {
2578 ret = -ENOMEM;
2579 goto out;
2580 }
2581
2582 if (argp) {
2583 if (copy_from_user(range, argp,
2584 sizeof(*range))) {
2585 ret = -EFAULT;
2586 kfree(range);
Dan Carpenter683be162010-03-20 11:24:48 +00002587 goto out;
Chris Mason1e701a32010-03-11 09:42:04 -05002588 }
2589 /* compression requires us to start the IO */
2590 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
2591 range->flags |= BTRFS_DEFRAG_RANGE_START_IO;
2592 range->extent_thresh = (u32)-1;
2593 }
2594 } else {
2595 /* the rest are all set to zero by kzalloc */
2596 range->len = (u64)-1;
2597 }
Al Viro496ad9a2013-01-23 17:07:38 -05002598 ret = btrfs_defrag_file(file_inode(file), file,
Chris Mason4cb53002011-05-24 15:35:30 -04002599 range, 0, 0);
2600 if (ret > 0)
2601 ret = 0;
Chris Mason1e701a32010-03-11 09:42:04 -05002602 kfree(range);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002603 break;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04002604 default:
2605 ret = -EINVAL;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002606 }
Chris Masone441d542009-01-05 16:57:23 -05002607out:
Ilya Dryomov25122d12013-01-20 15:57:57 +02002608 mnt_drop_write_file(file);
Chris Masone441d542009-01-05 16:57:23 -05002609 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002610}
2611
Christoph Hellwigb2950862008-12-02 09:54:17 -05002612static long btrfs_ioctl_add_dev(struct btrfs_root *root, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002613{
2614 struct btrfs_ioctl_vol_args *vol_args;
2615 int ret;
2616
Chris Masone441d542009-01-05 16:57:23 -05002617 if (!capable(CAP_SYS_ADMIN))
2618 return -EPERM;
2619
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002620 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
2621 1)) {
Anand Jaine57138b2013-08-21 11:44:48 +08002622 return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002623 }
2624
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002625 mutex_lock(&root->fs_info->volume_mutex);
Li Zefandae7b662009-04-08 15:06:54 +08002626 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002627 if (IS_ERR(vol_args)) {
2628 ret = PTR_ERR(vol_args);
2629 goto out;
2630 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002631
Mark Fasheh5516e592008-07-24 12:20:14 -04002632 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002633 ret = btrfs_init_new_device(root, vol_args->name);
2634
Anand Jain43d20762014-07-01 00:58:56 +08002635 if (!ret)
2636 btrfs_info(root->fs_info, "disk added %s",vol_args->name);
2637
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002638 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002639out:
2640 mutex_unlock(&root->fs_info->volume_mutex);
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002641 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002642 return ret;
2643}
2644
Miao Xieda249272012-11-26 08:44:50 +00002645static long btrfs_ioctl_rm_dev(struct file *file, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002646{
Al Viro496ad9a2013-01-23 17:07:38 -05002647 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002648 struct btrfs_ioctl_vol_args *vol_args;
2649 int ret;
2650
Chris Masone441d542009-01-05 16:57:23 -05002651 if (!capable(CAP_SYS_ADMIN))
2652 return -EPERM;
2653
Miao Xieda249272012-11-26 08:44:50 +00002654 ret = mnt_want_write_file(file);
2655 if (ret)
2656 return ret;
Yan Zhengc146afa2008-11-12 14:34:12 -05002657
Li Zefandae7b662009-04-08 15:06:54 +08002658 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002659 if (IS_ERR(vol_args)) {
2660 ret = PTR_ERR(vol_args);
Dan Carpenterc47ca322014-09-04 14:09:15 +03002661 goto err_drop;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002662 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002663
Mark Fasheh5516e592008-07-24 12:20:14 -04002664 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002665
Anand Jain183860f2013-05-17 10:52:45 +00002666 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
2667 1)) {
2668 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
2669 goto out;
2670 }
2671
2672 mutex_lock(&root->fs_info->volume_mutex);
2673 ret = btrfs_rm_device(root, vol_args->name);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002674 mutex_unlock(&root->fs_info->volume_mutex);
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002675 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
Anand Jain183860f2013-05-17 10:52:45 +00002676
Anand Jainec95d492014-07-01 00:58:57 +08002677 if (!ret)
2678 btrfs_info(root->fs_info, "disk deleted %s",vol_args->name);
2679
Anand Jain183860f2013-05-17 10:52:45 +00002680out:
2681 kfree(vol_args);
Dan Carpenterc47ca322014-09-04 14:09:15 +03002682err_drop:
Ilya Dryomov4ac20c72013-01-20 15:57:57 +02002683 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002684 return ret;
2685}
2686
Jan Schmidt475f6382011-03-11 15:41:01 +01002687static long btrfs_ioctl_fs_info(struct btrfs_root *root, void __user *arg)
2688{
Li Zefan027ed2f2011-06-08 08:27:56 +00002689 struct btrfs_ioctl_fs_info_args *fi_args;
Jan Schmidt475f6382011-03-11 15:41:01 +01002690 struct btrfs_device *device;
2691 struct btrfs_device *next;
2692 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
Li Zefan027ed2f2011-06-08 08:27:56 +00002693 int ret = 0;
Jan Schmidt475f6382011-03-11 15:41:01 +01002694
Li Zefan027ed2f2011-06-08 08:27:56 +00002695 fi_args = kzalloc(sizeof(*fi_args), GFP_KERNEL);
2696 if (!fi_args)
2697 return -ENOMEM;
2698
Filipe David Borba Mananaf7171752013-08-12 20:56:58 +01002699 mutex_lock(&fs_devices->device_list_mutex);
Li Zefan027ed2f2011-06-08 08:27:56 +00002700 fi_args->num_devices = fs_devices->num_devices;
2701 memcpy(&fi_args->fsid, root->fs_info->fsid, sizeof(fi_args->fsid));
Jan Schmidt475f6382011-03-11 15:41:01 +01002702
Jan Schmidt475f6382011-03-11 15:41:01 +01002703 list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) {
Li Zefan027ed2f2011-06-08 08:27:56 +00002704 if (device->devid > fi_args->max_id)
2705 fi_args->max_id = device->devid;
Jan Schmidt475f6382011-03-11 15:41:01 +01002706 }
2707 mutex_unlock(&fs_devices->device_list_mutex);
2708
David Sterba80a773f2014-05-07 18:17:06 +02002709 fi_args->nodesize = root->fs_info->super_copy->nodesize;
2710 fi_args->sectorsize = root->fs_info->super_copy->sectorsize;
2711 fi_args->clone_alignment = root->fs_info->super_copy->sectorsize;
2712
Li Zefan027ed2f2011-06-08 08:27:56 +00002713 if (copy_to_user(arg, fi_args, sizeof(*fi_args)))
2714 ret = -EFAULT;
Jan Schmidt475f6382011-03-11 15:41:01 +01002715
Li Zefan027ed2f2011-06-08 08:27:56 +00002716 kfree(fi_args);
2717 return ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01002718}
2719
2720static long btrfs_ioctl_dev_info(struct btrfs_root *root, void __user *arg)
2721{
2722 struct btrfs_ioctl_dev_info_args *di_args;
2723 struct btrfs_device *dev;
2724 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
2725 int ret = 0;
2726 char *s_uuid = NULL;
Jan Schmidt475f6382011-03-11 15:41:01 +01002727
Jan Schmidt475f6382011-03-11 15:41:01 +01002728 di_args = memdup_user(arg, sizeof(*di_args));
2729 if (IS_ERR(di_args))
2730 return PTR_ERR(di_args);
2731
Stefan Behrensdd5f9612013-08-15 17:11:20 +02002732 if (!btrfs_is_empty_uuid(di_args->uuid))
Jan Schmidt475f6382011-03-11 15:41:01 +01002733 s_uuid = di_args->uuid;
2734
2735 mutex_lock(&fs_devices->device_list_mutex);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01002736 dev = btrfs_find_device(root->fs_info, di_args->devid, s_uuid, NULL);
Jan Schmidt475f6382011-03-11 15:41:01 +01002737
2738 if (!dev) {
2739 ret = -ENODEV;
2740 goto out;
2741 }
2742
2743 di_args->devid = dev->devid;
Miao Xie7cc8e582014-09-03 21:35:38 +08002744 di_args->bytes_used = btrfs_device_get_bytes_used(dev);
2745 di_args->total_bytes = btrfs_device_get_total_bytes(dev);
Jan Schmidt475f6382011-03-11 15:41:01 +01002746 memcpy(di_args->uuid, dev->uuid, sizeof(di_args->uuid));
Jim Meyeringa27202f2012-04-26 18:36:56 +02002747 if (dev->name) {
Josef Bacik606686e2012-06-04 14:03:51 -04002748 struct rcu_string *name;
2749
2750 rcu_read_lock();
2751 name = rcu_dereference(dev->name);
2752 strncpy(di_args->path, name->str, sizeof(di_args->path));
2753 rcu_read_unlock();
Jim Meyeringa27202f2012-04-26 18:36:56 +02002754 di_args->path[sizeof(di_args->path) - 1] = 0;
2755 } else {
Stefan Behrens99ba55a2012-03-19 16:17:22 +01002756 di_args->path[0] = '\0';
Jim Meyeringa27202f2012-04-26 18:36:56 +02002757 }
Jan Schmidt475f6382011-03-11 15:41:01 +01002758
2759out:
David Sterba55793c02013-04-26 15:20:23 +00002760 mutex_unlock(&fs_devices->device_list_mutex);
Jan Schmidt475f6382011-03-11 15:41:01 +01002761 if (ret == 0 && copy_to_user(arg, di_args, sizeof(*di_args)))
2762 ret = -EFAULT;
2763
2764 kfree(di_args);
2765 return ret;
2766}
2767
Mark Fashehf4414602015-06-30 14:42:05 -07002768static struct page *extent_same_get_page(struct inode *inode, pgoff_t index)
Mark Fasheh416161d2013-08-06 11:42:51 -07002769{
2770 struct page *page;
Mark Fasheh416161d2013-08-06 11:42:51 -07002771 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2772
Mark Fasheh416161d2013-08-06 11:42:51 -07002773 page = grab_cache_page(inode->i_mapping, index);
2774 if (!page)
2775 return NULL;
2776
2777 if (!PageUptodate(page)) {
2778 if (extent_read_full_page_nolock(tree, page, btrfs_get_extent,
2779 0))
2780 return NULL;
2781 lock_page(page);
2782 if (!PageUptodate(page)) {
2783 unlock_page(page);
2784 page_cache_release(page);
2785 return NULL;
2786 }
2787 }
2788 unlock_page(page);
2789
2790 return page;
2791}
2792
Mark Fashehf4414602015-06-30 14:42:05 -07002793static int gather_extent_pages(struct inode *inode, struct page **pages,
2794 int num_pages, u64 off)
2795{
2796 int i;
2797 pgoff_t index = off >> PAGE_CACHE_SHIFT;
2798
2799 for (i = 0; i < num_pages; i++) {
2800 pages[i] = extent_same_get_page(inode, index + i);
2801 if (!pages[i])
2802 return -ENOMEM;
2803 }
2804 return 0;
2805}
2806
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002807static inline void lock_extent_range(struct inode *inode, u64 off, u64 len)
2808{
2809 /* do any pending delalloc/csum calc on src, one way or
2810 another, and lock file content */
2811 while (1) {
2812 struct btrfs_ordered_extent *ordered;
2813 lock_extent(&BTRFS_I(inode)->io_tree, off, off + len - 1);
2814 ordered = btrfs_lookup_first_ordered_extent(inode,
2815 off + len - 1);
Filipe Mananaff5df9b2014-05-30 17:56:24 +01002816 if ((!ordered ||
2817 ordered->file_offset + ordered->len <= off ||
2818 ordered->file_offset >= off + len) &&
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002819 !test_range_bit(&BTRFS_I(inode)->io_tree, off,
Filipe Mananaff5df9b2014-05-30 17:56:24 +01002820 off + len - 1, EXTENT_DELALLOC, 0, NULL)) {
2821 if (ordered)
2822 btrfs_put_ordered_extent(ordered);
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002823 break;
Filipe Mananaff5df9b2014-05-30 17:56:24 +01002824 }
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002825 unlock_extent(&BTRFS_I(inode)->io_tree, off, off + len - 1);
2826 if (ordered)
2827 btrfs_put_ordered_extent(ordered);
2828 btrfs_wait_ordered_range(inode, off, len);
2829 }
2830}
2831
Mark Fashehf4414602015-06-30 14:42:05 -07002832static void btrfs_double_inode_unlock(struct inode *inode1, struct inode *inode2)
Mark Fasheh416161d2013-08-06 11:42:51 -07002833{
Mark Fasheh416161d2013-08-06 11:42:51 -07002834 mutex_unlock(&inode1->i_mutex);
2835 mutex_unlock(&inode2->i_mutex);
2836}
2837
Mark Fashehf4414602015-06-30 14:42:05 -07002838static void btrfs_double_inode_lock(struct inode *inode1, struct inode *inode2)
2839{
2840 if (inode1 < inode2)
2841 swap(inode1, inode2);
2842
2843 mutex_lock_nested(&inode1->i_mutex, I_MUTEX_PARENT);
2844 if (inode1 != inode2)
2845 mutex_lock_nested(&inode2->i_mutex, I_MUTEX_CHILD);
2846}
2847
2848static void btrfs_double_extent_unlock(struct inode *inode1, u64 loff1,
2849 struct inode *inode2, u64 loff2, u64 len)
2850{
2851 unlock_extent(&BTRFS_I(inode1)->io_tree, loff1, loff1 + len - 1);
2852 unlock_extent(&BTRFS_I(inode2)->io_tree, loff2, loff2 + len - 1);
2853}
2854
2855static void btrfs_double_extent_lock(struct inode *inode1, u64 loff1,
2856 struct inode *inode2, u64 loff2, u64 len)
Mark Fasheh416161d2013-08-06 11:42:51 -07002857{
2858 if (inode1 < inode2) {
2859 swap(inode1, inode2);
2860 swap(loff1, loff2);
2861 }
Mark Fasheh416161d2013-08-06 11:42:51 -07002862 lock_extent_range(inode1, loff1, len);
Mark Fashehf4414602015-06-30 14:42:05 -07002863 if (inode1 != inode2)
Mark Fasheh416161d2013-08-06 11:42:51 -07002864 lock_extent_range(inode2, loff2, len);
Mark Fashehf4414602015-06-30 14:42:05 -07002865}
2866
2867struct cmp_pages {
2868 int num_pages;
2869 struct page **src_pages;
2870 struct page **dst_pages;
2871};
2872
2873static void btrfs_cmp_data_free(struct cmp_pages *cmp)
2874{
2875 int i;
2876 struct page *pg;
2877
2878 for (i = 0; i < cmp->num_pages; i++) {
2879 pg = cmp->src_pages[i];
2880 if (pg)
2881 page_cache_release(pg);
2882 pg = cmp->dst_pages[i];
2883 if (pg)
2884 page_cache_release(pg);
Mark Fasheh416161d2013-08-06 11:42:51 -07002885 }
Mark Fashehf4414602015-06-30 14:42:05 -07002886 kfree(cmp->src_pages);
2887 kfree(cmp->dst_pages);
2888}
2889
2890static int btrfs_cmp_data_prepare(struct inode *src, u64 loff,
2891 struct inode *dst, u64 dst_loff,
2892 u64 len, struct cmp_pages *cmp)
2893{
2894 int ret;
2895 int num_pages = PAGE_CACHE_ALIGN(len) >> PAGE_CACHE_SHIFT;
2896 struct page **src_pgarr, **dst_pgarr;
2897
2898 /*
2899 * We must gather up all the pages before we initiate our
2900 * extent locking. We use an array for the page pointers. Size
2901 * of the array is bounded by len, which is in turn bounded by
2902 * BTRFS_MAX_DEDUPE_LEN.
2903 */
2904 src_pgarr = kzalloc(num_pages * sizeof(struct page *), GFP_NOFS);
2905 dst_pgarr = kzalloc(num_pages * sizeof(struct page *), GFP_NOFS);
2906 if (!src_pgarr || !dst_pgarr) {
2907 kfree(src_pgarr);
2908 kfree(dst_pgarr);
2909 return -ENOMEM;
2910 }
2911 cmp->num_pages = num_pages;
2912 cmp->src_pages = src_pgarr;
2913 cmp->dst_pages = dst_pgarr;
2914
2915 ret = gather_extent_pages(src, cmp->src_pages, cmp->num_pages, loff);
2916 if (ret)
2917 goto out;
2918
2919 ret = gather_extent_pages(dst, cmp->dst_pages, cmp->num_pages, dst_loff);
2920
2921out:
2922 if (ret)
2923 btrfs_cmp_data_free(cmp);
2924 return 0;
Mark Fasheh416161d2013-08-06 11:42:51 -07002925}
2926
2927static int btrfs_cmp_data(struct inode *src, u64 loff, struct inode *dst,
Mark Fashehf4414602015-06-30 14:42:05 -07002928 u64 dst_loff, u64 len, struct cmp_pages *cmp)
Mark Fasheh416161d2013-08-06 11:42:51 -07002929{
2930 int ret = 0;
Mark Fashehf4414602015-06-30 14:42:05 -07002931 int i;
Mark Fasheh416161d2013-08-06 11:42:51 -07002932 struct page *src_page, *dst_page;
2933 unsigned int cmp_len = PAGE_CACHE_SIZE;
2934 void *addr, *dst_addr;
2935
Mark Fashehf4414602015-06-30 14:42:05 -07002936 i = 0;
Mark Fasheh416161d2013-08-06 11:42:51 -07002937 while (len) {
2938 if (len < PAGE_CACHE_SIZE)
2939 cmp_len = len;
2940
Mark Fashehf4414602015-06-30 14:42:05 -07002941 BUG_ON(i >= cmp->num_pages);
2942
2943 src_page = cmp->src_pages[i];
2944 dst_page = cmp->dst_pages[i];
2945
Mark Fasheh416161d2013-08-06 11:42:51 -07002946 addr = kmap_atomic(src_page);
2947 dst_addr = kmap_atomic(dst_page);
2948
2949 flush_dcache_page(src_page);
2950 flush_dcache_page(dst_page);
2951
2952 if (memcmp(addr, dst_addr, cmp_len))
2953 ret = BTRFS_SAME_DATA_DIFFERS;
2954
2955 kunmap_atomic(addr);
2956 kunmap_atomic(dst_addr);
Mark Fasheh416161d2013-08-06 11:42:51 -07002957
2958 if (ret)
2959 break;
2960
Mark Fasheh416161d2013-08-06 11:42:51 -07002961 len -= cmp_len;
Mark Fashehf4414602015-06-30 14:42:05 -07002962 i++;
Mark Fasheh416161d2013-08-06 11:42:51 -07002963 }
2964
2965 return ret;
2966}
2967
Mark Fashehe1d227a2015-06-08 15:05:25 -07002968static int extent_same_check_offsets(struct inode *inode, u64 off, u64 *plen,
2969 u64 olen)
Mark Fasheh416161d2013-08-06 11:42:51 -07002970{
Mark Fashehe1d227a2015-06-08 15:05:25 -07002971 u64 len = *plen;
Mark Fasheh416161d2013-08-06 11:42:51 -07002972 u64 bs = BTRFS_I(inode)->root->fs_info->sb->s_blocksize;
2973
Mark Fashehe1d227a2015-06-08 15:05:25 -07002974 if (off + olen > inode->i_size || off + olen < off)
Mark Fasheh416161d2013-08-06 11:42:51 -07002975 return -EINVAL;
Mark Fashehe1d227a2015-06-08 15:05:25 -07002976
2977 /* if we extend to eof, continue to block boundary */
2978 if (off + len == inode->i_size)
2979 *plen = len = ALIGN(inode->i_size, bs) - off;
2980
Mark Fasheh416161d2013-08-06 11:42:51 -07002981 /* Check that we are block aligned - btrfs_clone() requires this */
2982 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs))
2983 return -EINVAL;
2984
2985 return 0;
2986}
2987
Mark Fashehe1d227a2015-06-08 15:05:25 -07002988static int btrfs_extent_same(struct inode *src, u64 loff, u64 olen,
Mark Fasheh416161d2013-08-06 11:42:51 -07002989 struct inode *dst, u64 dst_loff)
2990{
2991 int ret;
Mark Fashehe1d227a2015-06-08 15:05:25 -07002992 u64 len = olen;
Mark Fashehf4414602015-06-30 14:42:05 -07002993 struct cmp_pages cmp;
Mark Fasheh416161d2013-08-06 11:42:51 -07002994
2995 /*
2996 * btrfs_clone() can't handle extents in the same file
2997 * yet. Once that works, we can drop this check and replace it
2998 * with a check for the same inode, but overlapping extents.
2999 */
3000 if (src == dst)
3001 return -EINVAL;
3002
Filipe Manana113e8282015-03-30 18:26:47 +01003003 if (len == 0)
3004 return 0;
3005
Mark Fashehf4414602015-06-30 14:42:05 -07003006 btrfs_double_inode_lock(src, dst);
Mark Fasheh416161d2013-08-06 11:42:51 -07003007
Mark Fashehe1d227a2015-06-08 15:05:25 -07003008 ret = extent_same_check_offsets(src, loff, &len, olen);
Mark Fasheh416161d2013-08-06 11:42:51 -07003009 if (ret)
3010 goto out_unlock;
3011
Mark Fashehe1d227a2015-06-08 15:05:25 -07003012 ret = extent_same_check_offsets(dst, dst_loff, &len, olen);
Mark Fasheh416161d2013-08-06 11:42:51 -07003013 if (ret)
3014 goto out_unlock;
3015
3016 /* don't make the dst file partly checksummed */
3017 if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
3018 (BTRFS_I(dst)->flags & BTRFS_INODE_NODATASUM)) {
3019 ret = -EINVAL;
3020 goto out_unlock;
3021 }
3022
Mark Fashehf4414602015-06-30 14:42:05 -07003023 ret = btrfs_cmp_data_prepare(src, loff, dst, dst_loff, olen, &cmp);
3024 if (ret)
3025 goto out_unlock;
3026
3027 btrfs_double_extent_lock(src, loff, dst, dst_loff, len);
3028
Mark Fasheh207910d2015-06-30 14:42:04 -07003029 /* pass original length for comparison so we stay within i_size */
Mark Fashehf4414602015-06-30 14:42:05 -07003030 ret = btrfs_cmp_data(src, loff, dst, dst_loff, olen, &cmp);
Mark Fasheh416161d2013-08-06 11:42:51 -07003031 if (ret == 0)
Mark Fashehe1d227a2015-06-08 15:05:25 -07003032 ret = btrfs_clone(src, dst, loff, olen, len, dst_loff);
Mark Fasheh416161d2013-08-06 11:42:51 -07003033
Mark Fashehf4414602015-06-30 14:42:05 -07003034 btrfs_double_extent_unlock(src, loff, dst, dst_loff, len);
3035
3036 btrfs_cmp_data_free(&cmp);
Mark Fasheh416161d2013-08-06 11:42:51 -07003037out_unlock:
Mark Fashehf4414602015-06-30 14:42:05 -07003038 btrfs_double_inode_unlock(src, dst);
Mark Fasheh416161d2013-08-06 11:42:51 -07003039
3040 return ret;
3041}
3042
3043#define BTRFS_MAX_DEDUPE_LEN (16 * 1024 * 1024)
3044
3045static long btrfs_ioctl_file_extent_same(struct file *file,
Al Viro1c1c8742013-12-11 23:07:51 -05003046 struct btrfs_ioctl_same_args __user *argp)
Mark Fasheh416161d2013-08-06 11:42:51 -07003047{
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003048 struct btrfs_ioctl_same_args *same;
3049 struct btrfs_ioctl_same_extent_info *info;
Al Viro1c1c8742013-12-11 23:07:51 -05003050 struct inode *src = file_inode(file);
Mark Fasheh416161d2013-08-06 11:42:51 -07003051 u64 off;
3052 u64 len;
3053 int i;
3054 int ret;
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003055 unsigned long size;
Mark Fasheh416161d2013-08-06 11:42:51 -07003056 u64 bs = BTRFS_I(src)->root->fs_info->sb->s_blocksize;
3057 bool is_admin = capable(CAP_SYS_ADMIN);
Al Viro1c1c8742013-12-11 23:07:51 -05003058 u16 count;
Mark Fasheh416161d2013-08-06 11:42:51 -07003059
3060 if (!(file->f_mode & FMODE_READ))
3061 return -EINVAL;
3062
3063 ret = mnt_want_write_file(file);
3064 if (ret)
3065 return ret;
3066
Al Viro1c1c8742013-12-11 23:07:51 -05003067 if (get_user(count, &argp->dest_count)) {
Mark Fasheh416161d2013-08-06 11:42:51 -07003068 ret = -EFAULT;
3069 goto out;
3070 }
3071
Al Viro1c1c8742013-12-11 23:07:51 -05003072 size = offsetof(struct btrfs_ioctl_same_args __user, info[count]);
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003073
Al Viro1c1c8742013-12-11 23:07:51 -05003074 same = memdup_user(argp, size);
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003075
Geyslan G. Bem229eed42013-10-14 12:18:25 -03003076 if (IS_ERR(same)) {
3077 ret = PTR_ERR(same);
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003078 goto out;
3079 }
3080
3081 off = same->logical_offset;
3082 len = same->length;
Mark Fasheh416161d2013-08-06 11:42:51 -07003083
3084 /*
3085 * Limit the total length we will dedupe for each operation.
3086 * This is intended to bound the total time spent in this
3087 * ioctl to something sane.
3088 */
3089 if (len > BTRFS_MAX_DEDUPE_LEN)
3090 len = BTRFS_MAX_DEDUPE_LEN;
3091
3092 if (WARN_ON_ONCE(bs < PAGE_CACHE_SIZE)) {
3093 /*
3094 * Btrfs does not support blocksize < page_size. As a
3095 * result, btrfs_cmp_data() won't correctly handle
3096 * this situation without an update.
3097 */
3098 ret = -EINVAL;
3099 goto out;
3100 }
3101
3102 ret = -EISDIR;
3103 if (S_ISDIR(src->i_mode))
3104 goto out;
3105
3106 ret = -EACCES;
3107 if (!S_ISREG(src->i_mode))
3108 goto out;
3109
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003110 /* pre-format output fields to sane values */
Al Viro1c1c8742013-12-11 23:07:51 -05003111 for (i = 0; i < count; i++) {
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003112 same->info[i].bytes_deduped = 0ULL;
3113 same->info[i].status = 0;
3114 }
3115
Al Viro1c1c8742013-12-11 23:07:51 -05003116 for (i = 0, info = same->info; i < count; i++, info++) {
3117 struct inode *dst;
3118 struct fd dst_file = fdget(info->fd);
3119 if (!dst_file.file) {
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003120 info->status = -EBADF;
Al Viro1c1c8742013-12-11 23:07:51 -05003121 continue;
Mark Fasheh416161d2013-08-06 11:42:51 -07003122 }
Al Viro1c1c8742013-12-11 23:07:51 -05003123 dst = file_inode(dst_file.file);
Mark Fasheh416161d2013-08-06 11:42:51 -07003124
Al Viro1c1c8742013-12-11 23:07:51 -05003125 if (!(is_admin || (dst_file.file->f_mode & FMODE_WRITE))) {
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003126 info->status = -EINVAL;
Al Viro1c1c8742013-12-11 23:07:51 -05003127 } else if (file->f_path.mnt != dst_file.file->f_path.mnt) {
3128 info->status = -EXDEV;
3129 } else if (S_ISDIR(dst->i_mode)) {
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003130 info->status = -EISDIR;
Al Viro1c1c8742013-12-11 23:07:51 -05003131 } else if (!S_ISREG(dst->i_mode)) {
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003132 info->status = -EACCES;
Al Viro1c1c8742013-12-11 23:07:51 -05003133 } else {
3134 info->status = btrfs_extent_same(src, off, len, dst,
3135 info->logical_offset);
3136 if (info->status == 0)
3137 info->bytes_deduped += len;
Mark Fasheh416161d2013-08-06 11:42:51 -07003138 }
Al Viro1c1c8742013-12-11 23:07:51 -05003139 fdput(dst_file);
Mark Fasheh416161d2013-08-06 11:42:51 -07003140 }
3141
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003142 ret = copy_to_user(argp, same, size);
3143 if (ret)
3144 ret = -EFAULT;
3145
Mark Fasheh416161d2013-08-06 11:42:51 -07003146out:
3147 mnt_drop_write_file(file);
3148 return ret;
3149}
3150
Josef Bacikfcebe452014-05-13 17:30:47 -07003151/* Helper to check and see if this root currently has a ref on the given disk
3152 * bytenr. If it does then we need to update the quota for this root. This
3153 * doesn't do anything if quotas aren't enabled.
3154 */
3155static int check_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
3156 u64 disko)
3157{
David Sterba3284da72015-02-25 15:47:32 +01003158 struct seq_list tree_mod_seq_elem = SEQ_LIST_INIT(tree_mod_seq_elem);
Josef Bacikfcebe452014-05-13 17:30:47 -07003159 struct ulist *roots;
3160 struct ulist_iterator uiter;
3161 struct ulist_node *root_node = NULL;
3162 int ret;
3163
3164 if (!root->fs_info->quota_enabled)
3165 return 1;
3166
3167 btrfs_get_tree_mod_seq(root->fs_info, &tree_mod_seq_elem);
3168 ret = btrfs_find_all_roots(trans, root->fs_info, disko,
3169 tree_mod_seq_elem.seq, &roots);
3170 if (ret < 0)
3171 goto out;
3172 ret = 0;
3173 ULIST_ITER_INIT(&uiter);
3174 while ((root_node = ulist_next(roots, &uiter))) {
3175 if (root_node->val == root->objectid) {
3176 ret = 1;
3177 break;
3178 }
3179 }
3180 ulist_free(roots);
3181out:
3182 btrfs_put_tree_mod_seq(root->fs_info, &tree_mod_seq_elem);
3183 return ret;
3184}
3185
Filipe Mananaf82a9902014-06-01 01:50:28 +01003186static int clone_finish_inode_update(struct btrfs_trans_handle *trans,
3187 struct inode *inode,
3188 u64 endoff,
3189 const u64 destoff,
3190 const u64 olen)
3191{
3192 struct btrfs_root *root = BTRFS_I(inode)->root;
3193 int ret;
3194
3195 inode_inc_iversion(inode);
3196 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
3197 /*
3198 * We round up to the block size at eof when determining which
3199 * extents to clone above, but shouldn't round up the file size.
3200 */
3201 if (endoff > destoff + olen)
3202 endoff = destoff + olen;
3203 if (endoff > inode->i_size)
3204 btrfs_i_size_write(inode, endoff);
3205
3206 ret = btrfs_update_inode(trans, root, inode);
3207 if (ret) {
3208 btrfs_abort_transaction(trans, root, ret);
3209 btrfs_end_transaction(trans, root);
3210 goto out;
3211 }
3212 ret = btrfs_end_transaction(trans, root);
3213out:
3214 return ret;
3215}
3216
Filipe Manana7ffbb592014-06-09 03:48:05 +01003217static void clone_update_extent_map(struct inode *inode,
3218 const struct btrfs_trans_handle *trans,
3219 const struct btrfs_path *path,
Filipe Manana7ffbb592014-06-09 03:48:05 +01003220 const u64 hole_offset,
3221 const u64 hole_len)
3222{
3223 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
3224 struct extent_map *em;
3225 int ret;
3226
3227 em = alloc_extent_map();
3228 if (!em) {
3229 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3230 &BTRFS_I(inode)->runtime_flags);
3231 return;
3232 }
3233
Filipe Manana14f59792014-06-29 21:45:40 +01003234 if (path) {
3235 struct btrfs_file_extent_item *fi;
3236
3237 fi = btrfs_item_ptr(path->nodes[0], path->slots[0],
3238 struct btrfs_file_extent_item);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003239 btrfs_extent_item_to_extent_map(inode, path, fi, false, em);
3240 em->generation = -1;
3241 if (btrfs_file_extent_type(path->nodes[0], fi) ==
3242 BTRFS_FILE_EXTENT_INLINE)
3243 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3244 &BTRFS_I(inode)->runtime_flags);
3245 } else {
3246 em->start = hole_offset;
3247 em->len = hole_len;
3248 em->ram_bytes = em->len;
3249 em->orig_start = hole_offset;
3250 em->block_start = EXTENT_MAP_HOLE;
3251 em->block_len = 0;
3252 em->orig_block_len = 0;
3253 em->compress_type = BTRFS_COMPRESS_NONE;
3254 em->generation = trans->transid;
3255 }
3256
3257 while (1) {
3258 write_lock(&em_tree->lock);
3259 ret = add_extent_mapping(em_tree, em, 1);
3260 write_unlock(&em_tree->lock);
3261 if (ret != -EEXIST) {
3262 free_extent_map(em);
3263 break;
3264 }
3265 btrfs_drop_extent_cache(inode, em->start,
3266 em->start + em->len - 1, 0);
3267 }
3268
David Sterbaee39b432014-09-30 01:33:33 +02003269 if (ret)
Filipe Manana7ffbb592014-06-09 03:48:05 +01003270 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3271 &BTRFS_I(inode)->runtime_flags);
3272}
3273
Mark Fasheh32b7c682013-08-06 11:42:49 -07003274/**
3275 * btrfs_clone() - clone a range from inode file to another
3276 *
3277 * @src: Inode to clone from
3278 * @inode: Inode to clone to
3279 * @off: Offset within source to start clone from
3280 * @olen: Original length, passed by user, of range to clone
3281 * @olen_aligned: Block-aligned value of olen, extent_same uses
3282 * identical values here
3283 * @destoff: Offset within @inode to start clone
3284 */
3285static int btrfs_clone(struct inode *src, struct inode *inode,
Filipe Mananaf82a9902014-06-01 01:50:28 +01003286 const u64 off, const u64 olen, const u64 olen_aligned,
3287 const u64 destoff)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003288{
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003289 struct btrfs_root *root = BTRFS_I(inode)->root;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003290 struct btrfs_path *path = NULL;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003291 struct extent_buffer *leaf;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003292 struct btrfs_trans_handle *trans;
3293 char *buf = NULL;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003294 struct btrfs_key key;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003295 u32 nritems;
3296 int slot;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003297 int ret;
Josef Bacikfcebe452014-05-13 17:30:47 -07003298 int no_quota;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003299 const u64 len = olen_aligned;
Josef Bacikfcebe452014-05-13 17:30:47 -07003300 u64 last_disko = 0;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003301 u64 last_dest_end = destoff;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003302
3303 ret = -ENOMEM;
David Sterba707e8a02014-06-04 19:22:26 +02003304 buf = vmalloc(root->nodesize);
Yan Zhengae01a0a2008-08-04 23:23:47 -04003305 if (!buf)
Mark Fasheh32b7c682013-08-06 11:42:49 -07003306 return ret;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003307
3308 path = btrfs_alloc_path();
3309 if (!path) {
3310 vfree(buf);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003311 return ret;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003312 }
Mark Fasheh32b7c682013-08-06 11:42:49 -07003313
Yan Zhengae01a0a2008-08-04 23:23:47 -04003314 path->reada = 2;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003315 /* clone data */
Li Zefan33345d012011-04-20 10:31:50 +08003316 key.objectid = btrfs_ino(src);
Yan Zhengae01a0a2008-08-04 23:23:47 -04003317 key.type = BTRFS_EXTENT_DATA_KEY;
Filipe Manana2c463822014-05-31 02:31:05 +01003318 key.offset = off;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003319
3320 while (1) {
Chris Masonde249e62015-04-11 05:09:06 -07003321 u64 next_key_min_offset = key.offset + 1;
Filipe Mananadf858e72015-03-31 14:56:46 +01003322
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003323 /*
3324 * note the key will change type as we walk through the
3325 * tree.
3326 */
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003327 path->leave_spinning = 1;
David Sterba362a20c2011-08-01 18:11:57 +02003328 ret = btrfs_search_slot(NULL, BTRFS_I(src)->root, &key, path,
3329 0, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003330 if (ret < 0)
3331 goto out;
Filipe Manana2c463822014-05-31 02:31:05 +01003332 /*
3333 * First search, if no extent item that starts at offset off was
3334 * found but the previous item is an extent item, it's possible
3335 * it might overlap our target range, therefore process it.
3336 */
3337 if (key.offset == off && ret > 0 && path->slots[0] > 0) {
3338 btrfs_item_key_to_cpu(path->nodes[0], &key,
3339 path->slots[0] - 1);
3340 if (key.type == BTRFS_EXTENT_DATA_KEY)
3341 path->slots[0]--;
3342 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003343
Yan Zhengae01a0a2008-08-04 23:23:47 -04003344 nritems = btrfs_header_nritems(path->nodes[0]);
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003345process_slot:
Josef Bacikfcebe452014-05-13 17:30:47 -07003346 no_quota = 1;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003347 if (path->slots[0] >= nritems) {
David Sterba362a20c2011-08-01 18:11:57 +02003348 ret = btrfs_next_leaf(BTRFS_I(src)->root, path);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003349 if (ret < 0)
3350 goto out;
3351 if (ret > 0)
3352 break;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003353 nritems = btrfs_header_nritems(path->nodes[0]);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003354 }
3355 leaf = path->nodes[0];
3356 slot = path->slots[0];
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003357
Yan Zhengae01a0a2008-08-04 23:23:47 -04003358 btrfs_item_key_to_cpu(leaf, &key, slot);
David Sterba962a2982014-06-04 18:41:45 +02003359 if (key.type > BTRFS_EXTENT_DATA_KEY ||
Li Zefan33345d012011-04-20 10:31:50 +08003360 key.objectid != btrfs_ino(src))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003361 break;
3362
David Sterba962a2982014-06-04 18:41:45 +02003363 if (key.type == BTRFS_EXTENT_DATA_KEY) {
Sage Weilc5c9cd42008-11-12 14:32:25 -05003364 struct btrfs_file_extent_item *extent;
3365 int type;
Zheng Yan31840ae2008-09-23 13:14:14 -04003366 u32 size;
3367 struct btrfs_key new_key;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003368 u64 disko = 0, diskl = 0;
3369 u64 datao = 0, datal = 0;
3370 u8 comp;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003371 u64 drop_start;
Zheng Yan31840ae2008-09-23 13:14:14 -04003372
Sage Weilc5c9cd42008-11-12 14:32:25 -05003373 extent = btrfs_item_ptr(leaf, slot,
3374 struct btrfs_file_extent_item);
3375 comp = btrfs_file_extent_compression(leaf, extent);
3376 type = btrfs_file_extent_type(leaf, extent);
Chris Masonc8a894d2009-06-27 21:07:03 -04003377 if (type == BTRFS_FILE_EXTENT_REG ||
3378 type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masond3977122009-01-05 21:25:51 -05003379 disko = btrfs_file_extent_disk_bytenr(leaf,
3380 extent);
3381 diskl = btrfs_file_extent_disk_num_bytes(leaf,
3382 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003383 datao = btrfs_file_extent_offset(leaf, extent);
Chris Masond3977122009-01-05 21:25:51 -05003384 datal = btrfs_file_extent_num_bytes(leaf,
3385 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003386 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
3387 /* take upper bound, may be compressed */
3388 datal = btrfs_file_extent_ram_bytes(leaf,
3389 extent);
3390 }
Zheng Yan31840ae2008-09-23 13:14:14 -04003391
Filipe Manana2c463822014-05-31 02:31:05 +01003392 /*
3393 * The first search might have left us at an extent
3394 * item that ends before our target range's start, can
3395 * happen if we have holes and NO_HOLES feature enabled.
3396 */
3397 if (key.offset + datal <= off) {
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003398 path->slots[0]++;
3399 goto process_slot;
Filipe Manana2c463822014-05-31 02:31:05 +01003400 } else if (key.offset >= off + len) {
3401 break;
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003402 }
Filipe Mananadf858e72015-03-31 14:56:46 +01003403 next_key_min_offset = key.offset + datal;
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003404 size = btrfs_item_size_nr(leaf, slot);
3405 read_extent_buffer(leaf, buf,
3406 btrfs_item_ptr_offset(leaf, slot),
3407 size);
3408
3409 btrfs_release_path(path);
3410 path->leave_spinning = 0;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003411
Zheng Yan31840ae2008-09-23 13:14:14 -04003412 memcpy(&new_key, &key, sizeof(new_key));
Li Zefan33345d012011-04-20 10:31:50 +08003413 new_key.objectid = btrfs_ino(inode);
Li Zefan4d728ec2011-01-26 14:10:43 +08003414 if (off <= key.offset)
3415 new_key.offset = key.offset + destoff - off;
3416 else
3417 new_key.offset = destoff;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003418
Sage Weilb6f34092011-09-20 14:48:51 -04003419 /*
Filipe Mananaf82a9902014-06-01 01:50:28 +01003420 * Deal with a hole that doesn't have an extent item
3421 * that represents it (NO_HOLES feature enabled).
3422 * This hole is either in the middle of the cloning
3423 * range or at the beginning (fully overlaps it or
3424 * partially overlaps it).
3425 */
3426 if (new_key.offset != last_dest_end)
3427 drop_start = last_dest_end;
3428 else
3429 drop_start = new_key.offset;
3430
3431 /*
Sage Weilb6f34092011-09-20 14:48:51 -04003432 * 1 - adjusting old extent (we may have to split it)
3433 * 1 - add new extent
3434 * 1 - inode update
3435 */
3436 trans = btrfs_start_transaction(root, 3);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003437 if (IS_ERR(trans)) {
3438 ret = PTR_ERR(trans);
3439 goto out;
3440 }
3441
Chris Masonc8a894d2009-06-27 21:07:03 -04003442 if (type == BTRFS_FILE_EXTENT_REG ||
3443 type == BTRFS_FILE_EXTENT_PREALLOC) {
Li Zefand72c0842011-09-11 10:52:25 -04003444 /*
3445 * a | --- range to clone ---| b
3446 * | ------------- extent ------------- |
3447 */
3448
Antonio Ospite93915582014-06-04 14:03:48 +02003449 /* subtract range b */
Li Zefand72c0842011-09-11 10:52:25 -04003450 if (key.offset + datal > off + len)
3451 datal = off + len - key.offset;
3452
Antonio Ospite93915582014-06-04 14:03:48 +02003453 /* subtract range a */
Yan, Zhenga22285a2010-05-16 10:48:46 -04003454 if (off > key.offset) {
3455 datao += off - key.offset;
3456 datal -= off - key.offset;
3457 }
3458
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,
Yan, Zhenga22285a2010-05-16 10:48:46 -04003461 new_key.offset + datal,
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)
Liu Bo00fdf132014-03-10 18:56:07 +08003465 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 leaf = path->nodes[0];
3481 slot = path->slots[0];
3482 write_extent_buffer(leaf, buf,
3483 btrfs_item_ptr_offset(leaf, slot),
3484 size);
3485
3486 extent = btrfs_item_ptr(leaf, slot,
3487 struct btrfs_file_extent_item);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003488
Sage Weilc5c9cd42008-11-12 14:32:25 -05003489 /* disko == 0 means it's a hole */
3490 if (!disko)
3491 datao = 0;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003492
3493 btrfs_set_file_extent_offset(leaf, extent,
3494 datao);
3495 btrfs_set_file_extent_num_bytes(leaf, extent,
3496 datal);
Josef Bacikfcebe452014-05-13 17:30:47 -07003497
3498 /*
3499 * We need to look up the roots that point at
3500 * this bytenr and see if the new root does. If
3501 * it does not we need to make sure we update
3502 * quotas appropriately.
3503 */
3504 if (disko && root != BTRFS_I(src)->root &&
3505 disko != last_disko) {
3506 no_quota = check_ref(trans, root,
3507 disko);
3508 if (no_quota < 0) {
3509 btrfs_abort_transaction(trans,
3510 root,
3511 ret);
3512 btrfs_end_transaction(trans,
3513 root);
3514 ret = no_quota;
3515 goto out;
3516 }
3517 }
3518
Sage Weilc5c9cd42008-11-12 14:32:25 -05003519 if (disko) {
3520 inode_add_bytes(inode, datal);
3521 ret = btrfs_inc_extent_ref(trans, root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003522 disko, diskl, 0,
3523 root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08003524 btrfs_ino(inode),
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003525 new_key.offset - datao,
Josef Bacikfcebe452014-05-13 17:30:47 -07003526 no_quota);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003527 if (ret) {
3528 btrfs_abort_transaction(trans,
3529 root,
3530 ret);
3531 btrfs_end_transaction(trans,
3532 root);
3533 goto out;
3534
3535 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05003536 }
3537 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
3538 u64 skip = 0;
3539 u64 trim = 0;
Liu Bod3ecfcd2014-05-09 10:01:02 +08003540 u64 aligned_end = 0;
3541
Sage Weilc5c9cd42008-11-12 14:32:25 -05003542 if (off > key.offset) {
3543 skip = off - key.offset;
3544 new_key.offset += skip;
3545 }
Chris Masond3977122009-01-05 21:25:51 -05003546
Liu Boaa42ffd2012-09-18 03:52:23 -06003547 if (key.offset + datal > off + len)
3548 trim = key.offset + datal - (off + len);
Chris Masond3977122009-01-05 21:25:51 -05003549
Sage Weilc5c9cd42008-11-12 14:32:25 -05003550 if (comp && (skip || trim)) {
Sage Weilc5c9cd42008-11-12 14:32:25 -05003551 ret = -EINVAL;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003552 btrfs_end_transaction(trans, root);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003553 goto out;
3554 }
3555 size -= skip + trim;
3556 datal -= skip + trim;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003557
Liu Bod3ecfcd2014-05-09 10:01:02 +08003558 aligned_end = ALIGN(new_key.offset + datal,
3559 root->sectorsize);
Josef Bacik5dc562c2012-08-17 13:14:17 -04003560 ret = btrfs_drop_extents(trans, root, inode,
Filipe Mananaf82a9902014-06-01 01:50:28 +01003561 drop_start,
Liu Bod3ecfcd2014-05-09 10:01:02 +08003562 aligned_end,
Josef Bacik26714852012-08-29 12:24:27 -04003563 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003564 if (ret) {
David Sterba3f9e3df2014-04-15 18:50:17 +02003565 if (ret != -EOPNOTSUPP)
Chris Mason3a29bc02014-04-07 07:10:40 -07003566 btrfs_abort_transaction(trans,
3567 root, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003568 btrfs_end_transaction(trans, root);
3569 goto out;
3570 }
Yan, Zhenga22285a2010-05-16 10:48:46 -04003571
Sage Weilc5c9cd42008-11-12 14:32:25 -05003572 ret = btrfs_insert_empty_item(trans, root, path,
3573 &new_key, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003574 if (ret) {
3575 btrfs_abort_transaction(trans, root,
3576 ret);
3577 btrfs_end_transaction(trans, root);
3578 goto out;
3579 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05003580
3581 if (skip) {
Chris Masond3977122009-01-05 21:25:51 -05003582 u32 start =
3583 btrfs_file_extent_calc_inline_size(0);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003584 memmove(buf+start, buf+start+skip,
3585 datal);
3586 }
3587
3588 leaf = path->nodes[0];
3589 slot = path->slots[0];
3590 write_extent_buffer(leaf, buf,
3591 btrfs_item_ptr_offset(leaf, slot),
3592 size);
3593 inode_add_bytes(inode, datal);
3594 }
3595
Filipe Manana7ffbb592014-06-09 03:48:05 +01003596 /* If we have an implicit hole (NO_HOLES feature). */
3597 if (drop_start < new_key.offset)
3598 clone_update_extent_map(inode, trans,
Filipe Manana14f59792014-06-29 21:45:40 +01003599 NULL, drop_start,
Filipe Manana7ffbb592014-06-09 03:48:05 +01003600 new_key.offset - drop_start);
3601
Filipe Manana14f59792014-06-29 21:45:40 +01003602 clone_update_extent_map(inode, trans, path, 0, 0);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003603
Sage Weilc5c9cd42008-11-12 14:32:25 -05003604 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02003605 btrfs_release_path(path);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003606
Filipe Manana62e23902014-08-08 02:47:06 +01003607 last_dest_end = ALIGN(new_key.offset + datal,
3608 root->sectorsize);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003609 ret = clone_finish_inode_update(trans, inode,
3610 last_dest_end,
3611 destoff, olen);
3612 if (ret)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003613 goto out;
Filipe Manana2c463822014-05-31 02:31:05 +01003614 if (new_key.offset + datal >= destoff + len)
3615 break;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003616 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003617 btrfs_release_path(path);
Filipe Mananadf858e72015-03-31 14:56:46 +01003618 key.offset = next_key_min_offset;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003619 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003620 ret = 0;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003621
Filipe Mananaf82a9902014-06-01 01:50:28 +01003622 if (last_dest_end < destoff + len) {
3623 /*
3624 * We have an implicit hole (NO_HOLES feature is enabled) that
3625 * fully or partially overlaps our cloning range at its end.
3626 */
3627 btrfs_release_path(path);
3628
3629 /*
3630 * 1 - remove extent(s)
3631 * 1 - inode update
3632 */
3633 trans = btrfs_start_transaction(root, 2);
3634 if (IS_ERR(trans)) {
3635 ret = PTR_ERR(trans);
3636 goto out;
3637 }
3638 ret = btrfs_drop_extents(trans, root, inode,
3639 last_dest_end, destoff + len, 1);
3640 if (ret) {
3641 if (ret != -EOPNOTSUPP)
3642 btrfs_abort_transaction(trans, root, ret);
3643 btrfs_end_transaction(trans, root);
3644 goto out;
3645 }
Filipe Manana14f59792014-06-29 21:45:40 +01003646 clone_update_extent_map(inode, trans, NULL, last_dest_end,
3647 destoff + len - last_dest_end);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003648 ret = clone_finish_inode_update(trans, inode, destoff + len,
3649 destoff, olen);
3650 }
3651
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003652out:
Mark Fasheh32b7c682013-08-06 11:42:49 -07003653 btrfs_free_path(path);
3654 vfree(buf);
3655 return ret;
3656}
3657
3658static noinline long btrfs_ioctl_clone(struct file *file, unsigned long srcfd,
3659 u64 off, u64 olen, u64 destoff)
3660{
Al Viro54563d42013-09-01 15:57:51 -04003661 struct inode *inode = file_inode(file);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003662 struct btrfs_root *root = BTRFS_I(inode)->root;
3663 struct fd src_file;
3664 struct inode *src;
3665 int ret;
3666 u64 len = olen;
3667 u64 bs = root->fs_info->sb->s_blocksize;
3668 int same_inode = 0;
3669
3670 /*
3671 * TODO:
3672 * - split compressed inline extents. annoying: we need to
3673 * decompress into destination's address_space (the file offset
3674 * may change, so source mapping won't do), then recompress (or
3675 * otherwise reinsert) a subrange.
Liu Bo00fdf132014-03-10 18:56:07 +08003676 *
3677 * - split destination inode's inline extents. The inline extents can
3678 * be either compressed or non-compressed.
Mark Fasheh32b7c682013-08-06 11:42:49 -07003679 */
3680
3681 /* the destination must be opened for writing */
3682 if (!(file->f_mode & FMODE_WRITE) || (file->f_flags & O_APPEND))
3683 return -EINVAL;
3684
3685 if (btrfs_root_readonly(root))
3686 return -EROFS;
3687
3688 ret = mnt_want_write_file(file);
3689 if (ret)
3690 return ret;
3691
3692 src_file = fdget(srcfd);
3693 if (!src_file.file) {
3694 ret = -EBADF;
3695 goto out_drop_write;
3696 }
3697
3698 ret = -EXDEV;
3699 if (src_file.file->f_path.mnt != file->f_path.mnt)
3700 goto out_fput;
3701
3702 src = file_inode(src_file.file);
3703
3704 ret = -EINVAL;
3705 if (src == inode)
3706 same_inode = 1;
3707
3708 /* the src must be open for reading */
3709 if (!(src_file.file->f_mode & FMODE_READ))
3710 goto out_fput;
3711
3712 /* don't make the dst file partly checksummed */
3713 if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
3714 (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM))
3715 goto out_fput;
3716
3717 ret = -EISDIR;
3718 if (S_ISDIR(src->i_mode) || S_ISDIR(inode->i_mode))
3719 goto out_fput;
3720
3721 ret = -EXDEV;
3722 if (src->i_sb != inode->i_sb)
3723 goto out_fput;
3724
3725 if (!same_inode) {
3726 if (inode < src) {
3727 mutex_lock_nested(&inode->i_mutex, I_MUTEX_PARENT);
3728 mutex_lock_nested(&src->i_mutex, I_MUTEX_CHILD);
3729 } else {
3730 mutex_lock_nested(&src->i_mutex, I_MUTEX_PARENT);
3731 mutex_lock_nested(&inode->i_mutex, I_MUTEX_CHILD);
3732 }
3733 } else {
3734 mutex_lock(&src->i_mutex);
3735 }
3736
3737 /* determine range to clone */
3738 ret = -EINVAL;
3739 if (off + len > src->i_size || off + len < off)
3740 goto out_unlock;
3741 if (len == 0)
3742 olen = len = src->i_size - off;
3743 /* if we extend to eof, continue to block boundary */
3744 if (off + len == src->i_size)
3745 len = ALIGN(src->i_size, bs) - off;
3746
Filipe Mananaccccf3d62015-03-30 18:23:59 +01003747 if (len == 0) {
3748 ret = 0;
3749 goto out_unlock;
3750 }
3751
Mark Fasheh32b7c682013-08-06 11:42:49 -07003752 /* verify the end result is block aligned */
3753 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs) ||
3754 !IS_ALIGNED(destoff, bs))
3755 goto out_unlock;
3756
3757 /* verify if ranges are overlapped within the same file */
3758 if (same_inode) {
3759 if (destoff + len > off && destoff < off + len)
3760 goto out_unlock;
3761 }
3762
3763 if (destoff > inode->i_size) {
3764 ret = btrfs_cont_expand(inode, inode->i_size, destoff);
3765 if (ret)
3766 goto out_unlock;
3767 }
3768
Filipe Mananac125b8b2014-05-23 05:03:34 +01003769 /*
3770 * Lock the target range too. Right after we replace the file extent
3771 * items in the fs tree (which now point to the cloned data), we might
3772 * have a worker replace them with extent items relative to a write
3773 * operation that was issued before this clone operation (i.e. confront
3774 * with inode.c:btrfs_finish_ordered_io).
3775 */
3776 if (same_inode) {
3777 u64 lock_start = min_t(u64, off, destoff);
3778 u64 lock_len = max_t(u64, off, destoff) + len - lock_start;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003779
Filipe Mananac125b8b2014-05-23 05:03:34 +01003780 lock_extent_range(src, lock_start, lock_len);
3781 } else {
3782 lock_extent_range(src, off, len);
3783 lock_extent_range(inode, destoff, len);
3784 }
Mark Fasheh32b7c682013-08-06 11:42:49 -07003785
3786 ret = btrfs_clone(src, inode, off, olen, len, destoff);
3787
Filipe Mananac125b8b2014-05-23 05:03:34 +01003788 if (same_inode) {
3789 u64 lock_start = min_t(u64, off, destoff);
3790 u64 lock_end = max_t(u64, off, destoff) + len - 1;
3791
3792 unlock_extent(&BTRFS_I(src)->io_tree, lock_start, lock_end);
3793 } else {
3794 unlock_extent(&BTRFS_I(src)->io_tree, off, off + len - 1);
3795 unlock_extent(&BTRFS_I(inode)->io_tree, destoff,
3796 destoff + len - 1);
3797 }
3798 /*
3799 * Truncate page cache pages so that future reads will see the cloned
3800 * data immediately and not the previous data.
3801 */
3802 truncate_inode_pages_range(&inode->i_data, destoff,
3803 PAGE_CACHE_ALIGN(destoff + len) - 1);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003804out_unlock:
Filipe David Borba Mananac57c2b32014-01-11 21:31:25 +00003805 if (!same_inode) {
3806 if (inode < src) {
3807 mutex_unlock(&src->i_mutex);
3808 mutex_unlock(&inode->i_mutex);
3809 } else {
3810 mutex_unlock(&inode->i_mutex);
3811 mutex_unlock(&src->i_mutex);
3812 }
3813 } else {
3814 mutex_unlock(&src->i_mutex);
3815 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003816out_fput:
Al Viro2903ff02012-08-28 12:52:22 -04003817 fdput(src_file);
Yan Zhengab67b7c2008-12-19 10:58:39 -05003818out_drop_write:
Al Viro2a79f172011-12-09 08:06:57 -05003819 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003820 return ret;
3821}
3822
Christoph Hellwig7a865e82008-12-02 09:52:24 -05003823static long btrfs_ioctl_clone_range(struct file *file, void __user *argp)
Sage Weilc5c9cd42008-11-12 14:32:25 -05003824{
3825 struct btrfs_ioctl_clone_range_args args;
3826
Christoph Hellwig7a865e82008-12-02 09:52:24 -05003827 if (copy_from_user(&args, argp, sizeof(args)))
Sage Weilc5c9cd42008-11-12 14:32:25 -05003828 return -EFAULT;
3829 return btrfs_ioctl_clone(file, args.src_fd, args.src_offset,
3830 args.src_length, args.dest_offset);
3831}
3832
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003833/*
3834 * there are many ways the trans_start and trans_end ioctls can lead
3835 * to deadlocks. They should only be used by applications that
3836 * basically own the machine, and have a very in depth understanding
3837 * of all the possible deadlocks and enospc problems.
3838 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05003839static long btrfs_ioctl_trans_start(struct file *file)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003840{
Al Viro496ad9a2013-01-23 17:07:38 -05003841 struct inode *inode = file_inode(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003842 struct btrfs_root *root = BTRFS_I(inode)->root;
3843 struct btrfs_trans_handle *trans;
Sage Weil1ab86ae2009-09-29 18:38:44 -04003844 int ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003845
Sage Weil1ab86ae2009-09-29 18:38:44 -04003846 ret = -EPERM;
Christoph Hellwigdf5b5522008-06-11 21:53:58 -04003847 if (!capable(CAP_SYS_ADMIN))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003848 goto out;
Sage Weil1ab86ae2009-09-29 18:38:44 -04003849
3850 ret = -EINPROGRESS;
3851 if (file->private_data)
3852 goto out;
Sage Weil9ca9ee02008-08-04 10:41:27 -04003853
Li Zefanb83cc962010-12-20 16:04:08 +08003854 ret = -EROFS;
3855 if (btrfs_root_readonly(root))
3856 goto out;
3857
Al Viroa561be72011-11-23 11:57:51 -05003858 ret = mnt_want_write_file(file);
Yan Zhengc146afa2008-11-12 14:34:12 -05003859 if (ret)
3860 goto out;
3861
Josef Bacika4abeea2011-04-11 17:25:13 -04003862 atomic_inc(&root->fs_info->open_ioctl_trans);
Sage Weil9ca9ee02008-08-04 10:41:27 -04003863
Sage Weil1ab86ae2009-09-29 18:38:44 -04003864 ret = -ENOMEM;
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003865 trans = btrfs_start_ioctl_transaction(root);
Tsutomu Itohabd30bb2011-01-24 00:57:10 +00003866 if (IS_ERR(trans))
Sage Weil1ab86ae2009-09-29 18:38:44 -04003867 goto out_drop;
3868
3869 file->private_data = trans;
3870 return 0;
3871
3872out_drop:
Josef Bacika4abeea2011-04-11 17:25:13 -04003873 atomic_dec(&root->fs_info->open_ioctl_trans);
Al Viro2a79f172011-12-09 08:06:57 -05003874 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003875out:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003876 return ret;
3877}
3878
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003879static long btrfs_ioctl_default_subvol(struct file *file, void __user *argp)
3880{
Al Viro496ad9a2013-01-23 17:07:38 -05003881 struct inode *inode = file_inode(file);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003882 struct btrfs_root *root = BTRFS_I(inode)->root;
3883 struct btrfs_root *new_root;
3884 struct btrfs_dir_item *di;
3885 struct btrfs_trans_handle *trans;
3886 struct btrfs_path *path;
3887 struct btrfs_key location;
3888 struct btrfs_disk_key disk_key;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003889 u64 objectid = 0;
3890 u64 dir_id;
Miao Xie3c04ce02012-11-26 08:43:07 +00003891 int ret;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003892
3893 if (!capable(CAP_SYS_ADMIN))
3894 return -EPERM;
3895
Miao Xie3c04ce02012-11-26 08:43:07 +00003896 ret = mnt_want_write_file(file);
3897 if (ret)
3898 return ret;
3899
3900 if (copy_from_user(&objectid, argp, sizeof(objectid))) {
3901 ret = -EFAULT;
3902 goto out;
3903 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003904
3905 if (!objectid)
chandan1cecf572013-09-13 19:34:10 +05303906 objectid = BTRFS_FS_TREE_OBJECTID;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003907
3908 location.objectid = objectid;
3909 location.type = BTRFS_ROOT_ITEM_KEY;
3910 location.offset = (u64)-1;
3911
3912 new_root = btrfs_read_fs_root_no_name(root->fs_info, &location);
Miao Xie3c04ce02012-11-26 08:43:07 +00003913 if (IS_ERR(new_root)) {
3914 ret = PTR_ERR(new_root);
3915 goto out;
3916 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003917
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003918 path = btrfs_alloc_path();
Miao Xie3c04ce02012-11-26 08:43:07 +00003919 if (!path) {
3920 ret = -ENOMEM;
3921 goto out;
3922 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003923 path->leave_spinning = 1;
3924
3925 trans = btrfs_start_transaction(root, 1);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00003926 if (IS_ERR(trans)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003927 btrfs_free_path(path);
Miao Xie3c04ce02012-11-26 08:43:07 +00003928 ret = PTR_ERR(trans);
3929 goto out;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003930 }
3931
David Sterba6c417612011-04-13 15:41:04 +02003932 dir_id = btrfs_super_root_dir(root->fs_info->super_copy);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003933 di = btrfs_lookup_dir_item(trans, root->fs_info->tree_root, path,
3934 dir_id, "default", 7, 1);
Dan Carpentercf1e99a2010-05-29 09:47:24 +00003935 if (IS_ERR_OR_NULL(di)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003936 btrfs_free_path(path);
3937 btrfs_end_transaction(trans, root);
Frank Holtonefe120a2013-12-20 11:37:06 -05003938 btrfs_err(new_root->fs_info, "Umm, you don't have the default dir"
3939 "item, this isn't going to work");
Miao Xie3c04ce02012-11-26 08:43:07 +00003940 ret = -ENOENT;
3941 goto out;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003942 }
3943
3944 btrfs_cpu_key_to_disk(&disk_key, &new_root->root_key);
3945 btrfs_set_dir_item_key(path->nodes[0], di, &disk_key);
3946 btrfs_mark_buffer_dirty(path->nodes[0]);
3947 btrfs_free_path(path);
3948
Mitch Harder2b0ce2c2012-07-24 11:58:43 -06003949 btrfs_set_fs_incompat(root->fs_info, DEFAULT_SUBVOL);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003950 btrfs_end_transaction(trans, root);
Miao Xie3c04ce02012-11-26 08:43:07 +00003951out:
3952 mnt_drop_write_file(file);
3953 return ret;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003954}
3955
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02003956void btrfs_get_block_group_info(struct list_head *groups_list,
3957 struct btrfs_ioctl_space_info *space)
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003958{
3959 struct btrfs_block_group_cache *block_group;
3960
3961 space->total_bytes = 0;
3962 space->used_bytes = 0;
3963 space->flags = 0;
3964 list_for_each_entry(block_group, groups_list, list) {
3965 space->flags = block_group->flags;
3966 space->total_bytes += block_group->key.offset;
3967 space->used_bytes +=
3968 btrfs_block_group_used(&block_group->item);
3969 }
3970}
3971
Eric Sandeen48a3b632013-04-25 20:41:01 +00003972static long btrfs_ioctl_space_info(struct btrfs_root *root, void __user *arg)
Josef Bacik1406e432010-01-13 18:19:06 +00003973{
3974 struct btrfs_ioctl_space_args space_args;
3975 struct btrfs_ioctl_space_info space;
3976 struct btrfs_ioctl_space_info *dest;
Chris Mason7fde62b2010-03-16 15:40:10 -04003977 struct btrfs_ioctl_space_info *dest_orig;
Daniel J Blueman13f26962011-04-11 15:56:31 +00003978 struct btrfs_ioctl_space_info __user *user_dest;
Josef Bacik1406e432010-01-13 18:19:06 +00003979 struct btrfs_space_info *info;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003980 u64 types[] = {BTRFS_BLOCK_GROUP_DATA,
3981 BTRFS_BLOCK_GROUP_SYSTEM,
3982 BTRFS_BLOCK_GROUP_METADATA,
3983 BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA};
3984 int num_types = 4;
Chris Mason7fde62b2010-03-16 15:40:10 -04003985 int alloc_size;
Josef Bacik1406e432010-01-13 18:19:06 +00003986 int ret = 0;
Dan Rosenberg51788b12011-02-14 16:04:23 -05003987 u64 slot_count = 0;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003988 int i, c;
Josef Bacik1406e432010-01-13 18:19:06 +00003989
3990 if (copy_from_user(&space_args,
3991 (struct btrfs_ioctl_space_args __user *)arg,
3992 sizeof(space_args)))
3993 return -EFAULT;
3994
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003995 for (i = 0; i < num_types; i++) {
3996 struct btrfs_space_info *tmp;
3997
3998 info = NULL;
3999 rcu_read_lock();
4000 list_for_each_entry_rcu(tmp, &root->fs_info->space_info,
4001 list) {
4002 if (tmp->flags == types[i]) {
4003 info = tmp;
4004 break;
4005 }
4006 }
4007 rcu_read_unlock();
4008
4009 if (!info)
4010 continue;
4011
4012 down_read(&info->groups_sem);
4013 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
4014 if (!list_empty(&info->block_groups[c]))
4015 slot_count++;
4016 }
4017 up_read(&info->groups_sem);
4018 }
Josef Bacik1406e432010-01-13 18:19:06 +00004019
David Sterba36523e952014-02-07 14:34:12 +01004020 /*
4021 * Global block reserve, exported as a space_info
4022 */
4023 slot_count++;
4024
Chris Mason7fde62b2010-03-16 15:40:10 -04004025 /* space_slots == 0 means they are asking for a count */
4026 if (space_args.space_slots == 0) {
4027 space_args.total_spaces = slot_count;
4028 goto out;
4029 }
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004030
Dan Rosenberg51788b12011-02-14 16:04:23 -05004031 slot_count = min_t(u64, space_args.space_slots, slot_count);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004032
Chris Mason7fde62b2010-03-16 15:40:10 -04004033 alloc_size = sizeof(*dest) * slot_count;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004034
Chris Mason7fde62b2010-03-16 15:40:10 -04004035 /* we generally have at most 6 or so space infos, one for each raid
4036 * level. So, a whole page should be more than enough for everyone
4037 */
4038 if (alloc_size > PAGE_CACHE_SIZE)
4039 return -ENOMEM;
4040
4041 space_args.total_spaces = 0;
4042 dest = kmalloc(alloc_size, GFP_NOFS);
4043 if (!dest)
4044 return -ENOMEM;
4045 dest_orig = dest;
4046
4047 /* now we have a buffer to copy into */
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004048 for (i = 0; i < num_types; i++) {
4049 struct btrfs_space_info *tmp;
Chris Mason7fde62b2010-03-16 15:40:10 -04004050
Dan Rosenberg51788b12011-02-14 16:04:23 -05004051 if (!slot_count)
4052 break;
4053
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004054 info = NULL;
4055 rcu_read_lock();
4056 list_for_each_entry_rcu(tmp, &root->fs_info->space_info,
4057 list) {
4058 if (tmp->flags == types[i]) {
4059 info = tmp;
4060 break;
4061 }
4062 }
4063 rcu_read_unlock();
Chris Mason7fde62b2010-03-16 15:40:10 -04004064
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004065 if (!info)
4066 continue;
4067 down_read(&info->groups_sem);
4068 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
4069 if (!list_empty(&info->block_groups[c])) {
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02004070 btrfs_get_block_group_info(
4071 &info->block_groups[c], &space);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004072 memcpy(dest, &space, sizeof(space));
4073 dest++;
4074 space_args.total_spaces++;
Dan Rosenberg51788b12011-02-14 16:04:23 -05004075 slot_count--;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004076 }
Dan Rosenberg51788b12011-02-14 16:04:23 -05004077 if (!slot_count)
4078 break;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004079 }
4080 up_read(&info->groups_sem);
Josef Bacik1406e432010-01-13 18:19:06 +00004081 }
Josef Bacik1406e432010-01-13 18:19:06 +00004082
David Sterba36523e952014-02-07 14:34:12 +01004083 /*
4084 * Add global block reserve
4085 */
4086 if (slot_count) {
4087 struct btrfs_block_rsv *block_rsv = &root->fs_info->global_block_rsv;
4088
4089 spin_lock(&block_rsv->lock);
4090 space.total_bytes = block_rsv->size;
4091 space.used_bytes = block_rsv->size - block_rsv->reserved;
4092 spin_unlock(&block_rsv->lock);
4093 space.flags = BTRFS_SPACE_INFO_GLOBAL_RSV;
4094 memcpy(dest, &space, sizeof(space));
4095 space_args.total_spaces++;
4096 }
4097
Daniel J Blueman2eec6c82012-04-26 00:37:14 +08004098 user_dest = (struct btrfs_ioctl_space_info __user *)
Chris Mason7fde62b2010-03-16 15:40:10 -04004099 (arg + sizeof(struct btrfs_ioctl_space_args));
4100
4101 if (copy_to_user(user_dest, dest_orig, alloc_size))
4102 ret = -EFAULT;
4103
4104 kfree(dest_orig);
4105out:
4106 if (ret == 0 && copy_to_user(arg, &space_args, sizeof(space_args)))
Josef Bacik1406e432010-01-13 18:19:06 +00004107 ret = -EFAULT;
4108
4109 return ret;
4110}
4111
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004112/*
4113 * there are many ways the trans_start and trans_end ioctls can lead
4114 * to deadlocks. They should only be used by applications that
4115 * basically own the machine, and have a very in depth understanding
4116 * of all the possible deadlocks and enospc problems.
4117 */
4118long btrfs_ioctl_trans_end(struct file *file)
4119{
Al Viro496ad9a2013-01-23 17:07:38 -05004120 struct inode *inode = file_inode(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004121 struct btrfs_root *root = BTRFS_I(inode)->root;
4122 struct btrfs_trans_handle *trans;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004123
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004124 trans = file->private_data;
Sage Weil1ab86ae2009-09-29 18:38:44 -04004125 if (!trans)
4126 return -EINVAL;
Christoph Hellwigb2141072008-09-05 16:43:31 -04004127 file->private_data = NULL;
Sage Weil9ca9ee02008-08-04 10:41:27 -04004128
Sage Weil1ab86ae2009-09-29 18:38:44 -04004129 btrfs_end_transaction(trans, root);
4130
Josef Bacika4abeea2011-04-11 17:25:13 -04004131 atomic_dec(&root->fs_info->open_ioctl_trans);
Sage Weil9ca9ee02008-08-04 10:41:27 -04004132
Al Viro2a79f172011-12-09 08:06:57 -05004133 mnt_drop_write_file(file);
Sage Weil1ab86ae2009-09-29 18:38:44 -04004134 return 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004135}
4136
Miao Xie9a8c28b2012-11-26 08:40:43 +00004137static noinline long btrfs_ioctl_start_sync(struct btrfs_root *root,
4138 void __user *argp)
Sage Weil46204592010-10-29 15:41:32 -04004139{
Sage Weil46204592010-10-29 15:41:32 -04004140 struct btrfs_trans_handle *trans;
4141 u64 transid;
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004142 int ret;
Sage Weil46204592010-10-29 15:41:32 -04004143
Miao Xied4edf392013-02-20 09:17:06 +00004144 trans = btrfs_attach_transaction_barrier(root);
Miao Xieff7c1d32012-11-26 08:41:29 +00004145 if (IS_ERR(trans)) {
4146 if (PTR_ERR(trans) != -ENOENT)
4147 return PTR_ERR(trans);
4148
4149 /* No running transaction, don't bother */
4150 transid = root->fs_info->last_trans_committed;
4151 goto out;
4152 }
Sage Weil46204592010-10-29 15:41:32 -04004153 transid = trans->transid;
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004154 ret = btrfs_commit_transaction_async(trans, root, 0);
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00004155 if (ret) {
4156 btrfs_end_transaction(trans, root);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004157 return ret;
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00004158 }
Miao Xieff7c1d32012-11-26 08:41:29 +00004159out:
Sage Weil46204592010-10-29 15:41:32 -04004160 if (argp)
4161 if (copy_to_user(argp, &transid, sizeof(transid)))
4162 return -EFAULT;
4163 return 0;
4164}
4165
Miao Xie9a8c28b2012-11-26 08:40:43 +00004166static noinline long btrfs_ioctl_wait_sync(struct btrfs_root *root,
4167 void __user *argp)
Sage Weil46204592010-10-29 15:41:32 -04004168{
Sage Weil46204592010-10-29 15:41:32 -04004169 u64 transid;
4170
4171 if (argp) {
4172 if (copy_from_user(&transid, argp, sizeof(transid)))
4173 return -EFAULT;
4174 } else {
4175 transid = 0; /* current trans */
4176 }
4177 return btrfs_wait_for_commit(root, transid);
4178}
4179
Miao Xieb8e95482012-11-26 08:48:01 +00004180static long btrfs_ioctl_scrub(struct file *file, void __user *arg)
Jan Schmidt475f6382011-03-11 15:41:01 +01004181{
Al Viro496ad9a2013-01-23 17:07:38 -05004182 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Jan Schmidt475f6382011-03-11 15:41:01 +01004183 struct btrfs_ioctl_scrub_args *sa;
Miao Xieb8e95482012-11-26 08:48:01 +00004184 int ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01004185
4186 if (!capable(CAP_SYS_ADMIN))
4187 return -EPERM;
4188
4189 sa = memdup_user(arg, sizeof(*sa));
4190 if (IS_ERR(sa))
4191 return PTR_ERR(sa);
4192
Miao Xieb8e95482012-11-26 08:48:01 +00004193 if (!(sa->flags & BTRFS_SCRUB_READONLY)) {
4194 ret = mnt_want_write_file(file);
4195 if (ret)
4196 goto out;
4197 }
4198
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01004199 ret = btrfs_scrub_dev(root->fs_info, sa->devid, sa->start, sa->end,
Stefan Behrens63a212a2012-11-05 18:29:28 +01004200 &sa->progress, sa->flags & BTRFS_SCRUB_READONLY,
4201 0);
Jan Schmidt475f6382011-03-11 15:41:01 +01004202
4203 if (copy_to_user(arg, sa, sizeof(*sa)))
4204 ret = -EFAULT;
4205
Miao Xieb8e95482012-11-26 08:48:01 +00004206 if (!(sa->flags & BTRFS_SCRUB_READONLY))
4207 mnt_drop_write_file(file);
4208out:
Jan Schmidt475f6382011-03-11 15:41:01 +01004209 kfree(sa);
4210 return ret;
4211}
4212
4213static long btrfs_ioctl_scrub_cancel(struct btrfs_root *root, void __user *arg)
4214{
4215 if (!capable(CAP_SYS_ADMIN))
4216 return -EPERM;
4217
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01004218 return btrfs_scrub_cancel(root->fs_info);
Jan Schmidt475f6382011-03-11 15:41:01 +01004219}
4220
4221static long btrfs_ioctl_scrub_progress(struct btrfs_root *root,
4222 void __user *arg)
4223{
4224 struct btrfs_ioctl_scrub_args *sa;
4225 int ret;
4226
4227 if (!capable(CAP_SYS_ADMIN))
4228 return -EPERM;
4229
4230 sa = memdup_user(arg, sizeof(*sa));
4231 if (IS_ERR(sa))
4232 return PTR_ERR(sa);
4233
4234 ret = btrfs_scrub_progress(root, sa->devid, &sa->progress);
4235
4236 if (copy_to_user(arg, sa, sizeof(*sa)))
4237 ret = -EFAULT;
4238
4239 kfree(sa);
4240 return ret;
4241}
4242
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004243static long btrfs_ioctl_get_dev_stats(struct btrfs_root *root,
David Sterbab27f7c02012-06-22 06:30:39 -06004244 void __user *arg)
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004245{
4246 struct btrfs_ioctl_get_dev_stats *sa;
4247 int ret;
4248
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004249 sa = memdup_user(arg, sizeof(*sa));
4250 if (IS_ERR(sa))
4251 return PTR_ERR(sa);
4252
David Sterbab27f7c02012-06-22 06:30:39 -06004253 if ((sa->flags & BTRFS_DEV_STATS_RESET) && !capable(CAP_SYS_ADMIN)) {
4254 kfree(sa);
4255 return -EPERM;
4256 }
4257
4258 ret = btrfs_get_dev_stats(root, sa);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004259
4260 if (copy_to_user(arg, sa, sizeof(*sa)))
4261 ret = -EFAULT;
4262
4263 kfree(sa);
4264 return ret;
4265}
4266
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004267static long btrfs_ioctl_dev_replace(struct btrfs_root *root, void __user *arg)
4268{
4269 struct btrfs_ioctl_dev_replace_args *p;
4270 int ret;
4271
4272 if (!capable(CAP_SYS_ADMIN))
4273 return -EPERM;
4274
4275 p = memdup_user(arg, sizeof(*p));
4276 if (IS_ERR(p))
4277 return PTR_ERR(p);
4278
4279 switch (p->cmd) {
4280 case BTRFS_IOCTL_DEV_REPLACE_CMD_START:
Ilya Dryomovadfa97c2013-10-10 20:39:28 +03004281 if (root->fs_info->sb->s_flags & MS_RDONLY) {
4282 ret = -EROFS;
4283 goto out;
4284 }
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004285 if (atomic_xchg(
4286 &root->fs_info->mutually_exclusive_operation_running,
4287 1)) {
Anand Jaine57138b2013-08-21 11:44:48 +08004288 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004289 } else {
4290 ret = btrfs_dev_replace_start(root, p);
4291 atomic_set(
4292 &root->fs_info->mutually_exclusive_operation_running,
4293 0);
4294 }
4295 break;
4296 case BTRFS_IOCTL_DEV_REPLACE_CMD_STATUS:
4297 btrfs_dev_replace_status(root->fs_info, p);
4298 ret = 0;
4299 break;
4300 case BTRFS_IOCTL_DEV_REPLACE_CMD_CANCEL:
4301 ret = btrfs_dev_replace_cancel(root->fs_info, p);
4302 break;
4303 default:
4304 ret = -EINVAL;
4305 break;
4306 }
4307
4308 if (copy_to_user(arg, p, sizeof(*p)))
4309 ret = -EFAULT;
Ilya Dryomovadfa97c2013-10-10 20:39:28 +03004310out:
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004311 kfree(p);
4312 return ret;
4313}
4314
Jan Schmidtd7728c92011-07-07 16:48:38 +02004315static long btrfs_ioctl_ino_to_path(struct btrfs_root *root, void __user *arg)
4316{
4317 int ret = 0;
4318 int i;
Chris Mason740c3d22011-11-02 15:48:34 -04004319 u64 rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004320 int size;
Chris Mason806468f2011-11-06 03:07:10 -05004321 struct btrfs_ioctl_ino_path_args *ipa = NULL;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004322 struct inode_fs_paths *ipath = NULL;
4323 struct btrfs_path *path;
4324
Kusanagi Kouichi82b22ac2013-01-28 11:33:31 +00004325 if (!capable(CAP_DAC_READ_SEARCH))
Jan Schmidtd7728c92011-07-07 16:48:38 +02004326 return -EPERM;
4327
4328 path = btrfs_alloc_path();
4329 if (!path) {
4330 ret = -ENOMEM;
4331 goto out;
4332 }
4333
4334 ipa = memdup_user(arg, sizeof(*ipa));
4335 if (IS_ERR(ipa)) {
4336 ret = PTR_ERR(ipa);
4337 ipa = NULL;
4338 goto out;
4339 }
4340
4341 size = min_t(u32, ipa->size, 4096);
4342 ipath = init_ipath(size, root, path);
4343 if (IS_ERR(ipath)) {
4344 ret = PTR_ERR(ipath);
4345 ipath = NULL;
4346 goto out;
4347 }
4348
4349 ret = paths_from_inode(ipa->inum, ipath);
4350 if (ret < 0)
4351 goto out;
4352
4353 for (i = 0; i < ipath->fspath->elem_cnt; ++i) {
Jeff Mahoney745c4d82011-11-20 07:31:57 -05004354 rel_ptr = ipath->fspath->val[i] -
4355 (u64)(unsigned long)ipath->fspath->val;
Chris Mason740c3d22011-11-02 15:48:34 -04004356 ipath->fspath->val[i] = rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004357 }
4358
Jeff Mahoney745c4d82011-11-20 07:31:57 -05004359 ret = copy_to_user((void *)(unsigned long)ipa->fspath,
4360 (void *)(unsigned long)ipath->fspath, size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004361 if (ret) {
4362 ret = -EFAULT;
4363 goto out;
4364 }
4365
4366out:
4367 btrfs_free_path(path);
4368 free_ipath(ipath);
4369 kfree(ipa);
4370
4371 return ret;
4372}
4373
4374static int build_ino_list(u64 inum, u64 offset, u64 root, void *ctx)
4375{
4376 struct btrfs_data_container *inodes = ctx;
4377 const size_t c = 3 * sizeof(u64);
4378
4379 if (inodes->bytes_left >= c) {
4380 inodes->bytes_left -= c;
4381 inodes->val[inodes->elem_cnt] = inum;
4382 inodes->val[inodes->elem_cnt + 1] = offset;
4383 inodes->val[inodes->elem_cnt + 2] = root;
4384 inodes->elem_cnt += 3;
4385 } else {
4386 inodes->bytes_missing += c - inodes->bytes_left;
4387 inodes->bytes_left = 0;
4388 inodes->elem_missed += 3;
4389 }
4390
4391 return 0;
4392}
4393
4394static long btrfs_ioctl_logical_to_ino(struct btrfs_root *root,
4395 void __user *arg)
4396{
4397 int ret = 0;
4398 int size;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004399 struct btrfs_ioctl_logical_ino_args *loi;
4400 struct btrfs_data_container *inodes = NULL;
4401 struct btrfs_path *path = NULL;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004402
4403 if (!capable(CAP_SYS_ADMIN))
4404 return -EPERM;
4405
4406 loi = memdup_user(arg, sizeof(*loi));
4407 if (IS_ERR(loi)) {
4408 ret = PTR_ERR(loi);
4409 loi = NULL;
4410 goto out;
4411 }
4412
4413 path = btrfs_alloc_path();
4414 if (!path) {
4415 ret = -ENOMEM;
4416 goto out;
4417 }
4418
Liu Bo425d17a2012-09-07 20:01:30 -06004419 size = min_t(u32, loi->size, 64 * 1024);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004420 inodes = init_data_container(size);
4421 if (IS_ERR(inodes)) {
4422 ret = PTR_ERR(inodes);
4423 inodes = NULL;
4424 goto out;
4425 }
4426
Liu Bodf031f02012-09-07 20:01:29 -06004427 ret = iterate_inodes_from_logical(loi->logical, root->fs_info, path,
4428 build_ino_list, inodes);
4429 if (ret == -EINVAL)
Jan Schmidtd7728c92011-07-07 16:48:38 +02004430 ret = -ENOENT;
4431 if (ret < 0)
4432 goto out;
4433
Jeff Mahoney745c4d82011-11-20 07:31:57 -05004434 ret = copy_to_user((void *)(unsigned long)loi->inodes,
4435 (void *)(unsigned long)inodes, size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004436 if (ret)
4437 ret = -EFAULT;
4438
4439out:
4440 btrfs_free_path(path);
Liu Bo425d17a2012-09-07 20:01:30 -06004441 vfree(inodes);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004442 kfree(loi);
4443
4444 return ret;
4445}
4446
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004447void update_ioctl_balance_args(struct btrfs_fs_info *fs_info, int lock,
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004448 struct btrfs_ioctl_balance_args *bargs)
4449{
4450 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
4451
4452 bargs->flags = bctl->flags;
4453
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004454 if (atomic_read(&fs_info->balance_running))
4455 bargs->state |= BTRFS_BALANCE_STATE_RUNNING;
4456 if (atomic_read(&fs_info->balance_pause_req))
4457 bargs->state |= BTRFS_BALANCE_STATE_PAUSE_REQ;
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004458 if (atomic_read(&fs_info->balance_cancel_req))
4459 bargs->state |= BTRFS_BALANCE_STATE_CANCEL_REQ;
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004460
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004461 memcpy(&bargs->data, &bctl->data, sizeof(bargs->data));
4462 memcpy(&bargs->meta, &bctl->meta, sizeof(bargs->meta));
4463 memcpy(&bargs->sys, &bctl->sys, sizeof(bargs->sys));
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004464
4465 if (lock) {
4466 spin_lock(&fs_info->balance_lock);
4467 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
4468 spin_unlock(&fs_info->balance_lock);
4469 } else {
4470 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
4471 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004472}
4473
Liu Bo9ba1f6e2012-05-11 18:11:26 +08004474static long btrfs_ioctl_balance(struct file *file, void __user *arg)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004475{
Al Viro496ad9a2013-01-23 17:07:38 -05004476 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004477 struct btrfs_fs_info *fs_info = root->fs_info;
4478 struct btrfs_ioctl_balance_args *bargs;
4479 struct btrfs_balance_control *bctl;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004480 bool need_unlock; /* for mut. excl. ops lock */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004481 int ret;
4482
4483 if (!capable(CAP_SYS_ADMIN))
4484 return -EPERM;
4485
Liu Boe54bfa32012-06-29 03:58:48 -06004486 ret = mnt_want_write_file(file);
Liu Bo9ba1f6e2012-05-11 18:11:26 +08004487 if (ret)
4488 return ret;
4489
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004490again:
4491 if (!atomic_xchg(&fs_info->mutually_exclusive_operation_running, 1)) {
4492 mutex_lock(&fs_info->volume_mutex);
4493 mutex_lock(&fs_info->balance_mutex);
4494 need_unlock = true;
4495 goto locked;
4496 }
4497
4498 /*
4499 * mut. excl. ops lock is locked. Three possibilites:
4500 * (1) some other op is running
4501 * (2) balance is running
4502 * (3) balance is paused -- special case (think resume)
4503 */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004504 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004505 if (fs_info->balance_ctl) {
4506 /* this is either (2) or (3) */
4507 if (!atomic_read(&fs_info->balance_running)) {
4508 mutex_unlock(&fs_info->balance_mutex);
4509 if (!mutex_trylock(&fs_info->volume_mutex))
4510 goto again;
4511 mutex_lock(&fs_info->balance_mutex);
4512
4513 if (fs_info->balance_ctl &&
4514 !atomic_read(&fs_info->balance_running)) {
4515 /* this is (3) */
4516 need_unlock = false;
4517 goto locked;
4518 }
4519
4520 mutex_unlock(&fs_info->balance_mutex);
4521 mutex_unlock(&fs_info->volume_mutex);
4522 goto again;
4523 } else {
4524 /* this is (2) */
4525 mutex_unlock(&fs_info->balance_mutex);
4526 ret = -EINPROGRESS;
4527 goto out;
4528 }
4529 } else {
4530 /* this is (1) */
4531 mutex_unlock(&fs_info->balance_mutex);
Anand Jaine57138b2013-08-21 11:44:48 +08004532 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004533 goto out;
4534 }
4535
4536locked:
4537 BUG_ON(!atomic_read(&fs_info->mutually_exclusive_operation_running));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004538
4539 if (arg) {
4540 bargs = memdup_user(arg, sizeof(*bargs));
4541 if (IS_ERR(bargs)) {
4542 ret = PTR_ERR(bargs);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004543 goto out_unlock;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004544 }
Ilya Dryomovde322262012-01-16 22:04:49 +02004545
4546 if (bargs->flags & BTRFS_BALANCE_RESUME) {
4547 if (!fs_info->balance_ctl) {
4548 ret = -ENOTCONN;
4549 goto out_bargs;
4550 }
4551
4552 bctl = fs_info->balance_ctl;
4553 spin_lock(&fs_info->balance_lock);
4554 bctl->flags |= BTRFS_BALANCE_RESUME;
4555 spin_unlock(&fs_info->balance_lock);
4556
4557 goto do_balance;
4558 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004559 } else {
4560 bargs = NULL;
4561 }
4562
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004563 if (fs_info->balance_ctl) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004564 ret = -EINPROGRESS;
4565 goto out_bargs;
4566 }
4567
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004568 bctl = kzalloc(sizeof(*bctl), GFP_NOFS);
4569 if (!bctl) {
4570 ret = -ENOMEM;
4571 goto out_bargs;
4572 }
4573
4574 bctl->fs_info = fs_info;
4575 if (arg) {
4576 memcpy(&bctl->data, &bargs->data, sizeof(bctl->data));
4577 memcpy(&bctl->meta, &bargs->meta, sizeof(bctl->meta));
4578 memcpy(&bctl->sys, &bargs->sys, sizeof(bctl->sys));
4579
4580 bctl->flags = bargs->flags;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02004581 } else {
4582 /* balance everything - no filters */
4583 bctl->flags |= BTRFS_BALANCE_TYPE_MASK;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004584 }
4585
Ilya Dryomovde322262012-01-16 22:04:49 +02004586do_balance:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004587 /*
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004588 * Ownership of bctl and mutually_exclusive_operation_running
4589 * goes to to btrfs_balance. bctl is freed in __cancel_balance,
4590 * or, if restriper was paused all the way until unmount, in
4591 * free_fs_info. mutually_exclusive_operation_running is
4592 * cleared in __cancel_balance.
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004593 */
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004594 need_unlock = false;
4595
4596 ret = btrfs_balance(bctl, bargs);
4597
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004598 if (arg) {
4599 if (copy_to_user(arg, bargs, sizeof(*bargs)))
4600 ret = -EFAULT;
4601 }
4602
4603out_bargs:
4604 kfree(bargs);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004605out_unlock:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004606 mutex_unlock(&fs_info->balance_mutex);
4607 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004608 if (need_unlock)
4609 atomic_set(&fs_info->mutually_exclusive_operation_running, 0);
4610out:
Liu Boe54bfa32012-06-29 03:58:48 -06004611 mnt_drop_write_file(file);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004612 return ret;
4613}
4614
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004615static long btrfs_ioctl_balance_ctl(struct btrfs_root *root, int cmd)
4616{
4617 if (!capable(CAP_SYS_ADMIN))
4618 return -EPERM;
4619
4620 switch (cmd) {
4621 case BTRFS_BALANCE_CTL_PAUSE:
4622 return btrfs_pause_balance(root->fs_info);
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004623 case BTRFS_BALANCE_CTL_CANCEL:
4624 return btrfs_cancel_balance(root->fs_info);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004625 }
4626
4627 return -EINVAL;
4628}
4629
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004630static long btrfs_ioctl_balance_progress(struct btrfs_root *root,
4631 void __user *arg)
4632{
4633 struct btrfs_fs_info *fs_info = root->fs_info;
4634 struct btrfs_ioctl_balance_args *bargs;
4635 int ret = 0;
4636
4637 if (!capable(CAP_SYS_ADMIN))
4638 return -EPERM;
4639
4640 mutex_lock(&fs_info->balance_mutex);
4641 if (!fs_info->balance_ctl) {
4642 ret = -ENOTCONN;
4643 goto out;
4644 }
4645
4646 bargs = kzalloc(sizeof(*bargs), GFP_NOFS);
4647 if (!bargs) {
4648 ret = -ENOMEM;
4649 goto out;
4650 }
4651
4652 update_ioctl_balance_args(fs_info, 1, bargs);
4653
4654 if (copy_to_user(arg, bargs, sizeof(*bargs)))
4655 ret = -EFAULT;
4656
4657 kfree(bargs);
4658out:
4659 mutex_unlock(&fs_info->balance_mutex);
4660 return ret;
4661}
4662
Miao Xie905b0dd2012-11-26 08:50:11 +00004663static long btrfs_ioctl_quota_ctl(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004664{
Al Viro496ad9a2013-01-23 17:07:38 -05004665 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004666 struct btrfs_ioctl_quota_ctl_args *sa;
4667 struct btrfs_trans_handle *trans = NULL;
4668 int ret;
4669 int err;
4670
4671 if (!capable(CAP_SYS_ADMIN))
4672 return -EPERM;
4673
Miao Xie905b0dd2012-11-26 08:50:11 +00004674 ret = mnt_want_write_file(file);
4675 if (ret)
4676 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004677
4678 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004679 if (IS_ERR(sa)) {
4680 ret = PTR_ERR(sa);
4681 goto drop_write;
4682 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004683
Wang Shilong7708f022013-04-07 10:24:57 +00004684 down_write(&root->fs_info->subvol_sem);
Jan Schmidt2f232032013-04-25 16:04:51 +00004685 trans = btrfs_start_transaction(root->fs_info->tree_root, 2);
4686 if (IS_ERR(trans)) {
4687 ret = PTR_ERR(trans);
4688 goto out;
Arne Jansen5d13a372011-09-14 15:53:51 +02004689 }
4690
4691 switch (sa->cmd) {
4692 case BTRFS_QUOTA_CTL_ENABLE:
4693 ret = btrfs_quota_enable(trans, root->fs_info);
4694 break;
4695 case BTRFS_QUOTA_CTL_DISABLE:
4696 ret = btrfs_quota_disable(trans, root->fs_info);
4697 break;
Arne Jansen5d13a372011-09-14 15:53:51 +02004698 default:
4699 ret = -EINVAL;
4700 break;
4701 }
4702
Jan Schmidt2f232032013-04-25 16:04:51 +00004703 err = btrfs_commit_transaction(trans, root->fs_info->tree_root);
4704 if (err && !ret)
4705 ret = err;
Arne Jansen5d13a372011-09-14 15:53:51 +02004706out:
4707 kfree(sa);
Wang Shilong7708f022013-04-07 10:24:57 +00004708 up_write(&root->fs_info->subvol_sem);
Miao Xie905b0dd2012-11-26 08:50:11 +00004709drop_write:
4710 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004711 return ret;
4712}
4713
Miao Xie905b0dd2012-11-26 08:50:11 +00004714static long btrfs_ioctl_qgroup_assign(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004715{
Al Viro496ad9a2013-01-23 17:07:38 -05004716 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004717 struct btrfs_ioctl_qgroup_assign_args *sa;
4718 struct btrfs_trans_handle *trans;
4719 int ret;
4720 int err;
4721
4722 if (!capable(CAP_SYS_ADMIN))
4723 return -EPERM;
4724
Miao Xie905b0dd2012-11-26 08:50:11 +00004725 ret = mnt_want_write_file(file);
4726 if (ret)
4727 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004728
4729 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004730 if (IS_ERR(sa)) {
4731 ret = PTR_ERR(sa);
4732 goto drop_write;
4733 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004734
4735 trans = btrfs_join_transaction(root);
4736 if (IS_ERR(trans)) {
4737 ret = PTR_ERR(trans);
4738 goto out;
4739 }
4740
4741 /* FIXME: check if the IDs really exist */
4742 if (sa->assign) {
4743 ret = btrfs_add_qgroup_relation(trans, root->fs_info,
4744 sa->src, sa->dst);
4745 } else {
4746 ret = btrfs_del_qgroup_relation(trans, root->fs_info,
4747 sa->src, sa->dst);
4748 }
4749
Qu Wenruoe082f562015-02-27 16:24:28 +08004750 /* update qgroup status and info */
4751 err = btrfs_run_qgroups(trans, root->fs_info);
4752 if (err < 0)
4753 btrfs_error(root->fs_info, ret,
4754 "failed to update qgroup status and info\n");
Arne Jansen5d13a372011-09-14 15:53:51 +02004755 err = btrfs_end_transaction(trans, root);
4756 if (err && !ret)
4757 ret = err;
4758
4759out:
4760 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004761drop_write:
4762 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004763 return ret;
4764}
4765
Miao Xie905b0dd2012-11-26 08:50:11 +00004766static long btrfs_ioctl_qgroup_create(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004767{
Al Viro496ad9a2013-01-23 17:07:38 -05004768 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004769 struct btrfs_ioctl_qgroup_create_args *sa;
4770 struct btrfs_trans_handle *trans;
4771 int ret;
4772 int err;
4773
4774 if (!capable(CAP_SYS_ADMIN))
4775 return -EPERM;
4776
Miao Xie905b0dd2012-11-26 08:50:11 +00004777 ret = mnt_want_write_file(file);
4778 if (ret)
4779 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004780
4781 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004782 if (IS_ERR(sa)) {
4783 ret = PTR_ERR(sa);
4784 goto drop_write;
4785 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004786
Miao Xied86e56c2012-11-15 11:35:41 +00004787 if (!sa->qgroupid) {
4788 ret = -EINVAL;
4789 goto out;
4790 }
4791
Arne Jansen5d13a372011-09-14 15:53:51 +02004792 trans = btrfs_join_transaction(root);
4793 if (IS_ERR(trans)) {
4794 ret = PTR_ERR(trans);
4795 goto out;
4796 }
4797
4798 /* FIXME: check if the IDs really exist */
4799 if (sa->create) {
Dongsheng Yang4087cf22015-01-18 10:59:23 -05004800 ret = btrfs_create_qgroup(trans, root->fs_info, sa->qgroupid);
Arne Jansen5d13a372011-09-14 15:53:51 +02004801 } else {
4802 ret = btrfs_remove_qgroup(trans, root->fs_info, sa->qgroupid);
4803 }
4804
4805 err = btrfs_end_transaction(trans, root);
4806 if (err && !ret)
4807 ret = err;
4808
4809out:
4810 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004811drop_write:
4812 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004813 return ret;
4814}
4815
Miao Xie905b0dd2012-11-26 08:50:11 +00004816static long btrfs_ioctl_qgroup_limit(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004817{
Al Viro496ad9a2013-01-23 17:07:38 -05004818 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004819 struct btrfs_ioctl_qgroup_limit_args *sa;
4820 struct btrfs_trans_handle *trans;
4821 int ret;
4822 int err;
4823 u64 qgroupid;
4824
4825 if (!capable(CAP_SYS_ADMIN))
4826 return -EPERM;
4827
Miao Xie905b0dd2012-11-26 08:50:11 +00004828 ret = mnt_want_write_file(file);
4829 if (ret)
4830 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004831
4832 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004833 if (IS_ERR(sa)) {
4834 ret = PTR_ERR(sa);
4835 goto drop_write;
4836 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004837
4838 trans = btrfs_join_transaction(root);
4839 if (IS_ERR(trans)) {
4840 ret = PTR_ERR(trans);
4841 goto out;
4842 }
4843
4844 qgroupid = sa->qgroupid;
4845 if (!qgroupid) {
4846 /* take the current subvol as qgroup */
4847 qgroupid = root->root_key.objectid;
4848 }
4849
4850 /* FIXME: check if the IDs really exist */
4851 ret = btrfs_limit_qgroup(trans, root->fs_info, qgroupid, &sa->lim);
4852
4853 err = btrfs_end_transaction(trans, root);
4854 if (err && !ret)
4855 ret = err;
4856
4857out:
4858 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004859drop_write:
4860 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004861 return ret;
4862}
4863
Jan Schmidt2f232032013-04-25 16:04:51 +00004864static long btrfs_ioctl_quota_rescan(struct file *file, void __user *arg)
4865{
Al Viro6d0379e2013-06-16 19:32:35 +04004866 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Jan Schmidt2f232032013-04-25 16:04:51 +00004867 struct btrfs_ioctl_quota_rescan_args *qsa;
4868 int ret;
4869
4870 if (!capable(CAP_SYS_ADMIN))
4871 return -EPERM;
4872
4873 ret = mnt_want_write_file(file);
4874 if (ret)
4875 return ret;
4876
4877 qsa = memdup_user(arg, sizeof(*qsa));
4878 if (IS_ERR(qsa)) {
4879 ret = PTR_ERR(qsa);
4880 goto drop_write;
4881 }
4882
4883 if (qsa->flags) {
4884 ret = -EINVAL;
4885 goto out;
4886 }
4887
4888 ret = btrfs_qgroup_rescan(root->fs_info);
4889
4890out:
4891 kfree(qsa);
4892drop_write:
4893 mnt_drop_write_file(file);
4894 return ret;
4895}
4896
4897static long btrfs_ioctl_quota_rescan_status(struct file *file, void __user *arg)
4898{
Al Viro6d0379e2013-06-16 19:32:35 +04004899 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Jan Schmidt2f232032013-04-25 16:04:51 +00004900 struct btrfs_ioctl_quota_rescan_args *qsa;
4901 int ret = 0;
4902
4903 if (!capable(CAP_SYS_ADMIN))
4904 return -EPERM;
4905
4906 qsa = kzalloc(sizeof(*qsa), GFP_NOFS);
4907 if (!qsa)
4908 return -ENOMEM;
4909
4910 if (root->fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_RESCAN) {
4911 qsa->flags = 1;
4912 qsa->progress = root->fs_info->qgroup_rescan_progress.objectid;
4913 }
4914
4915 if (copy_to_user(arg, qsa, sizeof(*qsa)))
4916 ret = -EFAULT;
4917
4918 kfree(qsa);
4919 return ret;
4920}
4921
Jan Schmidt57254b6e2013-05-06 19:14:17 +00004922static long btrfs_ioctl_quota_rescan_wait(struct file *file, void __user *arg)
4923{
Al Viro54563d42013-09-01 15:57:51 -04004924 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Jan Schmidt57254b6e2013-05-06 19:14:17 +00004925
4926 if (!capable(CAP_SYS_ADMIN))
4927 return -EPERM;
4928
4929 return btrfs_qgroup_wait_for_completion(root->fs_info);
4930}
4931
Hugo Millsabccd002014-01-30 20:17:00 +00004932static long _btrfs_ioctl_set_received_subvol(struct file *file,
4933 struct btrfs_ioctl_received_subvol_args *sa)
Alexander Block8ea05e32012-07-25 17:35:53 +02004934{
Al Viro496ad9a2013-01-23 17:07:38 -05004935 struct inode *inode = file_inode(file);
Alexander Block8ea05e32012-07-25 17:35:53 +02004936 struct btrfs_root *root = BTRFS_I(inode)->root;
4937 struct btrfs_root_item *root_item = &root->root_item;
4938 struct btrfs_trans_handle *trans;
4939 struct timespec ct = CURRENT_TIME;
4940 int ret = 0;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004941 int received_uuid_changed;
Alexander Block8ea05e32012-07-25 17:35:53 +02004942
David Sterbabd60ea02014-01-16 15:50:22 +01004943 if (!inode_owner_or_capable(inode))
4944 return -EPERM;
4945
Alexander Block8ea05e32012-07-25 17:35:53 +02004946 ret = mnt_want_write_file(file);
4947 if (ret < 0)
4948 return ret;
4949
4950 down_write(&root->fs_info->subvol_sem);
4951
4952 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
4953 ret = -EINVAL;
4954 goto out;
4955 }
4956
4957 if (btrfs_root_readonly(root)) {
4958 ret = -EROFS;
4959 goto out;
4960 }
4961
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004962 /*
4963 * 1 - root item
4964 * 2 - uuid items (received uuid + subvol uuid)
4965 */
4966 trans = btrfs_start_transaction(root, 3);
Alexander Block8ea05e32012-07-25 17:35:53 +02004967 if (IS_ERR(trans)) {
4968 ret = PTR_ERR(trans);
4969 trans = NULL;
4970 goto out;
4971 }
4972
4973 sa->rtransid = trans->transid;
4974 sa->rtime.sec = ct.tv_sec;
4975 sa->rtime.nsec = ct.tv_nsec;
4976
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004977 received_uuid_changed = memcmp(root_item->received_uuid, sa->uuid,
4978 BTRFS_UUID_SIZE);
4979 if (received_uuid_changed &&
4980 !btrfs_is_empty_uuid(root_item->received_uuid))
4981 btrfs_uuid_tree_rem(trans, root->fs_info->uuid_root,
4982 root_item->received_uuid,
4983 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4984 root->root_key.objectid);
Alexander Block8ea05e32012-07-25 17:35:53 +02004985 memcpy(root_item->received_uuid, sa->uuid, BTRFS_UUID_SIZE);
4986 btrfs_set_root_stransid(root_item, sa->stransid);
4987 btrfs_set_root_rtransid(root_item, sa->rtransid);
Qu Wenruo3cae2102013-07-16 11:19:18 +08004988 btrfs_set_stack_timespec_sec(&root_item->stime, sa->stime.sec);
4989 btrfs_set_stack_timespec_nsec(&root_item->stime, sa->stime.nsec);
4990 btrfs_set_stack_timespec_sec(&root_item->rtime, sa->rtime.sec);
4991 btrfs_set_stack_timespec_nsec(&root_item->rtime, sa->rtime.nsec);
Alexander Block8ea05e32012-07-25 17:35:53 +02004992
4993 ret = btrfs_update_root(trans, root->fs_info->tree_root,
4994 &root->root_key, &root->root_item);
4995 if (ret < 0) {
4996 btrfs_end_transaction(trans, root);
Alexander Block8ea05e32012-07-25 17:35:53 +02004997 goto out;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004998 }
4999 if (received_uuid_changed && !btrfs_is_empty_uuid(sa->uuid)) {
5000 ret = btrfs_uuid_tree_add(trans, root->fs_info->uuid_root,
5001 sa->uuid,
5002 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
5003 root->root_key.objectid);
5004 if (ret < 0 && ret != -EEXIST) {
5005 btrfs_abort_transaction(trans, root, ret);
Alexander Block8ea05e32012-07-25 17:35:53 +02005006 goto out;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005007 }
5008 }
5009 ret = btrfs_commit_transaction(trans, root);
5010 if (ret < 0) {
5011 btrfs_abort_transaction(trans, root, ret);
5012 goto out;
Alexander Block8ea05e32012-07-25 17:35:53 +02005013 }
5014
Hugo Millsabccd002014-01-30 20:17:00 +00005015out:
5016 up_write(&root->fs_info->subvol_sem);
5017 mnt_drop_write_file(file);
5018 return ret;
5019}
5020
5021#ifdef CONFIG_64BIT
5022static long btrfs_ioctl_set_received_subvol_32(struct file *file,
5023 void __user *arg)
5024{
5025 struct btrfs_ioctl_received_subvol_args_32 *args32 = NULL;
5026 struct btrfs_ioctl_received_subvol_args *args64 = NULL;
5027 int ret = 0;
5028
5029 args32 = memdup_user(arg, sizeof(*args32));
5030 if (IS_ERR(args32)) {
5031 ret = PTR_ERR(args32);
5032 args32 = NULL;
5033 goto out;
5034 }
5035
5036 args64 = kmalloc(sizeof(*args64), GFP_NOFS);
Dan Carpenter84dbeb82014-03-28 11:06:00 +03005037 if (!args64) {
5038 ret = -ENOMEM;
Hugo Millsabccd002014-01-30 20:17:00 +00005039 goto out;
5040 }
5041
5042 memcpy(args64->uuid, args32->uuid, BTRFS_UUID_SIZE);
5043 args64->stransid = args32->stransid;
5044 args64->rtransid = args32->rtransid;
5045 args64->stime.sec = args32->stime.sec;
5046 args64->stime.nsec = args32->stime.nsec;
5047 args64->rtime.sec = args32->rtime.sec;
5048 args64->rtime.nsec = args32->rtime.nsec;
5049 args64->flags = args32->flags;
5050
5051 ret = _btrfs_ioctl_set_received_subvol(file, args64);
5052 if (ret)
5053 goto out;
5054
5055 memcpy(args32->uuid, args64->uuid, BTRFS_UUID_SIZE);
5056 args32->stransid = args64->stransid;
5057 args32->rtransid = args64->rtransid;
5058 args32->stime.sec = args64->stime.sec;
5059 args32->stime.nsec = args64->stime.nsec;
5060 args32->rtime.sec = args64->rtime.sec;
5061 args32->rtime.nsec = args64->rtime.nsec;
5062 args32->flags = args64->flags;
5063
5064 ret = copy_to_user(arg, args32, sizeof(*args32));
5065 if (ret)
5066 ret = -EFAULT;
5067
5068out:
5069 kfree(args32);
5070 kfree(args64);
5071 return ret;
5072}
5073#endif
5074
5075static long btrfs_ioctl_set_received_subvol(struct file *file,
5076 void __user *arg)
5077{
5078 struct btrfs_ioctl_received_subvol_args *sa = NULL;
5079 int ret = 0;
5080
5081 sa = memdup_user(arg, sizeof(*sa));
5082 if (IS_ERR(sa)) {
5083 ret = PTR_ERR(sa);
5084 sa = NULL;
5085 goto out;
5086 }
5087
5088 ret = _btrfs_ioctl_set_received_subvol(file, sa);
5089
5090 if (ret)
5091 goto out;
5092
Alexander Block8ea05e32012-07-25 17:35:53 +02005093 ret = copy_to_user(arg, sa, sizeof(*sa));
5094 if (ret)
5095 ret = -EFAULT;
5096
5097out:
5098 kfree(sa);
Alexander Block8ea05e32012-07-25 17:35:53 +02005099 return ret;
5100}
5101
jeff.liu867ab662013-01-05 02:48:01 +00005102static int btrfs_ioctl_get_fslabel(struct file *file, void __user *arg)
5103{
Al Viro6d0379e2013-06-16 19:32:35 +04005104 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Anand Jaina1b83ac2013-07-19 17:39:32 +08005105 size_t len;
jeff.liu867ab662013-01-05 02:48:01 +00005106 int ret;
Anand Jaina1b83ac2013-07-19 17:39:32 +08005107 char label[BTRFS_LABEL_SIZE];
5108
5109 spin_lock(&root->fs_info->super_lock);
5110 memcpy(label, root->fs_info->super_copy->label, BTRFS_LABEL_SIZE);
5111 spin_unlock(&root->fs_info->super_lock);
5112
5113 len = strnlen(label, BTRFS_LABEL_SIZE);
jeff.liu867ab662013-01-05 02:48:01 +00005114
5115 if (len == BTRFS_LABEL_SIZE) {
Frank Holtonefe120a2013-12-20 11:37:06 -05005116 btrfs_warn(root->fs_info,
5117 "label is too long, return the first %zu bytes", --len);
jeff.liu867ab662013-01-05 02:48:01 +00005118 }
5119
jeff.liu867ab662013-01-05 02:48:01 +00005120 ret = copy_to_user(arg, label, len);
jeff.liu867ab662013-01-05 02:48:01 +00005121
5122 return ret ? -EFAULT : 0;
5123}
5124
jeff.liua8bfd4a2013-01-05 02:48:08 +00005125static int btrfs_ioctl_set_fslabel(struct file *file, void __user *arg)
5126{
Al Viro6d0379e2013-06-16 19:32:35 +04005127 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
jeff.liua8bfd4a2013-01-05 02:48:08 +00005128 struct btrfs_super_block *super_block = root->fs_info->super_copy;
5129 struct btrfs_trans_handle *trans;
5130 char label[BTRFS_LABEL_SIZE];
5131 int ret;
5132
5133 if (!capable(CAP_SYS_ADMIN))
5134 return -EPERM;
5135
5136 if (copy_from_user(label, arg, sizeof(label)))
5137 return -EFAULT;
5138
5139 if (strnlen(label, BTRFS_LABEL_SIZE) == BTRFS_LABEL_SIZE) {
Frank Holtonefe120a2013-12-20 11:37:06 -05005140 btrfs_err(root->fs_info, "unable to set label with more than %d bytes",
jeff.liua8bfd4a2013-01-05 02:48:08 +00005141 BTRFS_LABEL_SIZE - 1);
5142 return -EINVAL;
5143 }
5144
5145 ret = mnt_want_write_file(file);
5146 if (ret)
5147 return ret;
5148
jeff.liua8bfd4a2013-01-05 02:48:08 +00005149 trans = btrfs_start_transaction(root, 0);
5150 if (IS_ERR(trans)) {
5151 ret = PTR_ERR(trans);
5152 goto out_unlock;
5153 }
5154
Anand Jaina1b83ac2013-07-19 17:39:32 +08005155 spin_lock(&root->fs_info->super_lock);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005156 strcpy(super_block->label, label);
Anand Jaina1b83ac2013-07-19 17:39:32 +08005157 spin_unlock(&root->fs_info->super_lock);
Jeff Mahoneyd0270ac2014-02-07 14:33:57 +01005158 ret = btrfs_commit_transaction(trans, root);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005159
5160out_unlock:
jeff.liua8bfd4a2013-01-05 02:48:08 +00005161 mnt_drop_write_file(file);
5162 return ret;
5163}
5164
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005165#define INIT_FEATURE_FLAGS(suffix) \
5166 { .compat_flags = BTRFS_FEATURE_COMPAT_##suffix, \
5167 .compat_ro_flags = BTRFS_FEATURE_COMPAT_RO_##suffix, \
5168 .incompat_flags = BTRFS_FEATURE_INCOMPAT_##suffix }
5169
5170static int btrfs_ioctl_get_supported_features(struct file *file,
5171 void __user *arg)
5172{
5173 static struct btrfs_ioctl_feature_flags features[3] = {
5174 INIT_FEATURE_FLAGS(SUPP),
5175 INIT_FEATURE_FLAGS(SAFE_SET),
5176 INIT_FEATURE_FLAGS(SAFE_CLEAR)
5177 };
5178
5179 if (copy_to_user(arg, &features, sizeof(features)))
5180 return -EFAULT;
5181
5182 return 0;
5183}
5184
5185static int btrfs_ioctl_get_features(struct file *file, void __user *arg)
5186{
5187 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
5188 struct btrfs_super_block *super_block = root->fs_info->super_copy;
5189 struct btrfs_ioctl_feature_flags features;
5190
5191 features.compat_flags = btrfs_super_compat_flags(super_block);
5192 features.compat_ro_flags = btrfs_super_compat_ro_flags(super_block);
5193 features.incompat_flags = btrfs_super_incompat_flags(super_block);
5194
5195 if (copy_to_user(arg, &features, sizeof(features)))
5196 return -EFAULT;
5197
5198 return 0;
5199}
5200
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005201static int check_feature_bits(struct btrfs_root *root,
5202 enum btrfs_feature_set set,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005203 u64 change_mask, u64 flags, u64 supported_flags,
5204 u64 safe_set, u64 safe_clear)
5205{
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005206 const char *type = btrfs_feature_set_names[set];
5207 char *names;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005208 u64 disallowed, unsupported;
5209 u64 set_mask = flags & change_mask;
5210 u64 clear_mask = ~flags & change_mask;
5211
5212 unsupported = set_mask & ~supported_flags;
5213 if (unsupported) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005214 names = btrfs_printable_features(set, unsupported);
5215 if (names) {
5216 btrfs_warn(root->fs_info,
5217 "this kernel does not support the %s feature bit%s",
5218 names, strchr(names, ',') ? "s" : "");
5219 kfree(names);
5220 } else
5221 btrfs_warn(root->fs_info,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005222 "this kernel does not support %s bits 0x%llx",
5223 type, unsupported);
5224 return -EOPNOTSUPP;
5225 }
5226
5227 disallowed = set_mask & ~safe_set;
5228 if (disallowed) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005229 names = btrfs_printable_features(set, disallowed);
5230 if (names) {
5231 btrfs_warn(root->fs_info,
5232 "can't set the %s feature bit%s while mounted",
5233 names, strchr(names, ',') ? "s" : "");
5234 kfree(names);
5235 } else
5236 btrfs_warn(root->fs_info,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005237 "can't set %s bits 0x%llx while mounted",
5238 type, disallowed);
5239 return -EPERM;
5240 }
5241
5242 disallowed = clear_mask & ~safe_clear;
5243 if (disallowed) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005244 names = btrfs_printable_features(set, disallowed);
5245 if (names) {
5246 btrfs_warn(root->fs_info,
5247 "can't clear the %s feature bit%s while mounted",
5248 names, strchr(names, ',') ? "s" : "");
5249 kfree(names);
5250 } else
5251 btrfs_warn(root->fs_info,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005252 "can't clear %s bits 0x%llx while mounted",
5253 type, disallowed);
5254 return -EPERM;
5255 }
5256
5257 return 0;
5258}
5259
5260#define check_feature(root, change_mask, flags, mask_base) \
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005261check_feature_bits(root, FEAT_##mask_base, change_mask, flags, \
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005262 BTRFS_FEATURE_ ## mask_base ## _SUPP, \
5263 BTRFS_FEATURE_ ## mask_base ## _SAFE_SET, \
5264 BTRFS_FEATURE_ ## mask_base ## _SAFE_CLEAR)
5265
5266static int btrfs_ioctl_set_features(struct file *file, void __user *arg)
5267{
5268 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
5269 struct btrfs_super_block *super_block = root->fs_info->super_copy;
5270 struct btrfs_ioctl_feature_flags flags[2];
5271 struct btrfs_trans_handle *trans;
5272 u64 newflags;
5273 int ret;
5274
5275 if (!capable(CAP_SYS_ADMIN))
5276 return -EPERM;
5277
5278 if (copy_from_user(flags, arg, sizeof(flags)))
5279 return -EFAULT;
5280
5281 /* Nothing to do */
5282 if (!flags[0].compat_flags && !flags[0].compat_ro_flags &&
5283 !flags[0].incompat_flags)
5284 return 0;
5285
5286 ret = check_feature(root, flags[0].compat_flags,
5287 flags[1].compat_flags, COMPAT);
5288 if (ret)
5289 return ret;
5290
5291 ret = check_feature(root, flags[0].compat_ro_flags,
5292 flags[1].compat_ro_flags, COMPAT_RO);
5293 if (ret)
5294 return ret;
5295
5296 ret = check_feature(root, flags[0].incompat_flags,
5297 flags[1].incompat_flags, INCOMPAT);
5298 if (ret)
5299 return ret;
5300
David Sterba8051aa12014-02-07 14:34:04 +01005301 trans = btrfs_start_transaction(root, 0);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005302 if (IS_ERR(trans))
5303 return PTR_ERR(trans);
5304
5305 spin_lock(&root->fs_info->super_lock);
5306 newflags = btrfs_super_compat_flags(super_block);
5307 newflags |= flags[0].compat_flags & flags[1].compat_flags;
5308 newflags &= ~(flags[0].compat_flags & ~flags[1].compat_flags);
5309 btrfs_set_super_compat_flags(super_block, newflags);
5310
5311 newflags = btrfs_super_compat_ro_flags(super_block);
5312 newflags |= flags[0].compat_ro_flags & flags[1].compat_ro_flags;
5313 newflags &= ~(flags[0].compat_ro_flags & ~flags[1].compat_ro_flags);
5314 btrfs_set_super_compat_ro_flags(super_block, newflags);
5315
5316 newflags = btrfs_super_incompat_flags(super_block);
5317 newflags |= flags[0].incompat_flags & flags[1].incompat_flags;
5318 newflags &= ~(flags[0].incompat_flags & ~flags[1].incompat_flags);
5319 btrfs_set_super_incompat_flags(super_block, newflags);
5320 spin_unlock(&root->fs_info->super_lock);
5321
Jeff Mahoneyd0270ac2014-02-07 14:33:57 +01005322 return btrfs_commit_transaction(trans, root);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005323}
5324
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005325long btrfs_ioctl(struct file *file, unsigned int
5326 cmd, unsigned long arg)
5327{
Al Viro496ad9a2013-01-23 17:07:38 -05005328 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05005329 void __user *argp = (void __user *)arg;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005330
5331 switch (cmd) {
Christoph Hellwig6cbff002009-04-17 10:37:41 +02005332 case FS_IOC_GETFLAGS:
5333 return btrfs_ioctl_getflags(file, argp);
5334 case FS_IOC_SETFLAGS:
5335 return btrfs_ioctl_setflags(file, argp);
5336 case FS_IOC_GETVERSION:
5337 return btrfs_ioctl_getversion(file, argp);
Li Dongyangf7039b12011-03-24 10:24:28 +00005338 case FITRIM:
5339 return btrfs_ioctl_fitrim(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005340 case BTRFS_IOC_SNAP_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005341 return btrfs_ioctl_snap_create(file, argp, 0);
Li Zefanfdfb1e42010-12-10 06:41:56 +00005342 case BTRFS_IOC_SNAP_CREATE_V2:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005343 return btrfs_ioctl_snap_create_v2(file, argp, 0);
Chris Mason3de45862008-11-17 21:02:50 -05005344 case BTRFS_IOC_SUBVOL_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005345 return btrfs_ioctl_snap_create(file, argp, 1);
Arne Jansen6f72c7e2011-09-14 15:58:21 +02005346 case BTRFS_IOC_SUBVOL_CREATE_V2:
5347 return btrfs_ioctl_snap_create_v2(file, argp, 1);
Yan, Zheng76dda932009-09-21 16:00:26 -04005348 case BTRFS_IOC_SNAP_DESTROY:
5349 return btrfs_ioctl_snap_destroy(file, argp);
Li Zefan0caa1022010-12-20 16:30:25 +08005350 case BTRFS_IOC_SUBVOL_GETFLAGS:
5351 return btrfs_ioctl_subvol_getflags(file, argp);
5352 case BTRFS_IOC_SUBVOL_SETFLAGS:
5353 return btrfs_ioctl_subvol_setflags(file, argp);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00005354 case BTRFS_IOC_DEFAULT_SUBVOL:
5355 return btrfs_ioctl_default_subvol(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005356 case BTRFS_IOC_DEFRAG:
Chris Mason1e701a32010-03-11 09:42:04 -05005357 return btrfs_ioctl_defrag(file, NULL);
5358 case BTRFS_IOC_DEFRAG_RANGE:
5359 return btrfs_ioctl_defrag(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005360 case BTRFS_IOC_RESIZE:
Miao Xie198605a2012-11-26 08:43:45 +00005361 return btrfs_ioctl_resize(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005362 case BTRFS_IOC_ADD_DEV:
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05005363 return btrfs_ioctl_add_dev(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005364 case BTRFS_IOC_RM_DEV:
Miao Xieda249272012-11-26 08:44:50 +00005365 return btrfs_ioctl_rm_dev(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005366 case BTRFS_IOC_FS_INFO:
5367 return btrfs_ioctl_fs_info(root, argp);
5368 case BTRFS_IOC_DEV_INFO:
5369 return btrfs_ioctl_dev_info(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005370 case BTRFS_IOC_BALANCE:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08005371 return btrfs_ioctl_balance(file, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005372 case BTRFS_IOC_CLONE:
Sage Weilc5c9cd42008-11-12 14:32:25 -05005373 return btrfs_ioctl_clone(file, arg, 0, 0, 0);
5374 case BTRFS_IOC_CLONE_RANGE:
Christoph Hellwig7a865e82008-12-02 09:52:24 -05005375 return btrfs_ioctl_clone_range(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005376 case BTRFS_IOC_TRANS_START:
5377 return btrfs_ioctl_trans_start(file);
5378 case BTRFS_IOC_TRANS_END:
5379 return btrfs_ioctl_trans_end(file);
Chris Masonac8e9812010-02-28 15:39:26 -05005380 case BTRFS_IOC_TREE_SEARCH:
5381 return btrfs_ioctl_tree_search(file, argp);
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01005382 case BTRFS_IOC_TREE_SEARCH_V2:
5383 return btrfs_ioctl_tree_search_v2(file, argp);
Chris Masonac8e9812010-02-28 15:39:26 -05005384 case BTRFS_IOC_INO_LOOKUP:
5385 return btrfs_ioctl_ino_lookup(file, argp);
Jan Schmidtd7728c92011-07-07 16:48:38 +02005386 case BTRFS_IOC_INO_PATHS:
5387 return btrfs_ioctl_ino_to_path(root, argp);
5388 case BTRFS_IOC_LOGICAL_INO:
5389 return btrfs_ioctl_logical_to_ino(root, argp);
Josef Bacik1406e432010-01-13 18:19:06 +00005390 case BTRFS_IOC_SPACE_INFO:
5391 return btrfs_ioctl_space_info(root, argp);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005392 case BTRFS_IOC_SYNC: {
5393 int ret;
5394
Miao Xie6c255e62014-03-06 13:55:01 +08005395 ret = btrfs_start_delalloc_roots(root->fs_info, 0, -1);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005396 if (ret)
5397 return ret;
Al Viroddb52f42014-10-21 20:21:18 -04005398 ret = btrfs_sync_fs(file_inode(file)->i_sb, 1);
David Sterba2fad4e82014-07-23 14:39:35 +02005399 /*
5400 * The transaction thread may want to do more work,
5401 * namely it pokes the cleaner ktread that will start
5402 * processing uncleaned subvols.
5403 */
5404 wake_up_process(root->fs_info->transaction_kthread);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005405 return ret;
5406 }
Sage Weil46204592010-10-29 15:41:32 -04005407 case BTRFS_IOC_START_SYNC:
Miao Xie9a8c28b2012-11-26 08:40:43 +00005408 return btrfs_ioctl_start_sync(root, argp);
Sage Weil46204592010-10-29 15:41:32 -04005409 case BTRFS_IOC_WAIT_SYNC:
Miao Xie9a8c28b2012-11-26 08:40:43 +00005410 return btrfs_ioctl_wait_sync(root, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005411 case BTRFS_IOC_SCRUB:
Miao Xieb8e95482012-11-26 08:48:01 +00005412 return btrfs_ioctl_scrub(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005413 case BTRFS_IOC_SCRUB_CANCEL:
5414 return btrfs_ioctl_scrub_cancel(root, argp);
5415 case BTRFS_IOC_SCRUB_PROGRESS:
5416 return btrfs_ioctl_scrub_progress(root, argp);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02005417 case BTRFS_IOC_BALANCE_V2:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08005418 return btrfs_ioctl_balance(file, argp);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02005419 case BTRFS_IOC_BALANCE_CTL:
5420 return btrfs_ioctl_balance_ctl(root, arg);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02005421 case BTRFS_IOC_BALANCE_PROGRESS:
5422 return btrfs_ioctl_balance_progress(root, argp);
Alexander Block8ea05e32012-07-25 17:35:53 +02005423 case BTRFS_IOC_SET_RECEIVED_SUBVOL:
5424 return btrfs_ioctl_set_received_subvol(file, argp);
Hugo Millsabccd002014-01-30 20:17:00 +00005425#ifdef CONFIG_64BIT
5426 case BTRFS_IOC_SET_RECEIVED_SUBVOL_32:
5427 return btrfs_ioctl_set_received_subvol_32(file, argp);
5428#endif
Alexander Block31db9f72012-07-25 23:19:24 +02005429 case BTRFS_IOC_SEND:
5430 return btrfs_ioctl_send(file, argp);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02005431 case BTRFS_IOC_GET_DEV_STATS:
David Sterbab27f7c02012-06-22 06:30:39 -06005432 return btrfs_ioctl_get_dev_stats(root, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005433 case BTRFS_IOC_QUOTA_CTL:
Miao Xie905b0dd2012-11-26 08:50:11 +00005434 return btrfs_ioctl_quota_ctl(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005435 case BTRFS_IOC_QGROUP_ASSIGN:
Miao Xie905b0dd2012-11-26 08:50:11 +00005436 return btrfs_ioctl_qgroup_assign(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005437 case BTRFS_IOC_QGROUP_CREATE:
Miao Xie905b0dd2012-11-26 08:50:11 +00005438 return btrfs_ioctl_qgroup_create(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005439 case BTRFS_IOC_QGROUP_LIMIT:
Miao Xie905b0dd2012-11-26 08:50:11 +00005440 return btrfs_ioctl_qgroup_limit(file, argp);
Jan Schmidt2f232032013-04-25 16:04:51 +00005441 case BTRFS_IOC_QUOTA_RESCAN:
5442 return btrfs_ioctl_quota_rescan(file, argp);
5443 case BTRFS_IOC_QUOTA_RESCAN_STATUS:
5444 return btrfs_ioctl_quota_rescan_status(file, argp);
Jan Schmidt57254b6e2013-05-06 19:14:17 +00005445 case BTRFS_IOC_QUOTA_RESCAN_WAIT:
5446 return btrfs_ioctl_quota_rescan_wait(file, argp);
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01005447 case BTRFS_IOC_DEV_REPLACE:
5448 return btrfs_ioctl_dev_replace(root, argp);
jeff.liu867ab662013-01-05 02:48:01 +00005449 case BTRFS_IOC_GET_FSLABEL:
5450 return btrfs_ioctl_get_fslabel(file, argp);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005451 case BTRFS_IOC_SET_FSLABEL:
5452 return btrfs_ioctl_set_fslabel(file, argp);
Mark Fasheh416161d2013-08-06 11:42:51 -07005453 case BTRFS_IOC_FILE_EXTENT_SAME:
5454 return btrfs_ioctl_file_extent_same(file, argp);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005455 case BTRFS_IOC_GET_SUPPORTED_FEATURES:
5456 return btrfs_ioctl_get_supported_features(file, argp);
5457 case BTRFS_IOC_GET_FEATURES:
5458 return btrfs_ioctl_get_features(file, argp);
5459 case BTRFS_IOC_SET_FEATURES:
5460 return btrfs_ioctl_set_features(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005461 }
5462
5463 return -ENOTTY;
5464}