blob: 5b3429ab8ec1d79f1157b51fa33910b3ebaa57d7 [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>
Chris Mason4b4e25f2008-11-20 10:22:27 -050045#include "compat.h"
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040046#include "ctree.h"
47#include "disk-io.h"
48#include "transaction.h"
49#include "btrfs_inode.h"
50#include "ioctl.h"
51#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"
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040058
Christoph Hellwig6cbff002009-04-17 10:37:41 +020059/* Mask out flags that are inappropriate for the given type of inode. */
60static inline __u32 btrfs_mask_flags(umode_t mode, __u32 flags)
61{
62 if (S_ISDIR(mode))
63 return flags;
64 else if (S_ISREG(mode))
65 return flags & ~FS_DIRSYNC_FL;
66 else
67 return flags & (FS_NODUMP_FL | FS_NOATIME_FL);
68}
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040069
Christoph Hellwig6cbff002009-04-17 10:37:41 +020070/*
71 * Export inode flags to the format expected by the FS_IOC_GETFLAGS ioctl.
72 */
73static unsigned int btrfs_flags_to_ioctl(unsigned int flags)
74{
75 unsigned int iflags = 0;
76
77 if (flags & BTRFS_INODE_SYNC)
78 iflags |= FS_SYNC_FL;
79 if (flags & BTRFS_INODE_IMMUTABLE)
80 iflags |= FS_IMMUTABLE_FL;
81 if (flags & BTRFS_INODE_APPEND)
82 iflags |= FS_APPEND_FL;
83 if (flags & BTRFS_INODE_NODUMP)
84 iflags |= FS_NODUMP_FL;
85 if (flags & BTRFS_INODE_NOATIME)
86 iflags |= FS_NOATIME_FL;
87 if (flags & BTRFS_INODE_DIRSYNC)
88 iflags |= FS_DIRSYNC_FL;
Li Zefand0092bd2011-04-15 03:03:06 +000089 if (flags & BTRFS_INODE_NODATACOW)
90 iflags |= FS_NOCOW_FL;
91
92 if ((flags & BTRFS_INODE_COMPRESS) && !(flags & BTRFS_INODE_NOCOMPRESS))
93 iflags |= FS_COMPR_FL;
94 else if (flags & BTRFS_INODE_NOCOMPRESS)
95 iflags |= FS_NOCOMP_FL;
Christoph Hellwig6cbff002009-04-17 10:37:41 +020096
97 return iflags;
98}
99
100/*
101 * Update inode->i_flags based on the btrfs internal flags.
102 */
103void btrfs_update_iflags(struct inode *inode)
104{
105 struct btrfs_inode *ip = BTRFS_I(inode);
106
107 inode->i_flags &= ~(S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC);
108
109 if (ip->flags & BTRFS_INODE_SYNC)
110 inode->i_flags |= S_SYNC;
111 if (ip->flags & BTRFS_INODE_IMMUTABLE)
112 inode->i_flags |= S_IMMUTABLE;
113 if (ip->flags & BTRFS_INODE_APPEND)
114 inode->i_flags |= S_APPEND;
115 if (ip->flags & BTRFS_INODE_NOATIME)
116 inode->i_flags |= S_NOATIME;
117 if (ip->flags & BTRFS_INODE_DIRSYNC)
118 inode->i_flags |= S_DIRSYNC;
119}
120
121/*
122 * Inherit flags from the parent inode.
123 *
Josef Bacike27425d2011-09-27 11:01:30 -0400124 * Currently only the compression flags and the cow flags are inherited.
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200125 */
126void btrfs_inherit_iflags(struct inode *inode, struct inode *dir)
127{
Chris Mason0b4dcea2009-06-11 11:13:35 -0400128 unsigned int flags;
129
130 if (!dir)
131 return;
132
133 flags = BTRFS_I(dir)->flags;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200134
Josef Bacike27425d2011-09-27 11:01:30 -0400135 if (flags & BTRFS_INODE_NOCOMPRESS) {
136 BTRFS_I(inode)->flags &= ~BTRFS_INODE_COMPRESS;
137 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
138 } else if (flags & BTRFS_INODE_COMPRESS) {
139 BTRFS_I(inode)->flags &= ~BTRFS_INODE_NOCOMPRESS;
140 BTRFS_I(inode)->flags |= BTRFS_INODE_COMPRESS;
141 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200142
Josef Bacike27425d2011-09-27 11:01:30 -0400143 if (flags & BTRFS_INODE_NODATACOW)
144 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW;
145
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200146 btrfs_update_iflags(inode);
147}
148
149static int btrfs_ioctl_getflags(struct file *file, void __user *arg)
150{
151 struct btrfs_inode *ip = BTRFS_I(file->f_path.dentry->d_inode);
152 unsigned int flags = btrfs_flags_to_ioctl(ip->flags);
153
154 if (copy_to_user(arg, &flags, sizeof(flags)))
155 return -EFAULT;
156 return 0;
157}
158
Liu Bo75e7cb72011-03-22 10:12:20 +0000159static int check_flags(unsigned int flags)
160{
161 if (flags & ~(FS_IMMUTABLE_FL | FS_APPEND_FL | \
162 FS_NOATIME_FL | FS_NODUMP_FL | \
163 FS_SYNC_FL | FS_DIRSYNC_FL | \
Li Zefane1e8fb62011-04-15 03:02:49 +0000164 FS_NOCOMP_FL | FS_COMPR_FL |
165 FS_NOCOW_FL))
Liu Bo75e7cb72011-03-22 10:12:20 +0000166 return -EOPNOTSUPP;
167
168 if ((flags & FS_NOCOMP_FL) && (flags & FS_COMPR_FL))
169 return -EINVAL;
170
Liu Bo75e7cb72011-03-22 10:12:20 +0000171 return 0;
172}
173
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200174static int btrfs_ioctl_setflags(struct file *file, void __user *arg)
175{
176 struct inode *inode = file->f_path.dentry->d_inode;
177 struct btrfs_inode *ip = BTRFS_I(inode);
178 struct btrfs_root *root = ip->root;
179 struct btrfs_trans_handle *trans;
180 unsigned int flags, oldflags;
181 int ret;
Li Zefanf062abf2011-12-29 13:36:45 +0800182 u64 ip_oldflags;
183 unsigned int i_oldflags;
David Sterba7e97b8d2012-09-07 05:56:55 -0600184 umode_t mode;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200185
Li Zefanb83cc962010-12-20 16:04:08 +0800186 if (btrfs_root_readonly(root))
187 return -EROFS;
188
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200189 if (copy_from_user(&flags, arg, sizeof(flags)))
190 return -EFAULT;
191
Liu Bo75e7cb72011-03-22 10:12:20 +0000192 ret = check_flags(flags);
193 if (ret)
194 return ret;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200195
Serge E. Hallyn2e149672011-03-23 16:43:26 -0700196 if (!inode_owner_or_capable(inode))
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200197 return -EACCES;
198
Jan Karae7848682012-06-12 16:20:32 +0200199 ret = mnt_want_write_file(file);
200 if (ret)
201 return ret;
202
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200203 mutex_lock(&inode->i_mutex);
204
Li Zefanf062abf2011-12-29 13:36:45 +0800205 ip_oldflags = ip->flags;
206 i_oldflags = inode->i_flags;
David Sterba7e97b8d2012-09-07 05:56:55 -0600207 mode = inode->i_mode;
Li Zefanf062abf2011-12-29 13:36:45 +0800208
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200209 flags = btrfs_mask_flags(inode->i_mode, flags);
210 oldflags = btrfs_flags_to_ioctl(ip->flags);
211 if ((flags ^ oldflags) & (FS_APPEND_FL | FS_IMMUTABLE_FL)) {
212 if (!capable(CAP_LINUX_IMMUTABLE)) {
213 ret = -EPERM;
214 goto out_unlock;
215 }
216 }
217
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200218 if (flags & FS_SYNC_FL)
219 ip->flags |= BTRFS_INODE_SYNC;
220 else
221 ip->flags &= ~BTRFS_INODE_SYNC;
222 if (flags & FS_IMMUTABLE_FL)
223 ip->flags |= BTRFS_INODE_IMMUTABLE;
224 else
225 ip->flags &= ~BTRFS_INODE_IMMUTABLE;
226 if (flags & FS_APPEND_FL)
227 ip->flags |= BTRFS_INODE_APPEND;
228 else
229 ip->flags &= ~BTRFS_INODE_APPEND;
230 if (flags & FS_NODUMP_FL)
231 ip->flags |= BTRFS_INODE_NODUMP;
232 else
233 ip->flags &= ~BTRFS_INODE_NODUMP;
234 if (flags & FS_NOATIME_FL)
235 ip->flags |= BTRFS_INODE_NOATIME;
236 else
237 ip->flags &= ~BTRFS_INODE_NOATIME;
238 if (flags & FS_DIRSYNC_FL)
239 ip->flags |= BTRFS_INODE_DIRSYNC;
240 else
241 ip->flags &= ~BTRFS_INODE_DIRSYNC;
David Sterba7e97b8d2012-09-07 05:56:55 -0600242 if (flags & FS_NOCOW_FL) {
243 if (S_ISREG(mode)) {
244 /*
245 * It's safe to turn csums off here, no extents exist.
246 * Otherwise we want the flag to reflect the real COW
247 * status of the file and will not set it.
248 */
249 if (inode->i_size == 0)
250 ip->flags |= BTRFS_INODE_NODATACOW
251 | BTRFS_INODE_NODATASUM;
252 } else {
253 ip->flags |= BTRFS_INODE_NODATACOW;
254 }
255 } else {
256 /*
257 * Revert back under same assuptions as above
258 */
259 if (S_ISREG(mode)) {
260 if (inode->i_size == 0)
261 ip->flags &= ~(BTRFS_INODE_NODATACOW
262 | BTRFS_INODE_NODATASUM);
263 } else {
264 ip->flags &= ~BTRFS_INODE_NODATACOW;
265 }
266 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200267
Liu Bo75e7cb72011-03-22 10:12:20 +0000268 /*
269 * The COMPRESS flag can only be changed by users, while the NOCOMPRESS
270 * flag may be changed automatically if compression code won't make
271 * things smaller.
272 */
273 if (flags & FS_NOCOMP_FL) {
274 ip->flags &= ~BTRFS_INODE_COMPRESS;
275 ip->flags |= BTRFS_INODE_NOCOMPRESS;
276 } else if (flags & FS_COMPR_FL) {
277 ip->flags |= BTRFS_INODE_COMPRESS;
278 ip->flags &= ~BTRFS_INODE_NOCOMPRESS;
Li Zefanebcb9042011-04-15 03:03:17 +0000279 } else {
280 ip->flags &= ~(BTRFS_INODE_COMPRESS | BTRFS_INODE_NOCOMPRESS);
Liu Bo75e7cb72011-03-22 10:12:20 +0000281 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200282
Li Zefan4da6f1a2011-12-29 13:39:50 +0800283 trans = btrfs_start_transaction(root, 1);
Li Zefanf062abf2011-12-29 13:36:45 +0800284 if (IS_ERR(trans)) {
285 ret = PTR_ERR(trans);
286 goto out_drop;
287 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200288
Li Zefan306424cc2011-12-14 20:12:02 -0500289 btrfs_update_iflags(inode);
Josef Bacik0c4d2d92012-04-05 15:03:02 -0400290 inode_inc_iversion(inode);
Li Zefan306424cc2011-12-14 20:12:02 -0500291 inode->i_ctime = CURRENT_TIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200292 ret = btrfs_update_inode(trans, root, inode);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200293
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200294 btrfs_end_transaction(trans, root);
Li Zefanf062abf2011-12-29 13:36:45 +0800295 out_drop:
296 if (ret) {
297 ip->flags = ip_oldflags;
298 inode->i_flags = i_oldflags;
299 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200300
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200301 out_unlock:
302 mutex_unlock(&inode->i_mutex);
Jan Karae7848682012-06-12 16:20:32 +0200303 mnt_drop_write_file(file);
liubo2d4e6f62011-02-24 09:38:16 +0000304 return ret;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200305}
306
307static int btrfs_ioctl_getversion(struct file *file, int __user *arg)
308{
309 struct inode *inode = file->f_path.dentry->d_inode;
310
311 return put_user(inode->i_generation, arg);
312}
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400313
Li Dongyangf7039b12011-03-24 10:24:28 +0000314static noinline int btrfs_ioctl_fitrim(struct file *file, void __user *arg)
315{
Al Viro815745c2011-11-17 15:40:49 -0500316 struct btrfs_fs_info *fs_info = btrfs_sb(fdentry(file)->d_sb);
Li Dongyangf7039b12011-03-24 10:24:28 +0000317 struct btrfs_device *device;
318 struct request_queue *q;
319 struct fstrim_range range;
320 u64 minlen = ULLONG_MAX;
321 u64 num_devices = 0;
Al Viro815745c2011-11-17 15:40:49 -0500322 u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy);
Li Dongyangf7039b12011-03-24 10:24:28 +0000323 int ret;
324
325 if (!capable(CAP_SYS_ADMIN))
326 return -EPERM;
327
Xiao Guangrong1f781602011-04-20 10:09:16 +0000328 rcu_read_lock();
329 list_for_each_entry_rcu(device, &fs_info->fs_devices->devices,
330 dev_list) {
Li Dongyangf7039b12011-03-24 10:24:28 +0000331 if (!device->bdev)
332 continue;
333 q = bdev_get_queue(device->bdev);
334 if (blk_queue_discard(q)) {
335 num_devices++;
336 minlen = min((u64)q->limits.discard_granularity,
337 minlen);
338 }
339 }
Xiao Guangrong1f781602011-04-20 10:09:16 +0000340 rcu_read_unlock();
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200341
Li Dongyangf7039b12011-03-24 10:24:28 +0000342 if (!num_devices)
343 return -EOPNOTSUPP;
Li Dongyangf7039b12011-03-24 10:24:28 +0000344 if (copy_from_user(&range, arg, sizeof(range)))
345 return -EFAULT;
Lukas Czernere515c182012-10-16 09:34:36 +0000346 if (range.start > total_bytes ||
347 range.len < fs_info->sb->s_blocksize)
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200348 return -EINVAL;
Li Dongyangf7039b12011-03-24 10:24:28 +0000349
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200350 range.len = min(range.len, total_bytes - range.start);
Li Dongyangf7039b12011-03-24 10:24:28 +0000351 range.minlen = max(range.minlen, minlen);
Al Viro815745c2011-11-17 15:40:49 -0500352 ret = btrfs_trim_fs(fs_info->tree_root, &range);
Li Dongyangf7039b12011-03-24 10:24:28 +0000353 if (ret < 0)
354 return ret;
355
356 if (copy_to_user(arg, &range, sizeof(range)))
357 return -EFAULT;
358
359 return 0;
360}
361
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400362static noinline int create_subvol(struct btrfs_root *root,
363 struct dentry *dentry,
Sage Weil72fd0322010-10-29 15:41:32 -0400364 char *name, int namelen,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200365 u64 *async_transid,
366 struct btrfs_qgroup_inherit **inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400367{
368 struct btrfs_trans_handle *trans;
369 struct btrfs_key key;
370 struct btrfs_root_item root_item;
371 struct btrfs_inode_item *inode_item;
372 struct extent_buffer *leaf;
Yan, Zheng76dda932009-09-21 16:00:26 -0400373 struct btrfs_root *new_root;
Al Viro2fbe8c82011-07-16 21:38:06 -0400374 struct dentry *parent = dentry->d_parent;
Josef Bacik6a912212010-11-20 09:48:00 +0000375 struct inode *dir;
Alexander Block8ea05e32012-07-25 17:35:53 +0200376 struct timespec cur_time = CURRENT_TIME;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400377 int ret;
378 int err;
379 u64 objectid;
380 u64 new_dirid = BTRFS_FIRST_FREE_OBJECTID;
Chris Mason3de45862008-11-17 21:02:50 -0500381 u64 index = 0;
Alexander Block8ea05e32012-07-25 17:35:53 +0200382 uuid_le new_uuid;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400383
Li Zefan581bb052011-04-20 10:06:11 +0800384 ret = btrfs_find_free_objectid(root->fs_info->tree_root, &objectid);
Al Viro2fbe8c82011-07-16 21:38:06 -0400385 if (ret)
Yan, Zhenga22285a2010-05-16 10:48:46 -0400386 return ret;
Josef Bacik6a912212010-11-20 09:48:00 +0000387
388 dir = parent->d_inode;
389
Josef Bacik9ed74f22009-09-11 16:12:44 -0400390 /*
391 * 1 - inode item
392 * 2 - refs
393 * 1 - root item
394 * 2 - dir items
395 */
Yan, Zhenga22285a2010-05-16 10:48:46 -0400396 trans = btrfs_start_transaction(root, 6);
Al Viro2fbe8c82011-07-16 21:38:06 -0400397 if (IS_ERR(trans))
Yan, Zhenga22285a2010-05-16 10:48:46 -0400398 return PTR_ERR(trans);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400399
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200400 ret = btrfs_qgroup_inherit(trans, root->fs_info, 0, objectid,
401 inherit ? *inherit : NULL);
402 if (ret)
403 goto fail;
404
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400405 leaf = btrfs_alloc_free_block(trans, root, root->leafsize,
Jan Schmidt5581a512012-05-16 17:04:52 +0200406 0, objectid, NULL, 0, 0, 0);
Josef Bacik8e8a1e32008-07-24 12:17:14 -0400407 if (IS_ERR(leaf)) {
408 ret = PTR_ERR(leaf);
409 goto fail;
410 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400411
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400412 memset_extent_buffer(leaf, 0, 0, sizeof(struct btrfs_header));
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400413 btrfs_set_header_bytenr(leaf, leaf->start);
414 btrfs_set_header_generation(leaf, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400415 btrfs_set_header_backref_rev(leaf, BTRFS_MIXED_BACKREF_REV);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400416 btrfs_set_header_owner(leaf, objectid);
417
418 write_extent_buffer(leaf, root->fs_info->fsid,
419 (unsigned long)btrfs_header_fsid(leaf),
420 BTRFS_FSID_SIZE);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400421 write_extent_buffer(leaf, root->fs_info->chunk_tree_uuid,
422 (unsigned long)btrfs_header_chunk_tree_uuid(leaf),
423 BTRFS_UUID_SIZE);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400424 btrfs_mark_buffer_dirty(leaf);
425
Alexander Block8ea05e32012-07-25 17:35:53 +0200426 memset(&root_item, 0, sizeof(root_item));
427
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400428 inode_item = &root_item.inode;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400429 inode_item->generation = cpu_to_le64(1);
430 inode_item->size = cpu_to_le64(3);
431 inode_item->nlink = cpu_to_le32(1);
Yan Zhenga76a3cd2008-10-09 11:46:29 -0400432 inode_item->nbytes = cpu_to_le64(root->leafsize);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400433 inode_item->mode = cpu_to_le32(S_IFDIR | 0755);
434
Li Zefan08fe4db2011-03-28 02:01:25 +0000435 root_item.flags = 0;
436 root_item.byte_limit = 0;
437 inode_item->flags = cpu_to_le64(BTRFS_INODE_ROOT_ITEM_INIT);
438
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400439 btrfs_set_root_bytenr(&root_item, leaf->start);
Yan Zheng84234f32008-10-29 14:49:05 -0400440 btrfs_set_root_generation(&root_item, trans->transid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400441 btrfs_set_root_level(&root_item, 0);
442 btrfs_set_root_refs(&root_item, 1);
Yan, Zheng86b9f2e2009-11-12 09:36:50 +0000443 btrfs_set_root_used(&root_item, leaf->len);
Yan Zheng80ff3852008-10-30 14:20:02 -0400444 btrfs_set_root_last_snapshot(&root_item, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400445
Alexander Block8ea05e32012-07-25 17:35:53 +0200446 btrfs_set_root_generation_v2(&root_item,
447 btrfs_root_generation(&root_item));
448 uuid_le_gen(&new_uuid);
449 memcpy(root_item.uuid, new_uuid.b, BTRFS_UUID_SIZE);
450 root_item.otime.sec = cpu_to_le64(cur_time.tv_sec);
Dan Carpenterdadd1102012-07-30 02:10:44 -0600451 root_item.otime.nsec = cpu_to_le32(cur_time.tv_nsec);
Alexander Block8ea05e32012-07-25 17:35:53 +0200452 root_item.ctime = root_item.otime;
453 btrfs_set_root_ctransid(&root_item, trans->transid);
454 btrfs_set_root_otransid(&root_item, trans->transid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400455
Chris Mason925baed2008-06-25 16:01:30 -0400456 btrfs_tree_unlock(leaf);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400457 free_extent_buffer(leaf);
458 leaf = NULL;
459
460 btrfs_set_root_dirid(&root_item, new_dirid);
461
462 key.objectid = objectid;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400463 key.offset = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400464 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
465 ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
466 &root_item);
467 if (ret)
468 goto fail;
469
Yan, Zheng76dda932009-09-21 16:00:26 -0400470 key.offset = (u64)-1;
471 new_root = btrfs_read_fs_root_no_name(root->fs_info, &key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100472 if (IS_ERR(new_root)) {
473 btrfs_abort_transaction(trans, root, PTR_ERR(new_root));
474 ret = PTR_ERR(new_root);
475 goto fail;
476 }
Yan, Zheng76dda932009-09-21 16:00:26 -0400477
478 btrfs_record_root_in_trans(trans, new_root);
479
Josef Bacikd82a6f12011-05-11 15:26:06 -0400480 ret = btrfs_create_subvol_root(trans, new_root, new_dirid);
Mark Fashehce598972011-07-26 11:32:23 -0700481 if (ret) {
482 /* We potentially lose an unused inode item here */
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100483 btrfs_abort_transaction(trans, root, ret);
Mark Fashehce598972011-07-26 11:32:23 -0700484 goto fail;
485 }
486
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400487 /*
488 * insert the directory item
489 */
Chris Mason3de45862008-11-17 21:02:50 -0500490 ret = btrfs_set_inode_index(dir, &index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100491 if (ret) {
492 btrfs_abort_transaction(trans, root, ret);
493 goto fail;
494 }
Chris Mason3de45862008-11-17 21:02:50 -0500495
496 ret = btrfs_insert_dir_item(trans, root,
Miao Xie16cdcec2011-04-22 18:12:22 +0800497 name, namelen, dir, &key,
Chris Mason3de45862008-11-17 21:02:50 -0500498 BTRFS_FT_DIR, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100499 if (ret) {
500 btrfs_abort_transaction(trans, root, ret);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400501 goto fail;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100502 }
Chris Mason0660b5a2008-11-17 20:37:39 -0500503
Yan Zheng52c26172009-01-05 15:43:43 -0500504 btrfs_i_size_write(dir, dir->i_size + namelen * 2);
505 ret = btrfs_update_inode(trans, root, dir);
506 BUG_ON(ret);
507
Chris Mason0660b5a2008-11-17 20:37:39 -0500508 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -0400509 objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +0800510 btrfs_ino(dir), index, name, namelen);
Yan, Zheng76dda932009-09-21 16:00:26 -0400511
Chris Mason0660b5a2008-11-17 20:37:39 -0500512 BUG_ON(ret);
513
Yan, Zheng76dda932009-09-21 16:00:26 -0400514 d_instantiate(dentry, btrfs_lookup_dentry(dir, dentry));
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400515fail:
Sage Weil72fd0322010-10-29 15:41:32 -0400516 if (async_transid) {
517 *async_transid = trans->transid;
518 err = btrfs_commit_transaction_async(trans, root, 1);
519 } else {
520 err = btrfs_commit_transaction(trans, root);
521 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400522 if (err && !ret)
523 ret = err;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400524 return ret;
525}
526
Sage Weil72fd0322010-10-29 15:41:32 -0400527static int create_snapshot(struct btrfs_root *root, struct dentry *dentry,
Li Zefanb83cc962010-12-20 16:04:08 +0800528 char *name, int namelen, u64 *async_transid,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200529 bool readonly, struct btrfs_qgroup_inherit **inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400530{
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000531 struct inode *inode;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400532 struct btrfs_pending_snapshot *pending_snapshot;
533 struct btrfs_trans_handle *trans;
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000534 int ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400535
536 if (!root->ref_cows)
537 return -EINVAL;
538
Yan, Zhenga22285a2010-05-16 10:48:46 -0400539 pending_snapshot = kzalloc(sizeof(*pending_snapshot), GFP_NOFS);
540 if (!pending_snapshot)
541 return -ENOMEM;
542
Miao Xie66d8f3d2012-09-06 04:02:28 -0600543 btrfs_init_block_rsv(&pending_snapshot->block_rsv,
544 BTRFS_BLOCK_RSV_TEMP);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400545 pending_snapshot->dentry = dentry;
546 pending_snapshot->root = root;
Li Zefanb83cc962010-12-20 16:04:08 +0800547 pending_snapshot->readonly = readonly;
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200548 if (inherit) {
549 pending_snapshot->inherit = *inherit;
550 *inherit = NULL; /* take responsibility to free it */
551 }
Yan, Zhenga22285a2010-05-16 10:48:46 -0400552
Miao Xie48c03c42012-09-06 04:03:56 -0600553 trans = btrfs_start_transaction(root->fs_info->extent_root, 6);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400554 if (IS_ERR(trans)) {
555 ret = PTR_ERR(trans);
556 goto fail;
557 }
558
559 ret = btrfs_snap_reserve_metadata(trans, pending_snapshot);
560 BUG_ON(ret);
561
Josef Bacik83515832011-06-14 15:16:14 -0400562 spin_lock(&root->fs_info->trans_lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400563 list_add(&pending_snapshot->list,
564 &trans->transaction->pending_snapshots);
Josef Bacik83515832011-06-14 15:16:14 -0400565 spin_unlock(&root->fs_info->trans_lock);
Sage Weil72fd0322010-10-29 15:41:32 -0400566 if (async_transid) {
567 *async_transid = trans->transid;
568 ret = btrfs_commit_transaction_async(trans,
569 root->fs_info->extent_root, 1);
570 } else {
571 ret = btrfs_commit_transaction(trans,
572 root->fs_info->extent_root);
573 }
Josef Bacikc37b2b62012-10-22 15:51:44 -0400574 if (ret)
575 goto fail;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400576
577 ret = pending_snapshot->error;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400578 if (ret)
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000579 goto fail;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400580
Josef Bacik66b4ffd2011-01-31 16:22:42 -0500581 ret = btrfs_orphan_cleanup(pending_snapshot->snap);
582 if (ret)
583 goto fail;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400584
Al Viro2fbe8c82011-07-16 21:38:06 -0400585 inode = btrfs_lookup_dentry(dentry->d_parent->d_inode, dentry);
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000586 if (IS_ERR(inode)) {
587 ret = PTR_ERR(inode);
588 goto fail;
589 }
590 BUG_ON(!inode);
591 d_instantiate(dentry, inode);
592 ret = 0;
593fail:
Yan, Zhenga22285a2010-05-16 10:48:46 -0400594 kfree(pending_snapshot);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400595 return ret;
596}
597
Sage Weil4260f7c2010-10-29 15:46:43 -0400598/* copy of check_sticky in fs/namei.c()
599* It's inline, so penalty for filesystems that don't use sticky bit is
600* minimal.
601*/
602static inline int btrfs_check_sticky(struct inode *dir, struct inode *inode)
603{
Eric W. Biederman2f2f43d2012-02-10 11:05:07 -0800604 kuid_t fsuid = current_fsuid();
Sage Weil4260f7c2010-10-29 15:46:43 -0400605
606 if (!(dir->i_mode & S_ISVTX))
607 return 0;
Eric W. Biederman2f2f43d2012-02-10 11:05:07 -0800608 if (uid_eq(inode->i_uid, fsuid))
Sage Weil4260f7c2010-10-29 15:46:43 -0400609 return 0;
Eric W. Biederman2f2f43d2012-02-10 11:05:07 -0800610 if (uid_eq(dir->i_uid, fsuid))
Sage Weil4260f7c2010-10-29 15:46:43 -0400611 return 0;
612 return !capable(CAP_FOWNER);
613}
614
615/* copy of may_delete in fs/namei.c()
616 * Check whether we can remove a link victim from directory dir, check
617 * whether the type of victim is right.
618 * 1. We can't do it if dir is read-only (done in permission())
619 * 2. We should have write and exec permissions on dir
620 * 3. We can't remove anything from append-only dir
621 * 4. We can't do anything with immutable dir (done in permission())
622 * 5. If the sticky bit on dir is set we should either
623 * a. be owner of dir, or
624 * b. be owner of victim, or
625 * c. have CAP_FOWNER capability
626 * 6. If the victim is append-only or immutable we can't do antyhing with
627 * links pointing to it.
628 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
629 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
630 * 9. We can't remove a root or mountpoint.
631 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
632 * nfs_async_unlink().
633 */
634
635static int btrfs_may_delete(struct inode *dir,struct dentry *victim,int isdir)
636{
637 int error;
638
639 if (!victim->d_inode)
640 return -ENOENT;
641
642 BUG_ON(victim->d_parent->d_inode != dir);
Jeff Layton4fa6b5e2012-10-10 15:25:25 -0400643 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
Sage Weil4260f7c2010-10-29 15:46:43 -0400644
645 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
646 if (error)
647 return error;
648 if (IS_APPEND(dir))
649 return -EPERM;
650 if (btrfs_check_sticky(dir, victim->d_inode)||
651 IS_APPEND(victim->d_inode)||
652 IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode))
653 return -EPERM;
654 if (isdir) {
655 if (!S_ISDIR(victim->d_inode->i_mode))
656 return -ENOTDIR;
657 if (IS_ROOT(victim))
658 return -EBUSY;
659 } else if (S_ISDIR(victim->d_inode->i_mode))
660 return -EISDIR;
661 if (IS_DEADDIR(dir))
662 return -ENOENT;
663 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
664 return -EBUSY;
665 return 0;
666}
667
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400668/* copy of may_create in fs/namei.c() */
669static inline int btrfs_may_create(struct inode *dir, struct dentry *child)
670{
671 if (child->d_inode)
672 return -EEXIST;
673 if (IS_DEADDIR(dir))
674 return -ENOENT;
675 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
676}
677
678/*
679 * Create a new subvolume below @parent. This is largely modeled after
680 * sys_mkdirat and vfs_mkdir, but we only do a single component lookup
681 * inside this filesystem so it's quite a bit simpler.
682 */
Yan, Zheng76dda932009-09-21 16:00:26 -0400683static noinline int btrfs_mksubvol(struct path *parent,
684 char *name, int namelen,
Sage Weil72fd0322010-10-29 15:41:32 -0400685 struct btrfs_root *snap_src,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200686 u64 *async_transid, bool readonly,
687 struct btrfs_qgroup_inherit **inherit)
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400688{
Yan, Zheng76dda932009-09-21 16:00:26 -0400689 struct inode *dir = parent->dentry->d_inode;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400690 struct dentry *dentry;
691 int error;
692
Yan, Zheng76dda932009-09-21 16:00:26 -0400693 mutex_lock_nested(&dir->i_mutex, I_MUTEX_PARENT);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400694
695 dentry = lookup_one_len(name, parent->dentry, namelen);
696 error = PTR_ERR(dentry);
697 if (IS_ERR(dentry))
698 goto out_unlock;
699
700 error = -EEXIST;
701 if (dentry->d_inode)
702 goto out_dput;
703
Yan, Zheng76dda932009-09-21 16:00:26 -0400704 error = btrfs_may_create(dir, dentry);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400705 if (error)
Liu Boa874a632012-06-29 03:58:46 -0600706 goto out_dput;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400707
Yan, Zheng76dda932009-09-21 16:00:26 -0400708 down_read(&BTRFS_I(dir)->root->fs_info->subvol_sem);
709
710 if (btrfs_root_refs(&BTRFS_I(dir)->root->root_item) == 0)
711 goto out_up_read;
712
Chris Mason3de45862008-11-17 21:02:50 -0500713 if (snap_src) {
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200714 error = create_snapshot(snap_src, dentry, name, namelen,
715 async_transid, readonly, inherit);
Chris Mason3de45862008-11-17 21:02:50 -0500716 } else {
Yan, Zheng76dda932009-09-21 16:00:26 -0400717 error = create_subvol(BTRFS_I(dir)->root, dentry,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200718 name, namelen, async_transid, inherit);
Chris Mason3de45862008-11-17 21:02:50 -0500719 }
Yan, Zheng76dda932009-09-21 16:00:26 -0400720 if (!error)
721 fsnotify_mkdir(dir, dentry);
722out_up_read:
723 up_read(&BTRFS_I(dir)->root->fs_info->subvol_sem);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400724out_dput:
725 dput(dentry);
726out_unlock:
Yan, Zheng76dda932009-09-21 16:00:26 -0400727 mutex_unlock(&dir->i_mutex);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400728 return error;
729}
730
Chris Mason4cb53002011-05-24 15:35:30 -0400731/*
732 * When we're defragging a range, we don't want to kick it off again
733 * if it is really just waiting for delalloc to send it down.
734 * If we find a nice big extent or delalloc range for the bytes in the
735 * file you want to defrag, we return 0 to let you know to skip this
736 * part of the file
737 */
738static int check_defrag_in_cache(struct inode *inode, u64 offset, int thresh)
739{
740 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
741 struct extent_map *em = NULL;
742 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
743 u64 end;
744
745 read_lock(&em_tree->lock);
746 em = lookup_extent_mapping(em_tree, offset, PAGE_CACHE_SIZE);
747 read_unlock(&em_tree->lock);
748
749 if (em) {
750 end = extent_map_end(em);
751 free_extent_map(em);
752 if (end - offset > thresh)
753 return 0;
754 }
755 /* if we already have a nice delalloc here, just stop */
756 thresh /= 2;
757 end = count_range_bits(io_tree, &offset, offset + thresh,
758 thresh, EXTENT_DELALLOC, 1);
759 if (end >= thresh)
760 return 0;
761 return 1;
762}
763
764/*
765 * helper function to walk through a file and find extents
766 * newer than a specific transid, and smaller than thresh.
767 *
768 * This is used by the defragging code to find new and small
769 * extents
770 */
771static int find_new_extents(struct btrfs_root *root,
772 struct inode *inode, u64 newer_than,
773 u64 *off, int thresh)
774{
775 struct btrfs_path *path;
776 struct btrfs_key min_key;
777 struct btrfs_key max_key;
778 struct extent_buffer *leaf;
779 struct btrfs_file_extent_item *extent;
780 int type;
781 int ret;
David Sterbaa4689d22011-05-31 17:08:14 +0000782 u64 ino = btrfs_ino(inode);
Chris Mason4cb53002011-05-24 15:35:30 -0400783
784 path = btrfs_alloc_path();
785 if (!path)
786 return -ENOMEM;
787
David Sterbaa4689d22011-05-31 17:08:14 +0000788 min_key.objectid = ino;
Chris Mason4cb53002011-05-24 15:35:30 -0400789 min_key.type = BTRFS_EXTENT_DATA_KEY;
790 min_key.offset = *off;
791
David Sterbaa4689d22011-05-31 17:08:14 +0000792 max_key.objectid = ino;
Chris Mason4cb53002011-05-24 15:35:30 -0400793 max_key.type = (u8)-1;
794 max_key.offset = (u64)-1;
795
796 path->keep_locks = 1;
797
798 while(1) {
799 ret = btrfs_search_forward(root, &min_key, &max_key,
800 path, 0, newer_than);
801 if (ret != 0)
802 goto none;
David Sterbaa4689d22011-05-31 17:08:14 +0000803 if (min_key.objectid != ino)
Chris Mason4cb53002011-05-24 15:35:30 -0400804 goto none;
805 if (min_key.type != BTRFS_EXTENT_DATA_KEY)
806 goto none;
807
808 leaf = path->nodes[0];
809 extent = btrfs_item_ptr(leaf, path->slots[0],
810 struct btrfs_file_extent_item);
811
812 type = btrfs_file_extent_type(leaf, extent);
813 if (type == BTRFS_FILE_EXTENT_REG &&
814 btrfs_file_extent_num_bytes(leaf, extent) < thresh &&
815 check_defrag_in_cache(inode, min_key.offset, thresh)) {
816 *off = min_key.offset;
817 btrfs_free_path(path);
818 return 0;
819 }
820
821 if (min_key.offset == (u64)-1)
822 goto none;
823
824 min_key.offset++;
825 btrfs_release_path(path);
826 }
827none:
828 btrfs_free_path(path);
829 return -ENOENT;
830}
831
Li Zefan6c282eb2012-06-11 16:03:35 +0800832static struct extent_map *defrag_lookup_extent(struct inode *inode, u64 start)
Liu Bo17ce6ef2012-03-29 09:57:45 -0400833{
834 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason940100a2010-03-10 10:52:59 -0500835 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Li Zefan6c282eb2012-06-11 16:03:35 +0800836 struct extent_map *em;
837 u64 len = PAGE_CACHE_SIZE;
Chris Mason940100a2010-03-10 10:52:59 -0500838
839 /*
840 * hopefully we have this extent in the tree already, try without
841 * the full extent lock
842 */
843 read_lock(&em_tree->lock);
844 em = lookup_extent_mapping(em_tree, start, len);
845 read_unlock(&em_tree->lock);
846
847 if (!em) {
848 /* get the big lock and read metadata off disk */
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100849 lock_extent(io_tree, start, start + len - 1);
Chris Mason940100a2010-03-10 10:52:59 -0500850 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100851 unlock_extent(io_tree, start, start + len - 1);
Chris Mason940100a2010-03-10 10:52:59 -0500852
Dan Carpenter6cf8bfb2010-03-20 11:22:10 +0000853 if (IS_ERR(em))
Li Zefan6c282eb2012-06-11 16:03:35 +0800854 return NULL;
Chris Mason940100a2010-03-10 10:52:59 -0500855 }
856
Li Zefan6c282eb2012-06-11 16:03:35 +0800857 return em;
858}
859
860static bool defrag_check_next_extent(struct inode *inode, struct extent_map *em)
861{
862 struct extent_map *next;
863 bool ret = true;
864
865 /* this is the last extent */
866 if (em->start + em->len >= i_size_read(inode))
867 return false;
868
869 next = defrag_lookup_extent(inode, em->start + em->len);
870 if (!next || next->block_start >= EXTENT_MAP_LAST_BYTE)
871 ret = false;
872
873 free_extent_map(next);
874 return ret;
875}
876
877static int should_defrag_range(struct inode *inode, u64 start, int thresh,
Andrew Mahonea43a2112012-06-19 21:08:32 -0400878 u64 *last_len, u64 *skip, u64 *defrag_end,
879 int compress)
Li Zefan6c282eb2012-06-11 16:03:35 +0800880{
881 struct extent_map *em;
882 int ret = 1;
883 bool next_mergeable = true;
884
885 /*
886 * make sure that once we start defragging an extent, we keep on
887 * defragging it
888 */
889 if (start < *defrag_end)
890 return 1;
891
892 *skip = 0;
893
894 em = defrag_lookup_extent(inode, start);
895 if (!em)
896 return 0;
897
Chris Mason940100a2010-03-10 10:52:59 -0500898 /* this will cover holes, and inline extents */
Liu Bo17ce6ef2012-03-29 09:57:45 -0400899 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
Chris Mason940100a2010-03-10 10:52:59 -0500900 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -0400901 goto out;
902 }
903
Li Zefan6c282eb2012-06-11 16:03:35 +0800904 next_mergeable = defrag_check_next_extent(inode, em);
Chris Mason940100a2010-03-10 10:52:59 -0500905
906 /*
Li Zefan6c282eb2012-06-11 16:03:35 +0800907 * we hit a real extent, if it is big or the next extent is not a
908 * real extent, don't bother defragging it
Chris Mason940100a2010-03-10 10:52:59 -0500909 */
Andrew Mahonea43a2112012-06-19 21:08:32 -0400910 if (!compress && (*last_len == 0 || *last_len >= thresh) &&
Li Zefan6c282eb2012-06-11 16:03:35 +0800911 (em->len >= thresh || !next_mergeable))
Chris Mason940100a2010-03-10 10:52:59 -0500912 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -0400913out:
Chris Mason940100a2010-03-10 10:52:59 -0500914 /*
915 * last_len ends up being a counter of how many bytes we've defragged.
916 * every time we choose not to defrag an extent, we reset *last_len
917 * so that the next tiny extent will force a defrag.
918 *
919 * The end result of this is that tiny extents before a single big
920 * extent will force at least part of that big extent to be defragged.
921 */
922 if (ret) {
Chris Mason940100a2010-03-10 10:52:59 -0500923 *defrag_end = extent_map_end(em);
924 } else {
925 *last_len = 0;
926 *skip = extent_map_end(em);
927 *defrag_end = 0;
928 }
929
930 free_extent_map(em);
931 return ret;
932}
933
Chris Mason4cb53002011-05-24 15:35:30 -0400934/*
935 * it doesn't do much good to defrag one or two pages
936 * at a time. This pulls in a nice chunk of pages
937 * to COW and defrag.
938 *
939 * It also makes sure the delalloc code has enough
940 * dirty data to avoid making new small extents as part
941 * of the defrag
942 *
943 * It's a good idea to start RA on this range
944 * before calling this.
945 */
946static int cluster_pages_for_defrag(struct inode *inode,
947 struct page **pages,
948 unsigned long start_index,
949 int num_pages)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400950{
Chris Mason4cb53002011-05-24 15:35:30 -0400951 unsigned long file_end;
952 u64 isize = i_size_read(inode);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400953 u64 page_start;
954 u64 page_end;
Liu Bo1f12bd02012-03-29 09:57:44 -0400955 u64 page_cnt;
Chris Mason4cb53002011-05-24 15:35:30 -0400956 int ret;
957 int i;
958 int i_done;
959 struct btrfs_ordered_extent *ordered;
960 struct extent_state *cached_state = NULL;
Miao Xie600a45e2012-02-16 15:01:24 +0800961 struct extent_io_tree *tree;
Josef Bacik3b16a4e2011-09-21 15:05:58 -0400962 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
Chris Mason4cb53002011-05-24 15:35:30 -0400963
Chris Mason4cb53002011-05-24 15:35:30 -0400964 file_end = (isize - 1) >> PAGE_CACHE_SHIFT;
Liu Bo1f12bd02012-03-29 09:57:44 -0400965 if (!isize || start_index > file_end)
966 return 0;
967
968 page_cnt = min_t(u64, (u64)num_pages, (u64)file_end - start_index + 1);
Chris Mason4cb53002011-05-24 15:35:30 -0400969
970 ret = btrfs_delalloc_reserve_space(inode,
Liu Bo1f12bd02012-03-29 09:57:44 -0400971 page_cnt << PAGE_CACHE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -0400972 if (ret)
973 return ret;
Chris Mason4cb53002011-05-24 15:35:30 -0400974 i_done = 0;
Miao Xie600a45e2012-02-16 15:01:24 +0800975 tree = &BTRFS_I(inode)->io_tree;
Chris Mason4cb53002011-05-24 15:35:30 -0400976
977 /* step one, lock all the pages */
Liu Bo1f12bd02012-03-29 09:57:44 -0400978 for (i = 0; i < page_cnt; i++) {
Chris Mason4cb53002011-05-24 15:35:30 -0400979 struct page *page;
Miao Xie600a45e2012-02-16 15:01:24 +0800980again:
Josef Bacika94733d2011-07-11 10:47:06 -0400981 page = find_or_create_page(inode->i_mapping,
Miao Xie600a45e2012-02-16 15:01:24 +0800982 start_index + i, mask);
Chris Mason4cb53002011-05-24 15:35:30 -0400983 if (!page)
984 break;
985
Miao Xie600a45e2012-02-16 15:01:24 +0800986 page_start = page_offset(page);
987 page_end = page_start + PAGE_CACHE_SIZE - 1;
988 while (1) {
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100989 lock_extent(tree, page_start, page_end);
Miao Xie600a45e2012-02-16 15:01:24 +0800990 ordered = btrfs_lookup_ordered_extent(inode,
991 page_start);
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100992 unlock_extent(tree, page_start, page_end);
Miao Xie600a45e2012-02-16 15:01:24 +0800993 if (!ordered)
994 break;
995
996 unlock_page(page);
997 btrfs_start_ordered_extent(inode, ordered, 1);
998 btrfs_put_ordered_extent(ordered);
999 lock_page(page);
Liu Bo1f12bd02012-03-29 09:57:44 -04001000 /*
1001 * we unlocked the page above, so we need check if
1002 * it was released or not.
1003 */
1004 if (page->mapping != inode->i_mapping) {
1005 unlock_page(page);
1006 page_cache_release(page);
1007 goto again;
1008 }
Miao Xie600a45e2012-02-16 15:01:24 +08001009 }
1010
Chris Mason4cb53002011-05-24 15:35:30 -04001011 if (!PageUptodate(page)) {
1012 btrfs_readpage(NULL, page);
1013 lock_page(page);
1014 if (!PageUptodate(page)) {
1015 unlock_page(page);
1016 page_cache_release(page);
1017 ret = -EIO;
1018 break;
1019 }
1020 }
Miao Xie600a45e2012-02-16 15:01:24 +08001021
Miao Xie600a45e2012-02-16 15:01:24 +08001022 if (page->mapping != inode->i_mapping) {
1023 unlock_page(page);
1024 page_cache_release(page);
1025 goto again;
1026 }
1027
Chris Mason4cb53002011-05-24 15:35:30 -04001028 pages[i] = page;
1029 i_done++;
1030 }
1031 if (!i_done || ret)
1032 goto out;
1033
1034 if (!(inode->i_sb->s_flags & MS_ACTIVE))
1035 goto out;
1036
1037 /*
1038 * so now we have a nice long stream of locked
1039 * and up to date pages, lets wait on them
1040 */
1041 for (i = 0; i < i_done; i++)
1042 wait_on_page_writeback(pages[i]);
1043
1044 page_start = page_offset(pages[0]);
1045 page_end = page_offset(pages[i_done - 1]) + PAGE_CACHE_SIZE;
1046
1047 lock_extent_bits(&BTRFS_I(inode)->io_tree,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001048 page_start, page_end - 1, 0, &cached_state);
Chris Mason4cb53002011-05-24 15:35:30 -04001049 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start,
1050 page_end - 1, EXTENT_DIRTY | EXTENT_DELALLOC |
Liu Bo9e8a4a82012-09-05 19:10:51 -06001051 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, 0, 0,
1052 &cached_state, GFP_NOFS);
Chris Mason4cb53002011-05-24 15:35:30 -04001053
Liu Bo1f12bd02012-03-29 09:57:44 -04001054 if (i_done != page_cnt) {
Josef Bacik9e0baf62011-07-15 15:16:44 +00001055 spin_lock(&BTRFS_I(inode)->lock);
1056 BTRFS_I(inode)->outstanding_extents++;
1057 spin_unlock(&BTRFS_I(inode)->lock);
Chris Mason4cb53002011-05-24 15:35:30 -04001058 btrfs_delalloc_release_space(inode,
Liu Bo1f12bd02012-03-29 09:57:44 -04001059 (page_cnt - i_done) << PAGE_CACHE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001060 }
1061
1062
Liu Bo9e8a4a82012-09-05 19:10:51 -06001063 set_extent_defrag(&BTRFS_I(inode)->io_tree, page_start, page_end - 1,
1064 &cached_state, GFP_NOFS);
Chris Mason4cb53002011-05-24 15:35:30 -04001065
1066 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
1067 page_start, page_end - 1, &cached_state,
1068 GFP_NOFS);
1069
1070 for (i = 0; i < i_done; i++) {
1071 clear_page_dirty_for_io(pages[i]);
1072 ClearPageChecked(pages[i]);
1073 set_page_extent_mapped(pages[i]);
1074 set_page_dirty(pages[i]);
1075 unlock_page(pages[i]);
1076 page_cache_release(pages[i]);
1077 }
1078 return i_done;
1079out:
1080 for (i = 0; i < i_done; i++) {
1081 unlock_page(pages[i]);
1082 page_cache_release(pages[i]);
1083 }
Liu Bo1f12bd02012-03-29 09:57:44 -04001084 btrfs_delalloc_release_space(inode, page_cnt << PAGE_CACHE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001085 return ret;
1086
1087}
1088
1089int btrfs_defrag_file(struct inode *inode, struct file *file,
1090 struct btrfs_ioctl_defrag_range_args *range,
1091 u64 newer_than, unsigned long max_to_defrag)
1092{
1093 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason4cb53002011-05-24 15:35:30 -04001094 struct file_ra_state *ra = NULL;
1095 unsigned long last_index;
Li Zefan151a31b2011-09-02 15:56:39 +08001096 u64 isize = i_size_read(inode);
Chris Mason940100a2010-03-10 10:52:59 -05001097 u64 last_len = 0;
1098 u64 skip = 0;
1099 u64 defrag_end = 0;
Chris Mason4cb53002011-05-24 15:35:30 -04001100 u64 newer_off = range->start;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001101 unsigned long i;
Li Zefan008873e2011-09-02 15:57:07 +08001102 unsigned long ra_index = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001103 int ret;
Chris Mason4cb53002011-05-24 15:35:30 -04001104 int defrag_count = 0;
Li Zefan1a419d82010-10-25 15:12:50 +08001105 int compress_type = BTRFS_COMPRESS_ZLIB;
Chris Mason4cb53002011-05-24 15:35:30 -04001106 int extent_thresh = range->extent_thresh;
Li Zefan008873e2011-09-02 15:57:07 +08001107 int max_cluster = (256 * 1024) >> PAGE_CACHE_SHIFT;
1108 int cluster = max_cluster;
Chris Mason4cb53002011-05-24 15:35:30 -04001109 u64 new_align = ~((u64)128 * 1024 - 1);
1110 struct page **pages = NULL;
1111
1112 if (extent_thresh == 0)
1113 extent_thresh = 256 * 1024;
Li Zefan1a419d82010-10-25 15:12:50 +08001114
1115 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS) {
1116 if (range->compress_type > BTRFS_COMPRESS_TYPES)
1117 return -EINVAL;
1118 if (range->compress_type)
1119 compress_type = range->compress_type;
1120 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001121
Li Zefan151a31b2011-09-02 15:56:39 +08001122 if (isize == 0)
Chris Mason940100a2010-03-10 10:52:59 -05001123 return 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001124
Chris Mason4cb53002011-05-24 15:35:30 -04001125 /*
1126 * if we were not given a file, allocate a readahead
1127 * context
1128 */
1129 if (!file) {
1130 ra = kzalloc(sizeof(*ra), GFP_NOFS);
1131 if (!ra)
1132 return -ENOMEM;
1133 file_ra_state_init(ra, inode->i_mapping);
1134 } else {
1135 ra = &file->f_ra;
1136 }
1137
Li Zefan008873e2011-09-02 15:57:07 +08001138 pages = kmalloc(sizeof(struct page *) * max_cluster,
Chris Mason4cb53002011-05-24 15:35:30 -04001139 GFP_NOFS);
1140 if (!pages) {
1141 ret = -ENOMEM;
1142 goto out_ra;
1143 }
1144
1145 /* find the last page to defrag */
Chris Mason1e701a32010-03-11 09:42:04 -05001146 if (range->start + range->len > range->start) {
Li Zefan151a31b2011-09-02 15:56:39 +08001147 last_index = min_t(u64, isize - 1,
Chris Mason1e701a32010-03-11 09:42:04 -05001148 range->start + range->len - 1) >> PAGE_CACHE_SHIFT;
1149 } else {
Li Zefan151a31b2011-09-02 15:56:39 +08001150 last_index = (isize - 1) >> PAGE_CACHE_SHIFT;
Chris Mason1e701a32010-03-11 09:42:04 -05001151 }
1152
Chris Mason4cb53002011-05-24 15:35:30 -04001153 if (newer_than) {
1154 ret = find_new_extents(root, inode, newer_than,
1155 &newer_off, 64 * 1024);
1156 if (!ret) {
1157 range->start = newer_off;
1158 /*
1159 * we always align our defrag to help keep
1160 * the extents in the file evenly spaced
1161 */
1162 i = (newer_off & new_align) >> PAGE_CACHE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001163 } else
1164 goto out_ra;
1165 } else {
1166 i = range->start >> PAGE_CACHE_SHIFT;
1167 }
1168 if (!max_to_defrag)
Liu Bo7ec31b52012-01-26 15:01:12 -05001169 max_to_defrag = last_index + 1;
Chris Mason4cb53002011-05-24 15:35:30 -04001170
Li Zefan2a0f7f52011-10-10 15:43:34 -04001171 /*
1172 * make writeback starts from i, so the defrag range can be
1173 * written sequentially.
1174 */
1175 if (i < inode->i_mapping->writeback_index)
1176 inode->i_mapping->writeback_index = i;
1177
Chris Masonf7f43cc2011-10-11 11:41:40 -04001178 while (i <= last_index && defrag_count < max_to_defrag &&
1179 (i < (i_size_read(inode) + PAGE_CACHE_SIZE - 1) >>
1180 PAGE_CACHE_SHIFT)) {
Chris Mason4cb53002011-05-24 15:35:30 -04001181 /*
1182 * make sure we stop running if someone unmounts
1183 * the FS
1184 */
1185 if (!(inode->i_sb->s_flags & MS_ACTIVE))
1186 break;
1187
Liu Bo66c26892012-03-29 09:57:45 -04001188 if (!should_defrag_range(inode, (u64)i << PAGE_CACHE_SHIFT,
Li Zefan6c282eb2012-06-11 16:03:35 +08001189 extent_thresh, &last_len, &skip,
Andrew Mahonea43a2112012-06-19 21:08:32 -04001190 &defrag_end, range->flags &
1191 BTRFS_DEFRAG_RANGE_COMPRESS)) {
Chris Mason940100a2010-03-10 10:52:59 -05001192 unsigned long next;
1193 /*
1194 * the should_defrag function tells us how much to skip
1195 * bump our counter by the suggested amount
1196 */
1197 next = (skip + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
1198 i = max(i + 1, next);
1199 continue;
1200 }
Li Zefan008873e2011-09-02 15:57:07 +08001201
1202 if (!newer_than) {
1203 cluster = (PAGE_CACHE_ALIGN(defrag_end) >>
1204 PAGE_CACHE_SHIFT) - i;
1205 cluster = min(cluster, max_cluster);
1206 } else {
1207 cluster = max_cluster;
1208 }
1209
Chris Mason1e701a32010-03-11 09:42:04 -05001210 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)
Li Zefan1a419d82010-10-25 15:12:50 +08001211 BTRFS_I(inode)->force_compress = compress_type;
Chris Mason940100a2010-03-10 10:52:59 -05001212
Li Zefan008873e2011-09-02 15:57:07 +08001213 if (i + cluster > ra_index) {
1214 ra_index = max(i, ra_index);
1215 btrfs_force_ra(inode->i_mapping, ra, file, ra_index,
1216 cluster);
1217 ra_index += max_cluster;
1218 }
Chris Mason940100a2010-03-10 10:52:59 -05001219
Liu Boecb8bea2012-03-29 09:57:44 -04001220 mutex_lock(&inode->i_mutex);
Li Zefan008873e2011-09-02 15:57:07 +08001221 ret = cluster_pages_for_defrag(inode, pages, i, cluster);
Liu Boecb8bea2012-03-29 09:57:44 -04001222 if (ret < 0) {
1223 mutex_unlock(&inode->i_mutex);
Chris Mason4cb53002011-05-24 15:35:30 -04001224 goto out_ra;
Liu Boecb8bea2012-03-29 09:57:44 -04001225 }
Chris Mason940100a2010-03-10 10:52:59 -05001226
Chris Mason4cb53002011-05-24 15:35:30 -04001227 defrag_count += ret;
Namjae Jeond0e1d662012-12-11 16:00:21 -08001228 balance_dirty_pages_ratelimited(inode->i_mapping);
Liu Boecb8bea2012-03-29 09:57:44 -04001229 mutex_unlock(&inode->i_mutex);
Chris Mason4cb53002011-05-24 15:35:30 -04001230
1231 if (newer_than) {
1232 if (newer_off == (u64)-1)
1233 break;
1234
Liu Boe1f041e2012-03-29 09:57:45 -04001235 if (ret > 0)
1236 i += ret;
1237
Chris Mason4cb53002011-05-24 15:35:30 -04001238 newer_off = max(newer_off + 1,
1239 (u64)i << PAGE_CACHE_SHIFT);
1240
1241 ret = find_new_extents(root, inode,
1242 newer_than, &newer_off,
1243 64 * 1024);
1244 if (!ret) {
1245 range->start = newer_off;
1246 i = (newer_off & new_align) >> PAGE_CACHE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001247 } else {
1248 break;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001249 }
Chris Mason4cb53002011-05-24 15:35:30 -04001250 } else {
Li Zefan008873e2011-09-02 15:57:07 +08001251 if (ret > 0) {
Li Zefancbcc8322011-09-02 15:56:25 +08001252 i += ret;
Li Zefan008873e2011-09-02 15:57:07 +08001253 last_len += ret << PAGE_CACHE_SHIFT;
1254 } else {
Li Zefancbcc8322011-09-02 15:56:25 +08001255 i++;
Li Zefan008873e2011-09-02 15:57:07 +08001256 last_len = 0;
1257 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001258 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001259 }
1260
Chris Mason1e701a32010-03-11 09:42:04 -05001261 if ((range->flags & BTRFS_DEFRAG_RANGE_START_IO))
1262 filemap_flush(inode->i_mapping);
1263
1264 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
1265 /* the filemap_flush will queue IO into the worker threads, but
1266 * we have to make sure the IO is actually started and that
1267 * ordered extents get created before we return
1268 */
1269 atomic_inc(&root->fs_info->async_submit_draining);
1270 while (atomic_read(&root->fs_info->nr_async_submits) ||
1271 atomic_read(&root->fs_info->async_delalloc_pages)) {
1272 wait_event(root->fs_info->async_submit_wait,
1273 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
1274 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
1275 }
1276 atomic_dec(&root->fs_info->async_submit_draining);
1277
1278 mutex_lock(&inode->i_mutex);
Li Zefan261507a02010-12-17 14:21:50 +08001279 BTRFS_I(inode)->force_compress = BTRFS_COMPRESS_NONE;
Chris Mason1e701a32010-03-11 09:42:04 -05001280 mutex_unlock(&inode->i_mutex);
1281 }
1282
Li Zefan1a419d82010-10-25 15:12:50 +08001283 if (range->compress_type == BTRFS_COMPRESS_LZO) {
Mitch Harder2b0ce2c2012-07-24 11:58:43 -06001284 btrfs_set_fs_incompat(root->fs_info, COMPRESS_LZO);
Li Zefan1a419d82010-10-25 15:12:50 +08001285 }
1286
Diego Calleja60ccf822011-09-01 16:33:57 +02001287 ret = defrag_count;
Chris Mason940100a2010-03-10 10:52:59 -05001288
Chris Mason4cb53002011-05-24 15:35:30 -04001289out_ra:
1290 if (!file)
1291 kfree(ra);
1292 kfree(pages);
Chris Mason940100a2010-03-10 10:52:59 -05001293 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001294}
1295
Yan, Zheng76dda932009-09-21 16:00:26 -04001296static noinline int btrfs_ioctl_resize(struct btrfs_root *root,
1297 void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001298{
1299 u64 new_size;
1300 u64 old_size;
1301 u64 devid = 1;
1302 struct btrfs_ioctl_vol_args *vol_args;
1303 struct btrfs_trans_handle *trans;
1304 struct btrfs_device *device = NULL;
1305 char *sizestr;
1306 char *devstr = NULL;
1307 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001308 int mod = 0;
1309
Yan Zhengc146afa2008-11-12 14:34:12 -05001310 if (root->fs_info->sb->s_flags & MS_RDONLY)
1311 return -EROFS;
1312
Chris Masone441d542009-01-05 16:57:23 -05001313 if (!capable(CAP_SYS_ADMIN))
1314 return -EPERM;
1315
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001316 mutex_lock(&root->fs_info->volume_mutex);
1317 if (root->fs_info->balance_ctl) {
1318 printk(KERN_INFO "btrfs: balance in progress\n");
1319 ret = -EINVAL;
1320 goto out;
1321 }
1322
Li Zefandae7b662009-04-08 15:06:54 +08001323 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001324 if (IS_ERR(vol_args)) {
1325 ret = PTR_ERR(vol_args);
1326 goto out;
1327 }
Mark Fasheh5516e592008-07-24 12:20:14 -04001328
1329 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001330
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001331 sizestr = vol_args->name;
1332 devstr = strchr(sizestr, ':');
1333 if (devstr) {
1334 char *end;
1335 sizestr = devstr + 1;
1336 *devstr = '\0';
1337 devstr = vol_args->name;
1338 devid = simple_strtoull(devstr, &end, 10);
Arnd Hannemann5bb14682011-11-20 07:33:38 -05001339 printk(KERN_INFO "btrfs: resizing devid %llu\n",
Joel Becker21380932009-04-21 12:38:29 -07001340 (unsigned long long)devid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001341 }
Yan Zheng2b820322008-11-17 21:11:30 -05001342 device = btrfs_find_device(root, devid, NULL, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001343 if (!device) {
Arnd Hannemann5bb14682011-11-20 07:33:38 -05001344 printk(KERN_INFO "btrfs: resizer unable to find device %llu\n",
Joel Becker21380932009-04-21 12:38:29 -07001345 (unsigned long long)devid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001346 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001347 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001348 }
Liu Bo4e42ae12012-06-14 02:23:19 -06001349 if (device->fs_devices && device->fs_devices->seeding) {
1350 printk(KERN_INFO "btrfs: resizer unable to apply on "
Chris Masona8c4a332012-06-15 20:07:17 -04001351 "seeding device %llu\n",
1352 (unsigned long long)devid);
Liu Bo4e42ae12012-06-14 02:23:19 -06001353 ret = -EINVAL;
1354 goto out_free;
1355 }
1356
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001357 if (!strcmp(sizestr, "max"))
1358 new_size = device->bdev->bd_inode->i_size;
1359 else {
1360 if (sizestr[0] == '-') {
1361 mod = -1;
1362 sizestr++;
1363 } else if (sizestr[0] == '+') {
1364 mod = 1;
1365 sizestr++;
1366 }
Akinobu Mita91748462010-02-28 10:59:11 +00001367 new_size = memparse(sizestr, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001368 if (new_size == 0) {
1369 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001370 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001371 }
1372 }
1373
1374 old_size = device->total_bytes;
1375
1376 if (mod < 0) {
1377 if (new_size > old_size) {
1378 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001379 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001380 }
1381 new_size = old_size - new_size;
1382 } else if (mod > 0) {
1383 new_size = old_size + new_size;
1384 }
1385
1386 if (new_size < 256 * 1024 * 1024) {
1387 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001388 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001389 }
1390 if (new_size > device->bdev->bd_inode->i_size) {
1391 ret = -EFBIG;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001392 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001393 }
1394
1395 do_div(new_size, root->sectorsize);
1396 new_size *= root->sectorsize;
1397
Josef Bacik606686e2012-06-04 14:03:51 -04001398 printk_in_rcu(KERN_INFO "btrfs: new size for %s is %llu\n",
1399 rcu_str_deref(device->name),
1400 (unsigned long long)new_size);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001401
1402 if (new_size > old_size) {
Yan, Zhenga22285a2010-05-16 10:48:46 -04001403 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001404 if (IS_ERR(trans)) {
1405 ret = PTR_ERR(trans);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001406 goto out_free;
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001407 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001408 ret = btrfs_grow_device(trans, device, new_size);
1409 btrfs_commit_transaction(trans, root);
Mike Fleetwoodece7d202011-11-18 18:55:01 +00001410 } else if (new_size < old_size) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001411 ret = btrfs_shrink_device(device, new_size);
1412 }
1413
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001414out_free:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001415 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001416out:
1417 mutex_unlock(&root->fs_info->volume_mutex);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001418 return ret;
1419}
1420
Sage Weil72fd0322010-10-29 15:41:32 -04001421static noinline int btrfs_ioctl_snap_create_transid(struct file *file,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001422 char *name, unsigned long fd, int subvol,
1423 u64 *transid, bool readonly,
1424 struct btrfs_qgroup_inherit **inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001425{
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001426 int namelen;
Chris Mason3de45862008-11-17 21:02:50 -05001427 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001428
Liu Boa874a632012-06-29 03:58:46 -06001429 ret = mnt_want_write_file(file);
1430 if (ret)
1431 goto out;
1432
Sage Weil72fd0322010-10-29 15:41:32 -04001433 namelen = strlen(name);
1434 if (strchr(name, '/')) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001435 ret = -EINVAL;
Liu Boa874a632012-06-29 03:58:46 -06001436 goto out_drop_write;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001437 }
1438
Chris Mason16780ca2012-02-20 22:14:55 -05001439 if (name[0] == '.' &&
1440 (namelen == 1 || (name[1] == '.' && namelen == 2))) {
1441 ret = -EEXIST;
Liu Boa874a632012-06-29 03:58:46 -06001442 goto out_drop_write;
Chris Mason16780ca2012-02-20 22:14:55 -05001443 }
1444
Chris Mason3de45862008-11-17 21:02:50 -05001445 if (subvol) {
Sage Weil72fd0322010-10-29 15:41:32 -04001446 ret = btrfs_mksubvol(&file->f_path, name, namelen,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001447 NULL, transid, readonly, inherit);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001448 } else {
Al Viro2903ff02012-08-28 12:52:22 -04001449 struct fd src = fdget(fd);
Chris Mason3de45862008-11-17 21:02:50 -05001450 struct inode *src_inode;
Al Viro2903ff02012-08-28 12:52:22 -04001451 if (!src.file) {
Chris Mason3de45862008-11-17 21:02:50 -05001452 ret = -EINVAL;
Liu Boa874a632012-06-29 03:58:46 -06001453 goto out_drop_write;
Chris Mason3de45862008-11-17 21:02:50 -05001454 }
1455
Al Viro2903ff02012-08-28 12:52:22 -04001456 src_inode = src.file->f_path.dentry->d_inode;
Chris Mason3de45862008-11-17 21:02:50 -05001457 if (src_inode->i_sb != file->f_path.dentry->d_inode->i_sb) {
Chris Masond3977122009-01-05 21:25:51 -05001458 printk(KERN_INFO "btrfs: Snapshot src from "
1459 "another FS\n");
Chris Mason3de45862008-11-17 21:02:50 -05001460 ret = -EINVAL;
Al Viroecd18812012-08-26 21:20:24 -04001461 } else {
1462 ret = btrfs_mksubvol(&file->f_path, name, namelen,
1463 BTRFS_I(src_inode)->root,
1464 transid, readonly, inherit);
Chris Mason3de45862008-11-17 21:02:50 -05001465 }
Al Viro2903ff02012-08-28 12:52:22 -04001466 fdput(src);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001467 }
Liu Boa874a632012-06-29 03:58:46 -06001468out_drop_write:
1469 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001470out:
Sage Weil72fd0322010-10-29 15:41:32 -04001471 return ret;
1472}
1473
1474static noinline int btrfs_ioctl_snap_create(struct file *file,
Li Zefanfa0d2b92010-12-20 15:53:28 +08001475 void __user *arg, int subvol)
Sage Weil72fd0322010-10-29 15:41:32 -04001476{
Li Zefanfa0d2b92010-12-20 15:53:28 +08001477 struct btrfs_ioctl_vol_args *vol_args;
Sage Weil72fd0322010-10-29 15:41:32 -04001478 int ret;
1479
Li Zefanfa0d2b92010-12-20 15:53:28 +08001480 vol_args = memdup_user(arg, sizeof(*vol_args));
1481 if (IS_ERR(vol_args))
1482 return PTR_ERR(vol_args);
1483 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Sage Weil72fd0322010-10-29 15:41:32 -04001484
Li Zefanfa0d2b92010-12-20 15:53:28 +08001485 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
Li Zefanb83cc962010-12-20 16:04:08 +08001486 vol_args->fd, subvol,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001487 NULL, false, NULL);
Li Zefanfdfb1e42010-12-10 06:41:56 +00001488
Li Zefanfa0d2b92010-12-20 15:53:28 +08001489 kfree(vol_args);
1490 return ret;
1491}
Li Zefanfdfb1e42010-12-10 06:41:56 +00001492
Li Zefanfa0d2b92010-12-20 15:53:28 +08001493static noinline int btrfs_ioctl_snap_create_v2(struct file *file,
1494 void __user *arg, int subvol)
1495{
1496 struct btrfs_ioctl_vol_args_v2 *vol_args;
1497 int ret;
1498 u64 transid = 0;
1499 u64 *ptr = NULL;
Li Zefanb83cc962010-12-20 16:04:08 +08001500 bool readonly = false;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001501 struct btrfs_qgroup_inherit *inherit = NULL;
Li Zefanfdfb1e42010-12-10 06:41:56 +00001502
Li Zefanfa0d2b92010-12-20 15:53:28 +08001503 vol_args = memdup_user(arg, sizeof(*vol_args));
1504 if (IS_ERR(vol_args))
1505 return PTR_ERR(vol_args);
1506 vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
Sage Weil75eaa0e2010-12-10 00:36:28 +00001507
Li Zefanb83cc962010-12-20 16:04:08 +08001508 if (vol_args->flags &
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001509 ~(BTRFS_SUBVOL_CREATE_ASYNC | BTRFS_SUBVOL_RDONLY |
1510 BTRFS_SUBVOL_QGROUP_INHERIT)) {
Li Zefanb83cc962010-12-20 16:04:08 +08001511 ret = -EOPNOTSUPP;
Li Zefanfa0d2b92010-12-20 15:53:28 +08001512 goto out;
Sage Weil72fd0322010-10-29 15:41:32 -04001513 }
Li Zefanfa0d2b92010-12-20 15:53:28 +08001514
1515 if (vol_args->flags & BTRFS_SUBVOL_CREATE_ASYNC)
1516 ptr = &transid;
Li Zefanb83cc962010-12-20 16:04:08 +08001517 if (vol_args->flags & BTRFS_SUBVOL_RDONLY)
1518 readonly = true;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001519 if (vol_args->flags & BTRFS_SUBVOL_QGROUP_INHERIT) {
1520 if (vol_args->size > PAGE_CACHE_SIZE) {
1521 ret = -EINVAL;
1522 goto out;
1523 }
1524 inherit = memdup_user(vol_args->qgroup_inherit, vol_args->size);
1525 if (IS_ERR(inherit)) {
1526 ret = PTR_ERR(inherit);
1527 goto out;
1528 }
1529 }
Li Zefanfa0d2b92010-12-20 15:53:28 +08001530
1531 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001532 vol_args->fd, subvol, ptr,
1533 readonly, &inherit);
Li Zefanfa0d2b92010-12-20 15:53:28 +08001534
1535 if (ret == 0 && ptr &&
1536 copy_to_user(arg +
1537 offsetof(struct btrfs_ioctl_vol_args_v2,
1538 transid), ptr, sizeof(*ptr)))
1539 ret = -EFAULT;
Li Zefanfdfb1e42010-12-10 06:41:56 +00001540out:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001541 kfree(vol_args);
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001542 kfree(inherit);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001543 return ret;
1544}
1545
Li Zefan0caa1022010-12-20 16:30:25 +08001546static noinline int btrfs_ioctl_subvol_getflags(struct file *file,
1547 void __user *arg)
1548{
1549 struct inode *inode = fdentry(file)->d_inode;
1550 struct btrfs_root *root = BTRFS_I(inode)->root;
1551 int ret = 0;
1552 u64 flags = 0;
1553
Li Zefan33345d012011-04-20 10:31:50 +08001554 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID)
Li Zefan0caa1022010-12-20 16:30:25 +08001555 return -EINVAL;
1556
1557 down_read(&root->fs_info->subvol_sem);
1558 if (btrfs_root_readonly(root))
1559 flags |= BTRFS_SUBVOL_RDONLY;
1560 up_read(&root->fs_info->subvol_sem);
1561
1562 if (copy_to_user(arg, &flags, sizeof(flags)))
1563 ret = -EFAULT;
1564
1565 return ret;
1566}
1567
1568static noinline int btrfs_ioctl_subvol_setflags(struct file *file,
1569 void __user *arg)
1570{
1571 struct inode *inode = fdentry(file)->d_inode;
1572 struct btrfs_root *root = BTRFS_I(inode)->root;
1573 struct btrfs_trans_handle *trans;
1574 u64 root_flags;
1575 u64 flags;
1576 int ret = 0;
1577
Liu Bob9ca0662012-06-29 03:58:49 -06001578 ret = mnt_want_write_file(file);
1579 if (ret)
1580 goto out;
Li Zefan0caa1022010-12-20 16:30:25 +08001581
Liu Bob9ca0662012-06-29 03:58:49 -06001582 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
1583 ret = -EINVAL;
1584 goto out_drop_write;
1585 }
Li Zefan0caa1022010-12-20 16:30:25 +08001586
Liu Bob9ca0662012-06-29 03:58:49 -06001587 if (copy_from_user(&flags, arg, sizeof(flags))) {
1588 ret = -EFAULT;
1589 goto out_drop_write;
1590 }
Li Zefan0caa1022010-12-20 16:30:25 +08001591
Liu Bob9ca0662012-06-29 03:58:49 -06001592 if (flags & BTRFS_SUBVOL_CREATE_ASYNC) {
1593 ret = -EINVAL;
1594 goto out_drop_write;
1595 }
Li Zefan0caa1022010-12-20 16:30:25 +08001596
Liu Bob9ca0662012-06-29 03:58:49 -06001597 if (flags & ~BTRFS_SUBVOL_RDONLY) {
1598 ret = -EOPNOTSUPP;
1599 goto out_drop_write;
1600 }
Li Zefan0caa1022010-12-20 16:30:25 +08001601
Liu Bob9ca0662012-06-29 03:58:49 -06001602 if (!inode_owner_or_capable(inode)) {
1603 ret = -EACCES;
1604 goto out_drop_write;
1605 }
Li Zefanb4dc2b82011-02-16 06:06:34 +00001606
Li Zefan0caa1022010-12-20 16:30:25 +08001607 down_write(&root->fs_info->subvol_sem);
1608
1609 /* nothing to do */
1610 if (!!(flags & BTRFS_SUBVOL_RDONLY) == btrfs_root_readonly(root))
Liu Bob9ca0662012-06-29 03:58:49 -06001611 goto out_drop_sem;
Li Zefan0caa1022010-12-20 16:30:25 +08001612
1613 root_flags = btrfs_root_flags(&root->root_item);
1614 if (flags & BTRFS_SUBVOL_RDONLY)
1615 btrfs_set_root_flags(&root->root_item,
1616 root_flags | BTRFS_ROOT_SUBVOL_RDONLY);
1617 else
1618 btrfs_set_root_flags(&root->root_item,
1619 root_flags & ~BTRFS_ROOT_SUBVOL_RDONLY);
1620
1621 trans = btrfs_start_transaction(root, 1);
1622 if (IS_ERR(trans)) {
1623 ret = PTR_ERR(trans);
1624 goto out_reset;
1625 }
1626
Li Zefanb4dc2b82011-02-16 06:06:34 +00001627 ret = btrfs_update_root(trans, root->fs_info->tree_root,
Li Zefan0caa1022010-12-20 16:30:25 +08001628 &root->root_key, &root->root_item);
1629
1630 btrfs_commit_transaction(trans, root);
1631out_reset:
1632 if (ret)
1633 btrfs_set_root_flags(&root->root_item, root_flags);
Liu Bob9ca0662012-06-29 03:58:49 -06001634out_drop_sem:
Li Zefan0caa1022010-12-20 16:30:25 +08001635 up_write(&root->fs_info->subvol_sem);
Liu Bob9ca0662012-06-29 03:58:49 -06001636out_drop_write:
1637 mnt_drop_write_file(file);
1638out:
Li Zefan0caa1022010-12-20 16:30:25 +08001639 return ret;
1640}
1641
Yan, Zheng76dda932009-09-21 16:00:26 -04001642/*
1643 * helper to check if the subvolume references other subvolumes
1644 */
1645static noinline int may_destroy_subvol(struct btrfs_root *root)
1646{
1647 struct btrfs_path *path;
1648 struct btrfs_key key;
1649 int ret;
1650
1651 path = btrfs_alloc_path();
1652 if (!path)
1653 return -ENOMEM;
1654
1655 key.objectid = root->root_key.objectid;
1656 key.type = BTRFS_ROOT_REF_KEY;
1657 key.offset = (u64)-1;
1658
1659 ret = btrfs_search_slot(NULL, root->fs_info->tree_root,
1660 &key, path, 0, 0);
1661 if (ret < 0)
1662 goto out;
1663 BUG_ON(ret == 0);
1664
1665 ret = 0;
1666 if (path->slots[0] > 0) {
1667 path->slots[0]--;
1668 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1669 if (key.objectid == root->root_key.objectid &&
1670 key.type == BTRFS_ROOT_REF_KEY)
1671 ret = -ENOTEMPTY;
1672 }
1673out:
1674 btrfs_free_path(path);
1675 return ret;
1676}
1677
Chris Masonac8e9812010-02-28 15:39:26 -05001678static noinline int key_in_sk(struct btrfs_key *key,
1679 struct btrfs_ioctl_search_key *sk)
1680{
Chris Masonabc6e132010-03-18 12:10:08 -04001681 struct btrfs_key test;
1682 int ret;
1683
1684 test.objectid = sk->min_objectid;
1685 test.type = sk->min_type;
1686 test.offset = sk->min_offset;
1687
1688 ret = btrfs_comp_cpu_keys(key, &test);
1689 if (ret < 0)
Chris Masonac8e9812010-02-28 15:39:26 -05001690 return 0;
Chris Masonabc6e132010-03-18 12:10:08 -04001691
1692 test.objectid = sk->max_objectid;
1693 test.type = sk->max_type;
1694 test.offset = sk->max_offset;
1695
1696 ret = btrfs_comp_cpu_keys(key, &test);
1697 if (ret > 0)
Chris Masonac8e9812010-02-28 15:39:26 -05001698 return 0;
1699 return 1;
1700}
1701
1702static noinline int copy_to_sk(struct btrfs_root *root,
1703 struct btrfs_path *path,
1704 struct btrfs_key *key,
1705 struct btrfs_ioctl_search_key *sk,
1706 char *buf,
1707 unsigned long *sk_offset,
1708 int *num_found)
1709{
1710 u64 found_transid;
1711 struct extent_buffer *leaf;
1712 struct btrfs_ioctl_search_header sh;
1713 unsigned long item_off;
1714 unsigned long item_len;
1715 int nritems;
1716 int i;
1717 int slot;
Chris Masonac8e9812010-02-28 15:39:26 -05001718 int ret = 0;
1719
1720 leaf = path->nodes[0];
1721 slot = path->slots[0];
1722 nritems = btrfs_header_nritems(leaf);
1723
1724 if (btrfs_header_generation(leaf) > sk->max_transid) {
1725 i = nritems;
1726 goto advance_key;
1727 }
1728 found_transid = btrfs_header_generation(leaf);
1729
1730 for (i = slot; i < nritems; i++) {
1731 item_off = btrfs_item_ptr_offset(leaf, i);
1732 item_len = btrfs_item_size_nr(leaf, i);
1733
1734 if (item_len > BTRFS_SEARCH_ARGS_BUFSIZE)
1735 item_len = 0;
1736
1737 if (sizeof(sh) + item_len + *sk_offset >
1738 BTRFS_SEARCH_ARGS_BUFSIZE) {
1739 ret = 1;
1740 goto overflow;
1741 }
1742
1743 btrfs_item_key_to_cpu(leaf, key, i);
1744 if (!key_in_sk(key, sk))
1745 continue;
1746
1747 sh.objectid = key->objectid;
1748 sh.offset = key->offset;
1749 sh.type = key->type;
1750 sh.len = item_len;
1751 sh.transid = found_transid;
1752
1753 /* copy search result header */
1754 memcpy(buf + *sk_offset, &sh, sizeof(sh));
1755 *sk_offset += sizeof(sh);
1756
1757 if (item_len) {
1758 char *p = buf + *sk_offset;
1759 /* copy the item */
1760 read_extent_buffer(leaf, p,
1761 item_off, item_len);
1762 *sk_offset += item_len;
Chris Masonac8e9812010-02-28 15:39:26 -05001763 }
Hugo Millse2156862011-05-14 17:43:41 +00001764 (*num_found)++;
Chris Masonac8e9812010-02-28 15:39:26 -05001765
1766 if (*num_found >= sk->nr_items)
1767 break;
1768 }
1769advance_key:
Chris Masonac8e9812010-02-28 15:39:26 -05001770 ret = 0;
Chris Masonabc6e132010-03-18 12:10:08 -04001771 if (key->offset < (u64)-1 && key->offset < sk->max_offset)
1772 key->offset++;
1773 else if (key->type < (u8)-1 && key->type < sk->max_type) {
1774 key->offset = 0;
1775 key->type++;
1776 } else if (key->objectid < (u64)-1 && key->objectid < sk->max_objectid) {
1777 key->offset = 0;
1778 key->type = 0;
1779 key->objectid++;
1780 } else
1781 ret = 1;
Chris Masonac8e9812010-02-28 15:39:26 -05001782overflow:
Chris Masonac8e9812010-02-28 15:39:26 -05001783 return ret;
1784}
1785
1786static noinline int search_ioctl(struct inode *inode,
1787 struct btrfs_ioctl_search_args *args)
1788{
1789 struct btrfs_root *root;
1790 struct btrfs_key key;
1791 struct btrfs_key max_key;
1792 struct btrfs_path *path;
1793 struct btrfs_ioctl_search_key *sk = &args->key;
1794 struct btrfs_fs_info *info = BTRFS_I(inode)->root->fs_info;
1795 int ret;
1796 int num_found = 0;
1797 unsigned long sk_offset = 0;
1798
1799 path = btrfs_alloc_path();
1800 if (!path)
1801 return -ENOMEM;
1802
1803 if (sk->tree_id == 0) {
1804 /* search the root of the inode that was passed */
1805 root = BTRFS_I(inode)->root;
1806 } else {
1807 key.objectid = sk->tree_id;
1808 key.type = BTRFS_ROOT_ITEM_KEY;
1809 key.offset = (u64)-1;
1810 root = btrfs_read_fs_root_no_name(info, &key);
1811 if (IS_ERR(root)) {
1812 printk(KERN_ERR "could not find root %llu\n",
1813 sk->tree_id);
1814 btrfs_free_path(path);
1815 return -ENOENT;
1816 }
1817 }
1818
1819 key.objectid = sk->min_objectid;
1820 key.type = sk->min_type;
1821 key.offset = sk->min_offset;
1822
1823 max_key.objectid = sk->max_objectid;
1824 max_key.type = sk->max_type;
1825 max_key.offset = sk->max_offset;
1826
1827 path->keep_locks = 1;
1828
1829 while(1) {
1830 ret = btrfs_search_forward(root, &key, &max_key, path, 0,
1831 sk->min_transid);
1832 if (ret != 0) {
1833 if (ret > 0)
1834 ret = 0;
1835 goto err;
1836 }
1837 ret = copy_to_sk(root, path, &key, sk, args->buf,
1838 &sk_offset, &num_found);
David Sterbab3b4aa72011-04-21 01:20:15 +02001839 btrfs_release_path(path);
Chris Masonac8e9812010-02-28 15:39:26 -05001840 if (ret || num_found >= sk->nr_items)
1841 break;
1842
1843 }
1844 ret = 0;
1845err:
1846 sk->nr_items = num_found;
1847 btrfs_free_path(path);
1848 return ret;
1849}
1850
1851static noinline int btrfs_ioctl_tree_search(struct file *file,
1852 void __user *argp)
1853{
1854 struct btrfs_ioctl_search_args *args;
1855 struct inode *inode;
1856 int ret;
1857
1858 if (!capable(CAP_SYS_ADMIN))
1859 return -EPERM;
1860
Julia Lawall2354d082010-10-29 15:14:18 -04001861 args = memdup_user(argp, sizeof(*args));
1862 if (IS_ERR(args))
1863 return PTR_ERR(args);
Chris Masonac8e9812010-02-28 15:39:26 -05001864
Chris Masonac8e9812010-02-28 15:39:26 -05001865 inode = fdentry(file)->d_inode;
1866 ret = search_ioctl(inode, args);
1867 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
1868 ret = -EFAULT;
1869 kfree(args);
1870 return ret;
1871}
1872
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001873/*
Chris Masonac8e9812010-02-28 15:39:26 -05001874 * Search INODE_REFs to identify path name of 'dirid' directory
1875 * in a 'tree_id' tree. and sets path name to 'name'.
1876 */
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001877static noinline int btrfs_search_path_in_tree(struct btrfs_fs_info *info,
1878 u64 tree_id, u64 dirid, char *name)
1879{
1880 struct btrfs_root *root;
1881 struct btrfs_key key;
Chris Masonac8e9812010-02-28 15:39:26 -05001882 char *ptr;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001883 int ret = -1;
1884 int slot;
1885 int len;
1886 int total_len = 0;
1887 struct btrfs_inode_ref *iref;
1888 struct extent_buffer *l;
1889 struct btrfs_path *path;
1890
1891 if (dirid == BTRFS_FIRST_FREE_OBJECTID) {
1892 name[0]='\0';
1893 return 0;
1894 }
1895
1896 path = btrfs_alloc_path();
1897 if (!path)
1898 return -ENOMEM;
1899
Chris Masonac8e9812010-02-28 15:39:26 -05001900 ptr = &name[BTRFS_INO_LOOKUP_PATH_MAX];
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001901
1902 key.objectid = tree_id;
1903 key.type = BTRFS_ROOT_ITEM_KEY;
1904 key.offset = (u64)-1;
1905 root = btrfs_read_fs_root_no_name(info, &key);
1906 if (IS_ERR(root)) {
1907 printk(KERN_ERR "could not find root %llu\n", tree_id);
Chris Mason8ad6fca2010-03-18 12:23:10 -04001908 ret = -ENOENT;
1909 goto out;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001910 }
1911
1912 key.objectid = dirid;
1913 key.type = BTRFS_INODE_REF_KEY;
Chris Mason8ad6fca2010-03-18 12:23:10 -04001914 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001915
1916 while(1) {
1917 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1918 if (ret < 0)
1919 goto out;
1920
1921 l = path->nodes[0];
1922 slot = path->slots[0];
Chris Mason8ad6fca2010-03-18 12:23:10 -04001923 if (ret > 0 && slot > 0)
1924 slot--;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001925 btrfs_item_key_to_cpu(l, &key, slot);
1926
1927 if (ret > 0 && (key.objectid != dirid ||
Chris Masonac8e9812010-02-28 15:39:26 -05001928 key.type != BTRFS_INODE_REF_KEY)) {
1929 ret = -ENOENT;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001930 goto out;
Chris Masonac8e9812010-02-28 15:39:26 -05001931 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001932
1933 iref = btrfs_item_ptr(l, slot, struct btrfs_inode_ref);
1934 len = btrfs_inode_ref_name_len(l, iref);
1935 ptr -= len + 1;
1936 total_len += len + 1;
Chris Masonac8e9812010-02-28 15:39:26 -05001937 if (ptr < name)
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001938 goto out;
1939
1940 *(ptr + len) = '/';
1941 read_extent_buffer(l, ptr,(unsigned long)(iref + 1), len);
1942
1943 if (key.offset == BTRFS_FIRST_FREE_OBJECTID)
1944 break;
1945
David Sterbab3b4aa72011-04-21 01:20:15 +02001946 btrfs_release_path(path);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001947 key.objectid = key.offset;
Chris Mason8ad6fca2010-03-18 12:23:10 -04001948 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001949 dirid = key.objectid;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001950 }
Chris Masonac8e9812010-02-28 15:39:26 -05001951 if (ptr < name)
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001952 goto out;
Li Zefan77906a502011-07-14 03:16:00 +00001953 memmove(name, ptr, total_len);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001954 name[total_len]='\0';
1955 ret = 0;
1956out:
1957 btrfs_free_path(path);
Chris Masonac8e9812010-02-28 15:39:26 -05001958 return ret;
1959}
1960
1961static noinline int btrfs_ioctl_ino_lookup(struct file *file,
1962 void __user *argp)
1963{
1964 struct btrfs_ioctl_ino_lookup_args *args;
1965 struct inode *inode;
1966 int ret;
1967
1968 if (!capable(CAP_SYS_ADMIN))
1969 return -EPERM;
1970
Julia Lawall2354d082010-10-29 15:14:18 -04001971 args = memdup_user(argp, sizeof(*args));
1972 if (IS_ERR(args))
1973 return PTR_ERR(args);
Dan Carpenterc2b96922010-03-20 11:24:15 +00001974
Chris Masonac8e9812010-02-28 15:39:26 -05001975 inode = fdentry(file)->d_inode;
1976
Chris Mason1b53ac42010-03-18 12:17:05 -04001977 if (args->treeid == 0)
1978 args->treeid = BTRFS_I(inode)->root->root_key.objectid;
1979
Chris Masonac8e9812010-02-28 15:39:26 -05001980 ret = btrfs_search_path_in_tree(BTRFS_I(inode)->root->fs_info,
1981 args->treeid, args->objectid,
1982 args->name);
1983
1984 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
1985 ret = -EFAULT;
1986
1987 kfree(args);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001988 return ret;
1989}
1990
Yan, Zheng76dda932009-09-21 16:00:26 -04001991static noinline int btrfs_ioctl_snap_destroy(struct file *file,
1992 void __user *arg)
1993{
1994 struct dentry *parent = fdentry(file);
1995 struct dentry *dentry;
1996 struct inode *dir = parent->d_inode;
1997 struct inode *inode;
1998 struct btrfs_root *root = BTRFS_I(dir)->root;
1999 struct btrfs_root *dest = NULL;
2000 struct btrfs_ioctl_vol_args *vol_args;
2001 struct btrfs_trans_handle *trans;
2002 int namelen;
2003 int ret;
2004 int err = 0;
2005
Yan, Zheng76dda932009-09-21 16:00:26 -04002006 vol_args = memdup_user(arg, sizeof(*vol_args));
2007 if (IS_ERR(vol_args))
2008 return PTR_ERR(vol_args);
2009
2010 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
2011 namelen = strlen(vol_args->name);
2012 if (strchr(vol_args->name, '/') ||
2013 strncmp(vol_args->name, "..", namelen) == 0) {
2014 err = -EINVAL;
2015 goto out;
2016 }
2017
Al Viroa561be72011-11-23 11:57:51 -05002018 err = mnt_want_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04002019 if (err)
2020 goto out;
2021
2022 mutex_lock_nested(&dir->i_mutex, I_MUTEX_PARENT);
2023 dentry = lookup_one_len(vol_args->name, parent, namelen);
2024 if (IS_ERR(dentry)) {
2025 err = PTR_ERR(dentry);
2026 goto out_unlock_dir;
2027 }
2028
2029 if (!dentry->d_inode) {
2030 err = -ENOENT;
2031 goto out_dput;
2032 }
2033
2034 inode = dentry->d_inode;
Sage Weil4260f7c2010-10-29 15:46:43 -04002035 dest = BTRFS_I(inode)->root;
2036 if (!capable(CAP_SYS_ADMIN)){
2037 /*
2038 * Regular user. Only allow this with a special mount
2039 * option, when the user has write+exec access to the
2040 * subvol root, and when rmdir(2) would have been
2041 * allowed.
2042 *
2043 * Note that this is _not_ check that the subvol is
2044 * empty or doesn't contain data that we wouldn't
2045 * otherwise be able to delete.
2046 *
2047 * Users who want to delete empty subvols should try
2048 * rmdir(2).
2049 */
2050 err = -EPERM;
2051 if (!btrfs_test_opt(root, USER_SUBVOL_RM_ALLOWED))
2052 goto out_dput;
2053
2054 /*
2055 * Do not allow deletion if the parent dir is the same
2056 * as the dir to be deleted. That means the ioctl
2057 * must be called on the dentry referencing the root
2058 * of the subvol, not a random directory contained
2059 * within it.
2060 */
2061 err = -EINVAL;
2062 if (root == dest)
2063 goto out_dput;
2064
2065 err = inode_permission(inode, MAY_WRITE | MAY_EXEC);
2066 if (err)
2067 goto out_dput;
2068
2069 /* check if subvolume may be deleted by a non-root user */
2070 err = btrfs_may_delete(dir, dentry, 1);
2071 if (err)
2072 goto out_dput;
2073 }
2074
Li Zefan33345d012011-04-20 10:31:50 +08002075 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
Yan, Zheng76dda932009-09-21 16:00:26 -04002076 err = -EINVAL;
2077 goto out_dput;
2078 }
2079
Yan, Zheng76dda932009-09-21 16:00:26 -04002080 mutex_lock(&inode->i_mutex);
2081 err = d_invalidate(dentry);
2082 if (err)
2083 goto out_unlock;
2084
2085 down_write(&root->fs_info->subvol_sem);
2086
2087 err = may_destroy_subvol(dest);
2088 if (err)
2089 goto out_up_write;
2090
Yan, Zhenga22285a2010-05-16 10:48:46 -04002091 trans = btrfs_start_transaction(root, 0);
2092 if (IS_ERR(trans)) {
2093 err = PTR_ERR(trans);
Dan Carpenterd3270992010-05-29 09:46:47 +00002094 goto out_up_write;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002095 }
2096 trans->block_rsv = &root->fs_info->global_block_rsv;
2097
Yan, Zheng76dda932009-09-21 16:00:26 -04002098 ret = btrfs_unlink_subvol(trans, root, dir,
2099 dest->root_key.objectid,
2100 dentry->d_name.name,
2101 dentry->d_name.len);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002102 if (ret) {
2103 err = ret;
2104 btrfs_abort_transaction(trans, root, ret);
2105 goto out_end_trans;
2106 }
Yan, Zheng76dda932009-09-21 16:00:26 -04002107
2108 btrfs_record_root_in_trans(trans, dest);
2109
2110 memset(&dest->root_item.drop_progress, 0,
2111 sizeof(dest->root_item.drop_progress));
2112 dest->root_item.drop_level = 0;
2113 btrfs_set_root_refs(&dest->root_item, 0);
2114
Yan, Zhengd68fc572010-05-16 10:49:58 -04002115 if (!xchg(&dest->orphan_item_inserted, 1)) {
2116 ret = btrfs_insert_orphan_item(trans,
2117 root->fs_info->tree_root,
2118 dest->root_key.objectid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002119 if (ret) {
2120 btrfs_abort_transaction(trans, root, ret);
2121 err = ret;
2122 goto out_end_trans;
2123 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04002124 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002125out_end_trans:
Sage Weil531cb132010-10-29 15:41:32 -04002126 ret = btrfs_end_transaction(trans, root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002127 if (ret && !err)
2128 err = ret;
Yan, Zheng76dda932009-09-21 16:00:26 -04002129 inode->i_flags |= S_DEAD;
2130out_up_write:
2131 up_write(&root->fs_info->subvol_sem);
2132out_unlock:
2133 mutex_unlock(&inode->i_mutex);
2134 if (!err) {
Yan, Zhengefefb142009-10-09 09:25:16 -04002135 shrink_dcache_sb(root->fs_info->sb);
Yan, Zheng76dda932009-09-21 16:00:26 -04002136 btrfs_invalidate_inodes(dest);
2137 d_delete(dentry);
2138 }
2139out_dput:
2140 dput(dentry);
2141out_unlock_dir:
2142 mutex_unlock(&dir->i_mutex);
Al Viro2a79f172011-12-09 08:06:57 -05002143 mnt_drop_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04002144out:
2145 kfree(vol_args);
2146 return err;
2147}
2148
Chris Mason1e701a32010-03-11 09:42:04 -05002149static int btrfs_ioctl_defrag(struct file *file, void __user *argp)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002150{
2151 struct inode *inode = fdentry(file)->d_inode;
2152 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason1e701a32010-03-11 09:42:04 -05002153 struct btrfs_ioctl_defrag_range_args *range;
Yan Zhengc146afa2008-11-12 14:34:12 -05002154 int ret;
2155
Li Zefanb83cc962010-12-20 16:04:08 +08002156 if (btrfs_root_readonly(root))
2157 return -EROFS;
2158
Al Viroa561be72011-11-23 11:57:51 -05002159 ret = mnt_want_write_file(file);
Yan Zhengc146afa2008-11-12 14:34:12 -05002160 if (ret)
2161 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002162
2163 switch (inode->i_mode & S_IFMT) {
2164 case S_IFDIR:
Chris Masone441d542009-01-05 16:57:23 -05002165 if (!capable(CAP_SYS_ADMIN)) {
2166 ret = -EPERM;
2167 goto out;
2168 }
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04002169 ret = btrfs_defrag_root(root, 0);
2170 if (ret)
2171 goto out;
2172 ret = btrfs_defrag_root(root->fs_info->extent_root, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002173 break;
2174 case S_IFREG:
Chris Masone441d542009-01-05 16:57:23 -05002175 if (!(file->f_mode & FMODE_WRITE)) {
2176 ret = -EINVAL;
2177 goto out;
2178 }
Chris Mason1e701a32010-03-11 09:42:04 -05002179
2180 range = kzalloc(sizeof(*range), GFP_KERNEL);
2181 if (!range) {
2182 ret = -ENOMEM;
2183 goto out;
2184 }
2185
2186 if (argp) {
2187 if (copy_from_user(range, argp,
2188 sizeof(*range))) {
2189 ret = -EFAULT;
2190 kfree(range);
Dan Carpenter683be162010-03-20 11:24:48 +00002191 goto out;
Chris Mason1e701a32010-03-11 09:42:04 -05002192 }
2193 /* compression requires us to start the IO */
2194 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
2195 range->flags |= BTRFS_DEFRAG_RANGE_START_IO;
2196 range->extent_thresh = (u32)-1;
2197 }
2198 } else {
2199 /* the rest are all set to zero by kzalloc */
2200 range->len = (u64)-1;
2201 }
Chris Mason4cb53002011-05-24 15:35:30 -04002202 ret = btrfs_defrag_file(fdentry(file)->d_inode, file,
2203 range, 0, 0);
2204 if (ret > 0)
2205 ret = 0;
Chris Mason1e701a32010-03-11 09:42:04 -05002206 kfree(range);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002207 break;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04002208 default:
2209 ret = -EINVAL;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002210 }
Chris Masone441d542009-01-05 16:57:23 -05002211out:
Al Viro2a79f172011-12-09 08:06:57 -05002212 mnt_drop_write_file(file);
Chris Masone441d542009-01-05 16:57:23 -05002213 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002214}
2215
Christoph Hellwigb2950862008-12-02 09:54:17 -05002216static long btrfs_ioctl_add_dev(struct btrfs_root *root, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002217{
2218 struct btrfs_ioctl_vol_args *vol_args;
2219 int ret;
2220
Chris Masone441d542009-01-05 16:57:23 -05002221 if (!capable(CAP_SYS_ADMIN))
2222 return -EPERM;
2223
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002224 mutex_lock(&root->fs_info->volume_mutex);
2225 if (root->fs_info->balance_ctl) {
2226 printk(KERN_INFO "btrfs: balance in progress\n");
2227 ret = -EINVAL;
2228 goto out;
2229 }
2230
Li Zefandae7b662009-04-08 15:06:54 +08002231 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002232 if (IS_ERR(vol_args)) {
2233 ret = PTR_ERR(vol_args);
2234 goto out;
2235 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002236
Mark Fasheh5516e592008-07-24 12:20:14 -04002237 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002238 ret = btrfs_init_new_device(root, vol_args->name);
2239
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002240 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002241out:
2242 mutex_unlock(&root->fs_info->volume_mutex);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002243 return ret;
2244}
2245
Christoph Hellwigb2950862008-12-02 09:54:17 -05002246static long btrfs_ioctl_rm_dev(struct btrfs_root *root, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002247{
2248 struct btrfs_ioctl_vol_args *vol_args;
2249 int ret;
2250
Chris Masone441d542009-01-05 16:57:23 -05002251 if (!capable(CAP_SYS_ADMIN))
2252 return -EPERM;
2253
Yan Zhengc146afa2008-11-12 14:34:12 -05002254 if (root->fs_info->sb->s_flags & MS_RDONLY)
2255 return -EROFS;
2256
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002257 mutex_lock(&root->fs_info->volume_mutex);
2258 if (root->fs_info->balance_ctl) {
2259 printk(KERN_INFO "btrfs: balance in progress\n");
2260 ret = -EINVAL;
2261 goto out;
2262 }
2263
Li Zefandae7b662009-04-08 15:06:54 +08002264 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002265 if (IS_ERR(vol_args)) {
2266 ret = PTR_ERR(vol_args);
2267 goto out;
2268 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002269
Mark Fasheh5516e592008-07-24 12:20:14 -04002270 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002271 ret = btrfs_rm_device(root, vol_args->name);
2272
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002273 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002274out:
2275 mutex_unlock(&root->fs_info->volume_mutex);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002276 return ret;
2277}
2278
Jan Schmidt475f6382011-03-11 15:41:01 +01002279static long btrfs_ioctl_fs_info(struct btrfs_root *root, void __user *arg)
2280{
Li Zefan027ed2f2011-06-08 08:27:56 +00002281 struct btrfs_ioctl_fs_info_args *fi_args;
Jan Schmidt475f6382011-03-11 15:41:01 +01002282 struct btrfs_device *device;
2283 struct btrfs_device *next;
2284 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
Li Zefan027ed2f2011-06-08 08:27:56 +00002285 int ret = 0;
Jan Schmidt475f6382011-03-11 15:41:01 +01002286
2287 if (!capable(CAP_SYS_ADMIN))
2288 return -EPERM;
2289
Li Zefan027ed2f2011-06-08 08:27:56 +00002290 fi_args = kzalloc(sizeof(*fi_args), GFP_KERNEL);
2291 if (!fi_args)
2292 return -ENOMEM;
2293
2294 fi_args->num_devices = fs_devices->num_devices;
2295 memcpy(&fi_args->fsid, root->fs_info->fsid, sizeof(fi_args->fsid));
Jan Schmidt475f6382011-03-11 15:41:01 +01002296
2297 mutex_lock(&fs_devices->device_list_mutex);
2298 list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) {
Li Zefan027ed2f2011-06-08 08:27:56 +00002299 if (device->devid > fi_args->max_id)
2300 fi_args->max_id = device->devid;
Jan Schmidt475f6382011-03-11 15:41:01 +01002301 }
2302 mutex_unlock(&fs_devices->device_list_mutex);
2303
Li Zefan027ed2f2011-06-08 08:27:56 +00002304 if (copy_to_user(arg, fi_args, sizeof(*fi_args)))
2305 ret = -EFAULT;
Jan Schmidt475f6382011-03-11 15:41:01 +01002306
Li Zefan027ed2f2011-06-08 08:27:56 +00002307 kfree(fi_args);
2308 return ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01002309}
2310
2311static long btrfs_ioctl_dev_info(struct btrfs_root *root, void __user *arg)
2312{
2313 struct btrfs_ioctl_dev_info_args *di_args;
2314 struct btrfs_device *dev;
2315 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
2316 int ret = 0;
2317 char *s_uuid = NULL;
2318 char empty_uuid[BTRFS_UUID_SIZE] = {0};
2319
2320 if (!capable(CAP_SYS_ADMIN))
2321 return -EPERM;
2322
2323 di_args = memdup_user(arg, sizeof(*di_args));
2324 if (IS_ERR(di_args))
2325 return PTR_ERR(di_args);
2326
2327 if (memcmp(empty_uuid, di_args->uuid, BTRFS_UUID_SIZE) != 0)
2328 s_uuid = di_args->uuid;
2329
2330 mutex_lock(&fs_devices->device_list_mutex);
2331 dev = btrfs_find_device(root, di_args->devid, s_uuid, NULL);
2332 mutex_unlock(&fs_devices->device_list_mutex);
2333
2334 if (!dev) {
2335 ret = -ENODEV;
2336 goto out;
2337 }
2338
2339 di_args->devid = dev->devid;
2340 di_args->bytes_used = dev->bytes_used;
2341 di_args->total_bytes = dev->total_bytes;
2342 memcpy(di_args->uuid, dev->uuid, sizeof(di_args->uuid));
Jim Meyeringa27202f2012-04-26 18:36:56 +02002343 if (dev->name) {
Josef Bacik606686e2012-06-04 14:03:51 -04002344 struct rcu_string *name;
2345
2346 rcu_read_lock();
2347 name = rcu_dereference(dev->name);
2348 strncpy(di_args->path, name->str, sizeof(di_args->path));
2349 rcu_read_unlock();
Jim Meyeringa27202f2012-04-26 18:36:56 +02002350 di_args->path[sizeof(di_args->path) - 1] = 0;
2351 } else {
Stefan Behrens99ba55a2012-03-19 16:17:22 +01002352 di_args->path[0] = '\0';
Jim Meyeringa27202f2012-04-26 18:36:56 +02002353 }
Jan Schmidt475f6382011-03-11 15:41:01 +01002354
2355out:
2356 if (ret == 0 && copy_to_user(arg, di_args, sizeof(*di_args)))
2357 ret = -EFAULT;
2358
2359 kfree(di_args);
2360 return ret;
2361}
2362
Yan, Zheng76dda932009-09-21 16:00:26 -04002363static noinline long btrfs_ioctl_clone(struct file *file, unsigned long srcfd,
2364 u64 off, u64 olen, u64 destoff)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002365{
2366 struct inode *inode = fdentry(file)->d_inode;
2367 struct btrfs_root *root = BTRFS_I(inode)->root;
Al Viro2903ff02012-08-28 12:52:22 -04002368 struct fd src_file;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002369 struct inode *src;
2370 struct btrfs_trans_handle *trans;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002371 struct btrfs_path *path;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002372 struct extent_buffer *leaf;
Yan Zhengae01a0a2008-08-04 23:23:47 -04002373 char *buf;
2374 struct btrfs_key key;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002375 u32 nritems;
2376 int slot;
Yan Zhengae01a0a2008-08-04 23:23:47 -04002377 int ret;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002378 u64 len = olen;
2379 u64 bs = root->fs_info->sb->s_blocksize;
Chris Masond20f7042008-12-08 16:58:54 -05002380
Sage Weilc5c9cd42008-11-12 14:32:25 -05002381 /*
2382 * TODO:
2383 * - split compressed inline extents. annoying: we need to
2384 * decompress into destination's address_space (the file offset
2385 * may change, so source mapping won't do), then recompress (or
2386 * otherwise reinsert) a subrange.
2387 * - allow ranges within the same file to be cloned (provided
2388 * they don't overlap)?
2389 */
2390
Chris Masone441d542009-01-05 16:57:23 -05002391 /* the destination must be opened for writing */
Dan Rosenberg2ebc3462010-07-19 16:58:20 -04002392 if (!(file->f_mode & FMODE_WRITE) || (file->f_flags & O_APPEND))
Chris Masone441d542009-01-05 16:57:23 -05002393 return -EINVAL;
2394
Li Zefanb83cc962010-12-20 16:04:08 +08002395 if (btrfs_root_readonly(root))
2396 return -EROFS;
2397
Al Viroa561be72011-11-23 11:57:51 -05002398 ret = mnt_want_write_file(file);
Yan Zhengc146afa2008-11-12 14:34:12 -05002399 if (ret)
2400 return ret;
2401
Al Viro2903ff02012-08-28 12:52:22 -04002402 src_file = fdget(srcfd);
2403 if (!src_file.file) {
Yan Zhengab67b7c2008-12-19 10:58:39 -05002404 ret = -EBADF;
2405 goto out_drop_write;
2406 }
Dan Rosenberg5dc64162010-05-15 11:27:37 -04002407
David Sterba362a20c2011-08-01 18:11:57 +02002408 ret = -EXDEV;
Al Viro2903ff02012-08-28 12:52:22 -04002409 if (src_file.file->f_path.mnt != file->f_path.mnt)
David Sterba362a20c2011-08-01 18:11:57 +02002410 goto out_fput;
2411
Al Viro2903ff02012-08-28 12:52:22 -04002412 src = src_file.file->f_dentry->d_inode;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002413
Sage Weilc5c9cd42008-11-12 14:32:25 -05002414 ret = -EINVAL;
2415 if (src == inode)
2416 goto out_fput;
2417
Dan Rosenberg5dc64162010-05-15 11:27:37 -04002418 /* the src must be open for reading */
Al Viro2903ff02012-08-28 12:52:22 -04002419 if (!(src_file.file->f_mode & FMODE_READ))
Dan Rosenberg5dc64162010-05-15 11:27:37 -04002420 goto out_fput;
2421
Li Zefan0e7b8242011-09-18 10:20:46 -04002422 /* don't make the dst file partly checksummed */
2423 if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
2424 (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM))
2425 goto out_fput;
2426
Yan Zhengae01a0a2008-08-04 23:23:47 -04002427 ret = -EISDIR;
2428 if (S_ISDIR(src->i_mode) || S_ISDIR(inode->i_mode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002429 goto out_fput;
2430
Yan Zhengae01a0a2008-08-04 23:23:47 -04002431 ret = -EXDEV;
David Sterba362a20c2011-08-01 18:11:57 +02002432 if (src->i_sb != inode->i_sb)
Yan Zhengae01a0a2008-08-04 23:23:47 -04002433 goto out_fput;
2434
2435 ret = -ENOMEM;
2436 buf = vmalloc(btrfs_level_size(root, 0));
2437 if (!buf)
2438 goto out_fput;
2439
2440 path = btrfs_alloc_path();
2441 if (!path) {
2442 vfree(buf);
2443 goto out_fput;
2444 }
2445 path->reada = 2;
2446
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002447 if (inode < src) {
Sage Weilfccdae42010-10-29 15:37:33 -04002448 mutex_lock_nested(&inode->i_mutex, I_MUTEX_PARENT);
2449 mutex_lock_nested(&src->i_mutex, I_MUTEX_CHILD);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002450 } else {
Sage Weilfccdae42010-10-29 15:37:33 -04002451 mutex_lock_nested(&src->i_mutex, I_MUTEX_PARENT);
2452 mutex_lock_nested(&inode->i_mutex, I_MUTEX_CHILD);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002453 }
2454
Sage Weilc5c9cd42008-11-12 14:32:25 -05002455 /* determine range to clone */
2456 ret = -EINVAL;
Dan Rosenberg2ebc3462010-07-19 16:58:20 -04002457 if (off + len > src->i_size || off + len < off)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002458 goto out_unlock;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002459 if (len == 0)
2460 olen = len = src->i_size - off;
2461 /* if we extend to eof, continue to block boundary */
2462 if (off + len == src->i_size)
Li Zefan2a6b8da2010-11-19 01:36:10 +00002463 len = ALIGN(src->i_size, bs) - off;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002464
2465 /* verify the end result is block aligned */
Li Zefan2a6b8da2010-11-19 01:36:10 +00002466 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs) ||
2467 !IS_ALIGNED(destoff, bs))
Sage Weilc5c9cd42008-11-12 14:32:25 -05002468 goto out_unlock;
2469
Li Zefand525e8a2011-09-11 10:52:25 -04002470 if (destoff > inode->i_size) {
2471 ret = btrfs_cont_expand(inode, inode->i_size, destoff);
2472 if (ret)
2473 goto out_unlock;
2474 }
2475
Li Zefan71ef0782011-09-18 10:20:46 -04002476 /* truncate page cache pages from target inode range */
2477 truncate_inode_pages_range(&inode->i_data, destoff,
2478 PAGE_CACHE_ALIGN(destoff + len) - 1);
2479
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002480 /* do any pending delalloc/csum calc on src, one way or
2481 another, and lock file content */
2482 while (1) {
Zheng Yan31840ae2008-09-23 13:14:14 -04002483 struct btrfs_ordered_extent *ordered;
Liu Boaa42ffd2012-09-18 03:52:23 -06002484 lock_extent(&BTRFS_I(src)->io_tree, off, off + len - 1);
2485 ordered = btrfs_lookup_first_ordered_extent(src, off + len - 1);
Sage Weil9a019192010-10-29 15:37:33 -04002486 if (!ordered &&
Liu Boaa42ffd2012-09-18 03:52:23 -06002487 !test_range_bit(&BTRFS_I(src)->io_tree, off, off + len - 1,
2488 EXTENT_DELALLOC, 0, NULL))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002489 break;
Liu Boaa42ffd2012-09-18 03:52:23 -06002490 unlock_extent(&BTRFS_I(src)->io_tree, off, off + len - 1);
Yan Zhengae01a0a2008-08-04 23:23:47 -04002491 if (ordered)
2492 btrfs_put_ordered_extent(ordered);
Sage Weil9a019192010-10-29 15:37:33 -04002493 btrfs_wait_ordered_range(src, off, len);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002494 }
2495
Sage Weilc5c9cd42008-11-12 14:32:25 -05002496 /* clone data */
Li Zefan33345d012011-04-20 10:31:50 +08002497 key.objectid = btrfs_ino(src);
Yan Zhengae01a0a2008-08-04 23:23:47 -04002498 key.type = BTRFS_EXTENT_DATA_KEY;
2499 key.offset = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002500
2501 while (1) {
2502 /*
2503 * note the key will change type as we walk through the
2504 * tree.
2505 */
David Sterba362a20c2011-08-01 18:11:57 +02002506 ret = btrfs_search_slot(NULL, BTRFS_I(src)->root, &key, path,
2507 0, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002508 if (ret < 0)
2509 goto out;
2510
Yan Zhengae01a0a2008-08-04 23:23:47 -04002511 nritems = btrfs_header_nritems(path->nodes[0]);
2512 if (path->slots[0] >= nritems) {
David Sterba362a20c2011-08-01 18:11:57 +02002513 ret = btrfs_next_leaf(BTRFS_I(src)->root, path);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002514 if (ret < 0)
2515 goto out;
2516 if (ret > 0)
2517 break;
Yan Zhengae01a0a2008-08-04 23:23:47 -04002518 nritems = btrfs_header_nritems(path->nodes[0]);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002519 }
2520 leaf = path->nodes[0];
2521 slot = path->slots[0];
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002522
Yan Zhengae01a0a2008-08-04 23:23:47 -04002523 btrfs_item_key_to_cpu(leaf, &key, slot);
Chris Masond20f7042008-12-08 16:58:54 -05002524 if (btrfs_key_type(&key) > BTRFS_EXTENT_DATA_KEY ||
Li Zefan33345d012011-04-20 10:31:50 +08002525 key.objectid != btrfs_ino(src))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002526 break;
2527
Sage Weilc5c9cd42008-11-12 14:32:25 -05002528 if (btrfs_key_type(&key) == BTRFS_EXTENT_DATA_KEY) {
2529 struct btrfs_file_extent_item *extent;
2530 int type;
Zheng Yan31840ae2008-09-23 13:14:14 -04002531 u32 size;
2532 struct btrfs_key new_key;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002533 u64 disko = 0, diskl = 0;
2534 u64 datao = 0, datal = 0;
2535 u8 comp;
Sage Weilb5384d42010-06-12 22:31:14 +00002536 u64 endoff;
Zheng Yan31840ae2008-09-23 13:14:14 -04002537
2538 size = btrfs_item_size_nr(leaf, slot);
2539 read_extent_buffer(leaf, buf,
2540 btrfs_item_ptr_offset(leaf, slot),
2541 size);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002542
2543 extent = btrfs_item_ptr(leaf, slot,
2544 struct btrfs_file_extent_item);
2545 comp = btrfs_file_extent_compression(leaf, extent);
2546 type = btrfs_file_extent_type(leaf, extent);
Chris Masonc8a894d2009-06-27 21:07:03 -04002547 if (type == BTRFS_FILE_EXTENT_REG ||
2548 type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masond3977122009-01-05 21:25:51 -05002549 disko = btrfs_file_extent_disk_bytenr(leaf,
2550 extent);
2551 diskl = btrfs_file_extent_disk_num_bytes(leaf,
2552 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002553 datao = btrfs_file_extent_offset(leaf, extent);
Chris Masond3977122009-01-05 21:25:51 -05002554 datal = btrfs_file_extent_num_bytes(leaf,
2555 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002556 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
2557 /* take upper bound, may be compressed */
2558 datal = btrfs_file_extent_ram_bytes(leaf,
2559 extent);
2560 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002561 btrfs_release_path(path);
Zheng Yan31840ae2008-09-23 13:14:14 -04002562
Sage Weil050006a2010-10-29 15:37:33 -04002563 if (key.offset + datal <= off ||
Liu Boaa42ffd2012-09-18 03:52:23 -06002564 key.offset >= off + len - 1)
Sage Weilc5c9cd42008-11-12 14:32:25 -05002565 goto next;
2566
Zheng Yan31840ae2008-09-23 13:14:14 -04002567 memcpy(&new_key, &key, sizeof(new_key));
Li Zefan33345d012011-04-20 10:31:50 +08002568 new_key.objectid = btrfs_ino(inode);
Li Zefan4d728ec2011-01-26 14:10:43 +08002569 if (off <= key.offset)
2570 new_key.offset = key.offset + destoff - off;
2571 else
2572 new_key.offset = destoff;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002573
Sage Weilb6f34092011-09-20 14:48:51 -04002574 /*
2575 * 1 - adjusting old extent (we may have to split it)
2576 * 1 - add new extent
2577 * 1 - inode update
2578 */
2579 trans = btrfs_start_transaction(root, 3);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002580 if (IS_ERR(trans)) {
2581 ret = PTR_ERR(trans);
2582 goto out;
2583 }
2584
Chris Masonc8a894d2009-06-27 21:07:03 -04002585 if (type == BTRFS_FILE_EXTENT_REG ||
2586 type == BTRFS_FILE_EXTENT_PREALLOC) {
Li Zefand72c0842011-09-11 10:52:25 -04002587 /*
2588 * a | --- range to clone ---| b
2589 * | ------------- extent ------------- |
2590 */
2591
2592 /* substract range b */
2593 if (key.offset + datal > off + len)
2594 datal = off + len - key.offset;
2595
2596 /* substract range a */
Yan, Zhenga22285a2010-05-16 10:48:46 -04002597 if (off > key.offset) {
2598 datao += off - key.offset;
2599 datal -= off - key.offset;
2600 }
2601
Josef Bacik5dc562c2012-08-17 13:14:17 -04002602 ret = btrfs_drop_extents(trans, root, inode,
Yan, Zhenga22285a2010-05-16 10:48:46 -04002603 new_key.offset,
2604 new_key.offset + datal,
Josef Bacik26714852012-08-29 12:24:27 -04002605 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002606 if (ret) {
2607 btrfs_abort_transaction(trans, root,
2608 ret);
2609 btrfs_end_transaction(trans, root);
2610 goto out;
2611 }
Yan, Zhenga22285a2010-05-16 10:48:46 -04002612
Sage Weilc5c9cd42008-11-12 14:32:25 -05002613 ret = btrfs_insert_empty_item(trans, root, path,
2614 &new_key, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002615 if (ret) {
2616 btrfs_abort_transaction(trans, root,
2617 ret);
2618 btrfs_end_transaction(trans, root);
2619 goto out;
2620 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05002621
2622 leaf = path->nodes[0];
2623 slot = path->slots[0];
2624 write_extent_buffer(leaf, buf,
2625 btrfs_item_ptr_offset(leaf, slot),
2626 size);
2627
2628 extent = btrfs_item_ptr(leaf, slot,
2629 struct btrfs_file_extent_item);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002630
Sage Weilc5c9cd42008-11-12 14:32:25 -05002631 /* disko == 0 means it's a hole */
2632 if (!disko)
2633 datao = 0;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002634
2635 btrfs_set_file_extent_offset(leaf, extent,
2636 datao);
2637 btrfs_set_file_extent_num_bytes(leaf, extent,
2638 datal);
2639 if (disko) {
2640 inode_add_bytes(inode, datal);
2641 ret = btrfs_inc_extent_ref(trans, root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002642 disko, diskl, 0,
2643 root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08002644 btrfs_ino(inode),
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002645 new_key.offset - datao,
2646 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002647 if (ret) {
2648 btrfs_abort_transaction(trans,
2649 root,
2650 ret);
2651 btrfs_end_transaction(trans,
2652 root);
2653 goto out;
2654
2655 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05002656 }
2657 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
2658 u64 skip = 0;
2659 u64 trim = 0;
2660 if (off > key.offset) {
2661 skip = off - key.offset;
2662 new_key.offset += skip;
2663 }
Chris Masond3977122009-01-05 21:25:51 -05002664
Liu Boaa42ffd2012-09-18 03:52:23 -06002665 if (key.offset + datal > off + len)
2666 trim = key.offset + datal - (off + len);
Chris Masond3977122009-01-05 21:25:51 -05002667
Sage Weilc5c9cd42008-11-12 14:32:25 -05002668 if (comp && (skip || trim)) {
Sage Weilc5c9cd42008-11-12 14:32:25 -05002669 ret = -EINVAL;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002670 btrfs_end_transaction(trans, root);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002671 goto out;
2672 }
2673 size -= skip + trim;
2674 datal -= skip + trim;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002675
Josef Bacik5dc562c2012-08-17 13:14:17 -04002676 ret = btrfs_drop_extents(trans, root, inode,
Yan, Zhenga22285a2010-05-16 10:48:46 -04002677 new_key.offset,
2678 new_key.offset + datal,
Josef Bacik26714852012-08-29 12:24:27 -04002679 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002680 if (ret) {
2681 btrfs_abort_transaction(trans, root,
2682 ret);
2683 btrfs_end_transaction(trans, root);
2684 goto out;
2685 }
Yan, Zhenga22285a2010-05-16 10:48:46 -04002686
Sage Weilc5c9cd42008-11-12 14:32:25 -05002687 ret = btrfs_insert_empty_item(trans, root, path,
2688 &new_key, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002689 if (ret) {
2690 btrfs_abort_transaction(trans, root,
2691 ret);
2692 btrfs_end_transaction(trans, root);
2693 goto out;
2694 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05002695
2696 if (skip) {
Chris Masond3977122009-01-05 21:25:51 -05002697 u32 start =
2698 btrfs_file_extent_calc_inline_size(0);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002699 memmove(buf+start, buf+start+skip,
2700 datal);
2701 }
2702
2703 leaf = path->nodes[0];
2704 slot = path->slots[0];
2705 write_extent_buffer(leaf, buf,
2706 btrfs_item_ptr_offset(leaf, slot),
2707 size);
2708 inode_add_bytes(inode, datal);
2709 }
2710
2711 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02002712 btrfs_release_path(path);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002713
Josef Bacik0c4d2d92012-04-05 15:03:02 -04002714 inode_inc_iversion(inode);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002715 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
Sage Weilb5384d42010-06-12 22:31:14 +00002716
2717 /*
2718 * we round up to the block size at eof when
2719 * determining which extents to clone above,
2720 * but shouldn't round up the file size
2721 */
2722 endoff = new_key.offset + datal;
Li Zefan5f3888f2010-11-19 01:36:34 +00002723 if (endoff > destoff+olen)
2724 endoff = destoff+olen;
Sage Weilb5384d42010-06-12 22:31:14 +00002725 if (endoff > inode->i_size)
2726 btrfs_i_size_write(inode, endoff);
2727
Yan, Zhenga22285a2010-05-16 10:48:46 -04002728 ret = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002729 if (ret) {
2730 btrfs_abort_transaction(trans, root, ret);
2731 btrfs_end_transaction(trans, root);
2732 goto out;
2733 }
2734 ret = btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002735 }
Chris Masond3977122009-01-05 21:25:51 -05002736next:
David Sterbab3b4aa72011-04-21 01:20:15 +02002737 btrfs_release_path(path);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002738 key.offset++;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002739 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002740 ret = 0;
2741out:
David Sterbab3b4aa72011-04-21 01:20:15 +02002742 btrfs_release_path(path);
Liu Boaa42ffd2012-09-18 03:52:23 -06002743 unlock_extent(&BTRFS_I(src)->io_tree, off, off + len - 1);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002744out_unlock:
2745 mutex_unlock(&src->i_mutex);
2746 mutex_unlock(&inode->i_mutex);
Yan Zhengae01a0a2008-08-04 23:23:47 -04002747 vfree(buf);
2748 btrfs_free_path(path);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002749out_fput:
Al Viro2903ff02012-08-28 12:52:22 -04002750 fdput(src_file);
Yan Zhengab67b7c2008-12-19 10:58:39 -05002751out_drop_write:
Al Viro2a79f172011-12-09 08:06:57 -05002752 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002753 return ret;
2754}
2755
Christoph Hellwig7a865e82008-12-02 09:52:24 -05002756static long btrfs_ioctl_clone_range(struct file *file, void __user *argp)
Sage Weilc5c9cd42008-11-12 14:32:25 -05002757{
2758 struct btrfs_ioctl_clone_range_args args;
2759
Christoph Hellwig7a865e82008-12-02 09:52:24 -05002760 if (copy_from_user(&args, argp, sizeof(args)))
Sage Weilc5c9cd42008-11-12 14:32:25 -05002761 return -EFAULT;
2762 return btrfs_ioctl_clone(file, args.src_fd, args.src_offset,
2763 args.src_length, args.dest_offset);
2764}
2765
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002766/*
2767 * there are many ways the trans_start and trans_end ioctls can lead
2768 * to deadlocks. They should only be used by applications that
2769 * basically own the machine, and have a very in depth understanding
2770 * of all the possible deadlocks and enospc problems.
2771 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05002772static long btrfs_ioctl_trans_start(struct file *file)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002773{
2774 struct inode *inode = fdentry(file)->d_inode;
2775 struct btrfs_root *root = BTRFS_I(inode)->root;
2776 struct btrfs_trans_handle *trans;
Sage Weil1ab86ae2009-09-29 18:38:44 -04002777 int ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002778
Sage Weil1ab86ae2009-09-29 18:38:44 -04002779 ret = -EPERM;
Christoph Hellwigdf5b5522008-06-11 21:53:58 -04002780 if (!capable(CAP_SYS_ADMIN))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002781 goto out;
Sage Weil1ab86ae2009-09-29 18:38:44 -04002782
2783 ret = -EINPROGRESS;
2784 if (file->private_data)
2785 goto out;
Sage Weil9ca9ee02008-08-04 10:41:27 -04002786
Li Zefanb83cc962010-12-20 16:04:08 +08002787 ret = -EROFS;
2788 if (btrfs_root_readonly(root))
2789 goto out;
2790
Al Viroa561be72011-11-23 11:57:51 -05002791 ret = mnt_want_write_file(file);
Yan Zhengc146afa2008-11-12 14:34:12 -05002792 if (ret)
2793 goto out;
2794
Josef Bacika4abeea2011-04-11 17:25:13 -04002795 atomic_inc(&root->fs_info->open_ioctl_trans);
Sage Weil9ca9ee02008-08-04 10:41:27 -04002796
Sage Weil1ab86ae2009-09-29 18:38:44 -04002797 ret = -ENOMEM;
Josef Bacik7a7eaa42011-04-13 12:54:33 -04002798 trans = btrfs_start_ioctl_transaction(root);
Tsutomu Itohabd30bb2011-01-24 00:57:10 +00002799 if (IS_ERR(trans))
Sage Weil1ab86ae2009-09-29 18:38:44 -04002800 goto out_drop;
2801
2802 file->private_data = trans;
2803 return 0;
2804
2805out_drop:
Josef Bacika4abeea2011-04-11 17:25:13 -04002806 atomic_dec(&root->fs_info->open_ioctl_trans);
Al Viro2a79f172011-12-09 08:06:57 -05002807 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002808out:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002809 return ret;
2810}
2811
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002812static long btrfs_ioctl_default_subvol(struct file *file, void __user *argp)
2813{
2814 struct inode *inode = fdentry(file)->d_inode;
2815 struct btrfs_root *root = BTRFS_I(inode)->root;
2816 struct btrfs_root *new_root;
2817 struct btrfs_dir_item *di;
2818 struct btrfs_trans_handle *trans;
2819 struct btrfs_path *path;
2820 struct btrfs_key location;
2821 struct btrfs_disk_key disk_key;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002822 u64 objectid = 0;
2823 u64 dir_id;
2824
2825 if (!capable(CAP_SYS_ADMIN))
2826 return -EPERM;
2827
2828 if (copy_from_user(&objectid, argp, sizeof(objectid)))
2829 return -EFAULT;
2830
2831 if (!objectid)
2832 objectid = root->root_key.objectid;
2833
2834 location.objectid = objectid;
2835 location.type = BTRFS_ROOT_ITEM_KEY;
2836 location.offset = (u64)-1;
2837
2838 new_root = btrfs_read_fs_root_no_name(root->fs_info, &location);
2839 if (IS_ERR(new_root))
2840 return PTR_ERR(new_root);
2841
2842 if (btrfs_root_refs(&new_root->root_item) == 0)
2843 return -ENOENT;
2844
2845 path = btrfs_alloc_path();
2846 if (!path)
2847 return -ENOMEM;
2848 path->leave_spinning = 1;
2849
2850 trans = btrfs_start_transaction(root, 1);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002851 if (IS_ERR(trans)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002852 btrfs_free_path(path);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002853 return PTR_ERR(trans);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002854 }
2855
David Sterba6c417612011-04-13 15:41:04 +02002856 dir_id = btrfs_super_root_dir(root->fs_info->super_copy);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002857 di = btrfs_lookup_dir_item(trans, root->fs_info->tree_root, path,
2858 dir_id, "default", 7, 1);
Dan Carpentercf1e99a2010-05-29 09:47:24 +00002859 if (IS_ERR_OR_NULL(di)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002860 btrfs_free_path(path);
2861 btrfs_end_transaction(trans, root);
2862 printk(KERN_ERR "Umm, you don't have the default dir item, "
2863 "this isn't going to work\n");
2864 return -ENOENT;
2865 }
2866
2867 btrfs_cpu_key_to_disk(&disk_key, &new_root->root_key);
2868 btrfs_set_dir_item_key(path->nodes[0], di, &disk_key);
2869 btrfs_mark_buffer_dirty(path->nodes[0]);
2870 btrfs_free_path(path);
2871
Mitch Harder2b0ce2c2012-07-24 11:58:43 -06002872 btrfs_set_fs_incompat(root->fs_info, DEFAULT_SUBVOL);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002873 btrfs_end_transaction(trans, root);
2874
2875 return 0;
2876}
2877
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02002878void btrfs_get_block_group_info(struct list_head *groups_list,
2879 struct btrfs_ioctl_space_info *space)
Josef Bacikbf5fc0932010-09-29 11:22:36 -04002880{
2881 struct btrfs_block_group_cache *block_group;
2882
2883 space->total_bytes = 0;
2884 space->used_bytes = 0;
2885 space->flags = 0;
2886 list_for_each_entry(block_group, groups_list, list) {
2887 space->flags = block_group->flags;
2888 space->total_bytes += block_group->key.offset;
2889 space->used_bytes +=
2890 btrfs_block_group_used(&block_group->item);
2891 }
2892}
2893
Josef Bacik1406e432010-01-13 18:19:06 +00002894long btrfs_ioctl_space_info(struct btrfs_root *root, void __user *arg)
2895{
2896 struct btrfs_ioctl_space_args space_args;
2897 struct btrfs_ioctl_space_info space;
2898 struct btrfs_ioctl_space_info *dest;
Chris Mason7fde62b2010-03-16 15:40:10 -04002899 struct btrfs_ioctl_space_info *dest_orig;
Daniel J Blueman13f26962011-04-11 15:56:31 +00002900 struct btrfs_ioctl_space_info __user *user_dest;
Josef Bacik1406e432010-01-13 18:19:06 +00002901 struct btrfs_space_info *info;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04002902 u64 types[] = {BTRFS_BLOCK_GROUP_DATA,
2903 BTRFS_BLOCK_GROUP_SYSTEM,
2904 BTRFS_BLOCK_GROUP_METADATA,
2905 BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA};
2906 int num_types = 4;
Chris Mason7fde62b2010-03-16 15:40:10 -04002907 int alloc_size;
Josef Bacik1406e432010-01-13 18:19:06 +00002908 int ret = 0;
Dan Rosenberg51788b12011-02-14 16:04:23 -05002909 u64 slot_count = 0;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04002910 int i, c;
Josef Bacik1406e432010-01-13 18:19:06 +00002911
2912 if (copy_from_user(&space_args,
2913 (struct btrfs_ioctl_space_args __user *)arg,
2914 sizeof(space_args)))
2915 return -EFAULT;
2916
Josef Bacikbf5fc0932010-09-29 11:22:36 -04002917 for (i = 0; i < num_types; i++) {
2918 struct btrfs_space_info *tmp;
2919
2920 info = NULL;
2921 rcu_read_lock();
2922 list_for_each_entry_rcu(tmp, &root->fs_info->space_info,
2923 list) {
2924 if (tmp->flags == types[i]) {
2925 info = tmp;
2926 break;
2927 }
2928 }
2929 rcu_read_unlock();
2930
2931 if (!info)
2932 continue;
2933
2934 down_read(&info->groups_sem);
2935 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
2936 if (!list_empty(&info->block_groups[c]))
2937 slot_count++;
2938 }
2939 up_read(&info->groups_sem);
2940 }
Josef Bacik1406e432010-01-13 18:19:06 +00002941
Chris Mason7fde62b2010-03-16 15:40:10 -04002942 /* space_slots == 0 means they are asking for a count */
2943 if (space_args.space_slots == 0) {
2944 space_args.total_spaces = slot_count;
2945 goto out;
2946 }
Josef Bacikbf5fc0932010-09-29 11:22:36 -04002947
Dan Rosenberg51788b12011-02-14 16:04:23 -05002948 slot_count = min_t(u64, space_args.space_slots, slot_count);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04002949
Chris Mason7fde62b2010-03-16 15:40:10 -04002950 alloc_size = sizeof(*dest) * slot_count;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04002951
Chris Mason7fde62b2010-03-16 15:40:10 -04002952 /* we generally have at most 6 or so space infos, one for each raid
2953 * level. So, a whole page should be more than enough for everyone
2954 */
2955 if (alloc_size > PAGE_CACHE_SIZE)
2956 return -ENOMEM;
2957
2958 space_args.total_spaces = 0;
2959 dest = kmalloc(alloc_size, GFP_NOFS);
2960 if (!dest)
2961 return -ENOMEM;
2962 dest_orig = dest;
2963
2964 /* now we have a buffer to copy into */
Josef Bacikbf5fc0932010-09-29 11:22:36 -04002965 for (i = 0; i < num_types; i++) {
2966 struct btrfs_space_info *tmp;
Chris Mason7fde62b2010-03-16 15:40:10 -04002967
Dan Rosenberg51788b12011-02-14 16:04:23 -05002968 if (!slot_count)
2969 break;
2970
Josef Bacikbf5fc0932010-09-29 11:22:36 -04002971 info = NULL;
2972 rcu_read_lock();
2973 list_for_each_entry_rcu(tmp, &root->fs_info->space_info,
2974 list) {
2975 if (tmp->flags == types[i]) {
2976 info = tmp;
2977 break;
2978 }
2979 }
2980 rcu_read_unlock();
Chris Mason7fde62b2010-03-16 15:40:10 -04002981
Josef Bacikbf5fc0932010-09-29 11:22:36 -04002982 if (!info)
2983 continue;
2984 down_read(&info->groups_sem);
2985 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
2986 if (!list_empty(&info->block_groups[c])) {
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02002987 btrfs_get_block_group_info(
2988 &info->block_groups[c], &space);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04002989 memcpy(dest, &space, sizeof(space));
2990 dest++;
2991 space_args.total_spaces++;
Dan Rosenberg51788b12011-02-14 16:04:23 -05002992 slot_count--;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04002993 }
Dan Rosenberg51788b12011-02-14 16:04:23 -05002994 if (!slot_count)
2995 break;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04002996 }
2997 up_read(&info->groups_sem);
Josef Bacik1406e432010-01-13 18:19:06 +00002998 }
Josef Bacik1406e432010-01-13 18:19:06 +00002999
Daniel J Blueman2eec6c82012-04-26 00:37:14 +08003000 user_dest = (struct btrfs_ioctl_space_info __user *)
Chris Mason7fde62b2010-03-16 15:40:10 -04003001 (arg + sizeof(struct btrfs_ioctl_space_args));
3002
3003 if (copy_to_user(user_dest, dest_orig, alloc_size))
3004 ret = -EFAULT;
3005
3006 kfree(dest_orig);
3007out:
3008 if (ret == 0 && copy_to_user(arg, &space_args, sizeof(space_args)))
Josef Bacik1406e432010-01-13 18:19:06 +00003009 ret = -EFAULT;
3010
3011 return ret;
3012}
3013
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003014/*
3015 * there are many ways the trans_start and trans_end ioctls can lead
3016 * to deadlocks. They should only be used by applications that
3017 * basically own the machine, and have a very in depth understanding
3018 * of all the possible deadlocks and enospc problems.
3019 */
3020long btrfs_ioctl_trans_end(struct file *file)
3021{
3022 struct inode *inode = fdentry(file)->d_inode;
3023 struct btrfs_root *root = BTRFS_I(inode)->root;
3024 struct btrfs_trans_handle *trans;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003025
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003026 trans = file->private_data;
Sage Weil1ab86ae2009-09-29 18:38:44 -04003027 if (!trans)
3028 return -EINVAL;
Christoph Hellwigb2141072008-09-05 16:43:31 -04003029 file->private_data = NULL;
Sage Weil9ca9ee02008-08-04 10:41:27 -04003030
Sage Weil1ab86ae2009-09-29 18:38:44 -04003031 btrfs_end_transaction(trans, root);
3032
Josef Bacika4abeea2011-04-11 17:25:13 -04003033 atomic_dec(&root->fs_info->open_ioctl_trans);
Sage Weil9ca9ee02008-08-04 10:41:27 -04003034
Al Viro2a79f172011-12-09 08:06:57 -05003035 mnt_drop_write_file(file);
Sage Weil1ab86ae2009-09-29 18:38:44 -04003036 return 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003037}
3038
Sage Weil46204592010-10-29 15:41:32 -04003039static noinline long btrfs_ioctl_start_sync(struct file *file, void __user *argp)
3040{
3041 struct btrfs_root *root = BTRFS_I(file->f_dentry->d_inode)->root;
3042 struct btrfs_trans_handle *trans;
3043 u64 transid;
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00003044 int ret;
Sage Weil46204592010-10-29 15:41:32 -04003045
3046 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00003047 if (IS_ERR(trans))
3048 return PTR_ERR(trans);
Sage Weil46204592010-10-29 15:41:32 -04003049 transid = trans->transid;
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00003050 ret = btrfs_commit_transaction_async(trans, root, 0);
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00003051 if (ret) {
3052 btrfs_end_transaction(trans, root);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00003053 return ret;
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00003054 }
Sage Weil46204592010-10-29 15:41:32 -04003055
3056 if (argp)
3057 if (copy_to_user(argp, &transid, sizeof(transid)))
3058 return -EFAULT;
3059 return 0;
3060}
3061
3062static noinline long btrfs_ioctl_wait_sync(struct file *file, void __user *argp)
3063{
3064 struct btrfs_root *root = BTRFS_I(file->f_dentry->d_inode)->root;
3065 u64 transid;
3066
3067 if (argp) {
3068 if (copy_from_user(&transid, argp, sizeof(transid)))
3069 return -EFAULT;
3070 } else {
3071 transid = 0; /* current trans */
3072 }
3073 return btrfs_wait_for_commit(root, transid);
3074}
3075
Jan Schmidt475f6382011-03-11 15:41:01 +01003076static long btrfs_ioctl_scrub(struct btrfs_root *root, void __user *arg)
3077{
3078 int ret;
3079 struct btrfs_ioctl_scrub_args *sa;
3080
3081 if (!capable(CAP_SYS_ADMIN))
3082 return -EPERM;
3083
3084 sa = memdup_user(arg, sizeof(*sa));
3085 if (IS_ERR(sa))
3086 return PTR_ERR(sa);
3087
3088 ret = btrfs_scrub_dev(root, sa->devid, sa->start, sa->end,
Arne Jansen86287642011-03-23 16:34:19 +01003089 &sa->progress, sa->flags & BTRFS_SCRUB_READONLY);
Jan Schmidt475f6382011-03-11 15:41:01 +01003090
3091 if (copy_to_user(arg, sa, sizeof(*sa)))
3092 ret = -EFAULT;
3093
3094 kfree(sa);
3095 return ret;
3096}
3097
3098static long btrfs_ioctl_scrub_cancel(struct btrfs_root *root, void __user *arg)
3099{
3100 if (!capable(CAP_SYS_ADMIN))
3101 return -EPERM;
3102
3103 return btrfs_scrub_cancel(root);
3104}
3105
3106static long btrfs_ioctl_scrub_progress(struct btrfs_root *root,
3107 void __user *arg)
3108{
3109 struct btrfs_ioctl_scrub_args *sa;
3110 int ret;
3111
3112 if (!capable(CAP_SYS_ADMIN))
3113 return -EPERM;
3114
3115 sa = memdup_user(arg, sizeof(*sa));
3116 if (IS_ERR(sa))
3117 return PTR_ERR(sa);
3118
3119 ret = btrfs_scrub_progress(root, sa->devid, &sa->progress);
3120
3121 if (copy_to_user(arg, sa, sizeof(*sa)))
3122 ret = -EFAULT;
3123
3124 kfree(sa);
3125 return ret;
3126}
3127
Stefan Behrensc11d2c22012-05-25 16:06:09 +02003128static long btrfs_ioctl_get_dev_stats(struct btrfs_root *root,
David Sterbab27f7c02012-06-22 06:30:39 -06003129 void __user *arg)
Stefan Behrensc11d2c22012-05-25 16:06:09 +02003130{
3131 struct btrfs_ioctl_get_dev_stats *sa;
3132 int ret;
3133
Stefan Behrensc11d2c22012-05-25 16:06:09 +02003134 sa = memdup_user(arg, sizeof(*sa));
3135 if (IS_ERR(sa))
3136 return PTR_ERR(sa);
3137
David Sterbab27f7c02012-06-22 06:30:39 -06003138 if ((sa->flags & BTRFS_DEV_STATS_RESET) && !capable(CAP_SYS_ADMIN)) {
3139 kfree(sa);
3140 return -EPERM;
3141 }
3142
3143 ret = btrfs_get_dev_stats(root, sa);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02003144
3145 if (copy_to_user(arg, sa, sizeof(*sa)))
3146 ret = -EFAULT;
3147
3148 kfree(sa);
3149 return ret;
3150}
3151
Jan Schmidtd7728c92011-07-07 16:48:38 +02003152static long btrfs_ioctl_ino_to_path(struct btrfs_root *root, void __user *arg)
3153{
3154 int ret = 0;
3155 int i;
Chris Mason740c3d22011-11-02 15:48:34 -04003156 u64 rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003157 int size;
Chris Mason806468f2011-11-06 03:07:10 -05003158 struct btrfs_ioctl_ino_path_args *ipa = NULL;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003159 struct inode_fs_paths *ipath = NULL;
3160 struct btrfs_path *path;
3161
3162 if (!capable(CAP_SYS_ADMIN))
3163 return -EPERM;
3164
3165 path = btrfs_alloc_path();
3166 if (!path) {
3167 ret = -ENOMEM;
3168 goto out;
3169 }
3170
3171 ipa = memdup_user(arg, sizeof(*ipa));
3172 if (IS_ERR(ipa)) {
3173 ret = PTR_ERR(ipa);
3174 ipa = NULL;
3175 goto out;
3176 }
3177
3178 size = min_t(u32, ipa->size, 4096);
3179 ipath = init_ipath(size, root, path);
3180 if (IS_ERR(ipath)) {
3181 ret = PTR_ERR(ipath);
3182 ipath = NULL;
3183 goto out;
3184 }
3185
3186 ret = paths_from_inode(ipa->inum, ipath);
3187 if (ret < 0)
3188 goto out;
3189
3190 for (i = 0; i < ipath->fspath->elem_cnt; ++i) {
Jeff Mahoney745c4d82011-11-20 07:31:57 -05003191 rel_ptr = ipath->fspath->val[i] -
3192 (u64)(unsigned long)ipath->fspath->val;
Chris Mason740c3d22011-11-02 15:48:34 -04003193 ipath->fspath->val[i] = rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003194 }
3195
Jeff Mahoney745c4d82011-11-20 07:31:57 -05003196 ret = copy_to_user((void *)(unsigned long)ipa->fspath,
3197 (void *)(unsigned long)ipath->fspath, size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02003198 if (ret) {
3199 ret = -EFAULT;
3200 goto out;
3201 }
3202
3203out:
3204 btrfs_free_path(path);
3205 free_ipath(ipath);
3206 kfree(ipa);
3207
3208 return ret;
3209}
3210
3211static int build_ino_list(u64 inum, u64 offset, u64 root, void *ctx)
3212{
3213 struct btrfs_data_container *inodes = ctx;
3214 const size_t c = 3 * sizeof(u64);
3215
3216 if (inodes->bytes_left >= c) {
3217 inodes->bytes_left -= c;
3218 inodes->val[inodes->elem_cnt] = inum;
3219 inodes->val[inodes->elem_cnt + 1] = offset;
3220 inodes->val[inodes->elem_cnt + 2] = root;
3221 inodes->elem_cnt += 3;
3222 } else {
3223 inodes->bytes_missing += c - inodes->bytes_left;
3224 inodes->bytes_left = 0;
3225 inodes->elem_missed += 3;
3226 }
3227
3228 return 0;
3229}
3230
3231static long btrfs_ioctl_logical_to_ino(struct btrfs_root *root,
3232 void __user *arg)
3233{
3234 int ret = 0;
3235 int size;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003236 struct btrfs_ioctl_logical_ino_args *loi;
3237 struct btrfs_data_container *inodes = NULL;
3238 struct btrfs_path *path = NULL;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003239
3240 if (!capable(CAP_SYS_ADMIN))
3241 return -EPERM;
3242
3243 loi = memdup_user(arg, sizeof(*loi));
3244 if (IS_ERR(loi)) {
3245 ret = PTR_ERR(loi);
3246 loi = NULL;
3247 goto out;
3248 }
3249
3250 path = btrfs_alloc_path();
3251 if (!path) {
3252 ret = -ENOMEM;
3253 goto out;
3254 }
3255
Liu Bo425d17a2012-09-07 20:01:30 -06003256 size = min_t(u32, loi->size, 64 * 1024);
Jan Schmidtd7728c92011-07-07 16:48:38 +02003257 inodes = init_data_container(size);
3258 if (IS_ERR(inodes)) {
3259 ret = PTR_ERR(inodes);
3260 inodes = NULL;
3261 goto out;
3262 }
3263
Liu Bodf031f02012-09-07 20:01:29 -06003264 ret = iterate_inodes_from_logical(loi->logical, root->fs_info, path,
3265 build_ino_list, inodes);
3266 if (ret == -EINVAL)
Jan Schmidtd7728c92011-07-07 16:48:38 +02003267 ret = -ENOENT;
3268 if (ret < 0)
3269 goto out;
3270
Jeff Mahoney745c4d82011-11-20 07:31:57 -05003271 ret = copy_to_user((void *)(unsigned long)loi->inodes,
3272 (void *)(unsigned long)inodes, size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02003273 if (ret)
3274 ret = -EFAULT;
3275
3276out:
3277 btrfs_free_path(path);
Liu Bo425d17a2012-09-07 20:01:30 -06003278 vfree(inodes);
Jan Schmidtd7728c92011-07-07 16:48:38 +02003279 kfree(loi);
3280
3281 return ret;
3282}
3283
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003284void update_ioctl_balance_args(struct btrfs_fs_info *fs_info, int lock,
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003285 struct btrfs_ioctl_balance_args *bargs)
3286{
3287 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
3288
3289 bargs->flags = bctl->flags;
3290
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003291 if (atomic_read(&fs_info->balance_running))
3292 bargs->state |= BTRFS_BALANCE_STATE_RUNNING;
3293 if (atomic_read(&fs_info->balance_pause_req))
3294 bargs->state |= BTRFS_BALANCE_STATE_PAUSE_REQ;
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003295 if (atomic_read(&fs_info->balance_cancel_req))
3296 bargs->state |= BTRFS_BALANCE_STATE_CANCEL_REQ;
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003297
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003298 memcpy(&bargs->data, &bctl->data, sizeof(bargs->data));
3299 memcpy(&bargs->meta, &bctl->meta, sizeof(bargs->meta));
3300 memcpy(&bargs->sys, &bctl->sys, sizeof(bargs->sys));
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003301
3302 if (lock) {
3303 spin_lock(&fs_info->balance_lock);
3304 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
3305 spin_unlock(&fs_info->balance_lock);
3306 } else {
3307 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
3308 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003309}
3310
Liu Bo9ba1f6e2012-05-11 18:11:26 +08003311static long btrfs_ioctl_balance(struct file *file, void __user *arg)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003312{
Liu Bo9ba1f6e2012-05-11 18:11:26 +08003313 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003314 struct btrfs_fs_info *fs_info = root->fs_info;
3315 struct btrfs_ioctl_balance_args *bargs;
3316 struct btrfs_balance_control *bctl;
3317 int ret;
3318
3319 if (!capable(CAP_SYS_ADMIN))
3320 return -EPERM;
3321
Liu Boe54bfa32012-06-29 03:58:48 -06003322 ret = mnt_want_write_file(file);
Liu Bo9ba1f6e2012-05-11 18:11:26 +08003323 if (ret)
3324 return ret;
3325
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003326 mutex_lock(&fs_info->volume_mutex);
3327 mutex_lock(&fs_info->balance_mutex);
3328
3329 if (arg) {
3330 bargs = memdup_user(arg, sizeof(*bargs));
3331 if (IS_ERR(bargs)) {
3332 ret = PTR_ERR(bargs);
3333 goto out;
3334 }
Ilya Dryomovde322262012-01-16 22:04:49 +02003335
3336 if (bargs->flags & BTRFS_BALANCE_RESUME) {
3337 if (!fs_info->balance_ctl) {
3338 ret = -ENOTCONN;
3339 goto out_bargs;
3340 }
3341
3342 bctl = fs_info->balance_ctl;
3343 spin_lock(&fs_info->balance_lock);
3344 bctl->flags |= BTRFS_BALANCE_RESUME;
3345 spin_unlock(&fs_info->balance_lock);
3346
3347 goto do_balance;
3348 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003349 } else {
3350 bargs = NULL;
3351 }
3352
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003353 if (fs_info->balance_ctl) {
3354 ret = -EINPROGRESS;
3355 goto out_bargs;
3356 }
3357
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003358 bctl = kzalloc(sizeof(*bctl), GFP_NOFS);
3359 if (!bctl) {
3360 ret = -ENOMEM;
3361 goto out_bargs;
3362 }
3363
3364 bctl->fs_info = fs_info;
3365 if (arg) {
3366 memcpy(&bctl->data, &bargs->data, sizeof(bctl->data));
3367 memcpy(&bctl->meta, &bargs->meta, sizeof(bctl->meta));
3368 memcpy(&bctl->sys, &bargs->sys, sizeof(bctl->sys));
3369
3370 bctl->flags = bargs->flags;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003371 } else {
3372 /* balance everything - no filters */
3373 bctl->flags |= BTRFS_BALANCE_TYPE_MASK;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003374 }
3375
Ilya Dryomovde322262012-01-16 22:04:49 +02003376do_balance:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003377 ret = btrfs_balance(bctl, bargs);
3378 /*
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003379 * bctl is freed in __cancel_balance or in free_fs_info if
3380 * restriper was paused all the way until unmount
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003381 */
3382 if (arg) {
3383 if (copy_to_user(arg, bargs, sizeof(*bargs)))
3384 ret = -EFAULT;
3385 }
3386
3387out_bargs:
3388 kfree(bargs);
3389out:
3390 mutex_unlock(&fs_info->balance_mutex);
3391 mutex_unlock(&fs_info->volume_mutex);
Liu Boe54bfa32012-06-29 03:58:48 -06003392 mnt_drop_write_file(file);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003393 return ret;
3394}
3395
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003396static long btrfs_ioctl_balance_ctl(struct btrfs_root *root, int cmd)
3397{
3398 if (!capable(CAP_SYS_ADMIN))
3399 return -EPERM;
3400
3401 switch (cmd) {
3402 case BTRFS_BALANCE_CTL_PAUSE:
3403 return btrfs_pause_balance(root->fs_info);
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003404 case BTRFS_BALANCE_CTL_CANCEL:
3405 return btrfs_cancel_balance(root->fs_info);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003406 }
3407
3408 return -EINVAL;
3409}
3410
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003411static long btrfs_ioctl_balance_progress(struct btrfs_root *root,
3412 void __user *arg)
3413{
3414 struct btrfs_fs_info *fs_info = root->fs_info;
3415 struct btrfs_ioctl_balance_args *bargs;
3416 int ret = 0;
3417
3418 if (!capable(CAP_SYS_ADMIN))
3419 return -EPERM;
3420
3421 mutex_lock(&fs_info->balance_mutex);
3422 if (!fs_info->balance_ctl) {
3423 ret = -ENOTCONN;
3424 goto out;
3425 }
3426
3427 bargs = kzalloc(sizeof(*bargs), GFP_NOFS);
3428 if (!bargs) {
3429 ret = -ENOMEM;
3430 goto out;
3431 }
3432
3433 update_ioctl_balance_args(fs_info, 1, bargs);
3434
3435 if (copy_to_user(arg, bargs, sizeof(*bargs)))
3436 ret = -EFAULT;
3437
3438 kfree(bargs);
3439out:
3440 mutex_unlock(&fs_info->balance_mutex);
3441 return ret;
3442}
3443
Arne Jansen5d13a372011-09-14 15:53:51 +02003444static long btrfs_ioctl_quota_ctl(struct btrfs_root *root, void __user *arg)
3445{
3446 struct btrfs_ioctl_quota_ctl_args *sa;
3447 struct btrfs_trans_handle *trans = NULL;
3448 int ret;
3449 int err;
3450
3451 if (!capable(CAP_SYS_ADMIN))
3452 return -EPERM;
3453
3454 if (root->fs_info->sb->s_flags & MS_RDONLY)
3455 return -EROFS;
3456
3457 sa = memdup_user(arg, sizeof(*sa));
3458 if (IS_ERR(sa))
3459 return PTR_ERR(sa);
3460
3461 if (sa->cmd != BTRFS_QUOTA_CTL_RESCAN) {
3462 trans = btrfs_start_transaction(root, 2);
3463 if (IS_ERR(trans)) {
3464 ret = PTR_ERR(trans);
3465 goto out;
3466 }
3467 }
3468
3469 switch (sa->cmd) {
3470 case BTRFS_QUOTA_CTL_ENABLE:
3471 ret = btrfs_quota_enable(trans, root->fs_info);
3472 break;
3473 case BTRFS_QUOTA_CTL_DISABLE:
3474 ret = btrfs_quota_disable(trans, root->fs_info);
3475 break;
3476 case BTRFS_QUOTA_CTL_RESCAN:
3477 ret = btrfs_quota_rescan(root->fs_info);
3478 break;
3479 default:
3480 ret = -EINVAL;
3481 break;
3482 }
3483
3484 if (copy_to_user(arg, sa, sizeof(*sa)))
3485 ret = -EFAULT;
3486
3487 if (trans) {
3488 err = btrfs_commit_transaction(trans, root);
3489 if (err && !ret)
3490 ret = err;
3491 }
3492
3493out:
3494 kfree(sa);
3495 return ret;
3496}
3497
3498static long btrfs_ioctl_qgroup_assign(struct btrfs_root *root, void __user *arg)
3499{
3500 struct btrfs_ioctl_qgroup_assign_args *sa;
3501 struct btrfs_trans_handle *trans;
3502 int ret;
3503 int err;
3504
3505 if (!capable(CAP_SYS_ADMIN))
3506 return -EPERM;
3507
3508 if (root->fs_info->sb->s_flags & MS_RDONLY)
3509 return -EROFS;
3510
3511 sa = memdup_user(arg, sizeof(*sa));
3512 if (IS_ERR(sa))
3513 return PTR_ERR(sa);
3514
3515 trans = btrfs_join_transaction(root);
3516 if (IS_ERR(trans)) {
3517 ret = PTR_ERR(trans);
3518 goto out;
3519 }
3520
3521 /* FIXME: check if the IDs really exist */
3522 if (sa->assign) {
3523 ret = btrfs_add_qgroup_relation(trans, root->fs_info,
3524 sa->src, sa->dst);
3525 } else {
3526 ret = btrfs_del_qgroup_relation(trans, root->fs_info,
3527 sa->src, sa->dst);
3528 }
3529
3530 err = btrfs_end_transaction(trans, root);
3531 if (err && !ret)
3532 ret = err;
3533
3534out:
3535 kfree(sa);
3536 return ret;
3537}
3538
3539static long btrfs_ioctl_qgroup_create(struct btrfs_root *root, void __user *arg)
3540{
3541 struct btrfs_ioctl_qgroup_create_args *sa;
3542 struct btrfs_trans_handle *trans;
3543 int ret;
3544 int err;
3545
3546 if (!capable(CAP_SYS_ADMIN))
3547 return -EPERM;
3548
3549 if (root->fs_info->sb->s_flags & MS_RDONLY)
3550 return -EROFS;
3551
3552 sa = memdup_user(arg, sizeof(*sa));
3553 if (IS_ERR(sa))
3554 return PTR_ERR(sa);
3555
3556 trans = btrfs_join_transaction(root);
3557 if (IS_ERR(trans)) {
3558 ret = PTR_ERR(trans);
3559 goto out;
3560 }
3561
3562 /* FIXME: check if the IDs really exist */
3563 if (sa->create) {
3564 ret = btrfs_create_qgroup(trans, root->fs_info, sa->qgroupid,
3565 NULL);
3566 } else {
3567 ret = btrfs_remove_qgroup(trans, root->fs_info, sa->qgroupid);
3568 }
3569
3570 err = btrfs_end_transaction(trans, root);
3571 if (err && !ret)
3572 ret = err;
3573
3574out:
3575 kfree(sa);
3576 return ret;
3577}
3578
3579static long btrfs_ioctl_qgroup_limit(struct btrfs_root *root, void __user *arg)
3580{
3581 struct btrfs_ioctl_qgroup_limit_args *sa;
3582 struct btrfs_trans_handle *trans;
3583 int ret;
3584 int err;
3585 u64 qgroupid;
3586
3587 if (!capable(CAP_SYS_ADMIN))
3588 return -EPERM;
3589
3590 if (root->fs_info->sb->s_flags & MS_RDONLY)
3591 return -EROFS;
3592
3593 sa = memdup_user(arg, sizeof(*sa));
3594 if (IS_ERR(sa))
3595 return PTR_ERR(sa);
3596
3597 trans = btrfs_join_transaction(root);
3598 if (IS_ERR(trans)) {
3599 ret = PTR_ERR(trans);
3600 goto out;
3601 }
3602
3603 qgroupid = sa->qgroupid;
3604 if (!qgroupid) {
3605 /* take the current subvol as qgroup */
3606 qgroupid = root->root_key.objectid;
3607 }
3608
3609 /* FIXME: check if the IDs really exist */
3610 ret = btrfs_limit_qgroup(trans, root->fs_info, qgroupid, &sa->lim);
3611
3612 err = btrfs_end_transaction(trans, root);
3613 if (err && !ret)
3614 ret = err;
3615
3616out:
3617 kfree(sa);
3618 return ret;
3619}
3620
Alexander Block8ea05e32012-07-25 17:35:53 +02003621static long btrfs_ioctl_set_received_subvol(struct file *file,
3622 void __user *arg)
3623{
3624 struct btrfs_ioctl_received_subvol_args *sa = NULL;
3625 struct inode *inode = fdentry(file)->d_inode;
3626 struct btrfs_root *root = BTRFS_I(inode)->root;
3627 struct btrfs_root_item *root_item = &root->root_item;
3628 struct btrfs_trans_handle *trans;
3629 struct timespec ct = CURRENT_TIME;
3630 int ret = 0;
3631
3632 ret = mnt_want_write_file(file);
3633 if (ret < 0)
3634 return ret;
3635
3636 down_write(&root->fs_info->subvol_sem);
3637
3638 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
3639 ret = -EINVAL;
3640 goto out;
3641 }
3642
3643 if (btrfs_root_readonly(root)) {
3644 ret = -EROFS;
3645 goto out;
3646 }
3647
3648 if (!inode_owner_or_capable(inode)) {
3649 ret = -EACCES;
3650 goto out;
3651 }
3652
3653 sa = memdup_user(arg, sizeof(*sa));
3654 if (IS_ERR(sa)) {
3655 ret = PTR_ERR(sa);
3656 sa = NULL;
3657 goto out;
3658 }
3659
3660 trans = btrfs_start_transaction(root, 1);
3661 if (IS_ERR(trans)) {
3662 ret = PTR_ERR(trans);
3663 trans = NULL;
3664 goto out;
3665 }
3666
3667 sa->rtransid = trans->transid;
3668 sa->rtime.sec = ct.tv_sec;
3669 sa->rtime.nsec = ct.tv_nsec;
3670
3671 memcpy(root_item->received_uuid, sa->uuid, BTRFS_UUID_SIZE);
3672 btrfs_set_root_stransid(root_item, sa->stransid);
3673 btrfs_set_root_rtransid(root_item, sa->rtransid);
3674 root_item->stime.sec = cpu_to_le64(sa->stime.sec);
3675 root_item->stime.nsec = cpu_to_le32(sa->stime.nsec);
3676 root_item->rtime.sec = cpu_to_le64(sa->rtime.sec);
3677 root_item->rtime.nsec = cpu_to_le32(sa->rtime.nsec);
3678
3679 ret = btrfs_update_root(trans, root->fs_info->tree_root,
3680 &root->root_key, &root->root_item);
3681 if (ret < 0) {
3682 btrfs_end_transaction(trans, root);
3683 trans = NULL;
3684 goto out;
3685 } else {
3686 ret = btrfs_commit_transaction(trans, root);
3687 if (ret < 0)
3688 goto out;
3689 }
3690
3691 ret = copy_to_user(arg, sa, sizeof(*sa));
3692 if (ret)
3693 ret = -EFAULT;
3694
3695out:
3696 kfree(sa);
3697 up_write(&root->fs_info->subvol_sem);
3698 mnt_drop_write_file(file);
3699 return ret;
3700}
3701
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003702long btrfs_ioctl(struct file *file, unsigned int
3703 cmd, unsigned long arg)
3704{
3705 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05003706 void __user *argp = (void __user *)arg;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003707
3708 switch (cmd) {
Christoph Hellwig6cbff002009-04-17 10:37:41 +02003709 case FS_IOC_GETFLAGS:
3710 return btrfs_ioctl_getflags(file, argp);
3711 case FS_IOC_SETFLAGS:
3712 return btrfs_ioctl_setflags(file, argp);
3713 case FS_IOC_GETVERSION:
3714 return btrfs_ioctl_getversion(file, argp);
Li Dongyangf7039b12011-03-24 10:24:28 +00003715 case FITRIM:
3716 return btrfs_ioctl_fitrim(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003717 case BTRFS_IOC_SNAP_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08003718 return btrfs_ioctl_snap_create(file, argp, 0);
Li Zefanfdfb1e42010-12-10 06:41:56 +00003719 case BTRFS_IOC_SNAP_CREATE_V2:
Li Zefanfa0d2b92010-12-20 15:53:28 +08003720 return btrfs_ioctl_snap_create_v2(file, argp, 0);
Chris Mason3de45862008-11-17 21:02:50 -05003721 case BTRFS_IOC_SUBVOL_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08003722 return btrfs_ioctl_snap_create(file, argp, 1);
Arne Jansen6f72c7e2011-09-14 15:58:21 +02003723 case BTRFS_IOC_SUBVOL_CREATE_V2:
3724 return btrfs_ioctl_snap_create_v2(file, argp, 1);
Yan, Zheng76dda932009-09-21 16:00:26 -04003725 case BTRFS_IOC_SNAP_DESTROY:
3726 return btrfs_ioctl_snap_destroy(file, argp);
Li Zefan0caa1022010-12-20 16:30:25 +08003727 case BTRFS_IOC_SUBVOL_GETFLAGS:
3728 return btrfs_ioctl_subvol_getflags(file, argp);
3729 case BTRFS_IOC_SUBVOL_SETFLAGS:
3730 return btrfs_ioctl_subvol_setflags(file, argp);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003731 case BTRFS_IOC_DEFAULT_SUBVOL:
3732 return btrfs_ioctl_default_subvol(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003733 case BTRFS_IOC_DEFRAG:
Chris Mason1e701a32010-03-11 09:42:04 -05003734 return btrfs_ioctl_defrag(file, NULL);
3735 case BTRFS_IOC_DEFRAG_RANGE:
3736 return btrfs_ioctl_defrag(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003737 case BTRFS_IOC_RESIZE:
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05003738 return btrfs_ioctl_resize(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003739 case BTRFS_IOC_ADD_DEV:
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05003740 return btrfs_ioctl_add_dev(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003741 case BTRFS_IOC_RM_DEV:
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05003742 return btrfs_ioctl_rm_dev(root, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01003743 case BTRFS_IOC_FS_INFO:
3744 return btrfs_ioctl_fs_info(root, argp);
3745 case BTRFS_IOC_DEV_INFO:
3746 return btrfs_ioctl_dev_info(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003747 case BTRFS_IOC_BALANCE:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08003748 return btrfs_ioctl_balance(file, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003749 case BTRFS_IOC_CLONE:
Sage Weilc5c9cd42008-11-12 14:32:25 -05003750 return btrfs_ioctl_clone(file, arg, 0, 0, 0);
3751 case BTRFS_IOC_CLONE_RANGE:
Christoph Hellwig7a865e82008-12-02 09:52:24 -05003752 return btrfs_ioctl_clone_range(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003753 case BTRFS_IOC_TRANS_START:
3754 return btrfs_ioctl_trans_start(file);
3755 case BTRFS_IOC_TRANS_END:
3756 return btrfs_ioctl_trans_end(file);
Chris Masonac8e9812010-02-28 15:39:26 -05003757 case BTRFS_IOC_TREE_SEARCH:
3758 return btrfs_ioctl_tree_search(file, argp);
3759 case BTRFS_IOC_INO_LOOKUP:
3760 return btrfs_ioctl_ino_lookup(file, argp);
Jan Schmidtd7728c92011-07-07 16:48:38 +02003761 case BTRFS_IOC_INO_PATHS:
3762 return btrfs_ioctl_ino_to_path(root, argp);
3763 case BTRFS_IOC_LOGICAL_INO:
3764 return btrfs_ioctl_logical_to_ino(root, argp);
Josef Bacik1406e432010-01-13 18:19:06 +00003765 case BTRFS_IOC_SPACE_INFO:
3766 return btrfs_ioctl_space_info(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003767 case BTRFS_IOC_SYNC:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003768 btrfs_sync_fs(file->f_dentry->d_sb, 1);
3769 return 0;
Sage Weil46204592010-10-29 15:41:32 -04003770 case BTRFS_IOC_START_SYNC:
3771 return btrfs_ioctl_start_sync(file, argp);
3772 case BTRFS_IOC_WAIT_SYNC:
3773 return btrfs_ioctl_wait_sync(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01003774 case BTRFS_IOC_SCRUB:
3775 return btrfs_ioctl_scrub(root, argp);
3776 case BTRFS_IOC_SCRUB_CANCEL:
3777 return btrfs_ioctl_scrub_cancel(root, argp);
3778 case BTRFS_IOC_SCRUB_PROGRESS:
3779 return btrfs_ioctl_scrub_progress(root, argp);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003780 case BTRFS_IOC_BALANCE_V2:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08003781 return btrfs_ioctl_balance(file, argp);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003782 case BTRFS_IOC_BALANCE_CTL:
3783 return btrfs_ioctl_balance_ctl(root, arg);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003784 case BTRFS_IOC_BALANCE_PROGRESS:
3785 return btrfs_ioctl_balance_progress(root, argp);
Alexander Block8ea05e32012-07-25 17:35:53 +02003786 case BTRFS_IOC_SET_RECEIVED_SUBVOL:
3787 return btrfs_ioctl_set_received_subvol(file, argp);
Alexander Block31db9f72012-07-25 23:19:24 +02003788 case BTRFS_IOC_SEND:
3789 return btrfs_ioctl_send(file, argp);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02003790 case BTRFS_IOC_GET_DEV_STATS:
David Sterbab27f7c02012-06-22 06:30:39 -06003791 return btrfs_ioctl_get_dev_stats(root, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02003792 case BTRFS_IOC_QUOTA_CTL:
3793 return btrfs_ioctl_quota_ctl(root, argp);
3794 case BTRFS_IOC_QGROUP_ASSIGN:
3795 return btrfs_ioctl_qgroup_assign(root, argp);
3796 case BTRFS_IOC_QGROUP_CREATE:
3797 return btrfs_ioctl_qgroup_create(root, argp);
3798 case BTRFS_IOC_QGROUP_LIMIT:
3799 return btrfs_ioctl_qgroup_limit(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003800 }
3801
3802 return -ENOTTY;
3803}