blob: 8dcd4ff0c3a58fc8be83cafeceb6cd925c1bbc52 [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{
155 struct btrfs_inode *ip = BTRFS_I(file->f_path.dentry->d_inode);
156 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{
180 struct inode *inode = file->f_path.dentry->d_inode;
181 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 Zefan306424c2011-12-14 20:12:02 -0500293 btrfs_update_iflags(inode);
Josef Bacik0c4d2d92012-04-05 15:03:02 -0400294 inode_inc_iversion(inode);
Li Zefan306424c2011-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{
313 struct inode *inode = file->f_path.dentry->d_inode;
314
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
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400366static noinline int create_subvol(struct btrfs_root *root,
367 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;
Yan, Zheng76dda932009-09-21 16:00:26 -0400377 struct btrfs_root *new_root;
Al Viro2fbe8c82011-07-16 21:38:06 -0400378 struct dentry *parent = dentry->d_parent;
Josef Bacik6a912212010-11-20 09:48:00 +0000379 struct inode *dir;
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;
Alexander Block8ea05e32012-07-25 17:35:53 +0200386 uuid_le new_uuid;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400387
Li Zefan581bb052011-04-20 10:06:11 +0800388 ret = btrfs_find_free_objectid(root->fs_info->tree_root, &objectid);
Al Viro2fbe8c82011-07-16 21:38:06 -0400389 if (ret)
Yan, Zhenga22285a2010-05-16 10:48:46 -0400390 return ret;
Josef Bacik6a912212010-11-20 09:48:00 +0000391
392 dir = parent->d_inode;
393
Josef Bacik9ed74f22009-09-11 16:12:44 -0400394 /*
395 * 1 - inode item
396 * 2 - refs
397 * 1 - root item
398 * 2 - dir items
399 */
Yan, Zhenga22285a2010-05-16 10:48:46 -0400400 trans = btrfs_start_transaction(root, 6);
Al Viro2fbe8c82011-07-16 21:38:06 -0400401 if (IS_ERR(trans))
Yan, Zhenga22285a2010-05-16 10:48:46 -0400402 return PTR_ERR(trans);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400403
Miao Xie8696c532013-02-07 06:02:44 +0000404 ret = btrfs_qgroup_inherit(trans, root->fs_info, 0, objectid, inherit);
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200405 if (ret)
406 goto fail;
407
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400408 leaf = btrfs_alloc_free_block(trans, root, root->leafsize,
Jan Schmidt5581a512012-05-16 17:04:52 +0200409 0, objectid, NULL, 0, 0, 0);
Josef Bacik8e8a1e32008-07-24 12:17:14 -0400410 if (IS_ERR(leaf)) {
411 ret = PTR_ERR(leaf);
412 goto fail;
413 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400414
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400415 memset_extent_buffer(leaf, 0, 0, sizeof(struct btrfs_header));
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400416 btrfs_set_header_bytenr(leaf, leaf->start);
417 btrfs_set_header_generation(leaf, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400418 btrfs_set_header_backref_rev(leaf, BTRFS_MIXED_BACKREF_REV);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400419 btrfs_set_header_owner(leaf, objectid);
420
421 write_extent_buffer(leaf, root->fs_info->fsid,
422 (unsigned long)btrfs_header_fsid(leaf),
423 BTRFS_FSID_SIZE);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400424 write_extent_buffer(leaf, root->fs_info->chunk_tree_uuid,
425 (unsigned long)btrfs_header_chunk_tree_uuid(leaf),
426 BTRFS_UUID_SIZE);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400427 btrfs_mark_buffer_dirty(leaf);
428
Alexander Block8ea05e32012-07-25 17:35:53 +0200429 memset(&root_item, 0, sizeof(root_item));
430
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400431 inode_item = &root_item.inode;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400432 inode_item->generation = cpu_to_le64(1);
433 inode_item->size = cpu_to_le64(3);
434 inode_item->nlink = cpu_to_le32(1);
Yan Zhenga76a3cd2008-10-09 11:46:29 -0400435 inode_item->nbytes = cpu_to_le64(root->leafsize);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400436 inode_item->mode = cpu_to_le32(S_IFDIR | 0755);
437
Li Zefan08fe4db2011-03-28 02:01:25 +0000438 root_item.flags = 0;
439 root_item.byte_limit = 0;
440 inode_item->flags = cpu_to_le64(BTRFS_INODE_ROOT_ITEM_INIT);
441
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400442 btrfs_set_root_bytenr(&root_item, leaf->start);
Yan Zheng84234f32008-10-29 14:49:05 -0400443 btrfs_set_root_generation(&root_item, trans->transid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400444 btrfs_set_root_level(&root_item, 0);
445 btrfs_set_root_refs(&root_item, 1);
Yan, Zheng86b9f2e2009-11-12 09:36:50 +0000446 btrfs_set_root_used(&root_item, leaf->len);
Yan Zheng80ff3852008-10-30 14:20:02 -0400447 btrfs_set_root_last_snapshot(&root_item, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400448
Alexander Block8ea05e32012-07-25 17:35:53 +0200449 btrfs_set_root_generation_v2(&root_item,
450 btrfs_root_generation(&root_item));
451 uuid_le_gen(&new_uuid);
452 memcpy(root_item.uuid, new_uuid.b, BTRFS_UUID_SIZE);
453 root_item.otime.sec = cpu_to_le64(cur_time.tv_sec);
Dan Carpenterdadd1102012-07-30 02:10:44 -0600454 root_item.otime.nsec = cpu_to_le32(cur_time.tv_nsec);
Alexander Block8ea05e32012-07-25 17:35:53 +0200455 root_item.ctime = root_item.otime;
456 btrfs_set_root_ctransid(&root_item, trans->transid);
457 btrfs_set_root_otransid(&root_item, trans->transid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400458
Chris Mason925baed2008-06-25 16:01:30 -0400459 btrfs_tree_unlock(leaf);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400460 free_extent_buffer(leaf);
461 leaf = NULL;
462
463 btrfs_set_root_dirid(&root_item, new_dirid);
464
465 key.objectid = objectid;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400466 key.offset = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400467 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
468 ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
469 &root_item);
470 if (ret)
471 goto fail;
472
Yan, Zheng76dda932009-09-21 16:00:26 -0400473 key.offset = (u64)-1;
474 new_root = btrfs_read_fs_root_no_name(root->fs_info, &key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100475 if (IS_ERR(new_root)) {
476 btrfs_abort_transaction(trans, root, PTR_ERR(new_root));
477 ret = PTR_ERR(new_root);
478 goto fail;
479 }
Yan, Zheng76dda932009-09-21 16:00:26 -0400480
481 btrfs_record_root_in_trans(trans, new_root);
482
Josef Bacikd82a6f12011-05-11 15:26:06 -0400483 ret = btrfs_create_subvol_root(trans, new_root, new_dirid);
Mark Fashehce598972011-07-26 11:32:23 -0700484 if (ret) {
485 /* We potentially lose an unused inode item here */
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100486 btrfs_abort_transaction(trans, root, ret);
Mark Fashehce598972011-07-26 11:32:23 -0700487 goto fail;
488 }
489
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400490 /*
491 * insert the directory item
492 */
Chris Mason3de45862008-11-17 21:02:50 -0500493 ret = btrfs_set_inode_index(dir, &index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100494 if (ret) {
495 btrfs_abort_transaction(trans, root, ret);
496 goto fail;
497 }
Chris Mason3de45862008-11-17 21:02:50 -0500498
499 ret = btrfs_insert_dir_item(trans, root,
Miao Xie16cdcec2011-04-22 18:12:22 +0800500 name, namelen, dir, &key,
Chris Mason3de45862008-11-17 21:02:50 -0500501 BTRFS_FT_DIR, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100502 if (ret) {
503 btrfs_abort_transaction(trans, root, ret);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400504 goto fail;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100505 }
Chris Mason0660b5a2008-11-17 20:37:39 -0500506
Yan Zheng52c26172009-01-05 15:43:43 -0500507 btrfs_i_size_write(dir, dir->i_size + namelen * 2);
508 ret = btrfs_update_inode(trans, root, dir);
509 BUG_ON(ret);
510
Chris Mason0660b5a2008-11-17 20:37:39 -0500511 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -0400512 objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +0800513 btrfs_ino(dir), index, name, namelen);
Yan, Zheng76dda932009-09-21 16:00:26 -0400514
Chris Mason0660b5a2008-11-17 20:37:39 -0500515 BUG_ON(ret);
516
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400517fail:
Sage Weil72fd0322010-10-29 15:41:32 -0400518 if (async_transid) {
519 *async_transid = trans->transid;
520 err = btrfs_commit_transaction_async(trans, root, 1);
521 } else {
522 err = btrfs_commit_transaction(trans, root);
523 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400524 if (err && !ret)
525 ret = err;
Chris Mason1a65e242013-02-06 12:06:02 -0500526
527 if (!ret)
528 d_instantiate(dentry, btrfs_lookup_dentry(dir, dentry));
529
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400530 return ret;
531}
532
Miao Xiee9662f72013-02-28 10:01:15 +0000533static int create_snapshot(struct btrfs_root *root, struct inode *dir,
534 struct dentry *dentry, char *name, int namelen,
535 u64 *async_transid, bool readonly,
536 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400537{
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000538 struct inode *inode;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400539 struct btrfs_pending_snapshot *pending_snapshot;
540 struct btrfs_trans_handle *trans;
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000541 int ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400542
543 if (!root->ref_cows)
544 return -EINVAL;
545
Yan, Zhenga22285a2010-05-16 10:48:46 -0400546 pending_snapshot = kzalloc(sizeof(*pending_snapshot), GFP_NOFS);
547 if (!pending_snapshot)
548 return -ENOMEM;
549
Miao Xie66d8f3d2012-09-06 04:02:28 -0600550 btrfs_init_block_rsv(&pending_snapshot->block_rsv,
551 BTRFS_BLOCK_RSV_TEMP);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400552 pending_snapshot->dentry = dentry;
553 pending_snapshot->root = root;
Li Zefanb83cc962010-12-20 16:04:08 +0800554 pending_snapshot->readonly = readonly;
Miao Xiee9662f72013-02-28 10:01:15 +0000555 pending_snapshot->dir = dir;
Miao Xie8696c532013-02-07 06:02:44 +0000556 pending_snapshot->inherit = inherit;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400557
Miao Xie48c03c42012-09-06 04:03:56 -0600558 trans = btrfs_start_transaction(root->fs_info->extent_root, 6);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400559 if (IS_ERR(trans)) {
560 ret = PTR_ERR(trans);
561 goto fail;
562 }
563
564 ret = btrfs_snap_reserve_metadata(trans, pending_snapshot);
565 BUG_ON(ret);
566
Josef Bacik83515832011-06-14 15:16:14 -0400567 spin_lock(&root->fs_info->trans_lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400568 list_add(&pending_snapshot->list,
569 &trans->transaction->pending_snapshots);
Josef Bacik83515832011-06-14 15:16:14 -0400570 spin_unlock(&root->fs_info->trans_lock);
Sage Weil72fd0322010-10-29 15:41:32 -0400571 if (async_transid) {
572 *async_transid = trans->transid;
573 ret = btrfs_commit_transaction_async(trans,
574 root->fs_info->extent_root, 1);
575 } else {
576 ret = btrfs_commit_transaction(trans,
577 root->fs_info->extent_root);
578 }
Liu Bo109f2362012-11-05 12:42:09 +0000579 if (ret) {
580 /* cleanup_transaction has freed this for us */
581 if (trans->aborted)
582 pending_snapshot = NULL;
Josef Bacikc37b2b62012-10-22 15:51:44 -0400583 goto fail;
Liu Bo109f2362012-11-05 12:42:09 +0000584 }
Yan, Zhenga22285a2010-05-16 10:48:46 -0400585
586 ret = pending_snapshot->error;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400587 if (ret)
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000588 goto fail;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400589
Josef Bacik66b4ffd2011-01-31 16:22:42 -0500590 ret = btrfs_orphan_cleanup(pending_snapshot->snap);
591 if (ret)
592 goto fail;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400593
Al Viro2fbe8c82011-07-16 21:38:06 -0400594 inode = btrfs_lookup_dentry(dentry->d_parent->d_inode, dentry);
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000595 if (IS_ERR(inode)) {
596 ret = PTR_ERR(inode);
597 goto fail;
598 }
599 BUG_ON(!inode);
600 d_instantiate(dentry, inode);
601 ret = 0;
602fail:
Yan, Zhenga22285a2010-05-16 10:48:46 -0400603 kfree(pending_snapshot);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400604 return ret;
605}
606
Sage Weil4260f7c2010-10-29 15:46:43 -0400607/* copy of check_sticky in fs/namei.c()
608* It's inline, so penalty for filesystems that don't use sticky bit is
609* minimal.
610*/
611static inline int btrfs_check_sticky(struct inode *dir, struct inode *inode)
612{
Eric W. Biederman2f2f43d2012-02-10 11:05:07 -0800613 kuid_t fsuid = current_fsuid();
Sage Weil4260f7c2010-10-29 15:46:43 -0400614
615 if (!(dir->i_mode & S_ISVTX))
616 return 0;
Eric W. Biederman2f2f43d2012-02-10 11:05:07 -0800617 if (uid_eq(inode->i_uid, fsuid))
Sage Weil4260f7c2010-10-29 15:46:43 -0400618 return 0;
Eric W. Biederman2f2f43d2012-02-10 11:05:07 -0800619 if (uid_eq(dir->i_uid, fsuid))
Sage Weil4260f7c2010-10-29 15:46:43 -0400620 return 0;
621 return !capable(CAP_FOWNER);
622}
623
624/* copy of may_delete in fs/namei.c()
625 * Check whether we can remove a link victim from directory dir, check
626 * whether the type of victim is right.
627 * 1. We can't do it if dir is read-only (done in permission())
628 * 2. We should have write and exec permissions on dir
629 * 3. We can't remove anything from append-only dir
630 * 4. We can't do anything with immutable dir (done in permission())
631 * 5. If the sticky bit on dir is set we should either
632 * a. be owner of dir, or
633 * b. be owner of victim, or
634 * c. have CAP_FOWNER capability
635 * 6. If the victim is append-only or immutable we can't do antyhing with
636 * links pointing to it.
637 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
638 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
639 * 9. We can't remove a root or mountpoint.
640 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
641 * nfs_async_unlink().
642 */
643
644static int btrfs_may_delete(struct inode *dir,struct dentry *victim,int isdir)
645{
646 int error;
647
648 if (!victim->d_inode)
649 return -ENOENT;
650
651 BUG_ON(victim->d_parent->d_inode != dir);
Jeff Layton4fa6b5e2012-10-10 15:25:25 -0400652 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
Sage Weil4260f7c2010-10-29 15:46:43 -0400653
654 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
655 if (error)
656 return error;
657 if (IS_APPEND(dir))
658 return -EPERM;
659 if (btrfs_check_sticky(dir, victim->d_inode)||
660 IS_APPEND(victim->d_inode)||
661 IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode))
662 return -EPERM;
663 if (isdir) {
664 if (!S_ISDIR(victim->d_inode->i_mode))
665 return -ENOTDIR;
666 if (IS_ROOT(victim))
667 return -EBUSY;
668 } else if (S_ISDIR(victim->d_inode->i_mode))
669 return -EISDIR;
670 if (IS_DEADDIR(dir))
671 return -ENOENT;
672 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
673 return -EBUSY;
674 return 0;
675}
676
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400677/* copy of may_create in fs/namei.c() */
678static inline int btrfs_may_create(struct inode *dir, struct dentry *child)
679{
680 if (child->d_inode)
681 return -EEXIST;
682 if (IS_DEADDIR(dir))
683 return -ENOENT;
684 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
685}
686
687/*
688 * Create a new subvolume below @parent. This is largely modeled after
689 * sys_mkdirat and vfs_mkdir, but we only do a single component lookup
690 * inside this filesystem so it's quite a bit simpler.
691 */
Yan, Zheng76dda932009-09-21 16:00:26 -0400692static noinline int btrfs_mksubvol(struct path *parent,
693 char *name, int namelen,
Sage Weil72fd0322010-10-29 15:41:32 -0400694 struct btrfs_root *snap_src,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200695 u64 *async_transid, bool readonly,
Miao Xie8696c532013-02-07 06:02:44 +0000696 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400697{
Yan, Zheng76dda932009-09-21 16:00:26 -0400698 struct inode *dir = parent->dentry->d_inode;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400699 struct dentry *dentry;
700 int error;
701
Yan, Zheng76dda932009-09-21 16:00:26 -0400702 mutex_lock_nested(&dir->i_mutex, I_MUTEX_PARENT);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400703
704 dentry = lookup_one_len(name, parent->dentry, namelen);
705 error = PTR_ERR(dentry);
706 if (IS_ERR(dentry))
707 goto out_unlock;
708
709 error = -EEXIST;
710 if (dentry->d_inode)
711 goto out_dput;
712
Yan, Zheng76dda932009-09-21 16:00:26 -0400713 error = btrfs_may_create(dir, dentry);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400714 if (error)
Liu Boa874a632012-06-29 03:58:46 -0600715 goto out_dput;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400716
Chris Mason9c520572012-12-17 14:26:57 -0500717 /*
718 * even if this name doesn't exist, we may get hash collisions.
719 * check for them now when we can safely fail
720 */
721 error = btrfs_check_dir_item_collision(BTRFS_I(dir)->root,
722 dir->i_ino, name,
723 namelen);
724 if (error)
725 goto out_dput;
726
Yan, Zheng76dda932009-09-21 16:00:26 -0400727 down_read(&BTRFS_I(dir)->root->fs_info->subvol_sem);
728
729 if (btrfs_root_refs(&BTRFS_I(dir)->root->root_item) == 0)
730 goto out_up_read;
731
Chris Mason3de45862008-11-17 21:02:50 -0500732 if (snap_src) {
Miao Xiee9662f72013-02-28 10:01:15 +0000733 error = create_snapshot(snap_src, dir, dentry, name, namelen,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200734 async_transid, readonly, inherit);
Chris Mason3de45862008-11-17 21:02:50 -0500735 } else {
Yan, Zheng76dda932009-09-21 16:00:26 -0400736 error = create_subvol(BTRFS_I(dir)->root, dentry,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200737 name, namelen, async_transid, inherit);
Chris Mason3de45862008-11-17 21:02:50 -0500738 }
Yan, Zheng76dda932009-09-21 16:00:26 -0400739 if (!error)
740 fsnotify_mkdir(dir, dentry);
741out_up_read:
742 up_read(&BTRFS_I(dir)->root->fs_info->subvol_sem);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400743out_dput:
744 dput(dentry);
745out_unlock:
Yan, Zheng76dda932009-09-21 16:00:26 -0400746 mutex_unlock(&dir->i_mutex);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400747 return error;
748}
749
Chris Mason4cb53002011-05-24 15:35:30 -0400750/*
751 * When we're defragging a range, we don't want to kick it off again
752 * if it is really just waiting for delalloc to send it down.
753 * If we find a nice big extent or delalloc range for the bytes in the
754 * file you want to defrag, we return 0 to let you know to skip this
755 * part of the file
756 */
757static int check_defrag_in_cache(struct inode *inode, u64 offset, int thresh)
758{
759 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
760 struct extent_map *em = NULL;
761 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
762 u64 end;
763
764 read_lock(&em_tree->lock);
765 em = lookup_extent_mapping(em_tree, offset, PAGE_CACHE_SIZE);
766 read_unlock(&em_tree->lock);
767
768 if (em) {
769 end = extent_map_end(em);
770 free_extent_map(em);
771 if (end - offset > thresh)
772 return 0;
773 }
774 /* if we already have a nice delalloc here, just stop */
775 thresh /= 2;
776 end = count_range_bits(io_tree, &offset, offset + thresh,
777 thresh, EXTENT_DELALLOC, 1);
778 if (end >= thresh)
779 return 0;
780 return 1;
781}
782
783/*
784 * helper function to walk through a file and find extents
785 * newer than a specific transid, and smaller than thresh.
786 *
787 * This is used by the defragging code to find new and small
788 * extents
789 */
790static int find_new_extents(struct btrfs_root *root,
791 struct inode *inode, u64 newer_than,
792 u64 *off, int thresh)
793{
794 struct btrfs_path *path;
795 struct btrfs_key min_key;
796 struct btrfs_key max_key;
797 struct extent_buffer *leaf;
798 struct btrfs_file_extent_item *extent;
799 int type;
800 int ret;
David Sterbaa4689d22011-05-31 17:08:14 +0000801 u64 ino = btrfs_ino(inode);
Chris Mason4cb53002011-05-24 15:35:30 -0400802
803 path = btrfs_alloc_path();
804 if (!path)
805 return -ENOMEM;
806
David Sterbaa4689d22011-05-31 17:08:14 +0000807 min_key.objectid = ino;
Chris Mason4cb53002011-05-24 15:35:30 -0400808 min_key.type = BTRFS_EXTENT_DATA_KEY;
809 min_key.offset = *off;
810
David Sterbaa4689d22011-05-31 17:08:14 +0000811 max_key.objectid = ino;
Chris Mason4cb53002011-05-24 15:35:30 -0400812 max_key.type = (u8)-1;
813 max_key.offset = (u64)-1;
814
815 path->keep_locks = 1;
816
817 while(1) {
818 ret = btrfs_search_forward(root, &min_key, &max_key,
Eric Sandeende78b512013-01-31 18:21:12 +0000819 path, newer_than);
Chris Mason4cb53002011-05-24 15:35:30 -0400820 if (ret != 0)
821 goto none;
David Sterbaa4689d22011-05-31 17:08:14 +0000822 if (min_key.objectid != ino)
Chris Mason4cb53002011-05-24 15:35:30 -0400823 goto none;
824 if (min_key.type != BTRFS_EXTENT_DATA_KEY)
825 goto none;
826
827 leaf = path->nodes[0];
828 extent = btrfs_item_ptr(leaf, path->slots[0],
829 struct btrfs_file_extent_item);
830
831 type = btrfs_file_extent_type(leaf, extent);
832 if (type == BTRFS_FILE_EXTENT_REG &&
833 btrfs_file_extent_num_bytes(leaf, extent) < thresh &&
834 check_defrag_in_cache(inode, min_key.offset, thresh)) {
835 *off = min_key.offset;
836 btrfs_free_path(path);
837 return 0;
838 }
839
840 if (min_key.offset == (u64)-1)
841 goto none;
842
843 min_key.offset++;
844 btrfs_release_path(path);
845 }
846none:
847 btrfs_free_path(path);
848 return -ENOENT;
849}
850
Li Zefan6c282eb2012-06-11 16:03:35 +0800851static struct extent_map *defrag_lookup_extent(struct inode *inode, u64 start)
Liu Bo17ce6ef2012-03-29 09:57:45 -0400852{
853 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason940100a2010-03-10 10:52:59 -0500854 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Li Zefan6c282eb2012-06-11 16:03:35 +0800855 struct extent_map *em;
856 u64 len = PAGE_CACHE_SIZE;
Chris Mason940100a2010-03-10 10:52:59 -0500857
858 /*
859 * hopefully we have this extent in the tree already, try without
860 * the full extent lock
861 */
862 read_lock(&em_tree->lock);
863 em = lookup_extent_mapping(em_tree, start, len);
864 read_unlock(&em_tree->lock);
865
866 if (!em) {
867 /* get the big lock and read metadata off disk */
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100868 lock_extent(io_tree, start, start + len - 1);
Chris Mason940100a2010-03-10 10:52:59 -0500869 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100870 unlock_extent(io_tree, start, start + len - 1);
Chris Mason940100a2010-03-10 10:52:59 -0500871
Dan Carpenter6cf8bfb2010-03-20 11:22:10 +0000872 if (IS_ERR(em))
Li Zefan6c282eb2012-06-11 16:03:35 +0800873 return NULL;
Chris Mason940100a2010-03-10 10:52:59 -0500874 }
875
Li Zefan6c282eb2012-06-11 16:03:35 +0800876 return em;
877}
878
879static bool defrag_check_next_extent(struct inode *inode, struct extent_map *em)
880{
881 struct extent_map *next;
882 bool ret = true;
883
884 /* this is the last extent */
885 if (em->start + em->len >= i_size_read(inode))
886 return false;
887
888 next = defrag_lookup_extent(inode, em->start + em->len);
889 if (!next || next->block_start >= EXTENT_MAP_LAST_BYTE)
890 ret = false;
891
892 free_extent_map(next);
893 return ret;
894}
895
896static int should_defrag_range(struct inode *inode, u64 start, int thresh,
Andrew Mahonea43a2112012-06-19 21:08:32 -0400897 u64 *last_len, u64 *skip, u64 *defrag_end,
898 int compress)
Li Zefan6c282eb2012-06-11 16:03:35 +0800899{
900 struct extent_map *em;
901 int ret = 1;
902 bool next_mergeable = true;
903
904 /*
905 * make sure that once we start defragging an extent, we keep on
906 * defragging it
907 */
908 if (start < *defrag_end)
909 return 1;
910
911 *skip = 0;
912
913 em = defrag_lookup_extent(inode, start);
914 if (!em)
915 return 0;
916
Chris Mason940100a2010-03-10 10:52:59 -0500917 /* this will cover holes, and inline extents */
Liu Bo17ce6ef2012-03-29 09:57:45 -0400918 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
Chris Mason940100a2010-03-10 10:52:59 -0500919 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -0400920 goto out;
921 }
922
Li Zefan6c282eb2012-06-11 16:03:35 +0800923 next_mergeable = defrag_check_next_extent(inode, em);
Chris Mason940100a2010-03-10 10:52:59 -0500924
925 /*
Li Zefan6c282eb2012-06-11 16:03:35 +0800926 * we hit a real extent, if it is big or the next extent is not a
927 * real extent, don't bother defragging it
Chris Mason940100a2010-03-10 10:52:59 -0500928 */
Andrew Mahonea43a2112012-06-19 21:08:32 -0400929 if (!compress && (*last_len == 0 || *last_len >= thresh) &&
Li Zefan6c282eb2012-06-11 16:03:35 +0800930 (em->len >= thresh || !next_mergeable))
Chris Mason940100a2010-03-10 10:52:59 -0500931 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -0400932out:
Chris Mason940100a2010-03-10 10:52:59 -0500933 /*
934 * last_len ends up being a counter of how many bytes we've defragged.
935 * every time we choose not to defrag an extent, we reset *last_len
936 * so that the next tiny extent will force a defrag.
937 *
938 * The end result of this is that tiny extents before a single big
939 * extent will force at least part of that big extent to be defragged.
940 */
941 if (ret) {
Chris Mason940100a2010-03-10 10:52:59 -0500942 *defrag_end = extent_map_end(em);
943 } else {
944 *last_len = 0;
945 *skip = extent_map_end(em);
946 *defrag_end = 0;
947 }
948
949 free_extent_map(em);
950 return ret;
951}
952
Chris Mason4cb53002011-05-24 15:35:30 -0400953/*
954 * it doesn't do much good to defrag one or two pages
955 * at a time. This pulls in a nice chunk of pages
956 * to COW and defrag.
957 *
958 * It also makes sure the delalloc code has enough
959 * dirty data to avoid making new small extents as part
960 * of the defrag
961 *
962 * It's a good idea to start RA on this range
963 * before calling this.
964 */
965static int cluster_pages_for_defrag(struct inode *inode,
966 struct page **pages,
967 unsigned long start_index,
968 int num_pages)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400969{
Chris Mason4cb53002011-05-24 15:35:30 -0400970 unsigned long file_end;
971 u64 isize = i_size_read(inode);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400972 u64 page_start;
973 u64 page_end;
Liu Bo1f12bd02012-03-29 09:57:44 -0400974 u64 page_cnt;
Chris Mason4cb53002011-05-24 15:35:30 -0400975 int ret;
976 int i;
977 int i_done;
978 struct btrfs_ordered_extent *ordered;
979 struct extent_state *cached_state = NULL;
Miao Xie600a45e2012-02-16 15:01:24 +0800980 struct extent_io_tree *tree;
Josef Bacik3b16a4e2011-09-21 15:05:58 -0400981 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
Chris Mason4cb53002011-05-24 15:35:30 -0400982
Chris Mason4cb53002011-05-24 15:35:30 -0400983 file_end = (isize - 1) >> PAGE_CACHE_SHIFT;
Liu Bo1f12bd02012-03-29 09:57:44 -0400984 if (!isize || start_index > file_end)
985 return 0;
986
987 page_cnt = min_t(u64, (u64)num_pages, (u64)file_end - start_index + 1);
Chris Mason4cb53002011-05-24 15:35:30 -0400988
989 ret = btrfs_delalloc_reserve_space(inode,
Liu Bo1f12bd02012-03-29 09:57:44 -0400990 page_cnt << PAGE_CACHE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -0400991 if (ret)
992 return ret;
Chris Mason4cb53002011-05-24 15:35:30 -0400993 i_done = 0;
Miao Xie600a45e2012-02-16 15:01:24 +0800994 tree = &BTRFS_I(inode)->io_tree;
Chris Mason4cb53002011-05-24 15:35:30 -0400995
996 /* step one, lock all the pages */
Liu Bo1f12bd02012-03-29 09:57:44 -0400997 for (i = 0; i < page_cnt; i++) {
Chris Mason4cb53002011-05-24 15:35:30 -0400998 struct page *page;
Miao Xie600a45e2012-02-16 15:01:24 +0800999again:
Josef Bacika94733d2011-07-11 10:47:06 -04001000 page = find_or_create_page(inode->i_mapping,
Miao Xie600a45e2012-02-16 15:01:24 +08001001 start_index + i, mask);
Chris Mason4cb53002011-05-24 15:35:30 -04001002 if (!page)
1003 break;
1004
Miao Xie600a45e2012-02-16 15:01:24 +08001005 page_start = page_offset(page);
1006 page_end = page_start + PAGE_CACHE_SIZE - 1;
1007 while (1) {
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001008 lock_extent(tree, page_start, page_end);
Miao Xie600a45e2012-02-16 15:01:24 +08001009 ordered = btrfs_lookup_ordered_extent(inode,
1010 page_start);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001011 unlock_extent(tree, page_start, page_end);
Miao Xie600a45e2012-02-16 15:01:24 +08001012 if (!ordered)
1013 break;
1014
1015 unlock_page(page);
1016 btrfs_start_ordered_extent(inode, ordered, 1);
1017 btrfs_put_ordered_extent(ordered);
1018 lock_page(page);
Liu Bo1f12bd02012-03-29 09:57:44 -04001019 /*
1020 * we unlocked the page above, so we need check if
1021 * it was released or not.
1022 */
1023 if (page->mapping != inode->i_mapping) {
1024 unlock_page(page);
1025 page_cache_release(page);
1026 goto again;
1027 }
Miao Xie600a45e2012-02-16 15:01:24 +08001028 }
1029
Chris Mason4cb53002011-05-24 15:35:30 -04001030 if (!PageUptodate(page)) {
1031 btrfs_readpage(NULL, page);
1032 lock_page(page);
1033 if (!PageUptodate(page)) {
1034 unlock_page(page);
1035 page_cache_release(page);
1036 ret = -EIO;
1037 break;
1038 }
1039 }
Miao Xie600a45e2012-02-16 15:01:24 +08001040
Miao Xie600a45e2012-02-16 15:01:24 +08001041 if (page->mapping != inode->i_mapping) {
1042 unlock_page(page);
1043 page_cache_release(page);
1044 goto again;
1045 }
1046
Chris Mason4cb53002011-05-24 15:35:30 -04001047 pages[i] = page;
1048 i_done++;
1049 }
1050 if (!i_done || ret)
1051 goto out;
1052
1053 if (!(inode->i_sb->s_flags & MS_ACTIVE))
1054 goto out;
1055
1056 /*
1057 * so now we have a nice long stream of locked
1058 * and up to date pages, lets wait on them
1059 */
1060 for (i = 0; i < i_done; i++)
1061 wait_on_page_writeback(pages[i]);
1062
1063 page_start = page_offset(pages[0]);
1064 page_end = page_offset(pages[i_done - 1]) + PAGE_CACHE_SIZE;
1065
1066 lock_extent_bits(&BTRFS_I(inode)->io_tree,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001067 page_start, page_end - 1, 0, &cached_state);
Chris Mason4cb53002011-05-24 15:35:30 -04001068 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start,
1069 page_end - 1, EXTENT_DIRTY | EXTENT_DELALLOC |
Liu Bo9e8a4a82012-09-05 19:10:51 -06001070 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, 0, 0,
1071 &cached_state, GFP_NOFS);
Chris Mason4cb53002011-05-24 15:35:30 -04001072
Liu Bo1f12bd02012-03-29 09:57:44 -04001073 if (i_done != page_cnt) {
Josef Bacik9e0baf62011-07-15 15:16:44 +00001074 spin_lock(&BTRFS_I(inode)->lock);
1075 BTRFS_I(inode)->outstanding_extents++;
1076 spin_unlock(&BTRFS_I(inode)->lock);
Chris Mason4cb53002011-05-24 15:35:30 -04001077 btrfs_delalloc_release_space(inode,
Liu Bo1f12bd02012-03-29 09:57:44 -04001078 (page_cnt - i_done) << PAGE_CACHE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001079 }
1080
1081
Liu Bo9e8a4a82012-09-05 19:10:51 -06001082 set_extent_defrag(&BTRFS_I(inode)->io_tree, page_start, page_end - 1,
1083 &cached_state, GFP_NOFS);
Chris Mason4cb53002011-05-24 15:35:30 -04001084
1085 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
1086 page_start, page_end - 1, &cached_state,
1087 GFP_NOFS);
1088
1089 for (i = 0; i < i_done; i++) {
1090 clear_page_dirty_for_io(pages[i]);
1091 ClearPageChecked(pages[i]);
1092 set_page_extent_mapped(pages[i]);
1093 set_page_dirty(pages[i]);
1094 unlock_page(pages[i]);
1095 page_cache_release(pages[i]);
1096 }
1097 return i_done;
1098out:
1099 for (i = 0; i < i_done; i++) {
1100 unlock_page(pages[i]);
1101 page_cache_release(pages[i]);
1102 }
Liu Bo1f12bd02012-03-29 09:57:44 -04001103 btrfs_delalloc_release_space(inode, page_cnt << PAGE_CACHE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001104 return ret;
1105
1106}
1107
1108int btrfs_defrag_file(struct inode *inode, struct file *file,
1109 struct btrfs_ioctl_defrag_range_args *range,
1110 u64 newer_than, unsigned long max_to_defrag)
1111{
1112 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason4cb53002011-05-24 15:35:30 -04001113 struct file_ra_state *ra = NULL;
1114 unsigned long last_index;
Li Zefan151a31b2011-09-02 15:56:39 +08001115 u64 isize = i_size_read(inode);
Chris Mason940100a2010-03-10 10:52:59 -05001116 u64 last_len = 0;
1117 u64 skip = 0;
1118 u64 defrag_end = 0;
Chris Mason4cb53002011-05-24 15:35:30 -04001119 u64 newer_off = range->start;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001120 unsigned long i;
Li Zefan008873e2011-09-02 15:57:07 +08001121 unsigned long ra_index = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001122 int ret;
Chris Mason4cb53002011-05-24 15:35:30 -04001123 int defrag_count = 0;
Li Zefan1a419d82010-10-25 15:12:50 +08001124 int compress_type = BTRFS_COMPRESS_ZLIB;
Chris Mason4cb53002011-05-24 15:35:30 -04001125 int extent_thresh = range->extent_thresh;
Li Zefan008873e2011-09-02 15:57:07 +08001126 int max_cluster = (256 * 1024) >> PAGE_CACHE_SHIFT;
1127 int cluster = max_cluster;
Chris Mason4cb53002011-05-24 15:35:30 -04001128 u64 new_align = ~((u64)128 * 1024 - 1);
1129 struct page **pages = NULL;
1130
1131 if (extent_thresh == 0)
1132 extent_thresh = 256 * 1024;
Li Zefan1a419d82010-10-25 15:12:50 +08001133
1134 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS) {
1135 if (range->compress_type > BTRFS_COMPRESS_TYPES)
1136 return -EINVAL;
1137 if (range->compress_type)
1138 compress_type = range->compress_type;
1139 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001140
Li Zefan151a31b2011-09-02 15:56:39 +08001141 if (isize == 0)
Chris Mason940100a2010-03-10 10:52:59 -05001142 return 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001143
Chris Mason4cb53002011-05-24 15:35:30 -04001144 /*
1145 * if we were not given a file, allocate a readahead
1146 * context
1147 */
1148 if (!file) {
1149 ra = kzalloc(sizeof(*ra), GFP_NOFS);
1150 if (!ra)
1151 return -ENOMEM;
1152 file_ra_state_init(ra, inode->i_mapping);
1153 } else {
1154 ra = &file->f_ra;
1155 }
1156
Li Zefan008873e2011-09-02 15:57:07 +08001157 pages = kmalloc(sizeof(struct page *) * max_cluster,
Chris Mason4cb53002011-05-24 15:35:30 -04001158 GFP_NOFS);
1159 if (!pages) {
1160 ret = -ENOMEM;
1161 goto out_ra;
1162 }
1163
1164 /* find the last page to defrag */
Chris Mason1e701a32010-03-11 09:42:04 -05001165 if (range->start + range->len > range->start) {
Li Zefan151a31b2011-09-02 15:56:39 +08001166 last_index = min_t(u64, isize - 1,
Chris Mason1e701a32010-03-11 09:42:04 -05001167 range->start + range->len - 1) >> PAGE_CACHE_SHIFT;
1168 } else {
Li Zefan151a31b2011-09-02 15:56:39 +08001169 last_index = (isize - 1) >> PAGE_CACHE_SHIFT;
Chris Mason1e701a32010-03-11 09:42:04 -05001170 }
1171
Chris Mason4cb53002011-05-24 15:35:30 -04001172 if (newer_than) {
1173 ret = find_new_extents(root, inode, newer_than,
1174 &newer_off, 64 * 1024);
1175 if (!ret) {
1176 range->start = newer_off;
1177 /*
1178 * we always align our defrag to help keep
1179 * the extents in the file evenly spaced
1180 */
1181 i = (newer_off & new_align) >> PAGE_CACHE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001182 } else
1183 goto out_ra;
1184 } else {
1185 i = range->start >> PAGE_CACHE_SHIFT;
1186 }
1187 if (!max_to_defrag)
Liu Bo7ec31b52012-01-26 15:01:12 -05001188 max_to_defrag = last_index + 1;
Chris Mason4cb53002011-05-24 15:35:30 -04001189
Li Zefan2a0f7f52011-10-10 15:43:34 -04001190 /*
1191 * make writeback starts from i, so the defrag range can be
1192 * written sequentially.
1193 */
1194 if (i < inode->i_mapping->writeback_index)
1195 inode->i_mapping->writeback_index = i;
1196
Chris Masonf7f43cc2011-10-11 11:41:40 -04001197 while (i <= last_index && defrag_count < max_to_defrag &&
1198 (i < (i_size_read(inode) + PAGE_CACHE_SIZE - 1) >>
1199 PAGE_CACHE_SHIFT)) {
Chris Mason4cb53002011-05-24 15:35:30 -04001200 /*
1201 * make sure we stop running if someone unmounts
1202 * the FS
1203 */
1204 if (!(inode->i_sb->s_flags & MS_ACTIVE))
1205 break;
1206
David Sterba210549e2013-02-09 23:38:06 +00001207 if (btrfs_defrag_cancelled(root->fs_info)) {
1208 printk(KERN_DEBUG "btrfs: defrag_file cancelled\n");
1209 ret = -EAGAIN;
1210 break;
1211 }
1212
Liu Bo66c26892012-03-29 09:57:45 -04001213 if (!should_defrag_range(inode, (u64)i << PAGE_CACHE_SHIFT,
Li Zefan6c282eb2012-06-11 16:03:35 +08001214 extent_thresh, &last_len, &skip,
Andrew Mahonea43a2112012-06-19 21:08:32 -04001215 &defrag_end, range->flags &
1216 BTRFS_DEFRAG_RANGE_COMPRESS)) {
Chris Mason940100a2010-03-10 10:52:59 -05001217 unsigned long next;
1218 /*
1219 * the should_defrag function tells us how much to skip
1220 * bump our counter by the suggested amount
1221 */
1222 next = (skip + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
1223 i = max(i + 1, next);
1224 continue;
1225 }
Li Zefan008873e2011-09-02 15:57:07 +08001226
1227 if (!newer_than) {
1228 cluster = (PAGE_CACHE_ALIGN(defrag_end) >>
1229 PAGE_CACHE_SHIFT) - i;
1230 cluster = min(cluster, max_cluster);
1231 } else {
1232 cluster = max_cluster;
1233 }
1234
Chris Mason1e701a32010-03-11 09:42:04 -05001235 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)
Li Zefan1a419d82010-10-25 15:12:50 +08001236 BTRFS_I(inode)->force_compress = compress_type;
Chris Mason940100a2010-03-10 10:52:59 -05001237
Li Zefan008873e2011-09-02 15:57:07 +08001238 if (i + cluster > ra_index) {
1239 ra_index = max(i, ra_index);
1240 btrfs_force_ra(inode->i_mapping, ra, file, ra_index,
1241 cluster);
1242 ra_index += max_cluster;
1243 }
Chris Mason940100a2010-03-10 10:52:59 -05001244
Liu Boecb8bea2012-03-29 09:57:44 -04001245 mutex_lock(&inode->i_mutex);
Li Zefan008873e2011-09-02 15:57:07 +08001246 ret = cluster_pages_for_defrag(inode, pages, i, cluster);
Liu Boecb8bea2012-03-29 09:57:44 -04001247 if (ret < 0) {
1248 mutex_unlock(&inode->i_mutex);
Chris Mason4cb53002011-05-24 15:35:30 -04001249 goto out_ra;
Liu Boecb8bea2012-03-29 09:57:44 -04001250 }
Chris Mason940100a2010-03-10 10:52:59 -05001251
Chris Mason4cb53002011-05-24 15:35:30 -04001252 defrag_count += ret;
Namjae Jeond0e1d662012-12-11 16:00:21 -08001253 balance_dirty_pages_ratelimited(inode->i_mapping);
Liu Boecb8bea2012-03-29 09:57:44 -04001254 mutex_unlock(&inode->i_mutex);
Chris Mason4cb53002011-05-24 15:35:30 -04001255
1256 if (newer_than) {
1257 if (newer_off == (u64)-1)
1258 break;
1259
Liu Boe1f041e2012-03-29 09:57:45 -04001260 if (ret > 0)
1261 i += ret;
1262
Chris Mason4cb53002011-05-24 15:35:30 -04001263 newer_off = max(newer_off + 1,
1264 (u64)i << PAGE_CACHE_SHIFT);
1265
1266 ret = find_new_extents(root, inode,
1267 newer_than, &newer_off,
1268 64 * 1024);
1269 if (!ret) {
1270 range->start = newer_off;
1271 i = (newer_off & new_align) >> PAGE_CACHE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001272 } else {
1273 break;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001274 }
Chris Mason4cb53002011-05-24 15:35:30 -04001275 } else {
Li Zefan008873e2011-09-02 15:57:07 +08001276 if (ret > 0) {
Li Zefancbcc8322011-09-02 15:56:25 +08001277 i += ret;
Li Zefan008873e2011-09-02 15:57:07 +08001278 last_len += ret << PAGE_CACHE_SHIFT;
1279 } else {
Li Zefancbcc8322011-09-02 15:56:25 +08001280 i++;
Li Zefan008873e2011-09-02 15:57:07 +08001281 last_len = 0;
1282 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001283 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001284 }
1285
Chris Mason1e701a32010-03-11 09:42:04 -05001286 if ((range->flags & BTRFS_DEFRAG_RANGE_START_IO))
1287 filemap_flush(inode->i_mapping);
1288
1289 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
1290 /* the filemap_flush will queue IO into the worker threads, but
1291 * we have to make sure the IO is actually started and that
1292 * ordered extents get created before we return
1293 */
1294 atomic_inc(&root->fs_info->async_submit_draining);
1295 while (atomic_read(&root->fs_info->nr_async_submits) ||
1296 atomic_read(&root->fs_info->async_delalloc_pages)) {
1297 wait_event(root->fs_info->async_submit_wait,
1298 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
1299 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
1300 }
1301 atomic_dec(&root->fs_info->async_submit_draining);
1302
1303 mutex_lock(&inode->i_mutex);
Li Zefan261507a02010-12-17 14:21:50 +08001304 BTRFS_I(inode)->force_compress = BTRFS_COMPRESS_NONE;
Chris Mason1e701a32010-03-11 09:42:04 -05001305 mutex_unlock(&inode->i_mutex);
1306 }
1307
Li Zefan1a419d82010-10-25 15:12:50 +08001308 if (range->compress_type == BTRFS_COMPRESS_LZO) {
Mitch Harder2b0ce2c2012-07-24 11:58:43 -06001309 btrfs_set_fs_incompat(root->fs_info, COMPRESS_LZO);
Li Zefan1a419d82010-10-25 15:12:50 +08001310 }
1311
Diego Calleja60ccf822011-09-01 16:33:57 +02001312 ret = defrag_count;
Chris Mason940100a2010-03-10 10:52:59 -05001313
Chris Mason4cb53002011-05-24 15:35:30 -04001314out_ra:
1315 if (!file)
1316 kfree(ra);
1317 kfree(pages);
Chris Mason940100a2010-03-10 10:52:59 -05001318 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001319}
1320
Miao Xie198605a2012-11-26 08:43:45 +00001321static noinline int btrfs_ioctl_resize(struct file *file,
Yan, Zheng76dda932009-09-21 16:00:26 -04001322 void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001323{
1324 u64 new_size;
1325 u64 old_size;
1326 u64 devid = 1;
Miao Xie198605a2012-11-26 08:43:45 +00001327 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001328 struct btrfs_ioctl_vol_args *vol_args;
1329 struct btrfs_trans_handle *trans;
1330 struct btrfs_device *device = NULL;
1331 char *sizestr;
1332 char *devstr = NULL;
1333 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001334 int mod = 0;
1335
Chris Masone441d542009-01-05 16:57:23 -05001336 if (!capable(CAP_SYS_ADMIN))
1337 return -EPERM;
1338
Miao Xie198605a2012-11-26 08:43:45 +00001339 ret = mnt_want_write_file(file);
1340 if (ret)
1341 return ret;
1342
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01001343 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
1344 1)) {
1345 pr_info("btrfs: dev add/delete/balance/replace/resize operation in progress\n");
Miao Xie97547672012-12-21 10:38:50 +00001346 mnt_drop_write_file(file);
Ilya Dryomov2c0c9da2013-01-20 15:57:57 +02001347 return -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001348 }
1349
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01001350 mutex_lock(&root->fs_info->volume_mutex);
Li Zefandae7b662009-04-08 15:06:54 +08001351 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001352 if (IS_ERR(vol_args)) {
1353 ret = PTR_ERR(vol_args);
1354 goto out;
1355 }
Mark Fasheh5516e592008-07-24 12:20:14 -04001356
1357 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001358
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001359 sizestr = vol_args->name;
1360 devstr = strchr(sizestr, ':');
1361 if (devstr) {
1362 char *end;
1363 sizestr = devstr + 1;
1364 *devstr = '\0';
1365 devstr = vol_args->name;
1366 devid = simple_strtoull(devstr, &end, 10);
Miao Xiedfd79822012-12-21 09:21:30 +00001367 if (!devid) {
1368 ret = -EINVAL;
1369 goto out_free;
1370 }
Arnd Hannemann5bb14682011-11-20 07:33:38 -05001371 printk(KERN_INFO "btrfs: resizing devid %llu\n",
Joel Becker21380932009-04-21 12:38:29 -07001372 (unsigned long long)devid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001373 }
Miao Xiedba60f32012-12-21 09:19:51 +00001374
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01001375 device = btrfs_find_device(root->fs_info, devid, NULL, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001376 if (!device) {
Arnd Hannemann5bb14682011-11-20 07:33:38 -05001377 printk(KERN_INFO "btrfs: resizer unable to find device %llu\n",
Joel Becker21380932009-04-21 12:38:29 -07001378 (unsigned long long)devid);
Miao Xiedfd79822012-12-21 09:21:30 +00001379 ret = -ENODEV;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001380 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001381 }
Miao Xiedba60f32012-12-21 09:19:51 +00001382
1383 if (!device->writeable) {
Liu Bo4e42ae12012-06-14 02:23:19 -06001384 printk(KERN_INFO "btrfs: resizer unable to apply on "
Miao Xiedba60f32012-12-21 09:19:51 +00001385 "readonly device %llu\n",
Chris Masona8c4a332012-06-15 20:07:17 -04001386 (unsigned long long)devid);
Miao Xiedfd79822012-12-21 09:21:30 +00001387 ret = -EPERM;
Liu Bo4e42ae12012-06-14 02:23:19 -06001388 goto out_free;
1389 }
1390
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001391 if (!strcmp(sizestr, "max"))
1392 new_size = device->bdev->bd_inode->i_size;
1393 else {
1394 if (sizestr[0] == '-') {
1395 mod = -1;
1396 sizestr++;
1397 } else if (sizestr[0] == '+') {
1398 mod = 1;
1399 sizestr++;
1400 }
Akinobu Mita91748462010-02-28 10:59:11 +00001401 new_size = memparse(sizestr, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001402 if (new_size == 0) {
1403 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001404 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001405 }
1406 }
1407
Stefan Behrens63a212a2012-11-05 18:29:28 +01001408 if (device->is_tgtdev_for_dev_replace) {
Miao Xiedfd79822012-12-21 09:21:30 +00001409 ret = -EPERM;
Stefan Behrens63a212a2012-11-05 18:29:28 +01001410 goto out_free;
1411 }
1412
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001413 old_size = device->total_bytes;
1414
1415 if (mod < 0) {
1416 if (new_size > old_size) {
1417 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001418 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001419 }
1420 new_size = old_size - new_size;
1421 } else if (mod > 0) {
1422 new_size = old_size + new_size;
1423 }
1424
1425 if (new_size < 256 * 1024 * 1024) {
1426 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001427 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001428 }
1429 if (new_size > device->bdev->bd_inode->i_size) {
1430 ret = -EFBIG;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001431 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001432 }
1433
1434 do_div(new_size, root->sectorsize);
1435 new_size *= root->sectorsize;
1436
Josef Bacik606686e2012-06-04 14:03:51 -04001437 printk_in_rcu(KERN_INFO "btrfs: new size for %s is %llu\n",
1438 rcu_str_deref(device->name),
1439 (unsigned long long)new_size);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001440
1441 if (new_size > old_size) {
Yan, Zhenga22285a2010-05-16 10:48:46 -04001442 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001443 if (IS_ERR(trans)) {
1444 ret = PTR_ERR(trans);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001445 goto out_free;
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001446 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001447 ret = btrfs_grow_device(trans, device, new_size);
1448 btrfs_commit_transaction(trans, root);
Mike Fleetwoodece7d202011-11-18 18:55:01 +00001449 } else if (new_size < old_size) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001450 ret = btrfs_shrink_device(device, new_size);
jeff.liu0253f402012-10-27 12:06:39 +00001451 } /* equal, nothing need to do */
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001452
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001453out_free:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001454 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001455out:
1456 mutex_unlock(&root->fs_info->volume_mutex);
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01001457 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
Ilya Dryomov18f39c42013-01-20 15:57:57 +02001458 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001459 return ret;
1460}
1461
Sage Weil72fd0322010-10-29 15:41:32 -04001462static noinline int btrfs_ioctl_snap_create_transid(struct file *file,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001463 char *name, unsigned long fd, int subvol,
1464 u64 *transid, bool readonly,
Miao Xie8696c532013-02-07 06:02:44 +00001465 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001466{
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001467 int namelen;
Chris Mason3de45862008-11-17 21:02:50 -05001468 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001469
Liu Boa874a632012-06-29 03:58:46 -06001470 ret = mnt_want_write_file(file);
1471 if (ret)
1472 goto out;
1473
Sage Weil72fd0322010-10-29 15:41:32 -04001474 namelen = strlen(name);
1475 if (strchr(name, '/')) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001476 ret = -EINVAL;
Liu Boa874a632012-06-29 03:58:46 -06001477 goto out_drop_write;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001478 }
1479
Chris Mason16780ca2012-02-20 22:14:55 -05001480 if (name[0] == '.' &&
1481 (namelen == 1 || (name[1] == '.' && namelen == 2))) {
1482 ret = -EEXIST;
Liu Boa874a632012-06-29 03:58:46 -06001483 goto out_drop_write;
Chris Mason16780ca2012-02-20 22:14:55 -05001484 }
1485
Chris Mason3de45862008-11-17 21:02:50 -05001486 if (subvol) {
Sage Weil72fd0322010-10-29 15:41:32 -04001487 ret = btrfs_mksubvol(&file->f_path, name, namelen,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001488 NULL, transid, readonly, inherit);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001489 } else {
Al Viro2903ff02012-08-28 12:52:22 -04001490 struct fd src = fdget(fd);
Chris Mason3de45862008-11-17 21:02:50 -05001491 struct inode *src_inode;
Al Viro2903ff02012-08-28 12:52:22 -04001492 if (!src.file) {
Chris Mason3de45862008-11-17 21:02:50 -05001493 ret = -EINVAL;
Liu Boa874a632012-06-29 03:58:46 -06001494 goto out_drop_write;
Chris Mason3de45862008-11-17 21:02:50 -05001495 }
1496
Al Viro2903ff02012-08-28 12:52:22 -04001497 src_inode = src.file->f_path.dentry->d_inode;
Chris Mason3de45862008-11-17 21:02:50 -05001498 if (src_inode->i_sb != file->f_path.dentry->d_inode->i_sb) {
Chris Masond3977122009-01-05 21:25:51 -05001499 printk(KERN_INFO "btrfs: Snapshot src from "
1500 "another FS\n");
Chris Mason3de45862008-11-17 21:02:50 -05001501 ret = -EINVAL;
Al Viroecd18812012-08-26 21:20:24 -04001502 } else {
1503 ret = btrfs_mksubvol(&file->f_path, name, namelen,
1504 BTRFS_I(src_inode)->root,
1505 transid, readonly, inherit);
Chris Mason3de45862008-11-17 21:02:50 -05001506 }
Al Viro2903ff02012-08-28 12:52:22 -04001507 fdput(src);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001508 }
Liu Boa874a632012-06-29 03:58:46 -06001509out_drop_write:
1510 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001511out:
Sage Weil72fd0322010-10-29 15:41:32 -04001512 return ret;
1513}
1514
1515static noinline int btrfs_ioctl_snap_create(struct file *file,
Li Zefanfa0d2b92010-12-20 15:53:28 +08001516 void __user *arg, int subvol)
Sage Weil72fd0322010-10-29 15:41:32 -04001517{
Li Zefanfa0d2b92010-12-20 15:53:28 +08001518 struct btrfs_ioctl_vol_args *vol_args;
Sage Weil72fd0322010-10-29 15:41:32 -04001519 int ret;
1520
Li Zefanfa0d2b92010-12-20 15:53:28 +08001521 vol_args = memdup_user(arg, sizeof(*vol_args));
1522 if (IS_ERR(vol_args))
1523 return PTR_ERR(vol_args);
1524 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Sage Weil72fd0322010-10-29 15:41:32 -04001525
Li Zefanfa0d2b92010-12-20 15:53:28 +08001526 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
Li Zefanb83cc962010-12-20 16:04:08 +08001527 vol_args->fd, subvol,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001528 NULL, false, NULL);
Li Zefanfdfb1e42010-12-10 06:41:56 +00001529
Li Zefanfa0d2b92010-12-20 15:53:28 +08001530 kfree(vol_args);
1531 return ret;
1532}
Li Zefanfdfb1e42010-12-10 06:41:56 +00001533
Li Zefanfa0d2b92010-12-20 15:53:28 +08001534static noinline int btrfs_ioctl_snap_create_v2(struct file *file,
1535 void __user *arg, int subvol)
1536{
1537 struct btrfs_ioctl_vol_args_v2 *vol_args;
1538 int ret;
1539 u64 transid = 0;
1540 u64 *ptr = NULL;
Li Zefanb83cc962010-12-20 16:04:08 +08001541 bool readonly = false;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001542 struct btrfs_qgroup_inherit *inherit = NULL;
Li Zefanfdfb1e42010-12-10 06:41:56 +00001543
Li Zefanfa0d2b92010-12-20 15:53:28 +08001544 vol_args = memdup_user(arg, sizeof(*vol_args));
1545 if (IS_ERR(vol_args))
1546 return PTR_ERR(vol_args);
1547 vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
Sage Weil75eaa0e2010-12-10 00:36:28 +00001548
Li Zefanb83cc962010-12-20 16:04:08 +08001549 if (vol_args->flags &
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001550 ~(BTRFS_SUBVOL_CREATE_ASYNC | BTRFS_SUBVOL_RDONLY |
1551 BTRFS_SUBVOL_QGROUP_INHERIT)) {
Li Zefanb83cc962010-12-20 16:04:08 +08001552 ret = -EOPNOTSUPP;
Li Zefanfa0d2b92010-12-20 15:53:28 +08001553 goto out;
Sage Weil72fd0322010-10-29 15:41:32 -04001554 }
Li Zefanfa0d2b92010-12-20 15:53:28 +08001555
1556 if (vol_args->flags & BTRFS_SUBVOL_CREATE_ASYNC)
1557 ptr = &transid;
Li Zefanb83cc962010-12-20 16:04:08 +08001558 if (vol_args->flags & BTRFS_SUBVOL_RDONLY)
1559 readonly = true;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001560 if (vol_args->flags & BTRFS_SUBVOL_QGROUP_INHERIT) {
1561 if (vol_args->size > PAGE_CACHE_SIZE) {
1562 ret = -EINVAL;
1563 goto out;
1564 }
1565 inherit = memdup_user(vol_args->qgroup_inherit, vol_args->size);
1566 if (IS_ERR(inherit)) {
1567 ret = PTR_ERR(inherit);
1568 goto out;
1569 }
1570 }
Li Zefanfa0d2b92010-12-20 15:53:28 +08001571
1572 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001573 vol_args->fd, subvol, ptr,
Miao Xie8696c532013-02-07 06:02:44 +00001574 readonly, inherit);
Li Zefanfa0d2b92010-12-20 15:53:28 +08001575
1576 if (ret == 0 && ptr &&
1577 copy_to_user(arg +
1578 offsetof(struct btrfs_ioctl_vol_args_v2,
1579 transid), ptr, sizeof(*ptr)))
1580 ret = -EFAULT;
Li Zefanfdfb1e42010-12-10 06:41:56 +00001581out:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001582 kfree(vol_args);
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001583 kfree(inherit);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001584 return ret;
1585}
1586
Li Zefan0caa1022010-12-20 16:30:25 +08001587static noinline int btrfs_ioctl_subvol_getflags(struct file *file,
1588 void __user *arg)
1589{
1590 struct inode *inode = fdentry(file)->d_inode;
1591 struct btrfs_root *root = BTRFS_I(inode)->root;
1592 int ret = 0;
1593 u64 flags = 0;
1594
Li Zefan33345d012011-04-20 10:31:50 +08001595 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID)
Li Zefan0caa1022010-12-20 16:30:25 +08001596 return -EINVAL;
1597
1598 down_read(&root->fs_info->subvol_sem);
1599 if (btrfs_root_readonly(root))
1600 flags |= BTRFS_SUBVOL_RDONLY;
1601 up_read(&root->fs_info->subvol_sem);
1602
1603 if (copy_to_user(arg, &flags, sizeof(flags)))
1604 ret = -EFAULT;
1605
1606 return ret;
1607}
1608
1609static noinline int btrfs_ioctl_subvol_setflags(struct file *file,
1610 void __user *arg)
1611{
1612 struct inode *inode = fdentry(file)->d_inode;
1613 struct btrfs_root *root = BTRFS_I(inode)->root;
1614 struct btrfs_trans_handle *trans;
1615 u64 root_flags;
1616 u64 flags;
1617 int ret = 0;
1618
Liu Bob9ca0662012-06-29 03:58:49 -06001619 ret = mnt_want_write_file(file);
1620 if (ret)
1621 goto out;
Li Zefan0caa1022010-12-20 16:30:25 +08001622
Liu Bob9ca0662012-06-29 03:58:49 -06001623 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
1624 ret = -EINVAL;
1625 goto out_drop_write;
1626 }
Li Zefan0caa1022010-12-20 16:30:25 +08001627
Liu Bob9ca0662012-06-29 03:58:49 -06001628 if (copy_from_user(&flags, arg, sizeof(flags))) {
1629 ret = -EFAULT;
1630 goto out_drop_write;
1631 }
Li Zefan0caa1022010-12-20 16:30:25 +08001632
Liu Bob9ca0662012-06-29 03:58:49 -06001633 if (flags & BTRFS_SUBVOL_CREATE_ASYNC) {
1634 ret = -EINVAL;
1635 goto out_drop_write;
1636 }
Li Zefan0caa1022010-12-20 16:30:25 +08001637
Liu Bob9ca0662012-06-29 03:58:49 -06001638 if (flags & ~BTRFS_SUBVOL_RDONLY) {
1639 ret = -EOPNOTSUPP;
1640 goto out_drop_write;
1641 }
Li Zefan0caa1022010-12-20 16:30:25 +08001642
Liu Bob9ca0662012-06-29 03:58:49 -06001643 if (!inode_owner_or_capable(inode)) {
1644 ret = -EACCES;
1645 goto out_drop_write;
1646 }
Li Zefanb4dc2b82011-02-16 06:06:34 +00001647
Li Zefan0caa1022010-12-20 16:30:25 +08001648 down_write(&root->fs_info->subvol_sem);
1649
1650 /* nothing to do */
1651 if (!!(flags & BTRFS_SUBVOL_RDONLY) == btrfs_root_readonly(root))
Liu Bob9ca0662012-06-29 03:58:49 -06001652 goto out_drop_sem;
Li Zefan0caa1022010-12-20 16:30:25 +08001653
1654 root_flags = btrfs_root_flags(&root->root_item);
1655 if (flags & BTRFS_SUBVOL_RDONLY)
1656 btrfs_set_root_flags(&root->root_item,
1657 root_flags | BTRFS_ROOT_SUBVOL_RDONLY);
1658 else
1659 btrfs_set_root_flags(&root->root_item,
1660 root_flags & ~BTRFS_ROOT_SUBVOL_RDONLY);
1661
1662 trans = btrfs_start_transaction(root, 1);
1663 if (IS_ERR(trans)) {
1664 ret = PTR_ERR(trans);
1665 goto out_reset;
1666 }
1667
Li Zefanb4dc2b82011-02-16 06:06:34 +00001668 ret = btrfs_update_root(trans, root->fs_info->tree_root,
Li Zefan0caa1022010-12-20 16:30:25 +08001669 &root->root_key, &root->root_item);
1670
1671 btrfs_commit_transaction(trans, root);
1672out_reset:
1673 if (ret)
1674 btrfs_set_root_flags(&root->root_item, root_flags);
Liu Bob9ca0662012-06-29 03:58:49 -06001675out_drop_sem:
Li Zefan0caa1022010-12-20 16:30:25 +08001676 up_write(&root->fs_info->subvol_sem);
Liu Bob9ca0662012-06-29 03:58:49 -06001677out_drop_write:
1678 mnt_drop_write_file(file);
1679out:
Li Zefan0caa1022010-12-20 16:30:25 +08001680 return ret;
1681}
1682
Yan, Zheng76dda932009-09-21 16:00:26 -04001683/*
1684 * helper to check if the subvolume references other subvolumes
1685 */
1686static noinline int may_destroy_subvol(struct btrfs_root *root)
1687{
1688 struct btrfs_path *path;
1689 struct btrfs_key key;
1690 int ret;
1691
1692 path = btrfs_alloc_path();
1693 if (!path)
1694 return -ENOMEM;
1695
1696 key.objectid = root->root_key.objectid;
1697 key.type = BTRFS_ROOT_REF_KEY;
1698 key.offset = (u64)-1;
1699
1700 ret = btrfs_search_slot(NULL, root->fs_info->tree_root,
1701 &key, path, 0, 0);
1702 if (ret < 0)
1703 goto out;
1704 BUG_ON(ret == 0);
1705
1706 ret = 0;
1707 if (path->slots[0] > 0) {
1708 path->slots[0]--;
1709 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1710 if (key.objectid == root->root_key.objectid &&
1711 key.type == BTRFS_ROOT_REF_KEY)
1712 ret = -ENOTEMPTY;
1713 }
1714out:
1715 btrfs_free_path(path);
1716 return ret;
1717}
1718
Chris Masonac8e9812010-02-28 15:39:26 -05001719static noinline int key_in_sk(struct btrfs_key *key,
1720 struct btrfs_ioctl_search_key *sk)
1721{
Chris Masonabc6e132010-03-18 12:10:08 -04001722 struct btrfs_key test;
1723 int ret;
1724
1725 test.objectid = sk->min_objectid;
1726 test.type = sk->min_type;
1727 test.offset = sk->min_offset;
1728
1729 ret = btrfs_comp_cpu_keys(key, &test);
1730 if (ret < 0)
Chris Masonac8e9812010-02-28 15:39:26 -05001731 return 0;
Chris Masonabc6e132010-03-18 12:10:08 -04001732
1733 test.objectid = sk->max_objectid;
1734 test.type = sk->max_type;
1735 test.offset = sk->max_offset;
1736
1737 ret = btrfs_comp_cpu_keys(key, &test);
1738 if (ret > 0)
Chris Masonac8e9812010-02-28 15:39:26 -05001739 return 0;
1740 return 1;
1741}
1742
1743static noinline int copy_to_sk(struct btrfs_root *root,
1744 struct btrfs_path *path,
1745 struct btrfs_key *key,
1746 struct btrfs_ioctl_search_key *sk,
1747 char *buf,
1748 unsigned long *sk_offset,
1749 int *num_found)
1750{
1751 u64 found_transid;
1752 struct extent_buffer *leaf;
1753 struct btrfs_ioctl_search_header sh;
1754 unsigned long item_off;
1755 unsigned long item_len;
1756 int nritems;
1757 int i;
1758 int slot;
Chris Masonac8e9812010-02-28 15:39:26 -05001759 int ret = 0;
1760
1761 leaf = path->nodes[0];
1762 slot = path->slots[0];
1763 nritems = btrfs_header_nritems(leaf);
1764
1765 if (btrfs_header_generation(leaf) > sk->max_transid) {
1766 i = nritems;
1767 goto advance_key;
1768 }
1769 found_transid = btrfs_header_generation(leaf);
1770
1771 for (i = slot; i < nritems; i++) {
1772 item_off = btrfs_item_ptr_offset(leaf, i);
1773 item_len = btrfs_item_size_nr(leaf, i);
1774
1775 if (item_len > BTRFS_SEARCH_ARGS_BUFSIZE)
1776 item_len = 0;
1777
1778 if (sizeof(sh) + item_len + *sk_offset >
1779 BTRFS_SEARCH_ARGS_BUFSIZE) {
1780 ret = 1;
1781 goto overflow;
1782 }
1783
1784 btrfs_item_key_to_cpu(leaf, key, i);
1785 if (!key_in_sk(key, sk))
1786 continue;
1787
1788 sh.objectid = key->objectid;
1789 sh.offset = key->offset;
1790 sh.type = key->type;
1791 sh.len = item_len;
1792 sh.transid = found_transid;
1793
1794 /* copy search result header */
1795 memcpy(buf + *sk_offset, &sh, sizeof(sh));
1796 *sk_offset += sizeof(sh);
1797
1798 if (item_len) {
1799 char *p = buf + *sk_offset;
1800 /* copy the item */
1801 read_extent_buffer(leaf, p,
1802 item_off, item_len);
1803 *sk_offset += item_len;
Chris Masonac8e9812010-02-28 15:39:26 -05001804 }
Hugo Millse2156862011-05-14 17:43:41 +00001805 (*num_found)++;
Chris Masonac8e9812010-02-28 15:39:26 -05001806
1807 if (*num_found >= sk->nr_items)
1808 break;
1809 }
1810advance_key:
Chris Masonac8e9812010-02-28 15:39:26 -05001811 ret = 0;
Chris Masonabc6e132010-03-18 12:10:08 -04001812 if (key->offset < (u64)-1 && key->offset < sk->max_offset)
1813 key->offset++;
1814 else if (key->type < (u8)-1 && key->type < sk->max_type) {
1815 key->offset = 0;
1816 key->type++;
1817 } else if (key->objectid < (u64)-1 && key->objectid < sk->max_objectid) {
1818 key->offset = 0;
1819 key->type = 0;
1820 key->objectid++;
1821 } else
1822 ret = 1;
Chris Masonac8e9812010-02-28 15:39:26 -05001823overflow:
Chris Masonac8e9812010-02-28 15:39:26 -05001824 return ret;
1825}
1826
1827static noinline int search_ioctl(struct inode *inode,
1828 struct btrfs_ioctl_search_args *args)
1829{
1830 struct btrfs_root *root;
1831 struct btrfs_key key;
1832 struct btrfs_key max_key;
1833 struct btrfs_path *path;
1834 struct btrfs_ioctl_search_key *sk = &args->key;
1835 struct btrfs_fs_info *info = BTRFS_I(inode)->root->fs_info;
1836 int ret;
1837 int num_found = 0;
1838 unsigned long sk_offset = 0;
1839
1840 path = btrfs_alloc_path();
1841 if (!path)
1842 return -ENOMEM;
1843
1844 if (sk->tree_id == 0) {
1845 /* search the root of the inode that was passed */
1846 root = BTRFS_I(inode)->root;
1847 } else {
1848 key.objectid = sk->tree_id;
1849 key.type = BTRFS_ROOT_ITEM_KEY;
1850 key.offset = (u64)-1;
1851 root = btrfs_read_fs_root_no_name(info, &key);
1852 if (IS_ERR(root)) {
1853 printk(KERN_ERR "could not find root %llu\n",
1854 sk->tree_id);
1855 btrfs_free_path(path);
1856 return -ENOENT;
1857 }
1858 }
1859
1860 key.objectid = sk->min_objectid;
1861 key.type = sk->min_type;
1862 key.offset = sk->min_offset;
1863
1864 max_key.objectid = sk->max_objectid;
1865 max_key.type = sk->max_type;
1866 max_key.offset = sk->max_offset;
1867
1868 path->keep_locks = 1;
1869
1870 while(1) {
Eric Sandeende78b512013-01-31 18:21:12 +00001871 ret = btrfs_search_forward(root, &key, &max_key, path,
Chris Masonac8e9812010-02-28 15:39:26 -05001872 sk->min_transid);
1873 if (ret != 0) {
1874 if (ret > 0)
1875 ret = 0;
1876 goto err;
1877 }
1878 ret = copy_to_sk(root, path, &key, sk, args->buf,
1879 &sk_offset, &num_found);
David Sterbab3b4aa72011-04-21 01:20:15 +02001880 btrfs_release_path(path);
Chris Masonac8e9812010-02-28 15:39:26 -05001881 if (ret || num_found >= sk->nr_items)
1882 break;
1883
1884 }
1885 ret = 0;
1886err:
1887 sk->nr_items = num_found;
1888 btrfs_free_path(path);
1889 return ret;
1890}
1891
1892static noinline int btrfs_ioctl_tree_search(struct file *file,
1893 void __user *argp)
1894{
1895 struct btrfs_ioctl_search_args *args;
1896 struct inode *inode;
1897 int ret;
1898
1899 if (!capable(CAP_SYS_ADMIN))
1900 return -EPERM;
1901
Julia Lawall2354d082010-10-29 15:14:18 -04001902 args = memdup_user(argp, sizeof(*args));
1903 if (IS_ERR(args))
1904 return PTR_ERR(args);
Chris Masonac8e9812010-02-28 15:39:26 -05001905
Chris Masonac8e9812010-02-28 15:39:26 -05001906 inode = fdentry(file)->d_inode;
1907 ret = search_ioctl(inode, args);
1908 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
1909 ret = -EFAULT;
1910 kfree(args);
1911 return ret;
1912}
1913
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001914/*
Chris Masonac8e9812010-02-28 15:39:26 -05001915 * Search INODE_REFs to identify path name of 'dirid' directory
1916 * in a 'tree_id' tree. and sets path name to 'name'.
1917 */
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001918static noinline int btrfs_search_path_in_tree(struct btrfs_fs_info *info,
1919 u64 tree_id, u64 dirid, char *name)
1920{
1921 struct btrfs_root *root;
1922 struct btrfs_key key;
Chris Masonac8e9812010-02-28 15:39:26 -05001923 char *ptr;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001924 int ret = -1;
1925 int slot;
1926 int len;
1927 int total_len = 0;
1928 struct btrfs_inode_ref *iref;
1929 struct extent_buffer *l;
1930 struct btrfs_path *path;
1931
1932 if (dirid == BTRFS_FIRST_FREE_OBJECTID) {
1933 name[0]='\0';
1934 return 0;
1935 }
1936
1937 path = btrfs_alloc_path();
1938 if (!path)
1939 return -ENOMEM;
1940
Chris Masonac8e9812010-02-28 15:39:26 -05001941 ptr = &name[BTRFS_INO_LOOKUP_PATH_MAX];
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001942
1943 key.objectid = tree_id;
1944 key.type = BTRFS_ROOT_ITEM_KEY;
1945 key.offset = (u64)-1;
1946 root = btrfs_read_fs_root_no_name(info, &key);
1947 if (IS_ERR(root)) {
1948 printk(KERN_ERR "could not find root %llu\n", tree_id);
Chris Mason8ad6fca2010-03-18 12:23:10 -04001949 ret = -ENOENT;
1950 goto out;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001951 }
1952
1953 key.objectid = dirid;
1954 key.type = BTRFS_INODE_REF_KEY;
Chris Mason8ad6fca2010-03-18 12:23:10 -04001955 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001956
1957 while(1) {
1958 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1959 if (ret < 0)
1960 goto out;
1961
1962 l = path->nodes[0];
1963 slot = path->slots[0];
Chris Mason8ad6fca2010-03-18 12:23:10 -04001964 if (ret > 0 && slot > 0)
1965 slot--;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001966 btrfs_item_key_to_cpu(l, &key, slot);
1967
1968 if (ret > 0 && (key.objectid != dirid ||
Chris Masonac8e9812010-02-28 15:39:26 -05001969 key.type != BTRFS_INODE_REF_KEY)) {
1970 ret = -ENOENT;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001971 goto out;
Chris Masonac8e9812010-02-28 15:39:26 -05001972 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001973
1974 iref = btrfs_item_ptr(l, slot, struct btrfs_inode_ref);
1975 len = btrfs_inode_ref_name_len(l, iref);
1976 ptr -= len + 1;
1977 total_len += len + 1;
Chris Masonac8e9812010-02-28 15:39:26 -05001978 if (ptr < name)
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001979 goto out;
1980
1981 *(ptr + len) = '/';
1982 read_extent_buffer(l, ptr,(unsigned long)(iref + 1), len);
1983
1984 if (key.offset == BTRFS_FIRST_FREE_OBJECTID)
1985 break;
1986
David Sterbab3b4aa72011-04-21 01:20:15 +02001987 btrfs_release_path(path);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001988 key.objectid = key.offset;
Chris Mason8ad6fca2010-03-18 12:23:10 -04001989 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001990 dirid = key.objectid;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001991 }
Chris Masonac8e9812010-02-28 15:39:26 -05001992 if (ptr < name)
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001993 goto out;
Li Zefan77906a502011-07-14 03:16:00 +00001994 memmove(name, ptr, total_len);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001995 name[total_len]='\0';
1996 ret = 0;
1997out:
1998 btrfs_free_path(path);
Chris Masonac8e9812010-02-28 15:39:26 -05001999 return ret;
2000}
2001
2002static noinline int btrfs_ioctl_ino_lookup(struct file *file,
2003 void __user *argp)
2004{
2005 struct btrfs_ioctl_ino_lookup_args *args;
2006 struct inode *inode;
2007 int ret;
2008
2009 if (!capable(CAP_SYS_ADMIN))
2010 return -EPERM;
2011
Julia Lawall2354d082010-10-29 15:14:18 -04002012 args = memdup_user(argp, sizeof(*args));
2013 if (IS_ERR(args))
2014 return PTR_ERR(args);
Dan Carpenterc2b96922010-03-20 11:24:15 +00002015
Chris Masonac8e9812010-02-28 15:39:26 -05002016 inode = fdentry(file)->d_inode;
2017
Chris Mason1b53ac42010-03-18 12:17:05 -04002018 if (args->treeid == 0)
2019 args->treeid = BTRFS_I(inode)->root->root_key.objectid;
2020
Chris Masonac8e9812010-02-28 15:39:26 -05002021 ret = btrfs_search_path_in_tree(BTRFS_I(inode)->root->fs_info,
2022 args->treeid, args->objectid,
2023 args->name);
2024
2025 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
2026 ret = -EFAULT;
2027
2028 kfree(args);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002029 return ret;
2030}
2031
Yan, Zheng76dda932009-09-21 16:00:26 -04002032static noinline int btrfs_ioctl_snap_destroy(struct file *file,
2033 void __user *arg)
2034{
2035 struct dentry *parent = fdentry(file);
2036 struct dentry *dentry;
2037 struct inode *dir = parent->d_inode;
2038 struct inode *inode;
2039 struct btrfs_root *root = BTRFS_I(dir)->root;
2040 struct btrfs_root *dest = NULL;
2041 struct btrfs_ioctl_vol_args *vol_args;
2042 struct btrfs_trans_handle *trans;
2043 int namelen;
2044 int ret;
2045 int err = 0;
2046
Yan, Zheng76dda932009-09-21 16:00:26 -04002047 vol_args = memdup_user(arg, sizeof(*vol_args));
2048 if (IS_ERR(vol_args))
2049 return PTR_ERR(vol_args);
2050
2051 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
2052 namelen = strlen(vol_args->name);
2053 if (strchr(vol_args->name, '/') ||
2054 strncmp(vol_args->name, "..", namelen) == 0) {
2055 err = -EINVAL;
2056 goto out;
2057 }
2058
Al Viroa561be72011-11-23 11:57:51 -05002059 err = mnt_want_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04002060 if (err)
2061 goto out;
2062
2063 mutex_lock_nested(&dir->i_mutex, I_MUTEX_PARENT);
2064 dentry = lookup_one_len(vol_args->name, parent, namelen);
2065 if (IS_ERR(dentry)) {
2066 err = PTR_ERR(dentry);
2067 goto out_unlock_dir;
2068 }
2069
2070 if (!dentry->d_inode) {
2071 err = -ENOENT;
2072 goto out_dput;
2073 }
2074
2075 inode = dentry->d_inode;
Sage Weil4260f7c2010-10-29 15:46:43 -04002076 dest = BTRFS_I(inode)->root;
2077 if (!capable(CAP_SYS_ADMIN)){
2078 /*
2079 * Regular user. Only allow this with a special mount
2080 * option, when the user has write+exec access to the
2081 * subvol root, and when rmdir(2) would have been
2082 * allowed.
2083 *
2084 * Note that this is _not_ check that the subvol is
2085 * empty or doesn't contain data that we wouldn't
2086 * otherwise be able to delete.
2087 *
2088 * Users who want to delete empty subvols should try
2089 * rmdir(2).
2090 */
2091 err = -EPERM;
2092 if (!btrfs_test_opt(root, USER_SUBVOL_RM_ALLOWED))
2093 goto out_dput;
2094
2095 /*
2096 * Do not allow deletion if the parent dir is the same
2097 * as the dir to be deleted. That means the ioctl
2098 * must be called on the dentry referencing the root
2099 * of the subvol, not a random directory contained
2100 * within it.
2101 */
2102 err = -EINVAL;
2103 if (root == dest)
2104 goto out_dput;
2105
2106 err = inode_permission(inode, MAY_WRITE | MAY_EXEC);
2107 if (err)
2108 goto out_dput;
Sage Weil4260f7c2010-10-29 15:46:43 -04002109 }
2110
Miao Xie5c39da52012-10-22 11:39:53 +00002111 /* check if subvolume may be deleted by a user */
2112 err = btrfs_may_delete(dir, dentry, 1);
2113 if (err)
2114 goto out_dput;
2115
Li Zefan33345d012011-04-20 10:31:50 +08002116 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
Yan, Zheng76dda932009-09-21 16:00:26 -04002117 err = -EINVAL;
2118 goto out_dput;
2119 }
2120
Yan, Zheng76dda932009-09-21 16:00:26 -04002121 mutex_lock(&inode->i_mutex);
2122 err = d_invalidate(dentry);
2123 if (err)
2124 goto out_unlock;
2125
2126 down_write(&root->fs_info->subvol_sem);
2127
2128 err = may_destroy_subvol(dest);
2129 if (err)
2130 goto out_up_write;
2131
Yan, Zhenga22285a2010-05-16 10:48:46 -04002132 trans = btrfs_start_transaction(root, 0);
2133 if (IS_ERR(trans)) {
2134 err = PTR_ERR(trans);
Dan Carpenterd3270992010-05-29 09:46:47 +00002135 goto out_up_write;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002136 }
2137 trans->block_rsv = &root->fs_info->global_block_rsv;
2138
Yan, Zheng76dda932009-09-21 16:00:26 -04002139 ret = btrfs_unlink_subvol(trans, root, dir,
2140 dest->root_key.objectid,
2141 dentry->d_name.name,
2142 dentry->d_name.len);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002143 if (ret) {
2144 err = ret;
2145 btrfs_abort_transaction(trans, root, ret);
2146 goto out_end_trans;
2147 }
Yan, Zheng76dda932009-09-21 16:00:26 -04002148
2149 btrfs_record_root_in_trans(trans, dest);
2150
2151 memset(&dest->root_item.drop_progress, 0,
2152 sizeof(dest->root_item.drop_progress));
2153 dest->root_item.drop_level = 0;
2154 btrfs_set_root_refs(&dest->root_item, 0);
2155
Yan, Zhengd68fc572010-05-16 10:49:58 -04002156 if (!xchg(&dest->orphan_item_inserted, 1)) {
2157 ret = btrfs_insert_orphan_item(trans,
2158 root->fs_info->tree_root,
2159 dest->root_key.objectid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002160 if (ret) {
2161 btrfs_abort_transaction(trans, root, ret);
2162 err = ret;
2163 goto out_end_trans;
2164 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04002165 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002166out_end_trans:
Sage Weil531cb132010-10-29 15:41:32 -04002167 ret = btrfs_end_transaction(trans, root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002168 if (ret && !err)
2169 err = ret;
Yan, Zheng76dda932009-09-21 16:00:26 -04002170 inode->i_flags |= S_DEAD;
2171out_up_write:
2172 up_write(&root->fs_info->subvol_sem);
2173out_unlock:
2174 mutex_unlock(&inode->i_mutex);
2175 if (!err) {
Yan, Zhengefefb142009-10-09 09:25:16 -04002176 shrink_dcache_sb(root->fs_info->sb);
Yan, Zheng76dda932009-09-21 16:00:26 -04002177 btrfs_invalidate_inodes(dest);
2178 d_delete(dentry);
Liu Bofa6ac872013-02-20 14:10:23 +00002179
2180 /* the last ref */
2181 if (dest->cache_inode) {
2182 iput(dest->cache_inode);
2183 dest->cache_inode = NULL;
2184 }
Yan, Zheng76dda932009-09-21 16:00:26 -04002185 }
2186out_dput:
2187 dput(dentry);
2188out_unlock_dir:
2189 mutex_unlock(&dir->i_mutex);
Al Viro2a79f172011-12-09 08:06:57 -05002190 mnt_drop_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04002191out:
2192 kfree(vol_args);
2193 return err;
2194}
2195
Chris Mason1e701a32010-03-11 09:42:04 -05002196static int btrfs_ioctl_defrag(struct file *file, void __user *argp)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002197{
2198 struct inode *inode = fdentry(file)->d_inode;
2199 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason1e701a32010-03-11 09:42:04 -05002200 struct btrfs_ioctl_defrag_range_args *range;
Yan Zhengc146afa2008-11-12 14:34:12 -05002201 int ret;
2202
Ilya Dryomov25122d12013-01-20 15:57:57 +02002203 ret = mnt_want_write_file(file);
2204 if (ret)
2205 return ret;
Li Zefanb83cc962010-12-20 16:04:08 +08002206
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002207 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
2208 1)) {
2209 pr_info("btrfs: dev add/delete/balance/replace/resize operation in progress\n");
Ilya Dryomov25122d12013-01-20 15:57:57 +02002210 mnt_drop_write_file(file);
Ilya Dryomov2c0c9da2013-01-20 15:57:57 +02002211 return -EINVAL;
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002212 }
Ilya Dryomov25122d12013-01-20 15:57:57 +02002213
2214 if (btrfs_root_readonly(root)) {
2215 ret = -EROFS;
2216 goto out;
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002217 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002218
2219 switch (inode->i_mode & S_IFMT) {
2220 case S_IFDIR:
Chris Masone441d542009-01-05 16:57:23 -05002221 if (!capable(CAP_SYS_ADMIN)) {
2222 ret = -EPERM;
2223 goto out;
2224 }
Eric Sandeende78b512013-01-31 18:21:12 +00002225 ret = btrfs_defrag_root(root);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04002226 if (ret)
2227 goto out;
Eric Sandeende78b512013-01-31 18:21:12 +00002228 ret = btrfs_defrag_root(root->fs_info->extent_root);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002229 break;
2230 case S_IFREG:
Chris Masone441d542009-01-05 16:57:23 -05002231 if (!(file->f_mode & FMODE_WRITE)) {
2232 ret = -EINVAL;
2233 goto out;
2234 }
Chris Mason1e701a32010-03-11 09:42:04 -05002235
2236 range = kzalloc(sizeof(*range), GFP_KERNEL);
2237 if (!range) {
2238 ret = -ENOMEM;
2239 goto out;
2240 }
2241
2242 if (argp) {
2243 if (copy_from_user(range, argp,
2244 sizeof(*range))) {
2245 ret = -EFAULT;
2246 kfree(range);
Dan Carpenter683be162010-03-20 11:24:48 +00002247 goto out;
Chris Mason1e701a32010-03-11 09:42:04 -05002248 }
2249 /* compression requires us to start the IO */
2250 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
2251 range->flags |= BTRFS_DEFRAG_RANGE_START_IO;
2252 range->extent_thresh = (u32)-1;
2253 }
2254 } else {
2255 /* the rest are all set to zero by kzalloc */
2256 range->len = (u64)-1;
2257 }
Chris Mason4cb53002011-05-24 15:35:30 -04002258 ret = btrfs_defrag_file(fdentry(file)->d_inode, file,
2259 range, 0, 0);
2260 if (ret > 0)
2261 ret = 0;
Chris Mason1e701a32010-03-11 09:42:04 -05002262 kfree(range);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002263 break;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04002264 default:
2265 ret = -EINVAL;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002266 }
Chris Masone441d542009-01-05 16:57:23 -05002267out:
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002268 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
Ilya Dryomov25122d12013-01-20 15:57:57 +02002269 mnt_drop_write_file(file);
Chris Masone441d542009-01-05 16:57:23 -05002270 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002271}
2272
Christoph Hellwigb2950862008-12-02 09:54:17 -05002273static long btrfs_ioctl_add_dev(struct btrfs_root *root, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002274{
2275 struct btrfs_ioctl_vol_args *vol_args;
2276 int ret;
2277
Chris Masone441d542009-01-05 16:57:23 -05002278 if (!capable(CAP_SYS_ADMIN))
2279 return -EPERM;
2280
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002281 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
2282 1)) {
2283 pr_info("btrfs: dev add/delete/balance/replace/resize operation in progress\n");
Ilya Dryomov2c0c9da2013-01-20 15:57:57 +02002284 return -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002285 }
2286
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002287 mutex_lock(&root->fs_info->volume_mutex);
Li Zefandae7b662009-04-08 15:06:54 +08002288 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002289 if (IS_ERR(vol_args)) {
2290 ret = PTR_ERR(vol_args);
2291 goto out;
2292 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002293
Mark Fasheh5516e592008-07-24 12:20:14 -04002294 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002295 ret = btrfs_init_new_device(root, vol_args->name);
2296
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002297 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002298out:
2299 mutex_unlock(&root->fs_info->volume_mutex);
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002300 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002301 return ret;
2302}
2303
Miao Xieda249272012-11-26 08:44:50 +00002304static long btrfs_ioctl_rm_dev(struct file *file, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002305{
Miao Xieda249272012-11-26 08:44:50 +00002306 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002307 struct btrfs_ioctl_vol_args *vol_args;
2308 int ret;
2309
Chris Masone441d542009-01-05 16:57:23 -05002310 if (!capable(CAP_SYS_ADMIN))
2311 return -EPERM;
2312
Miao Xieda249272012-11-26 08:44:50 +00002313 ret = mnt_want_write_file(file);
2314 if (ret)
2315 return ret;
Yan Zhengc146afa2008-11-12 14:34:12 -05002316
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002317 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
2318 1)) {
2319 pr_info("btrfs: dev add/delete/balance/replace/resize operation in progress\n");
Miao Xieda249272012-11-26 08:44:50 +00002320 mnt_drop_write_file(file);
Ilya Dryomov2c0c9da2013-01-20 15:57:57 +02002321 return -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002322 }
2323
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002324 mutex_lock(&root->fs_info->volume_mutex);
Li Zefandae7b662009-04-08 15:06:54 +08002325 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002326 if (IS_ERR(vol_args)) {
2327 ret = PTR_ERR(vol_args);
2328 goto out;
2329 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002330
Mark Fasheh5516e592008-07-24 12:20:14 -04002331 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002332 ret = btrfs_rm_device(root, vol_args->name);
2333
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002334 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002335out:
2336 mutex_unlock(&root->fs_info->volume_mutex);
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002337 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
Ilya Dryomov4ac20c72013-01-20 15:57:57 +02002338 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002339 return ret;
2340}
2341
Jan Schmidt475f6382011-03-11 15:41:01 +01002342static long btrfs_ioctl_fs_info(struct btrfs_root *root, void __user *arg)
2343{
Li Zefan027ed2f2011-06-08 08:27:56 +00002344 struct btrfs_ioctl_fs_info_args *fi_args;
Jan Schmidt475f6382011-03-11 15:41:01 +01002345 struct btrfs_device *device;
2346 struct btrfs_device *next;
2347 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
Li Zefan027ed2f2011-06-08 08:27:56 +00002348 int ret = 0;
Jan Schmidt475f6382011-03-11 15:41:01 +01002349
2350 if (!capable(CAP_SYS_ADMIN))
2351 return -EPERM;
2352
Li Zefan027ed2f2011-06-08 08:27:56 +00002353 fi_args = kzalloc(sizeof(*fi_args), GFP_KERNEL);
2354 if (!fi_args)
2355 return -ENOMEM;
2356
2357 fi_args->num_devices = fs_devices->num_devices;
2358 memcpy(&fi_args->fsid, root->fs_info->fsid, sizeof(fi_args->fsid));
Jan Schmidt475f6382011-03-11 15:41:01 +01002359
2360 mutex_lock(&fs_devices->device_list_mutex);
2361 list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) {
Li Zefan027ed2f2011-06-08 08:27:56 +00002362 if (device->devid > fi_args->max_id)
2363 fi_args->max_id = device->devid;
Jan Schmidt475f6382011-03-11 15:41:01 +01002364 }
2365 mutex_unlock(&fs_devices->device_list_mutex);
2366
Li Zefan027ed2f2011-06-08 08:27:56 +00002367 if (copy_to_user(arg, fi_args, sizeof(*fi_args)))
2368 ret = -EFAULT;
Jan Schmidt475f6382011-03-11 15:41:01 +01002369
Li Zefan027ed2f2011-06-08 08:27:56 +00002370 kfree(fi_args);
2371 return ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01002372}
2373
2374static long btrfs_ioctl_dev_info(struct btrfs_root *root, void __user *arg)
2375{
2376 struct btrfs_ioctl_dev_info_args *di_args;
2377 struct btrfs_device *dev;
2378 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
2379 int ret = 0;
2380 char *s_uuid = NULL;
2381 char empty_uuid[BTRFS_UUID_SIZE] = {0};
2382
2383 if (!capable(CAP_SYS_ADMIN))
2384 return -EPERM;
2385
2386 di_args = memdup_user(arg, sizeof(*di_args));
2387 if (IS_ERR(di_args))
2388 return PTR_ERR(di_args);
2389
2390 if (memcmp(empty_uuid, di_args->uuid, BTRFS_UUID_SIZE) != 0)
2391 s_uuid = di_args->uuid;
2392
2393 mutex_lock(&fs_devices->device_list_mutex);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01002394 dev = btrfs_find_device(root->fs_info, di_args->devid, s_uuid, NULL);
Jan Schmidt475f6382011-03-11 15:41:01 +01002395 mutex_unlock(&fs_devices->device_list_mutex);
2396
2397 if (!dev) {
2398 ret = -ENODEV;
2399 goto out;
2400 }
2401
2402 di_args->devid = dev->devid;
2403 di_args->bytes_used = dev->bytes_used;
2404 di_args->total_bytes = dev->total_bytes;
2405 memcpy(di_args->uuid, dev->uuid, sizeof(di_args->uuid));
Jim Meyeringa27202f2012-04-26 18:36:56 +02002406 if (dev->name) {
Josef Bacik606686e2012-06-04 14:03:51 -04002407 struct rcu_string *name;
2408
2409 rcu_read_lock();
2410 name = rcu_dereference(dev->name);
2411 strncpy(di_args->path, name->str, sizeof(di_args->path));
2412 rcu_read_unlock();
Jim Meyeringa27202f2012-04-26 18:36:56 +02002413 di_args->path[sizeof(di_args->path) - 1] = 0;
2414 } else {
Stefan Behrens99ba55a2012-03-19 16:17:22 +01002415 di_args->path[0] = '\0';
Jim Meyeringa27202f2012-04-26 18:36:56 +02002416 }
Jan Schmidt475f6382011-03-11 15:41:01 +01002417
2418out:
2419 if (ret == 0 && copy_to_user(arg, di_args, sizeof(*di_args)))
2420 ret = -EFAULT;
2421
2422 kfree(di_args);
2423 return ret;
2424}
2425
Yan, Zheng76dda932009-09-21 16:00:26 -04002426static noinline long btrfs_ioctl_clone(struct file *file, unsigned long srcfd,
2427 u64 off, u64 olen, u64 destoff)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002428{
2429 struct inode *inode = fdentry(file)->d_inode;
2430 struct btrfs_root *root = BTRFS_I(inode)->root;
Al Viro2903ff02012-08-28 12:52:22 -04002431 struct fd src_file;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002432 struct inode *src;
2433 struct btrfs_trans_handle *trans;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002434 struct btrfs_path *path;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002435 struct extent_buffer *leaf;
Yan Zhengae01a0a2008-08-04 23:23:47 -04002436 char *buf;
2437 struct btrfs_key key;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002438 u32 nritems;
2439 int slot;
Yan Zhengae01a0a2008-08-04 23:23:47 -04002440 int ret;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002441 u64 len = olen;
2442 u64 bs = root->fs_info->sb->s_blocksize;
Chris Masond20f7042008-12-08 16:58:54 -05002443
Sage Weilc5c9cd42008-11-12 14:32:25 -05002444 /*
2445 * TODO:
2446 * - split compressed inline extents. annoying: we need to
2447 * decompress into destination's address_space (the file offset
2448 * may change, so source mapping won't do), then recompress (or
2449 * otherwise reinsert) a subrange.
2450 * - allow ranges within the same file to be cloned (provided
2451 * they don't overlap)?
2452 */
2453
Chris Masone441d542009-01-05 16:57:23 -05002454 /* the destination must be opened for writing */
Dan Rosenberg2ebc3462010-07-19 16:58:20 -04002455 if (!(file->f_mode & FMODE_WRITE) || (file->f_flags & O_APPEND))
Chris Masone441d542009-01-05 16:57:23 -05002456 return -EINVAL;
2457
Li Zefanb83cc962010-12-20 16:04:08 +08002458 if (btrfs_root_readonly(root))
2459 return -EROFS;
2460
Al Viroa561be72011-11-23 11:57:51 -05002461 ret = mnt_want_write_file(file);
Yan Zhengc146afa2008-11-12 14:34:12 -05002462 if (ret)
2463 return ret;
2464
Al Viro2903ff02012-08-28 12:52:22 -04002465 src_file = fdget(srcfd);
2466 if (!src_file.file) {
Yan Zhengab67b7c2008-12-19 10:58:39 -05002467 ret = -EBADF;
2468 goto out_drop_write;
2469 }
Dan Rosenberg5dc64162010-05-15 11:27:37 -04002470
David Sterba362a20c2011-08-01 18:11:57 +02002471 ret = -EXDEV;
Al Viro2903ff02012-08-28 12:52:22 -04002472 if (src_file.file->f_path.mnt != file->f_path.mnt)
David Sterba362a20c2011-08-01 18:11:57 +02002473 goto out_fput;
2474
Al Viro2903ff02012-08-28 12:52:22 -04002475 src = src_file.file->f_dentry->d_inode;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002476
Sage Weilc5c9cd42008-11-12 14:32:25 -05002477 ret = -EINVAL;
2478 if (src == inode)
2479 goto out_fput;
2480
Dan Rosenberg5dc64162010-05-15 11:27:37 -04002481 /* the src must be open for reading */
Al Viro2903ff02012-08-28 12:52:22 -04002482 if (!(src_file.file->f_mode & FMODE_READ))
Dan Rosenberg5dc64162010-05-15 11:27:37 -04002483 goto out_fput;
2484
Li Zefan0e7b8242011-09-18 10:20:46 -04002485 /* don't make the dst file partly checksummed */
2486 if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
2487 (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM))
2488 goto out_fput;
2489
Yan Zhengae01a0a2008-08-04 23:23:47 -04002490 ret = -EISDIR;
2491 if (S_ISDIR(src->i_mode) || S_ISDIR(inode->i_mode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002492 goto out_fput;
2493
Yan Zhengae01a0a2008-08-04 23:23:47 -04002494 ret = -EXDEV;
David Sterba362a20c2011-08-01 18:11:57 +02002495 if (src->i_sb != inode->i_sb)
Yan Zhengae01a0a2008-08-04 23:23:47 -04002496 goto out_fput;
2497
2498 ret = -ENOMEM;
2499 buf = vmalloc(btrfs_level_size(root, 0));
2500 if (!buf)
2501 goto out_fput;
2502
2503 path = btrfs_alloc_path();
2504 if (!path) {
2505 vfree(buf);
2506 goto out_fput;
2507 }
2508 path->reada = 2;
2509
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002510 if (inode < src) {
Sage Weilfccdae42010-10-29 15:37:33 -04002511 mutex_lock_nested(&inode->i_mutex, I_MUTEX_PARENT);
2512 mutex_lock_nested(&src->i_mutex, I_MUTEX_CHILD);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002513 } else {
Sage Weilfccdae42010-10-29 15:37:33 -04002514 mutex_lock_nested(&src->i_mutex, I_MUTEX_PARENT);
2515 mutex_lock_nested(&inode->i_mutex, I_MUTEX_CHILD);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002516 }
2517
Sage Weilc5c9cd42008-11-12 14:32:25 -05002518 /* determine range to clone */
2519 ret = -EINVAL;
Dan Rosenberg2ebc3462010-07-19 16:58:20 -04002520 if (off + len > src->i_size || off + len < off)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002521 goto out_unlock;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002522 if (len == 0)
2523 olen = len = src->i_size - off;
2524 /* if we extend to eof, continue to block boundary */
2525 if (off + len == src->i_size)
Li Zefan2a6b8da2010-11-19 01:36:10 +00002526 len = ALIGN(src->i_size, bs) - off;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002527
2528 /* verify the end result is block aligned */
Li Zefan2a6b8da2010-11-19 01:36:10 +00002529 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs) ||
2530 !IS_ALIGNED(destoff, bs))
Sage Weilc5c9cd42008-11-12 14:32:25 -05002531 goto out_unlock;
2532
Li Zefand525e8a2011-09-11 10:52:25 -04002533 if (destoff > inode->i_size) {
2534 ret = btrfs_cont_expand(inode, inode->i_size, destoff);
2535 if (ret)
2536 goto out_unlock;
2537 }
2538
Li Zefan71ef0782011-09-18 10:20:46 -04002539 /* truncate page cache pages from target inode range */
2540 truncate_inode_pages_range(&inode->i_data, destoff,
2541 PAGE_CACHE_ALIGN(destoff + len) - 1);
2542
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002543 /* do any pending delalloc/csum calc on src, one way or
2544 another, and lock file content */
2545 while (1) {
Zheng Yan31840ae2008-09-23 13:14:14 -04002546 struct btrfs_ordered_extent *ordered;
Liu Boaa42ffd2012-09-18 03:52:23 -06002547 lock_extent(&BTRFS_I(src)->io_tree, off, off + len - 1);
2548 ordered = btrfs_lookup_first_ordered_extent(src, off + len - 1);
Sage Weil9a019192010-10-29 15:37:33 -04002549 if (!ordered &&
Liu Boaa42ffd2012-09-18 03:52:23 -06002550 !test_range_bit(&BTRFS_I(src)->io_tree, off, off + len - 1,
2551 EXTENT_DELALLOC, 0, NULL))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002552 break;
Liu Boaa42ffd2012-09-18 03:52:23 -06002553 unlock_extent(&BTRFS_I(src)->io_tree, off, off + len - 1);
Yan Zhengae01a0a2008-08-04 23:23:47 -04002554 if (ordered)
2555 btrfs_put_ordered_extent(ordered);
Sage Weil9a019192010-10-29 15:37:33 -04002556 btrfs_wait_ordered_range(src, off, len);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002557 }
2558
Sage Weilc5c9cd42008-11-12 14:32:25 -05002559 /* clone data */
Li Zefan33345d012011-04-20 10:31:50 +08002560 key.objectid = btrfs_ino(src);
Yan Zhengae01a0a2008-08-04 23:23:47 -04002561 key.type = BTRFS_EXTENT_DATA_KEY;
2562 key.offset = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002563
2564 while (1) {
2565 /*
2566 * note the key will change type as we walk through the
2567 * tree.
2568 */
David Sterba362a20c2011-08-01 18:11:57 +02002569 ret = btrfs_search_slot(NULL, BTRFS_I(src)->root, &key, path,
2570 0, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002571 if (ret < 0)
2572 goto out;
2573
Yan Zhengae01a0a2008-08-04 23:23:47 -04002574 nritems = btrfs_header_nritems(path->nodes[0]);
2575 if (path->slots[0] >= nritems) {
David Sterba362a20c2011-08-01 18:11:57 +02002576 ret = btrfs_next_leaf(BTRFS_I(src)->root, path);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002577 if (ret < 0)
2578 goto out;
2579 if (ret > 0)
2580 break;
Yan Zhengae01a0a2008-08-04 23:23:47 -04002581 nritems = btrfs_header_nritems(path->nodes[0]);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002582 }
2583 leaf = path->nodes[0];
2584 slot = path->slots[0];
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002585
Yan Zhengae01a0a2008-08-04 23:23:47 -04002586 btrfs_item_key_to_cpu(leaf, &key, slot);
Chris Masond20f7042008-12-08 16:58:54 -05002587 if (btrfs_key_type(&key) > BTRFS_EXTENT_DATA_KEY ||
Li Zefan33345d012011-04-20 10:31:50 +08002588 key.objectid != btrfs_ino(src))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002589 break;
2590
Sage Weilc5c9cd42008-11-12 14:32:25 -05002591 if (btrfs_key_type(&key) == BTRFS_EXTENT_DATA_KEY) {
2592 struct btrfs_file_extent_item *extent;
2593 int type;
Zheng Yan31840ae2008-09-23 13:14:14 -04002594 u32 size;
2595 struct btrfs_key new_key;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002596 u64 disko = 0, diskl = 0;
2597 u64 datao = 0, datal = 0;
2598 u8 comp;
Sage Weilb5384d42010-06-12 22:31:14 +00002599 u64 endoff;
Zheng Yan31840ae2008-09-23 13:14:14 -04002600
2601 size = btrfs_item_size_nr(leaf, slot);
2602 read_extent_buffer(leaf, buf,
2603 btrfs_item_ptr_offset(leaf, slot),
2604 size);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002605
2606 extent = btrfs_item_ptr(leaf, slot,
2607 struct btrfs_file_extent_item);
2608 comp = btrfs_file_extent_compression(leaf, extent);
2609 type = btrfs_file_extent_type(leaf, extent);
Chris Masonc8a894d2009-06-27 21:07:03 -04002610 if (type == BTRFS_FILE_EXTENT_REG ||
2611 type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masond3977122009-01-05 21:25:51 -05002612 disko = btrfs_file_extent_disk_bytenr(leaf,
2613 extent);
2614 diskl = btrfs_file_extent_disk_num_bytes(leaf,
2615 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002616 datao = btrfs_file_extent_offset(leaf, extent);
Chris Masond3977122009-01-05 21:25:51 -05002617 datal = btrfs_file_extent_num_bytes(leaf,
2618 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002619 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
2620 /* take upper bound, may be compressed */
2621 datal = btrfs_file_extent_ram_bytes(leaf,
2622 extent);
2623 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002624 btrfs_release_path(path);
Zheng Yan31840ae2008-09-23 13:14:14 -04002625
Sage Weil050006a2010-10-29 15:37:33 -04002626 if (key.offset + datal <= off ||
Liu Boaa42ffd2012-09-18 03:52:23 -06002627 key.offset >= off + len - 1)
Sage Weilc5c9cd42008-11-12 14:32:25 -05002628 goto next;
2629
Zheng Yan31840ae2008-09-23 13:14:14 -04002630 memcpy(&new_key, &key, sizeof(new_key));
Li Zefan33345d012011-04-20 10:31:50 +08002631 new_key.objectid = btrfs_ino(inode);
Li Zefan4d728ec2011-01-26 14:10:43 +08002632 if (off <= key.offset)
2633 new_key.offset = key.offset + destoff - off;
2634 else
2635 new_key.offset = destoff;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002636
Sage Weilb6f34092011-09-20 14:48:51 -04002637 /*
2638 * 1 - adjusting old extent (we may have to split it)
2639 * 1 - add new extent
2640 * 1 - inode update
2641 */
2642 trans = btrfs_start_transaction(root, 3);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002643 if (IS_ERR(trans)) {
2644 ret = PTR_ERR(trans);
2645 goto out;
2646 }
2647
Chris Masonc8a894d2009-06-27 21:07:03 -04002648 if (type == BTRFS_FILE_EXTENT_REG ||
2649 type == BTRFS_FILE_EXTENT_PREALLOC) {
Li Zefand72c0842011-09-11 10:52:25 -04002650 /*
2651 * a | --- range to clone ---| b
2652 * | ------------- extent ------------- |
2653 */
2654
2655 /* substract range b */
2656 if (key.offset + datal > off + len)
2657 datal = off + len - key.offset;
2658
2659 /* substract range a */
Yan, Zhenga22285a2010-05-16 10:48:46 -04002660 if (off > key.offset) {
2661 datao += off - key.offset;
2662 datal -= off - key.offset;
2663 }
2664
Josef Bacik5dc562c2012-08-17 13:14:17 -04002665 ret = btrfs_drop_extents(trans, root, inode,
Yan, Zhenga22285a2010-05-16 10:48:46 -04002666 new_key.offset,
2667 new_key.offset + datal,
Josef Bacik26714852012-08-29 12:24:27 -04002668 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002669 if (ret) {
2670 btrfs_abort_transaction(trans, root,
2671 ret);
2672 btrfs_end_transaction(trans, root);
2673 goto out;
2674 }
Yan, Zhenga22285a2010-05-16 10:48:46 -04002675
Sage Weilc5c9cd42008-11-12 14:32:25 -05002676 ret = btrfs_insert_empty_item(trans, root, path,
2677 &new_key, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002678 if (ret) {
2679 btrfs_abort_transaction(trans, root,
2680 ret);
2681 btrfs_end_transaction(trans, root);
2682 goto out;
2683 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05002684
2685 leaf = path->nodes[0];
2686 slot = path->slots[0];
2687 write_extent_buffer(leaf, buf,
2688 btrfs_item_ptr_offset(leaf, slot),
2689 size);
2690
2691 extent = btrfs_item_ptr(leaf, slot,
2692 struct btrfs_file_extent_item);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002693
Sage Weilc5c9cd42008-11-12 14:32:25 -05002694 /* disko == 0 means it's a hole */
2695 if (!disko)
2696 datao = 0;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002697
2698 btrfs_set_file_extent_offset(leaf, extent,
2699 datao);
2700 btrfs_set_file_extent_num_bytes(leaf, extent,
2701 datal);
2702 if (disko) {
2703 inode_add_bytes(inode, datal);
2704 ret = btrfs_inc_extent_ref(trans, root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002705 disko, diskl, 0,
2706 root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08002707 btrfs_ino(inode),
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002708 new_key.offset - datao,
2709 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002710 if (ret) {
2711 btrfs_abort_transaction(trans,
2712 root,
2713 ret);
2714 btrfs_end_transaction(trans,
2715 root);
2716 goto out;
2717
2718 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05002719 }
2720 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
2721 u64 skip = 0;
2722 u64 trim = 0;
2723 if (off > key.offset) {
2724 skip = off - key.offset;
2725 new_key.offset += skip;
2726 }
Chris Masond3977122009-01-05 21:25:51 -05002727
Liu Boaa42ffd2012-09-18 03:52:23 -06002728 if (key.offset + datal > off + len)
2729 trim = key.offset + datal - (off + len);
Chris Masond3977122009-01-05 21:25:51 -05002730
Sage Weilc5c9cd42008-11-12 14:32:25 -05002731 if (comp && (skip || trim)) {
Sage Weilc5c9cd42008-11-12 14:32:25 -05002732 ret = -EINVAL;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002733 btrfs_end_transaction(trans, root);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002734 goto out;
2735 }
2736 size -= skip + trim;
2737 datal -= skip + trim;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002738
Josef Bacik5dc562c2012-08-17 13:14:17 -04002739 ret = btrfs_drop_extents(trans, root, inode,
Yan, Zhenga22285a2010-05-16 10:48:46 -04002740 new_key.offset,
2741 new_key.offset + datal,
Josef Bacik26714852012-08-29 12:24:27 -04002742 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002743 if (ret) {
2744 btrfs_abort_transaction(trans, root,
2745 ret);
2746 btrfs_end_transaction(trans, root);
2747 goto out;
2748 }
Yan, Zhenga22285a2010-05-16 10:48:46 -04002749
Sage Weilc5c9cd42008-11-12 14:32:25 -05002750 ret = btrfs_insert_empty_item(trans, root, path,
2751 &new_key, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002752 if (ret) {
2753 btrfs_abort_transaction(trans, root,
2754 ret);
2755 btrfs_end_transaction(trans, root);
2756 goto out;
2757 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05002758
2759 if (skip) {
Chris Masond3977122009-01-05 21:25:51 -05002760 u32 start =
2761 btrfs_file_extent_calc_inline_size(0);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002762 memmove(buf+start, buf+start+skip,
2763 datal);
2764 }
2765
2766 leaf = path->nodes[0];
2767 slot = path->slots[0];
2768 write_extent_buffer(leaf, buf,
2769 btrfs_item_ptr_offset(leaf, slot),
2770 size);
2771 inode_add_bytes(inode, datal);
2772 }
2773
2774 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02002775 btrfs_release_path(path);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002776
Josef Bacik0c4d2d92012-04-05 15:03:02 -04002777 inode_inc_iversion(inode);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002778 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
Sage Weilb5384d42010-06-12 22:31:14 +00002779
2780 /*
2781 * we round up to the block size at eof when
2782 * determining which extents to clone above,
2783 * but shouldn't round up the file size
2784 */
2785 endoff = new_key.offset + datal;
Li Zefan5f3888f2010-11-19 01:36:34 +00002786 if (endoff > destoff+olen)
2787 endoff = destoff+olen;
Sage Weilb5384d42010-06-12 22:31:14 +00002788 if (endoff > inode->i_size)
2789 btrfs_i_size_write(inode, endoff);
2790
Yan, Zhenga22285a2010-05-16 10:48:46 -04002791 ret = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002792 if (ret) {
2793 btrfs_abort_transaction(trans, root, ret);
2794 btrfs_end_transaction(trans, root);
2795 goto out;
2796 }
2797 ret = btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002798 }
Chris Masond3977122009-01-05 21:25:51 -05002799next:
David Sterbab3b4aa72011-04-21 01:20:15 +02002800 btrfs_release_path(path);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002801 key.offset++;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002802 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002803 ret = 0;
2804out:
David Sterbab3b4aa72011-04-21 01:20:15 +02002805 btrfs_release_path(path);
Liu Boaa42ffd2012-09-18 03:52:23 -06002806 unlock_extent(&BTRFS_I(src)->io_tree, off, off + len - 1);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002807out_unlock:
2808 mutex_unlock(&src->i_mutex);
2809 mutex_unlock(&inode->i_mutex);
Yan Zhengae01a0a2008-08-04 23:23:47 -04002810 vfree(buf);
2811 btrfs_free_path(path);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002812out_fput:
Al Viro2903ff02012-08-28 12:52:22 -04002813 fdput(src_file);
Yan Zhengab67b7c2008-12-19 10:58:39 -05002814out_drop_write:
Al Viro2a79f172011-12-09 08:06:57 -05002815 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002816 return ret;
2817}
2818
Christoph Hellwig7a865e82008-12-02 09:52:24 -05002819static long btrfs_ioctl_clone_range(struct file *file, void __user *argp)
Sage Weilc5c9cd42008-11-12 14:32:25 -05002820{
2821 struct btrfs_ioctl_clone_range_args args;
2822
Christoph Hellwig7a865e82008-12-02 09:52:24 -05002823 if (copy_from_user(&args, argp, sizeof(args)))
Sage Weilc5c9cd42008-11-12 14:32:25 -05002824 return -EFAULT;
2825 return btrfs_ioctl_clone(file, args.src_fd, args.src_offset,
2826 args.src_length, args.dest_offset);
2827}
2828
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002829/*
2830 * there are many ways the trans_start and trans_end ioctls can lead
2831 * to deadlocks. They should only be used by applications that
2832 * basically own the machine, and have a very in depth understanding
2833 * of all the possible deadlocks and enospc problems.
2834 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05002835static long btrfs_ioctl_trans_start(struct file *file)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002836{
2837 struct inode *inode = fdentry(file)->d_inode;
2838 struct btrfs_root *root = BTRFS_I(inode)->root;
2839 struct btrfs_trans_handle *trans;
Sage Weil1ab86ae2009-09-29 18:38:44 -04002840 int ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002841
Sage Weil1ab86ae2009-09-29 18:38:44 -04002842 ret = -EPERM;
Christoph Hellwigdf5b5522008-06-11 21:53:58 -04002843 if (!capable(CAP_SYS_ADMIN))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002844 goto out;
Sage Weil1ab86ae2009-09-29 18:38:44 -04002845
2846 ret = -EINPROGRESS;
2847 if (file->private_data)
2848 goto out;
Sage Weil9ca9ee02008-08-04 10:41:27 -04002849
Li Zefanb83cc962010-12-20 16:04:08 +08002850 ret = -EROFS;
2851 if (btrfs_root_readonly(root))
2852 goto out;
2853
Al Viroa561be72011-11-23 11:57:51 -05002854 ret = mnt_want_write_file(file);
Yan Zhengc146afa2008-11-12 14:34:12 -05002855 if (ret)
2856 goto out;
2857
Josef Bacika4abeea2011-04-11 17:25:13 -04002858 atomic_inc(&root->fs_info->open_ioctl_trans);
Sage Weil9ca9ee02008-08-04 10:41:27 -04002859
Sage Weil1ab86ae2009-09-29 18:38:44 -04002860 ret = -ENOMEM;
Josef Bacik7a7eaa402011-04-13 12:54:33 -04002861 trans = btrfs_start_ioctl_transaction(root);
Tsutomu Itohabd30bb2011-01-24 00:57:10 +00002862 if (IS_ERR(trans))
Sage Weil1ab86ae2009-09-29 18:38:44 -04002863 goto out_drop;
2864
2865 file->private_data = trans;
2866 return 0;
2867
2868out_drop:
Josef Bacika4abeea2011-04-11 17:25:13 -04002869 atomic_dec(&root->fs_info->open_ioctl_trans);
Al Viro2a79f172011-12-09 08:06:57 -05002870 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002871out:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002872 return ret;
2873}
2874
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002875static long btrfs_ioctl_default_subvol(struct file *file, void __user *argp)
2876{
2877 struct inode *inode = fdentry(file)->d_inode;
2878 struct btrfs_root *root = BTRFS_I(inode)->root;
2879 struct btrfs_root *new_root;
2880 struct btrfs_dir_item *di;
2881 struct btrfs_trans_handle *trans;
2882 struct btrfs_path *path;
2883 struct btrfs_key location;
2884 struct btrfs_disk_key disk_key;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002885 u64 objectid = 0;
2886 u64 dir_id;
Miao Xie3c04ce02012-11-26 08:43:07 +00002887 int ret;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002888
2889 if (!capable(CAP_SYS_ADMIN))
2890 return -EPERM;
2891
Miao Xie3c04ce02012-11-26 08:43:07 +00002892 ret = mnt_want_write_file(file);
2893 if (ret)
2894 return ret;
2895
2896 if (copy_from_user(&objectid, argp, sizeof(objectid))) {
2897 ret = -EFAULT;
2898 goto out;
2899 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002900
2901 if (!objectid)
2902 objectid = root->root_key.objectid;
2903
2904 location.objectid = objectid;
2905 location.type = BTRFS_ROOT_ITEM_KEY;
2906 location.offset = (u64)-1;
2907
2908 new_root = btrfs_read_fs_root_no_name(root->fs_info, &location);
Miao Xie3c04ce02012-11-26 08:43:07 +00002909 if (IS_ERR(new_root)) {
2910 ret = PTR_ERR(new_root);
2911 goto out;
2912 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002913
Miao Xie3c04ce02012-11-26 08:43:07 +00002914 if (btrfs_root_refs(&new_root->root_item) == 0) {
2915 ret = -ENOENT;
2916 goto out;
2917 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002918
2919 path = btrfs_alloc_path();
Miao Xie3c04ce02012-11-26 08:43:07 +00002920 if (!path) {
2921 ret = -ENOMEM;
2922 goto out;
2923 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002924 path->leave_spinning = 1;
2925
2926 trans = btrfs_start_transaction(root, 1);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002927 if (IS_ERR(trans)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002928 btrfs_free_path(path);
Miao Xie3c04ce02012-11-26 08:43:07 +00002929 ret = PTR_ERR(trans);
2930 goto out;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002931 }
2932
David Sterba6c417612011-04-13 15:41:04 +02002933 dir_id = btrfs_super_root_dir(root->fs_info->super_copy);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002934 di = btrfs_lookup_dir_item(trans, root->fs_info->tree_root, path,
2935 dir_id, "default", 7, 1);
Dan Carpentercf1e99a2010-05-29 09:47:24 +00002936 if (IS_ERR_OR_NULL(di)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002937 btrfs_free_path(path);
2938 btrfs_end_transaction(trans, root);
2939 printk(KERN_ERR "Umm, you don't have the default dir item, "
2940 "this isn't going to work\n");
Miao Xie3c04ce02012-11-26 08:43:07 +00002941 ret = -ENOENT;
2942 goto out;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002943 }
2944
2945 btrfs_cpu_key_to_disk(&disk_key, &new_root->root_key);
2946 btrfs_set_dir_item_key(path->nodes[0], di, &disk_key);
2947 btrfs_mark_buffer_dirty(path->nodes[0]);
2948 btrfs_free_path(path);
2949
Mitch Harder2b0ce2c2012-07-24 11:58:43 -06002950 btrfs_set_fs_incompat(root->fs_info, DEFAULT_SUBVOL);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002951 btrfs_end_transaction(trans, root);
Miao Xie3c04ce02012-11-26 08:43:07 +00002952out:
2953 mnt_drop_write_file(file);
2954 return ret;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002955}
2956
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02002957void btrfs_get_block_group_info(struct list_head *groups_list,
2958 struct btrfs_ioctl_space_info *space)
Josef Bacikbf5fc092010-09-29 11:22:36 -04002959{
2960 struct btrfs_block_group_cache *block_group;
2961
2962 space->total_bytes = 0;
2963 space->used_bytes = 0;
2964 space->flags = 0;
2965 list_for_each_entry(block_group, groups_list, list) {
2966 space->flags = block_group->flags;
2967 space->total_bytes += block_group->key.offset;
2968 space->used_bytes +=
2969 btrfs_block_group_used(&block_group->item);
2970 }
2971}
2972
Josef Bacik1406e432010-01-13 18:19:06 +00002973long btrfs_ioctl_space_info(struct btrfs_root *root, void __user *arg)
2974{
2975 struct btrfs_ioctl_space_args space_args;
2976 struct btrfs_ioctl_space_info space;
2977 struct btrfs_ioctl_space_info *dest;
Chris Mason7fde62b2010-03-16 15:40:10 -04002978 struct btrfs_ioctl_space_info *dest_orig;
Daniel J Blueman13f26962011-04-11 15:56:31 +00002979 struct btrfs_ioctl_space_info __user *user_dest;
Josef Bacik1406e432010-01-13 18:19:06 +00002980 struct btrfs_space_info *info;
Josef Bacikbf5fc092010-09-29 11:22:36 -04002981 u64 types[] = {BTRFS_BLOCK_GROUP_DATA,
2982 BTRFS_BLOCK_GROUP_SYSTEM,
2983 BTRFS_BLOCK_GROUP_METADATA,
2984 BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA};
2985 int num_types = 4;
Chris Mason7fde62b2010-03-16 15:40:10 -04002986 int alloc_size;
Josef Bacik1406e432010-01-13 18:19:06 +00002987 int ret = 0;
Dan Rosenberg51788b12011-02-14 16:04:23 -05002988 u64 slot_count = 0;
Josef Bacikbf5fc092010-09-29 11:22:36 -04002989 int i, c;
Josef Bacik1406e432010-01-13 18:19:06 +00002990
2991 if (copy_from_user(&space_args,
2992 (struct btrfs_ioctl_space_args __user *)arg,
2993 sizeof(space_args)))
2994 return -EFAULT;
2995
Josef Bacikbf5fc092010-09-29 11:22:36 -04002996 for (i = 0; i < num_types; i++) {
2997 struct btrfs_space_info *tmp;
2998
2999 info = NULL;
3000 rcu_read_lock();
3001 list_for_each_entry_rcu(tmp, &root->fs_info->space_info,
3002 list) {
3003 if (tmp->flags == types[i]) {
3004 info = tmp;
3005 break;
3006 }
3007 }
3008 rcu_read_unlock();
3009
3010 if (!info)
3011 continue;
3012
3013 down_read(&info->groups_sem);
3014 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
3015 if (!list_empty(&info->block_groups[c]))
3016 slot_count++;
3017 }
3018 up_read(&info->groups_sem);
3019 }
Josef Bacik1406e432010-01-13 18:19:06 +00003020
Chris Mason7fde62b2010-03-16 15:40:10 -04003021 /* space_slots == 0 means they are asking for a count */
3022 if (space_args.space_slots == 0) {
3023 space_args.total_spaces = slot_count;
3024 goto out;
3025 }
Josef Bacikbf5fc092010-09-29 11:22:36 -04003026
Dan Rosenberg51788b12011-02-14 16:04:23 -05003027 slot_count = min_t(u64, space_args.space_slots, slot_count);
Josef Bacikbf5fc092010-09-29 11:22:36 -04003028
Chris Mason7fde62b2010-03-16 15:40:10 -04003029 alloc_size = sizeof(*dest) * slot_count;
Josef Bacikbf5fc092010-09-29 11:22:36 -04003030
Chris Mason7fde62b2010-03-16 15:40:10 -04003031 /* we generally have at most 6 or so space infos, one for each raid
3032 * level. So, a whole page should be more than enough for everyone
3033 */
3034 if (alloc_size > PAGE_CACHE_SIZE)
3035 return -ENOMEM;
3036
3037 space_args.total_spaces = 0;
3038 dest = kmalloc(alloc_size, GFP_NOFS);
3039 if (!dest)
3040 return -ENOMEM;
3041 dest_orig = dest;
3042
3043 /* now we have a buffer to copy into */
Josef Bacikbf5fc092010-09-29 11:22:36 -04003044 for (i = 0; i < num_types; i++) {
3045 struct btrfs_space_info *tmp;
Chris Mason7fde62b2010-03-16 15:40:10 -04003046
Dan Rosenberg51788b12011-02-14 16:04:23 -05003047 if (!slot_count)
3048 break;
3049
Josef Bacikbf5fc092010-09-29 11:22:36 -04003050 info = NULL;
3051 rcu_read_lock();
3052 list_for_each_entry_rcu(tmp, &root->fs_info->space_info,
3053 list) {
3054 if (tmp->flags == types[i]) {
3055 info = tmp;
3056 break;
3057 }
3058 }
3059 rcu_read_unlock();
Chris Mason7fde62b2010-03-16 15:40:10 -04003060
Josef Bacikbf5fc092010-09-29 11:22:36 -04003061 if (!info)
3062 continue;
3063 down_read(&info->groups_sem);
3064 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
3065 if (!list_empty(&info->block_groups[c])) {
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02003066 btrfs_get_block_group_info(
3067 &info->block_groups[c], &space);
Josef Bacikbf5fc092010-09-29 11:22:36 -04003068 memcpy(dest, &space, sizeof(space));
3069 dest++;
3070 space_args.total_spaces++;
Dan Rosenberg51788b12011-02-14 16:04:23 -05003071 slot_count--;
Josef Bacikbf5fc092010-09-29 11:22:36 -04003072 }
Dan Rosenberg51788b12011-02-14 16:04:23 -05003073 if (!slot_count)
3074 break;
Josef Bacikbf5fc092010-09-29 11:22:36 -04003075 }
3076 up_read(&info->groups_sem);
Josef Bacik1406e432010-01-13 18:19:06 +00003077 }
Josef Bacik1406e432010-01-13 18:19:06 +00003078
Daniel J Blueman2eec6c82012-04-26 00:37:14 +08003079 user_dest = (struct btrfs_ioctl_space_info __user *)
Chris Mason7fde62b2010-03-16 15:40:10 -04003080 (arg + sizeof(struct btrfs_ioctl_space_args));
3081
3082 if (copy_to_user(user_dest, dest_orig, alloc_size))
3083 ret = -EFAULT;
3084
3085 kfree(dest_orig);
3086out:
3087 if (ret == 0 && copy_to_user(arg, &space_args, sizeof(space_args)))
Josef Bacik1406e432010-01-13 18:19:06 +00003088 ret = -EFAULT;
3089
3090 return ret;
3091}
3092
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003093/*
3094 * there are many ways the trans_start and trans_end ioctls can lead
3095 * to deadlocks. They should only be used by applications that
3096 * basically own the machine, and have a very in depth understanding
3097 * of all the possible deadlocks and enospc problems.
3098 */
3099long btrfs_ioctl_trans_end(struct file *file)
3100{
3101 struct inode *inode = fdentry(file)->d_inode;
3102 struct btrfs_root *root = BTRFS_I(inode)->root;
3103 struct btrfs_trans_handle *trans;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003104
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003105 trans = file->private_data;
Sage Weil1ab86ae2009-09-29 18:38:44 -04003106 if (!trans)
3107 return -EINVAL;
Christoph Hellwigb2141072008-09-05 16:43:31 -04003108 file->private_data = NULL;
Sage Weil9ca9ee02008-08-04 10:41:27 -04003109
Sage Weil1ab86ae2009-09-29 18:38:44 -04003110 btrfs_end_transaction(trans, root);
3111
Josef Bacika4abeea2011-04-11 17:25:13 -04003112 atomic_dec(&root->fs_info->open_ioctl_trans);
Sage Weil9ca9ee02008-08-04 10:41:27 -04003113
Al Viro2a79f172011-12-09 08:06:57 -05003114 mnt_drop_write_file(file);
Sage Weil1ab86ae2009-09-29 18:38:44 -04003115 return 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003116}
3117
Miao Xie9a8c28b2012-11-26 08:40:43 +00003118static noinline long btrfs_ioctl_start_sync(struct btrfs_root *root,
3119 void __user *argp)
Sage Weil46204592010-10-29 15:41:32 -04003120{
Sage Weil46204592010-10-29 15:41:32 -04003121 struct btrfs_trans_handle *trans;
3122 u64 transid;
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00003123 int ret;
Sage Weil46204592010-10-29 15:41:32 -04003124
Miao Xied4edf392013-02-20 09:17:06 +00003125 trans = btrfs_attach_transaction_barrier(root);
Miao Xieff7c1d32012-11-26 08:41:29 +00003126 if (IS_ERR(trans)) {
3127 if (PTR_ERR(trans) != -ENOENT)
3128 return PTR_ERR(trans);
3129
3130 /* No running transaction, don't bother */
3131 transid = root->fs_info->last_trans_committed;
3132 goto out;
3133 }
Sage Weil46204592010-10-29 15:41:32 -04003134 transid = trans->transid;
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00003135 ret = btrfs_commit_transaction_async(trans, root, 0);
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00003136 if (ret) {
3137 btrfs_end_transaction(trans, root);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00003138 return ret;
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00003139 }
Miao Xieff7c1d32012-11-26 08:41:29 +00003140out:
Sage Weil46204592010-10-29 15:41:32 -04003141 if (argp)
3142 if (copy_to_user(argp, &transid, sizeof(transid)))
3143 return -EFAULT;
3144 return 0;
3145}
3146
Miao Xie9a8c28b2012-11-26 08:40:43 +00003147static noinline long btrfs_ioctl_wait_sync(struct btrfs_root *root,
3148 void __user *argp)
Sage Weil46204592010-10-29 15:41:32 -04003149{
Sage Weil46204592010-10-29 15:41:32 -04003150 u64 transid;
3151
3152 if (argp) {
3153 if (copy_from_user(&transid, argp, sizeof(transid)))
3154 return -EFAULT;
3155 } else {
3156 transid = 0; /* current trans */
3157 }
3158 return btrfs_wait_for_commit(root, transid);
3159}
3160
Miao Xieb8e95482012-11-26 08:48:01 +00003161static long btrfs_ioctl_scrub(struct file *file, void __user *arg)
Jan Schmidt475f6382011-03-11 15:41:01 +01003162{
Miao Xieb8e95482012-11-26 08:48:01 +00003163 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
Jan Schmidt475f6382011-03-11 15:41:01 +01003164 struct btrfs_ioctl_scrub_args *sa;
Miao Xieb8e95482012-11-26 08:48:01 +00003165 int ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01003166
3167 if (!capable(CAP_SYS_ADMIN))
3168 return -EPERM;
3169
3170 sa = memdup_user(arg, sizeof(*sa));
3171 if (IS_ERR(sa))
3172 return PTR_ERR(sa);
3173
Miao Xieb8e95482012-11-26 08:48:01 +00003174 if (!(sa->flags & BTRFS_SCRUB_READONLY)) {
3175 ret = mnt_want_write_file(file);
3176 if (ret)
3177 goto out;
3178 }
3179
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01003180 ret = btrfs_scrub_dev(root->fs_info, sa->devid, sa->start, sa->end,
Stefan Behrens63a212a2012-11-05 18:29:28 +01003181 &sa->progress, sa->flags & BTRFS_SCRUB_READONLY,
3182 0);
Jan Schmidt475f6382011-03-11 15:41:01 +01003183
3184 if (copy_to_user(arg, sa, sizeof(*sa)))
3185 ret = -EFAULT;
3186
Miao Xieb8e95482012-11-26 08:48:01 +00003187 if (!(sa->flags & BTRFS_SCRUB_READONLY))
3188 mnt_drop_write_file(file);
3189out:
Jan Schmidt475f6382011-03-11 15:41:01 +01003190 kfree(sa);
3191 return ret;
3192}
3193
3194static long btrfs_ioctl_scrub_cancel(struct btrfs_root *root, void __user *arg)
3195{
3196 if (!capable(CAP_SYS_ADMIN))
3197 return -EPERM;
3198
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01003199 return btrfs_scrub_cancel(root->fs_info);
Jan Schmidt475f6382011-03-11 15:41:01 +01003200}
3201
3202static long btrfs_ioctl_scrub_progress(struct btrfs_root *root,
3203 void __user *arg)
3204{
3205 struct btrfs_ioctl_scrub_args *sa;
3206 int ret;
3207
3208 if (!capable(CAP_SYS_ADMIN))
3209 return -EPERM;
3210
3211 sa = memdup_user(arg, sizeof(*sa));
3212 if (IS_ERR(sa))
3213 return PTR_ERR(sa);
3214
3215 ret = btrfs_scrub_progress(root, sa->devid, &sa->progress);
3216
3217 if (copy_to_user(arg, sa, sizeof(*sa)))
3218 ret = -EFAULT;
3219
3220 kfree(sa);
3221 return ret;
3222}
3223
Stefan Behrensc11d2c22012-05-25 16:06:09 +02003224static long btrfs_ioctl_get_dev_stats(struct btrfs_root *root,
David Sterbab27f7c02012-06-22 06:30:39 -06003225 void __user *arg)
Stefan Behrensc11d2c22012-05-25 16:06:09 +02003226{
3227 struct btrfs_ioctl_get_dev_stats *sa;
3228 int ret;
3229
Stefan Behrensc11d2c22012-05-25 16:06:09 +02003230 sa = memdup_user(arg, sizeof(*sa));
3231 if (IS_ERR(sa))
3232 return PTR_ERR(sa);
3233
David Sterbab27f7c02012-06-22 06:30:39 -06003234 if ((sa->flags & BTRFS_DEV_STATS_RESET) && !capable(CAP_SYS_ADMIN)) {
3235 kfree(sa);
3236 return -EPERM;
3237 }
3238
3239 ret = btrfs_get_dev_stats(root, sa);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02003240
3241 if (copy_to_user(arg, sa, sizeof(*sa)))
3242 ret = -EFAULT;
3243
3244 kfree(sa);
3245 return ret;
3246}
3247
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01003248static long btrfs_ioctl_dev_replace(struct btrfs_root *root, void __user *arg)
3249{
3250 struct btrfs_ioctl_dev_replace_args *p;
3251 int ret;
3252
3253 if (!capable(CAP_SYS_ADMIN))
3254 return -EPERM;
3255
3256 p = memdup_user(arg, sizeof(*p));
3257 if (IS_ERR(p))
3258 return PTR_ERR(p);
3259
3260 switch (p->cmd) {
3261 case BTRFS_IOCTL_DEV_REPLACE_CMD_START:
3262 if (atomic_xchg(
3263 &root->fs_info->mutually_exclusive_operation_running,
3264 1)) {
3265 pr_info("btrfs: dev add/delete/balance/replace/resize operation in progress\n");
3266 ret = -EINPROGRESS;
3267 } else {
3268 ret = btrfs_dev_replace_start(root, p);
3269 atomic_set(
3270 &root->fs_info->mutually_exclusive_operation_running,
3271 0);
3272 }
3273 break;
3274 case BTRFS_IOCTL_DEV_REPLACE_CMD_STATUS:
3275 btrfs_dev_replace_status(root->fs_info, p);
3276 ret = 0;
3277 break;
3278 case BTRFS_IOCTL_DEV_REPLACE_CMD_CANCEL:
3279 ret = btrfs_dev_replace_cancel(root->fs_info, p);
3280 break;
3281 default:
3282 ret = -EINVAL;
3283 break;
3284 }
3285
3286 if (copy_to_user(arg, p, sizeof(*p)))
3287 ret = -EFAULT;
3288
3289 kfree(p);
3290 return ret;
3291}
3292
Jan Schmidtd7728c92011-07-07 16:48:38 +02003293static long btrfs_ioctl_ino_to_path(struct btrfs_root *root, void __user *arg)
3294{
3295 int ret = 0;
3296 int i;
Chris Mason740c3d22011-11-02 15:48:34 -04003297 u64 rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003298 int size;
Chris Mason806468f2011-11-06 03:07:10 -05003299 struct btrfs_ioctl_ino_path_args *ipa = NULL;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003300 struct inode_fs_paths *ipath = NULL;
3301 struct btrfs_path *path;
3302
Kusanagi Kouichi82b22ac2013-01-28 11:33:31 +00003303 if (!capable(CAP_DAC_READ_SEARCH))
Jan Schmidtd7728c92011-07-07 16:48:38 +02003304 return -EPERM;
3305
3306 path = btrfs_alloc_path();
3307 if (!path) {
3308 ret = -ENOMEM;
3309 goto out;
3310 }
3311
3312 ipa = memdup_user(arg, sizeof(*ipa));
3313 if (IS_ERR(ipa)) {
3314 ret = PTR_ERR(ipa);
3315 ipa = NULL;
3316 goto out;
3317 }
3318
3319 size = min_t(u32, ipa->size, 4096);
3320 ipath = init_ipath(size, root, path);
3321 if (IS_ERR(ipath)) {
3322 ret = PTR_ERR(ipath);
3323 ipath = NULL;
3324 goto out;
3325 }
3326
3327 ret = paths_from_inode(ipa->inum, ipath);
3328 if (ret < 0)
3329 goto out;
3330
3331 for (i = 0; i < ipath->fspath->elem_cnt; ++i) {
Jeff Mahoney745c4d82011-11-20 07:31:57 -05003332 rel_ptr = ipath->fspath->val[i] -
3333 (u64)(unsigned long)ipath->fspath->val;
Chris Mason740c3d22011-11-02 15:48:34 -04003334 ipath->fspath->val[i] = rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003335 }
3336
Jeff Mahoney745c4d82011-11-20 07:31:57 -05003337 ret = copy_to_user((void *)(unsigned long)ipa->fspath,
3338 (void *)(unsigned long)ipath->fspath, size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02003339 if (ret) {
3340 ret = -EFAULT;
3341 goto out;
3342 }
3343
3344out:
3345 btrfs_free_path(path);
3346 free_ipath(ipath);
3347 kfree(ipa);
3348
3349 return ret;
3350}
3351
3352static int build_ino_list(u64 inum, u64 offset, u64 root, void *ctx)
3353{
3354 struct btrfs_data_container *inodes = ctx;
3355 const size_t c = 3 * sizeof(u64);
3356
3357 if (inodes->bytes_left >= c) {
3358 inodes->bytes_left -= c;
3359 inodes->val[inodes->elem_cnt] = inum;
3360 inodes->val[inodes->elem_cnt + 1] = offset;
3361 inodes->val[inodes->elem_cnt + 2] = root;
3362 inodes->elem_cnt += 3;
3363 } else {
3364 inodes->bytes_missing += c - inodes->bytes_left;
3365 inodes->bytes_left = 0;
3366 inodes->elem_missed += 3;
3367 }
3368
3369 return 0;
3370}
3371
3372static long btrfs_ioctl_logical_to_ino(struct btrfs_root *root,
3373 void __user *arg)
3374{
3375 int ret = 0;
3376 int size;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003377 struct btrfs_ioctl_logical_ino_args *loi;
3378 struct btrfs_data_container *inodes = NULL;
3379 struct btrfs_path *path = NULL;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003380
3381 if (!capable(CAP_SYS_ADMIN))
3382 return -EPERM;
3383
3384 loi = memdup_user(arg, sizeof(*loi));
3385 if (IS_ERR(loi)) {
3386 ret = PTR_ERR(loi);
3387 loi = NULL;
3388 goto out;
3389 }
3390
3391 path = btrfs_alloc_path();
3392 if (!path) {
3393 ret = -ENOMEM;
3394 goto out;
3395 }
3396
Liu Bo425d17a2012-09-07 20:01:30 -06003397 size = min_t(u32, loi->size, 64 * 1024);
Jan Schmidtd7728c92011-07-07 16:48:38 +02003398 inodes = init_data_container(size);
3399 if (IS_ERR(inodes)) {
3400 ret = PTR_ERR(inodes);
3401 inodes = NULL;
3402 goto out;
3403 }
3404
Liu Bodf031f02012-09-07 20:01:29 -06003405 ret = iterate_inodes_from_logical(loi->logical, root->fs_info, path,
3406 build_ino_list, inodes);
3407 if (ret == -EINVAL)
Jan Schmidtd7728c92011-07-07 16:48:38 +02003408 ret = -ENOENT;
3409 if (ret < 0)
3410 goto out;
3411
Jeff Mahoney745c4d82011-11-20 07:31:57 -05003412 ret = copy_to_user((void *)(unsigned long)loi->inodes,
3413 (void *)(unsigned long)inodes, size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02003414 if (ret)
3415 ret = -EFAULT;
3416
3417out:
3418 btrfs_free_path(path);
Liu Bo425d17a2012-09-07 20:01:30 -06003419 vfree(inodes);
Jan Schmidtd7728c92011-07-07 16:48:38 +02003420 kfree(loi);
3421
3422 return ret;
3423}
3424
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003425void update_ioctl_balance_args(struct btrfs_fs_info *fs_info, int lock,
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003426 struct btrfs_ioctl_balance_args *bargs)
3427{
3428 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
3429
3430 bargs->flags = bctl->flags;
3431
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003432 if (atomic_read(&fs_info->balance_running))
3433 bargs->state |= BTRFS_BALANCE_STATE_RUNNING;
3434 if (atomic_read(&fs_info->balance_pause_req))
3435 bargs->state |= BTRFS_BALANCE_STATE_PAUSE_REQ;
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003436 if (atomic_read(&fs_info->balance_cancel_req))
3437 bargs->state |= BTRFS_BALANCE_STATE_CANCEL_REQ;
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003438
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003439 memcpy(&bargs->data, &bctl->data, sizeof(bargs->data));
3440 memcpy(&bargs->meta, &bctl->meta, sizeof(bargs->meta));
3441 memcpy(&bargs->sys, &bctl->sys, sizeof(bargs->sys));
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003442
3443 if (lock) {
3444 spin_lock(&fs_info->balance_lock);
3445 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
3446 spin_unlock(&fs_info->balance_lock);
3447 } else {
3448 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
3449 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003450}
3451
Liu Bo9ba1f6e2012-05-11 18:11:26 +08003452static long btrfs_ioctl_balance(struct file *file, void __user *arg)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003453{
Liu Bo9ba1f6e2012-05-11 18:11:26 +08003454 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003455 struct btrfs_fs_info *fs_info = root->fs_info;
3456 struct btrfs_ioctl_balance_args *bargs;
3457 struct btrfs_balance_control *bctl;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003458 bool need_unlock; /* for mut. excl. ops lock */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003459 int ret;
3460
3461 if (!capable(CAP_SYS_ADMIN))
3462 return -EPERM;
3463
Liu Boe54bfa32012-06-29 03:58:48 -06003464 ret = mnt_want_write_file(file);
Liu Bo9ba1f6e2012-05-11 18:11:26 +08003465 if (ret)
3466 return ret;
3467
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003468again:
3469 if (!atomic_xchg(&fs_info->mutually_exclusive_operation_running, 1)) {
3470 mutex_lock(&fs_info->volume_mutex);
3471 mutex_lock(&fs_info->balance_mutex);
3472 need_unlock = true;
3473 goto locked;
3474 }
3475
3476 /*
3477 * mut. excl. ops lock is locked. Three possibilites:
3478 * (1) some other op is running
3479 * (2) balance is running
3480 * (3) balance is paused -- special case (think resume)
3481 */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003482 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003483 if (fs_info->balance_ctl) {
3484 /* this is either (2) or (3) */
3485 if (!atomic_read(&fs_info->balance_running)) {
3486 mutex_unlock(&fs_info->balance_mutex);
3487 if (!mutex_trylock(&fs_info->volume_mutex))
3488 goto again;
3489 mutex_lock(&fs_info->balance_mutex);
3490
3491 if (fs_info->balance_ctl &&
3492 !atomic_read(&fs_info->balance_running)) {
3493 /* this is (3) */
3494 need_unlock = false;
3495 goto locked;
3496 }
3497
3498 mutex_unlock(&fs_info->balance_mutex);
3499 mutex_unlock(&fs_info->volume_mutex);
3500 goto again;
3501 } else {
3502 /* this is (2) */
3503 mutex_unlock(&fs_info->balance_mutex);
3504 ret = -EINPROGRESS;
3505 goto out;
3506 }
3507 } else {
3508 /* this is (1) */
3509 mutex_unlock(&fs_info->balance_mutex);
3510 pr_info("btrfs: dev add/delete/balance/replace/resize operation in progress\n");
3511 ret = -EINVAL;
3512 goto out;
3513 }
3514
3515locked:
3516 BUG_ON(!atomic_read(&fs_info->mutually_exclusive_operation_running));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003517
3518 if (arg) {
3519 bargs = memdup_user(arg, sizeof(*bargs));
3520 if (IS_ERR(bargs)) {
3521 ret = PTR_ERR(bargs);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003522 goto out_unlock;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003523 }
Ilya Dryomovde322262012-01-16 22:04:49 +02003524
3525 if (bargs->flags & BTRFS_BALANCE_RESUME) {
3526 if (!fs_info->balance_ctl) {
3527 ret = -ENOTCONN;
3528 goto out_bargs;
3529 }
3530
3531 bctl = fs_info->balance_ctl;
3532 spin_lock(&fs_info->balance_lock);
3533 bctl->flags |= BTRFS_BALANCE_RESUME;
3534 spin_unlock(&fs_info->balance_lock);
3535
3536 goto do_balance;
3537 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003538 } else {
3539 bargs = NULL;
3540 }
3541
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003542 if (fs_info->balance_ctl) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003543 ret = -EINPROGRESS;
3544 goto out_bargs;
3545 }
3546
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003547 bctl = kzalloc(sizeof(*bctl), GFP_NOFS);
3548 if (!bctl) {
3549 ret = -ENOMEM;
3550 goto out_bargs;
3551 }
3552
3553 bctl->fs_info = fs_info;
3554 if (arg) {
3555 memcpy(&bctl->data, &bargs->data, sizeof(bctl->data));
3556 memcpy(&bctl->meta, &bargs->meta, sizeof(bctl->meta));
3557 memcpy(&bctl->sys, &bargs->sys, sizeof(bctl->sys));
3558
3559 bctl->flags = bargs->flags;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003560 } else {
3561 /* balance everything - no filters */
3562 bctl->flags |= BTRFS_BALANCE_TYPE_MASK;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003563 }
3564
Ilya Dryomovde322262012-01-16 22:04:49 +02003565do_balance:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003566 /*
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003567 * Ownership of bctl and mutually_exclusive_operation_running
3568 * goes to to btrfs_balance. bctl is freed in __cancel_balance,
3569 * or, if restriper was paused all the way until unmount, in
3570 * free_fs_info. mutually_exclusive_operation_running is
3571 * cleared in __cancel_balance.
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003572 */
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003573 need_unlock = false;
3574
3575 ret = btrfs_balance(bctl, bargs);
3576
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003577 if (arg) {
3578 if (copy_to_user(arg, bargs, sizeof(*bargs)))
3579 ret = -EFAULT;
3580 }
3581
3582out_bargs:
3583 kfree(bargs);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003584out_unlock:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003585 mutex_unlock(&fs_info->balance_mutex);
3586 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003587 if (need_unlock)
3588 atomic_set(&fs_info->mutually_exclusive_operation_running, 0);
3589out:
Liu Boe54bfa32012-06-29 03:58:48 -06003590 mnt_drop_write_file(file);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003591 return ret;
3592}
3593
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003594static long btrfs_ioctl_balance_ctl(struct btrfs_root *root, int cmd)
3595{
3596 if (!capable(CAP_SYS_ADMIN))
3597 return -EPERM;
3598
3599 switch (cmd) {
3600 case BTRFS_BALANCE_CTL_PAUSE:
3601 return btrfs_pause_balance(root->fs_info);
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003602 case BTRFS_BALANCE_CTL_CANCEL:
3603 return btrfs_cancel_balance(root->fs_info);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003604 }
3605
3606 return -EINVAL;
3607}
3608
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003609static long btrfs_ioctl_balance_progress(struct btrfs_root *root,
3610 void __user *arg)
3611{
3612 struct btrfs_fs_info *fs_info = root->fs_info;
3613 struct btrfs_ioctl_balance_args *bargs;
3614 int ret = 0;
3615
3616 if (!capable(CAP_SYS_ADMIN))
3617 return -EPERM;
3618
3619 mutex_lock(&fs_info->balance_mutex);
3620 if (!fs_info->balance_ctl) {
3621 ret = -ENOTCONN;
3622 goto out;
3623 }
3624
3625 bargs = kzalloc(sizeof(*bargs), GFP_NOFS);
3626 if (!bargs) {
3627 ret = -ENOMEM;
3628 goto out;
3629 }
3630
3631 update_ioctl_balance_args(fs_info, 1, bargs);
3632
3633 if (copy_to_user(arg, bargs, sizeof(*bargs)))
3634 ret = -EFAULT;
3635
3636 kfree(bargs);
3637out:
3638 mutex_unlock(&fs_info->balance_mutex);
3639 return ret;
3640}
3641
Miao Xie905b0dd2012-11-26 08:50:11 +00003642static long btrfs_ioctl_quota_ctl(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02003643{
Miao Xie905b0dd2012-11-26 08:50:11 +00003644 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02003645 struct btrfs_ioctl_quota_ctl_args *sa;
3646 struct btrfs_trans_handle *trans = NULL;
3647 int ret;
3648 int err;
3649
3650 if (!capable(CAP_SYS_ADMIN))
3651 return -EPERM;
3652
Miao Xie905b0dd2012-11-26 08:50:11 +00003653 ret = mnt_want_write_file(file);
3654 if (ret)
3655 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02003656
3657 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00003658 if (IS_ERR(sa)) {
3659 ret = PTR_ERR(sa);
3660 goto drop_write;
3661 }
Arne Jansen5d13a372011-09-14 15:53:51 +02003662
3663 if (sa->cmd != BTRFS_QUOTA_CTL_RESCAN) {
3664 trans = btrfs_start_transaction(root, 2);
3665 if (IS_ERR(trans)) {
3666 ret = PTR_ERR(trans);
3667 goto out;
3668 }
3669 }
3670
3671 switch (sa->cmd) {
3672 case BTRFS_QUOTA_CTL_ENABLE:
3673 ret = btrfs_quota_enable(trans, root->fs_info);
3674 break;
3675 case BTRFS_QUOTA_CTL_DISABLE:
3676 ret = btrfs_quota_disable(trans, root->fs_info);
3677 break;
3678 case BTRFS_QUOTA_CTL_RESCAN:
3679 ret = btrfs_quota_rescan(root->fs_info);
3680 break;
3681 default:
3682 ret = -EINVAL;
3683 break;
3684 }
3685
3686 if (copy_to_user(arg, sa, sizeof(*sa)))
3687 ret = -EFAULT;
3688
3689 if (trans) {
3690 err = btrfs_commit_transaction(trans, root);
3691 if (err && !ret)
3692 ret = err;
3693 }
Arne Jansen5d13a372011-09-14 15:53:51 +02003694out:
3695 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00003696drop_write:
3697 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02003698 return ret;
3699}
3700
Miao Xie905b0dd2012-11-26 08:50:11 +00003701static long btrfs_ioctl_qgroup_assign(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02003702{
Miao Xie905b0dd2012-11-26 08:50:11 +00003703 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02003704 struct btrfs_ioctl_qgroup_assign_args *sa;
3705 struct btrfs_trans_handle *trans;
3706 int ret;
3707 int err;
3708
3709 if (!capable(CAP_SYS_ADMIN))
3710 return -EPERM;
3711
Miao Xie905b0dd2012-11-26 08:50:11 +00003712 ret = mnt_want_write_file(file);
3713 if (ret)
3714 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02003715
3716 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00003717 if (IS_ERR(sa)) {
3718 ret = PTR_ERR(sa);
3719 goto drop_write;
3720 }
Arne Jansen5d13a372011-09-14 15:53:51 +02003721
3722 trans = btrfs_join_transaction(root);
3723 if (IS_ERR(trans)) {
3724 ret = PTR_ERR(trans);
3725 goto out;
3726 }
3727
3728 /* FIXME: check if the IDs really exist */
3729 if (sa->assign) {
3730 ret = btrfs_add_qgroup_relation(trans, root->fs_info,
3731 sa->src, sa->dst);
3732 } else {
3733 ret = btrfs_del_qgroup_relation(trans, root->fs_info,
3734 sa->src, sa->dst);
3735 }
3736
3737 err = btrfs_end_transaction(trans, root);
3738 if (err && !ret)
3739 ret = err;
3740
3741out:
3742 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00003743drop_write:
3744 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02003745 return ret;
3746}
3747
Miao Xie905b0dd2012-11-26 08:50:11 +00003748static long btrfs_ioctl_qgroup_create(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02003749{
Miao Xie905b0dd2012-11-26 08:50:11 +00003750 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02003751 struct btrfs_ioctl_qgroup_create_args *sa;
3752 struct btrfs_trans_handle *trans;
3753 int ret;
3754 int err;
3755
3756 if (!capable(CAP_SYS_ADMIN))
3757 return -EPERM;
3758
Miao Xie905b0dd2012-11-26 08:50:11 +00003759 ret = mnt_want_write_file(file);
3760 if (ret)
3761 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02003762
3763 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00003764 if (IS_ERR(sa)) {
3765 ret = PTR_ERR(sa);
3766 goto drop_write;
3767 }
Arne Jansen5d13a372011-09-14 15:53:51 +02003768
Miao Xied86e56c2012-11-15 11:35:41 +00003769 if (!sa->qgroupid) {
3770 ret = -EINVAL;
3771 goto out;
3772 }
3773
Arne Jansen5d13a372011-09-14 15:53:51 +02003774 trans = btrfs_join_transaction(root);
3775 if (IS_ERR(trans)) {
3776 ret = PTR_ERR(trans);
3777 goto out;
3778 }
3779
3780 /* FIXME: check if the IDs really exist */
3781 if (sa->create) {
3782 ret = btrfs_create_qgroup(trans, root->fs_info, sa->qgroupid,
3783 NULL);
3784 } else {
3785 ret = btrfs_remove_qgroup(trans, root->fs_info, sa->qgroupid);
3786 }
3787
3788 err = btrfs_end_transaction(trans, root);
3789 if (err && !ret)
3790 ret = err;
3791
3792out:
3793 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00003794drop_write:
3795 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02003796 return ret;
3797}
3798
Miao Xie905b0dd2012-11-26 08:50:11 +00003799static long btrfs_ioctl_qgroup_limit(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02003800{
Miao Xie905b0dd2012-11-26 08:50:11 +00003801 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02003802 struct btrfs_ioctl_qgroup_limit_args *sa;
3803 struct btrfs_trans_handle *trans;
3804 int ret;
3805 int err;
3806 u64 qgroupid;
3807
3808 if (!capable(CAP_SYS_ADMIN))
3809 return -EPERM;
3810
Miao Xie905b0dd2012-11-26 08:50:11 +00003811 ret = mnt_want_write_file(file);
3812 if (ret)
3813 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02003814
3815 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00003816 if (IS_ERR(sa)) {
3817 ret = PTR_ERR(sa);
3818 goto drop_write;
3819 }
Arne Jansen5d13a372011-09-14 15:53:51 +02003820
3821 trans = btrfs_join_transaction(root);
3822 if (IS_ERR(trans)) {
3823 ret = PTR_ERR(trans);
3824 goto out;
3825 }
3826
3827 qgroupid = sa->qgroupid;
3828 if (!qgroupid) {
3829 /* take the current subvol as qgroup */
3830 qgroupid = root->root_key.objectid;
3831 }
3832
3833 /* FIXME: check if the IDs really exist */
3834 ret = btrfs_limit_qgroup(trans, root->fs_info, qgroupid, &sa->lim);
3835
3836 err = btrfs_end_transaction(trans, root);
3837 if (err && !ret)
3838 ret = err;
3839
3840out:
3841 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00003842drop_write:
3843 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02003844 return ret;
3845}
3846
Alexander Block8ea05e32012-07-25 17:35:53 +02003847static long btrfs_ioctl_set_received_subvol(struct file *file,
3848 void __user *arg)
3849{
3850 struct btrfs_ioctl_received_subvol_args *sa = NULL;
3851 struct inode *inode = fdentry(file)->d_inode;
3852 struct btrfs_root *root = BTRFS_I(inode)->root;
3853 struct btrfs_root_item *root_item = &root->root_item;
3854 struct btrfs_trans_handle *trans;
3855 struct timespec ct = CURRENT_TIME;
3856 int ret = 0;
3857
3858 ret = mnt_want_write_file(file);
3859 if (ret < 0)
3860 return ret;
3861
3862 down_write(&root->fs_info->subvol_sem);
3863
3864 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
3865 ret = -EINVAL;
3866 goto out;
3867 }
3868
3869 if (btrfs_root_readonly(root)) {
3870 ret = -EROFS;
3871 goto out;
3872 }
3873
3874 if (!inode_owner_or_capable(inode)) {
3875 ret = -EACCES;
3876 goto out;
3877 }
3878
3879 sa = memdup_user(arg, sizeof(*sa));
3880 if (IS_ERR(sa)) {
3881 ret = PTR_ERR(sa);
3882 sa = NULL;
3883 goto out;
3884 }
3885
3886 trans = btrfs_start_transaction(root, 1);
3887 if (IS_ERR(trans)) {
3888 ret = PTR_ERR(trans);
3889 trans = NULL;
3890 goto out;
3891 }
3892
3893 sa->rtransid = trans->transid;
3894 sa->rtime.sec = ct.tv_sec;
3895 sa->rtime.nsec = ct.tv_nsec;
3896
3897 memcpy(root_item->received_uuid, sa->uuid, BTRFS_UUID_SIZE);
3898 btrfs_set_root_stransid(root_item, sa->stransid);
3899 btrfs_set_root_rtransid(root_item, sa->rtransid);
3900 root_item->stime.sec = cpu_to_le64(sa->stime.sec);
3901 root_item->stime.nsec = cpu_to_le32(sa->stime.nsec);
3902 root_item->rtime.sec = cpu_to_le64(sa->rtime.sec);
3903 root_item->rtime.nsec = cpu_to_le32(sa->rtime.nsec);
3904
3905 ret = btrfs_update_root(trans, root->fs_info->tree_root,
3906 &root->root_key, &root->root_item);
3907 if (ret < 0) {
3908 btrfs_end_transaction(trans, root);
3909 trans = NULL;
3910 goto out;
3911 } else {
3912 ret = btrfs_commit_transaction(trans, root);
3913 if (ret < 0)
3914 goto out;
3915 }
3916
3917 ret = copy_to_user(arg, sa, sizeof(*sa));
3918 if (ret)
3919 ret = -EFAULT;
3920
3921out:
3922 kfree(sa);
3923 up_write(&root->fs_info->subvol_sem);
3924 mnt_drop_write_file(file);
3925 return ret;
3926}
3927
jeff.liu867ab662013-01-05 02:48:01 +00003928static int btrfs_ioctl_get_fslabel(struct file *file, void __user *arg)
3929{
3930 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
3931 const char *label = root->fs_info->super_copy->label;
3932 size_t len = strnlen(label, BTRFS_LABEL_SIZE);
3933 int ret;
3934
3935 if (len == BTRFS_LABEL_SIZE) {
3936 pr_warn("btrfs: label is too long, return the first %zu bytes\n",
3937 --len);
3938 }
3939
3940 mutex_lock(&root->fs_info->volume_mutex);
3941 ret = copy_to_user(arg, label, len);
3942 mutex_unlock(&root->fs_info->volume_mutex);
3943
3944 return ret ? -EFAULT : 0;
3945}
3946
jeff.liua8bfd4a2013-01-05 02:48:08 +00003947static int btrfs_ioctl_set_fslabel(struct file *file, void __user *arg)
3948{
3949 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
3950 struct btrfs_super_block *super_block = root->fs_info->super_copy;
3951 struct btrfs_trans_handle *trans;
3952 char label[BTRFS_LABEL_SIZE];
3953 int ret;
3954
3955 if (!capable(CAP_SYS_ADMIN))
3956 return -EPERM;
3957
3958 if (copy_from_user(label, arg, sizeof(label)))
3959 return -EFAULT;
3960
3961 if (strnlen(label, BTRFS_LABEL_SIZE) == BTRFS_LABEL_SIZE) {
3962 pr_err("btrfs: unable to set label with more than %d bytes\n",
3963 BTRFS_LABEL_SIZE - 1);
3964 return -EINVAL;
3965 }
3966
3967 ret = mnt_want_write_file(file);
3968 if (ret)
3969 return ret;
3970
3971 mutex_lock(&root->fs_info->volume_mutex);
3972 trans = btrfs_start_transaction(root, 0);
3973 if (IS_ERR(trans)) {
3974 ret = PTR_ERR(trans);
3975 goto out_unlock;
3976 }
3977
3978 strcpy(super_block->label, label);
3979 ret = btrfs_end_transaction(trans, root);
3980
3981out_unlock:
3982 mutex_unlock(&root->fs_info->volume_mutex);
3983 mnt_drop_write_file(file);
3984 return ret;
3985}
3986
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003987long btrfs_ioctl(struct file *file, unsigned int
3988 cmd, unsigned long arg)
3989{
3990 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05003991 void __user *argp = (void __user *)arg;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003992
3993 switch (cmd) {
Christoph Hellwig6cbff002009-04-17 10:37:41 +02003994 case FS_IOC_GETFLAGS:
3995 return btrfs_ioctl_getflags(file, argp);
3996 case FS_IOC_SETFLAGS:
3997 return btrfs_ioctl_setflags(file, argp);
3998 case FS_IOC_GETVERSION:
3999 return btrfs_ioctl_getversion(file, argp);
Li Dongyangf7039b12011-03-24 10:24:28 +00004000 case FITRIM:
4001 return btrfs_ioctl_fitrim(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004002 case BTRFS_IOC_SNAP_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08004003 return btrfs_ioctl_snap_create(file, argp, 0);
Li Zefanfdfb1e42010-12-10 06:41:56 +00004004 case BTRFS_IOC_SNAP_CREATE_V2:
Li Zefanfa0d2b92010-12-20 15:53:28 +08004005 return btrfs_ioctl_snap_create_v2(file, argp, 0);
Chris Mason3de45862008-11-17 21:02:50 -05004006 case BTRFS_IOC_SUBVOL_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08004007 return btrfs_ioctl_snap_create(file, argp, 1);
Arne Jansen6f72c7e2011-09-14 15:58:21 +02004008 case BTRFS_IOC_SUBVOL_CREATE_V2:
4009 return btrfs_ioctl_snap_create_v2(file, argp, 1);
Yan, Zheng76dda932009-09-21 16:00:26 -04004010 case BTRFS_IOC_SNAP_DESTROY:
4011 return btrfs_ioctl_snap_destroy(file, argp);
Li Zefan0caa1022010-12-20 16:30:25 +08004012 case BTRFS_IOC_SUBVOL_GETFLAGS:
4013 return btrfs_ioctl_subvol_getflags(file, argp);
4014 case BTRFS_IOC_SUBVOL_SETFLAGS:
4015 return btrfs_ioctl_subvol_setflags(file, argp);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004016 case BTRFS_IOC_DEFAULT_SUBVOL:
4017 return btrfs_ioctl_default_subvol(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004018 case BTRFS_IOC_DEFRAG:
Chris Mason1e701a32010-03-11 09:42:04 -05004019 return btrfs_ioctl_defrag(file, NULL);
4020 case BTRFS_IOC_DEFRAG_RANGE:
4021 return btrfs_ioctl_defrag(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004022 case BTRFS_IOC_RESIZE:
Miao Xie198605a2012-11-26 08:43:45 +00004023 return btrfs_ioctl_resize(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004024 case BTRFS_IOC_ADD_DEV:
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05004025 return btrfs_ioctl_add_dev(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004026 case BTRFS_IOC_RM_DEV:
Miao Xieda249272012-11-26 08:44:50 +00004027 return btrfs_ioctl_rm_dev(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01004028 case BTRFS_IOC_FS_INFO:
4029 return btrfs_ioctl_fs_info(root, argp);
4030 case BTRFS_IOC_DEV_INFO:
4031 return btrfs_ioctl_dev_info(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004032 case BTRFS_IOC_BALANCE:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08004033 return btrfs_ioctl_balance(file, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004034 case BTRFS_IOC_CLONE:
Sage Weilc5c9cd42008-11-12 14:32:25 -05004035 return btrfs_ioctl_clone(file, arg, 0, 0, 0);
4036 case BTRFS_IOC_CLONE_RANGE:
Christoph Hellwig7a865e82008-12-02 09:52:24 -05004037 return btrfs_ioctl_clone_range(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004038 case BTRFS_IOC_TRANS_START:
4039 return btrfs_ioctl_trans_start(file);
4040 case BTRFS_IOC_TRANS_END:
4041 return btrfs_ioctl_trans_end(file);
Chris Masonac8e9812010-02-28 15:39:26 -05004042 case BTRFS_IOC_TREE_SEARCH:
4043 return btrfs_ioctl_tree_search(file, argp);
4044 case BTRFS_IOC_INO_LOOKUP:
4045 return btrfs_ioctl_ino_lookup(file, argp);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004046 case BTRFS_IOC_INO_PATHS:
4047 return btrfs_ioctl_ino_to_path(root, argp);
4048 case BTRFS_IOC_LOGICAL_INO:
4049 return btrfs_ioctl_logical_to_ino(root, argp);
Josef Bacik1406e432010-01-13 18:19:06 +00004050 case BTRFS_IOC_SPACE_INFO:
4051 return btrfs_ioctl_space_info(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004052 case BTRFS_IOC_SYNC:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004053 btrfs_sync_fs(file->f_dentry->d_sb, 1);
4054 return 0;
Sage Weil46204592010-10-29 15:41:32 -04004055 case BTRFS_IOC_START_SYNC:
Miao Xie9a8c28b2012-11-26 08:40:43 +00004056 return btrfs_ioctl_start_sync(root, argp);
Sage Weil46204592010-10-29 15:41:32 -04004057 case BTRFS_IOC_WAIT_SYNC:
Miao Xie9a8c28b2012-11-26 08:40:43 +00004058 return btrfs_ioctl_wait_sync(root, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01004059 case BTRFS_IOC_SCRUB:
Miao Xieb8e95482012-11-26 08:48:01 +00004060 return btrfs_ioctl_scrub(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01004061 case BTRFS_IOC_SCRUB_CANCEL:
4062 return btrfs_ioctl_scrub_cancel(root, argp);
4063 case BTRFS_IOC_SCRUB_PROGRESS:
4064 return btrfs_ioctl_scrub_progress(root, argp);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004065 case BTRFS_IOC_BALANCE_V2:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08004066 return btrfs_ioctl_balance(file, argp);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004067 case BTRFS_IOC_BALANCE_CTL:
4068 return btrfs_ioctl_balance_ctl(root, arg);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004069 case BTRFS_IOC_BALANCE_PROGRESS:
4070 return btrfs_ioctl_balance_progress(root, argp);
Alexander Block8ea05e32012-07-25 17:35:53 +02004071 case BTRFS_IOC_SET_RECEIVED_SUBVOL:
4072 return btrfs_ioctl_set_received_subvol(file, argp);
Alexander Block31db9f72012-07-25 23:19:24 +02004073 case BTRFS_IOC_SEND:
4074 return btrfs_ioctl_send(file, argp);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004075 case BTRFS_IOC_GET_DEV_STATS:
David Sterbab27f7c02012-06-22 06:30:39 -06004076 return btrfs_ioctl_get_dev_stats(root, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02004077 case BTRFS_IOC_QUOTA_CTL:
Miao Xie905b0dd2012-11-26 08:50:11 +00004078 return btrfs_ioctl_quota_ctl(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02004079 case BTRFS_IOC_QGROUP_ASSIGN:
Miao Xie905b0dd2012-11-26 08:50:11 +00004080 return btrfs_ioctl_qgroup_assign(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02004081 case BTRFS_IOC_QGROUP_CREATE:
Miao Xie905b0dd2012-11-26 08:50:11 +00004082 return btrfs_ioctl_qgroup_create(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02004083 case BTRFS_IOC_QGROUP_LIMIT:
Miao Xie905b0dd2012-11-26 08:50:11 +00004084 return btrfs_ioctl_qgroup_limit(file, argp);
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004085 case BTRFS_IOC_DEV_REPLACE:
4086 return btrfs_ioctl_dev_replace(root, argp);
jeff.liu867ab662013-01-05 02:48:01 +00004087 case BTRFS_IOC_GET_FSLABEL:
4088 return btrfs_ioctl_get_fslabel(file, argp);
jeff.liua8bfd4a2013-01-05 02:48:08 +00004089 case BTRFS_IOC_SET_FSLABEL:
4090 return btrfs_ioctl_set_fslabel(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004091 }
4092
4093 return -ENOTTY;
4094}