blob: 1e0dda1feefe1cab3be452f06ea579dd449c3bfd [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>
Chris Mason4b4e25f2008-11-20 10:22:27 -050046#include "compat.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"
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040059
Christoph Hellwig6cbff002009-04-17 10:37:41 +020060/* Mask out flags that are inappropriate for the given type of inode. */
61static inline __u32 btrfs_mask_flags(umode_t mode, __u32 flags)
62{
63 if (S_ISDIR(mode))
64 return flags;
65 else if (S_ISREG(mode))
66 return flags & ~FS_DIRSYNC_FL;
67 else
68 return flags & (FS_NODUMP_FL | FS_NOATIME_FL);
69}
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040070
Christoph Hellwig6cbff002009-04-17 10:37:41 +020071/*
72 * Export inode flags to the format expected by the FS_IOC_GETFLAGS ioctl.
73 */
74static unsigned int btrfs_flags_to_ioctl(unsigned int flags)
75{
76 unsigned int iflags = 0;
77
78 if (flags & BTRFS_INODE_SYNC)
79 iflags |= FS_SYNC_FL;
80 if (flags & BTRFS_INODE_IMMUTABLE)
81 iflags |= FS_IMMUTABLE_FL;
82 if (flags & BTRFS_INODE_APPEND)
83 iflags |= FS_APPEND_FL;
84 if (flags & BTRFS_INODE_NODUMP)
85 iflags |= FS_NODUMP_FL;
86 if (flags & BTRFS_INODE_NOATIME)
87 iflags |= FS_NOATIME_FL;
88 if (flags & BTRFS_INODE_DIRSYNC)
89 iflags |= FS_DIRSYNC_FL;
Li Zefand0092bd2011-04-15 03:03:06 +000090 if (flags & BTRFS_INODE_NODATACOW)
91 iflags |= FS_NOCOW_FL;
92
93 if ((flags & BTRFS_INODE_COMPRESS) && !(flags & BTRFS_INODE_NOCOMPRESS))
94 iflags |= FS_COMPR_FL;
95 else if (flags & BTRFS_INODE_NOCOMPRESS)
96 iflags |= FS_NOCOMP_FL;
Christoph Hellwig6cbff002009-04-17 10:37:41 +020097
98 return iflags;
99}
100
101/*
102 * Update inode->i_flags based on the btrfs internal flags.
103 */
104void btrfs_update_iflags(struct inode *inode)
105{
106 struct btrfs_inode *ip = BTRFS_I(inode);
107
108 inode->i_flags &= ~(S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC);
109
110 if (ip->flags & BTRFS_INODE_SYNC)
111 inode->i_flags |= S_SYNC;
112 if (ip->flags & BTRFS_INODE_IMMUTABLE)
113 inode->i_flags |= S_IMMUTABLE;
114 if (ip->flags & BTRFS_INODE_APPEND)
115 inode->i_flags |= S_APPEND;
116 if (ip->flags & BTRFS_INODE_NOATIME)
117 inode->i_flags |= S_NOATIME;
118 if (ip->flags & BTRFS_INODE_DIRSYNC)
119 inode->i_flags |= S_DIRSYNC;
120}
121
122/*
123 * Inherit flags from the parent inode.
124 *
Josef Bacike27425d2011-09-27 11:01:30 -0400125 * Currently only the compression flags and the cow flags are inherited.
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200126 */
127void btrfs_inherit_iflags(struct inode *inode, struct inode *dir)
128{
Chris Mason0b4dcea2009-06-11 11:13:35 -0400129 unsigned int flags;
130
131 if (!dir)
132 return;
133
134 flags = BTRFS_I(dir)->flags;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200135
Josef Bacike27425d2011-09-27 11:01:30 -0400136 if (flags & BTRFS_INODE_NOCOMPRESS) {
137 BTRFS_I(inode)->flags &= ~BTRFS_INODE_COMPRESS;
138 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
139 } else if (flags & BTRFS_INODE_COMPRESS) {
140 BTRFS_I(inode)->flags &= ~BTRFS_INODE_NOCOMPRESS;
141 BTRFS_I(inode)->flags |= BTRFS_INODE_COMPRESS;
142 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200143
Liu Bo213490b2012-09-11 08:33:50 -0600144 if (flags & BTRFS_INODE_NODATACOW) {
Josef Bacike27425d2011-09-27 11:01:30 -0400145 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW;
Liu Bo213490b2012-09-11 08:33:50 -0600146 if (S_ISREG(inode->i_mode))
147 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
148 }
Josef Bacike27425d2011-09-27 11:01:30 -0400149
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200150 btrfs_update_iflags(inode);
151}
152
153static int btrfs_ioctl_getflags(struct file *file, void __user *arg)
154{
Al Viro496ad9a2013-01-23 17:07:38 -0500155 struct btrfs_inode *ip = BTRFS_I(file_inode(file));
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200156 unsigned int flags = btrfs_flags_to_ioctl(ip->flags);
157
158 if (copy_to_user(arg, &flags, sizeof(flags)))
159 return -EFAULT;
160 return 0;
161}
162
Liu Bo75e7cb72011-03-22 10:12:20 +0000163static int check_flags(unsigned int flags)
164{
165 if (flags & ~(FS_IMMUTABLE_FL | FS_APPEND_FL | \
166 FS_NOATIME_FL | FS_NODUMP_FL | \
167 FS_SYNC_FL | FS_DIRSYNC_FL | \
Li Zefane1e8fb62011-04-15 03:02:49 +0000168 FS_NOCOMP_FL | FS_COMPR_FL |
169 FS_NOCOW_FL))
Liu Bo75e7cb72011-03-22 10:12:20 +0000170 return -EOPNOTSUPP;
171
172 if ((flags & FS_NOCOMP_FL) && (flags & FS_COMPR_FL))
173 return -EINVAL;
174
Liu Bo75e7cb72011-03-22 10:12:20 +0000175 return 0;
176}
177
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200178static int btrfs_ioctl_setflags(struct file *file, void __user *arg)
179{
Al Viro496ad9a2013-01-23 17:07:38 -0500180 struct inode *inode = file_inode(file);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200181 struct btrfs_inode *ip = BTRFS_I(inode);
182 struct btrfs_root *root = ip->root;
183 struct btrfs_trans_handle *trans;
184 unsigned int flags, oldflags;
185 int ret;
Li Zefanf062abf2011-12-29 13:36:45 +0800186 u64 ip_oldflags;
187 unsigned int i_oldflags;
David Sterba7e97b8d2012-09-07 05:56:55 -0600188 umode_t mode;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200189
Li Zefanb83cc962010-12-20 16:04:08 +0800190 if (btrfs_root_readonly(root))
191 return -EROFS;
192
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200193 if (copy_from_user(&flags, arg, sizeof(flags)))
194 return -EFAULT;
195
Liu Bo75e7cb72011-03-22 10:12:20 +0000196 ret = check_flags(flags);
197 if (ret)
198 return ret;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200199
Serge E. Hallyn2e149672011-03-23 16:43:26 -0700200 if (!inode_owner_or_capable(inode))
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200201 return -EACCES;
202
Jan Karae7848682012-06-12 16:20:32 +0200203 ret = mnt_want_write_file(file);
204 if (ret)
205 return ret;
206
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200207 mutex_lock(&inode->i_mutex);
208
Li Zefanf062abf2011-12-29 13:36:45 +0800209 ip_oldflags = ip->flags;
210 i_oldflags = inode->i_flags;
David Sterba7e97b8d2012-09-07 05:56:55 -0600211 mode = inode->i_mode;
Li Zefanf062abf2011-12-29 13:36:45 +0800212
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200213 flags = btrfs_mask_flags(inode->i_mode, flags);
214 oldflags = btrfs_flags_to_ioctl(ip->flags);
215 if ((flags ^ oldflags) & (FS_APPEND_FL | FS_IMMUTABLE_FL)) {
216 if (!capable(CAP_LINUX_IMMUTABLE)) {
217 ret = -EPERM;
218 goto out_unlock;
219 }
220 }
221
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200222 if (flags & FS_SYNC_FL)
223 ip->flags |= BTRFS_INODE_SYNC;
224 else
225 ip->flags &= ~BTRFS_INODE_SYNC;
226 if (flags & FS_IMMUTABLE_FL)
227 ip->flags |= BTRFS_INODE_IMMUTABLE;
228 else
229 ip->flags &= ~BTRFS_INODE_IMMUTABLE;
230 if (flags & FS_APPEND_FL)
231 ip->flags |= BTRFS_INODE_APPEND;
232 else
233 ip->flags &= ~BTRFS_INODE_APPEND;
234 if (flags & FS_NODUMP_FL)
235 ip->flags |= BTRFS_INODE_NODUMP;
236 else
237 ip->flags &= ~BTRFS_INODE_NODUMP;
238 if (flags & FS_NOATIME_FL)
239 ip->flags |= BTRFS_INODE_NOATIME;
240 else
241 ip->flags &= ~BTRFS_INODE_NOATIME;
242 if (flags & FS_DIRSYNC_FL)
243 ip->flags |= BTRFS_INODE_DIRSYNC;
244 else
245 ip->flags &= ~BTRFS_INODE_DIRSYNC;
David Sterba7e97b8d2012-09-07 05:56:55 -0600246 if (flags & FS_NOCOW_FL) {
247 if (S_ISREG(mode)) {
248 /*
249 * It's safe to turn csums off here, no extents exist.
250 * Otherwise we want the flag to reflect the real COW
251 * status of the file and will not set it.
252 */
253 if (inode->i_size == 0)
254 ip->flags |= BTRFS_INODE_NODATACOW
255 | BTRFS_INODE_NODATASUM;
256 } else {
257 ip->flags |= BTRFS_INODE_NODATACOW;
258 }
259 } else {
260 /*
261 * Revert back under same assuptions as above
262 */
263 if (S_ISREG(mode)) {
264 if (inode->i_size == 0)
265 ip->flags &= ~(BTRFS_INODE_NODATACOW
266 | BTRFS_INODE_NODATASUM);
267 } else {
268 ip->flags &= ~BTRFS_INODE_NODATACOW;
269 }
270 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200271
Liu Bo75e7cb72011-03-22 10:12:20 +0000272 /*
273 * The COMPRESS flag can only be changed by users, while the NOCOMPRESS
274 * flag may be changed automatically if compression code won't make
275 * things smaller.
276 */
277 if (flags & FS_NOCOMP_FL) {
278 ip->flags &= ~BTRFS_INODE_COMPRESS;
279 ip->flags |= BTRFS_INODE_NOCOMPRESS;
280 } else if (flags & FS_COMPR_FL) {
281 ip->flags |= BTRFS_INODE_COMPRESS;
282 ip->flags &= ~BTRFS_INODE_NOCOMPRESS;
Li Zefanebcb9042011-04-15 03:03:17 +0000283 } else {
284 ip->flags &= ~(BTRFS_INODE_COMPRESS | BTRFS_INODE_NOCOMPRESS);
Liu Bo75e7cb72011-03-22 10:12:20 +0000285 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200286
Li Zefan4da6f1a2011-12-29 13:39:50 +0800287 trans = btrfs_start_transaction(root, 1);
Li Zefanf062abf2011-12-29 13:36:45 +0800288 if (IS_ERR(trans)) {
289 ret = PTR_ERR(trans);
290 goto out_drop;
291 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200292
Li Zefan306424cc2011-12-14 20:12:02 -0500293 btrfs_update_iflags(inode);
Josef Bacik0c4d2d92012-04-05 15:03:02 -0400294 inode_inc_iversion(inode);
Li Zefan306424cc2011-12-14 20:12:02 -0500295 inode->i_ctime = CURRENT_TIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200296 ret = btrfs_update_inode(trans, root, inode);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200297
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200298 btrfs_end_transaction(trans, root);
Li Zefanf062abf2011-12-29 13:36:45 +0800299 out_drop:
300 if (ret) {
301 ip->flags = ip_oldflags;
302 inode->i_flags = i_oldflags;
303 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200304
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200305 out_unlock:
306 mutex_unlock(&inode->i_mutex);
Jan Karae7848682012-06-12 16:20:32 +0200307 mnt_drop_write_file(file);
liubo2d4e6f62011-02-24 09:38:16 +0000308 return ret;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200309}
310
311static int btrfs_ioctl_getversion(struct file *file, int __user *arg)
312{
Al Viro496ad9a2013-01-23 17:07:38 -0500313 struct inode *inode = file_inode(file);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200314
315 return put_user(inode->i_generation, arg);
316}
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400317
Li Dongyangf7039b12011-03-24 10:24:28 +0000318static noinline int btrfs_ioctl_fitrim(struct file *file, void __user *arg)
319{
Al Viro815745c2011-11-17 15:40:49 -0500320 struct btrfs_fs_info *fs_info = btrfs_sb(fdentry(file)->d_sb);
Li Dongyangf7039b12011-03-24 10:24:28 +0000321 struct btrfs_device *device;
322 struct request_queue *q;
323 struct fstrim_range range;
324 u64 minlen = ULLONG_MAX;
325 u64 num_devices = 0;
Al Viro815745c2011-11-17 15:40:49 -0500326 u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy);
Li Dongyangf7039b12011-03-24 10:24:28 +0000327 int ret;
328
329 if (!capable(CAP_SYS_ADMIN))
330 return -EPERM;
331
Xiao Guangrong1f781602011-04-20 10:09:16 +0000332 rcu_read_lock();
333 list_for_each_entry_rcu(device, &fs_info->fs_devices->devices,
334 dev_list) {
Li Dongyangf7039b12011-03-24 10:24:28 +0000335 if (!device->bdev)
336 continue;
337 q = bdev_get_queue(device->bdev);
338 if (blk_queue_discard(q)) {
339 num_devices++;
340 minlen = min((u64)q->limits.discard_granularity,
341 minlen);
342 }
343 }
Xiao Guangrong1f781602011-04-20 10:09:16 +0000344 rcu_read_unlock();
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200345
Li Dongyangf7039b12011-03-24 10:24:28 +0000346 if (!num_devices)
347 return -EOPNOTSUPP;
Li Dongyangf7039b12011-03-24 10:24:28 +0000348 if (copy_from_user(&range, arg, sizeof(range)))
349 return -EFAULT;
Lukas Czernere515c182012-10-16 09:34:36 +0000350 if (range.start > total_bytes ||
351 range.len < fs_info->sb->s_blocksize)
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200352 return -EINVAL;
Li Dongyangf7039b12011-03-24 10:24:28 +0000353
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200354 range.len = min(range.len, total_bytes - range.start);
Li Dongyangf7039b12011-03-24 10:24:28 +0000355 range.minlen = max(range.minlen, minlen);
Al Viro815745c2011-11-17 15:40:49 -0500356 ret = btrfs_trim_fs(fs_info->tree_root, &range);
Li Dongyangf7039b12011-03-24 10:24:28 +0000357 if (ret < 0)
358 return ret;
359
360 if (copy_to_user(arg, &range, sizeof(range)))
361 return -EFAULT;
362
363 return 0;
364}
365
Miao Xied5c12072013-02-28 10:04:33 +0000366static noinline int create_subvol(struct inode *dir,
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400367 struct dentry *dentry,
Sage Weil72fd0322010-10-29 15:41:32 -0400368 char *name, int namelen,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200369 u64 *async_transid,
Miao Xie8696c532013-02-07 06:02:44 +0000370 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400371{
372 struct btrfs_trans_handle *trans;
373 struct btrfs_key key;
374 struct btrfs_root_item root_item;
375 struct btrfs_inode_item *inode_item;
376 struct extent_buffer *leaf;
Miao Xied5c12072013-02-28 10:04:33 +0000377 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -0400378 struct btrfs_root *new_root;
Miao Xied5c12072013-02-28 10:04:33 +0000379 struct btrfs_block_rsv block_rsv;
Alexander Block8ea05e32012-07-25 17:35:53 +0200380 struct timespec cur_time = CURRENT_TIME;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400381 int ret;
382 int err;
383 u64 objectid;
384 u64 new_dirid = BTRFS_FIRST_FREE_OBJECTID;
Chris Mason3de45862008-11-17 21:02:50 -0500385 u64 index = 0;
Miao Xied5c12072013-02-28 10:04:33 +0000386 u64 qgroup_reserved;
Alexander Block8ea05e32012-07-25 17:35:53 +0200387 uuid_le new_uuid;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400388
Li Zefan581bb052011-04-20 10:06:11 +0800389 ret = btrfs_find_free_objectid(root->fs_info->tree_root, &objectid);
Al Viro2fbe8c82011-07-16 21:38:06 -0400390 if (ret)
Yan, Zhenga22285a2010-05-16 10:48:46 -0400391 return ret;
Josef Bacik6a912212010-11-20 09:48:00 +0000392
Miao Xied5c12072013-02-28 10:04:33 +0000393 btrfs_init_block_rsv(&block_rsv, BTRFS_BLOCK_RSV_TEMP);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400394 /*
Miao Xied5c12072013-02-28 10:04:33 +0000395 * The same as the snapshot creation, please see the comment
396 * of create_snapshot().
Josef Bacik9ed74f22009-09-11 16:12:44 -0400397 */
Miao Xied5c12072013-02-28 10:04:33 +0000398 ret = btrfs_subvolume_reserve_metadata(root, &block_rsv,
399 7, &qgroup_reserved);
400 if (ret)
401 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400402
Miao Xied5c12072013-02-28 10:04:33 +0000403 trans = btrfs_start_transaction(root, 0);
404 if (IS_ERR(trans)) {
405 ret = PTR_ERR(trans);
406 goto out;
407 }
408 trans->block_rsv = &block_rsv;
409 trans->bytes_reserved = block_rsv.size;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400410
Miao Xie8696c532013-02-07 06:02:44 +0000411 ret = btrfs_qgroup_inherit(trans, root->fs_info, 0, objectid, inherit);
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200412 if (ret)
413 goto fail;
414
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400415 leaf = btrfs_alloc_free_block(trans, root, root->leafsize,
Jan Schmidt5581a512012-05-16 17:04:52 +0200416 0, objectid, NULL, 0, 0, 0);
Josef Bacik8e8a1e32008-07-24 12:17:14 -0400417 if (IS_ERR(leaf)) {
418 ret = PTR_ERR(leaf);
419 goto fail;
420 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400421
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400422 memset_extent_buffer(leaf, 0, 0, sizeof(struct btrfs_header));
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400423 btrfs_set_header_bytenr(leaf, leaf->start);
424 btrfs_set_header_generation(leaf, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400425 btrfs_set_header_backref_rev(leaf, BTRFS_MIXED_BACKREF_REV);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400426 btrfs_set_header_owner(leaf, objectid);
427
428 write_extent_buffer(leaf, root->fs_info->fsid,
429 (unsigned long)btrfs_header_fsid(leaf),
430 BTRFS_FSID_SIZE);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400431 write_extent_buffer(leaf, root->fs_info->chunk_tree_uuid,
432 (unsigned long)btrfs_header_chunk_tree_uuid(leaf),
433 BTRFS_UUID_SIZE);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400434 btrfs_mark_buffer_dirty(leaf);
435
Alexander Block8ea05e32012-07-25 17:35:53 +0200436 memset(&root_item, 0, sizeof(root_item));
437
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400438 inode_item = &root_item.inode;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400439 inode_item->generation = cpu_to_le64(1);
440 inode_item->size = cpu_to_le64(3);
441 inode_item->nlink = cpu_to_le32(1);
Yan Zhenga76a3cd2008-10-09 11:46:29 -0400442 inode_item->nbytes = cpu_to_le64(root->leafsize);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400443 inode_item->mode = cpu_to_le32(S_IFDIR | 0755);
444
Li Zefan08fe4db2011-03-28 02:01:25 +0000445 root_item.flags = 0;
446 root_item.byte_limit = 0;
447 inode_item->flags = cpu_to_le64(BTRFS_INODE_ROOT_ITEM_INIT);
448
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400449 btrfs_set_root_bytenr(&root_item, leaf->start);
Yan Zheng84234f32008-10-29 14:49:05 -0400450 btrfs_set_root_generation(&root_item, trans->transid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400451 btrfs_set_root_level(&root_item, 0);
452 btrfs_set_root_refs(&root_item, 1);
Yan, Zheng86b9f2e2009-11-12 09:36:50 +0000453 btrfs_set_root_used(&root_item, leaf->len);
Yan Zheng80ff3852008-10-30 14:20:02 -0400454 btrfs_set_root_last_snapshot(&root_item, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400455
Alexander Block8ea05e32012-07-25 17:35:53 +0200456 btrfs_set_root_generation_v2(&root_item,
457 btrfs_root_generation(&root_item));
458 uuid_le_gen(&new_uuid);
459 memcpy(root_item.uuid, new_uuid.b, BTRFS_UUID_SIZE);
460 root_item.otime.sec = cpu_to_le64(cur_time.tv_sec);
Dan Carpenterdadd1102012-07-30 02:10:44 -0600461 root_item.otime.nsec = cpu_to_le32(cur_time.tv_nsec);
Alexander Block8ea05e32012-07-25 17:35:53 +0200462 root_item.ctime = root_item.otime;
463 btrfs_set_root_ctransid(&root_item, trans->transid);
464 btrfs_set_root_otransid(&root_item, trans->transid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400465
Chris Mason925baed2008-06-25 16:01:30 -0400466 btrfs_tree_unlock(leaf);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400467 free_extent_buffer(leaf);
468 leaf = NULL;
469
470 btrfs_set_root_dirid(&root_item, new_dirid);
471
472 key.objectid = objectid;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400473 key.offset = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400474 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
475 ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
476 &root_item);
477 if (ret)
478 goto fail;
479
Yan, Zheng76dda932009-09-21 16:00:26 -0400480 key.offset = (u64)-1;
481 new_root = btrfs_read_fs_root_no_name(root->fs_info, &key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100482 if (IS_ERR(new_root)) {
483 btrfs_abort_transaction(trans, root, PTR_ERR(new_root));
484 ret = PTR_ERR(new_root);
485 goto fail;
486 }
Yan, Zheng76dda932009-09-21 16:00:26 -0400487
488 btrfs_record_root_in_trans(trans, new_root);
489
Josef Bacikd82a6f12011-05-11 15:26:06 -0400490 ret = btrfs_create_subvol_root(trans, new_root, new_dirid);
Mark Fashehce598972011-07-26 11:32:23 -0700491 if (ret) {
492 /* We potentially lose an unused inode item here */
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100493 btrfs_abort_transaction(trans, root, ret);
Mark Fashehce598972011-07-26 11:32:23 -0700494 goto fail;
495 }
496
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400497 /*
498 * insert the directory item
499 */
Chris Mason3de45862008-11-17 21:02:50 -0500500 ret = btrfs_set_inode_index(dir, &index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100501 if (ret) {
502 btrfs_abort_transaction(trans, root, ret);
503 goto fail;
504 }
Chris Mason3de45862008-11-17 21:02:50 -0500505
506 ret = btrfs_insert_dir_item(trans, root,
Miao Xie16cdcec2011-04-22 18:12:22 +0800507 name, namelen, dir, &key,
Chris Mason3de45862008-11-17 21:02:50 -0500508 BTRFS_FT_DIR, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100509 if (ret) {
510 btrfs_abort_transaction(trans, root, ret);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400511 goto fail;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100512 }
Chris Mason0660b5a2008-11-17 20:37:39 -0500513
Yan Zheng52c26172009-01-05 15:43:43 -0500514 btrfs_i_size_write(dir, dir->i_size + namelen * 2);
515 ret = btrfs_update_inode(trans, root, dir);
516 BUG_ON(ret);
517
Chris Mason0660b5a2008-11-17 20:37:39 -0500518 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -0400519 objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +0800520 btrfs_ino(dir), index, name, namelen);
Yan, Zheng76dda932009-09-21 16:00:26 -0400521
Chris Mason0660b5a2008-11-17 20:37:39 -0500522 BUG_ON(ret);
523
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400524fail:
Miao Xied5c12072013-02-28 10:04:33 +0000525 trans->block_rsv = NULL;
526 trans->bytes_reserved = 0;
Sage Weil72fd0322010-10-29 15:41:32 -0400527 if (async_transid) {
528 *async_transid = trans->transid;
529 err = btrfs_commit_transaction_async(trans, root, 1);
Miao Xie00d71c92013-03-04 09:45:06 +0000530 if (err)
531 err = btrfs_commit_transaction(trans, root);
Sage Weil72fd0322010-10-29 15:41:32 -0400532 } else {
533 err = btrfs_commit_transaction(trans, root);
534 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400535 if (err && !ret)
536 ret = err;
Chris Mason1a65e242013-02-06 12:06:02 -0500537
538 if (!ret)
539 d_instantiate(dentry, btrfs_lookup_dentry(dir, dentry));
Miao Xied5c12072013-02-28 10:04:33 +0000540out:
541 btrfs_subvolume_release_metadata(root, &block_rsv, qgroup_reserved);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400542 return ret;
543}
544
Miao Xiee9662f72013-02-28 10:01:15 +0000545static int create_snapshot(struct btrfs_root *root, struct inode *dir,
546 struct dentry *dentry, char *name, int namelen,
547 u64 *async_transid, bool readonly,
548 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400549{
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000550 struct inode *inode;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400551 struct btrfs_pending_snapshot *pending_snapshot;
552 struct btrfs_trans_handle *trans;
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000553 int ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400554
555 if (!root->ref_cows)
556 return -EINVAL;
557
Yan, Zhenga22285a2010-05-16 10:48:46 -0400558 pending_snapshot = kzalloc(sizeof(*pending_snapshot), GFP_NOFS);
559 if (!pending_snapshot)
560 return -ENOMEM;
561
Miao Xie66d8f3d2012-09-06 04:02:28 -0600562 btrfs_init_block_rsv(&pending_snapshot->block_rsv,
563 BTRFS_BLOCK_RSV_TEMP);
Miao Xied5c12072013-02-28 10:04:33 +0000564 /*
565 * 1 - parent dir inode
566 * 2 - dir entries
567 * 1 - root item
568 * 2 - root ref/backref
569 * 1 - root of snapshot
570 */
571 ret = btrfs_subvolume_reserve_metadata(BTRFS_I(dir)->root,
572 &pending_snapshot->block_rsv, 7,
573 &pending_snapshot->qgroup_reserved);
574 if (ret)
575 goto out;
576
Yan, Zhenga22285a2010-05-16 10:48:46 -0400577 pending_snapshot->dentry = dentry;
578 pending_snapshot->root = root;
Li Zefanb83cc962010-12-20 16:04:08 +0800579 pending_snapshot->readonly = readonly;
Miao Xiee9662f72013-02-28 10:01:15 +0000580 pending_snapshot->dir = dir;
Miao Xie8696c532013-02-07 06:02:44 +0000581 pending_snapshot->inherit = inherit;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400582
Miao Xied5c12072013-02-28 10:04:33 +0000583 trans = btrfs_start_transaction(root, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400584 if (IS_ERR(trans)) {
585 ret = PTR_ERR(trans);
586 goto fail;
587 }
588
Josef Bacik83515832011-06-14 15:16:14 -0400589 spin_lock(&root->fs_info->trans_lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400590 list_add(&pending_snapshot->list,
591 &trans->transaction->pending_snapshots);
Josef Bacik83515832011-06-14 15:16:14 -0400592 spin_unlock(&root->fs_info->trans_lock);
Sage Weil72fd0322010-10-29 15:41:32 -0400593 if (async_transid) {
594 *async_transid = trans->transid;
595 ret = btrfs_commit_transaction_async(trans,
596 root->fs_info->extent_root, 1);
Miao Xie00d71c92013-03-04 09:45:06 +0000597 if (ret)
598 ret = btrfs_commit_transaction(trans, root);
Sage Weil72fd0322010-10-29 15:41:32 -0400599 } else {
600 ret = btrfs_commit_transaction(trans,
601 root->fs_info->extent_root);
602 }
Miao Xieaec80302013-03-04 09:44:29 +0000603 if (ret)
Josef Bacikc37b2b62012-10-22 15:51:44 -0400604 goto fail;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400605
606 ret = pending_snapshot->error;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400607 if (ret)
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000608 goto fail;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400609
Josef Bacik66b4ffd2011-01-31 16:22:42 -0500610 ret = btrfs_orphan_cleanup(pending_snapshot->snap);
611 if (ret)
612 goto fail;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400613
Al Viro2fbe8c82011-07-16 21:38:06 -0400614 inode = btrfs_lookup_dentry(dentry->d_parent->d_inode, dentry);
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000615 if (IS_ERR(inode)) {
616 ret = PTR_ERR(inode);
617 goto fail;
618 }
619 BUG_ON(!inode);
620 d_instantiate(dentry, inode);
621 ret = 0;
622fail:
Miao Xied5c12072013-02-28 10:04:33 +0000623 btrfs_subvolume_release_metadata(BTRFS_I(dir)->root,
624 &pending_snapshot->block_rsv,
625 pending_snapshot->qgroup_reserved);
626out:
Yan, Zhenga22285a2010-05-16 10:48:46 -0400627 kfree(pending_snapshot);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400628 return ret;
629}
630
Sage Weil4260f7c2010-10-29 15:46:43 -0400631/* copy of check_sticky in fs/namei.c()
632* It's inline, so penalty for filesystems that don't use sticky bit is
633* minimal.
634*/
635static inline int btrfs_check_sticky(struct inode *dir, struct inode *inode)
636{
Eric W. Biederman2f2f43d2012-02-10 11:05:07 -0800637 kuid_t fsuid = current_fsuid();
Sage Weil4260f7c2010-10-29 15:46:43 -0400638
639 if (!(dir->i_mode & S_ISVTX))
640 return 0;
Eric W. Biederman2f2f43d2012-02-10 11:05:07 -0800641 if (uid_eq(inode->i_uid, fsuid))
Sage Weil4260f7c2010-10-29 15:46:43 -0400642 return 0;
Eric W. Biederman2f2f43d2012-02-10 11:05:07 -0800643 if (uid_eq(dir->i_uid, fsuid))
Sage Weil4260f7c2010-10-29 15:46:43 -0400644 return 0;
645 return !capable(CAP_FOWNER);
646}
647
648/* copy of may_delete in fs/namei.c()
649 * Check whether we can remove a link victim from directory dir, check
650 * whether the type of victim is right.
651 * 1. We can't do it if dir is read-only (done in permission())
652 * 2. We should have write and exec permissions on dir
653 * 3. We can't remove anything from append-only dir
654 * 4. We can't do anything with immutable dir (done in permission())
655 * 5. If the sticky bit on dir is set we should either
656 * a. be owner of dir, or
657 * b. be owner of victim, or
658 * c. have CAP_FOWNER capability
659 * 6. If the victim is append-only or immutable we can't do antyhing with
660 * links pointing to it.
661 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
662 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
663 * 9. We can't remove a root or mountpoint.
664 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
665 * nfs_async_unlink().
666 */
667
668static int btrfs_may_delete(struct inode *dir,struct dentry *victim,int isdir)
669{
670 int error;
671
672 if (!victim->d_inode)
673 return -ENOENT;
674
675 BUG_ON(victim->d_parent->d_inode != dir);
Jeff Layton4fa6b5e2012-10-10 15:25:25 -0400676 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
Sage Weil4260f7c2010-10-29 15:46:43 -0400677
678 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
679 if (error)
680 return error;
681 if (IS_APPEND(dir))
682 return -EPERM;
683 if (btrfs_check_sticky(dir, victim->d_inode)||
684 IS_APPEND(victim->d_inode)||
685 IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode))
686 return -EPERM;
687 if (isdir) {
688 if (!S_ISDIR(victim->d_inode->i_mode))
689 return -ENOTDIR;
690 if (IS_ROOT(victim))
691 return -EBUSY;
692 } else if (S_ISDIR(victim->d_inode->i_mode))
693 return -EISDIR;
694 if (IS_DEADDIR(dir))
695 return -ENOENT;
696 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
697 return -EBUSY;
698 return 0;
699}
700
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400701/* copy of may_create in fs/namei.c() */
702static inline int btrfs_may_create(struct inode *dir, struct dentry *child)
703{
704 if (child->d_inode)
705 return -EEXIST;
706 if (IS_DEADDIR(dir))
707 return -ENOENT;
708 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
709}
710
711/*
712 * Create a new subvolume below @parent. This is largely modeled after
713 * sys_mkdirat and vfs_mkdir, but we only do a single component lookup
714 * inside this filesystem so it's quite a bit simpler.
715 */
Yan, Zheng76dda932009-09-21 16:00:26 -0400716static noinline int btrfs_mksubvol(struct path *parent,
717 char *name, int namelen,
Sage Weil72fd0322010-10-29 15:41:32 -0400718 struct btrfs_root *snap_src,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200719 u64 *async_transid, bool readonly,
Miao Xie8696c532013-02-07 06:02:44 +0000720 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400721{
Yan, Zheng76dda932009-09-21 16:00:26 -0400722 struct inode *dir = parent->dentry->d_inode;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400723 struct dentry *dentry;
724 int error;
725
David Sterba5c50c9b2013-03-22 18:12:51 +0000726 error = mutex_lock_killable_nested(&dir->i_mutex, I_MUTEX_PARENT);
727 if (error == -EINTR)
728 return error;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400729
730 dentry = lookup_one_len(name, parent->dentry, namelen);
731 error = PTR_ERR(dentry);
732 if (IS_ERR(dentry))
733 goto out_unlock;
734
735 error = -EEXIST;
736 if (dentry->d_inode)
737 goto out_dput;
738
Yan, Zheng76dda932009-09-21 16:00:26 -0400739 error = btrfs_may_create(dir, dentry);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400740 if (error)
Liu Boa874a632012-06-29 03:58:46 -0600741 goto out_dput;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400742
Chris Mason9c520572012-12-17 14:26:57 -0500743 /*
744 * even if this name doesn't exist, we may get hash collisions.
745 * check for them now when we can safely fail
746 */
747 error = btrfs_check_dir_item_collision(BTRFS_I(dir)->root,
748 dir->i_ino, name,
749 namelen);
750 if (error)
751 goto out_dput;
752
Yan, Zheng76dda932009-09-21 16:00:26 -0400753 down_read(&BTRFS_I(dir)->root->fs_info->subvol_sem);
754
755 if (btrfs_root_refs(&BTRFS_I(dir)->root->root_item) == 0)
756 goto out_up_read;
757
Chris Mason3de45862008-11-17 21:02:50 -0500758 if (snap_src) {
Miao Xiee9662f72013-02-28 10:01:15 +0000759 error = create_snapshot(snap_src, dir, dentry, name, namelen,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200760 async_transid, readonly, inherit);
Chris Mason3de45862008-11-17 21:02:50 -0500761 } else {
Miao Xied5c12072013-02-28 10:04:33 +0000762 error = create_subvol(dir, dentry, name, namelen,
763 async_transid, inherit);
Chris Mason3de45862008-11-17 21:02:50 -0500764 }
Yan, Zheng76dda932009-09-21 16:00:26 -0400765 if (!error)
766 fsnotify_mkdir(dir, dentry);
767out_up_read:
768 up_read(&BTRFS_I(dir)->root->fs_info->subvol_sem);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400769out_dput:
770 dput(dentry);
771out_unlock:
Yan, Zheng76dda932009-09-21 16:00:26 -0400772 mutex_unlock(&dir->i_mutex);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400773 return error;
774}
775
Chris Mason4cb53002011-05-24 15:35:30 -0400776/*
777 * When we're defragging a range, we don't want to kick it off again
778 * if it is really just waiting for delalloc to send it down.
779 * If we find a nice big extent or delalloc range for the bytes in the
780 * file you want to defrag, we return 0 to let you know to skip this
781 * part of the file
782 */
783static int check_defrag_in_cache(struct inode *inode, u64 offset, int thresh)
784{
785 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
786 struct extent_map *em = NULL;
787 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
788 u64 end;
789
790 read_lock(&em_tree->lock);
791 em = lookup_extent_mapping(em_tree, offset, PAGE_CACHE_SIZE);
792 read_unlock(&em_tree->lock);
793
794 if (em) {
795 end = extent_map_end(em);
796 free_extent_map(em);
797 if (end - offset > thresh)
798 return 0;
799 }
800 /* if we already have a nice delalloc here, just stop */
801 thresh /= 2;
802 end = count_range_bits(io_tree, &offset, offset + thresh,
803 thresh, EXTENT_DELALLOC, 1);
804 if (end >= thresh)
805 return 0;
806 return 1;
807}
808
809/*
810 * helper function to walk through a file and find extents
811 * newer than a specific transid, and smaller than thresh.
812 *
813 * This is used by the defragging code to find new and small
814 * extents
815 */
816static int find_new_extents(struct btrfs_root *root,
817 struct inode *inode, u64 newer_than,
818 u64 *off, int thresh)
819{
820 struct btrfs_path *path;
821 struct btrfs_key min_key;
822 struct btrfs_key max_key;
823 struct extent_buffer *leaf;
824 struct btrfs_file_extent_item *extent;
825 int type;
826 int ret;
David Sterbaa4689d22011-05-31 17:08:14 +0000827 u64 ino = btrfs_ino(inode);
Chris Mason4cb53002011-05-24 15:35:30 -0400828
829 path = btrfs_alloc_path();
830 if (!path)
831 return -ENOMEM;
832
David Sterbaa4689d22011-05-31 17:08:14 +0000833 min_key.objectid = ino;
Chris Mason4cb53002011-05-24 15:35:30 -0400834 min_key.type = BTRFS_EXTENT_DATA_KEY;
835 min_key.offset = *off;
836
David Sterbaa4689d22011-05-31 17:08:14 +0000837 max_key.objectid = ino;
Chris Mason4cb53002011-05-24 15:35:30 -0400838 max_key.type = (u8)-1;
839 max_key.offset = (u64)-1;
840
841 path->keep_locks = 1;
842
843 while(1) {
844 ret = btrfs_search_forward(root, &min_key, &max_key,
Eric Sandeende78b512013-01-31 18:21:12 +0000845 path, newer_than);
Chris Mason4cb53002011-05-24 15:35:30 -0400846 if (ret != 0)
847 goto none;
David Sterbaa4689d22011-05-31 17:08:14 +0000848 if (min_key.objectid != ino)
Chris Mason4cb53002011-05-24 15:35:30 -0400849 goto none;
850 if (min_key.type != BTRFS_EXTENT_DATA_KEY)
851 goto none;
852
853 leaf = path->nodes[0];
854 extent = btrfs_item_ptr(leaf, path->slots[0],
855 struct btrfs_file_extent_item);
856
857 type = btrfs_file_extent_type(leaf, extent);
858 if (type == BTRFS_FILE_EXTENT_REG &&
859 btrfs_file_extent_num_bytes(leaf, extent) < thresh &&
860 check_defrag_in_cache(inode, min_key.offset, thresh)) {
861 *off = min_key.offset;
862 btrfs_free_path(path);
863 return 0;
864 }
865
866 if (min_key.offset == (u64)-1)
867 goto none;
868
869 min_key.offset++;
870 btrfs_release_path(path);
871 }
872none:
873 btrfs_free_path(path);
874 return -ENOENT;
875}
876
Li Zefan6c282eb2012-06-11 16:03:35 +0800877static struct extent_map *defrag_lookup_extent(struct inode *inode, u64 start)
Liu Bo17ce6ef2012-03-29 09:57:45 -0400878{
879 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason940100a2010-03-10 10:52:59 -0500880 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Li Zefan6c282eb2012-06-11 16:03:35 +0800881 struct extent_map *em;
882 u64 len = PAGE_CACHE_SIZE;
Chris Mason940100a2010-03-10 10:52:59 -0500883
884 /*
885 * hopefully we have this extent in the tree already, try without
886 * the full extent lock
887 */
888 read_lock(&em_tree->lock);
889 em = lookup_extent_mapping(em_tree, start, len);
890 read_unlock(&em_tree->lock);
891
892 if (!em) {
893 /* get the big lock and read metadata off disk */
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100894 lock_extent(io_tree, start, start + len - 1);
Chris Mason940100a2010-03-10 10:52:59 -0500895 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100896 unlock_extent(io_tree, start, start + len - 1);
Chris Mason940100a2010-03-10 10:52:59 -0500897
Dan Carpenter6cf8bfb2010-03-20 11:22:10 +0000898 if (IS_ERR(em))
Li Zefan6c282eb2012-06-11 16:03:35 +0800899 return NULL;
Chris Mason940100a2010-03-10 10:52:59 -0500900 }
901
Li Zefan6c282eb2012-06-11 16:03:35 +0800902 return em;
903}
904
905static bool defrag_check_next_extent(struct inode *inode, struct extent_map *em)
906{
907 struct extent_map *next;
908 bool ret = true;
909
910 /* this is the last extent */
911 if (em->start + em->len >= i_size_read(inode))
912 return false;
913
914 next = defrag_lookup_extent(inode, em->start + em->len);
915 if (!next || next->block_start >= EXTENT_MAP_LAST_BYTE)
916 ret = false;
917
918 free_extent_map(next);
919 return ret;
920}
921
922static int should_defrag_range(struct inode *inode, u64 start, int thresh,
Andrew Mahonea43a2112012-06-19 21:08:32 -0400923 u64 *last_len, u64 *skip, u64 *defrag_end,
924 int compress)
Li Zefan6c282eb2012-06-11 16:03:35 +0800925{
926 struct extent_map *em;
927 int ret = 1;
928 bool next_mergeable = true;
929
930 /*
931 * make sure that once we start defragging an extent, we keep on
932 * defragging it
933 */
934 if (start < *defrag_end)
935 return 1;
936
937 *skip = 0;
938
939 em = defrag_lookup_extent(inode, start);
940 if (!em)
941 return 0;
942
Chris Mason940100a2010-03-10 10:52:59 -0500943 /* this will cover holes, and inline extents */
Liu Bo17ce6ef2012-03-29 09:57:45 -0400944 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
Chris Mason940100a2010-03-10 10:52:59 -0500945 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -0400946 goto out;
947 }
948
Li Zefan6c282eb2012-06-11 16:03:35 +0800949 next_mergeable = defrag_check_next_extent(inode, em);
Chris Mason940100a2010-03-10 10:52:59 -0500950
951 /*
Li Zefan6c282eb2012-06-11 16:03:35 +0800952 * we hit a real extent, if it is big or the next extent is not a
953 * real extent, don't bother defragging it
Chris Mason940100a2010-03-10 10:52:59 -0500954 */
Andrew Mahonea43a2112012-06-19 21:08:32 -0400955 if (!compress && (*last_len == 0 || *last_len >= thresh) &&
Li Zefan6c282eb2012-06-11 16:03:35 +0800956 (em->len >= thresh || !next_mergeable))
Chris Mason940100a2010-03-10 10:52:59 -0500957 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -0400958out:
Chris Mason940100a2010-03-10 10:52:59 -0500959 /*
960 * last_len ends up being a counter of how many bytes we've defragged.
961 * every time we choose not to defrag an extent, we reset *last_len
962 * so that the next tiny extent will force a defrag.
963 *
964 * The end result of this is that tiny extents before a single big
965 * extent will force at least part of that big extent to be defragged.
966 */
967 if (ret) {
Chris Mason940100a2010-03-10 10:52:59 -0500968 *defrag_end = extent_map_end(em);
969 } else {
970 *last_len = 0;
971 *skip = extent_map_end(em);
972 *defrag_end = 0;
973 }
974
975 free_extent_map(em);
976 return ret;
977}
978
Chris Mason4cb53002011-05-24 15:35:30 -0400979/*
980 * it doesn't do much good to defrag one or two pages
981 * at a time. This pulls in a nice chunk of pages
982 * to COW and defrag.
983 *
984 * It also makes sure the delalloc code has enough
985 * dirty data to avoid making new small extents as part
986 * of the defrag
987 *
988 * It's a good idea to start RA on this range
989 * before calling this.
990 */
991static int cluster_pages_for_defrag(struct inode *inode,
992 struct page **pages,
993 unsigned long start_index,
994 int num_pages)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400995{
Chris Mason4cb53002011-05-24 15:35:30 -0400996 unsigned long file_end;
997 u64 isize = i_size_read(inode);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400998 u64 page_start;
999 u64 page_end;
Liu Bo1f12bd02012-03-29 09:57:44 -04001000 u64 page_cnt;
Chris Mason4cb53002011-05-24 15:35:30 -04001001 int ret;
1002 int i;
1003 int i_done;
1004 struct btrfs_ordered_extent *ordered;
1005 struct extent_state *cached_state = NULL;
Miao Xie600a45e2012-02-16 15:01:24 +08001006 struct extent_io_tree *tree;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04001007 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
Chris Mason4cb53002011-05-24 15:35:30 -04001008
Chris Mason4cb53002011-05-24 15:35:30 -04001009 file_end = (isize - 1) >> PAGE_CACHE_SHIFT;
Liu Bo1f12bd02012-03-29 09:57:44 -04001010 if (!isize || start_index > file_end)
1011 return 0;
1012
1013 page_cnt = min_t(u64, (u64)num_pages, (u64)file_end - start_index + 1);
Chris Mason4cb53002011-05-24 15:35:30 -04001014
1015 ret = btrfs_delalloc_reserve_space(inode,
Liu Bo1f12bd02012-03-29 09:57:44 -04001016 page_cnt << PAGE_CACHE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001017 if (ret)
1018 return ret;
Chris Mason4cb53002011-05-24 15:35:30 -04001019 i_done = 0;
Miao Xie600a45e2012-02-16 15:01:24 +08001020 tree = &BTRFS_I(inode)->io_tree;
Chris Mason4cb53002011-05-24 15:35:30 -04001021
1022 /* step one, lock all the pages */
Liu Bo1f12bd02012-03-29 09:57:44 -04001023 for (i = 0; i < page_cnt; i++) {
Chris Mason4cb53002011-05-24 15:35:30 -04001024 struct page *page;
Miao Xie600a45e2012-02-16 15:01:24 +08001025again:
Josef Bacika94733d2011-07-11 10:47:06 -04001026 page = find_or_create_page(inode->i_mapping,
Miao Xie600a45e2012-02-16 15:01:24 +08001027 start_index + i, mask);
Chris Mason4cb53002011-05-24 15:35:30 -04001028 if (!page)
1029 break;
1030
Miao Xie600a45e2012-02-16 15:01:24 +08001031 page_start = page_offset(page);
1032 page_end = page_start + PAGE_CACHE_SIZE - 1;
1033 while (1) {
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001034 lock_extent(tree, page_start, page_end);
Miao Xie600a45e2012-02-16 15:01:24 +08001035 ordered = btrfs_lookup_ordered_extent(inode,
1036 page_start);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001037 unlock_extent(tree, page_start, page_end);
Miao Xie600a45e2012-02-16 15:01:24 +08001038 if (!ordered)
1039 break;
1040
1041 unlock_page(page);
1042 btrfs_start_ordered_extent(inode, ordered, 1);
1043 btrfs_put_ordered_extent(ordered);
1044 lock_page(page);
Liu Bo1f12bd02012-03-29 09:57:44 -04001045 /*
1046 * we unlocked the page above, so we need check if
1047 * it was released or not.
1048 */
1049 if (page->mapping != inode->i_mapping) {
1050 unlock_page(page);
1051 page_cache_release(page);
1052 goto again;
1053 }
Miao Xie600a45e2012-02-16 15:01:24 +08001054 }
1055
Chris Mason4cb53002011-05-24 15:35:30 -04001056 if (!PageUptodate(page)) {
1057 btrfs_readpage(NULL, page);
1058 lock_page(page);
1059 if (!PageUptodate(page)) {
1060 unlock_page(page);
1061 page_cache_release(page);
1062 ret = -EIO;
1063 break;
1064 }
1065 }
Miao Xie600a45e2012-02-16 15:01:24 +08001066
Miao Xie600a45e2012-02-16 15:01:24 +08001067 if (page->mapping != inode->i_mapping) {
1068 unlock_page(page);
1069 page_cache_release(page);
1070 goto again;
1071 }
1072
Chris Mason4cb53002011-05-24 15:35:30 -04001073 pages[i] = page;
1074 i_done++;
1075 }
1076 if (!i_done || ret)
1077 goto out;
1078
1079 if (!(inode->i_sb->s_flags & MS_ACTIVE))
1080 goto out;
1081
1082 /*
1083 * so now we have a nice long stream of locked
1084 * and up to date pages, lets wait on them
1085 */
1086 for (i = 0; i < i_done; i++)
1087 wait_on_page_writeback(pages[i]);
1088
1089 page_start = page_offset(pages[0]);
1090 page_end = page_offset(pages[i_done - 1]) + PAGE_CACHE_SIZE;
1091
1092 lock_extent_bits(&BTRFS_I(inode)->io_tree,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001093 page_start, page_end - 1, 0, &cached_state);
Chris Mason4cb53002011-05-24 15:35:30 -04001094 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start,
1095 page_end - 1, EXTENT_DIRTY | EXTENT_DELALLOC |
Liu Bo9e8a4a82012-09-05 19:10:51 -06001096 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, 0, 0,
1097 &cached_state, GFP_NOFS);
Chris Mason4cb53002011-05-24 15:35:30 -04001098
Liu Bo1f12bd02012-03-29 09:57:44 -04001099 if (i_done != page_cnt) {
Josef Bacik9e0baf62011-07-15 15:16:44 +00001100 spin_lock(&BTRFS_I(inode)->lock);
1101 BTRFS_I(inode)->outstanding_extents++;
1102 spin_unlock(&BTRFS_I(inode)->lock);
Chris Mason4cb53002011-05-24 15:35:30 -04001103 btrfs_delalloc_release_space(inode,
Liu Bo1f12bd02012-03-29 09:57:44 -04001104 (page_cnt - i_done) << PAGE_CACHE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001105 }
1106
1107
Liu Bo9e8a4a82012-09-05 19:10:51 -06001108 set_extent_defrag(&BTRFS_I(inode)->io_tree, page_start, page_end - 1,
1109 &cached_state, GFP_NOFS);
Chris Mason4cb53002011-05-24 15:35:30 -04001110
1111 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
1112 page_start, page_end - 1, &cached_state,
1113 GFP_NOFS);
1114
1115 for (i = 0; i < i_done; i++) {
1116 clear_page_dirty_for_io(pages[i]);
1117 ClearPageChecked(pages[i]);
1118 set_page_extent_mapped(pages[i]);
1119 set_page_dirty(pages[i]);
1120 unlock_page(pages[i]);
1121 page_cache_release(pages[i]);
1122 }
1123 return i_done;
1124out:
1125 for (i = 0; i < i_done; i++) {
1126 unlock_page(pages[i]);
1127 page_cache_release(pages[i]);
1128 }
Liu Bo1f12bd02012-03-29 09:57:44 -04001129 btrfs_delalloc_release_space(inode, page_cnt << PAGE_CACHE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001130 return ret;
1131
1132}
1133
1134int btrfs_defrag_file(struct inode *inode, struct file *file,
1135 struct btrfs_ioctl_defrag_range_args *range,
1136 u64 newer_than, unsigned long max_to_defrag)
1137{
1138 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason4cb53002011-05-24 15:35:30 -04001139 struct file_ra_state *ra = NULL;
1140 unsigned long last_index;
Li Zefan151a31b2011-09-02 15:56:39 +08001141 u64 isize = i_size_read(inode);
Chris Mason940100a2010-03-10 10:52:59 -05001142 u64 last_len = 0;
1143 u64 skip = 0;
1144 u64 defrag_end = 0;
Chris Mason4cb53002011-05-24 15:35:30 -04001145 u64 newer_off = range->start;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001146 unsigned long i;
Li Zefan008873e2011-09-02 15:57:07 +08001147 unsigned long ra_index = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001148 int ret;
Chris Mason4cb53002011-05-24 15:35:30 -04001149 int defrag_count = 0;
Li Zefan1a419d82010-10-25 15:12:50 +08001150 int compress_type = BTRFS_COMPRESS_ZLIB;
Chris Mason4cb53002011-05-24 15:35:30 -04001151 int extent_thresh = range->extent_thresh;
Li Zefan008873e2011-09-02 15:57:07 +08001152 int max_cluster = (256 * 1024) >> PAGE_CACHE_SHIFT;
1153 int cluster = max_cluster;
Chris Mason4cb53002011-05-24 15:35:30 -04001154 u64 new_align = ~((u64)128 * 1024 - 1);
1155 struct page **pages = NULL;
1156
Liu Bo0abd5b12013-04-16 09:20:28 +00001157 if (isize == 0)
1158 return 0;
1159
1160 if (range->start >= isize)
1161 return -EINVAL;
Li Zefan1a419d82010-10-25 15:12:50 +08001162
1163 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS) {
1164 if (range->compress_type > BTRFS_COMPRESS_TYPES)
1165 return -EINVAL;
1166 if (range->compress_type)
1167 compress_type = range->compress_type;
1168 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001169
Liu Bo0abd5b12013-04-16 09:20:28 +00001170 if (extent_thresh == 0)
1171 extent_thresh = 256 * 1024;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001172
Chris Mason4cb53002011-05-24 15:35:30 -04001173 /*
1174 * if we were not given a file, allocate a readahead
1175 * context
1176 */
1177 if (!file) {
1178 ra = kzalloc(sizeof(*ra), GFP_NOFS);
1179 if (!ra)
1180 return -ENOMEM;
1181 file_ra_state_init(ra, inode->i_mapping);
1182 } else {
1183 ra = &file->f_ra;
1184 }
1185
Li Zefan008873e2011-09-02 15:57:07 +08001186 pages = kmalloc(sizeof(struct page *) * max_cluster,
Chris Mason4cb53002011-05-24 15:35:30 -04001187 GFP_NOFS);
1188 if (!pages) {
1189 ret = -ENOMEM;
1190 goto out_ra;
1191 }
1192
1193 /* find the last page to defrag */
Chris Mason1e701a32010-03-11 09:42:04 -05001194 if (range->start + range->len > range->start) {
Li Zefan151a31b2011-09-02 15:56:39 +08001195 last_index = min_t(u64, isize - 1,
Chris Mason1e701a32010-03-11 09:42:04 -05001196 range->start + range->len - 1) >> PAGE_CACHE_SHIFT;
1197 } else {
Li Zefan151a31b2011-09-02 15:56:39 +08001198 last_index = (isize - 1) >> PAGE_CACHE_SHIFT;
Chris Mason1e701a32010-03-11 09:42:04 -05001199 }
1200
Chris Mason4cb53002011-05-24 15:35:30 -04001201 if (newer_than) {
1202 ret = find_new_extents(root, inode, newer_than,
1203 &newer_off, 64 * 1024);
1204 if (!ret) {
1205 range->start = newer_off;
1206 /*
1207 * we always align our defrag to help keep
1208 * the extents in the file evenly spaced
1209 */
1210 i = (newer_off & new_align) >> PAGE_CACHE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001211 } else
1212 goto out_ra;
1213 } else {
1214 i = range->start >> PAGE_CACHE_SHIFT;
1215 }
1216 if (!max_to_defrag)
Liu Bo7ec31b52012-01-26 15:01:12 -05001217 max_to_defrag = last_index + 1;
Chris Mason4cb53002011-05-24 15:35:30 -04001218
Li Zefan2a0f7f52011-10-10 15:43:34 -04001219 /*
1220 * make writeback starts from i, so the defrag range can be
1221 * written sequentially.
1222 */
1223 if (i < inode->i_mapping->writeback_index)
1224 inode->i_mapping->writeback_index = i;
1225
Chris Masonf7f43cc2011-10-11 11:41:40 -04001226 while (i <= last_index && defrag_count < max_to_defrag &&
1227 (i < (i_size_read(inode) + PAGE_CACHE_SIZE - 1) >>
1228 PAGE_CACHE_SHIFT)) {
Chris Mason4cb53002011-05-24 15:35:30 -04001229 /*
1230 * make sure we stop running if someone unmounts
1231 * the FS
1232 */
1233 if (!(inode->i_sb->s_flags & MS_ACTIVE))
1234 break;
1235
David Sterba210549e2013-02-09 23:38:06 +00001236 if (btrfs_defrag_cancelled(root->fs_info)) {
1237 printk(KERN_DEBUG "btrfs: defrag_file cancelled\n");
1238 ret = -EAGAIN;
1239 break;
1240 }
1241
Liu Bo66c26892012-03-29 09:57:45 -04001242 if (!should_defrag_range(inode, (u64)i << PAGE_CACHE_SHIFT,
Li Zefan6c282eb2012-06-11 16:03:35 +08001243 extent_thresh, &last_len, &skip,
Andrew Mahonea43a2112012-06-19 21:08:32 -04001244 &defrag_end, range->flags &
1245 BTRFS_DEFRAG_RANGE_COMPRESS)) {
Chris Mason940100a2010-03-10 10:52:59 -05001246 unsigned long next;
1247 /*
1248 * the should_defrag function tells us how much to skip
1249 * bump our counter by the suggested amount
1250 */
1251 next = (skip + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
1252 i = max(i + 1, next);
1253 continue;
1254 }
Li Zefan008873e2011-09-02 15:57:07 +08001255
1256 if (!newer_than) {
1257 cluster = (PAGE_CACHE_ALIGN(defrag_end) >>
1258 PAGE_CACHE_SHIFT) - i;
1259 cluster = min(cluster, max_cluster);
1260 } else {
1261 cluster = max_cluster;
1262 }
1263
Chris Mason1e701a32010-03-11 09:42:04 -05001264 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)
Li Zefan1a419d82010-10-25 15:12:50 +08001265 BTRFS_I(inode)->force_compress = compress_type;
Chris Mason940100a2010-03-10 10:52:59 -05001266
Li Zefan008873e2011-09-02 15:57:07 +08001267 if (i + cluster > ra_index) {
1268 ra_index = max(i, ra_index);
1269 btrfs_force_ra(inode->i_mapping, ra, file, ra_index,
1270 cluster);
1271 ra_index += max_cluster;
1272 }
Chris Mason940100a2010-03-10 10:52:59 -05001273
Liu Boecb8bea2012-03-29 09:57:44 -04001274 mutex_lock(&inode->i_mutex);
Li Zefan008873e2011-09-02 15:57:07 +08001275 ret = cluster_pages_for_defrag(inode, pages, i, cluster);
Liu Boecb8bea2012-03-29 09:57:44 -04001276 if (ret < 0) {
1277 mutex_unlock(&inode->i_mutex);
Chris Mason4cb53002011-05-24 15:35:30 -04001278 goto out_ra;
Liu Boecb8bea2012-03-29 09:57:44 -04001279 }
Chris Mason940100a2010-03-10 10:52:59 -05001280
Chris Mason4cb53002011-05-24 15:35:30 -04001281 defrag_count += ret;
Namjae Jeond0e1d662012-12-11 16:00:21 -08001282 balance_dirty_pages_ratelimited(inode->i_mapping);
Liu Boecb8bea2012-03-29 09:57:44 -04001283 mutex_unlock(&inode->i_mutex);
Chris Mason4cb53002011-05-24 15:35:30 -04001284
1285 if (newer_than) {
1286 if (newer_off == (u64)-1)
1287 break;
1288
Liu Boe1f041e2012-03-29 09:57:45 -04001289 if (ret > 0)
1290 i += ret;
1291
Chris Mason4cb53002011-05-24 15:35:30 -04001292 newer_off = max(newer_off + 1,
1293 (u64)i << PAGE_CACHE_SHIFT);
1294
1295 ret = find_new_extents(root, inode,
1296 newer_than, &newer_off,
1297 64 * 1024);
1298 if (!ret) {
1299 range->start = newer_off;
1300 i = (newer_off & new_align) >> PAGE_CACHE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001301 } else {
1302 break;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001303 }
Chris Mason4cb53002011-05-24 15:35:30 -04001304 } else {
Li Zefan008873e2011-09-02 15:57:07 +08001305 if (ret > 0) {
Li Zefancbcc8322011-09-02 15:56:25 +08001306 i += ret;
Li Zefan008873e2011-09-02 15:57:07 +08001307 last_len += ret << PAGE_CACHE_SHIFT;
1308 } else {
Li Zefancbcc8322011-09-02 15:56:25 +08001309 i++;
Li Zefan008873e2011-09-02 15:57:07 +08001310 last_len = 0;
1311 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001312 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001313 }
1314
Chris Mason1e701a32010-03-11 09:42:04 -05001315 if ((range->flags & BTRFS_DEFRAG_RANGE_START_IO))
1316 filemap_flush(inode->i_mapping);
1317
1318 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
1319 /* the filemap_flush will queue IO into the worker threads, but
1320 * we have to make sure the IO is actually started and that
1321 * ordered extents get created before we return
1322 */
1323 atomic_inc(&root->fs_info->async_submit_draining);
1324 while (atomic_read(&root->fs_info->nr_async_submits) ||
1325 atomic_read(&root->fs_info->async_delalloc_pages)) {
1326 wait_event(root->fs_info->async_submit_wait,
1327 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
1328 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
1329 }
1330 atomic_dec(&root->fs_info->async_submit_draining);
1331
1332 mutex_lock(&inode->i_mutex);
Li Zefan261507a02010-12-17 14:21:50 +08001333 BTRFS_I(inode)->force_compress = BTRFS_COMPRESS_NONE;
Chris Mason1e701a32010-03-11 09:42:04 -05001334 mutex_unlock(&inode->i_mutex);
1335 }
1336
Li Zefan1a419d82010-10-25 15:12:50 +08001337 if (range->compress_type == BTRFS_COMPRESS_LZO) {
Mitch Harder2b0ce2c2012-07-24 11:58:43 -06001338 btrfs_set_fs_incompat(root->fs_info, COMPRESS_LZO);
Li Zefan1a419d82010-10-25 15:12:50 +08001339 }
1340
Diego Calleja60ccf822011-09-01 16:33:57 +02001341 ret = defrag_count;
Chris Mason940100a2010-03-10 10:52:59 -05001342
Chris Mason4cb53002011-05-24 15:35:30 -04001343out_ra:
1344 if (!file)
1345 kfree(ra);
1346 kfree(pages);
Chris Mason940100a2010-03-10 10:52:59 -05001347 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001348}
1349
Miao Xie198605a2012-11-26 08:43:45 +00001350static noinline int btrfs_ioctl_resize(struct file *file,
Yan, Zheng76dda932009-09-21 16:00:26 -04001351 void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001352{
1353 u64 new_size;
1354 u64 old_size;
1355 u64 devid = 1;
Al Viro496ad9a2013-01-23 17:07:38 -05001356 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001357 struct btrfs_ioctl_vol_args *vol_args;
1358 struct btrfs_trans_handle *trans;
1359 struct btrfs_device *device = NULL;
1360 char *sizestr;
1361 char *devstr = NULL;
1362 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001363 int mod = 0;
1364
Chris Masone441d542009-01-05 16:57:23 -05001365 if (!capable(CAP_SYS_ADMIN))
1366 return -EPERM;
1367
Miao Xie198605a2012-11-26 08:43:45 +00001368 ret = mnt_want_write_file(file);
1369 if (ret)
1370 return ret;
1371
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01001372 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
1373 1)) {
1374 pr_info("btrfs: dev add/delete/balance/replace/resize operation in progress\n");
Miao Xie97547672012-12-21 10:38:50 +00001375 mnt_drop_write_file(file);
Ilya Dryomov2c0c9da2013-01-20 15:57:57 +02001376 return -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001377 }
1378
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01001379 mutex_lock(&root->fs_info->volume_mutex);
Li Zefandae7b662009-04-08 15:06:54 +08001380 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001381 if (IS_ERR(vol_args)) {
1382 ret = PTR_ERR(vol_args);
1383 goto out;
1384 }
Mark Fasheh5516e592008-07-24 12:20:14 -04001385
1386 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001387
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001388 sizestr = vol_args->name;
1389 devstr = strchr(sizestr, ':');
1390 if (devstr) {
1391 char *end;
1392 sizestr = devstr + 1;
1393 *devstr = '\0';
1394 devstr = vol_args->name;
1395 devid = simple_strtoull(devstr, &end, 10);
Miao Xiedfd79822012-12-21 09:21:30 +00001396 if (!devid) {
1397 ret = -EINVAL;
1398 goto out_free;
1399 }
Arnd Hannemann5bb14682011-11-20 07:33:38 -05001400 printk(KERN_INFO "btrfs: resizing devid %llu\n",
Joel Becker21380932009-04-21 12:38:29 -07001401 (unsigned long long)devid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001402 }
Miao Xiedba60f32012-12-21 09:19:51 +00001403
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01001404 device = btrfs_find_device(root->fs_info, devid, NULL, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001405 if (!device) {
Arnd Hannemann5bb14682011-11-20 07:33:38 -05001406 printk(KERN_INFO "btrfs: resizer unable to find device %llu\n",
Joel Becker21380932009-04-21 12:38:29 -07001407 (unsigned long long)devid);
Miao Xiedfd79822012-12-21 09:21:30 +00001408 ret = -ENODEV;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001409 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001410 }
Miao Xiedba60f32012-12-21 09:19:51 +00001411
1412 if (!device->writeable) {
Liu Bo4e42ae12012-06-14 02:23:19 -06001413 printk(KERN_INFO "btrfs: resizer unable to apply on "
Miao Xiedba60f32012-12-21 09:19:51 +00001414 "readonly device %llu\n",
Chris Masona8c4a332012-06-15 20:07:17 -04001415 (unsigned long long)devid);
Miao Xiedfd79822012-12-21 09:21:30 +00001416 ret = -EPERM;
Liu Bo4e42ae12012-06-14 02:23:19 -06001417 goto out_free;
1418 }
1419
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001420 if (!strcmp(sizestr, "max"))
1421 new_size = device->bdev->bd_inode->i_size;
1422 else {
1423 if (sizestr[0] == '-') {
1424 mod = -1;
1425 sizestr++;
1426 } else if (sizestr[0] == '+') {
1427 mod = 1;
1428 sizestr++;
1429 }
Akinobu Mita91748462010-02-28 10:59:11 +00001430 new_size = memparse(sizestr, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001431 if (new_size == 0) {
1432 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001433 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001434 }
1435 }
1436
Stefan Behrens63a212a2012-11-05 18:29:28 +01001437 if (device->is_tgtdev_for_dev_replace) {
Miao Xiedfd79822012-12-21 09:21:30 +00001438 ret = -EPERM;
Stefan Behrens63a212a2012-11-05 18:29:28 +01001439 goto out_free;
1440 }
1441
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001442 old_size = device->total_bytes;
1443
1444 if (mod < 0) {
1445 if (new_size > old_size) {
1446 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001447 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001448 }
1449 new_size = old_size - new_size;
1450 } else if (mod > 0) {
1451 new_size = old_size + new_size;
1452 }
1453
1454 if (new_size < 256 * 1024 * 1024) {
1455 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001456 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001457 }
1458 if (new_size > device->bdev->bd_inode->i_size) {
1459 ret = -EFBIG;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001460 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001461 }
1462
1463 do_div(new_size, root->sectorsize);
1464 new_size *= root->sectorsize;
1465
Josef Bacik606686e2012-06-04 14:03:51 -04001466 printk_in_rcu(KERN_INFO "btrfs: new size for %s is %llu\n",
1467 rcu_str_deref(device->name),
1468 (unsigned long long)new_size);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001469
1470 if (new_size > old_size) {
Yan, Zhenga22285a2010-05-16 10:48:46 -04001471 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001472 if (IS_ERR(trans)) {
1473 ret = PTR_ERR(trans);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001474 goto out_free;
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001475 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001476 ret = btrfs_grow_device(trans, device, new_size);
1477 btrfs_commit_transaction(trans, root);
Mike Fleetwoodece7d202011-11-18 18:55:01 +00001478 } else if (new_size < old_size) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001479 ret = btrfs_shrink_device(device, new_size);
jeff.liu0253f402012-10-27 12:06:39 +00001480 } /* equal, nothing need to do */
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001481
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001482out_free:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001483 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001484out:
1485 mutex_unlock(&root->fs_info->volume_mutex);
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01001486 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
Ilya Dryomov18f39c42013-01-20 15:57:57 +02001487 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001488 return ret;
1489}
1490
Sage Weil72fd0322010-10-29 15:41:32 -04001491static noinline int btrfs_ioctl_snap_create_transid(struct file *file,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001492 char *name, unsigned long fd, int subvol,
1493 u64 *transid, bool readonly,
Miao Xie8696c532013-02-07 06:02:44 +00001494 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001495{
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001496 int namelen;
Chris Mason3de45862008-11-17 21:02:50 -05001497 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001498
Liu Boa874a632012-06-29 03:58:46 -06001499 ret = mnt_want_write_file(file);
1500 if (ret)
1501 goto out;
1502
Sage Weil72fd0322010-10-29 15:41:32 -04001503 namelen = strlen(name);
1504 if (strchr(name, '/')) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001505 ret = -EINVAL;
Liu Boa874a632012-06-29 03:58:46 -06001506 goto out_drop_write;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001507 }
1508
Chris Mason16780ca2012-02-20 22:14:55 -05001509 if (name[0] == '.' &&
1510 (namelen == 1 || (name[1] == '.' && namelen == 2))) {
1511 ret = -EEXIST;
Liu Boa874a632012-06-29 03:58:46 -06001512 goto out_drop_write;
Chris Mason16780ca2012-02-20 22:14:55 -05001513 }
1514
Chris Mason3de45862008-11-17 21:02:50 -05001515 if (subvol) {
Sage Weil72fd0322010-10-29 15:41:32 -04001516 ret = btrfs_mksubvol(&file->f_path, name, namelen,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001517 NULL, transid, readonly, inherit);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001518 } else {
Al Viro2903ff02012-08-28 12:52:22 -04001519 struct fd src = fdget(fd);
Chris Mason3de45862008-11-17 21:02:50 -05001520 struct inode *src_inode;
Al Viro2903ff02012-08-28 12:52:22 -04001521 if (!src.file) {
Chris Mason3de45862008-11-17 21:02:50 -05001522 ret = -EINVAL;
Liu Boa874a632012-06-29 03:58:46 -06001523 goto out_drop_write;
Chris Mason3de45862008-11-17 21:02:50 -05001524 }
1525
Al Viro496ad9a2013-01-23 17:07:38 -05001526 src_inode = file_inode(src.file);
1527 if (src_inode->i_sb != file_inode(file)->i_sb) {
Chris Masond3977122009-01-05 21:25:51 -05001528 printk(KERN_INFO "btrfs: Snapshot src from "
1529 "another FS\n");
Chris Mason3de45862008-11-17 21:02:50 -05001530 ret = -EINVAL;
Al Viroecd18812012-08-26 21:20:24 -04001531 } else {
1532 ret = btrfs_mksubvol(&file->f_path, name, namelen,
1533 BTRFS_I(src_inode)->root,
1534 transid, readonly, inherit);
Chris Mason3de45862008-11-17 21:02:50 -05001535 }
Al Viro2903ff02012-08-28 12:52:22 -04001536 fdput(src);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001537 }
Liu Boa874a632012-06-29 03:58:46 -06001538out_drop_write:
1539 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001540out:
Sage Weil72fd0322010-10-29 15:41:32 -04001541 return ret;
1542}
1543
1544static noinline int btrfs_ioctl_snap_create(struct file *file,
Li Zefanfa0d2b92010-12-20 15:53:28 +08001545 void __user *arg, int subvol)
Sage Weil72fd0322010-10-29 15:41:32 -04001546{
Li Zefanfa0d2b92010-12-20 15:53:28 +08001547 struct btrfs_ioctl_vol_args *vol_args;
Sage Weil72fd0322010-10-29 15:41:32 -04001548 int ret;
1549
Li Zefanfa0d2b92010-12-20 15:53:28 +08001550 vol_args = memdup_user(arg, sizeof(*vol_args));
1551 if (IS_ERR(vol_args))
1552 return PTR_ERR(vol_args);
1553 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Sage Weil72fd0322010-10-29 15:41:32 -04001554
Li Zefanfa0d2b92010-12-20 15:53:28 +08001555 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
Li Zefanb83cc962010-12-20 16:04:08 +08001556 vol_args->fd, subvol,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001557 NULL, false, NULL);
Li Zefanfdfb1e42010-12-10 06:41:56 +00001558
Li Zefanfa0d2b92010-12-20 15:53:28 +08001559 kfree(vol_args);
1560 return ret;
1561}
Li Zefanfdfb1e42010-12-10 06:41:56 +00001562
Li Zefanfa0d2b92010-12-20 15:53:28 +08001563static noinline int btrfs_ioctl_snap_create_v2(struct file *file,
1564 void __user *arg, int subvol)
1565{
1566 struct btrfs_ioctl_vol_args_v2 *vol_args;
1567 int ret;
1568 u64 transid = 0;
1569 u64 *ptr = NULL;
Li Zefanb83cc962010-12-20 16:04:08 +08001570 bool readonly = false;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001571 struct btrfs_qgroup_inherit *inherit = NULL;
Li Zefanfdfb1e42010-12-10 06:41:56 +00001572
Li Zefanfa0d2b92010-12-20 15:53:28 +08001573 vol_args = memdup_user(arg, sizeof(*vol_args));
1574 if (IS_ERR(vol_args))
1575 return PTR_ERR(vol_args);
1576 vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
Sage Weil75eaa0e2010-12-10 00:36:28 +00001577
Li Zefanb83cc962010-12-20 16:04:08 +08001578 if (vol_args->flags &
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001579 ~(BTRFS_SUBVOL_CREATE_ASYNC | BTRFS_SUBVOL_RDONLY |
1580 BTRFS_SUBVOL_QGROUP_INHERIT)) {
Li Zefanb83cc962010-12-20 16:04:08 +08001581 ret = -EOPNOTSUPP;
Li Zefanfa0d2b92010-12-20 15:53:28 +08001582 goto out;
Sage Weil72fd0322010-10-29 15:41:32 -04001583 }
Li Zefanfa0d2b92010-12-20 15:53:28 +08001584
1585 if (vol_args->flags & BTRFS_SUBVOL_CREATE_ASYNC)
1586 ptr = &transid;
Li Zefanb83cc962010-12-20 16:04:08 +08001587 if (vol_args->flags & BTRFS_SUBVOL_RDONLY)
1588 readonly = true;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001589 if (vol_args->flags & BTRFS_SUBVOL_QGROUP_INHERIT) {
1590 if (vol_args->size > PAGE_CACHE_SIZE) {
1591 ret = -EINVAL;
1592 goto out;
1593 }
1594 inherit = memdup_user(vol_args->qgroup_inherit, vol_args->size);
1595 if (IS_ERR(inherit)) {
1596 ret = PTR_ERR(inherit);
1597 goto out;
1598 }
1599 }
Li Zefanfa0d2b92010-12-20 15:53:28 +08001600
1601 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001602 vol_args->fd, subvol, ptr,
Miao Xie8696c532013-02-07 06:02:44 +00001603 readonly, inherit);
Li Zefanfa0d2b92010-12-20 15:53:28 +08001604
1605 if (ret == 0 && ptr &&
1606 copy_to_user(arg +
1607 offsetof(struct btrfs_ioctl_vol_args_v2,
1608 transid), ptr, sizeof(*ptr)))
1609 ret = -EFAULT;
Li Zefanfdfb1e42010-12-10 06:41:56 +00001610out:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001611 kfree(vol_args);
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001612 kfree(inherit);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001613 return ret;
1614}
1615
Li Zefan0caa1022010-12-20 16:30:25 +08001616static noinline int btrfs_ioctl_subvol_getflags(struct file *file,
1617 void __user *arg)
1618{
Al Viro496ad9a2013-01-23 17:07:38 -05001619 struct inode *inode = file_inode(file);
Li Zefan0caa1022010-12-20 16:30:25 +08001620 struct btrfs_root *root = BTRFS_I(inode)->root;
1621 int ret = 0;
1622 u64 flags = 0;
1623
Li Zefan33345d012011-04-20 10:31:50 +08001624 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID)
Li Zefan0caa1022010-12-20 16:30:25 +08001625 return -EINVAL;
1626
1627 down_read(&root->fs_info->subvol_sem);
1628 if (btrfs_root_readonly(root))
1629 flags |= BTRFS_SUBVOL_RDONLY;
1630 up_read(&root->fs_info->subvol_sem);
1631
1632 if (copy_to_user(arg, &flags, sizeof(flags)))
1633 ret = -EFAULT;
1634
1635 return ret;
1636}
1637
1638static noinline int btrfs_ioctl_subvol_setflags(struct file *file,
1639 void __user *arg)
1640{
Al Viro496ad9a2013-01-23 17:07:38 -05001641 struct inode *inode = file_inode(file);
Li Zefan0caa1022010-12-20 16:30:25 +08001642 struct btrfs_root *root = BTRFS_I(inode)->root;
1643 struct btrfs_trans_handle *trans;
1644 u64 root_flags;
1645 u64 flags;
1646 int ret = 0;
1647
Liu Bob9ca0662012-06-29 03:58:49 -06001648 ret = mnt_want_write_file(file);
1649 if (ret)
1650 goto out;
Li Zefan0caa1022010-12-20 16:30:25 +08001651
Liu Bob9ca0662012-06-29 03:58:49 -06001652 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
1653 ret = -EINVAL;
1654 goto out_drop_write;
1655 }
Li Zefan0caa1022010-12-20 16:30:25 +08001656
Liu Bob9ca0662012-06-29 03:58:49 -06001657 if (copy_from_user(&flags, arg, sizeof(flags))) {
1658 ret = -EFAULT;
1659 goto out_drop_write;
1660 }
Li Zefan0caa1022010-12-20 16:30:25 +08001661
Liu Bob9ca0662012-06-29 03:58:49 -06001662 if (flags & BTRFS_SUBVOL_CREATE_ASYNC) {
1663 ret = -EINVAL;
1664 goto out_drop_write;
1665 }
Li Zefan0caa1022010-12-20 16:30:25 +08001666
Liu Bob9ca0662012-06-29 03:58:49 -06001667 if (flags & ~BTRFS_SUBVOL_RDONLY) {
1668 ret = -EOPNOTSUPP;
1669 goto out_drop_write;
1670 }
Li Zefan0caa1022010-12-20 16:30:25 +08001671
Liu Bob9ca0662012-06-29 03:58:49 -06001672 if (!inode_owner_or_capable(inode)) {
1673 ret = -EACCES;
1674 goto out_drop_write;
1675 }
Li Zefanb4dc2b82011-02-16 06:06:34 +00001676
Li Zefan0caa1022010-12-20 16:30:25 +08001677 down_write(&root->fs_info->subvol_sem);
1678
1679 /* nothing to do */
1680 if (!!(flags & BTRFS_SUBVOL_RDONLY) == btrfs_root_readonly(root))
Liu Bob9ca0662012-06-29 03:58:49 -06001681 goto out_drop_sem;
Li Zefan0caa1022010-12-20 16:30:25 +08001682
1683 root_flags = btrfs_root_flags(&root->root_item);
1684 if (flags & BTRFS_SUBVOL_RDONLY)
1685 btrfs_set_root_flags(&root->root_item,
1686 root_flags | BTRFS_ROOT_SUBVOL_RDONLY);
1687 else
1688 btrfs_set_root_flags(&root->root_item,
1689 root_flags & ~BTRFS_ROOT_SUBVOL_RDONLY);
1690
1691 trans = btrfs_start_transaction(root, 1);
1692 if (IS_ERR(trans)) {
1693 ret = PTR_ERR(trans);
1694 goto out_reset;
1695 }
1696
Li Zefanb4dc2b82011-02-16 06:06:34 +00001697 ret = btrfs_update_root(trans, root->fs_info->tree_root,
Li Zefan0caa1022010-12-20 16:30:25 +08001698 &root->root_key, &root->root_item);
1699
1700 btrfs_commit_transaction(trans, root);
1701out_reset:
1702 if (ret)
1703 btrfs_set_root_flags(&root->root_item, root_flags);
Liu Bob9ca0662012-06-29 03:58:49 -06001704out_drop_sem:
Li Zefan0caa1022010-12-20 16:30:25 +08001705 up_write(&root->fs_info->subvol_sem);
Liu Bob9ca0662012-06-29 03:58:49 -06001706out_drop_write:
1707 mnt_drop_write_file(file);
1708out:
Li Zefan0caa1022010-12-20 16:30:25 +08001709 return ret;
1710}
1711
Yan, Zheng76dda932009-09-21 16:00:26 -04001712/*
1713 * helper to check if the subvolume references other subvolumes
1714 */
1715static noinline int may_destroy_subvol(struct btrfs_root *root)
1716{
1717 struct btrfs_path *path;
1718 struct btrfs_key key;
1719 int ret;
1720
1721 path = btrfs_alloc_path();
1722 if (!path)
1723 return -ENOMEM;
1724
1725 key.objectid = root->root_key.objectid;
1726 key.type = BTRFS_ROOT_REF_KEY;
1727 key.offset = (u64)-1;
1728
1729 ret = btrfs_search_slot(NULL, root->fs_info->tree_root,
1730 &key, path, 0, 0);
1731 if (ret < 0)
1732 goto out;
1733 BUG_ON(ret == 0);
1734
1735 ret = 0;
1736 if (path->slots[0] > 0) {
1737 path->slots[0]--;
1738 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1739 if (key.objectid == root->root_key.objectid &&
1740 key.type == BTRFS_ROOT_REF_KEY)
1741 ret = -ENOTEMPTY;
1742 }
1743out:
1744 btrfs_free_path(path);
1745 return ret;
1746}
1747
Chris Masonac8e9812010-02-28 15:39:26 -05001748static noinline int key_in_sk(struct btrfs_key *key,
1749 struct btrfs_ioctl_search_key *sk)
1750{
Chris Masonabc6e132010-03-18 12:10:08 -04001751 struct btrfs_key test;
1752 int ret;
1753
1754 test.objectid = sk->min_objectid;
1755 test.type = sk->min_type;
1756 test.offset = sk->min_offset;
1757
1758 ret = btrfs_comp_cpu_keys(key, &test);
1759 if (ret < 0)
Chris Masonac8e9812010-02-28 15:39:26 -05001760 return 0;
Chris Masonabc6e132010-03-18 12:10:08 -04001761
1762 test.objectid = sk->max_objectid;
1763 test.type = sk->max_type;
1764 test.offset = sk->max_offset;
1765
1766 ret = btrfs_comp_cpu_keys(key, &test);
1767 if (ret > 0)
Chris Masonac8e9812010-02-28 15:39:26 -05001768 return 0;
1769 return 1;
1770}
1771
1772static noinline int copy_to_sk(struct btrfs_root *root,
1773 struct btrfs_path *path,
1774 struct btrfs_key *key,
1775 struct btrfs_ioctl_search_key *sk,
1776 char *buf,
1777 unsigned long *sk_offset,
1778 int *num_found)
1779{
1780 u64 found_transid;
1781 struct extent_buffer *leaf;
1782 struct btrfs_ioctl_search_header sh;
1783 unsigned long item_off;
1784 unsigned long item_len;
1785 int nritems;
1786 int i;
1787 int slot;
Chris Masonac8e9812010-02-28 15:39:26 -05001788 int ret = 0;
1789
1790 leaf = path->nodes[0];
1791 slot = path->slots[0];
1792 nritems = btrfs_header_nritems(leaf);
1793
1794 if (btrfs_header_generation(leaf) > sk->max_transid) {
1795 i = nritems;
1796 goto advance_key;
1797 }
1798 found_transid = btrfs_header_generation(leaf);
1799
1800 for (i = slot; i < nritems; i++) {
1801 item_off = btrfs_item_ptr_offset(leaf, i);
1802 item_len = btrfs_item_size_nr(leaf, i);
1803
Gabriel de Perthuis03b71c62013-05-06 17:40:18 +00001804 btrfs_item_key_to_cpu(leaf, key, i);
1805 if (!key_in_sk(key, sk))
1806 continue;
1807
1808 if (sizeof(sh) + item_len > BTRFS_SEARCH_ARGS_BUFSIZE)
Chris Masonac8e9812010-02-28 15:39:26 -05001809 item_len = 0;
1810
1811 if (sizeof(sh) + item_len + *sk_offset >
1812 BTRFS_SEARCH_ARGS_BUFSIZE) {
1813 ret = 1;
1814 goto overflow;
1815 }
1816
Chris Masonac8e9812010-02-28 15:39:26 -05001817 sh.objectid = key->objectid;
1818 sh.offset = key->offset;
1819 sh.type = key->type;
1820 sh.len = item_len;
1821 sh.transid = found_transid;
1822
1823 /* copy search result header */
1824 memcpy(buf + *sk_offset, &sh, sizeof(sh));
1825 *sk_offset += sizeof(sh);
1826
1827 if (item_len) {
1828 char *p = buf + *sk_offset;
1829 /* copy the item */
1830 read_extent_buffer(leaf, p,
1831 item_off, item_len);
1832 *sk_offset += item_len;
Chris Masonac8e9812010-02-28 15:39:26 -05001833 }
Hugo Millse2156862011-05-14 17:43:41 +00001834 (*num_found)++;
Chris Masonac8e9812010-02-28 15:39:26 -05001835
1836 if (*num_found >= sk->nr_items)
1837 break;
1838 }
1839advance_key:
Chris Masonac8e9812010-02-28 15:39:26 -05001840 ret = 0;
Chris Masonabc6e132010-03-18 12:10:08 -04001841 if (key->offset < (u64)-1 && key->offset < sk->max_offset)
1842 key->offset++;
1843 else if (key->type < (u8)-1 && key->type < sk->max_type) {
1844 key->offset = 0;
1845 key->type++;
1846 } else if (key->objectid < (u64)-1 && key->objectid < sk->max_objectid) {
1847 key->offset = 0;
1848 key->type = 0;
1849 key->objectid++;
1850 } else
1851 ret = 1;
Chris Masonac8e9812010-02-28 15:39:26 -05001852overflow:
Chris Masonac8e9812010-02-28 15:39:26 -05001853 return ret;
1854}
1855
1856static noinline int search_ioctl(struct inode *inode,
1857 struct btrfs_ioctl_search_args *args)
1858{
1859 struct btrfs_root *root;
1860 struct btrfs_key key;
1861 struct btrfs_key max_key;
1862 struct btrfs_path *path;
1863 struct btrfs_ioctl_search_key *sk = &args->key;
1864 struct btrfs_fs_info *info = BTRFS_I(inode)->root->fs_info;
1865 int ret;
1866 int num_found = 0;
1867 unsigned long sk_offset = 0;
1868
1869 path = btrfs_alloc_path();
1870 if (!path)
1871 return -ENOMEM;
1872
1873 if (sk->tree_id == 0) {
1874 /* search the root of the inode that was passed */
1875 root = BTRFS_I(inode)->root;
1876 } else {
1877 key.objectid = sk->tree_id;
1878 key.type = BTRFS_ROOT_ITEM_KEY;
1879 key.offset = (u64)-1;
1880 root = btrfs_read_fs_root_no_name(info, &key);
1881 if (IS_ERR(root)) {
1882 printk(KERN_ERR "could not find root %llu\n",
1883 sk->tree_id);
1884 btrfs_free_path(path);
1885 return -ENOENT;
1886 }
1887 }
1888
1889 key.objectid = sk->min_objectid;
1890 key.type = sk->min_type;
1891 key.offset = sk->min_offset;
1892
1893 max_key.objectid = sk->max_objectid;
1894 max_key.type = sk->max_type;
1895 max_key.offset = sk->max_offset;
1896
1897 path->keep_locks = 1;
1898
1899 while(1) {
Eric Sandeende78b512013-01-31 18:21:12 +00001900 ret = btrfs_search_forward(root, &key, &max_key, path,
Chris Masonac8e9812010-02-28 15:39:26 -05001901 sk->min_transid);
1902 if (ret != 0) {
1903 if (ret > 0)
1904 ret = 0;
1905 goto err;
1906 }
1907 ret = copy_to_sk(root, path, &key, sk, args->buf,
1908 &sk_offset, &num_found);
David Sterbab3b4aa72011-04-21 01:20:15 +02001909 btrfs_release_path(path);
Chris Masonac8e9812010-02-28 15:39:26 -05001910 if (ret || num_found >= sk->nr_items)
1911 break;
1912
1913 }
1914 ret = 0;
1915err:
1916 sk->nr_items = num_found;
1917 btrfs_free_path(path);
1918 return ret;
1919}
1920
1921static noinline int btrfs_ioctl_tree_search(struct file *file,
1922 void __user *argp)
1923{
1924 struct btrfs_ioctl_search_args *args;
1925 struct inode *inode;
1926 int ret;
1927
1928 if (!capable(CAP_SYS_ADMIN))
1929 return -EPERM;
1930
Julia Lawall2354d082010-10-29 15:14:18 -04001931 args = memdup_user(argp, sizeof(*args));
1932 if (IS_ERR(args))
1933 return PTR_ERR(args);
Chris Masonac8e9812010-02-28 15:39:26 -05001934
Al Viro496ad9a2013-01-23 17:07:38 -05001935 inode = file_inode(file);
Chris Masonac8e9812010-02-28 15:39:26 -05001936 ret = search_ioctl(inode, args);
1937 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
1938 ret = -EFAULT;
1939 kfree(args);
1940 return ret;
1941}
1942
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001943/*
Chris Masonac8e9812010-02-28 15:39:26 -05001944 * Search INODE_REFs to identify path name of 'dirid' directory
1945 * in a 'tree_id' tree. and sets path name to 'name'.
1946 */
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001947static noinline int btrfs_search_path_in_tree(struct btrfs_fs_info *info,
1948 u64 tree_id, u64 dirid, char *name)
1949{
1950 struct btrfs_root *root;
1951 struct btrfs_key key;
Chris Masonac8e9812010-02-28 15:39:26 -05001952 char *ptr;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001953 int ret = -1;
1954 int slot;
1955 int len;
1956 int total_len = 0;
1957 struct btrfs_inode_ref *iref;
1958 struct extent_buffer *l;
1959 struct btrfs_path *path;
1960
1961 if (dirid == BTRFS_FIRST_FREE_OBJECTID) {
1962 name[0]='\0';
1963 return 0;
1964 }
1965
1966 path = btrfs_alloc_path();
1967 if (!path)
1968 return -ENOMEM;
1969
Chris Masonac8e9812010-02-28 15:39:26 -05001970 ptr = &name[BTRFS_INO_LOOKUP_PATH_MAX];
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001971
1972 key.objectid = tree_id;
1973 key.type = BTRFS_ROOT_ITEM_KEY;
1974 key.offset = (u64)-1;
1975 root = btrfs_read_fs_root_no_name(info, &key);
1976 if (IS_ERR(root)) {
1977 printk(KERN_ERR "could not find root %llu\n", tree_id);
Chris Mason8ad6fca2010-03-18 12:23:10 -04001978 ret = -ENOENT;
1979 goto out;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001980 }
1981
1982 key.objectid = dirid;
1983 key.type = BTRFS_INODE_REF_KEY;
Chris Mason8ad6fca2010-03-18 12:23:10 -04001984 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001985
1986 while(1) {
1987 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1988 if (ret < 0)
1989 goto out;
1990
1991 l = path->nodes[0];
1992 slot = path->slots[0];
Chris Mason8ad6fca2010-03-18 12:23:10 -04001993 if (ret > 0 && slot > 0)
1994 slot--;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001995 btrfs_item_key_to_cpu(l, &key, slot);
1996
1997 if (ret > 0 && (key.objectid != dirid ||
Chris Masonac8e9812010-02-28 15:39:26 -05001998 key.type != BTRFS_INODE_REF_KEY)) {
1999 ret = -ENOENT;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002000 goto out;
Chris Masonac8e9812010-02-28 15:39:26 -05002001 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002002
2003 iref = btrfs_item_ptr(l, slot, struct btrfs_inode_ref);
2004 len = btrfs_inode_ref_name_len(l, iref);
2005 ptr -= len + 1;
2006 total_len += len + 1;
Chris Masonac8e9812010-02-28 15:39:26 -05002007 if (ptr < name)
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002008 goto out;
2009
2010 *(ptr + len) = '/';
2011 read_extent_buffer(l, ptr,(unsigned long)(iref + 1), len);
2012
2013 if (key.offset == BTRFS_FIRST_FREE_OBJECTID)
2014 break;
2015
David Sterbab3b4aa72011-04-21 01:20:15 +02002016 btrfs_release_path(path);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002017 key.objectid = key.offset;
Chris Mason8ad6fca2010-03-18 12:23:10 -04002018 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002019 dirid = key.objectid;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002020 }
Chris Masonac8e9812010-02-28 15:39:26 -05002021 if (ptr < name)
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002022 goto out;
Li Zefan77906a502011-07-14 03:16:00 +00002023 memmove(name, ptr, total_len);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002024 name[total_len]='\0';
2025 ret = 0;
2026out:
2027 btrfs_free_path(path);
Chris Masonac8e9812010-02-28 15:39:26 -05002028 return ret;
2029}
2030
2031static noinline int btrfs_ioctl_ino_lookup(struct file *file,
2032 void __user *argp)
2033{
2034 struct btrfs_ioctl_ino_lookup_args *args;
2035 struct inode *inode;
2036 int ret;
2037
2038 if (!capable(CAP_SYS_ADMIN))
2039 return -EPERM;
2040
Julia Lawall2354d082010-10-29 15:14:18 -04002041 args = memdup_user(argp, sizeof(*args));
2042 if (IS_ERR(args))
2043 return PTR_ERR(args);
Dan Carpenterc2b96922010-03-20 11:24:15 +00002044
Al Viro496ad9a2013-01-23 17:07:38 -05002045 inode = file_inode(file);
Chris Masonac8e9812010-02-28 15:39:26 -05002046
Chris Mason1b53ac42010-03-18 12:17:05 -04002047 if (args->treeid == 0)
2048 args->treeid = BTRFS_I(inode)->root->root_key.objectid;
2049
Chris Masonac8e9812010-02-28 15:39:26 -05002050 ret = btrfs_search_path_in_tree(BTRFS_I(inode)->root->fs_info,
2051 args->treeid, args->objectid,
2052 args->name);
2053
2054 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
2055 ret = -EFAULT;
2056
2057 kfree(args);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002058 return ret;
2059}
2060
Yan, Zheng76dda932009-09-21 16:00:26 -04002061static noinline int btrfs_ioctl_snap_destroy(struct file *file,
2062 void __user *arg)
2063{
2064 struct dentry *parent = fdentry(file);
2065 struct dentry *dentry;
2066 struct inode *dir = parent->d_inode;
2067 struct inode *inode;
2068 struct btrfs_root *root = BTRFS_I(dir)->root;
2069 struct btrfs_root *dest = NULL;
2070 struct btrfs_ioctl_vol_args *vol_args;
2071 struct btrfs_trans_handle *trans;
Miao Xiec58aaad2013-02-28 10:05:36 +00002072 struct btrfs_block_rsv block_rsv;
2073 u64 qgroup_reserved;
Yan, Zheng76dda932009-09-21 16:00:26 -04002074 int namelen;
2075 int ret;
2076 int err = 0;
2077
Yan, Zheng76dda932009-09-21 16:00:26 -04002078 vol_args = memdup_user(arg, sizeof(*vol_args));
2079 if (IS_ERR(vol_args))
2080 return PTR_ERR(vol_args);
2081
2082 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
2083 namelen = strlen(vol_args->name);
2084 if (strchr(vol_args->name, '/') ||
2085 strncmp(vol_args->name, "..", namelen) == 0) {
2086 err = -EINVAL;
2087 goto out;
2088 }
2089
Al Viroa561be72011-11-23 11:57:51 -05002090 err = mnt_want_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04002091 if (err)
2092 goto out;
2093
David Sterba5c50c9b2013-03-22 18:12:51 +00002094 err = mutex_lock_killable_nested(&dir->i_mutex, I_MUTEX_PARENT);
2095 if (err == -EINTR)
2096 goto out;
Yan, Zheng76dda932009-09-21 16:00:26 -04002097 dentry = lookup_one_len(vol_args->name, parent, namelen);
2098 if (IS_ERR(dentry)) {
2099 err = PTR_ERR(dentry);
2100 goto out_unlock_dir;
2101 }
2102
2103 if (!dentry->d_inode) {
2104 err = -ENOENT;
2105 goto out_dput;
2106 }
2107
2108 inode = dentry->d_inode;
Sage Weil4260f7c2010-10-29 15:46:43 -04002109 dest = BTRFS_I(inode)->root;
2110 if (!capable(CAP_SYS_ADMIN)){
2111 /*
2112 * Regular user. Only allow this with a special mount
2113 * option, when the user has write+exec access to the
2114 * subvol root, and when rmdir(2) would have been
2115 * allowed.
2116 *
2117 * Note that this is _not_ check that the subvol is
2118 * empty or doesn't contain data that we wouldn't
2119 * otherwise be able to delete.
2120 *
2121 * Users who want to delete empty subvols should try
2122 * rmdir(2).
2123 */
2124 err = -EPERM;
2125 if (!btrfs_test_opt(root, USER_SUBVOL_RM_ALLOWED))
2126 goto out_dput;
2127
2128 /*
2129 * Do not allow deletion if the parent dir is the same
2130 * as the dir to be deleted. That means the ioctl
2131 * must be called on the dentry referencing the root
2132 * of the subvol, not a random directory contained
2133 * within it.
2134 */
2135 err = -EINVAL;
2136 if (root == dest)
2137 goto out_dput;
2138
2139 err = inode_permission(inode, MAY_WRITE | MAY_EXEC);
2140 if (err)
2141 goto out_dput;
Sage Weil4260f7c2010-10-29 15:46:43 -04002142 }
2143
Miao Xie5c39da52012-10-22 11:39:53 +00002144 /* check if subvolume may be deleted by a user */
2145 err = btrfs_may_delete(dir, dentry, 1);
2146 if (err)
2147 goto out_dput;
2148
Li Zefan33345d012011-04-20 10:31:50 +08002149 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
Yan, Zheng76dda932009-09-21 16:00:26 -04002150 err = -EINVAL;
2151 goto out_dput;
2152 }
2153
Yan, Zheng76dda932009-09-21 16:00:26 -04002154 mutex_lock(&inode->i_mutex);
2155 err = d_invalidate(dentry);
2156 if (err)
2157 goto out_unlock;
2158
2159 down_write(&root->fs_info->subvol_sem);
2160
2161 err = may_destroy_subvol(dest);
2162 if (err)
2163 goto out_up_write;
2164
Miao Xiec58aaad2013-02-28 10:05:36 +00002165 btrfs_init_block_rsv(&block_rsv, BTRFS_BLOCK_RSV_TEMP);
2166 /*
2167 * One for dir inode, two for dir entries, two for root
2168 * ref/backref.
2169 */
2170 err = btrfs_subvolume_reserve_metadata(root, &block_rsv,
2171 5, &qgroup_reserved);
2172 if (err)
2173 goto out_up_write;
2174
Yan, Zhenga22285a2010-05-16 10:48:46 -04002175 trans = btrfs_start_transaction(root, 0);
2176 if (IS_ERR(trans)) {
2177 err = PTR_ERR(trans);
Miao Xiec58aaad2013-02-28 10:05:36 +00002178 goto out_release;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002179 }
Miao Xiec58aaad2013-02-28 10:05:36 +00002180 trans->block_rsv = &block_rsv;
2181 trans->bytes_reserved = block_rsv.size;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002182
Yan, Zheng76dda932009-09-21 16:00:26 -04002183 ret = btrfs_unlink_subvol(trans, root, dir,
2184 dest->root_key.objectid,
2185 dentry->d_name.name,
2186 dentry->d_name.len);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002187 if (ret) {
2188 err = ret;
2189 btrfs_abort_transaction(trans, root, ret);
2190 goto out_end_trans;
2191 }
Yan, Zheng76dda932009-09-21 16:00:26 -04002192
2193 btrfs_record_root_in_trans(trans, dest);
2194
2195 memset(&dest->root_item.drop_progress, 0,
2196 sizeof(dest->root_item.drop_progress));
2197 dest->root_item.drop_level = 0;
2198 btrfs_set_root_refs(&dest->root_item, 0);
2199
Yan, Zhengd68fc572010-05-16 10:49:58 -04002200 if (!xchg(&dest->orphan_item_inserted, 1)) {
2201 ret = btrfs_insert_orphan_item(trans,
2202 root->fs_info->tree_root,
2203 dest->root_key.objectid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002204 if (ret) {
2205 btrfs_abort_transaction(trans, root, ret);
2206 err = ret;
2207 goto out_end_trans;
2208 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04002209 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002210out_end_trans:
Miao Xiec58aaad2013-02-28 10:05:36 +00002211 trans->block_rsv = NULL;
2212 trans->bytes_reserved = 0;
Sage Weil531cb132010-10-29 15:41:32 -04002213 ret = btrfs_end_transaction(trans, root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002214 if (ret && !err)
2215 err = ret;
Yan, Zheng76dda932009-09-21 16:00:26 -04002216 inode->i_flags |= S_DEAD;
Miao Xiec58aaad2013-02-28 10:05:36 +00002217out_release:
2218 btrfs_subvolume_release_metadata(root, &block_rsv, qgroup_reserved);
Yan, Zheng76dda932009-09-21 16:00:26 -04002219out_up_write:
2220 up_write(&root->fs_info->subvol_sem);
2221out_unlock:
2222 mutex_unlock(&inode->i_mutex);
2223 if (!err) {
Yan, Zhengefefb142009-10-09 09:25:16 -04002224 shrink_dcache_sb(root->fs_info->sb);
Yan, Zheng76dda932009-09-21 16:00:26 -04002225 btrfs_invalidate_inodes(dest);
2226 d_delete(dentry);
Liu Bofa6ac872013-02-20 14:10:23 +00002227
2228 /* the last ref */
2229 if (dest->cache_inode) {
2230 iput(dest->cache_inode);
2231 dest->cache_inode = NULL;
2232 }
Yan, Zheng76dda932009-09-21 16:00:26 -04002233 }
2234out_dput:
2235 dput(dentry);
2236out_unlock_dir:
2237 mutex_unlock(&dir->i_mutex);
Al Viro2a79f172011-12-09 08:06:57 -05002238 mnt_drop_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04002239out:
2240 kfree(vol_args);
2241 return err;
2242}
2243
Chris Mason1e701a32010-03-11 09:42:04 -05002244static int btrfs_ioctl_defrag(struct file *file, void __user *argp)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002245{
Al Viro496ad9a2013-01-23 17:07:38 -05002246 struct inode *inode = file_inode(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002247 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason1e701a32010-03-11 09:42:04 -05002248 struct btrfs_ioctl_defrag_range_args *range;
Yan Zhengc146afa2008-11-12 14:34:12 -05002249 int ret;
2250
Ilya Dryomov25122d12013-01-20 15:57:57 +02002251 ret = mnt_want_write_file(file);
2252 if (ret)
2253 return ret;
Li Zefanb83cc962010-12-20 16:04:08 +08002254
Ilya Dryomov25122d12013-01-20 15:57:57 +02002255 if (btrfs_root_readonly(root)) {
2256 ret = -EROFS;
2257 goto out;
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002258 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002259
2260 switch (inode->i_mode & S_IFMT) {
2261 case S_IFDIR:
Chris Masone441d542009-01-05 16:57:23 -05002262 if (!capable(CAP_SYS_ADMIN)) {
2263 ret = -EPERM;
2264 goto out;
2265 }
Eric Sandeende78b512013-01-31 18:21:12 +00002266 ret = btrfs_defrag_root(root);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04002267 if (ret)
2268 goto out;
Eric Sandeende78b512013-01-31 18:21:12 +00002269 ret = btrfs_defrag_root(root->fs_info->extent_root);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002270 break;
2271 case S_IFREG:
Chris Masone441d542009-01-05 16:57:23 -05002272 if (!(file->f_mode & FMODE_WRITE)) {
2273 ret = -EINVAL;
2274 goto out;
2275 }
Chris Mason1e701a32010-03-11 09:42:04 -05002276
2277 range = kzalloc(sizeof(*range), GFP_KERNEL);
2278 if (!range) {
2279 ret = -ENOMEM;
2280 goto out;
2281 }
2282
2283 if (argp) {
2284 if (copy_from_user(range, argp,
2285 sizeof(*range))) {
2286 ret = -EFAULT;
2287 kfree(range);
Dan Carpenter683be162010-03-20 11:24:48 +00002288 goto out;
Chris Mason1e701a32010-03-11 09:42:04 -05002289 }
2290 /* compression requires us to start the IO */
2291 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
2292 range->flags |= BTRFS_DEFRAG_RANGE_START_IO;
2293 range->extent_thresh = (u32)-1;
2294 }
2295 } else {
2296 /* the rest are all set to zero by kzalloc */
2297 range->len = (u64)-1;
2298 }
Al Viro496ad9a2013-01-23 17:07:38 -05002299 ret = btrfs_defrag_file(file_inode(file), file,
Chris Mason4cb53002011-05-24 15:35:30 -04002300 range, 0, 0);
2301 if (ret > 0)
2302 ret = 0;
Chris Mason1e701a32010-03-11 09:42:04 -05002303 kfree(range);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002304 break;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04002305 default:
2306 ret = -EINVAL;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002307 }
Chris Masone441d542009-01-05 16:57:23 -05002308out:
Ilya Dryomov25122d12013-01-20 15:57:57 +02002309 mnt_drop_write_file(file);
Chris Masone441d542009-01-05 16:57:23 -05002310 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002311}
2312
Christoph Hellwigb2950862008-12-02 09:54:17 -05002313static long btrfs_ioctl_add_dev(struct btrfs_root *root, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002314{
2315 struct btrfs_ioctl_vol_args *vol_args;
2316 int ret;
2317
Chris Masone441d542009-01-05 16:57:23 -05002318 if (!capable(CAP_SYS_ADMIN))
2319 return -EPERM;
2320
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002321 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
2322 1)) {
2323 pr_info("btrfs: dev add/delete/balance/replace/resize operation in progress\n");
Ilya Dryomov2c0c9da2013-01-20 15:57:57 +02002324 return -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002325 }
2326
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002327 mutex_lock(&root->fs_info->volume_mutex);
Li Zefandae7b662009-04-08 15:06:54 +08002328 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002329 if (IS_ERR(vol_args)) {
2330 ret = PTR_ERR(vol_args);
2331 goto out;
2332 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002333
Mark Fasheh5516e592008-07-24 12:20:14 -04002334 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002335 ret = btrfs_init_new_device(root, vol_args->name);
2336
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002337 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002338out:
2339 mutex_unlock(&root->fs_info->volume_mutex);
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002340 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002341 return ret;
2342}
2343
Miao Xieda249272012-11-26 08:44:50 +00002344static long btrfs_ioctl_rm_dev(struct file *file, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002345{
Al Viro496ad9a2013-01-23 17:07:38 -05002346 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002347 struct btrfs_ioctl_vol_args *vol_args;
2348 int ret;
2349
Chris Masone441d542009-01-05 16:57:23 -05002350 if (!capable(CAP_SYS_ADMIN))
2351 return -EPERM;
2352
Miao Xieda249272012-11-26 08:44:50 +00002353 ret = mnt_want_write_file(file);
2354 if (ret)
2355 return ret;
Yan Zhengc146afa2008-11-12 14:34:12 -05002356
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002357 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
2358 1)) {
2359 pr_info("btrfs: dev add/delete/balance/replace/resize operation in progress\n");
Miao Xieda249272012-11-26 08:44:50 +00002360 mnt_drop_write_file(file);
Ilya Dryomov2c0c9da2013-01-20 15:57:57 +02002361 return -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002362 }
2363
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002364 mutex_lock(&root->fs_info->volume_mutex);
Li Zefandae7b662009-04-08 15:06:54 +08002365 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002366 if (IS_ERR(vol_args)) {
2367 ret = PTR_ERR(vol_args);
2368 goto out;
2369 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002370
Mark Fasheh5516e592008-07-24 12:20:14 -04002371 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002372 ret = btrfs_rm_device(root, vol_args->name);
2373
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002374 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002375out:
2376 mutex_unlock(&root->fs_info->volume_mutex);
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002377 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
Ilya Dryomov4ac20c72013-01-20 15:57:57 +02002378 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002379 return ret;
2380}
2381
Jan Schmidt475f6382011-03-11 15:41:01 +01002382static long btrfs_ioctl_fs_info(struct btrfs_root *root, void __user *arg)
2383{
Li Zefan027ed2f2011-06-08 08:27:56 +00002384 struct btrfs_ioctl_fs_info_args *fi_args;
Jan Schmidt475f6382011-03-11 15:41:01 +01002385 struct btrfs_device *device;
2386 struct btrfs_device *next;
2387 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
Li Zefan027ed2f2011-06-08 08:27:56 +00002388 int ret = 0;
Jan Schmidt475f6382011-03-11 15:41:01 +01002389
2390 if (!capable(CAP_SYS_ADMIN))
2391 return -EPERM;
2392
Li Zefan027ed2f2011-06-08 08:27:56 +00002393 fi_args = kzalloc(sizeof(*fi_args), GFP_KERNEL);
2394 if (!fi_args)
2395 return -ENOMEM;
2396
2397 fi_args->num_devices = fs_devices->num_devices;
2398 memcpy(&fi_args->fsid, root->fs_info->fsid, sizeof(fi_args->fsid));
Jan Schmidt475f6382011-03-11 15:41:01 +01002399
2400 mutex_lock(&fs_devices->device_list_mutex);
2401 list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) {
Li Zefan027ed2f2011-06-08 08:27:56 +00002402 if (device->devid > fi_args->max_id)
2403 fi_args->max_id = device->devid;
Jan Schmidt475f6382011-03-11 15:41:01 +01002404 }
2405 mutex_unlock(&fs_devices->device_list_mutex);
2406
Li Zefan027ed2f2011-06-08 08:27:56 +00002407 if (copy_to_user(arg, fi_args, sizeof(*fi_args)))
2408 ret = -EFAULT;
Jan Schmidt475f6382011-03-11 15:41:01 +01002409
Li Zefan027ed2f2011-06-08 08:27:56 +00002410 kfree(fi_args);
2411 return ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01002412}
2413
2414static long btrfs_ioctl_dev_info(struct btrfs_root *root, void __user *arg)
2415{
2416 struct btrfs_ioctl_dev_info_args *di_args;
2417 struct btrfs_device *dev;
2418 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
2419 int ret = 0;
2420 char *s_uuid = NULL;
2421 char empty_uuid[BTRFS_UUID_SIZE] = {0};
2422
2423 if (!capable(CAP_SYS_ADMIN))
2424 return -EPERM;
2425
2426 di_args = memdup_user(arg, sizeof(*di_args));
2427 if (IS_ERR(di_args))
2428 return PTR_ERR(di_args);
2429
2430 if (memcmp(empty_uuid, di_args->uuid, BTRFS_UUID_SIZE) != 0)
2431 s_uuid = di_args->uuid;
2432
2433 mutex_lock(&fs_devices->device_list_mutex);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01002434 dev = btrfs_find_device(root->fs_info, di_args->devid, s_uuid, NULL);
Jan Schmidt475f6382011-03-11 15:41:01 +01002435
2436 if (!dev) {
2437 ret = -ENODEV;
2438 goto out;
2439 }
2440
2441 di_args->devid = dev->devid;
2442 di_args->bytes_used = dev->bytes_used;
2443 di_args->total_bytes = dev->total_bytes;
2444 memcpy(di_args->uuid, dev->uuid, sizeof(di_args->uuid));
Jim Meyeringa27202f2012-04-26 18:36:56 +02002445 if (dev->name) {
Josef Bacik606686e2012-06-04 14:03:51 -04002446 struct rcu_string *name;
2447
2448 rcu_read_lock();
2449 name = rcu_dereference(dev->name);
2450 strncpy(di_args->path, name->str, sizeof(di_args->path));
2451 rcu_read_unlock();
Jim Meyeringa27202f2012-04-26 18:36:56 +02002452 di_args->path[sizeof(di_args->path) - 1] = 0;
2453 } else {
Stefan Behrens99ba55a2012-03-19 16:17:22 +01002454 di_args->path[0] = '\0';
Jim Meyeringa27202f2012-04-26 18:36:56 +02002455 }
Jan Schmidt475f6382011-03-11 15:41:01 +01002456
2457out:
David Sterba55793c02013-04-26 15:20:23 +00002458 mutex_unlock(&fs_devices->device_list_mutex);
Jan Schmidt475f6382011-03-11 15:41:01 +01002459 if (ret == 0 && copy_to_user(arg, di_args, sizeof(*di_args)))
2460 ret = -EFAULT;
2461
2462 kfree(di_args);
2463 return ret;
2464}
2465
Yan, Zheng76dda932009-09-21 16:00:26 -04002466static noinline long btrfs_ioctl_clone(struct file *file, unsigned long srcfd,
2467 u64 off, u64 olen, u64 destoff)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002468{
Al Viro496ad9a2013-01-23 17:07:38 -05002469 struct inode *inode = file_inode(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002470 struct btrfs_root *root = BTRFS_I(inode)->root;
Al Viro2903ff02012-08-28 12:52:22 -04002471 struct fd src_file;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002472 struct inode *src;
2473 struct btrfs_trans_handle *trans;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002474 struct btrfs_path *path;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002475 struct extent_buffer *leaf;
Yan Zhengae01a0a2008-08-04 23:23:47 -04002476 char *buf;
2477 struct btrfs_key key;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002478 u32 nritems;
2479 int slot;
Yan Zhengae01a0a2008-08-04 23:23:47 -04002480 int ret;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002481 u64 len = olen;
2482 u64 bs = root->fs_info->sb->s_blocksize;
Chris Masond20f7042008-12-08 16:58:54 -05002483
Sage Weilc5c9cd42008-11-12 14:32:25 -05002484 /*
2485 * TODO:
2486 * - split compressed inline extents. annoying: we need to
2487 * decompress into destination's address_space (the file offset
2488 * may change, so source mapping won't do), then recompress (or
2489 * otherwise reinsert) a subrange.
2490 * - allow ranges within the same file to be cloned (provided
2491 * they don't overlap)?
2492 */
2493
Chris Masone441d542009-01-05 16:57:23 -05002494 /* the destination must be opened for writing */
Dan Rosenberg2ebc3462010-07-19 16:58:20 -04002495 if (!(file->f_mode & FMODE_WRITE) || (file->f_flags & O_APPEND))
Chris Masone441d542009-01-05 16:57:23 -05002496 return -EINVAL;
2497
Li Zefanb83cc962010-12-20 16:04:08 +08002498 if (btrfs_root_readonly(root))
2499 return -EROFS;
2500
Al Viroa561be72011-11-23 11:57:51 -05002501 ret = mnt_want_write_file(file);
Yan Zhengc146afa2008-11-12 14:34:12 -05002502 if (ret)
2503 return ret;
2504
Al Viro2903ff02012-08-28 12:52:22 -04002505 src_file = fdget(srcfd);
2506 if (!src_file.file) {
Yan Zhengab67b7c2008-12-19 10:58:39 -05002507 ret = -EBADF;
2508 goto out_drop_write;
2509 }
Dan Rosenberg5dc64162010-05-15 11:27:37 -04002510
David Sterba362a20c2011-08-01 18:11:57 +02002511 ret = -EXDEV;
Al Viro2903ff02012-08-28 12:52:22 -04002512 if (src_file.file->f_path.mnt != file->f_path.mnt)
David Sterba362a20c2011-08-01 18:11:57 +02002513 goto out_fput;
2514
Al Viro496ad9a2013-01-23 17:07:38 -05002515 src = file_inode(src_file.file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002516
Sage Weilc5c9cd42008-11-12 14:32:25 -05002517 ret = -EINVAL;
2518 if (src == inode)
2519 goto out_fput;
2520
Dan Rosenberg5dc64162010-05-15 11:27:37 -04002521 /* the src must be open for reading */
Al Viro2903ff02012-08-28 12:52:22 -04002522 if (!(src_file.file->f_mode & FMODE_READ))
Dan Rosenberg5dc64162010-05-15 11:27:37 -04002523 goto out_fput;
2524
Li Zefan0e7b8242011-09-18 10:20:46 -04002525 /* don't make the dst file partly checksummed */
2526 if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
2527 (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM))
2528 goto out_fput;
2529
Yan Zhengae01a0a2008-08-04 23:23:47 -04002530 ret = -EISDIR;
2531 if (S_ISDIR(src->i_mode) || S_ISDIR(inode->i_mode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002532 goto out_fput;
2533
Yan Zhengae01a0a2008-08-04 23:23:47 -04002534 ret = -EXDEV;
David Sterba362a20c2011-08-01 18:11:57 +02002535 if (src->i_sb != inode->i_sb)
Yan Zhengae01a0a2008-08-04 23:23:47 -04002536 goto out_fput;
2537
2538 ret = -ENOMEM;
2539 buf = vmalloc(btrfs_level_size(root, 0));
2540 if (!buf)
2541 goto out_fput;
2542
2543 path = btrfs_alloc_path();
2544 if (!path) {
2545 vfree(buf);
2546 goto out_fput;
2547 }
2548 path->reada = 2;
2549
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002550 if (inode < src) {
Sage Weilfccdae42010-10-29 15:37:33 -04002551 mutex_lock_nested(&inode->i_mutex, I_MUTEX_PARENT);
2552 mutex_lock_nested(&src->i_mutex, I_MUTEX_CHILD);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002553 } else {
Sage Weilfccdae42010-10-29 15:37:33 -04002554 mutex_lock_nested(&src->i_mutex, I_MUTEX_PARENT);
2555 mutex_lock_nested(&inode->i_mutex, I_MUTEX_CHILD);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002556 }
2557
Sage Weilc5c9cd42008-11-12 14:32:25 -05002558 /* determine range to clone */
2559 ret = -EINVAL;
Dan Rosenberg2ebc3462010-07-19 16:58:20 -04002560 if (off + len > src->i_size || off + len < off)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002561 goto out_unlock;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002562 if (len == 0)
2563 olen = len = src->i_size - off;
2564 /* if we extend to eof, continue to block boundary */
2565 if (off + len == src->i_size)
Li Zefan2a6b8da2010-11-19 01:36:10 +00002566 len = ALIGN(src->i_size, bs) - off;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002567
2568 /* verify the end result is block aligned */
Li Zefan2a6b8da2010-11-19 01:36:10 +00002569 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs) ||
2570 !IS_ALIGNED(destoff, bs))
Sage Weilc5c9cd42008-11-12 14:32:25 -05002571 goto out_unlock;
2572
Li Zefand525e8a2011-09-11 10:52:25 -04002573 if (destoff > inode->i_size) {
2574 ret = btrfs_cont_expand(inode, inode->i_size, destoff);
2575 if (ret)
2576 goto out_unlock;
2577 }
2578
Li Zefan71ef0782011-09-18 10:20:46 -04002579 /* truncate page cache pages from target inode range */
2580 truncate_inode_pages_range(&inode->i_data, destoff,
2581 PAGE_CACHE_ALIGN(destoff + len) - 1);
2582
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002583 /* do any pending delalloc/csum calc on src, one way or
2584 another, and lock file content */
2585 while (1) {
Zheng Yan31840ae2008-09-23 13:14:14 -04002586 struct btrfs_ordered_extent *ordered;
Liu Boaa42ffd2012-09-18 03:52:23 -06002587 lock_extent(&BTRFS_I(src)->io_tree, off, off + len - 1);
2588 ordered = btrfs_lookup_first_ordered_extent(src, off + len - 1);
Sage Weil9a019192010-10-29 15:37:33 -04002589 if (!ordered &&
Liu Boaa42ffd2012-09-18 03:52:23 -06002590 !test_range_bit(&BTRFS_I(src)->io_tree, off, off + len - 1,
2591 EXTENT_DELALLOC, 0, NULL))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002592 break;
Liu Boaa42ffd2012-09-18 03:52:23 -06002593 unlock_extent(&BTRFS_I(src)->io_tree, off, off + len - 1);
Yan Zhengae01a0a2008-08-04 23:23:47 -04002594 if (ordered)
2595 btrfs_put_ordered_extent(ordered);
Sage Weil9a019192010-10-29 15:37:33 -04002596 btrfs_wait_ordered_range(src, off, len);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002597 }
2598
Sage Weilc5c9cd42008-11-12 14:32:25 -05002599 /* clone data */
Li Zefan33345d012011-04-20 10:31:50 +08002600 key.objectid = btrfs_ino(src);
Yan Zhengae01a0a2008-08-04 23:23:47 -04002601 key.type = BTRFS_EXTENT_DATA_KEY;
2602 key.offset = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002603
2604 while (1) {
2605 /*
2606 * note the key will change type as we walk through the
2607 * tree.
2608 */
David Sterba362a20c2011-08-01 18:11:57 +02002609 ret = btrfs_search_slot(NULL, BTRFS_I(src)->root, &key, path,
2610 0, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002611 if (ret < 0)
2612 goto out;
2613
Yan Zhengae01a0a2008-08-04 23:23:47 -04002614 nritems = btrfs_header_nritems(path->nodes[0]);
2615 if (path->slots[0] >= nritems) {
David Sterba362a20c2011-08-01 18:11:57 +02002616 ret = btrfs_next_leaf(BTRFS_I(src)->root, path);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002617 if (ret < 0)
2618 goto out;
2619 if (ret > 0)
2620 break;
Yan Zhengae01a0a2008-08-04 23:23:47 -04002621 nritems = btrfs_header_nritems(path->nodes[0]);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002622 }
2623 leaf = path->nodes[0];
2624 slot = path->slots[0];
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002625
Yan Zhengae01a0a2008-08-04 23:23:47 -04002626 btrfs_item_key_to_cpu(leaf, &key, slot);
Chris Masond20f7042008-12-08 16:58:54 -05002627 if (btrfs_key_type(&key) > BTRFS_EXTENT_DATA_KEY ||
Li Zefan33345d012011-04-20 10:31:50 +08002628 key.objectid != btrfs_ino(src))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002629 break;
2630
Sage Weilc5c9cd42008-11-12 14:32:25 -05002631 if (btrfs_key_type(&key) == BTRFS_EXTENT_DATA_KEY) {
2632 struct btrfs_file_extent_item *extent;
2633 int type;
Zheng Yan31840ae2008-09-23 13:14:14 -04002634 u32 size;
2635 struct btrfs_key new_key;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002636 u64 disko = 0, diskl = 0;
2637 u64 datao = 0, datal = 0;
2638 u8 comp;
Sage Weilb5384d42010-06-12 22:31:14 +00002639 u64 endoff;
Zheng Yan31840ae2008-09-23 13:14:14 -04002640
2641 size = btrfs_item_size_nr(leaf, slot);
2642 read_extent_buffer(leaf, buf,
2643 btrfs_item_ptr_offset(leaf, slot),
2644 size);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002645
2646 extent = btrfs_item_ptr(leaf, slot,
2647 struct btrfs_file_extent_item);
2648 comp = btrfs_file_extent_compression(leaf, extent);
2649 type = btrfs_file_extent_type(leaf, extent);
Chris Masonc8a894d2009-06-27 21:07:03 -04002650 if (type == BTRFS_FILE_EXTENT_REG ||
2651 type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masond3977122009-01-05 21:25:51 -05002652 disko = btrfs_file_extent_disk_bytenr(leaf,
2653 extent);
2654 diskl = btrfs_file_extent_disk_num_bytes(leaf,
2655 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002656 datao = btrfs_file_extent_offset(leaf, extent);
Chris Masond3977122009-01-05 21:25:51 -05002657 datal = btrfs_file_extent_num_bytes(leaf,
2658 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002659 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
2660 /* take upper bound, may be compressed */
2661 datal = btrfs_file_extent_ram_bytes(leaf,
2662 extent);
2663 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002664 btrfs_release_path(path);
Zheng Yan31840ae2008-09-23 13:14:14 -04002665
Sage Weil050006a2010-10-29 15:37:33 -04002666 if (key.offset + datal <= off ||
Liu Boaa42ffd2012-09-18 03:52:23 -06002667 key.offset >= off + len - 1)
Sage Weilc5c9cd42008-11-12 14:32:25 -05002668 goto next;
2669
Zheng Yan31840ae2008-09-23 13:14:14 -04002670 memcpy(&new_key, &key, sizeof(new_key));
Li Zefan33345d012011-04-20 10:31:50 +08002671 new_key.objectid = btrfs_ino(inode);
Li Zefan4d728ec2011-01-26 14:10:43 +08002672 if (off <= key.offset)
2673 new_key.offset = key.offset + destoff - off;
2674 else
2675 new_key.offset = destoff;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002676
Sage Weilb6f34092011-09-20 14:48:51 -04002677 /*
2678 * 1 - adjusting old extent (we may have to split it)
2679 * 1 - add new extent
2680 * 1 - inode update
2681 */
2682 trans = btrfs_start_transaction(root, 3);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002683 if (IS_ERR(trans)) {
2684 ret = PTR_ERR(trans);
2685 goto out;
2686 }
2687
Chris Masonc8a894d2009-06-27 21:07:03 -04002688 if (type == BTRFS_FILE_EXTENT_REG ||
2689 type == BTRFS_FILE_EXTENT_PREALLOC) {
Li Zefand72c0842011-09-11 10:52:25 -04002690 /*
2691 * a | --- range to clone ---| b
2692 * | ------------- extent ------------- |
2693 */
2694
2695 /* substract range b */
2696 if (key.offset + datal > off + len)
2697 datal = off + len - key.offset;
2698
2699 /* substract range a */
Yan, Zhenga22285a2010-05-16 10:48:46 -04002700 if (off > key.offset) {
2701 datao += off - key.offset;
2702 datal -= off - key.offset;
2703 }
2704
Josef Bacik5dc562c2012-08-17 13:14:17 -04002705 ret = btrfs_drop_extents(trans, root, inode,
Yan, Zhenga22285a2010-05-16 10:48:46 -04002706 new_key.offset,
2707 new_key.offset + datal,
Josef Bacik26714852012-08-29 12:24:27 -04002708 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002709 if (ret) {
2710 btrfs_abort_transaction(trans, root,
2711 ret);
2712 btrfs_end_transaction(trans, root);
2713 goto out;
2714 }
Yan, Zhenga22285a2010-05-16 10:48:46 -04002715
Sage Weilc5c9cd42008-11-12 14:32:25 -05002716 ret = btrfs_insert_empty_item(trans, root, path,
2717 &new_key, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002718 if (ret) {
2719 btrfs_abort_transaction(trans, root,
2720 ret);
2721 btrfs_end_transaction(trans, root);
2722 goto out;
2723 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05002724
2725 leaf = path->nodes[0];
2726 slot = path->slots[0];
2727 write_extent_buffer(leaf, buf,
2728 btrfs_item_ptr_offset(leaf, slot),
2729 size);
2730
2731 extent = btrfs_item_ptr(leaf, slot,
2732 struct btrfs_file_extent_item);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002733
Sage Weilc5c9cd42008-11-12 14:32:25 -05002734 /* disko == 0 means it's a hole */
2735 if (!disko)
2736 datao = 0;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002737
2738 btrfs_set_file_extent_offset(leaf, extent,
2739 datao);
2740 btrfs_set_file_extent_num_bytes(leaf, extent,
2741 datal);
2742 if (disko) {
2743 inode_add_bytes(inode, datal);
2744 ret = btrfs_inc_extent_ref(trans, root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002745 disko, diskl, 0,
2746 root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08002747 btrfs_ino(inode),
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002748 new_key.offset - datao,
2749 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002750 if (ret) {
2751 btrfs_abort_transaction(trans,
2752 root,
2753 ret);
2754 btrfs_end_transaction(trans,
2755 root);
2756 goto out;
2757
2758 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05002759 }
2760 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
2761 u64 skip = 0;
2762 u64 trim = 0;
2763 if (off > key.offset) {
2764 skip = off - key.offset;
2765 new_key.offset += skip;
2766 }
Chris Masond3977122009-01-05 21:25:51 -05002767
Liu Boaa42ffd2012-09-18 03:52:23 -06002768 if (key.offset + datal > off + len)
2769 trim = key.offset + datal - (off + len);
Chris Masond3977122009-01-05 21:25:51 -05002770
Sage Weilc5c9cd42008-11-12 14:32:25 -05002771 if (comp && (skip || trim)) {
Sage Weilc5c9cd42008-11-12 14:32:25 -05002772 ret = -EINVAL;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002773 btrfs_end_transaction(trans, root);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002774 goto out;
2775 }
2776 size -= skip + trim;
2777 datal -= skip + trim;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002778
Josef Bacik5dc562c2012-08-17 13:14:17 -04002779 ret = btrfs_drop_extents(trans, root, inode,
Yan, Zhenga22285a2010-05-16 10:48:46 -04002780 new_key.offset,
2781 new_key.offset + datal,
Josef Bacik26714852012-08-29 12:24:27 -04002782 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002783 if (ret) {
2784 btrfs_abort_transaction(trans, root,
2785 ret);
2786 btrfs_end_transaction(trans, root);
2787 goto out;
2788 }
Yan, Zhenga22285a2010-05-16 10:48:46 -04002789
Sage Weilc5c9cd42008-11-12 14:32:25 -05002790 ret = btrfs_insert_empty_item(trans, root, path,
2791 &new_key, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002792 if (ret) {
2793 btrfs_abort_transaction(trans, root,
2794 ret);
2795 btrfs_end_transaction(trans, root);
2796 goto out;
2797 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05002798
2799 if (skip) {
Chris Masond3977122009-01-05 21:25:51 -05002800 u32 start =
2801 btrfs_file_extent_calc_inline_size(0);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002802 memmove(buf+start, buf+start+skip,
2803 datal);
2804 }
2805
2806 leaf = path->nodes[0];
2807 slot = path->slots[0];
2808 write_extent_buffer(leaf, buf,
2809 btrfs_item_ptr_offset(leaf, slot),
2810 size);
2811 inode_add_bytes(inode, datal);
2812 }
2813
2814 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02002815 btrfs_release_path(path);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002816
Josef Bacik0c4d2d92012-04-05 15:03:02 -04002817 inode_inc_iversion(inode);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002818 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
Sage Weilb5384d42010-06-12 22:31:14 +00002819
2820 /*
2821 * we round up to the block size at eof when
2822 * determining which extents to clone above,
2823 * but shouldn't round up the file size
2824 */
2825 endoff = new_key.offset + datal;
Li Zefan5f3888f2010-11-19 01:36:34 +00002826 if (endoff > destoff+olen)
2827 endoff = destoff+olen;
Sage Weilb5384d42010-06-12 22:31:14 +00002828 if (endoff > inode->i_size)
2829 btrfs_i_size_write(inode, endoff);
2830
Yan, Zhenga22285a2010-05-16 10:48:46 -04002831 ret = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002832 if (ret) {
2833 btrfs_abort_transaction(trans, root, ret);
2834 btrfs_end_transaction(trans, root);
2835 goto out;
2836 }
2837 ret = btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002838 }
Chris Masond3977122009-01-05 21:25:51 -05002839next:
David Sterbab3b4aa72011-04-21 01:20:15 +02002840 btrfs_release_path(path);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002841 key.offset++;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002842 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002843 ret = 0;
2844out:
David Sterbab3b4aa72011-04-21 01:20:15 +02002845 btrfs_release_path(path);
Liu Boaa42ffd2012-09-18 03:52:23 -06002846 unlock_extent(&BTRFS_I(src)->io_tree, off, off + len - 1);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002847out_unlock:
2848 mutex_unlock(&src->i_mutex);
2849 mutex_unlock(&inode->i_mutex);
Yan Zhengae01a0a2008-08-04 23:23:47 -04002850 vfree(buf);
2851 btrfs_free_path(path);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002852out_fput:
Al Viro2903ff02012-08-28 12:52:22 -04002853 fdput(src_file);
Yan Zhengab67b7c2008-12-19 10:58:39 -05002854out_drop_write:
Al Viro2a79f172011-12-09 08:06:57 -05002855 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002856 return ret;
2857}
2858
Christoph Hellwig7a865e82008-12-02 09:52:24 -05002859static long btrfs_ioctl_clone_range(struct file *file, void __user *argp)
Sage Weilc5c9cd42008-11-12 14:32:25 -05002860{
2861 struct btrfs_ioctl_clone_range_args args;
2862
Christoph Hellwig7a865e82008-12-02 09:52:24 -05002863 if (copy_from_user(&args, argp, sizeof(args)))
Sage Weilc5c9cd42008-11-12 14:32:25 -05002864 return -EFAULT;
2865 return btrfs_ioctl_clone(file, args.src_fd, args.src_offset,
2866 args.src_length, args.dest_offset);
2867}
2868
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002869/*
2870 * there are many ways the trans_start and trans_end ioctls can lead
2871 * to deadlocks. They should only be used by applications that
2872 * basically own the machine, and have a very in depth understanding
2873 * of all the possible deadlocks and enospc problems.
2874 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05002875static long btrfs_ioctl_trans_start(struct file *file)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002876{
Al Viro496ad9a2013-01-23 17:07:38 -05002877 struct inode *inode = file_inode(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002878 struct btrfs_root *root = BTRFS_I(inode)->root;
2879 struct btrfs_trans_handle *trans;
Sage Weil1ab86ae2009-09-29 18:38:44 -04002880 int ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002881
Sage Weil1ab86ae2009-09-29 18:38:44 -04002882 ret = -EPERM;
Christoph Hellwigdf5b5522008-06-11 21:53:58 -04002883 if (!capable(CAP_SYS_ADMIN))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002884 goto out;
Sage Weil1ab86ae2009-09-29 18:38:44 -04002885
2886 ret = -EINPROGRESS;
2887 if (file->private_data)
2888 goto out;
Sage Weil9ca9ee02008-08-04 10:41:27 -04002889
Li Zefanb83cc962010-12-20 16:04:08 +08002890 ret = -EROFS;
2891 if (btrfs_root_readonly(root))
2892 goto out;
2893
Al Viroa561be72011-11-23 11:57:51 -05002894 ret = mnt_want_write_file(file);
Yan Zhengc146afa2008-11-12 14:34:12 -05002895 if (ret)
2896 goto out;
2897
Josef Bacika4abeea2011-04-11 17:25:13 -04002898 atomic_inc(&root->fs_info->open_ioctl_trans);
Sage Weil9ca9ee02008-08-04 10:41:27 -04002899
Sage Weil1ab86ae2009-09-29 18:38:44 -04002900 ret = -ENOMEM;
Josef Bacik7a7eaa42011-04-13 12:54:33 -04002901 trans = btrfs_start_ioctl_transaction(root);
Tsutomu Itohabd30bb2011-01-24 00:57:10 +00002902 if (IS_ERR(trans))
Sage Weil1ab86ae2009-09-29 18:38:44 -04002903 goto out_drop;
2904
2905 file->private_data = trans;
2906 return 0;
2907
2908out_drop:
Josef Bacika4abeea2011-04-11 17:25:13 -04002909 atomic_dec(&root->fs_info->open_ioctl_trans);
Al Viro2a79f172011-12-09 08:06:57 -05002910 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002911out:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002912 return ret;
2913}
2914
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002915static long btrfs_ioctl_default_subvol(struct file *file, void __user *argp)
2916{
Al Viro496ad9a2013-01-23 17:07:38 -05002917 struct inode *inode = file_inode(file);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002918 struct btrfs_root *root = BTRFS_I(inode)->root;
2919 struct btrfs_root *new_root;
2920 struct btrfs_dir_item *di;
2921 struct btrfs_trans_handle *trans;
2922 struct btrfs_path *path;
2923 struct btrfs_key location;
2924 struct btrfs_disk_key disk_key;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002925 u64 objectid = 0;
2926 u64 dir_id;
Miao Xie3c04ce02012-11-26 08:43:07 +00002927 int ret;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002928
2929 if (!capable(CAP_SYS_ADMIN))
2930 return -EPERM;
2931
Miao Xie3c04ce02012-11-26 08:43:07 +00002932 ret = mnt_want_write_file(file);
2933 if (ret)
2934 return ret;
2935
2936 if (copy_from_user(&objectid, argp, sizeof(objectid))) {
2937 ret = -EFAULT;
2938 goto out;
2939 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002940
2941 if (!objectid)
2942 objectid = root->root_key.objectid;
2943
2944 location.objectid = objectid;
2945 location.type = BTRFS_ROOT_ITEM_KEY;
2946 location.offset = (u64)-1;
2947
2948 new_root = btrfs_read_fs_root_no_name(root->fs_info, &location);
Miao Xie3c04ce02012-11-26 08:43:07 +00002949 if (IS_ERR(new_root)) {
2950 ret = PTR_ERR(new_root);
2951 goto out;
2952 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002953
Miao Xie3c04ce02012-11-26 08:43:07 +00002954 if (btrfs_root_refs(&new_root->root_item) == 0) {
2955 ret = -ENOENT;
2956 goto out;
2957 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002958
2959 path = btrfs_alloc_path();
Miao Xie3c04ce02012-11-26 08:43:07 +00002960 if (!path) {
2961 ret = -ENOMEM;
2962 goto out;
2963 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002964 path->leave_spinning = 1;
2965
2966 trans = btrfs_start_transaction(root, 1);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002967 if (IS_ERR(trans)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002968 btrfs_free_path(path);
Miao Xie3c04ce02012-11-26 08:43:07 +00002969 ret = PTR_ERR(trans);
2970 goto out;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002971 }
2972
David Sterba6c417612011-04-13 15:41:04 +02002973 dir_id = btrfs_super_root_dir(root->fs_info->super_copy);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002974 di = btrfs_lookup_dir_item(trans, root->fs_info->tree_root, path,
2975 dir_id, "default", 7, 1);
Dan Carpentercf1e99a2010-05-29 09:47:24 +00002976 if (IS_ERR_OR_NULL(di)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002977 btrfs_free_path(path);
2978 btrfs_end_transaction(trans, root);
2979 printk(KERN_ERR "Umm, you don't have the default dir item, "
2980 "this isn't going to work\n");
Miao Xie3c04ce02012-11-26 08:43:07 +00002981 ret = -ENOENT;
2982 goto out;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002983 }
2984
2985 btrfs_cpu_key_to_disk(&disk_key, &new_root->root_key);
2986 btrfs_set_dir_item_key(path->nodes[0], di, &disk_key);
2987 btrfs_mark_buffer_dirty(path->nodes[0]);
2988 btrfs_free_path(path);
2989
Mitch Harder2b0ce2c2012-07-24 11:58:43 -06002990 btrfs_set_fs_incompat(root->fs_info, DEFAULT_SUBVOL);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002991 btrfs_end_transaction(trans, root);
Miao Xie3c04ce02012-11-26 08:43:07 +00002992out:
2993 mnt_drop_write_file(file);
2994 return ret;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002995}
2996
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02002997void btrfs_get_block_group_info(struct list_head *groups_list,
2998 struct btrfs_ioctl_space_info *space)
Josef Bacikbf5fc0932010-09-29 11:22:36 -04002999{
3000 struct btrfs_block_group_cache *block_group;
3001
3002 space->total_bytes = 0;
3003 space->used_bytes = 0;
3004 space->flags = 0;
3005 list_for_each_entry(block_group, groups_list, list) {
3006 space->flags = block_group->flags;
3007 space->total_bytes += block_group->key.offset;
3008 space->used_bytes +=
3009 btrfs_block_group_used(&block_group->item);
3010 }
3011}
3012
Eric Sandeen48a3b632013-04-25 20:41:01 +00003013static long btrfs_ioctl_space_info(struct btrfs_root *root, void __user *arg)
Josef Bacik1406e432010-01-13 18:19:06 +00003014{
3015 struct btrfs_ioctl_space_args space_args;
3016 struct btrfs_ioctl_space_info space;
3017 struct btrfs_ioctl_space_info *dest;
Chris Mason7fde62b2010-03-16 15:40:10 -04003018 struct btrfs_ioctl_space_info *dest_orig;
Daniel J Blueman13f26962011-04-11 15:56:31 +00003019 struct btrfs_ioctl_space_info __user *user_dest;
Josef Bacik1406e432010-01-13 18:19:06 +00003020 struct btrfs_space_info *info;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003021 u64 types[] = {BTRFS_BLOCK_GROUP_DATA,
3022 BTRFS_BLOCK_GROUP_SYSTEM,
3023 BTRFS_BLOCK_GROUP_METADATA,
3024 BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA};
3025 int num_types = 4;
Chris Mason7fde62b2010-03-16 15:40:10 -04003026 int alloc_size;
Josef Bacik1406e432010-01-13 18:19:06 +00003027 int ret = 0;
Dan Rosenberg51788b12011-02-14 16:04:23 -05003028 u64 slot_count = 0;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003029 int i, c;
Josef Bacik1406e432010-01-13 18:19:06 +00003030
3031 if (copy_from_user(&space_args,
3032 (struct btrfs_ioctl_space_args __user *)arg,
3033 sizeof(space_args)))
3034 return -EFAULT;
3035
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003036 for (i = 0; i < num_types; i++) {
3037 struct btrfs_space_info *tmp;
3038
3039 info = NULL;
3040 rcu_read_lock();
3041 list_for_each_entry_rcu(tmp, &root->fs_info->space_info,
3042 list) {
3043 if (tmp->flags == types[i]) {
3044 info = tmp;
3045 break;
3046 }
3047 }
3048 rcu_read_unlock();
3049
3050 if (!info)
3051 continue;
3052
3053 down_read(&info->groups_sem);
3054 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
3055 if (!list_empty(&info->block_groups[c]))
3056 slot_count++;
3057 }
3058 up_read(&info->groups_sem);
3059 }
Josef Bacik1406e432010-01-13 18:19:06 +00003060
Chris Mason7fde62b2010-03-16 15:40:10 -04003061 /* space_slots == 0 means they are asking for a count */
3062 if (space_args.space_slots == 0) {
3063 space_args.total_spaces = slot_count;
3064 goto out;
3065 }
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003066
Dan Rosenberg51788b12011-02-14 16:04:23 -05003067 slot_count = min_t(u64, space_args.space_slots, slot_count);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003068
Chris Mason7fde62b2010-03-16 15:40:10 -04003069 alloc_size = sizeof(*dest) * slot_count;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003070
Chris Mason7fde62b2010-03-16 15:40:10 -04003071 /* we generally have at most 6 or so space infos, one for each raid
3072 * level. So, a whole page should be more than enough for everyone
3073 */
3074 if (alloc_size > PAGE_CACHE_SIZE)
3075 return -ENOMEM;
3076
3077 space_args.total_spaces = 0;
3078 dest = kmalloc(alloc_size, GFP_NOFS);
3079 if (!dest)
3080 return -ENOMEM;
3081 dest_orig = dest;
3082
3083 /* now we have a buffer to copy into */
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003084 for (i = 0; i < num_types; i++) {
3085 struct btrfs_space_info *tmp;
Chris Mason7fde62b2010-03-16 15:40:10 -04003086
Dan Rosenberg51788b12011-02-14 16:04:23 -05003087 if (!slot_count)
3088 break;
3089
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003090 info = NULL;
3091 rcu_read_lock();
3092 list_for_each_entry_rcu(tmp, &root->fs_info->space_info,
3093 list) {
3094 if (tmp->flags == types[i]) {
3095 info = tmp;
3096 break;
3097 }
3098 }
3099 rcu_read_unlock();
Chris Mason7fde62b2010-03-16 15:40:10 -04003100
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003101 if (!info)
3102 continue;
3103 down_read(&info->groups_sem);
3104 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
3105 if (!list_empty(&info->block_groups[c])) {
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02003106 btrfs_get_block_group_info(
3107 &info->block_groups[c], &space);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003108 memcpy(dest, &space, sizeof(space));
3109 dest++;
3110 space_args.total_spaces++;
Dan Rosenberg51788b12011-02-14 16:04:23 -05003111 slot_count--;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003112 }
Dan Rosenberg51788b12011-02-14 16:04:23 -05003113 if (!slot_count)
3114 break;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003115 }
3116 up_read(&info->groups_sem);
Josef Bacik1406e432010-01-13 18:19:06 +00003117 }
Josef Bacik1406e432010-01-13 18:19:06 +00003118
Daniel J Blueman2eec6c82012-04-26 00:37:14 +08003119 user_dest = (struct btrfs_ioctl_space_info __user *)
Chris Mason7fde62b2010-03-16 15:40:10 -04003120 (arg + sizeof(struct btrfs_ioctl_space_args));
3121
3122 if (copy_to_user(user_dest, dest_orig, alloc_size))
3123 ret = -EFAULT;
3124
3125 kfree(dest_orig);
3126out:
3127 if (ret == 0 && copy_to_user(arg, &space_args, sizeof(space_args)))
Josef Bacik1406e432010-01-13 18:19:06 +00003128 ret = -EFAULT;
3129
3130 return ret;
3131}
3132
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003133/*
3134 * there are many ways the trans_start and trans_end ioctls can lead
3135 * to deadlocks. They should only be used by applications that
3136 * basically own the machine, and have a very in depth understanding
3137 * of all the possible deadlocks and enospc problems.
3138 */
3139long btrfs_ioctl_trans_end(struct file *file)
3140{
Al Viro496ad9a2013-01-23 17:07:38 -05003141 struct inode *inode = file_inode(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003142 struct btrfs_root *root = BTRFS_I(inode)->root;
3143 struct btrfs_trans_handle *trans;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003144
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003145 trans = file->private_data;
Sage Weil1ab86ae2009-09-29 18:38:44 -04003146 if (!trans)
3147 return -EINVAL;
Christoph Hellwigb2141072008-09-05 16:43:31 -04003148 file->private_data = NULL;
Sage Weil9ca9ee02008-08-04 10:41:27 -04003149
Sage Weil1ab86ae2009-09-29 18:38:44 -04003150 btrfs_end_transaction(trans, root);
3151
Josef Bacika4abeea2011-04-11 17:25:13 -04003152 atomic_dec(&root->fs_info->open_ioctl_trans);
Sage Weil9ca9ee02008-08-04 10:41:27 -04003153
Al Viro2a79f172011-12-09 08:06:57 -05003154 mnt_drop_write_file(file);
Sage Weil1ab86ae2009-09-29 18:38:44 -04003155 return 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003156}
3157
Miao Xie9a8c28b2012-11-26 08:40:43 +00003158static noinline long btrfs_ioctl_start_sync(struct btrfs_root *root,
3159 void __user *argp)
Sage Weil46204592010-10-29 15:41:32 -04003160{
Sage Weil46204592010-10-29 15:41:32 -04003161 struct btrfs_trans_handle *trans;
3162 u64 transid;
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00003163 int ret;
Sage Weil46204592010-10-29 15:41:32 -04003164
Miao Xied4edf392013-02-20 09:17:06 +00003165 trans = btrfs_attach_transaction_barrier(root);
Miao Xieff7c1d32012-11-26 08:41:29 +00003166 if (IS_ERR(trans)) {
3167 if (PTR_ERR(trans) != -ENOENT)
3168 return PTR_ERR(trans);
3169
3170 /* No running transaction, don't bother */
3171 transid = root->fs_info->last_trans_committed;
3172 goto out;
3173 }
Sage Weil46204592010-10-29 15:41:32 -04003174 transid = trans->transid;
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00003175 ret = btrfs_commit_transaction_async(trans, root, 0);
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00003176 if (ret) {
3177 btrfs_end_transaction(trans, root);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00003178 return ret;
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00003179 }
Miao Xieff7c1d32012-11-26 08:41:29 +00003180out:
Sage Weil46204592010-10-29 15:41:32 -04003181 if (argp)
3182 if (copy_to_user(argp, &transid, sizeof(transid)))
3183 return -EFAULT;
3184 return 0;
3185}
3186
Miao Xie9a8c28b2012-11-26 08:40:43 +00003187static noinline long btrfs_ioctl_wait_sync(struct btrfs_root *root,
3188 void __user *argp)
Sage Weil46204592010-10-29 15:41:32 -04003189{
Sage Weil46204592010-10-29 15:41:32 -04003190 u64 transid;
3191
3192 if (argp) {
3193 if (copy_from_user(&transid, argp, sizeof(transid)))
3194 return -EFAULT;
3195 } else {
3196 transid = 0; /* current trans */
3197 }
3198 return btrfs_wait_for_commit(root, transid);
3199}
3200
Miao Xieb8e95482012-11-26 08:48:01 +00003201static long btrfs_ioctl_scrub(struct file *file, void __user *arg)
Jan Schmidt475f6382011-03-11 15:41:01 +01003202{
Al Viro496ad9a2013-01-23 17:07:38 -05003203 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Jan Schmidt475f6382011-03-11 15:41:01 +01003204 struct btrfs_ioctl_scrub_args *sa;
Miao Xieb8e95482012-11-26 08:48:01 +00003205 int ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01003206
3207 if (!capable(CAP_SYS_ADMIN))
3208 return -EPERM;
3209
3210 sa = memdup_user(arg, sizeof(*sa));
3211 if (IS_ERR(sa))
3212 return PTR_ERR(sa);
3213
Miao Xieb8e95482012-11-26 08:48:01 +00003214 if (!(sa->flags & BTRFS_SCRUB_READONLY)) {
3215 ret = mnt_want_write_file(file);
3216 if (ret)
3217 goto out;
3218 }
3219
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01003220 ret = btrfs_scrub_dev(root->fs_info, sa->devid, sa->start, sa->end,
Stefan Behrens63a212a2012-11-05 18:29:28 +01003221 &sa->progress, sa->flags & BTRFS_SCRUB_READONLY,
3222 0);
Jan Schmidt475f6382011-03-11 15:41:01 +01003223
3224 if (copy_to_user(arg, sa, sizeof(*sa)))
3225 ret = -EFAULT;
3226
Miao Xieb8e95482012-11-26 08:48:01 +00003227 if (!(sa->flags & BTRFS_SCRUB_READONLY))
3228 mnt_drop_write_file(file);
3229out:
Jan Schmidt475f6382011-03-11 15:41:01 +01003230 kfree(sa);
3231 return ret;
3232}
3233
3234static long btrfs_ioctl_scrub_cancel(struct btrfs_root *root, void __user *arg)
3235{
3236 if (!capable(CAP_SYS_ADMIN))
3237 return -EPERM;
3238
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01003239 return btrfs_scrub_cancel(root->fs_info);
Jan Schmidt475f6382011-03-11 15:41:01 +01003240}
3241
3242static long btrfs_ioctl_scrub_progress(struct btrfs_root *root,
3243 void __user *arg)
3244{
3245 struct btrfs_ioctl_scrub_args *sa;
3246 int ret;
3247
3248 if (!capable(CAP_SYS_ADMIN))
3249 return -EPERM;
3250
3251 sa = memdup_user(arg, sizeof(*sa));
3252 if (IS_ERR(sa))
3253 return PTR_ERR(sa);
3254
3255 ret = btrfs_scrub_progress(root, sa->devid, &sa->progress);
3256
3257 if (copy_to_user(arg, sa, sizeof(*sa)))
3258 ret = -EFAULT;
3259
3260 kfree(sa);
3261 return ret;
3262}
3263
Stefan Behrensc11d2c22012-05-25 16:06:09 +02003264static long btrfs_ioctl_get_dev_stats(struct btrfs_root *root,
David Sterbab27f7c02012-06-22 06:30:39 -06003265 void __user *arg)
Stefan Behrensc11d2c22012-05-25 16:06:09 +02003266{
3267 struct btrfs_ioctl_get_dev_stats *sa;
3268 int ret;
3269
Stefan Behrensc11d2c22012-05-25 16:06:09 +02003270 sa = memdup_user(arg, sizeof(*sa));
3271 if (IS_ERR(sa))
3272 return PTR_ERR(sa);
3273
David Sterbab27f7c02012-06-22 06:30:39 -06003274 if ((sa->flags & BTRFS_DEV_STATS_RESET) && !capable(CAP_SYS_ADMIN)) {
3275 kfree(sa);
3276 return -EPERM;
3277 }
3278
3279 ret = btrfs_get_dev_stats(root, sa);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02003280
3281 if (copy_to_user(arg, sa, sizeof(*sa)))
3282 ret = -EFAULT;
3283
3284 kfree(sa);
3285 return ret;
3286}
3287
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01003288static long btrfs_ioctl_dev_replace(struct btrfs_root *root, void __user *arg)
3289{
3290 struct btrfs_ioctl_dev_replace_args *p;
3291 int ret;
3292
3293 if (!capable(CAP_SYS_ADMIN))
3294 return -EPERM;
3295
3296 p = memdup_user(arg, sizeof(*p));
3297 if (IS_ERR(p))
3298 return PTR_ERR(p);
3299
3300 switch (p->cmd) {
3301 case BTRFS_IOCTL_DEV_REPLACE_CMD_START:
3302 if (atomic_xchg(
3303 &root->fs_info->mutually_exclusive_operation_running,
3304 1)) {
3305 pr_info("btrfs: dev add/delete/balance/replace/resize operation in progress\n");
3306 ret = -EINPROGRESS;
3307 } else {
3308 ret = btrfs_dev_replace_start(root, p);
3309 atomic_set(
3310 &root->fs_info->mutually_exclusive_operation_running,
3311 0);
3312 }
3313 break;
3314 case BTRFS_IOCTL_DEV_REPLACE_CMD_STATUS:
3315 btrfs_dev_replace_status(root->fs_info, p);
3316 ret = 0;
3317 break;
3318 case BTRFS_IOCTL_DEV_REPLACE_CMD_CANCEL:
3319 ret = btrfs_dev_replace_cancel(root->fs_info, p);
3320 break;
3321 default:
3322 ret = -EINVAL;
3323 break;
3324 }
3325
3326 if (copy_to_user(arg, p, sizeof(*p)))
3327 ret = -EFAULT;
3328
3329 kfree(p);
3330 return ret;
3331}
3332
Jan Schmidtd7728c92011-07-07 16:48:38 +02003333static long btrfs_ioctl_ino_to_path(struct btrfs_root *root, void __user *arg)
3334{
3335 int ret = 0;
3336 int i;
Chris Mason740c3d22011-11-02 15:48:34 -04003337 u64 rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003338 int size;
Chris Mason806468f2011-11-06 03:07:10 -05003339 struct btrfs_ioctl_ino_path_args *ipa = NULL;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003340 struct inode_fs_paths *ipath = NULL;
3341 struct btrfs_path *path;
3342
Kusanagi Kouichi82b22ac2013-01-28 11:33:31 +00003343 if (!capable(CAP_DAC_READ_SEARCH))
Jan Schmidtd7728c92011-07-07 16:48:38 +02003344 return -EPERM;
3345
3346 path = btrfs_alloc_path();
3347 if (!path) {
3348 ret = -ENOMEM;
3349 goto out;
3350 }
3351
3352 ipa = memdup_user(arg, sizeof(*ipa));
3353 if (IS_ERR(ipa)) {
3354 ret = PTR_ERR(ipa);
3355 ipa = NULL;
3356 goto out;
3357 }
3358
3359 size = min_t(u32, ipa->size, 4096);
3360 ipath = init_ipath(size, root, path);
3361 if (IS_ERR(ipath)) {
3362 ret = PTR_ERR(ipath);
3363 ipath = NULL;
3364 goto out;
3365 }
3366
3367 ret = paths_from_inode(ipa->inum, ipath);
3368 if (ret < 0)
3369 goto out;
3370
3371 for (i = 0; i < ipath->fspath->elem_cnt; ++i) {
Jeff Mahoney745c4d82011-11-20 07:31:57 -05003372 rel_ptr = ipath->fspath->val[i] -
3373 (u64)(unsigned long)ipath->fspath->val;
Chris Mason740c3d22011-11-02 15:48:34 -04003374 ipath->fspath->val[i] = rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003375 }
3376
Jeff Mahoney745c4d82011-11-20 07:31:57 -05003377 ret = copy_to_user((void *)(unsigned long)ipa->fspath,
3378 (void *)(unsigned long)ipath->fspath, size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02003379 if (ret) {
3380 ret = -EFAULT;
3381 goto out;
3382 }
3383
3384out:
3385 btrfs_free_path(path);
3386 free_ipath(ipath);
3387 kfree(ipa);
3388
3389 return ret;
3390}
3391
3392static int build_ino_list(u64 inum, u64 offset, u64 root, void *ctx)
3393{
3394 struct btrfs_data_container *inodes = ctx;
3395 const size_t c = 3 * sizeof(u64);
3396
3397 if (inodes->bytes_left >= c) {
3398 inodes->bytes_left -= c;
3399 inodes->val[inodes->elem_cnt] = inum;
3400 inodes->val[inodes->elem_cnt + 1] = offset;
3401 inodes->val[inodes->elem_cnt + 2] = root;
3402 inodes->elem_cnt += 3;
3403 } else {
3404 inodes->bytes_missing += c - inodes->bytes_left;
3405 inodes->bytes_left = 0;
3406 inodes->elem_missed += 3;
3407 }
3408
3409 return 0;
3410}
3411
3412static long btrfs_ioctl_logical_to_ino(struct btrfs_root *root,
3413 void __user *arg)
3414{
3415 int ret = 0;
3416 int size;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003417 struct btrfs_ioctl_logical_ino_args *loi;
3418 struct btrfs_data_container *inodes = NULL;
3419 struct btrfs_path *path = NULL;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003420
3421 if (!capable(CAP_SYS_ADMIN))
3422 return -EPERM;
3423
3424 loi = memdup_user(arg, sizeof(*loi));
3425 if (IS_ERR(loi)) {
3426 ret = PTR_ERR(loi);
3427 loi = NULL;
3428 goto out;
3429 }
3430
3431 path = btrfs_alloc_path();
3432 if (!path) {
3433 ret = -ENOMEM;
3434 goto out;
3435 }
3436
Liu Bo425d17a2012-09-07 20:01:30 -06003437 size = min_t(u32, loi->size, 64 * 1024);
Jan Schmidtd7728c92011-07-07 16:48:38 +02003438 inodes = init_data_container(size);
3439 if (IS_ERR(inodes)) {
3440 ret = PTR_ERR(inodes);
3441 inodes = NULL;
3442 goto out;
3443 }
3444
Liu Bodf031f02012-09-07 20:01:29 -06003445 ret = iterate_inodes_from_logical(loi->logical, root->fs_info, path,
3446 build_ino_list, inodes);
3447 if (ret == -EINVAL)
Jan Schmidtd7728c92011-07-07 16:48:38 +02003448 ret = -ENOENT;
3449 if (ret < 0)
3450 goto out;
3451
Jeff Mahoney745c4d82011-11-20 07:31:57 -05003452 ret = copy_to_user((void *)(unsigned long)loi->inodes,
3453 (void *)(unsigned long)inodes, size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02003454 if (ret)
3455 ret = -EFAULT;
3456
3457out:
3458 btrfs_free_path(path);
Liu Bo425d17a2012-09-07 20:01:30 -06003459 vfree(inodes);
Jan Schmidtd7728c92011-07-07 16:48:38 +02003460 kfree(loi);
3461
3462 return ret;
3463}
3464
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003465void update_ioctl_balance_args(struct btrfs_fs_info *fs_info, int lock,
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003466 struct btrfs_ioctl_balance_args *bargs)
3467{
3468 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
3469
3470 bargs->flags = bctl->flags;
3471
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003472 if (atomic_read(&fs_info->balance_running))
3473 bargs->state |= BTRFS_BALANCE_STATE_RUNNING;
3474 if (atomic_read(&fs_info->balance_pause_req))
3475 bargs->state |= BTRFS_BALANCE_STATE_PAUSE_REQ;
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003476 if (atomic_read(&fs_info->balance_cancel_req))
3477 bargs->state |= BTRFS_BALANCE_STATE_CANCEL_REQ;
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003478
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003479 memcpy(&bargs->data, &bctl->data, sizeof(bargs->data));
3480 memcpy(&bargs->meta, &bctl->meta, sizeof(bargs->meta));
3481 memcpy(&bargs->sys, &bctl->sys, sizeof(bargs->sys));
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003482
3483 if (lock) {
3484 spin_lock(&fs_info->balance_lock);
3485 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
3486 spin_unlock(&fs_info->balance_lock);
3487 } else {
3488 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
3489 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003490}
3491
Liu Bo9ba1f6e2012-05-11 18:11:26 +08003492static long btrfs_ioctl_balance(struct file *file, void __user *arg)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003493{
Al Viro496ad9a2013-01-23 17:07:38 -05003494 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003495 struct btrfs_fs_info *fs_info = root->fs_info;
3496 struct btrfs_ioctl_balance_args *bargs;
3497 struct btrfs_balance_control *bctl;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003498 bool need_unlock; /* for mut. excl. ops lock */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003499 int ret;
3500
3501 if (!capable(CAP_SYS_ADMIN))
3502 return -EPERM;
3503
Liu Boe54bfa32012-06-29 03:58:48 -06003504 ret = mnt_want_write_file(file);
Liu Bo9ba1f6e2012-05-11 18:11:26 +08003505 if (ret)
3506 return ret;
3507
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003508again:
3509 if (!atomic_xchg(&fs_info->mutually_exclusive_operation_running, 1)) {
3510 mutex_lock(&fs_info->volume_mutex);
3511 mutex_lock(&fs_info->balance_mutex);
3512 need_unlock = true;
3513 goto locked;
3514 }
3515
3516 /*
3517 * mut. excl. ops lock is locked. Three possibilites:
3518 * (1) some other op is running
3519 * (2) balance is running
3520 * (3) balance is paused -- special case (think resume)
3521 */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003522 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003523 if (fs_info->balance_ctl) {
3524 /* this is either (2) or (3) */
3525 if (!atomic_read(&fs_info->balance_running)) {
3526 mutex_unlock(&fs_info->balance_mutex);
3527 if (!mutex_trylock(&fs_info->volume_mutex))
3528 goto again;
3529 mutex_lock(&fs_info->balance_mutex);
3530
3531 if (fs_info->balance_ctl &&
3532 !atomic_read(&fs_info->balance_running)) {
3533 /* this is (3) */
3534 need_unlock = false;
3535 goto locked;
3536 }
3537
3538 mutex_unlock(&fs_info->balance_mutex);
3539 mutex_unlock(&fs_info->volume_mutex);
3540 goto again;
3541 } else {
3542 /* this is (2) */
3543 mutex_unlock(&fs_info->balance_mutex);
3544 ret = -EINPROGRESS;
3545 goto out;
3546 }
3547 } else {
3548 /* this is (1) */
3549 mutex_unlock(&fs_info->balance_mutex);
3550 pr_info("btrfs: dev add/delete/balance/replace/resize operation in progress\n");
3551 ret = -EINVAL;
3552 goto out;
3553 }
3554
3555locked:
3556 BUG_ON(!atomic_read(&fs_info->mutually_exclusive_operation_running));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003557
3558 if (arg) {
3559 bargs = memdup_user(arg, sizeof(*bargs));
3560 if (IS_ERR(bargs)) {
3561 ret = PTR_ERR(bargs);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003562 goto out_unlock;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003563 }
Ilya Dryomovde322262012-01-16 22:04:49 +02003564
3565 if (bargs->flags & BTRFS_BALANCE_RESUME) {
3566 if (!fs_info->balance_ctl) {
3567 ret = -ENOTCONN;
3568 goto out_bargs;
3569 }
3570
3571 bctl = fs_info->balance_ctl;
3572 spin_lock(&fs_info->balance_lock);
3573 bctl->flags |= BTRFS_BALANCE_RESUME;
3574 spin_unlock(&fs_info->balance_lock);
3575
3576 goto do_balance;
3577 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003578 } else {
3579 bargs = NULL;
3580 }
3581
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003582 if (fs_info->balance_ctl) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003583 ret = -EINPROGRESS;
3584 goto out_bargs;
3585 }
3586
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003587 bctl = kzalloc(sizeof(*bctl), GFP_NOFS);
3588 if (!bctl) {
3589 ret = -ENOMEM;
3590 goto out_bargs;
3591 }
3592
3593 bctl->fs_info = fs_info;
3594 if (arg) {
3595 memcpy(&bctl->data, &bargs->data, sizeof(bctl->data));
3596 memcpy(&bctl->meta, &bargs->meta, sizeof(bctl->meta));
3597 memcpy(&bctl->sys, &bargs->sys, sizeof(bctl->sys));
3598
3599 bctl->flags = bargs->flags;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003600 } else {
3601 /* balance everything - no filters */
3602 bctl->flags |= BTRFS_BALANCE_TYPE_MASK;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003603 }
3604
Ilya Dryomovde322262012-01-16 22:04:49 +02003605do_balance:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003606 /*
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003607 * Ownership of bctl and mutually_exclusive_operation_running
3608 * goes to to btrfs_balance. bctl is freed in __cancel_balance,
3609 * or, if restriper was paused all the way until unmount, in
3610 * free_fs_info. mutually_exclusive_operation_running is
3611 * cleared in __cancel_balance.
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003612 */
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003613 need_unlock = false;
3614
3615 ret = btrfs_balance(bctl, bargs);
3616
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003617 if (arg) {
3618 if (copy_to_user(arg, bargs, sizeof(*bargs)))
3619 ret = -EFAULT;
3620 }
3621
3622out_bargs:
3623 kfree(bargs);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003624out_unlock:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003625 mutex_unlock(&fs_info->balance_mutex);
3626 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003627 if (need_unlock)
3628 atomic_set(&fs_info->mutually_exclusive_operation_running, 0);
3629out:
Liu Boe54bfa32012-06-29 03:58:48 -06003630 mnt_drop_write_file(file);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003631 return ret;
3632}
3633
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003634static long btrfs_ioctl_balance_ctl(struct btrfs_root *root, int cmd)
3635{
3636 if (!capable(CAP_SYS_ADMIN))
3637 return -EPERM;
3638
3639 switch (cmd) {
3640 case BTRFS_BALANCE_CTL_PAUSE:
3641 return btrfs_pause_balance(root->fs_info);
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003642 case BTRFS_BALANCE_CTL_CANCEL:
3643 return btrfs_cancel_balance(root->fs_info);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003644 }
3645
3646 return -EINVAL;
3647}
3648
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003649static long btrfs_ioctl_balance_progress(struct btrfs_root *root,
3650 void __user *arg)
3651{
3652 struct btrfs_fs_info *fs_info = root->fs_info;
3653 struct btrfs_ioctl_balance_args *bargs;
3654 int ret = 0;
3655
3656 if (!capable(CAP_SYS_ADMIN))
3657 return -EPERM;
3658
3659 mutex_lock(&fs_info->balance_mutex);
3660 if (!fs_info->balance_ctl) {
3661 ret = -ENOTCONN;
3662 goto out;
3663 }
3664
3665 bargs = kzalloc(sizeof(*bargs), GFP_NOFS);
3666 if (!bargs) {
3667 ret = -ENOMEM;
3668 goto out;
3669 }
3670
3671 update_ioctl_balance_args(fs_info, 1, bargs);
3672
3673 if (copy_to_user(arg, bargs, sizeof(*bargs)))
3674 ret = -EFAULT;
3675
3676 kfree(bargs);
3677out:
3678 mutex_unlock(&fs_info->balance_mutex);
3679 return ret;
3680}
3681
Miao Xie905b0dd2012-11-26 08:50:11 +00003682static long btrfs_ioctl_quota_ctl(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02003683{
Al Viro496ad9a2013-01-23 17:07:38 -05003684 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02003685 struct btrfs_ioctl_quota_ctl_args *sa;
3686 struct btrfs_trans_handle *trans = NULL;
3687 int ret;
3688 int err;
3689
3690 if (!capable(CAP_SYS_ADMIN))
3691 return -EPERM;
3692
Miao Xie905b0dd2012-11-26 08:50:11 +00003693 ret = mnt_want_write_file(file);
3694 if (ret)
3695 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02003696
3697 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00003698 if (IS_ERR(sa)) {
3699 ret = PTR_ERR(sa);
3700 goto drop_write;
3701 }
Arne Jansen5d13a372011-09-14 15:53:51 +02003702
Wang Shilong7708f022013-04-07 10:24:57 +00003703 down_write(&root->fs_info->subvol_sem);
Jan Schmidt2f232032013-04-25 16:04:51 +00003704 trans = btrfs_start_transaction(root->fs_info->tree_root, 2);
3705 if (IS_ERR(trans)) {
3706 ret = PTR_ERR(trans);
3707 goto out;
Arne Jansen5d13a372011-09-14 15:53:51 +02003708 }
3709
3710 switch (sa->cmd) {
3711 case BTRFS_QUOTA_CTL_ENABLE:
3712 ret = btrfs_quota_enable(trans, root->fs_info);
3713 break;
3714 case BTRFS_QUOTA_CTL_DISABLE:
3715 ret = btrfs_quota_disable(trans, root->fs_info);
3716 break;
Arne Jansen5d13a372011-09-14 15:53:51 +02003717 default:
3718 ret = -EINVAL;
3719 break;
3720 }
3721
3722 if (copy_to_user(arg, sa, sizeof(*sa)))
3723 ret = -EFAULT;
3724
Jan Schmidt2f232032013-04-25 16:04:51 +00003725 err = btrfs_commit_transaction(trans, root->fs_info->tree_root);
3726 if (err && !ret)
3727 ret = err;
Arne Jansen5d13a372011-09-14 15:53:51 +02003728out:
3729 kfree(sa);
Wang Shilong7708f022013-04-07 10:24:57 +00003730 up_write(&root->fs_info->subvol_sem);
Miao Xie905b0dd2012-11-26 08:50:11 +00003731drop_write:
3732 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02003733 return ret;
3734}
3735
Miao Xie905b0dd2012-11-26 08:50:11 +00003736static long btrfs_ioctl_qgroup_assign(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02003737{
Al Viro496ad9a2013-01-23 17:07:38 -05003738 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02003739 struct btrfs_ioctl_qgroup_assign_args *sa;
3740 struct btrfs_trans_handle *trans;
3741 int ret;
3742 int err;
3743
3744 if (!capable(CAP_SYS_ADMIN))
3745 return -EPERM;
3746
Miao Xie905b0dd2012-11-26 08:50:11 +00003747 ret = mnt_want_write_file(file);
3748 if (ret)
3749 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02003750
3751 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00003752 if (IS_ERR(sa)) {
3753 ret = PTR_ERR(sa);
3754 goto drop_write;
3755 }
Arne Jansen5d13a372011-09-14 15:53:51 +02003756
3757 trans = btrfs_join_transaction(root);
3758 if (IS_ERR(trans)) {
3759 ret = PTR_ERR(trans);
3760 goto out;
3761 }
3762
3763 /* FIXME: check if the IDs really exist */
3764 if (sa->assign) {
3765 ret = btrfs_add_qgroup_relation(trans, root->fs_info,
3766 sa->src, sa->dst);
3767 } else {
3768 ret = btrfs_del_qgroup_relation(trans, root->fs_info,
3769 sa->src, sa->dst);
3770 }
3771
3772 err = btrfs_end_transaction(trans, root);
3773 if (err && !ret)
3774 ret = err;
3775
3776out:
3777 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00003778drop_write:
3779 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02003780 return ret;
3781}
3782
Miao Xie905b0dd2012-11-26 08:50:11 +00003783static long btrfs_ioctl_qgroup_create(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02003784{
Al Viro496ad9a2013-01-23 17:07:38 -05003785 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02003786 struct btrfs_ioctl_qgroup_create_args *sa;
3787 struct btrfs_trans_handle *trans;
3788 int ret;
3789 int err;
3790
3791 if (!capable(CAP_SYS_ADMIN))
3792 return -EPERM;
3793
Miao Xie905b0dd2012-11-26 08:50:11 +00003794 ret = mnt_want_write_file(file);
3795 if (ret)
3796 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02003797
3798 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00003799 if (IS_ERR(sa)) {
3800 ret = PTR_ERR(sa);
3801 goto drop_write;
3802 }
Arne Jansen5d13a372011-09-14 15:53:51 +02003803
Miao Xied86e56c2012-11-15 11:35:41 +00003804 if (!sa->qgroupid) {
3805 ret = -EINVAL;
3806 goto out;
3807 }
3808
Arne Jansen5d13a372011-09-14 15:53:51 +02003809 trans = btrfs_join_transaction(root);
3810 if (IS_ERR(trans)) {
3811 ret = PTR_ERR(trans);
3812 goto out;
3813 }
3814
3815 /* FIXME: check if the IDs really exist */
3816 if (sa->create) {
3817 ret = btrfs_create_qgroup(trans, root->fs_info, sa->qgroupid,
3818 NULL);
3819 } else {
3820 ret = btrfs_remove_qgroup(trans, root->fs_info, sa->qgroupid);
3821 }
3822
3823 err = btrfs_end_transaction(trans, root);
3824 if (err && !ret)
3825 ret = err;
3826
3827out:
3828 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00003829drop_write:
3830 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02003831 return ret;
3832}
3833
Miao Xie905b0dd2012-11-26 08:50:11 +00003834static long btrfs_ioctl_qgroup_limit(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02003835{
Al Viro496ad9a2013-01-23 17:07:38 -05003836 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02003837 struct btrfs_ioctl_qgroup_limit_args *sa;
3838 struct btrfs_trans_handle *trans;
3839 int ret;
3840 int err;
3841 u64 qgroupid;
3842
3843 if (!capable(CAP_SYS_ADMIN))
3844 return -EPERM;
3845
Miao Xie905b0dd2012-11-26 08:50:11 +00003846 ret = mnt_want_write_file(file);
3847 if (ret)
3848 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02003849
3850 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00003851 if (IS_ERR(sa)) {
3852 ret = PTR_ERR(sa);
3853 goto drop_write;
3854 }
Arne Jansen5d13a372011-09-14 15:53:51 +02003855
3856 trans = btrfs_join_transaction(root);
3857 if (IS_ERR(trans)) {
3858 ret = PTR_ERR(trans);
3859 goto out;
3860 }
3861
3862 qgroupid = sa->qgroupid;
3863 if (!qgroupid) {
3864 /* take the current subvol as qgroup */
3865 qgroupid = root->root_key.objectid;
3866 }
3867
3868 /* FIXME: check if the IDs really exist */
3869 ret = btrfs_limit_qgroup(trans, root->fs_info, qgroupid, &sa->lim);
3870
3871 err = btrfs_end_transaction(trans, root);
3872 if (err && !ret)
3873 ret = err;
3874
3875out:
3876 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00003877drop_write:
3878 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02003879 return ret;
3880}
3881
Jan Schmidt2f232032013-04-25 16:04:51 +00003882static long btrfs_ioctl_quota_rescan(struct file *file, void __user *arg)
3883{
3884 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
3885 struct btrfs_ioctl_quota_rescan_args *qsa;
3886 int ret;
3887
3888 if (!capable(CAP_SYS_ADMIN))
3889 return -EPERM;
3890
3891 ret = mnt_want_write_file(file);
3892 if (ret)
3893 return ret;
3894
3895 qsa = memdup_user(arg, sizeof(*qsa));
3896 if (IS_ERR(qsa)) {
3897 ret = PTR_ERR(qsa);
3898 goto drop_write;
3899 }
3900
3901 if (qsa->flags) {
3902 ret = -EINVAL;
3903 goto out;
3904 }
3905
3906 ret = btrfs_qgroup_rescan(root->fs_info);
3907
3908out:
3909 kfree(qsa);
3910drop_write:
3911 mnt_drop_write_file(file);
3912 return ret;
3913}
3914
3915static long btrfs_ioctl_quota_rescan_status(struct file *file, void __user *arg)
3916{
3917 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
3918 struct btrfs_ioctl_quota_rescan_args *qsa;
3919 int ret = 0;
3920
3921 if (!capable(CAP_SYS_ADMIN))
3922 return -EPERM;
3923
3924 qsa = kzalloc(sizeof(*qsa), GFP_NOFS);
3925 if (!qsa)
3926 return -ENOMEM;
3927
3928 if (root->fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_RESCAN) {
3929 qsa->flags = 1;
3930 qsa->progress = root->fs_info->qgroup_rescan_progress.objectid;
3931 }
3932
3933 if (copy_to_user(arg, qsa, sizeof(*qsa)))
3934 ret = -EFAULT;
3935
3936 kfree(qsa);
3937 return ret;
3938}
3939
Jan Schmidt57254b6e2013-05-06 19:14:17 +00003940static long btrfs_ioctl_quota_rescan_wait(struct file *file, void __user *arg)
3941{
3942 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
3943
3944 if (!capable(CAP_SYS_ADMIN))
3945 return -EPERM;
3946
3947 return btrfs_qgroup_wait_for_completion(root->fs_info);
3948}
3949
Alexander Block8ea05e32012-07-25 17:35:53 +02003950static long btrfs_ioctl_set_received_subvol(struct file *file,
3951 void __user *arg)
3952{
3953 struct btrfs_ioctl_received_subvol_args *sa = NULL;
Al Viro496ad9a2013-01-23 17:07:38 -05003954 struct inode *inode = file_inode(file);
Alexander Block8ea05e32012-07-25 17:35:53 +02003955 struct btrfs_root *root = BTRFS_I(inode)->root;
3956 struct btrfs_root_item *root_item = &root->root_item;
3957 struct btrfs_trans_handle *trans;
3958 struct timespec ct = CURRENT_TIME;
3959 int ret = 0;
3960
3961 ret = mnt_want_write_file(file);
3962 if (ret < 0)
3963 return ret;
3964
3965 down_write(&root->fs_info->subvol_sem);
3966
3967 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
3968 ret = -EINVAL;
3969 goto out;
3970 }
3971
3972 if (btrfs_root_readonly(root)) {
3973 ret = -EROFS;
3974 goto out;
3975 }
3976
3977 if (!inode_owner_or_capable(inode)) {
3978 ret = -EACCES;
3979 goto out;
3980 }
3981
3982 sa = memdup_user(arg, sizeof(*sa));
3983 if (IS_ERR(sa)) {
3984 ret = PTR_ERR(sa);
3985 sa = NULL;
3986 goto out;
3987 }
3988
3989 trans = btrfs_start_transaction(root, 1);
3990 if (IS_ERR(trans)) {
3991 ret = PTR_ERR(trans);
3992 trans = NULL;
3993 goto out;
3994 }
3995
3996 sa->rtransid = trans->transid;
3997 sa->rtime.sec = ct.tv_sec;
3998 sa->rtime.nsec = ct.tv_nsec;
3999
4000 memcpy(root_item->received_uuid, sa->uuid, BTRFS_UUID_SIZE);
4001 btrfs_set_root_stransid(root_item, sa->stransid);
4002 btrfs_set_root_rtransid(root_item, sa->rtransid);
4003 root_item->stime.sec = cpu_to_le64(sa->stime.sec);
4004 root_item->stime.nsec = cpu_to_le32(sa->stime.nsec);
4005 root_item->rtime.sec = cpu_to_le64(sa->rtime.sec);
4006 root_item->rtime.nsec = cpu_to_le32(sa->rtime.nsec);
4007
4008 ret = btrfs_update_root(trans, root->fs_info->tree_root,
4009 &root->root_key, &root->root_item);
4010 if (ret < 0) {
4011 btrfs_end_transaction(trans, root);
4012 trans = NULL;
4013 goto out;
4014 } else {
4015 ret = btrfs_commit_transaction(trans, root);
4016 if (ret < 0)
4017 goto out;
4018 }
4019
4020 ret = copy_to_user(arg, sa, sizeof(*sa));
4021 if (ret)
4022 ret = -EFAULT;
4023
4024out:
4025 kfree(sa);
4026 up_write(&root->fs_info->subvol_sem);
4027 mnt_drop_write_file(file);
4028 return ret;
4029}
4030
jeff.liu867ab662013-01-05 02:48:01 +00004031static int btrfs_ioctl_get_fslabel(struct file *file, void __user *arg)
4032{
4033 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
4034 const char *label = root->fs_info->super_copy->label;
4035 size_t len = strnlen(label, BTRFS_LABEL_SIZE);
4036 int ret;
4037
4038 if (len == BTRFS_LABEL_SIZE) {
4039 pr_warn("btrfs: label is too long, return the first %zu bytes\n",
4040 --len);
4041 }
4042
4043 mutex_lock(&root->fs_info->volume_mutex);
4044 ret = copy_to_user(arg, label, len);
4045 mutex_unlock(&root->fs_info->volume_mutex);
4046
4047 return ret ? -EFAULT : 0;
4048}
4049
jeff.liua8bfd4a2013-01-05 02:48:08 +00004050static int btrfs_ioctl_set_fslabel(struct file *file, void __user *arg)
4051{
4052 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
4053 struct btrfs_super_block *super_block = root->fs_info->super_copy;
4054 struct btrfs_trans_handle *trans;
4055 char label[BTRFS_LABEL_SIZE];
4056 int ret;
4057
4058 if (!capable(CAP_SYS_ADMIN))
4059 return -EPERM;
4060
4061 if (copy_from_user(label, arg, sizeof(label)))
4062 return -EFAULT;
4063
4064 if (strnlen(label, BTRFS_LABEL_SIZE) == BTRFS_LABEL_SIZE) {
4065 pr_err("btrfs: unable to set label with more than %d bytes\n",
4066 BTRFS_LABEL_SIZE - 1);
4067 return -EINVAL;
4068 }
4069
4070 ret = mnt_want_write_file(file);
4071 if (ret)
4072 return ret;
4073
4074 mutex_lock(&root->fs_info->volume_mutex);
4075 trans = btrfs_start_transaction(root, 0);
4076 if (IS_ERR(trans)) {
4077 ret = PTR_ERR(trans);
4078 goto out_unlock;
4079 }
4080
4081 strcpy(super_block->label, label);
4082 ret = btrfs_end_transaction(trans, root);
4083
4084out_unlock:
4085 mutex_unlock(&root->fs_info->volume_mutex);
4086 mnt_drop_write_file(file);
4087 return ret;
4088}
4089
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004090long btrfs_ioctl(struct file *file, unsigned int
4091 cmd, unsigned long arg)
4092{
Al Viro496ad9a2013-01-23 17:07:38 -05004093 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05004094 void __user *argp = (void __user *)arg;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004095
4096 switch (cmd) {
Christoph Hellwig6cbff002009-04-17 10:37:41 +02004097 case FS_IOC_GETFLAGS:
4098 return btrfs_ioctl_getflags(file, argp);
4099 case FS_IOC_SETFLAGS:
4100 return btrfs_ioctl_setflags(file, argp);
4101 case FS_IOC_GETVERSION:
4102 return btrfs_ioctl_getversion(file, argp);
Li Dongyangf7039b12011-03-24 10:24:28 +00004103 case FITRIM:
4104 return btrfs_ioctl_fitrim(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004105 case BTRFS_IOC_SNAP_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08004106 return btrfs_ioctl_snap_create(file, argp, 0);
Li Zefanfdfb1e42010-12-10 06:41:56 +00004107 case BTRFS_IOC_SNAP_CREATE_V2:
Li Zefanfa0d2b92010-12-20 15:53:28 +08004108 return btrfs_ioctl_snap_create_v2(file, argp, 0);
Chris Mason3de45862008-11-17 21:02:50 -05004109 case BTRFS_IOC_SUBVOL_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08004110 return btrfs_ioctl_snap_create(file, argp, 1);
Arne Jansen6f72c7e2011-09-14 15:58:21 +02004111 case BTRFS_IOC_SUBVOL_CREATE_V2:
4112 return btrfs_ioctl_snap_create_v2(file, argp, 1);
Yan, Zheng76dda932009-09-21 16:00:26 -04004113 case BTRFS_IOC_SNAP_DESTROY:
4114 return btrfs_ioctl_snap_destroy(file, argp);
Li Zefan0caa1022010-12-20 16:30:25 +08004115 case BTRFS_IOC_SUBVOL_GETFLAGS:
4116 return btrfs_ioctl_subvol_getflags(file, argp);
4117 case BTRFS_IOC_SUBVOL_SETFLAGS:
4118 return btrfs_ioctl_subvol_setflags(file, argp);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004119 case BTRFS_IOC_DEFAULT_SUBVOL:
4120 return btrfs_ioctl_default_subvol(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004121 case BTRFS_IOC_DEFRAG:
Chris Mason1e701a32010-03-11 09:42:04 -05004122 return btrfs_ioctl_defrag(file, NULL);
4123 case BTRFS_IOC_DEFRAG_RANGE:
4124 return btrfs_ioctl_defrag(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004125 case BTRFS_IOC_RESIZE:
Miao Xie198605a2012-11-26 08:43:45 +00004126 return btrfs_ioctl_resize(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004127 case BTRFS_IOC_ADD_DEV:
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05004128 return btrfs_ioctl_add_dev(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004129 case BTRFS_IOC_RM_DEV:
Miao Xieda249272012-11-26 08:44:50 +00004130 return btrfs_ioctl_rm_dev(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01004131 case BTRFS_IOC_FS_INFO:
4132 return btrfs_ioctl_fs_info(root, argp);
4133 case BTRFS_IOC_DEV_INFO:
4134 return btrfs_ioctl_dev_info(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004135 case BTRFS_IOC_BALANCE:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08004136 return btrfs_ioctl_balance(file, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004137 case BTRFS_IOC_CLONE:
Sage Weilc5c9cd42008-11-12 14:32:25 -05004138 return btrfs_ioctl_clone(file, arg, 0, 0, 0);
4139 case BTRFS_IOC_CLONE_RANGE:
Christoph Hellwig7a865e82008-12-02 09:52:24 -05004140 return btrfs_ioctl_clone_range(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004141 case BTRFS_IOC_TRANS_START:
4142 return btrfs_ioctl_trans_start(file);
4143 case BTRFS_IOC_TRANS_END:
4144 return btrfs_ioctl_trans_end(file);
Chris Masonac8e9812010-02-28 15:39:26 -05004145 case BTRFS_IOC_TREE_SEARCH:
4146 return btrfs_ioctl_tree_search(file, argp);
4147 case BTRFS_IOC_INO_LOOKUP:
4148 return btrfs_ioctl_ino_lookup(file, argp);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004149 case BTRFS_IOC_INO_PATHS:
4150 return btrfs_ioctl_ino_to_path(root, argp);
4151 case BTRFS_IOC_LOGICAL_INO:
4152 return btrfs_ioctl_logical_to_ino(root, argp);
Josef Bacik1406e432010-01-13 18:19:06 +00004153 case BTRFS_IOC_SPACE_INFO:
4154 return btrfs_ioctl_space_info(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004155 case BTRFS_IOC_SYNC:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004156 btrfs_sync_fs(file->f_dentry->d_sb, 1);
4157 return 0;
Sage Weil46204592010-10-29 15:41:32 -04004158 case BTRFS_IOC_START_SYNC:
Miao Xie9a8c28b2012-11-26 08:40:43 +00004159 return btrfs_ioctl_start_sync(root, argp);
Sage Weil46204592010-10-29 15:41:32 -04004160 case BTRFS_IOC_WAIT_SYNC:
Miao Xie9a8c28b2012-11-26 08:40:43 +00004161 return btrfs_ioctl_wait_sync(root, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01004162 case BTRFS_IOC_SCRUB:
Miao Xieb8e95482012-11-26 08:48:01 +00004163 return btrfs_ioctl_scrub(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01004164 case BTRFS_IOC_SCRUB_CANCEL:
4165 return btrfs_ioctl_scrub_cancel(root, argp);
4166 case BTRFS_IOC_SCRUB_PROGRESS:
4167 return btrfs_ioctl_scrub_progress(root, argp);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004168 case BTRFS_IOC_BALANCE_V2:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08004169 return btrfs_ioctl_balance(file, argp);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004170 case BTRFS_IOC_BALANCE_CTL:
4171 return btrfs_ioctl_balance_ctl(root, arg);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004172 case BTRFS_IOC_BALANCE_PROGRESS:
4173 return btrfs_ioctl_balance_progress(root, argp);
Alexander Block8ea05e32012-07-25 17:35:53 +02004174 case BTRFS_IOC_SET_RECEIVED_SUBVOL:
4175 return btrfs_ioctl_set_received_subvol(file, argp);
Alexander Block31db9f72012-07-25 23:19:24 +02004176 case BTRFS_IOC_SEND:
4177 return btrfs_ioctl_send(file, argp);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004178 case BTRFS_IOC_GET_DEV_STATS:
David Sterbab27f7c02012-06-22 06:30:39 -06004179 return btrfs_ioctl_get_dev_stats(root, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02004180 case BTRFS_IOC_QUOTA_CTL:
Miao Xie905b0dd2012-11-26 08:50:11 +00004181 return btrfs_ioctl_quota_ctl(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02004182 case BTRFS_IOC_QGROUP_ASSIGN:
Miao Xie905b0dd2012-11-26 08:50:11 +00004183 return btrfs_ioctl_qgroup_assign(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02004184 case BTRFS_IOC_QGROUP_CREATE:
Miao Xie905b0dd2012-11-26 08:50:11 +00004185 return btrfs_ioctl_qgroup_create(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02004186 case BTRFS_IOC_QGROUP_LIMIT:
Miao Xie905b0dd2012-11-26 08:50:11 +00004187 return btrfs_ioctl_qgroup_limit(file, argp);
Jan Schmidt2f232032013-04-25 16:04:51 +00004188 case BTRFS_IOC_QUOTA_RESCAN:
4189 return btrfs_ioctl_quota_rescan(file, argp);
4190 case BTRFS_IOC_QUOTA_RESCAN_STATUS:
4191 return btrfs_ioctl_quota_rescan_status(file, argp);
Jan Schmidt57254b6e2013-05-06 19:14:17 +00004192 case BTRFS_IOC_QUOTA_RESCAN_WAIT:
4193 return btrfs_ioctl_quota_rescan_wait(file, argp);
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004194 case BTRFS_IOC_DEV_REPLACE:
4195 return btrfs_ioctl_dev_replace(root, argp);
jeff.liu867ab662013-01-05 02:48:01 +00004196 case BTRFS_IOC_GET_FSLABEL:
4197 return btrfs_ioctl_get_fslabel(file, argp);
jeff.liua8bfd4a2013-01-05 02:48:08 +00004198 case BTRFS_IOC_SET_FSLABEL:
4199 return btrfs_ioctl_set_fslabel(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004200 }
4201
4202 return -ENOTTY;
4203}