blob: 238a05545ee2230629fc850191f348b94cadd8cf [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
Miao Xie6a038432013-05-15 07:48:24 +0000558 ret = btrfs_start_delalloc_inodes(root, 0);
559 if (ret)
560 return ret;
561
562 btrfs_wait_ordered_extents(root, 0);
563
Yan, Zhenga22285a2010-05-16 10:48:46 -0400564 pending_snapshot = kzalloc(sizeof(*pending_snapshot), GFP_NOFS);
565 if (!pending_snapshot)
566 return -ENOMEM;
567
Miao Xie66d8f3d2012-09-06 04:02:28 -0600568 btrfs_init_block_rsv(&pending_snapshot->block_rsv,
569 BTRFS_BLOCK_RSV_TEMP);
Miao Xied5c12072013-02-28 10:04:33 +0000570 /*
571 * 1 - parent dir inode
572 * 2 - dir entries
573 * 1 - root item
574 * 2 - root ref/backref
575 * 1 - root of snapshot
576 */
577 ret = btrfs_subvolume_reserve_metadata(BTRFS_I(dir)->root,
578 &pending_snapshot->block_rsv, 7,
579 &pending_snapshot->qgroup_reserved);
580 if (ret)
581 goto out;
582
Yan, Zhenga22285a2010-05-16 10:48:46 -0400583 pending_snapshot->dentry = dentry;
584 pending_snapshot->root = root;
Li Zefanb83cc962010-12-20 16:04:08 +0800585 pending_snapshot->readonly = readonly;
Miao Xiee9662f72013-02-28 10:01:15 +0000586 pending_snapshot->dir = dir;
Miao Xie8696c532013-02-07 06:02:44 +0000587 pending_snapshot->inherit = inherit;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400588
Miao Xied5c12072013-02-28 10:04:33 +0000589 trans = btrfs_start_transaction(root, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400590 if (IS_ERR(trans)) {
591 ret = PTR_ERR(trans);
592 goto fail;
593 }
594
Josef Bacik83515832011-06-14 15:16:14 -0400595 spin_lock(&root->fs_info->trans_lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400596 list_add(&pending_snapshot->list,
597 &trans->transaction->pending_snapshots);
Josef Bacik83515832011-06-14 15:16:14 -0400598 spin_unlock(&root->fs_info->trans_lock);
Sage Weil72fd0322010-10-29 15:41:32 -0400599 if (async_transid) {
600 *async_transid = trans->transid;
601 ret = btrfs_commit_transaction_async(trans,
602 root->fs_info->extent_root, 1);
Miao Xie00d71c92013-03-04 09:45:06 +0000603 if (ret)
604 ret = btrfs_commit_transaction(trans, root);
Sage Weil72fd0322010-10-29 15:41:32 -0400605 } else {
606 ret = btrfs_commit_transaction(trans,
607 root->fs_info->extent_root);
608 }
Miao Xieaec80302013-03-04 09:44:29 +0000609 if (ret)
Josef Bacikc37b2b62012-10-22 15:51:44 -0400610 goto fail;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400611
612 ret = pending_snapshot->error;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400613 if (ret)
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000614 goto fail;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400615
Josef Bacik66b4ffd2011-01-31 16:22:42 -0500616 ret = btrfs_orphan_cleanup(pending_snapshot->snap);
617 if (ret)
618 goto fail;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400619
Al Viro2fbe8c82011-07-16 21:38:06 -0400620 inode = btrfs_lookup_dentry(dentry->d_parent->d_inode, dentry);
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000621 if (IS_ERR(inode)) {
622 ret = PTR_ERR(inode);
623 goto fail;
624 }
625 BUG_ON(!inode);
626 d_instantiate(dentry, inode);
627 ret = 0;
628fail:
Miao Xied5c12072013-02-28 10:04:33 +0000629 btrfs_subvolume_release_metadata(BTRFS_I(dir)->root,
630 &pending_snapshot->block_rsv,
631 pending_snapshot->qgroup_reserved);
632out:
Yan, Zhenga22285a2010-05-16 10:48:46 -0400633 kfree(pending_snapshot);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400634 return ret;
635}
636
Sage Weil4260f7c2010-10-29 15:46:43 -0400637/* copy of check_sticky in fs/namei.c()
638* It's inline, so penalty for filesystems that don't use sticky bit is
639* minimal.
640*/
641static inline int btrfs_check_sticky(struct inode *dir, struct inode *inode)
642{
Eric W. Biederman2f2f43d2012-02-10 11:05:07 -0800643 kuid_t fsuid = current_fsuid();
Sage Weil4260f7c2010-10-29 15:46:43 -0400644
645 if (!(dir->i_mode & S_ISVTX))
646 return 0;
Eric W. Biederman2f2f43d2012-02-10 11:05:07 -0800647 if (uid_eq(inode->i_uid, fsuid))
Sage Weil4260f7c2010-10-29 15:46:43 -0400648 return 0;
Eric W. Biederman2f2f43d2012-02-10 11:05:07 -0800649 if (uid_eq(dir->i_uid, fsuid))
Sage Weil4260f7c2010-10-29 15:46:43 -0400650 return 0;
651 return !capable(CAP_FOWNER);
652}
653
654/* copy of may_delete in fs/namei.c()
655 * Check whether we can remove a link victim from directory dir, check
656 * whether the type of victim is right.
657 * 1. We can't do it if dir is read-only (done in permission())
658 * 2. We should have write and exec permissions on dir
659 * 3. We can't remove anything from append-only dir
660 * 4. We can't do anything with immutable dir (done in permission())
661 * 5. If the sticky bit on dir is set we should either
662 * a. be owner of dir, or
663 * b. be owner of victim, or
664 * c. have CAP_FOWNER capability
665 * 6. If the victim is append-only or immutable we can't do antyhing with
666 * links pointing to it.
667 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
668 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
669 * 9. We can't remove a root or mountpoint.
670 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
671 * nfs_async_unlink().
672 */
673
674static int btrfs_may_delete(struct inode *dir,struct dentry *victim,int isdir)
675{
676 int error;
677
678 if (!victim->d_inode)
679 return -ENOENT;
680
681 BUG_ON(victim->d_parent->d_inode != dir);
Jeff Layton4fa6b5e2012-10-10 15:25:25 -0400682 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
Sage Weil4260f7c2010-10-29 15:46:43 -0400683
684 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
685 if (error)
686 return error;
687 if (IS_APPEND(dir))
688 return -EPERM;
689 if (btrfs_check_sticky(dir, victim->d_inode)||
690 IS_APPEND(victim->d_inode)||
691 IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode))
692 return -EPERM;
693 if (isdir) {
694 if (!S_ISDIR(victim->d_inode->i_mode))
695 return -ENOTDIR;
696 if (IS_ROOT(victim))
697 return -EBUSY;
698 } else if (S_ISDIR(victim->d_inode->i_mode))
699 return -EISDIR;
700 if (IS_DEADDIR(dir))
701 return -ENOENT;
702 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
703 return -EBUSY;
704 return 0;
705}
706
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400707/* copy of may_create in fs/namei.c() */
708static inline int btrfs_may_create(struct inode *dir, struct dentry *child)
709{
710 if (child->d_inode)
711 return -EEXIST;
712 if (IS_DEADDIR(dir))
713 return -ENOENT;
714 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
715}
716
717/*
718 * Create a new subvolume below @parent. This is largely modeled after
719 * sys_mkdirat and vfs_mkdir, but we only do a single component lookup
720 * inside this filesystem so it's quite a bit simpler.
721 */
Yan, Zheng76dda932009-09-21 16:00:26 -0400722static noinline int btrfs_mksubvol(struct path *parent,
723 char *name, int namelen,
Sage Weil72fd0322010-10-29 15:41:32 -0400724 struct btrfs_root *snap_src,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200725 u64 *async_transid, bool readonly,
Miao Xie8696c532013-02-07 06:02:44 +0000726 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400727{
Yan, Zheng76dda932009-09-21 16:00:26 -0400728 struct inode *dir = parent->dentry->d_inode;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400729 struct dentry *dentry;
730 int error;
731
David Sterba5c50c9b2013-03-22 18:12:51 +0000732 error = mutex_lock_killable_nested(&dir->i_mutex, I_MUTEX_PARENT);
733 if (error == -EINTR)
734 return error;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400735
736 dentry = lookup_one_len(name, parent->dentry, namelen);
737 error = PTR_ERR(dentry);
738 if (IS_ERR(dentry))
739 goto out_unlock;
740
741 error = -EEXIST;
742 if (dentry->d_inode)
743 goto out_dput;
744
Yan, Zheng76dda932009-09-21 16:00:26 -0400745 error = btrfs_may_create(dir, dentry);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400746 if (error)
Liu Boa874a632012-06-29 03:58:46 -0600747 goto out_dput;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400748
Chris Mason9c520572012-12-17 14:26:57 -0500749 /*
750 * even if this name doesn't exist, we may get hash collisions.
751 * check for them now when we can safely fail
752 */
753 error = btrfs_check_dir_item_collision(BTRFS_I(dir)->root,
754 dir->i_ino, name,
755 namelen);
756 if (error)
757 goto out_dput;
758
Yan, Zheng76dda932009-09-21 16:00:26 -0400759 down_read(&BTRFS_I(dir)->root->fs_info->subvol_sem);
760
761 if (btrfs_root_refs(&BTRFS_I(dir)->root->root_item) == 0)
762 goto out_up_read;
763
Chris Mason3de45862008-11-17 21:02:50 -0500764 if (snap_src) {
Miao Xiee9662f72013-02-28 10:01:15 +0000765 error = create_snapshot(snap_src, dir, dentry, name, namelen,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200766 async_transid, readonly, inherit);
Chris Mason3de45862008-11-17 21:02:50 -0500767 } else {
Miao Xied5c12072013-02-28 10:04:33 +0000768 error = create_subvol(dir, dentry, name, namelen,
769 async_transid, inherit);
Chris Mason3de45862008-11-17 21:02:50 -0500770 }
Yan, Zheng76dda932009-09-21 16:00:26 -0400771 if (!error)
772 fsnotify_mkdir(dir, dentry);
773out_up_read:
774 up_read(&BTRFS_I(dir)->root->fs_info->subvol_sem);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400775out_dput:
776 dput(dentry);
777out_unlock:
Yan, Zheng76dda932009-09-21 16:00:26 -0400778 mutex_unlock(&dir->i_mutex);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400779 return error;
780}
781
Chris Mason4cb53002011-05-24 15:35:30 -0400782/*
783 * When we're defragging a range, we don't want to kick it off again
784 * if it is really just waiting for delalloc to send it down.
785 * If we find a nice big extent or delalloc range for the bytes in the
786 * file you want to defrag, we return 0 to let you know to skip this
787 * part of the file
788 */
789static int check_defrag_in_cache(struct inode *inode, u64 offset, int thresh)
790{
791 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
792 struct extent_map *em = NULL;
793 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
794 u64 end;
795
796 read_lock(&em_tree->lock);
797 em = lookup_extent_mapping(em_tree, offset, PAGE_CACHE_SIZE);
798 read_unlock(&em_tree->lock);
799
800 if (em) {
801 end = extent_map_end(em);
802 free_extent_map(em);
803 if (end - offset > thresh)
804 return 0;
805 }
806 /* if we already have a nice delalloc here, just stop */
807 thresh /= 2;
808 end = count_range_bits(io_tree, &offset, offset + thresh,
809 thresh, EXTENT_DELALLOC, 1);
810 if (end >= thresh)
811 return 0;
812 return 1;
813}
814
815/*
816 * helper function to walk through a file and find extents
817 * newer than a specific transid, and smaller than thresh.
818 *
819 * This is used by the defragging code to find new and small
820 * extents
821 */
822static int find_new_extents(struct btrfs_root *root,
823 struct inode *inode, u64 newer_than,
824 u64 *off, int thresh)
825{
826 struct btrfs_path *path;
827 struct btrfs_key min_key;
828 struct btrfs_key max_key;
829 struct extent_buffer *leaf;
830 struct btrfs_file_extent_item *extent;
831 int type;
832 int ret;
David Sterbaa4689d22011-05-31 17:08:14 +0000833 u64 ino = btrfs_ino(inode);
Chris Mason4cb53002011-05-24 15:35:30 -0400834
835 path = btrfs_alloc_path();
836 if (!path)
837 return -ENOMEM;
838
David Sterbaa4689d22011-05-31 17:08:14 +0000839 min_key.objectid = ino;
Chris Mason4cb53002011-05-24 15:35:30 -0400840 min_key.type = BTRFS_EXTENT_DATA_KEY;
841 min_key.offset = *off;
842
David Sterbaa4689d22011-05-31 17:08:14 +0000843 max_key.objectid = ino;
Chris Mason4cb53002011-05-24 15:35:30 -0400844 max_key.type = (u8)-1;
845 max_key.offset = (u64)-1;
846
847 path->keep_locks = 1;
848
849 while(1) {
850 ret = btrfs_search_forward(root, &min_key, &max_key,
Eric Sandeende78b512013-01-31 18:21:12 +0000851 path, newer_than);
Chris Mason4cb53002011-05-24 15:35:30 -0400852 if (ret != 0)
853 goto none;
David Sterbaa4689d22011-05-31 17:08:14 +0000854 if (min_key.objectid != ino)
Chris Mason4cb53002011-05-24 15:35:30 -0400855 goto none;
856 if (min_key.type != BTRFS_EXTENT_DATA_KEY)
857 goto none;
858
859 leaf = path->nodes[0];
860 extent = btrfs_item_ptr(leaf, path->slots[0],
861 struct btrfs_file_extent_item);
862
863 type = btrfs_file_extent_type(leaf, extent);
864 if (type == BTRFS_FILE_EXTENT_REG &&
865 btrfs_file_extent_num_bytes(leaf, extent) < thresh &&
866 check_defrag_in_cache(inode, min_key.offset, thresh)) {
867 *off = min_key.offset;
868 btrfs_free_path(path);
869 return 0;
870 }
871
872 if (min_key.offset == (u64)-1)
873 goto none;
874
875 min_key.offset++;
876 btrfs_release_path(path);
877 }
878none:
879 btrfs_free_path(path);
880 return -ENOENT;
881}
882
Li Zefan6c282eb2012-06-11 16:03:35 +0800883static struct extent_map *defrag_lookup_extent(struct inode *inode, u64 start)
Liu Bo17ce6ef2012-03-29 09:57:45 -0400884{
885 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason940100a2010-03-10 10:52:59 -0500886 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Li Zefan6c282eb2012-06-11 16:03:35 +0800887 struct extent_map *em;
888 u64 len = PAGE_CACHE_SIZE;
Chris Mason940100a2010-03-10 10:52:59 -0500889
890 /*
891 * hopefully we have this extent in the tree already, try without
892 * the full extent lock
893 */
894 read_lock(&em_tree->lock);
895 em = lookup_extent_mapping(em_tree, start, len);
896 read_unlock(&em_tree->lock);
897
898 if (!em) {
899 /* get the big lock and read metadata off disk */
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100900 lock_extent(io_tree, start, start + len - 1);
Chris Mason940100a2010-03-10 10:52:59 -0500901 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100902 unlock_extent(io_tree, start, start + len - 1);
Chris Mason940100a2010-03-10 10:52:59 -0500903
Dan Carpenter6cf8bfb2010-03-20 11:22:10 +0000904 if (IS_ERR(em))
Li Zefan6c282eb2012-06-11 16:03:35 +0800905 return NULL;
Chris Mason940100a2010-03-10 10:52:59 -0500906 }
907
Li Zefan6c282eb2012-06-11 16:03:35 +0800908 return em;
909}
910
911static bool defrag_check_next_extent(struct inode *inode, struct extent_map *em)
912{
913 struct extent_map *next;
914 bool ret = true;
915
916 /* this is the last extent */
917 if (em->start + em->len >= i_size_read(inode))
918 return false;
919
920 next = defrag_lookup_extent(inode, em->start + em->len);
921 if (!next || next->block_start >= EXTENT_MAP_LAST_BYTE)
922 ret = false;
923
924 free_extent_map(next);
925 return ret;
926}
927
928static int should_defrag_range(struct inode *inode, u64 start, int thresh,
Andrew Mahonea43a2112012-06-19 21:08:32 -0400929 u64 *last_len, u64 *skip, u64 *defrag_end,
930 int compress)
Li Zefan6c282eb2012-06-11 16:03:35 +0800931{
932 struct extent_map *em;
933 int ret = 1;
934 bool next_mergeable = true;
935
936 /*
937 * make sure that once we start defragging an extent, we keep on
938 * defragging it
939 */
940 if (start < *defrag_end)
941 return 1;
942
943 *skip = 0;
944
945 em = defrag_lookup_extent(inode, start);
946 if (!em)
947 return 0;
948
Chris Mason940100a2010-03-10 10:52:59 -0500949 /* this will cover holes, and inline extents */
Liu Bo17ce6ef2012-03-29 09:57:45 -0400950 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
Chris Mason940100a2010-03-10 10:52:59 -0500951 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -0400952 goto out;
953 }
954
Li Zefan6c282eb2012-06-11 16:03:35 +0800955 next_mergeable = defrag_check_next_extent(inode, em);
Chris Mason940100a2010-03-10 10:52:59 -0500956
957 /*
Li Zefan6c282eb2012-06-11 16:03:35 +0800958 * we hit a real extent, if it is big or the next extent is not a
959 * real extent, don't bother defragging it
Chris Mason940100a2010-03-10 10:52:59 -0500960 */
Andrew Mahonea43a2112012-06-19 21:08:32 -0400961 if (!compress && (*last_len == 0 || *last_len >= thresh) &&
Li Zefan6c282eb2012-06-11 16:03:35 +0800962 (em->len >= thresh || !next_mergeable))
Chris Mason940100a2010-03-10 10:52:59 -0500963 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -0400964out:
Chris Mason940100a2010-03-10 10:52:59 -0500965 /*
966 * last_len ends up being a counter of how many bytes we've defragged.
967 * every time we choose not to defrag an extent, we reset *last_len
968 * so that the next tiny extent will force a defrag.
969 *
970 * The end result of this is that tiny extents before a single big
971 * extent will force at least part of that big extent to be defragged.
972 */
973 if (ret) {
Chris Mason940100a2010-03-10 10:52:59 -0500974 *defrag_end = extent_map_end(em);
975 } else {
976 *last_len = 0;
977 *skip = extent_map_end(em);
978 *defrag_end = 0;
979 }
980
981 free_extent_map(em);
982 return ret;
983}
984
Chris Mason4cb53002011-05-24 15:35:30 -0400985/*
986 * it doesn't do much good to defrag one or two pages
987 * at a time. This pulls in a nice chunk of pages
988 * to COW and defrag.
989 *
990 * It also makes sure the delalloc code has enough
991 * dirty data to avoid making new small extents as part
992 * of the defrag
993 *
994 * It's a good idea to start RA on this range
995 * before calling this.
996 */
997static int cluster_pages_for_defrag(struct inode *inode,
998 struct page **pages,
999 unsigned long start_index,
1000 int num_pages)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001001{
Chris Mason4cb53002011-05-24 15:35:30 -04001002 unsigned long file_end;
1003 u64 isize = i_size_read(inode);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001004 u64 page_start;
1005 u64 page_end;
Liu Bo1f12bd02012-03-29 09:57:44 -04001006 u64 page_cnt;
Chris Mason4cb53002011-05-24 15:35:30 -04001007 int ret;
1008 int i;
1009 int i_done;
1010 struct btrfs_ordered_extent *ordered;
1011 struct extent_state *cached_state = NULL;
Miao Xie600a45e2012-02-16 15:01:24 +08001012 struct extent_io_tree *tree;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04001013 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
Chris Mason4cb53002011-05-24 15:35:30 -04001014
Chris Mason4cb53002011-05-24 15:35:30 -04001015 file_end = (isize - 1) >> PAGE_CACHE_SHIFT;
Liu Bo1f12bd02012-03-29 09:57:44 -04001016 if (!isize || start_index > file_end)
1017 return 0;
1018
1019 page_cnt = min_t(u64, (u64)num_pages, (u64)file_end - start_index + 1);
Chris Mason4cb53002011-05-24 15:35:30 -04001020
1021 ret = btrfs_delalloc_reserve_space(inode,
Liu Bo1f12bd02012-03-29 09:57:44 -04001022 page_cnt << PAGE_CACHE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001023 if (ret)
1024 return ret;
Chris Mason4cb53002011-05-24 15:35:30 -04001025 i_done = 0;
Miao Xie600a45e2012-02-16 15:01:24 +08001026 tree = &BTRFS_I(inode)->io_tree;
Chris Mason4cb53002011-05-24 15:35:30 -04001027
1028 /* step one, lock all the pages */
Liu Bo1f12bd02012-03-29 09:57:44 -04001029 for (i = 0; i < page_cnt; i++) {
Chris Mason4cb53002011-05-24 15:35:30 -04001030 struct page *page;
Miao Xie600a45e2012-02-16 15:01:24 +08001031again:
Josef Bacika94733d2011-07-11 10:47:06 -04001032 page = find_or_create_page(inode->i_mapping,
Miao Xie600a45e2012-02-16 15:01:24 +08001033 start_index + i, mask);
Chris Mason4cb53002011-05-24 15:35:30 -04001034 if (!page)
1035 break;
1036
Miao Xie600a45e2012-02-16 15:01:24 +08001037 page_start = page_offset(page);
1038 page_end = page_start + PAGE_CACHE_SIZE - 1;
1039 while (1) {
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001040 lock_extent(tree, page_start, page_end);
Miao Xie600a45e2012-02-16 15:01:24 +08001041 ordered = btrfs_lookup_ordered_extent(inode,
1042 page_start);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001043 unlock_extent(tree, page_start, page_end);
Miao Xie600a45e2012-02-16 15:01:24 +08001044 if (!ordered)
1045 break;
1046
1047 unlock_page(page);
1048 btrfs_start_ordered_extent(inode, ordered, 1);
1049 btrfs_put_ordered_extent(ordered);
1050 lock_page(page);
Liu Bo1f12bd02012-03-29 09:57:44 -04001051 /*
1052 * we unlocked the page above, so we need check if
1053 * it was released or not.
1054 */
1055 if (page->mapping != inode->i_mapping) {
1056 unlock_page(page);
1057 page_cache_release(page);
1058 goto again;
1059 }
Miao Xie600a45e2012-02-16 15:01:24 +08001060 }
1061
Chris Mason4cb53002011-05-24 15:35:30 -04001062 if (!PageUptodate(page)) {
1063 btrfs_readpage(NULL, page);
1064 lock_page(page);
1065 if (!PageUptodate(page)) {
1066 unlock_page(page);
1067 page_cache_release(page);
1068 ret = -EIO;
1069 break;
1070 }
1071 }
Miao Xie600a45e2012-02-16 15:01:24 +08001072
Miao Xie600a45e2012-02-16 15:01:24 +08001073 if (page->mapping != inode->i_mapping) {
1074 unlock_page(page);
1075 page_cache_release(page);
1076 goto again;
1077 }
1078
Chris Mason4cb53002011-05-24 15:35:30 -04001079 pages[i] = page;
1080 i_done++;
1081 }
1082 if (!i_done || ret)
1083 goto out;
1084
1085 if (!(inode->i_sb->s_flags & MS_ACTIVE))
1086 goto out;
1087
1088 /*
1089 * so now we have a nice long stream of locked
1090 * and up to date pages, lets wait on them
1091 */
1092 for (i = 0; i < i_done; i++)
1093 wait_on_page_writeback(pages[i]);
1094
1095 page_start = page_offset(pages[0]);
1096 page_end = page_offset(pages[i_done - 1]) + PAGE_CACHE_SIZE;
1097
1098 lock_extent_bits(&BTRFS_I(inode)->io_tree,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001099 page_start, page_end - 1, 0, &cached_state);
Chris Mason4cb53002011-05-24 15:35:30 -04001100 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start,
1101 page_end - 1, EXTENT_DIRTY | EXTENT_DELALLOC |
Liu Bo9e8a4a82012-09-05 19:10:51 -06001102 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, 0, 0,
1103 &cached_state, GFP_NOFS);
Chris Mason4cb53002011-05-24 15:35:30 -04001104
Liu Bo1f12bd02012-03-29 09:57:44 -04001105 if (i_done != page_cnt) {
Josef Bacik9e0baf62011-07-15 15:16:44 +00001106 spin_lock(&BTRFS_I(inode)->lock);
1107 BTRFS_I(inode)->outstanding_extents++;
1108 spin_unlock(&BTRFS_I(inode)->lock);
Chris Mason4cb53002011-05-24 15:35:30 -04001109 btrfs_delalloc_release_space(inode,
Liu Bo1f12bd02012-03-29 09:57:44 -04001110 (page_cnt - i_done) << PAGE_CACHE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001111 }
1112
1113
Liu Bo9e8a4a82012-09-05 19:10:51 -06001114 set_extent_defrag(&BTRFS_I(inode)->io_tree, page_start, page_end - 1,
1115 &cached_state, GFP_NOFS);
Chris Mason4cb53002011-05-24 15:35:30 -04001116
1117 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
1118 page_start, page_end - 1, &cached_state,
1119 GFP_NOFS);
1120
1121 for (i = 0; i < i_done; i++) {
1122 clear_page_dirty_for_io(pages[i]);
1123 ClearPageChecked(pages[i]);
1124 set_page_extent_mapped(pages[i]);
1125 set_page_dirty(pages[i]);
1126 unlock_page(pages[i]);
1127 page_cache_release(pages[i]);
1128 }
1129 return i_done;
1130out:
1131 for (i = 0; i < i_done; i++) {
1132 unlock_page(pages[i]);
1133 page_cache_release(pages[i]);
1134 }
Liu Bo1f12bd02012-03-29 09:57:44 -04001135 btrfs_delalloc_release_space(inode, page_cnt << PAGE_CACHE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001136 return ret;
1137
1138}
1139
1140int btrfs_defrag_file(struct inode *inode, struct file *file,
1141 struct btrfs_ioctl_defrag_range_args *range,
1142 u64 newer_than, unsigned long max_to_defrag)
1143{
1144 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason4cb53002011-05-24 15:35:30 -04001145 struct file_ra_state *ra = NULL;
1146 unsigned long last_index;
Li Zefan151a31b2011-09-02 15:56:39 +08001147 u64 isize = i_size_read(inode);
Chris Mason940100a2010-03-10 10:52:59 -05001148 u64 last_len = 0;
1149 u64 skip = 0;
1150 u64 defrag_end = 0;
Chris Mason4cb53002011-05-24 15:35:30 -04001151 u64 newer_off = range->start;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001152 unsigned long i;
Li Zefan008873e2011-09-02 15:57:07 +08001153 unsigned long ra_index = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001154 int ret;
Chris Mason4cb53002011-05-24 15:35:30 -04001155 int defrag_count = 0;
Li Zefan1a419d82010-10-25 15:12:50 +08001156 int compress_type = BTRFS_COMPRESS_ZLIB;
Chris Mason4cb53002011-05-24 15:35:30 -04001157 int extent_thresh = range->extent_thresh;
Li Zefan008873e2011-09-02 15:57:07 +08001158 int max_cluster = (256 * 1024) >> PAGE_CACHE_SHIFT;
1159 int cluster = max_cluster;
Chris Mason4cb53002011-05-24 15:35:30 -04001160 u64 new_align = ~((u64)128 * 1024 - 1);
1161 struct page **pages = NULL;
1162
Liu Bo0abd5b12013-04-16 09:20:28 +00001163 if (isize == 0)
1164 return 0;
1165
1166 if (range->start >= isize)
1167 return -EINVAL;
Li Zefan1a419d82010-10-25 15:12:50 +08001168
1169 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS) {
1170 if (range->compress_type > BTRFS_COMPRESS_TYPES)
1171 return -EINVAL;
1172 if (range->compress_type)
1173 compress_type = range->compress_type;
1174 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001175
Liu Bo0abd5b12013-04-16 09:20:28 +00001176 if (extent_thresh == 0)
1177 extent_thresh = 256 * 1024;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001178
Chris Mason4cb53002011-05-24 15:35:30 -04001179 /*
1180 * if we were not given a file, allocate a readahead
1181 * context
1182 */
1183 if (!file) {
1184 ra = kzalloc(sizeof(*ra), GFP_NOFS);
1185 if (!ra)
1186 return -ENOMEM;
1187 file_ra_state_init(ra, inode->i_mapping);
1188 } else {
1189 ra = &file->f_ra;
1190 }
1191
Li Zefan008873e2011-09-02 15:57:07 +08001192 pages = kmalloc(sizeof(struct page *) * max_cluster,
Chris Mason4cb53002011-05-24 15:35:30 -04001193 GFP_NOFS);
1194 if (!pages) {
1195 ret = -ENOMEM;
1196 goto out_ra;
1197 }
1198
1199 /* find the last page to defrag */
Chris Mason1e701a32010-03-11 09:42:04 -05001200 if (range->start + range->len > range->start) {
Li Zefan151a31b2011-09-02 15:56:39 +08001201 last_index = min_t(u64, isize - 1,
Chris Mason1e701a32010-03-11 09:42:04 -05001202 range->start + range->len - 1) >> PAGE_CACHE_SHIFT;
1203 } else {
Li Zefan151a31b2011-09-02 15:56:39 +08001204 last_index = (isize - 1) >> PAGE_CACHE_SHIFT;
Chris Mason1e701a32010-03-11 09:42:04 -05001205 }
1206
Chris Mason4cb53002011-05-24 15:35:30 -04001207 if (newer_than) {
1208 ret = find_new_extents(root, inode, newer_than,
1209 &newer_off, 64 * 1024);
1210 if (!ret) {
1211 range->start = newer_off;
1212 /*
1213 * we always align our defrag to help keep
1214 * the extents in the file evenly spaced
1215 */
1216 i = (newer_off & new_align) >> PAGE_CACHE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001217 } else
1218 goto out_ra;
1219 } else {
1220 i = range->start >> PAGE_CACHE_SHIFT;
1221 }
1222 if (!max_to_defrag)
Liu Bo7ec31b52012-01-26 15:01:12 -05001223 max_to_defrag = last_index + 1;
Chris Mason4cb53002011-05-24 15:35:30 -04001224
Li Zefan2a0f7f52011-10-10 15:43:34 -04001225 /*
1226 * make writeback starts from i, so the defrag range can be
1227 * written sequentially.
1228 */
1229 if (i < inode->i_mapping->writeback_index)
1230 inode->i_mapping->writeback_index = i;
1231
Chris Masonf7f43cc2011-10-11 11:41:40 -04001232 while (i <= last_index && defrag_count < max_to_defrag &&
1233 (i < (i_size_read(inode) + PAGE_CACHE_SIZE - 1) >>
1234 PAGE_CACHE_SHIFT)) {
Chris Mason4cb53002011-05-24 15:35:30 -04001235 /*
1236 * make sure we stop running if someone unmounts
1237 * the FS
1238 */
1239 if (!(inode->i_sb->s_flags & MS_ACTIVE))
1240 break;
1241
David Sterba210549e2013-02-09 23:38:06 +00001242 if (btrfs_defrag_cancelled(root->fs_info)) {
1243 printk(KERN_DEBUG "btrfs: defrag_file cancelled\n");
1244 ret = -EAGAIN;
1245 break;
1246 }
1247
Liu Bo66c26892012-03-29 09:57:45 -04001248 if (!should_defrag_range(inode, (u64)i << PAGE_CACHE_SHIFT,
Li Zefan6c282eb2012-06-11 16:03:35 +08001249 extent_thresh, &last_len, &skip,
Andrew Mahonea43a2112012-06-19 21:08:32 -04001250 &defrag_end, range->flags &
1251 BTRFS_DEFRAG_RANGE_COMPRESS)) {
Chris Mason940100a2010-03-10 10:52:59 -05001252 unsigned long next;
1253 /*
1254 * the should_defrag function tells us how much to skip
1255 * bump our counter by the suggested amount
1256 */
1257 next = (skip + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
1258 i = max(i + 1, next);
1259 continue;
1260 }
Li Zefan008873e2011-09-02 15:57:07 +08001261
1262 if (!newer_than) {
1263 cluster = (PAGE_CACHE_ALIGN(defrag_end) >>
1264 PAGE_CACHE_SHIFT) - i;
1265 cluster = min(cluster, max_cluster);
1266 } else {
1267 cluster = max_cluster;
1268 }
1269
Chris Mason1e701a32010-03-11 09:42:04 -05001270 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)
Li Zefan1a419d82010-10-25 15:12:50 +08001271 BTRFS_I(inode)->force_compress = compress_type;
Chris Mason940100a2010-03-10 10:52:59 -05001272
Li Zefan008873e2011-09-02 15:57:07 +08001273 if (i + cluster > ra_index) {
1274 ra_index = max(i, ra_index);
1275 btrfs_force_ra(inode->i_mapping, ra, file, ra_index,
1276 cluster);
1277 ra_index += max_cluster;
1278 }
Chris Mason940100a2010-03-10 10:52:59 -05001279
Liu Boecb8bea2012-03-29 09:57:44 -04001280 mutex_lock(&inode->i_mutex);
Li Zefan008873e2011-09-02 15:57:07 +08001281 ret = cluster_pages_for_defrag(inode, pages, i, cluster);
Liu Boecb8bea2012-03-29 09:57:44 -04001282 if (ret < 0) {
1283 mutex_unlock(&inode->i_mutex);
Chris Mason4cb53002011-05-24 15:35:30 -04001284 goto out_ra;
Liu Boecb8bea2012-03-29 09:57:44 -04001285 }
Chris Mason940100a2010-03-10 10:52:59 -05001286
Chris Mason4cb53002011-05-24 15:35:30 -04001287 defrag_count += ret;
Namjae Jeond0e1d662012-12-11 16:00:21 -08001288 balance_dirty_pages_ratelimited(inode->i_mapping);
Liu Boecb8bea2012-03-29 09:57:44 -04001289 mutex_unlock(&inode->i_mutex);
Chris Mason4cb53002011-05-24 15:35:30 -04001290
1291 if (newer_than) {
1292 if (newer_off == (u64)-1)
1293 break;
1294
Liu Boe1f041e2012-03-29 09:57:45 -04001295 if (ret > 0)
1296 i += ret;
1297
Chris Mason4cb53002011-05-24 15:35:30 -04001298 newer_off = max(newer_off + 1,
1299 (u64)i << PAGE_CACHE_SHIFT);
1300
1301 ret = find_new_extents(root, inode,
1302 newer_than, &newer_off,
1303 64 * 1024);
1304 if (!ret) {
1305 range->start = newer_off;
1306 i = (newer_off & new_align) >> PAGE_CACHE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001307 } else {
1308 break;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001309 }
Chris Mason4cb53002011-05-24 15:35:30 -04001310 } else {
Li Zefan008873e2011-09-02 15:57:07 +08001311 if (ret > 0) {
Li Zefancbcc8322011-09-02 15:56:25 +08001312 i += ret;
Li Zefan008873e2011-09-02 15:57:07 +08001313 last_len += ret << PAGE_CACHE_SHIFT;
1314 } else {
Li Zefancbcc8322011-09-02 15:56:25 +08001315 i++;
Li Zefan008873e2011-09-02 15:57:07 +08001316 last_len = 0;
1317 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001318 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001319 }
1320
Chris Mason1e701a32010-03-11 09:42:04 -05001321 if ((range->flags & BTRFS_DEFRAG_RANGE_START_IO))
1322 filemap_flush(inode->i_mapping);
1323
1324 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
1325 /* the filemap_flush will queue IO into the worker threads, but
1326 * we have to make sure the IO is actually started and that
1327 * ordered extents get created before we return
1328 */
1329 atomic_inc(&root->fs_info->async_submit_draining);
1330 while (atomic_read(&root->fs_info->nr_async_submits) ||
1331 atomic_read(&root->fs_info->async_delalloc_pages)) {
1332 wait_event(root->fs_info->async_submit_wait,
1333 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
1334 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
1335 }
1336 atomic_dec(&root->fs_info->async_submit_draining);
1337
1338 mutex_lock(&inode->i_mutex);
Li Zefan261507a02010-12-17 14:21:50 +08001339 BTRFS_I(inode)->force_compress = BTRFS_COMPRESS_NONE;
Chris Mason1e701a32010-03-11 09:42:04 -05001340 mutex_unlock(&inode->i_mutex);
1341 }
1342
Li Zefan1a419d82010-10-25 15:12:50 +08001343 if (range->compress_type == BTRFS_COMPRESS_LZO) {
Mitch Harder2b0ce2c2012-07-24 11:58:43 -06001344 btrfs_set_fs_incompat(root->fs_info, COMPRESS_LZO);
Li Zefan1a419d82010-10-25 15:12:50 +08001345 }
1346
Diego Calleja60ccf822011-09-01 16:33:57 +02001347 ret = defrag_count;
Chris Mason940100a2010-03-10 10:52:59 -05001348
Chris Mason4cb53002011-05-24 15:35:30 -04001349out_ra:
1350 if (!file)
1351 kfree(ra);
1352 kfree(pages);
Chris Mason940100a2010-03-10 10:52:59 -05001353 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001354}
1355
Miao Xie198605a2012-11-26 08:43:45 +00001356static noinline int btrfs_ioctl_resize(struct file *file,
Yan, Zheng76dda932009-09-21 16:00:26 -04001357 void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001358{
1359 u64 new_size;
1360 u64 old_size;
1361 u64 devid = 1;
Al Viro496ad9a2013-01-23 17:07:38 -05001362 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001363 struct btrfs_ioctl_vol_args *vol_args;
1364 struct btrfs_trans_handle *trans;
1365 struct btrfs_device *device = NULL;
1366 char *sizestr;
1367 char *devstr = NULL;
1368 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001369 int mod = 0;
1370
Chris Masone441d542009-01-05 16:57:23 -05001371 if (!capable(CAP_SYS_ADMIN))
1372 return -EPERM;
1373
Miao Xie198605a2012-11-26 08:43:45 +00001374 ret = mnt_want_write_file(file);
1375 if (ret)
1376 return ret;
1377
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01001378 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
1379 1)) {
1380 pr_info("btrfs: dev add/delete/balance/replace/resize operation in progress\n");
Miao Xie97547672012-12-21 10:38:50 +00001381 mnt_drop_write_file(file);
Ilya Dryomov2c0c9da2013-01-20 15:57:57 +02001382 return -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001383 }
1384
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01001385 mutex_lock(&root->fs_info->volume_mutex);
Li Zefandae7b662009-04-08 15:06:54 +08001386 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001387 if (IS_ERR(vol_args)) {
1388 ret = PTR_ERR(vol_args);
1389 goto out;
1390 }
Mark Fasheh5516e592008-07-24 12:20:14 -04001391
1392 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001393
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001394 sizestr = vol_args->name;
1395 devstr = strchr(sizestr, ':');
1396 if (devstr) {
1397 char *end;
1398 sizestr = devstr + 1;
1399 *devstr = '\0';
1400 devstr = vol_args->name;
1401 devid = simple_strtoull(devstr, &end, 10);
Miao Xiedfd79822012-12-21 09:21:30 +00001402 if (!devid) {
1403 ret = -EINVAL;
1404 goto out_free;
1405 }
Arnd Hannemann5bb14682011-11-20 07:33:38 -05001406 printk(KERN_INFO "btrfs: resizing devid %llu\n",
Joel Becker21380932009-04-21 12:38:29 -07001407 (unsigned long long)devid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001408 }
Miao Xiedba60f32012-12-21 09:19:51 +00001409
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01001410 device = btrfs_find_device(root->fs_info, devid, NULL, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001411 if (!device) {
Arnd Hannemann5bb14682011-11-20 07:33:38 -05001412 printk(KERN_INFO "btrfs: resizer unable to find device %llu\n",
Joel Becker21380932009-04-21 12:38:29 -07001413 (unsigned long long)devid);
Miao Xiedfd79822012-12-21 09:21:30 +00001414 ret = -ENODEV;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001415 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001416 }
Miao Xiedba60f32012-12-21 09:19:51 +00001417
1418 if (!device->writeable) {
Liu Bo4e42ae12012-06-14 02:23:19 -06001419 printk(KERN_INFO "btrfs: resizer unable to apply on "
Miao Xiedba60f32012-12-21 09:19:51 +00001420 "readonly device %llu\n",
Chris Masona8c4a332012-06-15 20:07:17 -04001421 (unsigned long long)devid);
Miao Xiedfd79822012-12-21 09:21:30 +00001422 ret = -EPERM;
Liu Bo4e42ae12012-06-14 02:23:19 -06001423 goto out_free;
1424 }
1425
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001426 if (!strcmp(sizestr, "max"))
1427 new_size = device->bdev->bd_inode->i_size;
1428 else {
1429 if (sizestr[0] == '-') {
1430 mod = -1;
1431 sizestr++;
1432 } else if (sizestr[0] == '+') {
1433 mod = 1;
1434 sizestr++;
1435 }
Akinobu Mita91748462010-02-28 10:59:11 +00001436 new_size = memparse(sizestr, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001437 if (new_size == 0) {
1438 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001439 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001440 }
1441 }
1442
Stefan Behrens63a212a2012-11-05 18:29:28 +01001443 if (device->is_tgtdev_for_dev_replace) {
Miao Xiedfd79822012-12-21 09:21:30 +00001444 ret = -EPERM;
Stefan Behrens63a212a2012-11-05 18:29:28 +01001445 goto out_free;
1446 }
1447
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001448 old_size = device->total_bytes;
1449
1450 if (mod < 0) {
1451 if (new_size > old_size) {
1452 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001453 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001454 }
1455 new_size = old_size - new_size;
1456 } else if (mod > 0) {
1457 new_size = old_size + new_size;
1458 }
1459
1460 if (new_size < 256 * 1024 * 1024) {
1461 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001462 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001463 }
1464 if (new_size > device->bdev->bd_inode->i_size) {
1465 ret = -EFBIG;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001466 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001467 }
1468
1469 do_div(new_size, root->sectorsize);
1470 new_size *= root->sectorsize;
1471
Josef Bacik606686e2012-06-04 14:03:51 -04001472 printk_in_rcu(KERN_INFO "btrfs: new size for %s is %llu\n",
1473 rcu_str_deref(device->name),
1474 (unsigned long long)new_size);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001475
1476 if (new_size > old_size) {
Yan, Zhenga22285a2010-05-16 10:48:46 -04001477 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001478 if (IS_ERR(trans)) {
1479 ret = PTR_ERR(trans);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001480 goto out_free;
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001481 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001482 ret = btrfs_grow_device(trans, device, new_size);
1483 btrfs_commit_transaction(trans, root);
Mike Fleetwoodece7d202011-11-18 18:55:01 +00001484 } else if (new_size < old_size) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001485 ret = btrfs_shrink_device(device, new_size);
jeff.liu0253f402012-10-27 12:06:39 +00001486 } /* equal, nothing need to do */
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001487
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001488out_free:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001489 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001490out:
1491 mutex_unlock(&root->fs_info->volume_mutex);
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01001492 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
Ilya Dryomov18f39c42013-01-20 15:57:57 +02001493 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001494 return ret;
1495}
1496
Sage Weil72fd0322010-10-29 15:41:32 -04001497static noinline int btrfs_ioctl_snap_create_transid(struct file *file,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001498 char *name, unsigned long fd, int subvol,
1499 u64 *transid, bool readonly,
Miao Xie8696c532013-02-07 06:02:44 +00001500 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001501{
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001502 int namelen;
Chris Mason3de45862008-11-17 21:02:50 -05001503 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001504
Liu Boa874a632012-06-29 03:58:46 -06001505 ret = mnt_want_write_file(file);
1506 if (ret)
1507 goto out;
1508
Sage Weil72fd0322010-10-29 15:41:32 -04001509 namelen = strlen(name);
1510 if (strchr(name, '/')) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001511 ret = -EINVAL;
Liu Boa874a632012-06-29 03:58:46 -06001512 goto out_drop_write;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001513 }
1514
Chris Mason16780ca2012-02-20 22:14:55 -05001515 if (name[0] == '.' &&
1516 (namelen == 1 || (name[1] == '.' && namelen == 2))) {
1517 ret = -EEXIST;
Liu Boa874a632012-06-29 03:58:46 -06001518 goto out_drop_write;
Chris Mason16780ca2012-02-20 22:14:55 -05001519 }
1520
Chris Mason3de45862008-11-17 21:02:50 -05001521 if (subvol) {
Sage Weil72fd0322010-10-29 15:41:32 -04001522 ret = btrfs_mksubvol(&file->f_path, name, namelen,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001523 NULL, transid, readonly, inherit);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001524 } else {
Al Viro2903ff02012-08-28 12:52:22 -04001525 struct fd src = fdget(fd);
Chris Mason3de45862008-11-17 21:02:50 -05001526 struct inode *src_inode;
Al Viro2903ff02012-08-28 12:52:22 -04001527 if (!src.file) {
Chris Mason3de45862008-11-17 21:02:50 -05001528 ret = -EINVAL;
Liu Boa874a632012-06-29 03:58:46 -06001529 goto out_drop_write;
Chris Mason3de45862008-11-17 21:02:50 -05001530 }
1531
Al Viro496ad9a2013-01-23 17:07:38 -05001532 src_inode = file_inode(src.file);
1533 if (src_inode->i_sb != file_inode(file)->i_sb) {
Chris Masond3977122009-01-05 21:25:51 -05001534 printk(KERN_INFO "btrfs: Snapshot src from "
1535 "another FS\n");
Chris Mason3de45862008-11-17 21:02:50 -05001536 ret = -EINVAL;
Al Viroecd18812012-08-26 21:20:24 -04001537 } else {
1538 ret = btrfs_mksubvol(&file->f_path, name, namelen,
1539 BTRFS_I(src_inode)->root,
1540 transid, readonly, inherit);
Chris Mason3de45862008-11-17 21:02:50 -05001541 }
Al Viro2903ff02012-08-28 12:52:22 -04001542 fdput(src);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001543 }
Liu Boa874a632012-06-29 03:58:46 -06001544out_drop_write:
1545 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001546out:
Sage Weil72fd0322010-10-29 15:41:32 -04001547 return ret;
1548}
1549
1550static noinline int btrfs_ioctl_snap_create(struct file *file,
Li Zefanfa0d2b92010-12-20 15:53:28 +08001551 void __user *arg, int subvol)
Sage Weil72fd0322010-10-29 15:41:32 -04001552{
Li Zefanfa0d2b92010-12-20 15:53:28 +08001553 struct btrfs_ioctl_vol_args *vol_args;
Sage Weil72fd0322010-10-29 15:41:32 -04001554 int ret;
1555
Li Zefanfa0d2b92010-12-20 15:53:28 +08001556 vol_args = memdup_user(arg, sizeof(*vol_args));
1557 if (IS_ERR(vol_args))
1558 return PTR_ERR(vol_args);
1559 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Sage Weil72fd0322010-10-29 15:41:32 -04001560
Li Zefanfa0d2b92010-12-20 15:53:28 +08001561 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
Li Zefanb83cc962010-12-20 16:04:08 +08001562 vol_args->fd, subvol,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001563 NULL, false, NULL);
Li Zefanfdfb1e42010-12-10 06:41:56 +00001564
Li Zefanfa0d2b92010-12-20 15:53:28 +08001565 kfree(vol_args);
1566 return ret;
1567}
Li Zefanfdfb1e42010-12-10 06:41:56 +00001568
Li Zefanfa0d2b92010-12-20 15:53:28 +08001569static noinline int btrfs_ioctl_snap_create_v2(struct file *file,
1570 void __user *arg, int subvol)
1571{
1572 struct btrfs_ioctl_vol_args_v2 *vol_args;
1573 int ret;
1574 u64 transid = 0;
1575 u64 *ptr = NULL;
Li Zefanb83cc962010-12-20 16:04:08 +08001576 bool readonly = false;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001577 struct btrfs_qgroup_inherit *inherit = NULL;
Li Zefanfdfb1e42010-12-10 06:41:56 +00001578
Li Zefanfa0d2b92010-12-20 15:53:28 +08001579 vol_args = memdup_user(arg, sizeof(*vol_args));
1580 if (IS_ERR(vol_args))
1581 return PTR_ERR(vol_args);
1582 vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
Sage Weil75eaa0e2010-12-10 00:36:28 +00001583
Li Zefanb83cc962010-12-20 16:04:08 +08001584 if (vol_args->flags &
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001585 ~(BTRFS_SUBVOL_CREATE_ASYNC | BTRFS_SUBVOL_RDONLY |
1586 BTRFS_SUBVOL_QGROUP_INHERIT)) {
Li Zefanb83cc962010-12-20 16:04:08 +08001587 ret = -EOPNOTSUPP;
Li Zefanfa0d2b92010-12-20 15:53:28 +08001588 goto out;
Sage Weil72fd0322010-10-29 15:41:32 -04001589 }
Li Zefanfa0d2b92010-12-20 15:53:28 +08001590
1591 if (vol_args->flags & BTRFS_SUBVOL_CREATE_ASYNC)
1592 ptr = &transid;
Li Zefanb83cc962010-12-20 16:04:08 +08001593 if (vol_args->flags & BTRFS_SUBVOL_RDONLY)
1594 readonly = true;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001595 if (vol_args->flags & BTRFS_SUBVOL_QGROUP_INHERIT) {
1596 if (vol_args->size > PAGE_CACHE_SIZE) {
1597 ret = -EINVAL;
1598 goto out;
1599 }
1600 inherit = memdup_user(vol_args->qgroup_inherit, vol_args->size);
1601 if (IS_ERR(inherit)) {
1602 ret = PTR_ERR(inherit);
1603 goto out;
1604 }
1605 }
Li Zefanfa0d2b92010-12-20 15:53:28 +08001606
1607 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001608 vol_args->fd, subvol, ptr,
Miao Xie8696c532013-02-07 06:02:44 +00001609 readonly, inherit);
Li Zefanfa0d2b92010-12-20 15:53:28 +08001610
1611 if (ret == 0 && ptr &&
1612 copy_to_user(arg +
1613 offsetof(struct btrfs_ioctl_vol_args_v2,
1614 transid), ptr, sizeof(*ptr)))
1615 ret = -EFAULT;
Li Zefanfdfb1e42010-12-10 06:41:56 +00001616out:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001617 kfree(vol_args);
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001618 kfree(inherit);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001619 return ret;
1620}
1621
Li Zefan0caa1022010-12-20 16:30:25 +08001622static noinline int btrfs_ioctl_subvol_getflags(struct file *file,
1623 void __user *arg)
1624{
Al Viro496ad9a2013-01-23 17:07:38 -05001625 struct inode *inode = file_inode(file);
Li Zefan0caa1022010-12-20 16:30:25 +08001626 struct btrfs_root *root = BTRFS_I(inode)->root;
1627 int ret = 0;
1628 u64 flags = 0;
1629
Li Zefan33345d012011-04-20 10:31:50 +08001630 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID)
Li Zefan0caa1022010-12-20 16:30:25 +08001631 return -EINVAL;
1632
1633 down_read(&root->fs_info->subvol_sem);
1634 if (btrfs_root_readonly(root))
1635 flags |= BTRFS_SUBVOL_RDONLY;
1636 up_read(&root->fs_info->subvol_sem);
1637
1638 if (copy_to_user(arg, &flags, sizeof(flags)))
1639 ret = -EFAULT;
1640
1641 return ret;
1642}
1643
1644static noinline int btrfs_ioctl_subvol_setflags(struct file *file,
1645 void __user *arg)
1646{
Al Viro496ad9a2013-01-23 17:07:38 -05001647 struct inode *inode = file_inode(file);
Li Zefan0caa1022010-12-20 16:30:25 +08001648 struct btrfs_root *root = BTRFS_I(inode)->root;
1649 struct btrfs_trans_handle *trans;
1650 u64 root_flags;
1651 u64 flags;
1652 int ret = 0;
1653
Liu Bob9ca0662012-06-29 03:58:49 -06001654 ret = mnt_want_write_file(file);
1655 if (ret)
1656 goto out;
Li Zefan0caa1022010-12-20 16:30:25 +08001657
Liu Bob9ca0662012-06-29 03:58:49 -06001658 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
1659 ret = -EINVAL;
1660 goto out_drop_write;
1661 }
Li Zefan0caa1022010-12-20 16:30:25 +08001662
Liu Bob9ca0662012-06-29 03:58:49 -06001663 if (copy_from_user(&flags, arg, sizeof(flags))) {
1664 ret = -EFAULT;
1665 goto out_drop_write;
1666 }
Li Zefan0caa1022010-12-20 16:30:25 +08001667
Liu Bob9ca0662012-06-29 03:58:49 -06001668 if (flags & BTRFS_SUBVOL_CREATE_ASYNC) {
1669 ret = -EINVAL;
1670 goto out_drop_write;
1671 }
Li Zefan0caa1022010-12-20 16:30:25 +08001672
Liu Bob9ca0662012-06-29 03:58:49 -06001673 if (flags & ~BTRFS_SUBVOL_RDONLY) {
1674 ret = -EOPNOTSUPP;
1675 goto out_drop_write;
1676 }
Li Zefan0caa1022010-12-20 16:30:25 +08001677
Liu Bob9ca0662012-06-29 03:58:49 -06001678 if (!inode_owner_or_capable(inode)) {
1679 ret = -EACCES;
1680 goto out_drop_write;
1681 }
Li Zefanb4dc2b82011-02-16 06:06:34 +00001682
Li Zefan0caa1022010-12-20 16:30:25 +08001683 down_write(&root->fs_info->subvol_sem);
1684
1685 /* nothing to do */
1686 if (!!(flags & BTRFS_SUBVOL_RDONLY) == btrfs_root_readonly(root))
Liu Bob9ca0662012-06-29 03:58:49 -06001687 goto out_drop_sem;
Li Zefan0caa1022010-12-20 16:30:25 +08001688
1689 root_flags = btrfs_root_flags(&root->root_item);
1690 if (flags & BTRFS_SUBVOL_RDONLY)
1691 btrfs_set_root_flags(&root->root_item,
1692 root_flags | BTRFS_ROOT_SUBVOL_RDONLY);
1693 else
1694 btrfs_set_root_flags(&root->root_item,
1695 root_flags & ~BTRFS_ROOT_SUBVOL_RDONLY);
1696
1697 trans = btrfs_start_transaction(root, 1);
1698 if (IS_ERR(trans)) {
1699 ret = PTR_ERR(trans);
1700 goto out_reset;
1701 }
1702
Li Zefanb4dc2b82011-02-16 06:06:34 +00001703 ret = btrfs_update_root(trans, root->fs_info->tree_root,
Li Zefan0caa1022010-12-20 16:30:25 +08001704 &root->root_key, &root->root_item);
1705
1706 btrfs_commit_transaction(trans, root);
1707out_reset:
1708 if (ret)
1709 btrfs_set_root_flags(&root->root_item, root_flags);
Liu Bob9ca0662012-06-29 03:58:49 -06001710out_drop_sem:
Li Zefan0caa1022010-12-20 16:30:25 +08001711 up_write(&root->fs_info->subvol_sem);
Liu Bob9ca0662012-06-29 03:58:49 -06001712out_drop_write:
1713 mnt_drop_write_file(file);
1714out:
Li Zefan0caa1022010-12-20 16:30:25 +08001715 return ret;
1716}
1717
Yan, Zheng76dda932009-09-21 16:00:26 -04001718/*
1719 * helper to check if the subvolume references other subvolumes
1720 */
1721static noinline int may_destroy_subvol(struct btrfs_root *root)
1722{
1723 struct btrfs_path *path;
1724 struct btrfs_key key;
1725 int ret;
1726
1727 path = btrfs_alloc_path();
1728 if (!path)
1729 return -ENOMEM;
1730
1731 key.objectid = root->root_key.objectid;
1732 key.type = BTRFS_ROOT_REF_KEY;
1733 key.offset = (u64)-1;
1734
1735 ret = btrfs_search_slot(NULL, root->fs_info->tree_root,
1736 &key, path, 0, 0);
1737 if (ret < 0)
1738 goto out;
1739 BUG_ON(ret == 0);
1740
1741 ret = 0;
1742 if (path->slots[0] > 0) {
1743 path->slots[0]--;
1744 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1745 if (key.objectid == root->root_key.objectid &&
1746 key.type == BTRFS_ROOT_REF_KEY)
1747 ret = -ENOTEMPTY;
1748 }
1749out:
1750 btrfs_free_path(path);
1751 return ret;
1752}
1753
Chris Masonac8e9812010-02-28 15:39:26 -05001754static noinline int key_in_sk(struct btrfs_key *key,
1755 struct btrfs_ioctl_search_key *sk)
1756{
Chris Masonabc6e132010-03-18 12:10:08 -04001757 struct btrfs_key test;
1758 int ret;
1759
1760 test.objectid = sk->min_objectid;
1761 test.type = sk->min_type;
1762 test.offset = sk->min_offset;
1763
1764 ret = btrfs_comp_cpu_keys(key, &test);
1765 if (ret < 0)
Chris Masonac8e9812010-02-28 15:39:26 -05001766 return 0;
Chris Masonabc6e132010-03-18 12:10:08 -04001767
1768 test.objectid = sk->max_objectid;
1769 test.type = sk->max_type;
1770 test.offset = sk->max_offset;
1771
1772 ret = btrfs_comp_cpu_keys(key, &test);
1773 if (ret > 0)
Chris Masonac8e9812010-02-28 15:39:26 -05001774 return 0;
1775 return 1;
1776}
1777
1778static noinline int copy_to_sk(struct btrfs_root *root,
1779 struct btrfs_path *path,
1780 struct btrfs_key *key,
1781 struct btrfs_ioctl_search_key *sk,
1782 char *buf,
1783 unsigned long *sk_offset,
1784 int *num_found)
1785{
1786 u64 found_transid;
1787 struct extent_buffer *leaf;
1788 struct btrfs_ioctl_search_header sh;
1789 unsigned long item_off;
1790 unsigned long item_len;
1791 int nritems;
1792 int i;
1793 int slot;
Chris Masonac8e9812010-02-28 15:39:26 -05001794 int ret = 0;
1795
1796 leaf = path->nodes[0];
1797 slot = path->slots[0];
1798 nritems = btrfs_header_nritems(leaf);
1799
1800 if (btrfs_header_generation(leaf) > sk->max_transid) {
1801 i = nritems;
1802 goto advance_key;
1803 }
1804 found_transid = btrfs_header_generation(leaf);
1805
1806 for (i = slot; i < nritems; i++) {
1807 item_off = btrfs_item_ptr_offset(leaf, i);
1808 item_len = btrfs_item_size_nr(leaf, i);
1809
Gabriel de Perthuis03b71c62013-05-06 17:40:18 +00001810 btrfs_item_key_to_cpu(leaf, key, i);
1811 if (!key_in_sk(key, sk))
1812 continue;
1813
1814 if (sizeof(sh) + item_len > BTRFS_SEARCH_ARGS_BUFSIZE)
Chris Masonac8e9812010-02-28 15:39:26 -05001815 item_len = 0;
1816
1817 if (sizeof(sh) + item_len + *sk_offset >
1818 BTRFS_SEARCH_ARGS_BUFSIZE) {
1819 ret = 1;
1820 goto overflow;
1821 }
1822
Chris Masonac8e9812010-02-28 15:39:26 -05001823 sh.objectid = key->objectid;
1824 sh.offset = key->offset;
1825 sh.type = key->type;
1826 sh.len = item_len;
1827 sh.transid = found_transid;
1828
1829 /* copy search result header */
1830 memcpy(buf + *sk_offset, &sh, sizeof(sh));
1831 *sk_offset += sizeof(sh);
1832
1833 if (item_len) {
1834 char *p = buf + *sk_offset;
1835 /* copy the item */
1836 read_extent_buffer(leaf, p,
1837 item_off, item_len);
1838 *sk_offset += item_len;
Chris Masonac8e9812010-02-28 15:39:26 -05001839 }
Hugo Millse2156862011-05-14 17:43:41 +00001840 (*num_found)++;
Chris Masonac8e9812010-02-28 15:39:26 -05001841
1842 if (*num_found >= sk->nr_items)
1843 break;
1844 }
1845advance_key:
Chris Masonac8e9812010-02-28 15:39:26 -05001846 ret = 0;
Chris Masonabc6e132010-03-18 12:10:08 -04001847 if (key->offset < (u64)-1 && key->offset < sk->max_offset)
1848 key->offset++;
1849 else if (key->type < (u8)-1 && key->type < sk->max_type) {
1850 key->offset = 0;
1851 key->type++;
1852 } else if (key->objectid < (u64)-1 && key->objectid < sk->max_objectid) {
1853 key->offset = 0;
1854 key->type = 0;
1855 key->objectid++;
1856 } else
1857 ret = 1;
Chris Masonac8e9812010-02-28 15:39:26 -05001858overflow:
Chris Masonac8e9812010-02-28 15:39:26 -05001859 return ret;
1860}
1861
1862static noinline int search_ioctl(struct inode *inode,
1863 struct btrfs_ioctl_search_args *args)
1864{
1865 struct btrfs_root *root;
1866 struct btrfs_key key;
1867 struct btrfs_key max_key;
1868 struct btrfs_path *path;
1869 struct btrfs_ioctl_search_key *sk = &args->key;
1870 struct btrfs_fs_info *info = BTRFS_I(inode)->root->fs_info;
1871 int ret;
1872 int num_found = 0;
1873 unsigned long sk_offset = 0;
1874
1875 path = btrfs_alloc_path();
1876 if (!path)
1877 return -ENOMEM;
1878
1879 if (sk->tree_id == 0) {
1880 /* search the root of the inode that was passed */
1881 root = BTRFS_I(inode)->root;
1882 } else {
1883 key.objectid = sk->tree_id;
1884 key.type = BTRFS_ROOT_ITEM_KEY;
1885 key.offset = (u64)-1;
1886 root = btrfs_read_fs_root_no_name(info, &key);
1887 if (IS_ERR(root)) {
1888 printk(KERN_ERR "could not find root %llu\n",
1889 sk->tree_id);
1890 btrfs_free_path(path);
1891 return -ENOENT;
1892 }
1893 }
1894
1895 key.objectid = sk->min_objectid;
1896 key.type = sk->min_type;
1897 key.offset = sk->min_offset;
1898
1899 max_key.objectid = sk->max_objectid;
1900 max_key.type = sk->max_type;
1901 max_key.offset = sk->max_offset;
1902
1903 path->keep_locks = 1;
1904
1905 while(1) {
Eric Sandeende78b512013-01-31 18:21:12 +00001906 ret = btrfs_search_forward(root, &key, &max_key, path,
Chris Masonac8e9812010-02-28 15:39:26 -05001907 sk->min_transid);
1908 if (ret != 0) {
1909 if (ret > 0)
1910 ret = 0;
1911 goto err;
1912 }
1913 ret = copy_to_sk(root, path, &key, sk, args->buf,
1914 &sk_offset, &num_found);
David Sterbab3b4aa72011-04-21 01:20:15 +02001915 btrfs_release_path(path);
Chris Masonac8e9812010-02-28 15:39:26 -05001916 if (ret || num_found >= sk->nr_items)
1917 break;
1918
1919 }
1920 ret = 0;
1921err:
1922 sk->nr_items = num_found;
1923 btrfs_free_path(path);
1924 return ret;
1925}
1926
1927static noinline int btrfs_ioctl_tree_search(struct file *file,
1928 void __user *argp)
1929{
1930 struct btrfs_ioctl_search_args *args;
1931 struct inode *inode;
1932 int ret;
1933
1934 if (!capable(CAP_SYS_ADMIN))
1935 return -EPERM;
1936
Julia Lawall2354d082010-10-29 15:14:18 -04001937 args = memdup_user(argp, sizeof(*args));
1938 if (IS_ERR(args))
1939 return PTR_ERR(args);
Chris Masonac8e9812010-02-28 15:39:26 -05001940
Al Viro496ad9a2013-01-23 17:07:38 -05001941 inode = file_inode(file);
Chris Masonac8e9812010-02-28 15:39:26 -05001942 ret = search_ioctl(inode, args);
1943 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
1944 ret = -EFAULT;
1945 kfree(args);
1946 return ret;
1947}
1948
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001949/*
Chris Masonac8e9812010-02-28 15:39:26 -05001950 * Search INODE_REFs to identify path name of 'dirid' directory
1951 * in a 'tree_id' tree. and sets path name to 'name'.
1952 */
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001953static noinline int btrfs_search_path_in_tree(struct btrfs_fs_info *info,
1954 u64 tree_id, u64 dirid, char *name)
1955{
1956 struct btrfs_root *root;
1957 struct btrfs_key key;
Chris Masonac8e9812010-02-28 15:39:26 -05001958 char *ptr;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001959 int ret = -1;
1960 int slot;
1961 int len;
1962 int total_len = 0;
1963 struct btrfs_inode_ref *iref;
1964 struct extent_buffer *l;
1965 struct btrfs_path *path;
1966
1967 if (dirid == BTRFS_FIRST_FREE_OBJECTID) {
1968 name[0]='\0';
1969 return 0;
1970 }
1971
1972 path = btrfs_alloc_path();
1973 if (!path)
1974 return -ENOMEM;
1975
Chris Masonac8e9812010-02-28 15:39:26 -05001976 ptr = &name[BTRFS_INO_LOOKUP_PATH_MAX];
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001977
1978 key.objectid = tree_id;
1979 key.type = BTRFS_ROOT_ITEM_KEY;
1980 key.offset = (u64)-1;
1981 root = btrfs_read_fs_root_no_name(info, &key);
1982 if (IS_ERR(root)) {
1983 printk(KERN_ERR "could not find root %llu\n", tree_id);
Chris Mason8ad6fca2010-03-18 12:23:10 -04001984 ret = -ENOENT;
1985 goto out;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001986 }
1987
1988 key.objectid = dirid;
1989 key.type = BTRFS_INODE_REF_KEY;
Chris Mason8ad6fca2010-03-18 12:23:10 -04001990 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001991
1992 while(1) {
1993 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1994 if (ret < 0)
1995 goto out;
1996
1997 l = path->nodes[0];
1998 slot = path->slots[0];
Chris Mason8ad6fca2010-03-18 12:23:10 -04001999 if (ret > 0 && slot > 0)
2000 slot--;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002001 btrfs_item_key_to_cpu(l, &key, slot);
2002
2003 if (ret > 0 && (key.objectid != dirid ||
Chris Masonac8e9812010-02-28 15:39:26 -05002004 key.type != BTRFS_INODE_REF_KEY)) {
2005 ret = -ENOENT;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002006 goto out;
Chris Masonac8e9812010-02-28 15:39:26 -05002007 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002008
2009 iref = btrfs_item_ptr(l, slot, struct btrfs_inode_ref);
2010 len = btrfs_inode_ref_name_len(l, iref);
2011 ptr -= len + 1;
2012 total_len += len + 1;
Chris Masonac8e9812010-02-28 15:39:26 -05002013 if (ptr < name)
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002014 goto out;
2015
2016 *(ptr + len) = '/';
2017 read_extent_buffer(l, ptr,(unsigned long)(iref + 1), len);
2018
2019 if (key.offset == BTRFS_FIRST_FREE_OBJECTID)
2020 break;
2021
David Sterbab3b4aa72011-04-21 01:20:15 +02002022 btrfs_release_path(path);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002023 key.objectid = key.offset;
Chris Mason8ad6fca2010-03-18 12:23:10 -04002024 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002025 dirid = key.objectid;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002026 }
Chris Masonac8e9812010-02-28 15:39:26 -05002027 if (ptr < name)
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002028 goto out;
Li Zefan77906a502011-07-14 03:16:00 +00002029 memmove(name, ptr, total_len);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002030 name[total_len]='\0';
2031 ret = 0;
2032out:
2033 btrfs_free_path(path);
Chris Masonac8e9812010-02-28 15:39:26 -05002034 return ret;
2035}
2036
2037static noinline int btrfs_ioctl_ino_lookup(struct file *file,
2038 void __user *argp)
2039{
2040 struct btrfs_ioctl_ino_lookup_args *args;
2041 struct inode *inode;
2042 int ret;
2043
2044 if (!capable(CAP_SYS_ADMIN))
2045 return -EPERM;
2046
Julia Lawall2354d082010-10-29 15:14:18 -04002047 args = memdup_user(argp, sizeof(*args));
2048 if (IS_ERR(args))
2049 return PTR_ERR(args);
Dan Carpenterc2b96922010-03-20 11:24:15 +00002050
Al Viro496ad9a2013-01-23 17:07:38 -05002051 inode = file_inode(file);
Chris Masonac8e9812010-02-28 15:39:26 -05002052
Chris Mason1b53ac42010-03-18 12:17:05 -04002053 if (args->treeid == 0)
2054 args->treeid = BTRFS_I(inode)->root->root_key.objectid;
2055
Chris Masonac8e9812010-02-28 15:39:26 -05002056 ret = btrfs_search_path_in_tree(BTRFS_I(inode)->root->fs_info,
2057 args->treeid, args->objectid,
2058 args->name);
2059
2060 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
2061 ret = -EFAULT;
2062
2063 kfree(args);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002064 return ret;
2065}
2066
Yan, Zheng76dda932009-09-21 16:00:26 -04002067static noinline int btrfs_ioctl_snap_destroy(struct file *file,
2068 void __user *arg)
2069{
2070 struct dentry *parent = fdentry(file);
2071 struct dentry *dentry;
2072 struct inode *dir = parent->d_inode;
2073 struct inode *inode;
2074 struct btrfs_root *root = BTRFS_I(dir)->root;
2075 struct btrfs_root *dest = NULL;
2076 struct btrfs_ioctl_vol_args *vol_args;
2077 struct btrfs_trans_handle *trans;
Miao Xiec58aaad2013-02-28 10:05:36 +00002078 struct btrfs_block_rsv block_rsv;
2079 u64 qgroup_reserved;
Yan, Zheng76dda932009-09-21 16:00:26 -04002080 int namelen;
2081 int ret;
2082 int err = 0;
2083
Yan, Zheng76dda932009-09-21 16:00:26 -04002084 vol_args = memdup_user(arg, sizeof(*vol_args));
2085 if (IS_ERR(vol_args))
2086 return PTR_ERR(vol_args);
2087
2088 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
2089 namelen = strlen(vol_args->name);
2090 if (strchr(vol_args->name, '/') ||
2091 strncmp(vol_args->name, "..", namelen) == 0) {
2092 err = -EINVAL;
2093 goto out;
2094 }
2095
Al Viroa561be72011-11-23 11:57:51 -05002096 err = mnt_want_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04002097 if (err)
2098 goto out;
2099
David Sterba5c50c9b2013-03-22 18:12:51 +00002100 err = mutex_lock_killable_nested(&dir->i_mutex, I_MUTEX_PARENT);
2101 if (err == -EINTR)
2102 goto out;
Yan, Zheng76dda932009-09-21 16:00:26 -04002103 dentry = lookup_one_len(vol_args->name, parent, namelen);
2104 if (IS_ERR(dentry)) {
2105 err = PTR_ERR(dentry);
2106 goto out_unlock_dir;
2107 }
2108
2109 if (!dentry->d_inode) {
2110 err = -ENOENT;
2111 goto out_dput;
2112 }
2113
2114 inode = dentry->d_inode;
Sage Weil4260f7c2010-10-29 15:46:43 -04002115 dest = BTRFS_I(inode)->root;
2116 if (!capable(CAP_SYS_ADMIN)){
2117 /*
2118 * Regular user. Only allow this with a special mount
2119 * option, when the user has write+exec access to the
2120 * subvol root, and when rmdir(2) would have been
2121 * allowed.
2122 *
2123 * Note that this is _not_ check that the subvol is
2124 * empty or doesn't contain data that we wouldn't
2125 * otherwise be able to delete.
2126 *
2127 * Users who want to delete empty subvols should try
2128 * rmdir(2).
2129 */
2130 err = -EPERM;
2131 if (!btrfs_test_opt(root, USER_SUBVOL_RM_ALLOWED))
2132 goto out_dput;
2133
2134 /*
2135 * Do not allow deletion if the parent dir is the same
2136 * as the dir to be deleted. That means the ioctl
2137 * must be called on the dentry referencing the root
2138 * of the subvol, not a random directory contained
2139 * within it.
2140 */
2141 err = -EINVAL;
2142 if (root == dest)
2143 goto out_dput;
2144
2145 err = inode_permission(inode, MAY_WRITE | MAY_EXEC);
2146 if (err)
2147 goto out_dput;
Sage Weil4260f7c2010-10-29 15:46:43 -04002148 }
2149
Miao Xie5c39da52012-10-22 11:39:53 +00002150 /* check if subvolume may be deleted by a user */
2151 err = btrfs_may_delete(dir, dentry, 1);
2152 if (err)
2153 goto out_dput;
2154
Li Zefan33345d012011-04-20 10:31:50 +08002155 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
Yan, Zheng76dda932009-09-21 16:00:26 -04002156 err = -EINVAL;
2157 goto out_dput;
2158 }
2159
Yan, Zheng76dda932009-09-21 16:00:26 -04002160 mutex_lock(&inode->i_mutex);
2161 err = d_invalidate(dentry);
2162 if (err)
2163 goto out_unlock;
2164
2165 down_write(&root->fs_info->subvol_sem);
2166
2167 err = may_destroy_subvol(dest);
2168 if (err)
2169 goto out_up_write;
2170
Miao Xiec58aaad2013-02-28 10:05:36 +00002171 btrfs_init_block_rsv(&block_rsv, BTRFS_BLOCK_RSV_TEMP);
2172 /*
2173 * One for dir inode, two for dir entries, two for root
2174 * ref/backref.
2175 */
2176 err = btrfs_subvolume_reserve_metadata(root, &block_rsv,
2177 5, &qgroup_reserved);
2178 if (err)
2179 goto out_up_write;
2180
Yan, Zhenga22285a2010-05-16 10:48:46 -04002181 trans = btrfs_start_transaction(root, 0);
2182 if (IS_ERR(trans)) {
2183 err = PTR_ERR(trans);
Miao Xiec58aaad2013-02-28 10:05:36 +00002184 goto out_release;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002185 }
Miao Xiec58aaad2013-02-28 10:05:36 +00002186 trans->block_rsv = &block_rsv;
2187 trans->bytes_reserved = block_rsv.size;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002188
Yan, Zheng76dda932009-09-21 16:00:26 -04002189 ret = btrfs_unlink_subvol(trans, root, dir,
2190 dest->root_key.objectid,
2191 dentry->d_name.name,
2192 dentry->d_name.len);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002193 if (ret) {
2194 err = ret;
2195 btrfs_abort_transaction(trans, root, ret);
2196 goto out_end_trans;
2197 }
Yan, Zheng76dda932009-09-21 16:00:26 -04002198
2199 btrfs_record_root_in_trans(trans, dest);
2200
2201 memset(&dest->root_item.drop_progress, 0,
2202 sizeof(dest->root_item.drop_progress));
2203 dest->root_item.drop_level = 0;
2204 btrfs_set_root_refs(&dest->root_item, 0);
2205
Yan, Zhengd68fc572010-05-16 10:49:58 -04002206 if (!xchg(&dest->orphan_item_inserted, 1)) {
2207 ret = btrfs_insert_orphan_item(trans,
2208 root->fs_info->tree_root,
2209 dest->root_key.objectid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002210 if (ret) {
2211 btrfs_abort_transaction(trans, root, ret);
2212 err = ret;
2213 goto out_end_trans;
2214 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04002215 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002216out_end_trans:
Miao Xiec58aaad2013-02-28 10:05:36 +00002217 trans->block_rsv = NULL;
2218 trans->bytes_reserved = 0;
Sage Weil531cb132010-10-29 15:41:32 -04002219 ret = btrfs_end_transaction(trans, root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002220 if (ret && !err)
2221 err = ret;
Yan, Zheng76dda932009-09-21 16:00:26 -04002222 inode->i_flags |= S_DEAD;
Miao Xiec58aaad2013-02-28 10:05:36 +00002223out_release:
2224 btrfs_subvolume_release_metadata(root, &block_rsv, qgroup_reserved);
Yan, Zheng76dda932009-09-21 16:00:26 -04002225out_up_write:
2226 up_write(&root->fs_info->subvol_sem);
2227out_unlock:
2228 mutex_unlock(&inode->i_mutex);
2229 if (!err) {
Yan, Zhengefefb142009-10-09 09:25:16 -04002230 shrink_dcache_sb(root->fs_info->sb);
Yan, Zheng76dda932009-09-21 16:00:26 -04002231 btrfs_invalidate_inodes(dest);
2232 d_delete(dentry);
Liu Bofa6ac872013-02-20 14:10:23 +00002233
2234 /* the last ref */
2235 if (dest->cache_inode) {
2236 iput(dest->cache_inode);
2237 dest->cache_inode = NULL;
2238 }
Yan, Zheng76dda932009-09-21 16:00:26 -04002239 }
2240out_dput:
2241 dput(dentry);
2242out_unlock_dir:
2243 mutex_unlock(&dir->i_mutex);
Al Viro2a79f172011-12-09 08:06:57 -05002244 mnt_drop_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04002245out:
2246 kfree(vol_args);
2247 return err;
2248}
2249
Chris Mason1e701a32010-03-11 09:42:04 -05002250static int btrfs_ioctl_defrag(struct file *file, void __user *argp)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002251{
Al Viro496ad9a2013-01-23 17:07:38 -05002252 struct inode *inode = file_inode(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002253 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason1e701a32010-03-11 09:42:04 -05002254 struct btrfs_ioctl_defrag_range_args *range;
Yan Zhengc146afa2008-11-12 14:34:12 -05002255 int ret;
2256
Ilya Dryomov25122d12013-01-20 15:57:57 +02002257 ret = mnt_want_write_file(file);
2258 if (ret)
2259 return ret;
Li Zefanb83cc962010-12-20 16:04:08 +08002260
Ilya Dryomov25122d12013-01-20 15:57:57 +02002261 if (btrfs_root_readonly(root)) {
2262 ret = -EROFS;
2263 goto out;
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002264 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002265
2266 switch (inode->i_mode & S_IFMT) {
2267 case S_IFDIR:
Chris Masone441d542009-01-05 16:57:23 -05002268 if (!capable(CAP_SYS_ADMIN)) {
2269 ret = -EPERM;
2270 goto out;
2271 }
Eric Sandeende78b512013-01-31 18:21:12 +00002272 ret = btrfs_defrag_root(root);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04002273 if (ret)
2274 goto out;
Eric Sandeende78b512013-01-31 18:21:12 +00002275 ret = btrfs_defrag_root(root->fs_info->extent_root);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002276 break;
2277 case S_IFREG:
Chris Masone441d542009-01-05 16:57:23 -05002278 if (!(file->f_mode & FMODE_WRITE)) {
2279 ret = -EINVAL;
2280 goto out;
2281 }
Chris Mason1e701a32010-03-11 09:42:04 -05002282
2283 range = kzalloc(sizeof(*range), GFP_KERNEL);
2284 if (!range) {
2285 ret = -ENOMEM;
2286 goto out;
2287 }
2288
2289 if (argp) {
2290 if (copy_from_user(range, argp,
2291 sizeof(*range))) {
2292 ret = -EFAULT;
2293 kfree(range);
Dan Carpenter683be162010-03-20 11:24:48 +00002294 goto out;
Chris Mason1e701a32010-03-11 09:42:04 -05002295 }
2296 /* compression requires us to start the IO */
2297 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
2298 range->flags |= BTRFS_DEFRAG_RANGE_START_IO;
2299 range->extent_thresh = (u32)-1;
2300 }
2301 } else {
2302 /* the rest are all set to zero by kzalloc */
2303 range->len = (u64)-1;
2304 }
Al Viro496ad9a2013-01-23 17:07:38 -05002305 ret = btrfs_defrag_file(file_inode(file), file,
Chris Mason4cb53002011-05-24 15:35:30 -04002306 range, 0, 0);
2307 if (ret > 0)
2308 ret = 0;
Chris Mason1e701a32010-03-11 09:42:04 -05002309 kfree(range);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002310 break;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04002311 default:
2312 ret = -EINVAL;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002313 }
Chris Masone441d542009-01-05 16:57:23 -05002314out:
Ilya Dryomov25122d12013-01-20 15:57:57 +02002315 mnt_drop_write_file(file);
Chris Masone441d542009-01-05 16:57:23 -05002316 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002317}
2318
Christoph Hellwigb2950862008-12-02 09:54:17 -05002319static long btrfs_ioctl_add_dev(struct btrfs_root *root, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002320{
2321 struct btrfs_ioctl_vol_args *vol_args;
2322 int ret;
2323
Chris Masone441d542009-01-05 16:57:23 -05002324 if (!capable(CAP_SYS_ADMIN))
2325 return -EPERM;
2326
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002327 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
2328 1)) {
2329 pr_info("btrfs: dev add/delete/balance/replace/resize operation in progress\n");
Ilya Dryomov2c0c9da2013-01-20 15:57:57 +02002330 return -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002331 }
2332
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002333 mutex_lock(&root->fs_info->volume_mutex);
Li Zefandae7b662009-04-08 15:06:54 +08002334 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002335 if (IS_ERR(vol_args)) {
2336 ret = PTR_ERR(vol_args);
2337 goto out;
2338 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002339
Mark Fasheh5516e592008-07-24 12:20:14 -04002340 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002341 ret = btrfs_init_new_device(root, vol_args->name);
2342
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002343 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002344out:
2345 mutex_unlock(&root->fs_info->volume_mutex);
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002346 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002347 return ret;
2348}
2349
Miao Xieda249272012-11-26 08:44:50 +00002350static long btrfs_ioctl_rm_dev(struct file *file, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002351{
Al Viro496ad9a2013-01-23 17:07:38 -05002352 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002353 struct btrfs_ioctl_vol_args *vol_args;
2354 int ret;
2355
Chris Masone441d542009-01-05 16:57:23 -05002356 if (!capable(CAP_SYS_ADMIN))
2357 return -EPERM;
2358
Miao Xieda249272012-11-26 08:44:50 +00002359 ret = mnt_want_write_file(file);
2360 if (ret)
2361 return ret;
Yan Zhengc146afa2008-11-12 14:34:12 -05002362
Li Zefandae7b662009-04-08 15:06:54 +08002363 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002364 if (IS_ERR(vol_args)) {
2365 ret = PTR_ERR(vol_args);
2366 goto out;
2367 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002368
Mark Fasheh5516e592008-07-24 12:20:14 -04002369 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002370
Anand Jain183860f2013-05-17 10:52:45 +00002371 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
2372 1)) {
2373 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
2374 goto out;
2375 }
2376
2377 mutex_lock(&root->fs_info->volume_mutex);
2378 ret = btrfs_rm_device(root, vol_args->name);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002379 mutex_unlock(&root->fs_info->volume_mutex);
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002380 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
Anand Jain183860f2013-05-17 10:52:45 +00002381
2382out:
2383 kfree(vol_args);
Ilya Dryomov4ac20c72013-01-20 15:57:57 +02002384 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002385 return ret;
2386}
2387
Jan Schmidt475f6382011-03-11 15:41:01 +01002388static long btrfs_ioctl_fs_info(struct btrfs_root *root, void __user *arg)
2389{
Li Zefan027ed2f2011-06-08 08:27:56 +00002390 struct btrfs_ioctl_fs_info_args *fi_args;
Jan Schmidt475f6382011-03-11 15:41:01 +01002391 struct btrfs_device *device;
2392 struct btrfs_device *next;
2393 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
Li Zefan027ed2f2011-06-08 08:27:56 +00002394 int ret = 0;
Jan Schmidt475f6382011-03-11 15:41:01 +01002395
2396 if (!capable(CAP_SYS_ADMIN))
2397 return -EPERM;
2398
Li Zefan027ed2f2011-06-08 08:27:56 +00002399 fi_args = kzalloc(sizeof(*fi_args), GFP_KERNEL);
2400 if (!fi_args)
2401 return -ENOMEM;
2402
2403 fi_args->num_devices = fs_devices->num_devices;
2404 memcpy(&fi_args->fsid, root->fs_info->fsid, sizeof(fi_args->fsid));
Jan Schmidt475f6382011-03-11 15:41:01 +01002405
2406 mutex_lock(&fs_devices->device_list_mutex);
2407 list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) {
Li Zefan027ed2f2011-06-08 08:27:56 +00002408 if (device->devid > fi_args->max_id)
2409 fi_args->max_id = device->devid;
Jan Schmidt475f6382011-03-11 15:41:01 +01002410 }
2411 mutex_unlock(&fs_devices->device_list_mutex);
2412
Li Zefan027ed2f2011-06-08 08:27:56 +00002413 if (copy_to_user(arg, fi_args, sizeof(*fi_args)))
2414 ret = -EFAULT;
Jan Schmidt475f6382011-03-11 15:41:01 +01002415
Li Zefan027ed2f2011-06-08 08:27:56 +00002416 kfree(fi_args);
2417 return ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01002418}
2419
2420static long btrfs_ioctl_dev_info(struct btrfs_root *root, void __user *arg)
2421{
2422 struct btrfs_ioctl_dev_info_args *di_args;
2423 struct btrfs_device *dev;
2424 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
2425 int ret = 0;
2426 char *s_uuid = NULL;
2427 char empty_uuid[BTRFS_UUID_SIZE] = {0};
2428
2429 if (!capable(CAP_SYS_ADMIN))
2430 return -EPERM;
2431
2432 di_args = memdup_user(arg, sizeof(*di_args));
2433 if (IS_ERR(di_args))
2434 return PTR_ERR(di_args);
2435
2436 if (memcmp(empty_uuid, di_args->uuid, BTRFS_UUID_SIZE) != 0)
2437 s_uuid = di_args->uuid;
2438
2439 mutex_lock(&fs_devices->device_list_mutex);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01002440 dev = btrfs_find_device(root->fs_info, di_args->devid, s_uuid, NULL);
Jan Schmidt475f6382011-03-11 15:41:01 +01002441
2442 if (!dev) {
2443 ret = -ENODEV;
2444 goto out;
2445 }
2446
2447 di_args->devid = dev->devid;
2448 di_args->bytes_used = dev->bytes_used;
2449 di_args->total_bytes = dev->total_bytes;
2450 memcpy(di_args->uuid, dev->uuid, sizeof(di_args->uuid));
Jim Meyeringa27202f2012-04-26 18:36:56 +02002451 if (dev->name) {
Josef Bacik606686e2012-06-04 14:03:51 -04002452 struct rcu_string *name;
2453
2454 rcu_read_lock();
2455 name = rcu_dereference(dev->name);
2456 strncpy(di_args->path, name->str, sizeof(di_args->path));
2457 rcu_read_unlock();
Jim Meyeringa27202f2012-04-26 18:36:56 +02002458 di_args->path[sizeof(di_args->path) - 1] = 0;
2459 } else {
Stefan Behrens99ba55a2012-03-19 16:17:22 +01002460 di_args->path[0] = '\0';
Jim Meyeringa27202f2012-04-26 18:36:56 +02002461 }
Jan Schmidt475f6382011-03-11 15:41:01 +01002462
2463out:
David Sterba55793c02013-04-26 15:20:23 +00002464 mutex_unlock(&fs_devices->device_list_mutex);
Jan Schmidt475f6382011-03-11 15:41:01 +01002465 if (ret == 0 && copy_to_user(arg, di_args, sizeof(*di_args)))
2466 ret = -EFAULT;
2467
2468 kfree(di_args);
2469 return ret;
2470}
2471
Yan, Zheng76dda932009-09-21 16:00:26 -04002472static noinline long btrfs_ioctl_clone(struct file *file, unsigned long srcfd,
2473 u64 off, u64 olen, u64 destoff)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002474{
Al Viro496ad9a2013-01-23 17:07:38 -05002475 struct inode *inode = file_inode(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002476 struct btrfs_root *root = BTRFS_I(inode)->root;
Al Viro2903ff02012-08-28 12:52:22 -04002477 struct fd src_file;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002478 struct inode *src;
2479 struct btrfs_trans_handle *trans;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002480 struct btrfs_path *path;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002481 struct extent_buffer *leaf;
Yan Zhengae01a0a2008-08-04 23:23:47 -04002482 char *buf;
2483 struct btrfs_key key;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002484 u32 nritems;
2485 int slot;
Yan Zhengae01a0a2008-08-04 23:23:47 -04002486 int ret;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002487 u64 len = olen;
2488 u64 bs = root->fs_info->sb->s_blocksize;
Liu Boa96fbc72013-05-26 13:50:31 +00002489 int same_inode = 0;
Chris Masond20f7042008-12-08 16:58:54 -05002490
Sage Weilc5c9cd42008-11-12 14:32:25 -05002491 /*
2492 * TODO:
2493 * - split compressed inline extents. annoying: we need to
2494 * decompress into destination's address_space (the file offset
2495 * may change, so source mapping won't do), then recompress (or
2496 * otherwise reinsert) a subrange.
2497 * - allow ranges within the same file to be cloned (provided
2498 * they don't overlap)?
2499 */
2500
Chris Masone441d542009-01-05 16:57:23 -05002501 /* the destination must be opened for writing */
Dan Rosenberg2ebc3462010-07-19 16:58:20 -04002502 if (!(file->f_mode & FMODE_WRITE) || (file->f_flags & O_APPEND))
Chris Masone441d542009-01-05 16:57:23 -05002503 return -EINVAL;
2504
Li Zefanb83cc962010-12-20 16:04:08 +08002505 if (btrfs_root_readonly(root))
2506 return -EROFS;
2507
Al Viroa561be72011-11-23 11:57:51 -05002508 ret = mnt_want_write_file(file);
Yan Zhengc146afa2008-11-12 14:34:12 -05002509 if (ret)
2510 return ret;
2511
Al Viro2903ff02012-08-28 12:52:22 -04002512 src_file = fdget(srcfd);
2513 if (!src_file.file) {
Yan Zhengab67b7c2008-12-19 10:58:39 -05002514 ret = -EBADF;
2515 goto out_drop_write;
2516 }
Dan Rosenberg5dc64162010-05-15 11:27:37 -04002517
David Sterba362a20c2011-08-01 18:11:57 +02002518 ret = -EXDEV;
Al Viro2903ff02012-08-28 12:52:22 -04002519 if (src_file.file->f_path.mnt != file->f_path.mnt)
David Sterba362a20c2011-08-01 18:11:57 +02002520 goto out_fput;
2521
Al Viro496ad9a2013-01-23 17:07:38 -05002522 src = file_inode(src_file.file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002523
Sage Weilc5c9cd42008-11-12 14:32:25 -05002524 ret = -EINVAL;
2525 if (src == inode)
Liu Boa96fbc72013-05-26 13:50:31 +00002526 same_inode = 1;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002527
Dan Rosenberg5dc64162010-05-15 11:27:37 -04002528 /* the src must be open for reading */
Al Viro2903ff02012-08-28 12:52:22 -04002529 if (!(src_file.file->f_mode & FMODE_READ))
Dan Rosenberg5dc64162010-05-15 11:27:37 -04002530 goto out_fput;
2531
Li Zefan0e7b8242011-09-18 10:20:46 -04002532 /* don't make the dst file partly checksummed */
2533 if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
2534 (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM))
2535 goto out_fput;
2536
Yan Zhengae01a0a2008-08-04 23:23:47 -04002537 ret = -EISDIR;
2538 if (S_ISDIR(src->i_mode) || S_ISDIR(inode->i_mode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002539 goto out_fput;
2540
Yan Zhengae01a0a2008-08-04 23:23:47 -04002541 ret = -EXDEV;
David Sterba362a20c2011-08-01 18:11:57 +02002542 if (src->i_sb != inode->i_sb)
Yan Zhengae01a0a2008-08-04 23:23:47 -04002543 goto out_fput;
2544
2545 ret = -ENOMEM;
2546 buf = vmalloc(btrfs_level_size(root, 0));
2547 if (!buf)
2548 goto out_fput;
2549
2550 path = btrfs_alloc_path();
2551 if (!path) {
2552 vfree(buf);
2553 goto out_fput;
2554 }
2555 path->reada = 2;
2556
Liu Boa96fbc72013-05-26 13:50:31 +00002557 if (!same_inode) {
2558 if (inode < src) {
2559 mutex_lock_nested(&inode->i_mutex, I_MUTEX_PARENT);
2560 mutex_lock_nested(&src->i_mutex, I_MUTEX_CHILD);
2561 } else {
2562 mutex_lock_nested(&src->i_mutex, I_MUTEX_PARENT);
2563 mutex_lock_nested(&inode->i_mutex, I_MUTEX_CHILD);
2564 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002565 } else {
Liu Boa96fbc72013-05-26 13:50:31 +00002566 mutex_lock(&src->i_mutex);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002567 }
2568
Sage Weilc5c9cd42008-11-12 14:32:25 -05002569 /* determine range to clone */
2570 ret = -EINVAL;
Dan Rosenberg2ebc3462010-07-19 16:58:20 -04002571 if (off + len > src->i_size || off + len < off)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002572 goto out_unlock;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002573 if (len == 0)
2574 olen = len = src->i_size - off;
2575 /* if we extend to eof, continue to block boundary */
2576 if (off + len == src->i_size)
Li Zefan2a6b8da2010-11-19 01:36:10 +00002577 len = ALIGN(src->i_size, bs) - off;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002578
2579 /* verify the end result is block aligned */
Li Zefan2a6b8da2010-11-19 01:36:10 +00002580 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs) ||
2581 !IS_ALIGNED(destoff, bs))
Sage Weilc5c9cd42008-11-12 14:32:25 -05002582 goto out_unlock;
2583
Liu Boa96fbc72013-05-26 13:50:31 +00002584 /* verify if ranges are overlapped within the same file */
2585 if (same_inode) {
2586 if (destoff + len > off && destoff < off + len)
2587 goto out_unlock;
2588 }
2589
Li Zefand525e8a2011-09-11 10:52:25 -04002590 if (destoff > inode->i_size) {
2591 ret = btrfs_cont_expand(inode, inode->i_size, destoff);
2592 if (ret)
2593 goto out_unlock;
2594 }
2595
Li Zefan71ef0782011-09-18 10:20:46 -04002596 /* truncate page cache pages from target inode range */
2597 truncate_inode_pages_range(&inode->i_data, destoff,
2598 PAGE_CACHE_ALIGN(destoff + len) - 1);
2599
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002600 /* do any pending delalloc/csum calc on src, one way or
2601 another, and lock file content */
2602 while (1) {
Zheng Yan31840ae2008-09-23 13:14:14 -04002603 struct btrfs_ordered_extent *ordered;
Liu Boaa42ffd2012-09-18 03:52:23 -06002604 lock_extent(&BTRFS_I(src)->io_tree, off, off + len - 1);
2605 ordered = btrfs_lookup_first_ordered_extent(src, off + len - 1);
Sage Weil9a019192010-10-29 15:37:33 -04002606 if (!ordered &&
Liu Boaa42ffd2012-09-18 03:52:23 -06002607 !test_range_bit(&BTRFS_I(src)->io_tree, off, off + len - 1,
2608 EXTENT_DELALLOC, 0, NULL))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002609 break;
Liu Boaa42ffd2012-09-18 03:52:23 -06002610 unlock_extent(&BTRFS_I(src)->io_tree, off, off + len - 1);
Yan Zhengae01a0a2008-08-04 23:23:47 -04002611 if (ordered)
2612 btrfs_put_ordered_extent(ordered);
Sage Weil9a019192010-10-29 15:37:33 -04002613 btrfs_wait_ordered_range(src, off, len);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002614 }
2615
Sage Weilc5c9cd42008-11-12 14:32:25 -05002616 /* clone data */
Li Zefan33345d012011-04-20 10:31:50 +08002617 key.objectid = btrfs_ino(src);
Yan Zhengae01a0a2008-08-04 23:23:47 -04002618 key.type = BTRFS_EXTENT_DATA_KEY;
2619 key.offset = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002620
2621 while (1) {
2622 /*
2623 * note the key will change type as we walk through the
2624 * tree.
2625 */
David Sterba362a20c2011-08-01 18:11:57 +02002626 ret = btrfs_search_slot(NULL, BTRFS_I(src)->root, &key, path,
2627 0, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002628 if (ret < 0)
2629 goto out;
2630
Yan Zhengae01a0a2008-08-04 23:23:47 -04002631 nritems = btrfs_header_nritems(path->nodes[0]);
2632 if (path->slots[0] >= nritems) {
David Sterba362a20c2011-08-01 18:11:57 +02002633 ret = btrfs_next_leaf(BTRFS_I(src)->root, path);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002634 if (ret < 0)
2635 goto out;
2636 if (ret > 0)
2637 break;
Yan Zhengae01a0a2008-08-04 23:23:47 -04002638 nritems = btrfs_header_nritems(path->nodes[0]);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002639 }
2640 leaf = path->nodes[0];
2641 slot = path->slots[0];
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002642
Yan Zhengae01a0a2008-08-04 23:23:47 -04002643 btrfs_item_key_to_cpu(leaf, &key, slot);
Chris Masond20f7042008-12-08 16:58:54 -05002644 if (btrfs_key_type(&key) > BTRFS_EXTENT_DATA_KEY ||
Li Zefan33345d012011-04-20 10:31:50 +08002645 key.objectid != btrfs_ino(src))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002646 break;
2647
Sage Weilc5c9cd42008-11-12 14:32:25 -05002648 if (btrfs_key_type(&key) == BTRFS_EXTENT_DATA_KEY) {
2649 struct btrfs_file_extent_item *extent;
2650 int type;
Zheng Yan31840ae2008-09-23 13:14:14 -04002651 u32 size;
2652 struct btrfs_key new_key;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002653 u64 disko = 0, diskl = 0;
2654 u64 datao = 0, datal = 0;
2655 u8 comp;
Sage Weilb5384d42010-06-12 22:31:14 +00002656 u64 endoff;
Zheng Yan31840ae2008-09-23 13:14:14 -04002657
2658 size = btrfs_item_size_nr(leaf, slot);
2659 read_extent_buffer(leaf, buf,
2660 btrfs_item_ptr_offset(leaf, slot),
2661 size);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002662
2663 extent = btrfs_item_ptr(leaf, slot,
2664 struct btrfs_file_extent_item);
2665 comp = btrfs_file_extent_compression(leaf, extent);
2666 type = btrfs_file_extent_type(leaf, extent);
Chris Masonc8a894d2009-06-27 21:07:03 -04002667 if (type == BTRFS_FILE_EXTENT_REG ||
2668 type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masond3977122009-01-05 21:25:51 -05002669 disko = btrfs_file_extent_disk_bytenr(leaf,
2670 extent);
2671 diskl = btrfs_file_extent_disk_num_bytes(leaf,
2672 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002673 datao = btrfs_file_extent_offset(leaf, extent);
Chris Masond3977122009-01-05 21:25:51 -05002674 datal = btrfs_file_extent_num_bytes(leaf,
2675 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002676 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
2677 /* take upper bound, may be compressed */
2678 datal = btrfs_file_extent_ram_bytes(leaf,
2679 extent);
2680 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002681 btrfs_release_path(path);
Zheng Yan31840ae2008-09-23 13:14:14 -04002682
Sage Weil050006a2010-10-29 15:37:33 -04002683 if (key.offset + datal <= off ||
Liu Boaa42ffd2012-09-18 03:52:23 -06002684 key.offset >= off + len - 1)
Sage Weilc5c9cd42008-11-12 14:32:25 -05002685 goto next;
2686
Zheng Yan31840ae2008-09-23 13:14:14 -04002687 memcpy(&new_key, &key, sizeof(new_key));
Li Zefan33345d012011-04-20 10:31:50 +08002688 new_key.objectid = btrfs_ino(inode);
Li Zefan4d728ec2011-01-26 14:10:43 +08002689 if (off <= key.offset)
2690 new_key.offset = key.offset + destoff - off;
2691 else
2692 new_key.offset = destoff;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002693
Sage Weilb6f34092011-09-20 14:48:51 -04002694 /*
2695 * 1 - adjusting old extent (we may have to split it)
2696 * 1 - add new extent
2697 * 1 - inode update
2698 */
2699 trans = btrfs_start_transaction(root, 3);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002700 if (IS_ERR(trans)) {
2701 ret = PTR_ERR(trans);
2702 goto out;
2703 }
2704
Chris Masonc8a894d2009-06-27 21:07:03 -04002705 if (type == BTRFS_FILE_EXTENT_REG ||
2706 type == BTRFS_FILE_EXTENT_PREALLOC) {
Li Zefand72c0842011-09-11 10:52:25 -04002707 /*
2708 * a | --- range to clone ---| b
2709 * | ------------- extent ------------- |
2710 */
2711
2712 /* substract range b */
2713 if (key.offset + datal > off + len)
2714 datal = off + len - key.offset;
2715
2716 /* substract range a */
Yan, Zhenga22285a2010-05-16 10:48:46 -04002717 if (off > key.offset) {
2718 datao += off - key.offset;
2719 datal -= off - key.offset;
2720 }
2721
Josef Bacik5dc562c2012-08-17 13:14:17 -04002722 ret = btrfs_drop_extents(trans, root, inode,
Yan, Zhenga22285a2010-05-16 10:48:46 -04002723 new_key.offset,
2724 new_key.offset + datal,
Josef Bacik26714852012-08-29 12:24:27 -04002725 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002726 if (ret) {
2727 btrfs_abort_transaction(trans, root,
2728 ret);
2729 btrfs_end_transaction(trans, root);
2730 goto out;
2731 }
Yan, Zhenga22285a2010-05-16 10:48:46 -04002732
Sage Weilc5c9cd42008-11-12 14:32:25 -05002733 ret = btrfs_insert_empty_item(trans, root, path,
2734 &new_key, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002735 if (ret) {
2736 btrfs_abort_transaction(trans, root,
2737 ret);
2738 btrfs_end_transaction(trans, root);
2739 goto out;
2740 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05002741
2742 leaf = path->nodes[0];
2743 slot = path->slots[0];
2744 write_extent_buffer(leaf, buf,
2745 btrfs_item_ptr_offset(leaf, slot),
2746 size);
2747
2748 extent = btrfs_item_ptr(leaf, slot,
2749 struct btrfs_file_extent_item);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002750
Sage Weilc5c9cd42008-11-12 14:32:25 -05002751 /* disko == 0 means it's a hole */
2752 if (!disko)
2753 datao = 0;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002754
2755 btrfs_set_file_extent_offset(leaf, extent,
2756 datao);
2757 btrfs_set_file_extent_num_bytes(leaf, extent,
2758 datal);
2759 if (disko) {
2760 inode_add_bytes(inode, datal);
2761 ret = btrfs_inc_extent_ref(trans, root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002762 disko, diskl, 0,
2763 root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08002764 btrfs_ino(inode),
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002765 new_key.offset - datao,
2766 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002767 if (ret) {
2768 btrfs_abort_transaction(trans,
2769 root,
2770 ret);
2771 btrfs_end_transaction(trans,
2772 root);
2773 goto out;
2774
2775 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05002776 }
2777 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
2778 u64 skip = 0;
2779 u64 trim = 0;
2780 if (off > key.offset) {
2781 skip = off - key.offset;
2782 new_key.offset += skip;
2783 }
Chris Masond3977122009-01-05 21:25:51 -05002784
Liu Boaa42ffd2012-09-18 03:52:23 -06002785 if (key.offset + datal > off + len)
2786 trim = key.offset + datal - (off + len);
Chris Masond3977122009-01-05 21:25:51 -05002787
Sage Weilc5c9cd42008-11-12 14:32:25 -05002788 if (comp && (skip || trim)) {
Sage Weilc5c9cd42008-11-12 14:32:25 -05002789 ret = -EINVAL;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002790 btrfs_end_transaction(trans, root);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002791 goto out;
2792 }
2793 size -= skip + trim;
2794 datal -= skip + trim;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002795
Josef Bacik5dc562c2012-08-17 13:14:17 -04002796 ret = btrfs_drop_extents(trans, root, inode,
Yan, Zhenga22285a2010-05-16 10:48:46 -04002797 new_key.offset,
2798 new_key.offset + datal,
Josef Bacik26714852012-08-29 12:24:27 -04002799 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002800 if (ret) {
2801 btrfs_abort_transaction(trans, root,
2802 ret);
2803 btrfs_end_transaction(trans, root);
2804 goto out;
2805 }
Yan, Zhenga22285a2010-05-16 10:48:46 -04002806
Sage Weilc5c9cd42008-11-12 14:32:25 -05002807 ret = btrfs_insert_empty_item(trans, root, path,
2808 &new_key, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002809 if (ret) {
2810 btrfs_abort_transaction(trans, root,
2811 ret);
2812 btrfs_end_transaction(trans, root);
2813 goto out;
2814 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05002815
2816 if (skip) {
Chris Masond3977122009-01-05 21:25:51 -05002817 u32 start =
2818 btrfs_file_extent_calc_inline_size(0);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002819 memmove(buf+start, buf+start+skip,
2820 datal);
2821 }
2822
2823 leaf = path->nodes[0];
2824 slot = path->slots[0];
2825 write_extent_buffer(leaf, buf,
2826 btrfs_item_ptr_offset(leaf, slot),
2827 size);
2828 inode_add_bytes(inode, datal);
2829 }
2830
2831 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02002832 btrfs_release_path(path);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002833
Josef Bacik0c4d2d92012-04-05 15:03:02 -04002834 inode_inc_iversion(inode);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002835 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
Sage Weilb5384d42010-06-12 22:31:14 +00002836
2837 /*
2838 * we round up to the block size at eof when
2839 * determining which extents to clone above,
2840 * but shouldn't round up the file size
2841 */
2842 endoff = new_key.offset + datal;
Li Zefan5f3888f2010-11-19 01:36:34 +00002843 if (endoff > destoff+olen)
2844 endoff = destoff+olen;
Sage Weilb5384d42010-06-12 22:31:14 +00002845 if (endoff > inode->i_size)
2846 btrfs_i_size_write(inode, endoff);
2847
Yan, Zhenga22285a2010-05-16 10:48:46 -04002848 ret = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002849 if (ret) {
2850 btrfs_abort_transaction(trans, root, ret);
2851 btrfs_end_transaction(trans, root);
2852 goto out;
2853 }
2854 ret = btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002855 }
Chris Masond3977122009-01-05 21:25:51 -05002856next:
David Sterbab3b4aa72011-04-21 01:20:15 +02002857 btrfs_release_path(path);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002858 key.offset++;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002859 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002860 ret = 0;
2861out:
David Sterbab3b4aa72011-04-21 01:20:15 +02002862 btrfs_release_path(path);
Liu Boaa42ffd2012-09-18 03:52:23 -06002863 unlock_extent(&BTRFS_I(src)->io_tree, off, off + len - 1);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002864out_unlock:
2865 mutex_unlock(&src->i_mutex);
Liu Boa96fbc72013-05-26 13:50:31 +00002866 if (!same_inode)
2867 mutex_unlock(&inode->i_mutex);
Yan Zhengae01a0a2008-08-04 23:23:47 -04002868 vfree(buf);
2869 btrfs_free_path(path);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002870out_fput:
Al Viro2903ff02012-08-28 12:52:22 -04002871 fdput(src_file);
Yan Zhengab67b7c2008-12-19 10:58:39 -05002872out_drop_write:
Al Viro2a79f172011-12-09 08:06:57 -05002873 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002874 return ret;
2875}
2876
Christoph Hellwig7a865e82008-12-02 09:52:24 -05002877static long btrfs_ioctl_clone_range(struct file *file, void __user *argp)
Sage Weilc5c9cd42008-11-12 14:32:25 -05002878{
2879 struct btrfs_ioctl_clone_range_args args;
2880
Christoph Hellwig7a865e82008-12-02 09:52:24 -05002881 if (copy_from_user(&args, argp, sizeof(args)))
Sage Weilc5c9cd42008-11-12 14:32:25 -05002882 return -EFAULT;
2883 return btrfs_ioctl_clone(file, args.src_fd, args.src_offset,
2884 args.src_length, args.dest_offset);
2885}
2886
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002887/*
2888 * there are many ways the trans_start and trans_end ioctls can lead
2889 * to deadlocks. They should only be used by applications that
2890 * basically own the machine, and have a very in depth understanding
2891 * of all the possible deadlocks and enospc problems.
2892 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05002893static long btrfs_ioctl_trans_start(struct file *file)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002894{
Al Viro496ad9a2013-01-23 17:07:38 -05002895 struct inode *inode = file_inode(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002896 struct btrfs_root *root = BTRFS_I(inode)->root;
2897 struct btrfs_trans_handle *trans;
Sage Weil1ab86ae2009-09-29 18:38:44 -04002898 int ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002899
Sage Weil1ab86ae2009-09-29 18:38:44 -04002900 ret = -EPERM;
Christoph Hellwigdf5b5522008-06-11 21:53:58 -04002901 if (!capable(CAP_SYS_ADMIN))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002902 goto out;
Sage Weil1ab86ae2009-09-29 18:38:44 -04002903
2904 ret = -EINPROGRESS;
2905 if (file->private_data)
2906 goto out;
Sage Weil9ca9ee02008-08-04 10:41:27 -04002907
Li Zefanb83cc962010-12-20 16:04:08 +08002908 ret = -EROFS;
2909 if (btrfs_root_readonly(root))
2910 goto out;
2911
Al Viroa561be72011-11-23 11:57:51 -05002912 ret = mnt_want_write_file(file);
Yan Zhengc146afa2008-11-12 14:34:12 -05002913 if (ret)
2914 goto out;
2915
Josef Bacika4abeea2011-04-11 17:25:13 -04002916 atomic_inc(&root->fs_info->open_ioctl_trans);
Sage Weil9ca9ee02008-08-04 10:41:27 -04002917
Sage Weil1ab86ae2009-09-29 18:38:44 -04002918 ret = -ENOMEM;
Josef Bacik7a7eaa42011-04-13 12:54:33 -04002919 trans = btrfs_start_ioctl_transaction(root);
Tsutomu Itohabd30bb2011-01-24 00:57:10 +00002920 if (IS_ERR(trans))
Sage Weil1ab86ae2009-09-29 18:38:44 -04002921 goto out_drop;
2922
2923 file->private_data = trans;
2924 return 0;
2925
2926out_drop:
Josef Bacika4abeea2011-04-11 17:25:13 -04002927 atomic_dec(&root->fs_info->open_ioctl_trans);
Al Viro2a79f172011-12-09 08:06:57 -05002928 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002929out:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002930 return ret;
2931}
2932
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002933static long btrfs_ioctl_default_subvol(struct file *file, void __user *argp)
2934{
Al Viro496ad9a2013-01-23 17:07:38 -05002935 struct inode *inode = file_inode(file);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002936 struct btrfs_root *root = BTRFS_I(inode)->root;
2937 struct btrfs_root *new_root;
2938 struct btrfs_dir_item *di;
2939 struct btrfs_trans_handle *trans;
2940 struct btrfs_path *path;
2941 struct btrfs_key location;
2942 struct btrfs_disk_key disk_key;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002943 u64 objectid = 0;
2944 u64 dir_id;
Miao Xie3c04ce02012-11-26 08:43:07 +00002945 int ret;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002946
2947 if (!capable(CAP_SYS_ADMIN))
2948 return -EPERM;
2949
Miao Xie3c04ce02012-11-26 08:43:07 +00002950 ret = mnt_want_write_file(file);
2951 if (ret)
2952 return ret;
2953
2954 if (copy_from_user(&objectid, argp, sizeof(objectid))) {
2955 ret = -EFAULT;
2956 goto out;
2957 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002958
2959 if (!objectid)
2960 objectid = root->root_key.objectid;
2961
2962 location.objectid = objectid;
2963 location.type = BTRFS_ROOT_ITEM_KEY;
2964 location.offset = (u64)-1;
2965
2966 new_root = btrfs_read_fs_root_no_name(root->fs_info, &location);
Miao Xie3c04ce02012-11-26 08:43:07 +00002967 if (IS_ERR(new_root)) {
2968 ret = PTR_ERR(new_root);
2969 goto out;
2970 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002971
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002972 path = btrfs_alloc_path();
Miao Xie3c04ce02012-11-26 08:43:07 +00002973 if (!path) {
2974 ret = -ENOMEM;
2975 goto out;
2976 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002977 path->leave_spinning = 1;
2978
2979 trans = btrfs_start_transaction(root, 1);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002980 if (IS_ERR(trans)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002981 btrfs_free_path(path);
Miao Xie3c04ce02012-11-26 08:43:07 +00002982 ret = PTR_ERR(trans);
2983 goto out;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002984 }
2985
David Sterba6c417612011-04-13 15:41:04 +02002986 dir_id = btrfs_super_root_dir(root->fs_info->super_copy);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002987 di = btrfs_lookup_dir_item(trans, root->fs_info->tree_root, path,
2988 dir_id, "default", 7, 1);
Dan Carpentercf1e99a2010-05-29 09:47:24 +00002989 if (IS_ERR_OR_NULL(di)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002990 btrfs_free_path(path);
2991 btrfs_end_transaction(trans, root);
2992 printk(KERN_ERR "Umm, you don't have the default dir item, "
2993 "this isn't going to work\n");
Miao Xie3c04ce02012-11-26 08:43:07 +00002994 ret = -ENOENT;
2995 goto out;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002996 }
2997
2998 btrfs_cpu_key_to_disk(&disk_key, &new_root->root_key);
2999 btrfs_set_dir_item_key(path->nodes[0], di, &disk_key);
3000 btrfs_mark_buffer_dirty(path->nodes[0]);
3001 btrfs_free_path(path);
3002
Mitch Harder2b0ce2c2012-07-24 11:58:43 -06003003 btrfs_set_fs_incompat(root->fs_info, DEFAULT_SUBVOL);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003004 btrfs_end_transaction(trans, root);
Miao Xie3c04ce02012-11-26 08:43:07 +00003005out:
3006 mnt_drop_write_file(file);
3007 return ret;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003008}
3009
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02003010void btrfs_get_block_group_info(struct list_head *groups_list,
3011 struct btrfs_ioctl_space_info *space)
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003012{
3013 struct btrfs_block_group_cache *block_group;
3014
3015 space->total_bytes = 0;
3016 space->used_bytes = 0;
3017 space->flags = 0;
3018 list_for_each_entry(block_group, groups_list, list) {
3019 space->flags = block_group->flags;
3020 space->total_bytes += block_group->key.offset;
3021 space->used_bytes +=
3022 btrfs_block_group_used(&block_group->item);
3023 }
3024}
3025
Eric Sandeen48a3b632013-04-25 20:41:01 +00003026static long btrfs_ioctl_space_info(struct btrfs_root *root, void __user *arg)
Josef Bacik1406e432010-01-13 18:19:06 +00003027{
3028 struct btrfs_ioctl_space_args space_args;
3029 struct btrfs_ioctl_space_info space;
3030 struct btrfs_ioctl_space_info *dest;
Chris Mason7fde62b2010-03-16 15:40:10 -04003031 struct btrfs_ioctl_space_info *dest_orig;
Daniel J Blueman13f26962011-04-11 15:56:31 +00003032 struct btrfs_ioctl_space_info __user *user_dest;
Josef Bacik1406e432010-01-13 18:19:06 +00003033 struct btrfs_space_info *info;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003034 u64 types[] = {BTRFS_BLOCK_GROUP_DATA,
3035 BTRFS_BLOCK_GROUP_SYSTEM,
3036 BTRFS_BLOCK_GROUP_METADATA,
3037 BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA};
3038 int num_types = 4;
Chris Mason7fde62b2010-03-16 15:40:10 -04003039 int alloc_size;
Josef Bacik1406e432010-01-13 18:19:06 +00003040 int ret = 0;
Dan Rosenberg51788b12011-02-14 16:04:23 -05003041 u64 slot_count = 0;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003042 int i, c;
Josef Bacik1406e432010-01-13 18:19:06 +00003043
3044 if (copy_from_user(&space_args,
3045 (struct btrfs_ioctl_space_args __user *)arg,
3046 sizeof(space_args)))
3047 return -EFAULT;
3048
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003049 for (i = 0; i < num_types; i++) {
3050 struct btrfs_space_info *tmp;
3051
3052 info = NULL;
3053 rcu_read_lock();
3054 list_for_each_entry_rcu(tmp, &root->fs_info->space_info,
3055 list) {
3056 if (tmp->flags == types[i]) {
3057 info = tmp;
3058 break;
3059 }
3060 }
3061 rcu_read_unlock();
3062
3063 if (!info)
3064 continue;
3065
3066 down_read(&info->groups_sem);
3067 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
3068 if (!list_empty(&info->block_groups[c]))
3069 slot_count++;
3070 }
3071 up_read(&info->groups_sem);
3072 }
Josef Bacik1406e432010-01-13 18:19:06 +00003073
Chris Mason7fde62b2010-03-16 15:40:10 -04003074 /* space_slots == 0 means they are asking for a count */
3075 if (space_args.space_slots == 0) {
3076 space_args.total_spaces = slot_count;
3077 goto out;
3078 }
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003079
Dan Rosenberg51788b12011-02-14 16:04:23 -05003080 slot_count = min_t(u64, space_args.space_slots, slot_count);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003081
Chris Mason7fde62b2010-03-16 15:40:10 -04003082 alloc_size = sizeof(*dest) * slot_count;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003083
Chris Mason7fde62b2010-03-16 15:40:10 -04003084 /* we generally have at most 6 or so space infos, one for each raid
3085 * level. So, a whole page should be more than enough for everyone
3086 */
3087 if (alloc_size > PAGE_CACHE_SIZE)
3088 return -ENOMEM;
3089
3090 space_args.total_spaces = 0;
3091 dest = kmalloc(alloc_size, GFP_NOFS);
3092 if (!dest)
3093 return -ENOMEM;
3094 dest_orig = dest;
3095
3096 /* now we have a buffer to copy into */
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003097 for (i = 0; i < num_types; i++) {
3098 struct btrfs_space_info *tmp;
Chris Mason7fde62b2010-03-16 15:40:10 -04003099
Dan Rosenberg51788b12011-02-14 16:04:23 -05003100 if (!slot_count)
3101 break;
3102
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003103 info = NULL;
3104 rcu_read_lock();
3105 list_for_each_entry_rcu(tmp, &root->fs_info->space_info,
3106 list) {
3107 if (tmp->flags == types[i]) {
3108 info = tmp;
3109 break;
3110 }
3111 }
3112 rcu_read_unlock();
Chris Mason7fde62b2010-03-16 15:40:10 -04003113
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003114 if (!info)
3115 continue;
3116 down_read(&info->groups_sem);
3117 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
3118 if (!list_empty(&info->block_groups[c])) {
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02003119 btrfs_get_block_group_info(
3120 &info->block_groups[c], &space);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003121 memcpy(dest, &space, sizeof(space));
3122 dest++;
3123 space_args.total_spaces++;
Dan Rosenberg51788b12011-02-14 16:04:23 -05003124 slot_count--;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003125 }
Dan Rosenberg51788b12011-02-14 16:04:23 -05003126 if (!slot_count)
3127 break;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003128 }
3129 up_read(&info->groups_sem);
Josef Bacik1406e432010-01-13 18:19:06 +00003130 }
Josef Bacik1406e432010-01-13 18:19:06 +00003131
Daniel J Blueman2eec6c82012-04-26 00:37:14 +08003132 user_dest = (struct btrfs_ioctl_space_info __user *)
Chris Mason7fde62b2010-03-16 15:40:10 -04003133 (arg + sizeof(struct btrfs_ioctl_space_args));
3134
3135 if (copy_to_user(user_dest, dest_orig, alloc_size))
3136 ret = -EFAULT;
3137
3138 kfree(dest_orig);
3139out:
3140 if (ret == 0 && copy_to_user(arg, &space_args, sizeof(space_args)))
Josef Bacik1406e432010-01-13 18:19:06 +00003141 ret = -EFAULT;
3142
3143 return ret;
3144}
3145
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003146/*
3147 * there are many ways the trans_start and trans_end ioctls can lead
3148 * to deadlocks. They should only be used by applications that
3149 * basically own the machine, and have a very in depth understanding
3150 * of all the possible deadlocks and enospc problems.
3151 */
3152long btrfs_ioctl_trans_end(struct file *file)
3153{
Al Viro496ad9a2013-01-23 17:07:38 -05003154 struct inode *inode = file_inode(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003155 struct btrfs_root *root = BTRFS_I(inode)->root;
3156 struct btrfs_trans_handle *trans;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003157
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003158 trans = file->private_data;
Sage Weil1ab86ae2009-09-29 18:38:44 -04003159 if (!trans)
3160 return -EINVAL;
Christoph Hellwigb2141072008-09-05 16:43:31 -04003161 file->private_data = NULL;
Sage Weil9ca9ee02008-08-04 10:41:27 -04003162
Sage Weil1ab86ae2009-09-29 18:38:44 -04003163 btrfs_end_transaction(trans, root);
3164
Josef Bacika4abeea2011-04-11 17:25:13 -04003165 atomic_dec(&root->fs_info->open_ioctl_trans);
Sage Weil9ca9ee02008-08-04 10:41:27 -04003166
Al Viro2a79f172011-12-09 08:06:57 -05003167 mnt_drop_write_file(file);
Sage Weil1ab86ae2009-09-29 18:38:44 -04003168 return 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003169}
3170
Miao Xie9a8c28b2012-11-26 08:40:43 +00003171static noinline long btrfs_ioctl_start_sync(struct btrfs_root *root,
3172 void __user *argp)
Sage Weil46204592010-10-29 15:41:32 -04003173{
Sage Weil46204592010-10-29 15:41:32 -04003174 struct btrfs_trans_handle *trans;
3175 u64 transid;
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00003176 int ret;
Sage Weil46204592010-10-29 15:41:32 -04003177
Miao Xied4edf392013-02-20 09:17:06 +00003178 trans = btrfs_attach_transaction_barrier(root);
Miao Xieff7c1d32012-11-26 08:41:29 +00003179 if (IS_ERR(trans)) {
3180 if (PTR_ERR(trans) != -ENOENT)
3181 return PTR_ERR(trans);
3182
3183 /* No running transaction, don't bother */
3184 transid = root->fs_info->last_trans_committed;
3185 goto out;
3186 }
Sage Weil46204592010-10-29 15:41:32 -04003187 transid = trans->transid;
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00003188 ret = btrfs_commit_transaction_async(trans, root, 0);
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00003189 if (ret) {
3190 btrfs_end_transaction(trans, root);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00003191 return ret;
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00003192 }
Miao Xieff7c1d32012-11-26 08:41:29 +00003193out:
Sage Weil46204592010-10-29 15:41:32 -04003194 if (argp)
3195 if (copy_to_user(argp, &transid, sizeof(transid)))
3196 return -EFAULT;
3197 return 0;
3198}
3199
Miao Xie9a8c28b2012-11-26 08:40:43 +00003200static noinline long btrfs_ioctl_wait_sync(struct btrfs_root *root,
3201 void __user *argp)
Sage Weil46204592010-10-29 15:41:32 -04003202{
Sage Weil46204592010-10-29 15:41:32 -04003203 u64 transid;
3204
3205 if (argp) {
3206 if (copy_from_user(&transid, argp, sizeof(transid)))
3207 return -EFAULT;
3208 } else {
3209 transid = 0; /* current trans */
3210 }
3211 return btrfs_wait_for_commit(root, transid);
3212}
3213
Miao Xieb8e95482012-11-26 08:48:01 +00003214static long btrfs_ioctl_scrub(struct file *file, void __user *arg)
Jan Schmidt475f6382011-03-11 15:41:01 +01003215{
Al Viro496ad9a2013-01-23 17:07:38 -05003216 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Jan Schmidt475f6382011-03-11 15:41:01 +01003217 struct btrfs_ioctl_scrub_args *sa;
Miao Xieb8e95482012-11-26 08:48:01 +00003218 int ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01003219
3220 if (!capable(CAP_SYS_ADMIN))
3221 return -EPERM;
3222
3223 sa = memdup_user(arg, sizeof(*sa));
3224 if (IS_ERR(sa))
3225 return PTR_ERR(sa);
3226
Miao Xieb8e95482012-11-26 08:48:01 +00003227 if (!(sa->flags & BTRFS_SCRUB_READONLY)) {
3228 ret = mnt_want_write_file(file);
3229 if (ret)
3230 goto out;
3231 }
3232
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01003233 ret = btrfs_scrub_dev(root->fs_info, sa->devid, sa->start, sa->end,
Stefan Behrens63a212a2012-11-05 18:29:28 +01003234 &sa->progress, sa->flags & BTRFS_SCRUB_READONLY,
3235 0);
Jan Schmidt475f6382011-03-11 15:41:01 +01003236
3237 if (copy_to_user(arg, sa, sizeof(*sa)))
3238 ret = -EFAULT;
3239
Miao Xieb8e95482012-11-26 08:48:01 +00003240 if (!(sa->flags & BTRFS_SCRUB_READONLY))
3241 mnt_drop_write_file(file);
3242out:
Jan Schmidt475f6382011-03-11 15:41:01 +01003243 kfree(sa);
3244 return ret;
3245}
3246
3247static long btrfs_ioctl_scrub_cancel(struct btrfs_root *root, void __user *arg)
3248{
3249 if (!capable(CAP_SYS_ADMIN))
3250 return -EPERM;
3251
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01003252 return btrfs_scrub_cancel(root->fs_info);
Jan Schmidt475f6382011-03-11 15:41:01 +01003253}
3254
3255static long btrfs_ioctl_scrub_progress(struct btrfs_root *root,
3256 void __user *arg)
3257{
3258 struct btrfs_ioctl_scrub_args *sa;
3259 int ret;
3260
3261 if (!capable(CAP_SYS_ADMIN))
3262 return -EPERM;
3263
3264 sa = memdup_user(arg, sizeof(*sa));
3265 if (IS_ERR(sa))
3266 return PTR_ERR(sa);
3267
3268 ret = btrfs_scrub_progress(root, sa->devid, &sa->progress);
3269
3270 if (copy_to_user(arg, sa, sizeof(*sa)))
3271 ret = -EFAULT;
3272
3273 kfree(sa);
3274 return ret;
3275}
3276
Stefan Behrensc11d2c22012-05-25 16:06:09 +02003277static long btrfs_ioctl_get_dev_stats(struct btrfs_root *root,
David Sterbab27f7c02012-06-22 06:30:39 -06003278 void __user *arg)
Stefan Behrensc11d2c22012-05-25 16:06:09 +02003279{
3280 struct btrfs_ioctl_get_dev_stats *sa;
3281 int ret;
3282
Stefan Behrensc11d2c22012-05-25 16:06:09 +02003283 sa = memdup_user(arg, sizeof(*sa));
3284 if (IS_ERR(sa))
3285 return PTR_ERR(sa);
3286
David Sterbab27f7c02012-06-22 06:30:39 -06003287 if ((sa->flags & BTRFS_DEV_STATS_RESET) && !capable(CAP_SYS_ADMIN)) {
3288 kfree(sa);
3289 return -EPERM;
3290 }
3291
3292 ret = btrfs_get_dev_stats(root, sa);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02003293
3294 if (copy_to_user(arg, sa, sizeof(*sa)))
3295 ret = -EFAULT;
3296
3297 kfree(sa);
3298 return ret;
3299}
3300
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01003301static long btrfs_ioctl_dev_replace(struct btrfs_root *root, void __user *arg)
3302{
3303 struct btrfs_ioctl_dev_replace_args *p;
3304 int ret;
3305
3306 if (!capable(CAP_SYS_ADMIN))
3307 return -EPERM;
3308
3309 p = memdup_user(arg, sizeof(*p));
3310 if (IS_ERR(p))
3311 return PTR_ERR(p);
3312
3313 switch (p->cmd) {
3314 case BTRFS_IOCTL_DEV_REPLACE_CMD_START:
3315 if (atomic_xchg(
3316 &root->fs_info->mutually_exclusive_operation_running,
3317 1)) {
3318 pr_info("btrfs: dev add/delete/balance/replace/resize operation in progress\n");
3319 ret = -EINPROGRESS;
3320 } else {
3321 ret = btrfs_dev_replace_start(root, p);
3322 atomic_set(
3323 &root->fs_info->mutually_exclusive_operation_running,
3324 0);
3325 }
3326 break;
3327 case BTRFS_IOCTL_DEV_REPLACE_CMD_STATUS:
3328 btrfs_dev_replace_status(root->fs_info, p);
3329 ret = 0;
3330 break;
3331 case BTRFS_IOCTL_DEV_REPLACE_CMD_CANCEL:
3332 ret = btrfs_dev_replace_cancel(root->fs_info, p);
3333 break;
3334 default:
3335 ret = -EINVAL;
3336 break;
3337 }
3338
3339 if (copy_to_user(arg, p, sizeof(*p)))
3340 ret = -EFAULT;
3341
3342 kfree(p);
3343 return ret;
3344}
3345
Jan Schmidtd7728c92011-07-07 16:48:38 +02003346static long btrfs_ioctl_ino_to_path(struct btrfs_root *root, void __user *arg)
3347{
3348 int ret = 0;
3349 int i;
Chris Mason740c3d22011-11-02 15:48:34 -04003350 u64 rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003351 int size;
Chris Mason806468f2011-11-06 03:07:10 -05003352 struct btrfs_ioctl_ino_path_args *ipa = NULL;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003353 struct inode_fs_paths *ipath = NULL;
3354 struct btrfs_path *path;
3355
Kusanagi Kouichi82b22ac2013-01-28 11:33:31 +00003356 if (!capable(CAP_DAC_READ_SEARCH))
Jan Schmidtd7728c92011-07-07 16:48:38 +02003357 return -EPERM;
3358
3359 path = btrfs_alloc_path();
3360 if (!path) {
3361 ret = -ENOMEM;
3362 goto out;
3363 }
3364
3365 ipa = memdup_user(arg, sizeof(*ipa));
3366 if (IS_ERR(ipa)) {
3367 ret = PTR_ERR(ipa);
3368 ipa = NULL;
3369 goto out;
3370 }
3371
3372 size = min_t(u32, ipa->size, 4096);
3373 ipath = init_ipath(size, root, path);
3374 if (IS_ERR(ipath)) {
3375 ret = PTR_ERR(ipath);
3376 ipath = NULL;
3377 goto out;
3378 }
3379
3380 ret = paths_from_inode(ipa->inum, ipath);
3381 if (ret < 0)
3382 goto out;
3383
3384 for (i = 0; i < ipath->fspath->elem_cnt; ++i) {
Jeff Mahoney745c4d82011-11-20 07:31:57 -05003385 rel_ptr = ipath->fspath->val[i] -
3386 (u64)(unsigned long)ipath->fspath->val;
Chris Mason740c3d22011-11-02 15:48:34 -04003387 ipath->fspath->val[i] = rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003388 }
3389
Jeff Mahoney745c4d82011-11-20 07:31:57 -05003390 ret = copy_to_user((void *)(unsigned long)ipa->fspath,
3391 (void *)(unsigned long)ipath->fspath, size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02003392 if (ret) {
3393 ret = -EFAULT;
3394 goto out;
3395 }
3396
3397out:
3398 btrfs_free_path(path);
3399 free_ipath(ipath);
3400 kfree(ipa);
3401
3402 return ret;
3403}
3404
3405static int build_ino_list(u64 inum, u64 offset, u64 root, void *ctx)
3406{
3407 struct btrfs_data_container *inodes = ctx;
3408 const size_t c = 3 * sizeof(u64);
3409
3410 if (inodes->bytes_left >= c) {
3411 inodes->bytes_left -= c;
3412 inodes->val[inodes->elem_cnt] = inum;
3413 inodes->val[inodes->elem_cnt + 1] = offset;
3414 inodes->val[inodes->elem_cnt + 2] = root;
3415 inodes->elem_cnt += 3;
3416 } else {
3417 inodes->bytes_missing += c - inodes->bytes_left;
3418 inodes->bytes_left = 0;
3419 inodes->elem_missed += 3;
3420 }
3421
3422 return 0;
3423}
3424
3425static long btrfs_ioctl_logical_to_ino(struct btrfs_root *root,
3426 void __user *arg)
3427{
3428 int ret = 0;
3429 int size;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003430 struct btrfs_ioctl_logical_ino_args *loi;
3431 struct btrfs_data_container *inodes = NULL;
3432 struct btrfs_path *path = NULL;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003433
3434 if (!capable(CAP_SYS_ADMIN))
3435 return -EPERM;
3436
3437 loi = memdup_user(arg, sizeof(*loi));
3438 if (IS_ERR(loi)) {
3439 ret = PTR_ERR(loi);
3440 loi = NULL;
3441 goto out;
3442 }
3443
3444 path = btrfs_alloc_path();
3445 if (!path) {
3446 ret = -ENOMEM;
3447 goto out;
3448 }
3449
Liu Bo425d17a2012-09-07 20:01:30 -06003450 size = min_t(u32, loi->size, 64 * 1024);
Jan Schmidtd7728c92011-07-07 16:48:38 +02003451 inodes = init_data_container(size);
3452 if (IS_ERR(inodes)) {
3453 ret = PTR_ERR(inodes);
3454 inodes = NULL;
3455 goto out;
3456 }
3457
Liu Bodf031f02012-09-07 20:01:29 -06003458 ret = iterate_inodes_from_logical(loi->logical, root->fs_info, path,
3459 build_ino_list, inodes);
3460 if (ret == -EINVAL)
Jan Schmidtd7728c92011-07-07 16:48:38 +02003461 ret = -ENOENT;
3462 if (ret < 0)
3463 goto out;
3464
Jeff Mahoney745c4d82011-11-20 07:31:57 -05003465 ret = copy_to_user((void *)(unsigned long)loi->inodes,
3466 (void *)(unsigned long)inodes, size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02003467 if (ret)
3468 ret = -EFAULT;
3469
3470out:
3471 btrfs_free_path(path);
Liu Bo425d17a2012-09-07 20:01:30 -06003472 vfree(inodes);
Jan Schmidtd7728c92011-07-07 16:48:38 +02003473 kfree(loi);
3474
3475 return ret;
3476}
3477
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003478void update_ioctl_balance_args(struct btrfs_fs_info *fs_info, int lock,
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003479 struct btrfs_ioctl_balance_args *bargs)
3480{
3481 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
3482
3483 bargs->flags = bctl->flags;
3484
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003485 if (atomic_read(&fs_info->balance_running))
3486 bargs->state |= BTRFS_BALANCE_STATE_RUNNING;
3487 if (atomic_read(&fs_info->balance_pause_req))
3488 bargs->state |= BTRFS_BALANCE_STATE_PAUSE_REQ;
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003489 if (atomic_read(&fs_info->balance_cancel_req))
3490 bargs->state |= BTRFS_BALANCE_STATE_CANCEL_REQ;
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003491
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003492 memcpy(&bargs->data, &bctl->data, sizeof(bargs->data));
3493 memcpy(&bargs->meta, &bctl->meta, sizeof(bargs->meta));
3494 memcpy(&bargs->sys, &bctl->sys, sizeof(bargs->sys));
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003495
3496 if (lock) {
3497 spin_lock(&fs_info->balance_lock);
3498 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
3499 spin_unlock(&fs_info->balance_lock);
3500 } else {
3501 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
3502 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003503}
3504
Liu Bo9ba1f6e2012-05-11 18:11:26 +08003505static long btrfs_ioctl_balance(struct file *file, void __user *arg)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003506{
Al Viro496ad9a2013-01-23 17:07:38 -05003507 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003508 struct btrfs_fs_info *fs_info = root->fs_info;
3509 struct btrfs_ioctl_balance_args *bargs;
3510 struct btrfs_balance_control *bctl;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003511 bool need_unlock; /* for mut. excl. ops lock */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003512 int ret;
3513
3514 if (!capable(CAP_SYS_ADMIN))
3515 return -EPERM;
3516
Liu Boe54bfa32012-06-29 03:58:48 -06003517 ret = mnt_want_write_file(file);
Liu Bo9ba1f6e2012-05-11 18:11:26 +08003518 if (ret)
3519 return ret;
3520
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003521again:
3522 if (!atomic_xchg(&fs_info->mutually_exclusive_operation_running, 1)) {
3523 mutex_lock(&fs_info->volume_mutex);
3524 mutex_lock(&fs_info->balance_mutex);
3525 need_unlock = true;
3526 goto locked;
3527 }
3528
3529 /*
3530 * mut. excl. ops lock is locked. Three possibilites:
3531 * (1) some other op is running
3532 * (2) balance is running
3533 * (3) balance is paused -- special case (think resume)
3534 */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003535 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003536 if (fs_info->balance_ctl) {
3537 /* this is either (2) or (3) */
3538 if (!atomic_read(&fs_info->balance_running)) {
3539 mutex_unlock(&fs_info->balance_mutex);
3540 if (!mutex_trylock(&fs_info->volume_mutex))
3541 goto again;
3542 mutex_lock(&fs_info->balance_mutex);
3543
3544 if (fs_info->balance_ctl &&
3545 !atomic_read(&fs_info->balance_running)) {
3546 /* this is (3) */
3547 need_unlock = false;
3548 goto locked;
3549 }
3550
3551 mutex_unlock(&fs_info->balance_mutex);
3552 mutex_unlock(&fs_info->volume_mutex);
3553 goto again;
3554 } else {
3555 /* this is (2) */
3556 mutex_unlock(&fs_info->balance_mutex);
3557 ret = -EINPROGRESS;
3558 goto out;
3559 }
3560 } else {
3561 /* this is (1) */
3562 mutex_unlock(&fs_info->balance_mutex);
3563 pr_info("btrfs: dev add/delete/balance/replace/resize operation in progress\n");
3564 ret = -EINVAL;
3565 goto out;
3566 }
3567
3568locked:
3569 BUG_ON(!atomic_read(&fs_info->mutually_exclusive_operation_running));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003570
3571 if (arg) {
3572 bargs = memdup_user(arg, sizeof(*bargs));
3573 if (IS_ERR(bargs)) {
3574 ret = PTR_ERR(bargs);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003575 goto out_unlock;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003576 }
Ilya Dryomovde322262012-01-16 22:04:49 +02003577
3578 if (bargs->flags & BTRFS_BALANCE_RESUME) {
3579 if (!fs_info->balance_ctl) {
3580 ret = -ENOTCONN;
3581 goto out_bargs;
3582 }
3583
3584 bctl = fs_info->balance_ctl;
3585 spin_lock(&fs_info->balance_lock);
3586 bctl->flags |= BTRFS_BALANCE_RESUME;
3587 spin_unlock(&fs_info->balance_lock);
3588
3589 goto do_balance;
3590 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003591 } else {
3592 bargs = NULL;
3593 }
3594
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003595 if (fs_info->balance_ctl) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003596 ret = -EINPROGRESS;
3597 goto out_bargs;
3598 }
3599
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003600 bctl = kzalloc(sizeof(*bctl), GFP_NOFS);
3601 if (!bctl) {
3602 ret = -ENOMEM;
3603 goto out_bargs;
3604 }
3605
3606 bctl->fs_info = fs_info;
3607 if (arg) {
3608 memcpy(&bctl->data, &bargs->data, sizeof(bctl->data));
3609 memcpy(&bctl->meta, &bargs->meta, sizeof(bctl->meta));
3610 memcpy(&bctl->sys, &bargs->sys, sizeof(bctl->sys));
3611
3612 bctl->flags = bargs->flags;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003613 } else {
3614 /* balance everything - no filters */
3615 bctl->flags |= BTRFS_BALANCE_TYPE_MASK;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003616 }
3617
Ilya Dryomovde322262012-01-16 22:04:49 +02003618do_balance:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003619 /*
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003620 * Ownership of bctl and mutually_exclusive_operation_running
3621 * goes to to btrfs_balance. bctl is freed in __cancel_balance,
3622 * or, if restriper was paused all the way until unmount, in
3623 * free_fs_info. mutually_exclusive_operation_running is
3624 * cleared in __cancel_balance.
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003625 */
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003626 need_unlock = false;
3627
3628 ret = btrfs_balance(bctl, bargs);
3629
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003630 if (arg) {
3631 if (copy_to_user(arg, bargs, sizeof(*bargs)))
3632 ret = -EFAULT;
3633 }
3634
3635out_bargs:
3636 kfree(bargs);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003637out_unlock:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003638 mutex_unlock(&fs_info->balance_mutex);
3639 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003640 if (need_unlock)
3641 atomic_set(&fs_info->mutually_exclusive_operation_running, 0);
3642out:
Liu Boe54bfa32012-06-29 03:58:48 -06003643 mnt_drop_write_file(file);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003644 return ret;
3645}
3646
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003647static long btrfs_ioctl_balance_ctl(struct btrfs_root *root, int cmd)
3648{
3649 if (!capable(CAP_SYS_ADMIN))
3650 return -EPERM;
3651
3652 switch (cmd) {
3653 case BTRFS_BALANCE_CTL_PAUSE:
3654 return btrfs_pause_balance(root->fs_info);
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003655 case BTRFS_BALANCE_CTL_CANCEL:
3656 return btrfs_cancel_balance(root->fs_info);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003657 }
3658
3659 return -EINVAL;
3660}
3661
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003662static long btrfs_ioctl_balance_progress(struct btrfs_root *root,
3663 void __user *arg)
3664{
3665 struct btrfs_fs_info *fs_info = root->fs_info;
3666 struct btrfs_ioctl_balance_args *bargs;
3667 int ret = 0;
3668
3669 if (!capable(CAP_SYS_ADMIN))
3670 return -EPERM;
3671
3672 mutex_lock(&fs_info->balance_mutex);
3673 if (!fs_info->balance_ctl) {
3674 ret = -ENOTCONN;
3675 goto out;
3676 }
3677
3678 bargs = kzalloc(sizeof(*bargs), GFP_NOFS);
3679 if (!bargs) {
3680 ret = -ENOMEM;
3681 goto out;
3682 }
3683
3684 update_ioctl_balance_args(fs_info, 1, bargs);
3685
3686 if (copy_to_user(arg, bargs, sizeof(*bargs)))
3687 ret = -EFAULT;
3688
3689 kfree(bargs);
3690out:
3691 mutex_unlock(&fs_info->balance_mutex);
3692 return ret;
3693}
3694
Miao Xie905b0dd2012-11-26 08:50:11 +00003695static long btrfs_ioctl_quota_ctl(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02003696{
Al Viro496ad9a2013-01-23 17:07:38 -05003697 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02003698 struct btrfs_ioctl_quota_ctl_args *sa;
3699 struct btrfs_trans_handle *trans = NULL;
3700 int ret;
3701 int err;
3702
3703 if (!capable(CAP_SYS_ADMIN))
3704 return -EPERM;
3705
Miao Xie905b0dd2012-11-26 08:50:11 +00003706 ret = mnt_want_write_file(file);
3707 if (ret)
3708 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02003709
3710 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00003711 if (IS_ERR(sa)) {
3712 ret = PTR_ERR(sa);
3713 goto drop_write;
3714 }
Arne Jansen5d13a372011-09-14 15:53:51 +02003715
Wang Shilong7708f022013-04-07 10:24:57 +00003716 down_write(&root->fs_info->subvol_sem);
Jan Schmidt2f232032013-04-25 16:04:51 +00003717 trans = btrfs_start_transaction(root->fs_info->tree_root, 2);
3718 if (IS_ERR(trans)) {
3719 ret = PTR_ERR(trans);
3720 goto out;
Arne Jansen5d13a372011-09-14 15:53:51 +02003721 }
3722
3723 switch (sa->cmd) {
3724 case BTRFS_QUOTA_CTL_ENABLE:
3725 ret = btrfs_quota_enable(trans, root->fs_info);
3726 break;
3727 case BTRFS_QUOTA_CTL_DISABLE:
3728 ret = btrfs_quota_disable(trans, root->fs_info);
3729 break;
Arne Jansen5d13a372011-09-14 15:53:51 +02003730 default:
3731 ret = -EINVAL;
3732 break;
3733 }
3734
Jan Schmidt2f232032013-04-25 16:04:51 +00003735 err = btrfs_commit_transaction(trans, root->fs_info->tree_root);
3736 if (err && !ret)
3737 ret = err;
Arne Jansen5d13a372011-09-14 15:53:51 +02003738out:
3739 kfree(sa);
Wang Shilong7708f022013-04-07 10:24:57 +00003740 up_write(&root->fs_info->subvol_sem);
Miao Xie905b0dd2012-11-26 08:50:11 +00003741drop_write:
3742 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02003743 return ret;
3744}
3745
Miao Xie905b0dd2012-11-26 08:50:11 +00003746static long btrfs_ioctl_qgroup_assign(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02003747{
Al Viro496ad9a2013-01-23 17:07:38 -05003748 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02003749 struct btrfs_ioctl_qgroup_assign_args *sa;
3750 struct btrfs_trans_handle *trans;
3751 int ret;
3752 int err;
3753
3754 if (!capable(CAP_SYS_ADMIN))
3755 return -EPERM;
3756
Miao Xie905b0dd2012-11-26 08:50:11 +00003757 ret = mnt_want_write_file(file);
3758 if (ret)
3759 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02003760
3761 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00003762 if (IS_ERR(sa)) {
3763 ret = PTR_ERR(sa);
3764 goto drop_write;
3765 }
Arne Jansen5d13a372011-09-14 15:53:51 +02003766
3767 trans = btrfs_join_transaction(root);
3768 if (IS_ERR(trans)) {
3769 ret = PTR_ERR(trans);
3770 goto out;
3771 }
3772
3773 /* FIXME: check if the IDs really exist */
3774 if (sa->assign) {
3775 ret = btrfs_add_qgroup_relation(trans, root->fs_info,
3776 sa->src, sa->dst);
3777 } else {
3778 ret = btrfs_del_qgroup_relation(trans, root->fs_info,
3779 sa->src, sa->dst);
3780 }
3781
3782 err = btrfs_end_transaction(trans, root);
3783 if (err && !ret)
3784 ret = err;
3785
3786out:
3787 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00003788drop_write:
3789 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02003790 return ret;
3791}
3792
Miao Xie905b0dd2012-11-26 08:50:11 +00003793static long btrfs_ioctl_qgroup_create(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02003794{
Al Viro496ad9a2013-01-23 17:07:38 -05003795 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02003796 struct btrfs_ioctl_qgroup_create_args *sa;
3797 struct btrfs_trans_handle *trans;
3798 int ret;
3799 int err;
3800
3801 if (!capable(CAP_SYS_ADMIN))
3802 return -EPERM;
3803
Miao Xie905b0dd2012-11-26 08:50:11 +00003804 ret = mnt_want_write_file(file);
3805 if (ret)
3806 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02003807
3808 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00003809 if (IS_ERR(sa)) {
3810 ret = PTR_ERR(sa);
3811 goto drop_write;
3812 }
Arne Jansen5d13a372011-09-14 15:53:51 +02003813
Miao Xied86e56c2012-11-15 11:35:41 +00003814 if (!sa->qgroupid) {
3815 ret = -EINVAL;
3816 goto out;
3817 }
3818
Arne Jansen5d13a372011-09-14 15:53:51 +02003819 trans = btrfs_join_transaction(root);
3820 if (IS_ERR(trans)) {
3821 ret = PTR_ERR(trans);
3822 goto out;
3823 }
3824
3825 /* FIXME: check if the IDs really exist */
3826 if (sa->create) {
3827 ret = btrfs_create_qgroup(trans, root->fs_info, sa->qgroupid,
3828 NULL);
3829 } else {
3830 ret = btrfs_remove_qgroup(trans, root->fs_info, sa->qgroupid);
3831 }
3832
3833 err = btrfs_end_transaction(trans, root);
3834 if (err && !ret)
3835 ret = err;
3836
3837out:
3838 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00003839drop_write:
3840 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02003841 return ret;
3842}
3843
Miao Xie905b0dd2012-11-26 08:50:11 +00003844static long btrfs_ioctl_qgroup_limit(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02003845{
Al Viro496ad9a2013-01-23 17:07:38 -05003846 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02003847 struct btrfs_ioctl_qgroup_limit_args *sa;
3848 struct btrfs_trans_handle *trans;
3849 int ret;
3850 int err;
3851 u64 qgroupid;
3852
3853 if (!capable(CAP_SYS_ADMIN))
3854 return -EPERM;
3855
Miao Xie905b0dd2012-11-26 08:50:11 +00003856 ret = mnt_want_write_file(file);
3857 if (ret)
3858 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02003859
3860 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00003861 if (IS_ERR(sa)) {
3862 ret = PTR_ERR(sa);
3863 goto drop_write;
3864 }
Arne Jansen5d13a372011-09-14 15:53:51 +02003865
3866 trans = btrfs_join_transaction(root);
3867 if (IS_ERR(trans)) {
3868 ret = PTR_ERR(trans);
3869 goto out;
3870 }
3871
3872 qgroupid = sa->qgroupid;
3873 if (!qgroupid) {
3874 /* take the current subvol as qgroup */
3875 qgroupid = root->root_key.objectid;
3876 }
3877
3878 /* FIXME: check if the IDs really exist */
3879 ret = btrfs_limit_qgroup(trans, root->fs_info, qgroupid, &sa->lim);
3880
3881 err = btrfs_end_transaction(trans, root);
3882 if (err && !ret)
3883 ret = err;
3884
3885out:
3886 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00003887drop_write:
3888 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02003889 return ret;
3890}
3891
Jan Schmidt2f232032013-04-25 16:04:51 +00003892static long btrfs_ioctl_quota_rescan(struct file *file, void __user *arg)
3893{
Al Viro6d0379e2013-06-16 19:32:35 +04003894 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Jan Schmidt2f232032013-04-25 16:04:51 +00003895 struct btrfs_ioctl_quota_rescan_args *qsa;
3896 int ret;
3897
3898 if (!capable(CAP_SYS_ADMIN))
3899 return -EPERM;
3900
3901 ret = mnt_want_write_file(file);
3902 if (ret)
3903 return ret;
3904
3905 qsa = memdup_user(arg, sizeof(*qsa));
3906 if (IS_ERR(qsa)) {
3907 ret = PTR_ERR(qsa);
3908 goto drop_write;
3909 }
3910
3911 if (qsa->flags) {
3912 ret = -EINVAL;
3913 goto out;
3914 }
3915
3916 ret = btrfs_qgroup_rescan(root->fs_info);
3917
3918out:
3919 kfree(qsa);
3920drop_write:
3921 mnt_drop_write_file(file);
3922 return ret;
3923}
3924
3925static long btrfs_ioctl_quota_rescan_status(struct file *file, void __user *arg)
3926{
Al Viro6d0379e2013-06-16 19:32:35 +04003927 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Jan Schmidt2f232032013-04-25 16:04:51 +00003928 struct btrfs_ioctl_quota_rescan_args *qsa;
3929 int ret = 0;
3930
3931 if (!capable(CAP_SYS_ADMIN))
3932 return -EPERM;
3933
3934 qsa = kzalloc(sizeof(*qsa), GFP_NOFS);
3935 if (!qsa)
3936 return -ENOMEM;
3937
3938 if (root->fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_RESCAN) {
3939 qsa->flags = 1;
3940 qsa->progress = root->fs_info->qgroup_rescan_progress.objectid;
3941 }
3942
3943 if (copy_to_user(arg, qsa, sizeof(*qsa)))
3944 ret = -EFAULT;
3945
3946 kfree(qsa);
3947 return ret;
3948}
3949
Jan Schmidt57254b6e2013-05-06 19:14:17 +00003950static long btrfs_ioctl_quota_rescan_wait(struct file *file, void __user *arg)
3951{
3952 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
3953
3954 if (!capable(CAP_SYS_ADMIN))
3955 return -EPERM;
3956
3957 return btrfs_qgroup_wait_for_completion(root->fs_info);
3958}
3959
Alexander Block8ea05e32012-07-25 17:35:53 +02003960static long btrfs_ioctl_set_received_subvol(struct file *file,
3961 void __user *arg)
3962{
3963 struct btrfs_ioctl_received_subvol_args *sa = NULL;
Al Viro496ad9a2013-01-23 17:07:38 -05003964 struct inode *inode = file_inode(file);
Alexander Block8ea05e32012-07-25 17:35:53 +02003965 struct btrfs_root *root = BTRFS_I(inode)->root;
3966 struct btrfs_root_item *root_item = &root->root_item;
3967 struct btrfs_trans_handle *trans;
3968 struct timespec ct = CURRENT_TIME;
3969 int ret = 0;
3970
3971 ret = mnt_want_write_file(file);
3972 if (ret < 0)
3973 return ret;
3974
3975 down_write(&root->fs_info->subvol_sem);
3976
3977 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
3978 ret = -EINVAL;
3979 goto out;
3980 }
3981
3982 if (btrfs_root_readonly(root)) {
3983 ret = -EROFS;
3984 goto out;
3985 }
3986
3987 if (!inode_owner_or_capable(inode)) {
3988 ret = -EACCES;
3989 goto out;
3990 }
3991
3992 sa = memdup_user(arg, sizeof(*sa));
3993 if (IS_ERR(sa)) {
3994 ret = PTR_ERR(sa);
3995 sa = NULL;
3996 goto out;
3997 }
3998
3999 trans = btrfs_start_transaction(root, 1);
4000 if (IS_ERR(trans)) {
4001 ret = PTR_ERR(trans);
4002 trans = NULL;
4003 goto out;
4004 }
4005
4006 sa->rtransid = trans->transid;
4007 sa->rtime.sec = ct.tv_sec;
4008 sa->rtime.nsec = ct.tv_nsec;
4009
4010 memcpy(root_item->received_uuid, sa->uuid, BTRFS_UUID_SIZE);
4011 btrfs_set_root_stransid(root_item, sa->stransid);
4012 btrfs_set_root_rtransid(root_item, sa->rtransid);
4013 root_item->stime.sec = cpu_to_le64(sa->stime.sec);
4014 root_item->stime.nsec = cpu_to_le32(sa->stime.nsec);
4015 root_item->rtime.sec = cpu_to_le64(sa->rtime.sec);
4016 root_item->rtime.nsec = cpu_to_le32(sa->rtime.nsec);
4017
4018 ret = btrfs_update_root(trans, root->fs_info->tree_root,
4019 &root->root_key, &root->root_item);
4020 if (ret < 0) {
4021 btrfs_end_transaction(trans, root);
4022 trans = NULL;
4023 goto out;
4024 } else {
4025 ret = btrfs_commit_transaction(trans, root);
4026 if (ret < 0)
4027 goto out;
4028 }
4029
4030 ret = copy_to_user(arg, sa, sizeof(*sa));
4031 if (ret)
4032 ret = -EFAULT;
4033
4034out:
4035 kfree(sa);
4036 up_write(&root->fs_info->subvol_sem);
4037 mnt_drop_write_file(file);
4038 return ret;
4039}
4040
jeff.liu867ab662013-01-05 02:48:01 +00004041static int btrfs_ioctl_get_fslabel(struct file *file, void __user *arg)
4042{
Al Viro6d0379e2013-06-16 19:32:35 +04004043 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
jeff.liu867ab662013-01-05 02:48:01 +00004044 const char *label = root->fs_info->super_copy->label;
4045 size_t len = strnlen(label, BTRFS_LABEL_SIZE);
4046 int ret;
4047
4048 if (len == BTRFS_LABEL_SIZE) {
4049 pr_warn("btrfs: label is too long, return the first %zu bytes\n",
4050 --len);
4051 }
4052
4053 mutex_lock(&root->fs_info->volume_mutex);
4054 ret = copy_to_user(arg, label, len);
4055 mutex_unlock(&root->fs_info->volume_mutex);
4056
4057 return ret ? -EFAULT : 0;
4058}
4059
jeff.liua8bfd4a2013-01-05 02:48:08 +00004060static int btrfs_ioctl_set_fslabel(struct file *file, void __user *arg)
4061{
Al Viro6d0379e2013-06-16 19:32:35 +04004062 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
jeff.liua8bfd4a2013-01-05 02:48:08 +00004063 struct btrfs_super_block *super_block = root->fs_info->super_copy;
4064 struct btrfs_trans_handle *trans;
4065 char label[BTRFS_LABEL_SIZE];
4066 int ret;
4067
4068 if (!capable(CAP_SYS_ADMIN))
4069 return -EPERM;
4070
4071 if (copy_from_user(label, arg, sizeof(label)))
4072 return -EFAULT;
4073
4074 if (strnlen(label, BTRFS_LABEL_SIZE) == BTRFS_LABEL_SIZE) {
4075 pr_err("btrfs: unable to set label with more than %d bytes\n",
4076 BTRFS_LABEL_SIZE - 1);
4077 return -EINVAL;
4078 }
4079
4080 ret = mnt_want_write_file(file);
4081 if (ret)
4082 return ret;
4083
4084 mutex_lock(&root->fs_info->volume_mutex);
4085 trans = btrfs_start_transaction(root, 0);
4086 if (IS_ERR(trans)) {
4087 ret = PTR_ERR(trans);
4088 goto out_unlock;
4089 }
4090
4091 strcpy(super_block->label, label);
4092 ret = btrfs_end_transaction(trans, root);
4093
4094out_unlock:
4095 mutex_unlock(&root->fs_info->volume_mutex);
4096 mnt_drop_write_file(file);
4097 return ret;
4098}
4099
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004100long btrfs_ioctl(struct file *file, unsigned int
4101 cmd, unsigned long arg)
4102{
Al Viro496ad9a2013-01-23 17:07:38 -05004103 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05004104 void __user *argp = (void __user *)arg;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004105
4106 switch (cmd) {
Christoph Hellwig6cbff002009-04-17 10:37:41 +02004107 case FS_IOC_GETFLAGS:
4108 return btrfs_ioctl_getflags(file, argp);
4109 case FS_IOC_SETFLAGS:
4110 return btrfs_ioctl_setflags(file, argp);
4111 case FS_IOC_GETVERSION:
4112 return btrfs_ioctl_getversion(file, argp);
Li Dongyangf7039b12011-03-24 10:24:28 +00004113 case FITRIM:
4114 return btrfs_ioctl_fitrim(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004115 case BTRFS_IOC_SNAP_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08004116 return btrfs_ioctl_snap_create(file, argp, 0);
Li Zefanfdfb1e42010-12-10 06:41:56 +00004117 case BTRFS_IOC_SNAP_CREATE_V2:
Li Zefanfa0d2b92010-12-20 15:53:28 +08004118 return btrfs_ioctl_snap_create_v2(file, argp, 0);
Chris Mason3de45862008-11-17 21:02:50 -05004119 case BTRFS_IOC_SUBVOL_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08004120 return btrfs_ioctl_snap_create(file, argp, 1);
Arne Jansen6f72c7e2011-09-14 15:58:21 +02004121 case BTRFS_IOC_SUBVOL_CREATE_V2:
4122 return btrfs_ioctl_snap_create_v2(file, argp, 1);
Yan, Zheng76dda932009-09-21 16:00:26 -04004123 case BTRFS_IOC_SNAP_DESTROY:
4124 return btrfs_ioctl_snap_destroy(file, argp);
Li Zefan0caa1022010-12-20 16:30:25 +08004125 case BTRFS_IOC_SUBVOL_GETFLAGS:
4126 return btrfs_ioctl_subvol_getflags(file, argp);
4127 case BTRFS_IOC_SUBVOL_SETFLAGS:
4128 return btrfs_ioctl_subvol_setflags(file, argp);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004129 case BTRFS_IOC_DEFAULT_SUBVOL:
4130 return btrfs_ioctl_default_subvol(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004131 case BTRFS_IOC_DEFRAG:
Chris Mason1e701a32010-03-11 09:42:04 -05004132 return btrfs_ioctl_defrag(file, NULL);
4133 case BTRFS_IOC_DEFRAG_RANGE:
4134 return btrfs_ioctl_defrag(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004135 case BTRFS_IOC_RESIZE:
Miao Xie198605a2012-11-26 08:43:45 +00004136 return btrfs_ioctl_resize(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004137 case BTRFS_IOC_ADD_DEV:
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05004138 return btrfs_ioctl_add_dev(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004139 case BTRFS_IOC_RM_DEV:
Miao Xieda249272012-11-26 08:44:50 +00004140 return btrfs_ioctl_rm_dev(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01004141 case BTRFS_IOC_FS_INFO:
4142 return btrfs_ioctl_fs_info(root, argp);
4143 case BTRFS_IOC_DEV_INFO:
4144 return btrfs_ioctl_dev_info(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004145 case BTRFS_IOC_BALANCE:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08004146 return btrfs_ioctl_balance(file, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004147 case BTRFS_IOC_CLONE:
Sage Weilc5c9cd42008-11-12 14:32:25 -05004148 return btrfs_ioctl_clone(file, arg, 0, 0, 0);
4149 case BTRFS_IOC_CLONE_RANGE:
Christoph Hellwig7a865e82008-12-02 09:52:24 -05004150 return btrfs_ioctl_clone_range(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004151 case BTRFS_IOC_TRANS_START:
4152 return btrfs_ioctl_trans_start(file);
4153 case BTRFS_IOC_TRANS_END:
4154 return btrfs_ioctl_trans_end(file);
Chris Masonac8e9812010-02-28 15:39:26 -05004155 case BTRFS_IOC_TREE_SEARCH:
4156 return btrfs_ioctl_tree_search(file, argp);
4157 case BTRFS_IOC_INO_LOOKUP:
4158 return btrfs_ioctl_ino_lookup(file, argp);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004159 case BTRFS_IOC_INO_PATHS:
4160 return btrfs_ioctl_ino_to_path(root, argp);
4161 case BTRFS_IOC_LOGICAL_INO:
4162 return btrfs_ioctl_logical_to_ino(root, argp);
Josef Bacik1406e432010-01-13 18:19:06 +00004163 case BTRFS_IOC_SPACE_INFO:
4164 return btrfs_ioctl_space_info(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004165 case BTRFS_IOC_SYNC:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004166 btrfs_sync_fs(file->f_dentry->d_sb, 1);
4167 return 0;
Sage Weil46204592010-10-29 15:41:32 -04004168 case BTRFS_IOC_START_SYNC:
Miao Xie9a8c28b2012-11-26 08:40:43 +00004169 return btrfs_ioctl_start_sync(root, argp);
Sage Weil46204592010-10-29 15:41:32 -04004170 case BTRFS_IOC_WAIT_SYNC:
Miao Xie9a8c28b2012-11-26 08:40:43 +00004171 return btrfs_ioctl_wait_sync(root, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01004172 case BTRFS_IOC_SCRUB:
Miao Xieb8e95482012-11-26 08:48:01 +00004173 return btrfs_ioctl_scrub(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01004174 case BTRFS_IOC_SCRUB_CANCEL:
4175 return btrfs_ioctl_scrub_cancel(root, argp);
4176 case BTRFS_IOC_SCRUB_PROGRESS:
4177 return btrfs_ioctl_scrub_progress(root, argp);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004178 case BTRFS_IOC_BALANCE_V2:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08004179 return btrfs_ioctl_balance(file, argp);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004180 case BTRFS_IOC_BALANCE_CTL:
4181 return btrfs_ioctl_balance_ctl(root, arg);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004182 case BTRFS_IOC_BALANCE_PROGRESS:
4183 return btrfs_ioctl_balance_progress(root, argp);
Alexander Block8ea05e32012-07-25 17:35:53 +02004184 case BTRFS_IOC_SET_RECEIVED_SUBVOL:
4185 return btrfs_ioctl_set_received_subvol(file, argp);
Alexander Block31db9f72012-07-25 23:19:24 +02004186 case BTRFS_IOC_SEND:
4187 return btrfs_ioctl_send(file, argp);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004188 case BTRFS_IOC_GET_DEV_STATS:
David Sterbab27f7c02012-06-22 06:30:39 -06004189 return btrfs_ioctl_get_dev_stats(root, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02004190 case BTRFS_IOC_QUOTA_CTL:
Miao Xie905b0dd2012-11-26 08:50:11 +00004191 return btrfs_ioctl_quota_ctl(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02004192 case BTRFS_IOC_QGROUP_ASSIGN:
Miao Xie905b0dd2012-11-26 08:50:11 +00004193 return btrfs_ioctl_qgroup_assign(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02004194 case BTRFS_IOC_QGROUP_CREATE:
Miao Xie905b0dd2012-11-26 08:50:11 +00004195 return btrfs_ioctl_qgroup_create(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02004196 case BTRFS_IOC_QGROUP_LIMIT:
Miao Xie905b0dd2012-11-26 08:50:11 +00004197 return btrfs_ioctl_qgroup_limit(file, argp);
Jan Schmidt2f232032013-04-25 16:04:51 +00004198 case BTRFS_IOC_QUOTA_RESCAN:
4199 return btrfs_ioctl_quota_rescan(file, argp);
4200 case BTRFS_IOC_QUOTA_RESCAN_STATUS:
4201 return btrfs_ioctl_quota_rescan_status(file, argp);
Jan Schmidt57254b6e2013-05-06 19:14:17 +00004202 case BTRFS_IOC_QUOTA_RESCAN_WAIT:
4203 return btrfs_ioctl_quota_rescan_wait(file, argp);
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004204 case BTRFS_IOC_DEV_REPLACE:
4205 return btrfs_ioctl_dev_replace(root, argp);
jeff.liu867ab662013-01-05 02:48:01 +00004206 case BTRFS_IOC_GET_FSLABEL:
4207 return btrfs_ioctl_get_fslabel(file, argp);
jeff.liua8bfd4a2013-01-05 02:48:08 +00004208 case BTRFS_IOC_SET_FSLABEL:
4209 return btrfs_ioctl_set_fslabel(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004210 }
4211
4212 return -ENOTTY;
4213}