blob: 013c6371e3e8d707ba2020cd385b2f5067adabaa [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>
Chris Mason4b4e25f2008-11-20 10:22:27 -050044#include "compat.h"
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040045#include "ctree.h"
46#include "disk-io.h"
47#include "transaction.h"
48#include "btrfs_inode.h"
49#include "ioctl.h"
50#include "print-tree.h"
51#include "volumes.h"
Chris Mason925baed2008-06-25 16:01:30 -040052#include "locking.h"
Li Zefan581bb052011-04-20 10:06:11 +080053#include "inode-map.h"
Jan Schmidtd7728c92011-07-07 16:48:38 +020054#include "backref.h"
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040055
Christoph Hellwig6cbff002009-04-17 10:37:41 +020056/* Mask out flags that are inappropriate for the given type of inode. */
57static inline __u32 btrfs_mask_flags(umode_t mode, __u32 flags)
58{
59 if (S_ISDIR(mode))
60 return flags;
61 else if (S_ISREG(mode))
62 return flags & ~FS_DIRSYNC_FL;
63 else
64 return flags & (FS_NODUMP_FL | FS_NOATIME_FL);
65}
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040066
Christoph Hellwig6cbff002009-04-17 10:37:41 +020067/*
68 * Export inode flags to the format expected by the FS_IOC_GETFLAGS ioctl.
69 */
70static unsigned int btrfs_flags_to_ioctl(unsigned int flags)
71{
72 unsigned int iflags = 0;
73
74 if (flags & BTRFS_INODE_SYNC)
75 iflags |= FS_SYNC_FL;
76 if (flags & BTRFS_INODE_IMMUTABLE)
77 iflags |= FS_IMMUTABLE_FL;
78 if (flags & BTRFS_INODE_APPEND)
79 iflags |= FS_APPEND_FL;
80 if (flags & BTRFS_INODE_NODUMP)
81 iflags |= FS_NODUMP_FL;
82 if (flags & BTRFS_INODE_NOATIME)
83 iflags |= FS_NOATIME_FL;
84 if (flags & BTRFS_INODE_DIRSYNC)
85 iflags |= FS_DIRSYNC_FL;
Li Zefand0092bd2011-04-15 03:03:06 +000086 if (flags & BTRFS_INODE_NODATACOW)
87 iflags |= FS_NOCOW_FL;
88
89 if ((flags & BTRFS_INODE_COMPRESS) && !(flags & BTRFS_INODE_NOCOMPRESS))
90 iflags |= FS_COMPR_FL;
91 else if (flags & BTRFS_INODE_NOCOMPRESS)
92 iflags |= FS_NOCOMP_FL;
Christoph Hellwig6cbff002009-04-17 10:37:41 +020093
94 return iflags;
95}
96
97/*
98 * Update inode->i_flags based on the btrfs internal flags.
99 */
100void btrfs_update_iflags(struct inode *inode)
101{
102 struct btrfs_inode *ip = BTRFS_I(inode);
103
104 inode->i_flags &= ~(S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC);
105
106 if (ip->flags & BTRFS_INODE_SYNC)
107 inode->i_flags |= S_SYNC;
108 if (ip->flags & BTRFS_INODE_IMMUTABLE)
109 inode->i_flags |= S_IMMUTABLE;
110 if (ip->flags & BTRFS_INODE_APPEND)
111 inode->i_flags |= S_APPEND;
112 if (ip->flags & BTRFS_INODE_NOATIME)
113 inode->i_flags |= S_NOATIME;
114 if (ip->flags & BTRFS_INODE_DIRSYNC)
115 inode->i_flags |= S_DIRSYNC;
116}
117
118/*
119 * Inherit flags from the parent inode.
120 *
Josef Bacike27425d2011-09-27 11:01:30 -0400121 * Currently only the compression flags and the cow flags are inherited.
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200122 */
123void btrfs_inherit_iflags(struct inode *inode, struct inode *dir)
124{
Chris Mason0b4dcea2009-06-11 11:13:35 -0400125 unsigned int flags;
126
127 if (!dir)
128 return;
129
130 flags = BTRFS_I(dir)->flags;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200131
Josef Bacike27425d2011-09-27 11:01:30 -0400132 if (flags & BTRFS_INODE_NOCOMPRESS) {
133 BTRFS_I(inode)->flags &= ~BTRFS_INODE_COMPRESS;
134 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
135 } else if (flags & BTRFS_INODE_COMPRESS) {
136 BTRFS_I(inode)->flags &= ~BTRFS_INODE_NOCOMPRESS;
137 BTRFS_I(inode)->flags |= BTRFS_INODE_COMPRESS;
138 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200139
Josef Bacike27425d2011-09-27 11:01:30 -0400140 if (flags & BTRFS_INODE_NODATACOW)
141 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW;
142
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200143 btrfs_update_iflags(inode);
144}
145
146static int btrfs_ioctl_getflags(struct file *file, void __user *arg)
147{
148 struct btrfs_inode *ip = BTRFS_I(file->f_path.dentry->d_inode);
149 unsigned int flags = btrfs_flags_to_ioctl(ip->flags);
150
151 if (copy_to_user(arg, &flags, sizeof(flags)))
152 return -EFAULT;
153 return 0;
154}
155
Liu Bo75e7cb72011-03-22 10:12:20 +0000156static int check_flags(unsigned int flags)
157{
158 if (flags & ~(FS_IMMUTABLE_FL | FS_APPEND_FL | \
159 FS_NOATIME_FL | FS_NODUMP_FL | \
160 FS_SYNC_FL | FS_DIRSYNC_FL | \
Li Zefane1e8fb62011-04-15 03:02:49 +0000161 FS_NOCOMP_FL | FS_COMPR_FL |
162 FS_NOCOW_FL))
Liu Bo75e7cb72011-03-22 10:12:20 +0000163 return -EOPNOTSUPP;
164
165 if ((flags & FS_NOCOMP_FL) && (flags & FS_COMPR_FL))
166 return -EINVAL;
167
Liu Bo75e7cb72011-03-22 10:12:20 +0000168 return 0;
169}
170
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200171static int btrfs_ioctl_setflags(struct file *file, void __user *arg)
172{
173 struct inode *inode = file->f_path.dentry->d_inode;
174 struct btrfs_inode *ip = BTRFS_I(inode);
175 struct btrfs_root *root = ip->root;
176 struct btrfs_trans_handle *trans;
177 unsigned int flags, oldflags;
178 int ret;
Li Zefanf062abf2011-12-29 13:36:45 +0800179 u64 ip_oldflags;
180 unsigned int i_oldflags;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200181
Li Zefanb83cc962010-12-20 16:04:08 +0800182 if (btrfs_root_readonly(root))
183 return -EROFS;
184
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200185 if (copy_from_user(&flags, arg, sizeof(flags)))
186 return -EFAULT;
187
Liu Bo75e7cb72011-03-22 10:12:20 +0000188 ret = check_flags(flags);
189 if (ret)
190 return ret;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200191
Serge E. Hallyn2e149672011-03-23 16:43:26 -0700192 if (!inode_owner_or_capable(inode))
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200193 return -EACCES;
194
195 mutex_lock(&inode->i_mutex);
196
Li Zefanf062abf2011-12-29 13:36:45 +0800197 ip_oldflags = ip->flags;
198 i_oldflags = inode->i_flags;
199
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200200 flags = btrfs_mask_flags(inode->i_mode, flags);
201 oldflags = btrfs_flags_to_ioctl(ip->flags);
202 if ((flags ^ oldflags) & (FS_APPEND_FL | FS_IMMUTABLE_FL)) {
203 if (!capable(CAP_LINUX_IMMUTABLE)) {
204 ret = -EPERM;
205 goto out_unlock;
206 }
207 }
208
209 ret = mnt_want_write(file->f_path.mnt);
210 if (ret)
211 goto out_unlock;
212
213 if (flags & FS_SYNC_FL)
214 ip->flags |= BTRFS_INODE_SYNC;
215 else
216 ip->flags &= ~BTRFS_INODE_SYNC;
217 if (flags & FS_IMMUTABLE_FL)
218 ip->flags |= BTRFS_INODE_IMMUTABLE;
219 else
220 ip->flags &= ~BTRFS_INODE_IMMUTABLE;
221 if (flags & FS_APPEND_FL)
222 ip->flags |= BTRFS_INODE_APPEND;
223 else
224 ip->flags &= ~BTRFS_INODE_APPEND;
225 if (flags & FS_NODUMP_FL)
226 ip->flags |= BTRFS_INODE_NODUMP;
227 else
228 ip->flags &= ~BTRFS_INODE_NODUMP;
229 if (flags & FS_NOATIME_FL)
230 ip->flags |= BTRFS_INODE_NOATIME;
231 else
232 ip->flags &= ~BTRFS_INODE_NOATIME;
233 if (flags & FS_DIRSYNC_FL)
234 ip->flags |= BTRFS_INODE_DIRSYNC;
235 else
236 ip->flags &= ~BTRFS_INODE_DIRSYNC;
Li Zefane1e8fb62011-04-15 03:02:49 +0000237 if (flags & FS_NOCOW_FL)
238 ip->flags |= BTRFS_INODE_NODATACOW;
239 else
240 ip->flags &= ~BTRFS_INODE_NODATACOW;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200241
Liu Bo75e7cb72011-03-22 10:12:20 +0000242 /*
243 * The COMPRESS flag can only be changed by users, while the NOCOMPRESS
244 * flag may be changed automatically if compression code won't make
245 * things smaller.
246 */
247 if (flags & FS_NOCOMP_FL) {
248 ip->flags &= ~BTRFS_INODE_COMPRESS;
249 ip->flags |= BTRFS_INODE_NOCOMPRESS;
250 } else if (flags & FS_COMPR_FL) {
251 ip->flags |= BTRFS_INODE_COMPRESS;
252 ip->flags &= ~BTRFS_INODE_NOCOMPRESS;
Li Zefanebcb9042011-04-15 03:03:17 +0000253 } else {
254 ip->flags &= ~(BTRFS_INODE_COMPRESS | BTRFS_INODE_NOCOMPRESS);
Liu Bo75e7cb72011-03-22 10:12:20 +0000255 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200256
Li Zefan4da6f1a2011-12-29 13:39:50 +0800257 trans = btrfs_start_transaction(root, 1);
Li Zefanf062abf2011-12-29 13:36:45 +0800258 if (IS_ERR(trans)) {
259 ret = PTR_ERR(trans);
260 goto out_drop;
261 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200262
Li Zefan306424c2011-12-14 20:12:02 -0500263 btrfs_update_iflags(inode);
264 inode->i_ctime = CURRENT_TIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200265 ret = btrfs_update_inode(trans, root, inode);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200266
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200267 btrfs_end_transaction(trans, root);
Li Zefanf062abf2011-12-29 13:36:45 +0800268 out_drop:
269 if (ret) {
270 ip->flags = ip_oldflags;
271 inode->i_flags = i_oldflags;
272 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200273
274 mnt_drop_write(file->f_path.mnt);
275 out_unlock:
276 mutex_unlock(&inode->i_mutex);
liubo2d4e6f6a2011-02-24 09:38:16 +0000277 return ret;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200278}
279
280static int btrfs_ioctl_getversion(struct file *file, int __user *arg)
281{
282 struct inode *inode = file->f_path.dentry->d_inode;
283
284 return put_user(inode->i_generation, arg);
285}
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400286
Li Dongyangf7039b12011-03-24 10:24:28 +0000287static noinline int btrfs_ioctl_fitrim(struct file *file, void __user *arg)
288{
289 struct btrfs_root *root = fdentry(file)->d_sb->s_fs_info;
290 struct btrfs_fs_info *fs_info = root->fs_info;
291 struct btrfs_device *device;
292 struct request_queue *q;
293 struct fstrim_range range;
294 u64 minlen = ULLONG_MAX;
295 u64 num_devices = 0;
David Sterba6c417612011-04-13 15:41:04 +0200296 u64 total_bytes = btrfs_super_total_bytes(root->fs_info->super_copy);
Li Dongyangf7039b12011-03-24 10:24:28 +0000297 int ret;
298
299 if (!capable(CAP_SYS_ADMIN))
300 return -EPERM;
301
Xiao Guangrong1f781602011-04-20 10:09:16 +0000302 rcu_read_lock();
303 list_for_each_entry_rcu(device, &fs_info->fs_devices->devices,
304 dev_list) {
Li Dongyangf7039b12011-03-24 10:24:28 +0000305 if (!device->bdev)
306 continue;
307 q = bdev_get_queue(device->bdev);
308 if (blk_queue_discard(q)) {
309 num_devices++;
310 minlen = min((u64)q->limits.discard_granularity,
311 minlen);
312 }
313 }
Xiao Guangrong1f781602011-04-20 10:09:16 +0000314 rcu_read_unlock();
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200315
Li Dongyangf7039b12011-03-24 10:24:28 +0000316 if (!num_devices)
317 return -EOPNOTSUPP;
Li Dongyangf7039b12011-03-24 10:24:28 +0000318 if (copy_from_user(&range, arg, sizeof(range)))
319 return -EFAULT;
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200320 if (range.start > total_bytes)
321 return -EINVAL;
Li Dongyangf7039b12011-03-24 10:24:28 +0000322
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200323 range.len = min(range.len, total_bytes - range.start);
Li Dongyangf7039b12011-03-24 10:24:28 +0000324 range.minlen = max(range.minlen, minlen);
325 ret = btrfs_trim_fs(root, &range);
326 if (ret < 0)
327 return ret;
328
329 if (copy_to_user(arg, &range, sizeof(range)))
330 return -EFAULT;
331
332 return 0;
333}
334
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400335static noinline int create_subvol(struct btrfs_root *root,
336 struct dentry *dentry,
Sage Weil72fd0322010-10-29 15:41:32 -0400337 char *name, int namelen,
338 u64 *async_transid)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400339{
340 struct btrfs_trans_handle *trans;
341 struct btrfs_key key;
342 struct btrfs_root_item root_item;
343 struct btrfs_inode_item *inode_item;
344 struct extent_buffer *leaf;
Yan, Zheng76dda932009-09-21 16:00:26 -0400345 struct btrfs_root *new_root;
Al Viro2fbe8c82011-07-16 21:38:06 -0400346 struct dentry *parent = dentry->d_parent;
Josef Bacik6a912212010-11-20 09:48:00 +0000347 struct inode *dir;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400348 int ret;
349 int err;
350 u64 objectid;
351 u64 new_dirid = BTRFS_FIRST_FREE_OBJECTID;
Chris Mason3de45862008-11-17 21:02:50 -0500352 u64 index = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400353
Li Zefan581bb052011-04-20 10:06:11 +0800354 ret = btrfs_find_free_objectid(root->fs_info->tree_root, &objectid);
Al Viro2fbe8c82011-07-16 21:38:06 -0400355 if (ret)
Yan, Zhenga22285a2010-05-16 10:48:46 -0400356 return ret;
Josef Bacik6a912212010-11-20 09:48:00 +0000357
358 dir = parent->d_inode;
359
Josef Bacik9ed74f22009-09-11 16:12:44 -0400360 /*
361 * 1 - inode item
362 * 2 - refs
363 * 1 - root item
364 * 2 - dir items
365 */
Yan, Zhenga22285a2010-05-16 10:48:46 -0400366 trans = btrfs_start_transaction(root, 6);
Al Viro2fbe8c82011-07-16 21:38:06 -0400367 if (IS_ERR(trans))
Yan, Zhenga22285a2010-05-16 10:48:46 -0400368 return PTR_ERR(trans);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400369
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400370 leaf = btrfs_alloc_free_block(trans, root, root->leafsize,
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200371 0, objectid, NULL, 0, 0, 0, 0);
Josef Bacik8e8a1e32008-07-24 12:17:14 -0400372 if (IS_ERR(leaf)) {
373 ret = PTR_ERR(leaf);
374 goto fail;
375 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400376
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400377 memset_extent_buffer(leaf, 0, 0, sizeof(struct btrfs_header));
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400378 btrfs_set_header_bytenr(leaf, leaf->start);
379 btrfs_set_header_generation(leaf, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400380 btrfs_set_header_backref_rev(leaf, BTRFS_MIXED_BACKREF_REV);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400381 btrfs_set_header_owner(leaf, objectid);
382
383 write_extent_buffer(leaf, root->fs_info->fsid,
384 (unsigned long)btrfs_header_fsid(leaf),
385 BTRFS_FSID_SIZE);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400386 write_extent_buffer(leaf, root->fs_info->chunk_tree_uuid,
387 (unsigned long)btrfs_header_chunk_tree_uuid(leaf),
388 BTRFS_UUID_SIZE);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400389 btrfs_mark_buffer_dirty(leaf);
390
391 inode_item = &root_item.inode;
392 memset(inode_item, 0, sizeof(*inode_item));
393 inode_item->generation = cpu_to_le64(1);
394 inode_item->size = cpu_to_le64(3);
395 inode_item->nlink = cpu_to_le32(1);
Yan Zhenga76a3cd2008-10-09 11:46:29 -0400396 inode_item->nbytes = cpu_to_le64(root->leafsize);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400397 inode_item->mode = cpu_to_le32(S_IFDIR | 0755);
398
Li Zefan08fe4db2011-03-28 02:01:25 +0000399 root_item.flags = 0;
400 root_item.byte_limit = 0;
401 inode_item->flags = cpu_to_le64(BTRFS_INODE_ROOT_ITEM_INIT);
402
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400403 btrfs_set_root_bytenr(&root_item, leaf->start);
Yan Zheng84234f32008-10-29 14:49:05 -0400404 btrfs_set_root_generation(&root_item, trans->transid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400405 btrfs_set_root_level(&root_item, 0);
406 btrfs_set_root_refs(&root_item, 1);
Yan, Zheng86b9f2e2009-11-12 09:36:50 +0000407 btrfs_set_root_used(&root_item, leaf->len);
Yan Zheng80ff3852008-10-30 14:20:02 -0400408 btrfs_set_root_last_snapshot(&root_item, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400409
410 memset(&root_item.drop_progress, 0, sizeof(root_item.drop_progress));
411 root_item.drop_level = 0;
412
Chris Mason925baed2008-06-25 16:01:30 -0400413 btrfs_tree_unlock(leaf);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400414 free_extent_buffer(leaf);
415 leaf = NULL;
416
417 btrfs_set_root_dirid(&root_item, new_dirid);
418
419 key.objectid = objectid;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400420 key.offset = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400421 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
422 ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
423 &root_item);
424 if (ret)
425 goto fail;
426
Yan, Zheng76dda932009-09-21 16:00:26 -0400427 key.offset = (u64)-1;
428 new_root = btrfs_read_fs_root_no_name(root->fs_info, &key);
429 BUG_ON(IS_ERR(new_root));
430
431 btrfs_record_root_in_trans(trans, new_root);
432
Josef Bacikd82a6f12011-05-11 15:26:06 -0400433 ret = btrfs_create_subvol_root(trans, new_root, new_dirid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400434 /*
435 * insert the directory item
436 */
Chris Mason3de45862008-11-17 21:02:50 -0500437 ret = btrfs_set_inode_index(dir, &index);
438 BUG_ON(ret);
439
440 ret = btrfs_insert_dir_item(trans, root,
Miao Xie16cdcec2011-04-22 18:12:22 +0800441 name, namelen, dir, &key,
Chris Mason3de45862008-11-17 21:02:50 -0500442 BTRFS_FT_DIR, index);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400443 if (ret)
444 goto fail;
Chris Mason0660b5a2008-11-17 20:37:39 -0500445
Yan Zheng52c26172009-01-05 15:43:43 -0500446 btrfs_i_size_write(dir, dir->i_size + namelen * 2);
447 ret = btrfs_update_inode(trans, root, dir);
448 BUG_ON(ret);
449
Chris Mason0660b5a2008-11-17 20:37:39 -0500450 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -0400451 objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +0800452 btrfs_ino(dir), index, name, namelen);
Yan, Zheng76dda932009-09-21 16:00:26 -0400453
Chris Mason0660b5a2008-11-17 20:37:39 -0500454 BUG_ON(ret);
455
Yan, Zheng76dda932009-09-21 16:00:26 -0400456 d_instantiate(dentry, btrfs_lookup_dentry(dir, dentry));
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400457fail:
Sage Weil72fd0322010-10-29 15:41:32 -0400458 if (async_transid) {
459 *async_transid = trans->transid;
460 err = btrfs_commit_transaction_async(trans, root, 1);
461 } else {
462 err = btrfs_commit_transaction(trans, root);
463 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400464 if (err && !ret)
465 ret = err;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400466 return ret;
467}
468
Sage Weil72fd0322010-10-29 15:41:32 -0400469static int create_snapshot(struct btrfs_root *root, struct dentry *dentry,
Li Zefanb83cc962010-12-20 16:04:08 +0800470 char *name, int namelen, u64 *async_transid,
471 bool readonly)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400472{
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000473 struct inode *inode;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400474 struct btrfs_pending_snapshot *pending_snapshot;
475 struct btrfs_trans_handle *trans;
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000476 int ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400477
478 if (!root->ref_cows)
479 return -EINVAL;
480
Yan, Zhenga22285a2010-05-16 10:48:46 -0400481 pending_snapshot = kzalloc(sizeof(*pending_snapshot), GFP_NOFS);
482 if (!pending_snapshot)
483 return -ENOMEM;
484
485 btrfs_init_block_rsv(&pending_snapshot->block_rsv);
486 pending_snapshot->dentry = dentry;
487 pending_snapshot->root = root;
Li Zefanb83cc962010-12-20 16:04:08 +0800488 pending_snapshot->readonly = readonly;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400489
490 trans = btrfs_start_transaction(root->fs_info->extent_root, 5);
491 if (IS_ERR(trans)) {
492 ret = PTR_ERR(trans);
493 goto fail;
494 }
495
496 ret = btrfs_snap_reserve_metadata(trans, pending_snapshot);
497 BUG_ON(ret);
498
Josef Bacik83515832011-06-14 15:16:14 -0400499 spin_lock(&root->fs_info->trans_lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400500 list_add(&pending_snapshot->list,
501 &trans->transaction->pending_snapshots);
Josef Bacik83515832011-06-14 15:16:14 -0400502 spin_unlock(&root->fs_info->trans_lock);
Sage Weil72fd0322010-10-29 15:41:32 -0400503 if (async_transid) {
504 *async_transid = trans->transid;
505 ret = btrfs_commit_transaction_async(trans,
506 root->fs_info->extent_root, 1);
507 } else {
508 ret = btrfs_commit_transaction(trans,
509 root->fs_info->extent_root);
510 }
Yan, Zhenga22285a2010-05-16 10:48:46 -0400511 BUG_ON(ret);
512
513 ret = pending_snapshot->error;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400514 if (ret)
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000515 goto fail;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400516
Josef Bacik66b4ffd2011-01-31 16:22:42 -0500517 ret = btrfs_orphan_cleanup(pending_snapshot->snap);
518 if (ret)
519 goto fail;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400520
Al Viro2fbe8c82011-07-16 21:38:06 -0400521 inode = btrfs_lookup_dentry(dentry->d_parent->d_inode, dentry);
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000522 if (IS_ERR(inode)) {
523 ret = PTR_ERR(inode);
524 goto fail;
525 }
526 BUG_ON(!inode);
527 d_instantiate(dentry, inode);
528 ret = 0;
529fail:
Yan, Zhenga22285a2010-05-16 10:48:46 -0400530 kfree(pending_snapshot);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400531 return ret;
532}
533
Sage Weil4260f7c2010-10-29 15:46:43 -0400534/* copy of check_sticky in fs/namei.c()
535* It's inline, so penalty for filesystems that don't use sticky bit is
536* minimal.
537*/
538static inline int btrfs_check_sticky(struct inode *dir, struct inode *inode)
539{
540 uid_t fsuid = current_fsuid();
541
542 if (!(dir->i_mode & S_ISVTX))
543 return 0;
544 if (inode->i_uid == fsuid)
545 return 0;
546 if (dir->i_uid == fsuid)
547 return 0;
548 return !capable(CAP_FOWNER);
549}
550
551/* copy of may_delete in fs/namei.c()
552 * Check whether we can remove a link victim from directory dir, check
553 * whether the type of victim is right.
554 * 1. We can't do it if dir is read-only (done in permission())
555 * 2. We should have write and exec permissions on dir
556 * 3. We can't remove anything from append-only dir
557 * 4. We can't do anything with immutable dir (done in permission())
558 * 5. If the sticky bit on dir is set we should either
559 * a. be owner of dir, or
560 * b. be owner of victim, or
561 * c. have CAP_FOWNER capability
562 * 6. If the victim is append-only or immutable we can't do antyhing with
563 * links pointing to it.
564 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
565 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
566 * 9. We can't remove a root or mountpoint.
567 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
568 * nfs_async_unlink().
569 */
570
571static int btrfs_may_delete(struct inode *dir,struct dentry *victim,int isdir)
572{
573 int error;
574
575 if (!victim->d_inode)
576 return -ENOENT;
577
578 BUG_ON(victim->d_parent->d_inode != dir);
579 audit_inode_child(victim, dir);
580
581 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
582 if (error)
583 return error;
584 if (IS_APPEND(dir))
585 return -EPERM;
586 if (btrfs_check_sticky(dir, victim->d_inode)||
587 IS_APPEND(victim->d_inode)||
588 IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode))
589 return -EPERM;
590 if (isdir) {
591 if (!S_ISDIR(victim->d_inode->i_mode))
592 return -ENOTDIR;
593 if (IS_ROOT(victim))
594 return -EBUSY;
595 } else if (S_ISDIR(victim->d_inode->i_mode))
596 return -EISDIR;
597 if (IS_DEADDIR(dir))
598 return -ENOENT;
599 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
600 return -EBUSY;
601 return 0;
602}
603
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400604/* copy of may_create in fs/namei.c() */
605static inline int btrfs_may_create(struct inode *dir, struct dentry *child)
606{
607 if (child->d_inode)
608 return -EEXIST;
609 if (IS_DEADDIR(dir))
610 return -ENOENT;
611 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
612}
613
614/*
615 * Create a new subvolume below @parent. This is largely modeled after
616 * sys_mkdirat and vfs_mkdir, but we only do a single component lookup
617 * inside this filesystem so it's quite a bit simpler.
618 */
Yan, Zheng76dda932009-09-21 16:00:26 -0400619static noinline int btrfs_mksubvol(struct path *parent,
620 char *name, int namelen,
Sage Weil72fd0322010-10-29 15:41:32 -0400621 struct btrfs_root *snap_src,
Li Zefanb83cc962010-12-20 16:04:08 +0800622 u64 *async_transid, bool readonly)
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400623{
Yan, Zheng76dda932009-09-21 16:00:26 -0400624 struct inode *dir = parent->dentry->d_inode;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400625 struct dentry *dentry;
626 int error;
627
Yan, Zheng76dda932009-09-21 16:00:26 -0400628 mutex_lock_nested(&dir->i_mutex, I_MUTEX_PARENT);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400629
630 dentry = lookup_one_len(name, parent->dentry, namelen);
631 error = PTR_ERR(dentry);
632 if (IS_ERR(dentry))
633 goto out_unlock;
634
635 error = -EEXIST;
636 if (dentry->d_inode)
637 goto out_dput;
638
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400639 error = mnt_want_write(parent->mnt);
640 if (error)
641 goto out_dput;
642
Yan, Zheng76dda932009-09-21 16:00:26 -0400643 error = btrfs_may_create(dir, dentry);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400644 if (error)
645 goto out_drop_write;
646
Yan, Zheng76dda932009-09-21 16:00:26 -0400647 down_read(&BTRFS_I(dir)->root->fs_info->subvol_sem);
648
649 if (btrfs_root_refs(&BTRFS_I(dir)->root->root_item) == 0)
650 goto out_up_read;
651
Chris Mason3de45862008-11-17 21:02:50 -0500652 if (snap_src) {
Sage Weil72fd0322010-10-29 15:41:32 -0400653 error = create_snapshot(snap_src, dentry,
Li Zefanb83cc962010-12-20 16:04:08 +0800654 name, namelen, async_transid, readonly);
Chris Mason3de45862008-11-17 21:02:50 -0500655 } else {
Yan, Zheng76dda932009-09-21 16:00:26 -0400656 error = create_subvol(BTRFS_I(dir)->root, dentry,
Sage Weil72fd0322010-10-29 15:41:32 -0400657 name, namelen, async_transid);
Chris Mason3de45862008-11-17 21:02:50 -0500658 }
Yan, Zheng76dda932009-09-21 16:00:26 -0400659 if (!error)
660 fsnotify_mkdir(dir, dentry);
661out_up_read:
662 up_read(&BTRFS_I(dir)->root->fs_info->subvol_sem);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400663out_drop_write:
664 mnt_drop_write(parent->mnt);
665out_dput:
666 dput(dentry);
667out_unlock:
Yan, Zheng76dda932009-09-21 16:00:26 -0400668 mutex_unlock(&dir->i_mutex);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400669 return error;
670}
671
Chris Mason4cb53002011-05-24 15:35:30 -0400672/*
673 * When we're defragging a range, we don't want to kick it off again
674 * if it is really just waiting for delalloc to send it down.
675 * If we find a nice big extent or delalloc range for the bytes in the
676 * file you want to defrag, we return 0 to let you know to skip this
677 * part of the file
678 */
679static int check_defrag_in_cache(struct inode *inode, u64 offset, int thresh)
680{
681 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
682 struct extent_map *em = NULL;
683 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
684 u64 end;
685
686 read_lock(&em_tree->lock);
687 em = lookup_extent_mapping(em_tree, offset, PAGE_CACHE_SIZE);
688 read_unlock(&em_tree->lock);
689
690 if (em) {
691 end = extent_map_end(em);
692 free_extent_map(em);
693 if (end - offset > thresh)
694 return 0;
695 }
696 /* if we already have a nice delalloc here, just stop */
697 thresh /= 2;
698 end = count_range_bits(io_tree, &offset, offset + thresh,
699 thresh, EXTENT_DELALLOC, 1);
700 if (end >= thresh)
701 return 0;
702 return 1;
703}
704
705/*
706 * helper function to walk through a file and find extents
707 * newer than a specific transid, and smaller than thresh.
708 *
709 * This is used by the defragging code to find new and small
710 * extents
711 */
712static int find_new_extents(struct btrfs_root *root,
713 struct inode *inode, u64 newer_than,
714 u64 *off, int thresh)
715{
716 struct btrfs_path *path;
717 struct btrfs_key min_key;
718 struct btrfs_key max_key;
719 struct extent_buffer *leaf;
720 struct btrfs_file_extent_item *extent;
721 int type;
722 int ret;
David Sterbaa4689d22011-05-31 17:08:14 +0000723 u64 ino = btrfs_ino(inode);
Chris Mason4cb53002011-05-24 15:35:30 -0400724
725 path = btrfs_alloc_path();
726 if (!path)
727 return -ENOMEM;
728
David Sterbaa4689d22011-05-31 17:08:14 +0000729 min_key.objectid = ino;
Chris Mason4cb53002011-05-24 15:35:30 -0400730 min_key.type = BTRFS_EXTENT_DATA_KEY;
731 min_key.offset = *off;
732
David Sterbaa4689d22011-05-31 17:08:14 +0000733 max_key.objectid = ino;
Chris Mason4cb53002011-05-24 15:35:30 -0400734 max_key.type = (u8)-1;
735 max_key.offset = (u64)-1;
736
737 path->keep_locks = 1;
738
739 while(1) {
740 ret = btrfs_search_forward(root, &min_key, &max_key,
741 path, 0, newer_than);
742 if (ret != 0)
743 goto none;
David Sterbaa4689d22011-05-31 17:08:14 +0000744 if (min_key.objectid != ino)
Chris Mason4cb53002011-05-24 15:35:30 -0400745 goto none;
746 if (min_key.type != BTRFS_EXTENT_DATA_KEY)
747 goto none;
748
749 leaf = path->nodes[0];
750 extent = btrfs_item_ptr(leaf, path->slots[0],
751 struct btrfs_file_extent_item);
752
753 type = btrfs_file_extent_type(leaf, extent);
754 if (type == BTRFS_FILE_EXTENT_REG &&
755 btrfs_file_extent_num_bytes(leaf, extent) < thresh &&
756 check_defrag_in_cache(inode, min_key.offset, thresh)) {
757 *off = min_key.offset;
758 btrfs_free_path(path);
759 return 0;
760 }
761
762 if (min_key.offset == (u64)-1)
763 goto none;
764
765 min_key.offset++;
766 btrfs_release_path(path);
767 }
768none:
769 btrfs_free_path(path);
770 return -ENOENT;
771}
772
Chris Mason940100a2010-03-10 10:52:59 -0500773static int should_defrag_range(struct inode *inode, u64 start, u64 len,
Chris Mason1e701a32010-03-11 09:42:04 -0500774 int thresh, u64 *last_len, u64 *skip,
775 u64 *defrag_end)
Chris Mason940100a2010-03-10 10:52:59 -0500776{
777 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
778 struct extent_map *em = NULL;
779 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
780 int ret = 1;
781
782 /*
Li Zefan008873e2011-09-02 15:57:07 +0800783 * make sure that once we start defragging an extent, we keep on
Chris Mason940100a2010-03-10 10:52:59 -0500784 * defragging it
785 */
786 if (start < *defrag_end)
787 return 1;
788
789 *skip = 0;
790
791 /*
792 * hopefully we have this extent in the tree already, try without
793 * the full extent lock
794 */
795 read_lock(&em_tree->lock);
796 em = lookup_extent_mapping(em_tree, start, len);
797 read_unlock(&em_tree->lock);
798
799 if (!em) {
800 /* get the big lock and read metadata off disk */
801 lock_extent(io_tree, start, start + len - 1, GFP_NOFS);
802 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
803 unlock_extent(io_tree, start, start + len - 1, GFP_NOFS);
804
Dan Carpenter6cf8bfb2010-03-20 11:22:10 +0000805 if (IS_ERR(em))
Chris Mason940100a2010-03-10 10:52:59 -0500806 return 0;
807 }
808
809 /* this will cover holes, and inline extents */
810 if (em->block_start >= EXTENT_MAP_LAST_BYTE)
811 ret = 0;
812
813 /*
814 * we hit a real extent, if it is big don't bother defragging it again
815 */
Chris Mason1e701a32010-03-11 09:42:04 -0500816 if ((*last_len == 0 || *last_len >= thresh) && em->len >= thresh)
Chris Mason940100a2010-03-10 10:52:59 -0500817 ret = 0;
818
819 /*
820 * last_len ends up being a counter of how many bytes we've defragged.
821 * every time we choose not to defrag an extent, we reset *last_len
822 * so that the next tiny extent will force a defrag.
823 *
824 * The end result of this is that tiny extents before a single big
825 * extent will force at least part of that big extent to be defragged.
826 */
827 if (ret) {
Chris Mason940100a2010-03-10 10:52:59 -0500828 *defrag_end = extent_map_end(em);
829 } else {
830 *last_len = 0;
831 *skip = extent_map_end(em);
832 *defrag_end = 0;
833 }
834
835 free_extent_map(em);
836 return ret;
837}
838
Chris Mason4cb53002011-05-24 15:35:30 -0400839/*
840 * it doesn't do much good to defrag one or two pages
841 * at a time. This pulls in a nice chunk of pages
842 * to COW and defrag.
843 *
844 * It also makes sure the delalloc code has enough
845 * dirty data to avoid making new small extents as part
846 * of the defrag
847 *
848 * It's a good idea to start RA on this range
849 * before calling this.
850 */
851static int cluster_pages_for_defrag(struct inode *inode,
852 struct page **pages,
853 unsigned long start_index,
854 int num_pages)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400855{
Chris Mason4cb53002011-05-24 15:35:30 -0400856 unsigned long file_end;
857 u64 isize = i_size_read(inode);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400858 u64 page_start;
859 u64 page_end;
Chris Mason4cb53002011-05-24 15:35:30 -0400860 int ret;
861 int i;
862 int i_done;
863 struct btrfs_ordered_extent *ordered;
864 struct extent_state *cached_state = NULL;
Miao Xie600a45e2012-02-16 15:01:24 +0800865 struct extent_io_tree *tree;
Josef Bacik3b16a4e2011-09-21 15:05:58 -0400866 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
Chris Mason4cb53002011-05-24 15:35:30 -0400867
868 if (isize == 0)
869 return 0;
870 file_end = (isize - 1) >> PAGE_CACHE_SHIFT;
871
872 ret = btrfs_delalloc_reserve_space(inode,
873 num_pages << PAGE_CACHE_SHIFT);
874 if (ret)
875 return ret;
Chris Mason4cb53002011-05-24 15:35:30 -0400876 i_done = 0;
Miao Xie600a45e2012-02-16 15:01:24 +0800877 tree = &BTRFS_I(inode)->io_tree;
Chris Mason4cb53002011-05-24 15:35:30 -0400878
879 /* step one, lock all the pages */
880 for (i = 0; i < num_pages; i++) {
881 struct page *page;
Miao Xie600a45e2012-02-16 15:01:24 +0800882again:
Josef Bacika94733d2011-07-11 10:47:06 -0400883 page = find_or_create_page(inode->i_mapping,
Miao Xie600a45e2012-02-16 15:01:24 +0800884 start_index + i, mask);
Chris Mason4cb53002011-05-24 15:35:30 -0400885 if (!page)
886 break;
887
Miao Xie600a45e2012-02-16 15:01:24 +0800888 page_start = page_offset(page);
889 page_end = page_start + PAGE_CACHE_SIZE - 1;
890 while (1) {
891 lock_extent(tree, page_start, page_end, GFP_NOFS);
892 ordered = btrfs_lookup_ordered_extent(inode,
893 page_start);
894 unlock_extent(tree, page_start, page_end, GFP_NOFS);
895 if (!ordered)
896 break;
897
898 unlock_page(page);
899 btrfs_start_ordered_extent(inode, ordered, 1);
900 btrfs_put_ordered_extent(ordered);
901 lock_page(page);
902 }
903
Chris Mason4cb53002011-05-24 15:35:30 -0400904 if (!PageUptodate(page)) {
905 btrfs_readpage(NULL, page);
906 lock_page(page);
907 if (!PageUptodate(page)) {
908 unlock_page(page);
909 page_cache_release(page);
910 ret = -EIO;
911 break;
912 }
913 }
Miao Xie600a45e2012-02-16 15:01:24 +0800914
Chris Mason4cb53002011-05-24 15:35:30 -0400915 isize = i_size_read(inode);
916 file_end = (isize - 1) >> PAGE_CACHE_SHIFT;
Miao Xie600a45e2012-02-16 15:01:24 +0800917 if (!isize || page->index > file_end) {
Chris Mason4cb53002011-05-24 15:35:30 -0400918 /* whoops, we blew past eof, skip this page */
919 unlock_page(page);
920 page_cache_release(page);
921 break;
922 }
Miao Xie600a45e2012-02-16 15:01:24 +0800923
924 if (page->mapping != inode->i_mapping) {
925 unlock_page(page);
926 page_cache_release(page);
927 goto again;
928 }
929
Chris Mason4cb53002011-05-24 15:35:30 -0400930 pages[i] = page;
931 i_done++;
932 }
933 if (!i_done || ret)
934 goto out;
935
936 if (!(inode->i_sb->s_flags & MS_ACTIVE))
937 goto out;
938
939 /*
940 * so now we have a nice long stream of locked
941 * and up to date pages, lets wait on them
942 */
943 for (i = 0; i < i_done; i++)
944 wait_on_page_writeback(pages[i]);
945
946 page_start = page_offset(pages[0]);
947 page_end = page_offset(pages[i_done - 1]) + PAGE_CACHE_SIZE;
948
949 lock_extent_bits(&BTRFS_I(inode)->io_tree,
950 page_start, page_end - 1, 0, &cached_state,
951 GFP_NOFS);
Chris Mason4cb53002011-05-24 15:35:30 -0400952 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start,
953 page_end - 1, EXTENT_DIRTY | EXTENT_DELALLOC |
954 EXTENT_DO_ACCOUNTING, 0, 0, &cached_state,
955 GFP_NOFS);
956
957 if (i_done != num_pages) {
Josef Bacik9e0baf62011-07-15 15:16:44 +0000958 spin_lock(&BTRFS_I(inode)->lock);
959 BTRFS_I(inode)->outstanding_extents++;
960 spin_unlock(&BTRFS_I(inode)->lock);
Chris Mason4cb53002011-05-24 15:35:30 -0400961 btrfs_delalloc_release_space(inode,
962 (num_pages - i_done) << PAGE_CACHE_SHIFT);
963 }
964
965
966 btrfs_set_extent_delalloc(inode, page_start, page_end - 1,
967 &cached_state);
968
969 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
970 page_start, page_end - 1, &cached_state,
971 GFP_NOFS);
972
973 for (i = 0; i < i_done; i++) {
974 clear_page_dirty_for_io(pages[i]);
975 ClearPageChecked(pages[i]);
976 set_page_extent_mapped(pages[i]);
977 set_page_dirty(pages[i]);
978 unlock_page(pages[i]);
979 page_cache_release(pages[i]);
980 }
981 return i_done;
982out:
983 for (i = 0; i < i_done; i++) {
984 unlock_page(pages[i]);
985 page_cache_release(pages[i]);
986 }
987 btrfs_delalloc_release_space(inode, num_pages << PAGE_CACHE_SHIFT);
988 return ret;
989
990}
991
992int btrfs_defrag_file(struct inode *inode, struct file *file,
993 struct btrfs_ioctl_defrag_range_args *range,
994 u64 newer_than, unsigned long max_to_defrag)
995{
996 struct btrfs_root *root = BTRFS_I(inode)->root;
997 struct btrfs_super_block *disk_super;
998 struct file_ra_state *ra = NULL;
999 unsigned long last_index;
Li Zefan151a31b2011-09-02 15:56:39 +08001000 u64 isize = i_size_read(inode);
Chris Mason4cb53002011-05-24 15:35:30 -04001001 u64 features;
Chris Mason940100a2010-03-10 10:52:59 -05001002 u64 last_len = 0;
1003 u64 skip = 0;
1004 u64 defrag_end = 0;
Chris Mason4cb53002011-05-24 15:35:30 -04001005 u64 newer_off = range->start;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001006 unsigned long i;
Li Zefan008873e2011-09-02 15:57:07 +08001007 unsigned long ra_index = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001008 int ret;
Chris Mason4cb53002011-05-24 15:35:30 -04001009 int defrag_count = 0;
Li Zefan1a419d82010-10-25 15:12:50 +08001010 int compress_type = BTRFS_COMPRESS_ZLIB;
Chris Mason4cb53002011-05-24 15:35:30 -04001011 int extent_thresh = range->extent_thresh;
Li Zefan008873e2011-09-02 15:57:07 +08001012 int max_cluster = (256 * 1024) >> PAGE_CACHE_SHIFT;
1013 int cluster = max_cluster;
Chris Mason4cb53002011-05-24 15:35:30 -04001014 u64 new_align = ~((u64)128 * 1024 - 1);
1015 struct page **pages = NULL;
1016
1017 if (extent_thresh == 0)
1018 extent_thresh = 256 * 1024;
Li Zefan1a419d82010-10-25 15:12:50 +08001019
1020 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS) {
1021 if (range->compress_type > BTRFS_COMPRESS_TYPES)
1022 return -EINVAL;
1023 if (range->compress_type)
1024 compress_type = range->compress_type;
1025 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001026
Li Zefan151a31b2011-09-02 15:56:39 +08001027 if (isize == 0)
Chris Mason940100a2010-03-10 10:52:59 -05001028 return 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001029
Chris Mason4cb53002011-05-24 15:35:30 -04001030 /*
1031 * if we were not given a file, allocate a readahead
1032 * context
1033 */
1034 if (!file) {
1035 ra = kzalloc(sizeof(*ra), GFP_NOFS);
1036 if (!ra)
1037 return -ENOMEM;
1038 file_ra_state_init(ra, inode->i_mapping);
1039 } else {
1040 ra = &file->f_ra;
1041 }
1042
Li Zefan008873e2011-09-02 15:57:07 +08001043 pages = kmalloc(sizeof(struct page *) * max_cluster,
Chris Mason4cb53002011-05-24 15:35:30 -04001044 GFP_NOFS);
1045 if (!pages) {
1046 ret = -ENOMEM;
1047 goto out_ra;
1048 }
1049
1050 /* find the last page to defrag */
Chris Mason1e701a32010-03-11 09:42:04 -05001051 if (range->start + range->len > range->start) {
Li Zefan151a31b2011-09-02 15:56:39 +08001052 last_index = min_t(u64, isize - 1,
Chris Mason1e701a32010-03-11 09:42:04 -05001053 range->start + range->len - 1) >> PAGE_CACHE_SHIFT;
1054 } else {
Li Zefan151a31b2011-09-02 15:56:39 +08001055 last_index = (isize - 1) >> PAGE_CACHE_SHIFT;
Chris Mason1e701a32010-03-11 09:42:04 -05001056 }
1057
Chris Mason4cb53002011-05-24 15:35:30 -04001058 if (newer_than) {
1059 ret = find_new_extents(root, inode, newer_than,
1060 &newer_off, 64 * 1024);
1061 if (!ret) {
1062 range->start = newer_off;
1063 /*
1064 * we always align our defrag to help keep
1065 * the extents in the file evenly spaced
1066 */
1067 i = (newer_off & new_align) >> PAGE_CACHE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001068 } else
1069 goto out_ra;
1070 } else {
1071 i = range->start >> PAGE_CACHE_SHIFT;
1072 }
1073 if (!max_to_defrag)
Liu Bo7ec31b52012-01-26 15:01:12 -05001074 max_to_defrag = last_index + 1;
Chris Mason4cb53002011-05-24 15:35:30 -04001075
Li Zefan2a0f7f52011-10-10 15:43:34 -04001076 /*
1077 * make writeback starts from i, so the defrag range can be
1078 * written sequentially.
1079 */
1080 if (i < inode->i_mapping->writeback_index)
1081 inode->i_mapping->writeback_index = i;
1082
Chris Masonf7f43cc2011-10-11 11:41:40 -04001083 while (i <= last_index && defrag_count < max_to_defrag &&
1084 (i < (i_size_read(inode) + PAGE_CACHE_SIZE - 1) >>
1085 PAGE_CACHE_SHIFT)) {
Chris Mason4cb53002011-05-24 15:35:30 -04001086 /*
1087 * make sure we stop running if someone unmounts
1088 * the FS
1089 */
1090 if (!(inode->i_sb->s_flags & MS_ACTIVE))
1091 break;
1092
1093 if (!newer_than &&
1094 !should_defrag_range(inode, (u64)i << PAGE_CACHE_SHIFT,
Chris Mason1e701a32010-03-11 09:42:04 -05001095 PAGE_CACHE_SIZE,
Chris Mason4cb53002011-05-24 15:35:30 -04001096 extent_thresh,
Chris Mason1e701a32010-03-11 09:42:04 -05001097 &last_len, &skip,
Chris Mason940100a2010-03-10 10:52:59 -05001098 &defrag_end)) {
1099 unsigned long next;
1100 /*
1101 * the should_defrag function tells us how much to skip
1102 * bump our counter by the suggested amount
1103 */
1104 next = (skip + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
1105 i = max(i + 1, next);
1106 continue;
1107 }
Li Zefan008873e2011-09-02 15:57:07 +08001108
1109 if (!newer_than) {
1110 cluster = (PAGE_CACHE_ALIGN(defrag_end) >>
1111 PAGE_CACHE_SHIFT) - i;
1112 cluster = min(cluster, max_cluster);
1113 } else {
1114 cluster = max_cluster;
1115 }
1116
Chris Mason1e701a32010-03-11 09:42:04 -05001117 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)
Li Zefan1a419d82010-10-25 15:12:50 +08001118 BTRFS_I(inode)->force_compress = compress_type;
Chris Mason940100a2010-03-10 10:52:59 -05001119
Li Zefan008873e2011-09-02 15:57:07 +08001120 if (i + cluster > ra_index) {
1121 ra_index = max(i, ra_index);
1122 btrfs_force_ra(inode->i_mapping, ra, file, ra_index,
1123 cluster);
1124 ra_index += max_cluster;
1125 }
Chris Mason940100a2010-03-10 10:52:59 -05001126
Li Zefan008873e2011-09-02 15:57:07 +08001127 ret = cluster_pages_for_defrag(inode, pages, i, cluster);
Chris Mason4cb53002011-05-24 15:35:30 -04001128 if (ret < 0)
1129 goto out_ra;
Chris Mason940100a2010-03-10 10:52:59 -05001130
Chris Mason4cb53002011-05-24 15:35:30 -04001131 defrag_count += ret;
1132 balance_dirty_pages_ratelimited_nr(inode->i_mapping, ret);
Chris Mason4cb53002011-05-24 15:35:30 -04001133
1134 if (newer_than) {
1135 if (newer_off == (u64)-1)
1136 break;
1137
1138 newer_off = max(newer_off + 1,
1139 (u64)i << PAGE_CACHE_SHIFT);
1140
1141 ret = find_new_extents(root, inode,
1142 newer_than, &newer_off,
1143 64 * 1024);
1144 if (!ret) {
1145 range->start = newer_off;
1146 i = (newer_off & new_align) >> PAGE_CACHE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001147 } else {
1148 break;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001149 }
Chris Mason4cb53002011-05-24 15:35:30 -04001150 } else {
Li Zefan008873e2011-09-02 15:57:07 +08001151 if (ret > 0) {
Li Zefancbcc8322011-09-02 15:56:25 +08001152 i += ret;
Li Zefan008873e2011-09-02 15:57:07 +08001153 last_len += ret << PAGE_CACHE_SHIFT;
1154 } else {
Li Zefancbcc8322011-09-02 15:56:25 +08001155 i++;
Li Zefan008873e2011-09-02 15:57:07 +08001156 last_len = 0;
1157 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001158 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001159 }
1160
Chris Mason1e701a32010-03-11 09:42:04 -05001161 if ((range->flags & BTRFS_DEFRAG_RANGE_START_IO))
1162 filemap_flush(inode->i_mapping);
1163
1164 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
1165 /* the filemap_flush will queue IO into the worker threads, but
1166 * we have to make sure the IO is actually started and that
1167 * ordered extents get created before we return
1168 */
1169 atomic_inc(&root->fs_info->async_submit_draining);
1170 while (atomic_read(&root->fs_info->nr_async_submits) ||
1171 atomic_read(&root->fs_info->async_delalloc_pages)) {
1172 wait_event(root->fs_info->async_submit_wait,
1173 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
1174 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
1175 }
1176 atomic_dec(&root->fs_info->async_submit_draining);
1177
1178 mutex_lock(&inode->i_mutex);
Li Zefan261507a02010-12-17 14:21:50 +08001179 BTRFS_I(inode)->force_compress = BTRFS_COMPRESS_NONE;
Chris Mason1e701a32010-03-11 09:42:04 -05001180 mutex_unlock(&inode->i_mutex);
1181 }
1182
David Sterba6c417612011-04-13 15:41:04 +02001183 disk_super = root->fs_info->super_copy;
Li Zefan1a419d82010-10-25 15:12:50 +08001184 features = btrfs_super_incompat_flags(disk_super);
1185 if (range->compress_type == BTRFS_COMPRESS_LZO) {
1186 features |= BTRFS_FEATURE_INCOMPAT_COMPRESS_LZO;
1187 btrfs_set_super_incompat_flags(disk_super, features);
1188 }
1189
Diego Calleja60ccf822011-09-01 16:33:57 +02001190 ret = defrag_count;
Chris Mason940100a2010-03-10 10:52:59 -05001191
Chris Mason4cb53002011-05-24 15:35:30 -04001192out_ra:
1193 if (!file)
1194 kfree(ra);
1195 kfree(pages);
Chris Mason940100a2010-03-10 10:52:59 -05001196 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001197}
1198
Yan, Zheng76dda932009-09-21 16:00:26 -04001199static noinline int btrfs_ioctl_resize(struct btrfs_root *root,
1200 void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001201{
1202 u64 new_size;
1203 u64 old_size;
1204 u64 devid = 1;
1205 struct btrfs_ioctl_vol_args *vol_args;
1206 struct btrfs_trans_handle *trans;
1207 struct btrfs_device *device = NULL;
1208 char *sizestr;
1209 char *devstr = NULL;
1210 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001211 int mod = 0;
1212
Yan Zhengc146afa2008-11-12 14:34:12 -05001213 if (root->fs_info->sb->s_flags & MS_RDONLY)
1214 return -EROFS;
1215
Chris Masone441d542009-01-05 16:57:23 -05001216 if (!capable(CAP_SYS_ADMIN))
1217 return -EPERM;
1218
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001219 mutex_lock(&root->fs_info->volume_mutex);
1220 if (root->fs_info->balance_ctl) {
1221 printk(KERN_INFO "btrfs: balance in progress\n");
1222 ret = -EINVAL;
1223 goto out;
1224 }
1225
Li Zefandae7b662009-04-08 15:06:54 +08001226 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001227 if (IS_ERR(vol_args)) {
1228 ret = PTR_ERR(vol_args);
1229 goto out;
1230 }
Mark Fasheh5516e592008-07-24 12:20:14 -04001231
1232 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001233
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001234 sizestr = vol_args->name;
1235 devstr = strchr(sizestr, ':');
1236 if (devstr) {
1237 char *end;
1238 sizestr = devstr + 1;
1239 *devstr = '\0';
1240 devstr = vol_args->name;
1241 devid = simple_strtoull(devstr, &end, 10);
Arnd Hannemann5bb14682011-11-20 07:33:38 -05001242 printk(KERN_INFO "btrfs: resizing devid %llu\n",
Joel Becker21380932009-04-21 12:38:29 -07001243 (unsigned long long)devid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001244 }
Yan Zheng2b820322008-11-17 21:11:30 -05001245 device = btrfs_find_device(root, devid, NULL, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001246 if (!device) {
Arnd Hannemann5bb14682011-11-20 07:33:38 -05001247 printk(KERN_INFO "btrfs: resizer unable to find device %llu\n",
Joel Becker21380932009-04-21 12:38:29 -07001248 (unsigned long long)devid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001249 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001250 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001251 }
1252 if (!strcmp(sizestr, "max"))
1253 new_size = device->bdev->bd_inode->i_size;
1254 else {
1255 if (sizestr[0] == '-') {
1256 mod = -1;
1257 sizestr++;
1258 } else if (sizestr[0] == '+') {
1259 mod = 1;
1260 sizestr++;
1261 }
Akinobu Mita91748462010-02-28 10:59:11 +00001262 new_size = memparse(sizestr, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001263 if (new_size == 0) {
1264 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001265 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001266 }
1267 }
1268
1269 old_size = device->total_bytes;
1270
1271 if (mod < 0) {
1272 if (new_size > old_size) {
1273 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001274 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001275 }
1276 new_size = old_size - new_size;
1277 } else if (mod > 0) {
1278 new_size = old_size + new_size;
1279 }
1280
1281 if (new_size < 256 * 1024 * 1024) {
1282 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001283 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001284 }
1285 if (new_size > device->bdev->bd_inode->i_size) {
1286 ret = -EFBIG;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001287 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001288 }
1289
1290 do_div(new_size, root->sectorsize);
1291 new_size *= root->sectorsize;
1292
Arnd Hannemann5bb14682011-11-20 07:33:38 -05001293 printk(KERN_INFO "btrfs: new size for %s is %llu\n",
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001294 device->name, (unsigned long long)new_size);
1295
1296 if (new_size > old_size) {
Yan, Zhenga22285a2010-05-16 10:48:46 -04001297 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001298 if (IS_ERR(trans)) {
1299 ret = PTR_ERR(trans);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001300 goto out_free;
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001301 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001302 ret = btrfs_grow_device(trans, device, new_size);
1303 btrfs_commit_transaction(trans, root);
Mike Fleetwoodece7d202011-11-18 18:55:01 +00001304 } else if (new_size < old_size) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001305 ret = btrfs_shrink_device(device, new_size);
1306 }
1307
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001308out_free:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001309 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001310out:
1311 mutex_unlock(&root->fs_info->volume_mutex);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001312 return ret;
1313}
1314
Sage Weil72fd0322010-10-29 15:41:32 -04001315static noinline int btrfs_ioctl_snap_create_transid(struct file *file,
1316 char *name,
1317 unsigned long fd,
1318 int subvol,
Li Zefanb83cc962010-12-20 16:04:08 +08001319 u64 *transid,
1320 bool readonly)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001321{
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001322 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
Chris Mason3de45862008-11-17 21:02:50 -05001323 struct file *src_file;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001324 int namelen;
Chris Mason3de45862008-11-17 21:02:50 -05001325 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001326
Yan Zhengc146afa2008-11-12 14:34:12 -05001327 if (root->fs_info->sb->s_flags & MS_RDONLY)
1328 return -EROFS;
1329
Sage Weil72fd0322010-10-29 15:41:32 -04001330 namelen = strlen(name);
1331 if (strchr(name, '/')) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001332 ret = -EINVAL;
1333 goto out;
1334 }
1335
Chris Mason16780ca2012-02-20 22:14:55 -05001336 if (name[0] == '.' &&
1337 (namelen == 1 || (name[1] == '.' && namelen == 2))) {
1338 ret = -EEXIST;
1339 goto out;
1340 }
1341
Chris Mason3de45862008-11-17 21:02:50 -05001342 if (subvol) {
Sage Weil72fd0322010-10-29 15:41:32 -04001343 ret = btrfs_mksubvol(&file->f_path, name, namelen,
Li Zefanb83cc962010-12-20 16:04:08 +08001344 NULL, transid, readonly);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001345 } else {
Chris Mason3de45862008-11-17 21:02:50 -05001346 struct inode *src_inode;
Sage Weil72fd0322010-10-29 15:41:32 -04001347 src_file = fget(fd);
Chris Mason3de45862008-11-17 21:02:50 -05001348 if (!src_file) {
1349 ret = -EINVAL;
1350 goto out;
1351 }
1352
1353 src_inode = src_file->f_path.dentry->d_inode;
1354 if (src_inode->i_sb != file->f_path.dentry->d_inode->i_sb) {
Chris Masond3977122009-01-05 21:25:51 -05001355 printk(KERN_INFO "btrfs: Snapshot src from "
1356 "another FS\n");
Chris Mason3de45862008-11-17 21:02:50 -05001357 ret = -EINVAL;
1358 fput(src_file);
1359 goto out;
1360 }
Sage Weil72fd0322010-10-29 15:41:32 -04001361 ret = btrfs_mksubvol(&file->f_path, name, namelen,
1362 BTRFS_I(src_inode)->root,
Li Zefanb83cc962010-12-20 16:04:08 +08001363 transid, readonly);
Chris Mason3de45862008-11-17 21:02:50 -05001364 fput(src_file);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001365 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001366out:
Sage Weil72fd0322010-10-29 15:41:32 -04001367 return ret;
1368}
1369
1370static noinline int btrfs_ioctl_snap_create(struct file *file,
Li Zefanfa0d2b92010-12-20 15:53:28 +08001371 void __user *arg, int subvol)
Sage Weil72fd0322010-10-29 15:41:32 -04001372{
Li Zefanfa0d2b92010-12-20 15:53:28 +08001373 struct btrfs_ioctl_vol_args *vol_args;
Sage Weil72fd0322010-10-29 15:41:32 -04001374 int ret;
1375
Li Zefanfa0d2b92010-12-20 15:53:28 +08001376 vol_args = memdup_user(arg, sizeof(*vol_args));
1377 if (IS_ERR(vol_args))
1378 return PTR_ERR(vol_args);
1379 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Sage Weil72fd0322010-10-29 15:41:32 -04001380
Li Zefanfa0d2b92010-12-20 15:53:28 +08001381 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
Li Zefanb83cc962010-12-20 16:04:08 +08001382 vol_args->fd, subvol,
1383 NULL, false);
Li Zefanfdfb1e42010-12-10 06:41:56 +00001384
Li Zefanfa0d2b92010-12-20 15:53:28 +08001385 kfree(vol_args);
1386 return ret;
1387}
Li Zefanfdfb1e42010-12-10 06:41:56 +00001388
Li Zefanfa0d2b92010-12-20 15:53:28 +08001389static noinline int btrfs_ioctl_snap_create_v2(struct file *file,
1390 void __user *arg, int subvol)
1391{
1392 struct btrfs_ioctl_vol_args_v2 *vol_args;
1393 int ret;
1394 u64 transid = 0;
1395 u64 *ptr = NULL;
Li Zefanb83cc962010-12-20 16:04:08 +08001396 bool readonly = false;
Li Zefanfdfb1e42010-12-10 06:41:56 +00001397
Li Zefanfa0d2b92010-12-20 15:53:28 +08001398 vol_args = memdup_user(arg, sizeof(*vol_args));
1399 if (IS_ERR(vol_args))
1400 return PTR_ERR(vol_args);
1401 vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
Sage Weil75eaa0e2010-12-10 00:36:28 +00001402
Li Zefanb83cc962010-12-20 16:04:08 +08001403 if (vol_args->flags &
1404 ~(BTRFS_SUBVOL_CREATE_ASYNC | BTRFS_SUBVOL_RDONLY)) {
1405 ret = -EOPNOTSUPP;
Li Zefanfa0d2b92010-12-20 15:53:28 +08001406 goto out;
Sage Weil72fd0322010-10-29 15:41:32 -04001407 }
Li Zefanfa0d2b92010-12-20 15:53:28 +08001408
1409 if (vol_args->flags & BTRFS_SUBVOL_CREATE_ASYNC)
1410 ptr = &transid;
Li Zefanb83cc962010-12-20 16:04:08 +08001411 if (vol_args->flags & BTRFS_SUBVOL_RDONLY)
1412 readonly = true;
Li Zefanfa0d2b92010-12-20 15:53:28 +08001413
1414 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
Li Zefanb83cc962010-12-20 16:04:08 +08001415 vol_args->fd, subvol,
1416 ptr, readonly);
Li Zefanfa0d2b92010-12-20 15:53:28 +08001417
1418 if (ret == 0 && ptr &&
1419 copy_to_user(arg +
1420 offsetof(struct btrfs_ioctl_vol_args_v2,
1421 transid), ptr, sizeof(*ptr)))
1422 ret = -EFAULT;
Li Zefanfdfb1e42010-12-10 06:41:56 +00001423out:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001424 kfree(vol_args);
1425 return ret;
1426}
1427
Li Zefan0caa1022010-12-20 16:30:25 +08001428static noinline int btrfs_ioctl_subvol_getflags(struct file *file,
1429 void __user *arg)
1430{
1431 struct inode *inode = fdentry(file)->d_inode;
1432 struct btrfs_root *root = BTRFS_I(inode)->root;
1433 int ret = 0;
1434 u64 flags = 0;
1435
Li Zefan33345d012011-04-20 10:31:50 +08001436 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID)
Li Zefan0caa1022010-12-20 16:30:25 +08001437 return -EINVAL;
1438
1439 down_read(&root->fs_info->subvol_sem);
1440 if (btrfs_root_readonly(root))
1441 flags |= BTRFS_SUBVOL_RDONLY;
1442 up_read(&root->fs_info->subvol_sem);
1443
1444 if (copy_to_user(arg, &flags, sizeof(flags)))
1445 ret = -EFAULT;
1446
1447 return ret;
1448}
1449
1450static noinline int btrfs_ioctl_subvol_setflags(struct file *file,
1451 void __user *arg)
1452{
1453 struct inode *inode = fdentry(file)->d_inode;
1454 struct btrfs_root *root = BTRFS_I(inode)->root;
1455 struct btrfs_trans_handle *trans;
1456 u64 root_flags;
1457 u64 flags;
1458 int ret = 0;
1459
1460 if (root->fs_info->sb->s_flags & MS_RDONLY)
1461 return -EROFS;
1462
Li Zefan33345d012011-04-20 10:31:50 +08001463 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID)
Li Zefan0caa1022010-12-20 16:30:25 +08001464 return -EINVAL;
1465
1466 if (copy_from_user(&flags, arg, sizeof(flags)))
1467 return -EFAULT;
1468
Li Zefanb4dc2b82011-02-16 06:06:34 +00001469 if (flags & BTRFS_SUBVOL_CREATE_ASYNC)
Li Zefan0caa1022010-12-20 16:30:25 +08001470 return -EINVAL;
1471
1472 if (flags & ~BTRFS_SUBVOL_RDONLY)
1473 return -EOPNOTSUPP;
1474
Serge E. Hallyn2e149672011-03-23 16:43:26 -07001475 if (!inode_owner_or_capable(inode))
Li Zefanb4dc2b82011-02-16 06:06:34 +00001476 return -EACCES;
1477
Li Zefan0caa1022010-12-20 16:30:25 +08001478 down_write(&root->fs_info->subvol_sem);
1479
1480 /* nothing to do */
1481 if (!!(flags & BTRFS_SUBVOL_RDONLY) == btrfs_root_readonly(root))
1482 goto out;
1483
1484 root_flags = btrfs_root_flags(&root->root_item);
1485 if (flags & BTRFS_SUBVOL_RDONLY)
1486 btrfs_set_root_flags(&root->root_item,
1487 root_flags | BTRFS_ROOT_SUBVOL_RDONLY);
1488 else
1489 btrfs_set_root_flags(&root->root_item,
1490 root_flags & ~BTRFS_ROOT_SUBVOL_RDONLY);
1491
1492 trans = btrfs_start_transaction(root, 1);
1493 if (IS_ERR(trans)) {
1494 ret = PTR_ERR(trans);
1495 goto out_reset;
1496 }
1497
Li Zefanb4dc2b82011-02-16 06:06:34 +00001498 ret = btrfs_update_root(trans, root->fs_info->tree_root,
Li Zefan0caa1022010-12-20 16:30:25 +08001499 &root->root_key, &root->root_item);
1500
1501 btrfs_commit_transaction(trans, root);
1502out_reset:
1503 if (ret)
1504 btrfs_set_root_flags(&root->root_item, root_flags);
1505out:
1506 up_write(&root->fs_info->subvol_sem);
1507 return ret;
1508}
1509
Yan, Zheng76dda932009-09-21 16:00:26 -04001510/*
1511 * helper to check if the subvolume references other subvolumes
1512 */
1513static noinline int may_destroy_subvol(struct btrfs_root *root)
1514{
1515 struct btrfs_path *path;
1516 struct btrfs_key key;
1517 int ret;
1518
1519 path = btrfs_alloc_path();
1520 if (!path)
1521 return -ENOMEM;
1522
1523 key.objectid = root->root_key.objectid;
1524 key.type = BTRFS_ROOT_REF_KEY;
1525 key.offset = (u64)-1;
1526
1527 ret = btrfs_search_slot(NULL, root->fs_info->tree_root,
1528 &key, path, 0, 0);
1529 if (ret < 0)
1530 goto out;
1531 BUG_ON(ret == 0);
1532
1533 ret = 0;
1534 if (path->slots[0] > 0) {
1535 path->slots[0]--;
1536 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1537 if (key.objectid == root->root_key.objectid &&
1538 key.type == BTRFS_ROOT_REF_KEY)
1539 ret = -ENOTEMPTY;
1540 }
1541out:
1542 btrfs_free_path(path);
1543 return ret;
1544}
1545
Chris Masonac8e9812010-02-28 15:39:26 -05001546static noinline int key_in_sk(struct btrfs_key *key,
1547 struct btrfs_ioctl_search_key *sk)
1548{
Chris Masonabc6e132010-03-18 12:10:08 -04001549 struct btrfs_key test;
1550 int ret;
1551
1552 test.objectid = sk->min_objectid;
1553 test.type = sk->min_type;
1554 test.offset = sk->min_offset;
1555
1556 ret = btrfs_comp_cpu_keys(key, &test);
1557 if (ret < 0)
Chris Masonac8e9812010-02-28 15:39:26 -05001558 return 0;
Chris Masonabc6e132010-03-18 12:10:08 -04001559
1560 test.objectid = sk->max_objectid;
1561 test.type = sk->max_type;
1562 test.offset = sk->max_offset;
1563
1564 ret = btrfs_comp_cpu_keys(key, &test);
1565 if (ret > 0)
Chris Masonac8e9812010-02-28 15:39:26 -05001566 return 0;
1567 return 1;
1568}
1569
1570static noinline int copy_to_sk(struct btrfs_root *root,
1571 struct btrfs_path *path,
1572 struct btrfs_key *key,
1573 struct btrfs_ioctl_search_key *sk,
1574 char *buf,
1575 unsigned long *sk_offset,
1576 int *num_found)
1577{
1578 u64 found_transid;
1579 struct extent_buffer *leaf;
1580 struct btrfs_ioctl_search_header sh;
1581 unsigned long item_off;
1582 unsigned long item_len;
1583 int nritems;
1584 int i;
1585 int slot;
Chris Masonac8e9812010-02-28 15:39:26 -05001586 int ret = 0;
1587
1588 leaf = path->nodes[0];
1589 slot = path->slots[0];
1590 nritems = btrfs_header_nritems(leaf);
1591
1592 if (btrfs_header_generation(leaf) > sk->max_transid) {
1593 i = nritems;
1594 goto advance_key;
1595 }
1596 found_transid = btrfs_header_generation(leaf);
1597
1598 for (i = slot; i < nritems; i++) {
1599 item_off = btrfs_item_ptr_offset(leaf, i);
1600 item_len = btrfs_item_size_nr(leaf, i);
1601
1602 if (item_len > BTRFS_SEARCH_ARGS_BUFSIZE)
1603 item_len = 0;
1604
1605 if (sizeof(sh) + item_len + *sk_offset >
1606 BTRFS_SEARCH_ARGS_BUFSIZE) {
1607 ret = 1;
1608 goto overflow;
1609 }
1610
1611 btrfs_item_key_to_cpu(leaf, key, i);
1612 if (!key_in_sk(key, sk))
1613 continue;
1614
1615 sh.objectid = key->objectid;
1616 sh.offset = key->offset;
1617 sh.type = key->type;
1618 sh.len = item_len;
1619 sh.transid = found_transid;
1620
1621 /* copy search result header */
1622 memcpy(buf + *sk_offset, &sh, sizeof(sh));
1623 *sk_offset += sizeof(sh);
1624
1625 if (item_len) {
1626 char *p = buf + *sk_offset;
1627 /* copy the item */
1628 read_extent_buffer(leaf, p,
1629 item_off, item_len);
1630 *sk_offset += item_len;
Chris Masonac8e9812010-02-28 15:39:26 -05001631 }
Hugo Millse2156862011-05-14 17:43:41 +00001632 (*num_found)++;
Chris Masonac8e9812010-02-28 15:39:26 -05001633
1634 if (*num_found >= sk->nr_items)
1635 break;
1636 }
1637advance_key:
Chris Masonac8e9812010-02-28 15:39:26 -05001638 ret = 0;
Chris Masonabc6e132010-03-18 12:10:08 -04001639 if (key->offset < (u64)-1 && key->offset < sk->max_offset)
1640 key->offset++;
1641 else if (key->type < (u8)-1 && key->type < sk->max_type) {
1642 key->offset = 0;
1643 key->type++;
1644 } else if (key->objectid < (u64)-1 && key->objectid < sk->max_objectid) {
1645 key->offset = 0;
1646 key->type = 0;
1647 key->objectid++;
1648 } else
1649 ret = 1;
Chris Masonac8e9812010-02-28 15:39:26 -05001650overflow:
Chris Masonac8e9812010-02-28 15:39:26 -05001651 return ret;
1652}
1653
1654static noinline int search_ioctl(struct inode *inode,
1655 struct btrfs_ioctl_search_args *args)
1656{
1657 struct btrfs_root *root;
1658 struct btrfs_key key;
1659 struct btrfs_key max_key;
1660 struct btrfs_path *path;
1661 struct btrfs_ioctl_search_key *sk = &args->key;
1662 struct btrfs_fs_info *info = BTRFS_I(inode)->root->fs_info;
1663 int ret;
1664 int num_found = 0;
1665 unsigned long sk_offset = 0;
1666
1667 path = btrfs_alloc_path();
1668 if (!path)
1669 return -ENOMEM;
1670
1671 if (sk->tree_id == 0) {
1672 /* search the root of the inode that was passed */
1673 root = BTRFS_I(inode)->root;
1674 } else {
1675 key.objectid = sk->tree_id;
1676 key.type = BTRFS_ROOT_ITEM_KEY;
1677 key.offset = (u64)-1;
1678 root = btrfs_read_fs_root_no_name(info, &key);
1679 if (IS_ERR(root)) {
1680 printk(KERN_ERR "could not find root %llu\n",
1681 sk->tree_id);
1682 btrfs_free_path(path);
1683 return -ENOENT;
1684 }
1685 }
1686
1687 key.objectid = sk->min_objectid;
1688 key.type = sk->min_type;
1689 key.offset = sk->min_offset;
1690
1691 max_key.objectid = sk->max_objectid;
1692 max_key.type = sk->max_type;
1693 max_key.offset = sk->max_offset;
1694
1695 path->keep_locks = 1;
1696
1697 while(1) {
1698 ret = btrfs_search_forward(root, &key, &max_key, path, 0,
1699 sk->min_transid);
1700 if (ret != 0) {
1701 if (ret > 0)
1702 ret = 0;
1703 goto err;
1704 }
1705 ret = copy_to_sk(root, path, &key, sk, args->buf,
1706 &sk_offset, &num_found);
David Sterbab3b4aa72011-04-21 01:20:15 +02001707 btrfs_release_path(path);
Chris Masonac8e9812010-02-28 15:39:26 -05001708 if (ret || num_found >= sk->nr_items)
1709 break;
1710
1711 }
1712 ret = 0;
1713err:
1714 sk->nr_items = num_found;
1715 btrfs_free_path(path);
1716 return ret;
1717}
1718
1719static noinline int btrfs_ioctl_tree_search(struct file *file,
1720 void __user *argp)
1721{
1722 struct btrfs_ioctl_search_args *args;
1723 struct inode *inode;
1724 int ret;
1725
1726 if (!capable(CAP_SYS_ADMIN))
1727 return -EPERM;
1728
Julia Lawall2354d082010-10-29 15:14:18 -04001729 args = memdup_user(argp, sizeof(*args));
1730 if (IS_ERR(args))
1731 return PTR_ERR(args);
Chris Masonac8e9812010-02-28 15:39:26 -05001732
Chris Masonac8e9812010-02-28 15:39:26 -05001733 inode = fdentry(file)->d_inode;
1734 ret = search_ioctl(inode, args);
1735 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
1736 ret = -EFAULT;
1737 kfree(args);
1738 return ret;
1739}
1740
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001741/*
Chris Masonac8e9812010-02-28 15:39:26 -05001742 * Search INODE_REFs to identify path name of 'dirid' directory
1743 * in a 'tree_id' tree. and sets path name to 'name'.
1744 */
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001745static noinline int btrfs_search_path_in_tree(struct btrfs_fs_info *info,
1746 u64 tree_id, u64 dirid, char *name)
1747{
1748 struct btrfs_root *root;
1749 struct btrfs_key key;
Chris Masonac8e9812010-02-28 15:39:26 -05001750 char *ptr;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001751 int ret = -1;
1752 int slot;
1753 int len;
1754 int total_len = 0;
1755 struct btrfs_inode_ref *iref;
1756 struct extent_buffer *l;
1757 struct btrfs_path *path;
1758
1759 if (dirid == BTRFS_FIRST_FREE_OBJECTID) {
1760 name[0]='\0';
1761 return 0;
1762 }
1763
1764 path = btrfs_alloc_path();
1765 if (!path)
1766 return -ENOMEM;
1767
Chris Masonac8e9812010-02-28 15:39:26 -05001768 ptr = &name[BTRFS_INO_LOOKUP_PATH_MAX];
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001769
1770 key.objectid = tree_id;
1771 key.type = BTRFS_ROOT_ITEM_KEY;
1772 key.offset = (u64)-1;
1773 root = btrfs_read_fs_root_no_name(info, &key);
1774 if (IS_ERR(root)) {
1775 printk(KERN_ERR "could not find root %llu\n", tree_id);
Chris Mason8ad6fca2010-03-18 12:23:10 -04001776 ret = -ENOENT;
1777 goto out;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001778 }
1779
1780 key.objectid = dirid;
1781 key.type = BTRFS_INODE_REF_KEY;
Chris Mason8ad6fca2010-03-18 12:23:10 -04001782 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001783
1784 while(1) {
1785 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1786 if (ret < 0)
1787 goto out;
1788
1789 l = path->nodes[0];
1790 slot = path->slots[0];
Chris Mason8ad6fca2010-03-18 12:23:10 -04001791 if (ret > 0 && slot > 0)
1792 slot--;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001793 btrfs_item_key_to_cpu(l, &key, slot);
1794
1795 if (ret > 0 && (key.objectid != dirid ||
Chris Masonac8e9812010-02-28 15:39:26 -05001796 key.type != BTRFS_INODE_REF_KEY)) {
1797 ret = -ENOENT;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001798 goto out;
Chris Masonac8e9812010-02-28 15:39:26 -05001799 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001800
1801 iref = btrfs_item_ptr(l, slot, struct btrfs_inode_ref);
1802 len = btrfs_inode_ref_name_len(l, iref);
1803 ptr -= len + 1;
1804 total_len += len + 1;
Chris Masonac8e9812010-02-28 15:39:26 -05001805 if (ptr < name)
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001806 goto out;
1807
1808 *(ptr + len) = '/';
1809 read_extent_buffer(l, ptr,(unsigned long)(iref + 1), len);
1810
1811 if (key.offset == BTRFS_FIRST_FREE_OBJECTID)
1812 break;
1813
David Sterbab3b4aa72011-04-21 01:20:15 +02001814 btrfs_release_path(path);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001815 key.objectid = key.offset;
Chris Mason8ad6fca2010-03-18 12:23:10 -04001816 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001817 dirid = key.objectid;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001818 }
Chris Masonac8e9812010-02-28 15:39:26 -05001819 if (ptr < name)
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001820 goto out;
Li Zefan77906a502011-07-14 03:16:00 +00001821 memmove(name, ptr, total_len);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001822 name[total_len]='\0';
1823 ret = 0;
1824out:
1825 btrfs_free_path(path);
Chris Masonac8e9812010-02-28 15:39:26 -05001826 return ret;
1827}
1828
1829static noinline int btrfs_ioctl_ino_lookup(struct file *file,
1830 void __user *argp)
1831{
1832 struct btrfs_ioctl_ino_lookup_args *args;
1833 struct inode *inode;
1834 int ret;
1835
1836 if (!capable(CAP_SYS_ADMIN))
1837 return -EPERM;
1838
Julia Lawall2354d082010-10-29 15:14:18 -04001839 args = memdup_user(argp, sizeof(*args));
1840 if (IS_ERR(args))
1841 return PTR_ERR(args);
Dan Carpenterc2b96922010-03-20 11:24:15 +00001842
Chris Masonac8e9812010-02-28 15:39:26 -05001843 inode = fdentry(file)->d_inode;
1844
Chris Mason1b53ac42010-03-18 12:17:05 -04001845 if (args->treeid == 0)
1846 args->treeid = BTRFS_I(inode)->root->root_key.objectid;
1847
Chris Masonac8e9812010-02-28 15:39:26 -05001848 ret = btrfs_search_path_in_tree(BTRFS_I(inode)->root->fs_info,
1849 args->treeid, args->objectid,
1850 args->name);
1851
1852 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
1853 ret = -EFAULT;
1854
1855 kfree(args);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001856 return ret;
1857}
1858
Yan, Zheng76dda932009-09-21 16:00:26 -04001859static noinline int btrfs_ioctl_snap_destroy(struct file *file,
1860 void __user *arg)
1861{
1862 struct dentry *parent = fdentry(file);
1863 struct dentry *dentry;
1864 struct inode *dir = parent->d_inode;
1865 struct inode *inode;
1866 struct btrfs_root *root = BTRFS_I(dir)->root;
1867 struct btrfs_root *dest = NULL;
1868 struct btrfs_ioctl_vol_args *vol_args;
1869 struct btrfs_trans_handle *trans;
1870 int namelen;
1871 int ret;
1872 int err = 0;
1873
Yan, Zheng76dda932009-09-21 16:00:26 -04001874 vol_args = memdup_user(arg, sizeof(*vol_args));
1875 if (IS_ERR(vol_args))
1876 return PTR_ERR(vol_args);
1877
1878 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
1879 namelen = strlen(vol_args->name);
1880 if (strchr(vol_args->name, '/') ||
1881 strncmp(vol_args->name, "..", namelen) == 0) {
1882 err = -EINVAL;
1883 goto out;
1884 }
1885
1886 err = mnt_want_write(file->f_path.mnt);
1887 if (err)
1888 goto out;
1889
1890 mutex_lock_nested(&dir->i_mutex, I_MUTEX_PARENT);
1891 dentry = lookup_one_len(vol_args->name, parent, namelen);
1892 if (IS_ERR(dentry)) {
1893 err = PTR_ERR(dentry);
1894 goto out_unlock_dir;
1895 }
1896
1897 if (!dentry->d_inode) {
1898 err = -ENOENT;
1899 goto out_dput;
1900 }
1901
1902 inode = dentry->d_inode;
Sage Weil4260f7c2010-10-29 15:46:43 -04001903 dest = BTRFS_I(inode)->root;
1904 if (!capable(CAP_SYS_ADMIN)){
1905 /*
1906 * Regular user. Only allow this with a special mount
1907 * option, when the user has write+exec access to the
1908 * subvol root, and when rmdir(2) would have been
1909 * allowed.
1910 *
1911 * Note that this is _not_ check that the subvol is
1912 * empty or doesn't contain data that we wouldn't
1913 * otherwise be able to delete.
1914 *
1915 * Users who want to delete empty subvols should try
1916 * rmdir(2).
1917 */
1918 err = -EPERM;
1919 if (!btrfs_test_opt(root, USER_SUBVOL_RM_ALLOWED))
1920 goto out_dput;
1921
1922 /*
1923 * Do not allow deletion if the parent dir is the same
1924 * as the dir to be deleted. That means the ioctl
1925 * must be called on the dentry referencing the root
1926 * of the subvol, not a random directory contained
1927 * within it.
1928 */
1929 err = -EINVAL;
1930 if (root == dest)
1931 goto out_dput;
1932
1933 err = inode_permission(inode, MAY_WRITE | MAY_EXEC);
1934 if (err)
1935 goto out_dput;
1936
1937 /* check if subvolume may be deleted by a non-root user */
1938 err = btrfs_may_delete(dir, dentry, 1);
1939 if (err)
1940 goto out_dput;
1941 }
1942
Li Zefan33345d012011-04-20 10:31:50 +08001943 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
Yan, Zheng76dda932009-09-21 16:00:26 -04001944 err = -EINVAL;
1945 goto out_dput;
1946 }
1947
Yan, Zheng76dda932009-09-21 16:00:26 -04001948 mutex_lock(&inode->i_mutex);
1949 err = d_invalidate(dentry);
1950 if (err)
1951 goto out_unlock;
1952
1953 down_write(&root->fs_info->subvol_sem);
1954
1955 err = may_destroy_subvol(dest);
1956 if (err)
1957 goto out_up_write;
1958
Yan, Zhenga22285a2010-05-16 10:48:46 -04001959 trans = btrfs_start_transaction(root, 0);
1960 if (IS_ERR(trans)) {
1961 err = PTR_ERR(trans);
Dan Carpenterd3270992010-05-29 09:46:47 +00001962 goto out_up_write;
Yan, Zhenga22285a2010-05-16 10:48:46 -04001963 }
1964 trans->block_rsv = &root->fs_info->global_block_rsv;
1965
Yan, Zheng76dda932009-09-21 16:00:26 -04001966 ret = btrfs_unlink_subvol(trans, root, dir,
1967 dest->root_key.objectid,
1968 dentry->d_name.name,
1969 dentry->d_name.len);
1970 BUG_ON(ret);
1971
1972 btrfs_record_root_in_trans(trans, dest);
1973
1974 memset(&dest->root_item.drop_progress, 0,
1975 sizeof(dest->root_item.drop_progress));
1976 dest->root_item.drop_level = 0;
1977 btrfs_set_root_refs(&dest->root_item, 0);
1978
Yan, Zhengd68fc572010-05-16 10:49:58 -04001979 if (!xchg(&dest->orphan_item_inserted, 1)) {
1980 ret = btrfs_insert_orphan_item(trans,
1981 root->fs_info->tree_root,
1982 dest->root_key.objectid);
1983 BUG_ON(ret);
1984 }
Yan, Zheng76dda932009-09-21 16:00:26 -04001985
Sage Weil531cb132010-10-29 15:41:32 -04001986 ret = btrfs_end_transaction(trans, root);
Yan, Zheng76dda932009-09-21 16:00:26 -04001987 BUG_ON(ret);
1988 inode->i_flags |= S_DEAD;
1989out_up_write:
1990 up_write(&root->fs_info->subvol_sem);
1991out_unlock:
1992 mutex_unlock(&inode->i_mutex);
1993 if (!err) {
Yan, Zhengefefb142009-10-09 09:25:16 -04001994 shrink_dcache_sb(root->fs_info->sb);
Yan, Zheng76dda932009-09-21 16:00:26 -04001995 btrfs_invalidate_inodes(dest);
1996 d_delete(dentry);
1997 }
1998out_dput:
1999 dput(dentry);
2000out_unlock_dir:
2001 mutex_unlock(&dir->i_mutex);
2002 mnt_drop_write(file->f_path.mnt);
2003out:
2004 kfree(vol_args);
2005 return err;
2006}
2007
Chris Mason1e701a32010-03-11 09:42:04 -05002008static int btrfs_ioctl_defrag(struct file *file, void __user *argp)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002009{
2010 struct inode *inode = fdentry(file)->d_inode;
2011 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason1e701a32010-03-11 09:42:04 -05002012 struct btrfs_ioctl_defrag_range_args *range;
Yan Zhengc146afa2008-11-12 14:34:12 -05002013 int ret;
2014
Li Zefanb83cc962010-12-20 16:04:08 +08002015 if (btrfs_root_readonly(root))
2016 return -EROFS;
2017
Yan Zhengc146afa2008-11-12 14:34:12 -05002018 ret = mnt_want_write(file->f_path.mnt);
2019 if (ret)
2020 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002021
2022 switch (inode->i_mode & S_IFMT) {
2023 case S_IFDIR:
Chris Masone441d542009-01-05 16:57:23 -05002024 if (!capable(CAP_SYS_ADMIN)) {
2025 ret = -EPERM;
2026 goto out;
2027 }
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04002028 ret = btrfs_defrag_root(root, 0);
2029 if (ret)
2030 goto out;
2031 ret = btrfs_defrag_root(root->fs_info->extent_root, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002032 break;
2033 case S_IFREG:
Chris Masone441d542009-01-05 16:57:23 -05002034 if (!(file->f_mode & FMODE_WRITE)) {
2035 ret = -EINVAL;
2036 goto out;
2037 }
Chris Mason1e701a32010-03-11 09:42:04 -05002038
2039 range = kzalloc(sizeof(*range), GFP_KERNEL);
2040 if (!range) {
2041 ret = -ENOMEM;
2042 goto out;
2043 }
2044
2045 if (argp) {
2046 if (copy_from_user(range, argp,
2047 sizeof(*range))) {
2048 ret = -EFAULT;
2049 kfree(range);
Dan Carpenter683be162010-03-20 11:24:48 +00002050 goto out;
Chris Mason1e701a32010-03-11 09:42:04 -05002051 }
2052 /* compression requires us to start the IO */
2053 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
2054 range->flags |= BTRFS_DEFRAG_RANGE_START_IO;
2055 range->extent_thresh = (u32)-1;
2056 }
2057 } else {
2058 /* the rest are all set to zero by kzalloc */
2059 range->len = (u64)-1;
2060 }
Chris Mason4cb53002011-05-24 15:35:30 -04002061 ret = btrfs_defrag_file(fdentry(file)->d_inode, file,
2062 range, 0, 0);
2063 if (ret > 0)
2064 ret = 0;
Chris Mason1e701a32010-03-11 09:42:04 -05002065 kfree(range);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002066 break;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04002067 default:
2068 ret = -EINVAL;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002069 }
Chris Masone441d542009-01-05 16:57:23 -05002070out:
Yan Zhengab67b7c2008-12-19 10:58:39 -05002071 mnt_drop_write(file->f_path.mnt);
Chris Masone441d542009-01-05 16:57:23 -05002072 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002073}
2074
Christoph Hellwigb2950862008-12-02 09:54:17 -05002075static long btrfs_ioctl_add_dev(struct btrfs_root *root, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002076{
2077 struct btrfs_ioctl_vol_args *vol_args;
2078 int ret;
2079
Chris Masone441d542009-01-05 16:57:23 -05002080 if (!capable(CAP_SYS_ADMIN))
2081 return -EPERM;
2082
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002083 mutex_lock(&root->fs_info->volume_mutex);
2084 if (root->fs_info->balance_ctl) {
2085 printk(KERN_INFO "btrfs: balance in progress\n");
2086 ret = -EINVAL;
2087 goto out;
2088 }
2089
Li Zefandae7b662009-04-08 15:06:54 +08002090 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002091 if (IS_ERR(vol_args)) {
2092 ret = PTR_ERR(vol_args);
2093 goto out;
2094 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002095
Mark Fasheh5516e592008-07-24 12:20:14 -04002096 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002097 ret = btrfs_init_new_device(root, vol_args->name);
2098
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002099 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002100out:
2101 mutex_unlock(&root->fs_info->volume_mutex);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002102 return ret;
2103}
2104
Christoph Hellwigb2950862008-12-02 09:54:17 -05002105static long btrfs_ioctl_rm_dev(struct btrfs_root *root, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002106{
2107 struct btrfs_ioctl_vol_args *vol_args;
2108 int ret;
2109
Chris Masone441d542009-01-05 16:57:23 -05002110 if (!capable(CAP_SYS_ADMIN))
2111 return -EPERM;
2112
Yan Zhengc146afa2008-11-12 14:34:12 -05002113 if (root->fs_info->sb->s_flags & MS_RDONLY)
2114 return -EROFS;
2115
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002116 mutex_lock(&root->fs_info->volume_mutex);
2117 if (root->fs_info->balance_ctl) {
2118 printk(KERN_INFO "btrfs: balance in progress\n");
2119 ret = -EINVAL;
2120 goto out;
2121 }
2122
Li Zefandae7b662009-04-08 15:06:54 +08002123 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002124 if (IS_ERR(vol_args)) {
2125 ret = PTR_ERR(vol_args);
2126 goto out;
2127 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002128
Mark Fasheh5516e592008-07-24 12:20:14 -04002129 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002130 ret = btrfs_rm_device(root, vol_args->name);
2131
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002132 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002133out:
2134 mutex_unlock(&root->fs_info->volume_mutex);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002135 return ret;
2136}
2137
Jan Schmidt475f6382011-03-11 15:41:01 +01002138static long btrfs_ioctl_fs_info(struct btrfs_root *root, void __user *arg)
2139{
Li Zefan027ed2f2011-06-08 08:27:56 +00002140 struct btrfs_ioctl_fs_info_args *fi_args;
Jan Schmidt475f6382011-03-11 15:41:01 +01002141 struct btrfs_device *device;
2142 struct btrfs_device *next;
2143 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
Li Zefan027ed2f2011-06-08 08:27:56 +00002144 int ret = 0;
Jan Schmidt475f6382011-03-11 15:41:01 +01002145
2146 if (!capable(CAP_SYS_ADMIN))
2147 return -EPERM;
2148
Li Zefan027ed2f2011-06-08 08:27:56 +00002149 fi_args = kzalloc(sizeof(*fi_args), GFP_KERNEL);
2150 if (!fi_args)
2151 return -ENOMEM;
2152
2153 fi_args->num_devices = fs_devices->num_devices;
2154 memcpy(&fi_args->fsid, root->fs_info->fsid, sizeof(fi_args->fsid));
Jan Schmidt475f6382011-03-11 15:41:01 +01002155
2156 mutex_lock(&fs_devices->device_list_mutex);
2157 list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) {
Li Zefan027ed2f2011-06-08 08:27:56 +00002158 if (device->devid > fi_args->max_id)
2159 fi_args->max_id = device->devid;
Jan Schmidt475f6382011-03-11 15:41:01 +01002160 }
2161 mutex_unlock(&fs_devices->device_list_mutex);
2162
Li Zefan027ed2f2011-06-08 08:27:56 +00002163 if (copy_to_user(arg, fi_args, sizeof(*fi_args)))
2164 ret = -EFAULT;
Jan Schmidt475f6382011-03-11 15:41:01 +01002165
Li Zefan027ed2f2011-06-08 08:27:56 +00002166 kfree(fi_args);
2167 return ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01002168}
2169
2170static long btrfs_ioctl_dev_info(struct btrfs_root *root, void __user *arg)
2171{
2172 struct btrfs_ioctl_dev_info_args *di_args;
2173 struct btrfs_device *dev;
2174 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
2175 int ret = 0;
2176 char *s_uuid = NULL;
2177 char empty_uuid[BTRFS_UUID_SIZE] = {0};
2178
2179 if (!capable(CAP_SYS_ADMIN))
2180 return -EPERM;
2181
2182 di_args = memdup_user(arg, sizeof(*di_args));
2183 if (IS_ERR(di_args))
2184 return PTR_ERR(di_args);
2185
2186 if (memcmp(empty_uuid, di_args->uuid, BTRFS_UUID_SIZE) != 0)
2187 s_uuid = di_args->uuid;
2188
2189 mutex_lock(&fs_devices->device_list_mutex);
2190 dev = btrfs_find_device(root, di_args->devid, s_uuid, NULL);
2191 mutex_unlock(&fs_devices->device_list_mutex);
2192
2193 if (!dev) {
2194 ret = -ENODEV;
2195 goto out;
2196 }
2197
2198 di_args->devid = dev->devid;
2199 di_args->bytes_used = dev->bytes_used;
2200 di_args->total_bytes = dev->total_bytes;
2201 memcpy(di_args->uuid, dev->uuid, sizeof(di_args->uuid));
2202 strncpy(di_args->path, dev->name, sizeof(di_args->path));
2203
2204out:
2205 if (ret == 0 && copy_to_user(arg, di_args, sizeof(*di_args)))
2206 ret = -EFAULT;
2207
2208 kfree(di_args);
2209 return ret;
2210}
2211
Yan, Zheng76dda932009-09-21 16:00:26 -04002212static noinline long btrfs_ioctl_clone(struct file *file, unsigned long srcfd,
2213 u64 off, u64 olen, u64 destoff)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002214{
2215 struct inode *inode = fdentry(file)->d_inode;
2216 struct btrfs_root *root = BTRFS_I(inode)->root;
2217 struct file *src_file;
2218 struct inode *src;
2219 struct btrfs_trans_handle *trans;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002220 struct btrfs_path *path;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002221 struct extent_buffer *leaf;
Yan Zhengae01a0a2008-08-04 23:23:47 -04002222 char *buf;
2223 struct btrfs_key key;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002224 u32 nritems;
2225 int slot;
Yan Zhengae01a0a2008-08-04 23:23:47 -04002226 int ret;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002227 u64 len = olen;
2228 u64 bs = root->fs_info->sb->s_blocksize;
2229 u64 hint_byte;
Chris Masond20f7042008-12-08 16:58:54 -05002230
Sage Weilc5c9cd42008-11-12 14:32:25 -05002231 /*
2232 * TODO:
2233 * - split compressed inline extents. annoying: we need to
2234 * decompress into destination's address_space (the file offset
2235 * may change, so source mapping won't do), then recompress (or
2236 * otherwise reinsert) a subrange.
2237 * - allow ranges within the same file to be cloned (provided
2238 * they don't overlap)?
2239 */
2240
Chris Masone441d542009-01-05 16:57:23 -05002241 /* the destination must be opened for writing */
Dan Rosenberg2ebc3462010-07-19 16:58:20 -04002242 if (!(file->f_mode & FMODE_WRITE) || (file->f_flags & O_APPEND))
Chris Masone441d542009-01-05 16:57:23 -05002243 return -EINVAL;
2244
Li Zefanb83cc962010-12-20 16:04:08 +08002245 if (btrfs_root_readonly(root))
2246 return -EROFS;
2247
Yan Zhengc146afa2008-11-12 14:34:12 -05002248 ret = mnt_want_write(file->f_path.mnt);
2249 if (ret)
2250 return ret;
2251
Sage Weilc5c9cd42008-11-12 14:32:25 -05002252 src_file = fget(srcfd);
Yan Zhengab67b7c2008-12-19 10:58:39 -05002253 if (!src_file) {
2254 ret = -EBADF;
2255 goto out_drop_write;
2256 }
Dan Rosenberg5dc64162010-05-15 11:27:37 -04002257
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002258 src = src_file->f_dentry->d_inode;
2259
Sage Weilc5c9cd42008-11-12 14:32:25 -05002260 ret = -EINVAL;
2261 if (src == inode)
2262 goto out_fput;
2263
Dan Rosenberg5dc64162010-05-15 11:27:37 -04002264 /* the src must be open for reading */
2265 if (!(src_file->f_mode & FMODE_READ))
2266 goto out_fput;
2267
Li Zefan0e7b8242011-09-18 10:20:46 -04002268 /* don't make the dst file partly checksummed */
2269 if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
2270 (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM))
2271 goto out_fput;
2272
Yan Zhengae01a0a2008-08-04 23:23:47 -04002273 ret = -EISDIR;
2274 if (S_ISDIR(src->i_mode) || S_ISDIR(inode->i_mode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002275 goto out_fput;
2276
Yan Zhengae01a0a2008-08-04 23:23:47 -04002277 ret = -EXDEV;
2278 if (src->i_sb != inode->i_sb || BTRFS_I(src)->root != root)
2279 goto out_fput;
2280
2281 ret = -ENOMEM;
2282 buf = vmalloc(btrfs_level_size(root, 0));
2283 if (!buf)
2284 goto out_fput;
2285
2286 path = btrfs_alloc_path();
2287 if (!path) {
2288 vfree(buf);
2289 goto out_fput;
2290 }
2291 path->reada = 2;
2292
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002293 if (inode < src) {
Sage Weilfccdae42010-10-29 15:37:33 -04002294 mutex_lock_nested(&inode->i_mutex, I_MUTEX_PARENT);
2295 mutex_lock_nested(&src->i_mutex, I_MUTEX_CHILD);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002296 } else {
Sage Weilfccdae42010-10-29 15:37:33 -04002297 mutex_lock_nested(&src->i_mutex, I_MUTEX_PARENT);
2298 mutex_lock_nested(&inode->i_mutex, I_MUTEX_CHILD);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002299 }
2300
Sage Weilc5c9cd42008-11-12 14:32:25 -05002301 /* determine range to clone */
2302 ret = -EINVAL;
Dan Rosenberg2ebc3462010-07-19 16:58:20 -04002303 if (off + len > src->i_size || off + len < off)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002304 goto out_unlock;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002305 if (len == 0)
2306 olen = len = src->i_size - off;
2307 /* if we extend to eof, continue to block boundary */
2308 if (off + len == src->i_size)
Li Zefan2a6b8da2010-11-19 01:36:10 +00002309 len = ALIGN(src->i_size, bs) - off;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002310
2311 /* verify the end result is block aligned */
Li Zefan2a6b8da2010-11-19 01:36:10 +00002312 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs) ||
2313 !IS_ALIGNED(destoff, bs))
Sage Weilc5c9cd42008-11-12 14:32:25 -05002314 goto out_unlock;
2315
Li Zefand525e8a2011-09-11 10:52:25 -04002316 if (destoff > inode->i_size) {
2317 ret = btrfs_cont_expand(inode, inode->i_size, destoff);
2318 if (ret)
2319 goto out_unlock;
2320 }
2321
Li Zefan71ef0782011-09-18 10:20:46 -04002322 /* truncate page cache pages from target inode range */
2323 truncate_inode_pages_range(&inode->i_data, destoff,
2324 PAGE_CACHE_ALIGN(destoff + len) - 1);
2325
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002326 /* do any pending delalloc/csum calc on src, one way or
2327 another, and lock file content */
2328 while (1) {
Zheng Yan31840ae2008-09-23 13:14:14 -04002329 struct btrfs_ordered_extent *ordered;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002330 lock_extent(&BTRFS_I(src)->io_tree, off, off+len, GFP_NOFS);
Sage Weil9a019192010-10-29 15:37:33 -04002331 ordered = btrfs_lookup_first_ordered_extent(src, off+len);
2332 if (!ordered &&
2333 !test_range_bit(&BTRFS_I(src)->io_tree, off, off+len,
2334 EXTENT_DELALLOC, 0, NULL))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002335 break;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002336 unlock_extent(&BTRFS_I(src)->io_tree, off, off+len, GFP_NOFS);
Yan Zhengae01a0a2008-08-04 23:23:47 -04002337 if (ordered)
2338 btrfs_put_ordered_extent(ordered);
Sage Weil9a019192010-10-29 15:37:33 -04002339 btrfs_wait_ordered_range(src, off, len);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002340 }
2341
Sage Weilc5c9cd42008-11-12 14:32:25 -05002342 /* clone data */
Li Zefan33345d012011-04-20 10:31:50 +08002343 key.objectid = btrfs_ino(src);
Yan Zhengae01a0a2008-08-04 23:23:47 -04002344 key.type = BTRFS_EXTENT_DATA_KEY;
2345 key.offset = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002346
2347 while (1) {
2348 /*
2349 * note the key will change type as we walk through the
2350 * tree.
2351 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04002352 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002353 if (ret < 0)
2354 goto out;
2355
Yan Zhengae01a0a2008-08-04 23:23:47 -04002356 nritems = btrfs_header_nritems(path->nodes[0]);
2357 if (path->slots[0] >= nritems) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002358 ret = btrfs_next_leaf(root, path);
2359 if (ret < 0)
2360 goto out;
2361 if (ret > 0)
2362 break;
Yan Zhengae01a0a2008-08-04 23:23:47 -04002363 nritems = btrfs_header_nritems(path->nodes[0]);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002364 }
2365 leaf = path->nodes[0];
2366 slot = path->slots[0];
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002367
Yan Zhengae01a0a2008-08-04 23:23:47 -04002368 btrfs_item_key_to_cpu(leaf, &key, slot);
Chris Masond20f7042008-12-08 16:58:54 -05002369 if (btrfs_key_type(&key) > BTRFS_EXTENT_DATA_KEY ||
Li Zefan33345d012011-04-20 10:31:50 +08002370 key.objectid != btrfs_ino(src))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002371 break;
2372
Sage Weilc5c9cd42008-11-12 14:32:25 -05002373 if (btrfs_key_type(&key) == BTRFS_EXTENT_DATA_KEY) {
2374 struct btrfs_file_extent_item *extent;
2375 int type;
Zheng Yan31840ae2008-09-23 13:14:14 -04002376 u32 size;
2377 struct btrfs_key new_key;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002378 u64 disko = 0, diskl = 0;
2379 u64 datao = 0, datal = 0;
2380 u8 comp;
Sage Weilb5384d42010-06-12 22:31:14 +00002381 u64 endoff;
Zheng Yan31840ae2008-09-23 13:14:14 -04002382
2383 size = btrfs_item_size_nr(leaf, slot);
2384 read_extent_buffer(leaf, buf,
2385 btrfs_item_ptr_offset(leaf, slot),
2386 size);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002387
2388 extent = btrfs_item_ptr(leaf, slot,
2389 struct btrfs_file_extent_item);
2390 comp = btrfs_file_extent_compression(leaf, extent);
2391 type = btrfs_file_extent_type(leaf, extent);
Chris Masonc8a894d2009-06-27 21:07:03 -04002392 if (type == BTRFS_FILE_EXTENT_REG ||
2393 type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masond3977122009-01-05 21:25:51 -05002394 disko = btrfs_file_extent_disk_bytenr(leaf,
2395 extent);
2396 diskl = btrfs_file_extent_disk_num_bytes(leaf,
2397 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002398 datao = btrfs_file_extent_offset(leaf, extent);
Chris Masond3977122009-01-05 21:25:51 -05002399 datal = btrfs_file_extent_num_bytes(leaf,
2400 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002401 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
2402 /* take upper bound, may be compressed */
2403 datal = btrfs_file_extent_ram_bytes(leaf,
2404 extent);
2405 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002406 btrfs_release_path(path);
Zheng Yan31840ae2008-09-23 13:14:14 -04002407
Sage Weil050006a2010-10-29 15:37:33 -04002408 if (key.offset + datal <= off ||
Sage Weilc5c9cd42008-11-12 14:32:25 -05002409 key.offset >= off+len)
2410 goto next;
2411
Zheng Yan31840ae2008-09-23 13:14:14 -04002412 memcpy(&new_key, &key, sizeof(new_key));
Li Zefan33345d012011-04-20 10:31:50 +08002413 new_key.objectid = btrfs_ino(inode);
Li Zefan4d728ec2011-01-26 14:10:43 +08002414 if (off <= key.offset)
2415 new_key.offset = key.offset + destoff - off;
2416 else
2417 new_key.offset = destoff;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002418
Sage Weilb6f34092011-09-20 14:48:51 -04002419 /*
2420 * 1 - adjusting old extent (we may have to split it)
2421 * 1 - add new extent
2422 * 1 - inode update
2423 */
2424 trans = btrfs_start_transaction(root, 3);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002425 if (IS_ERR(trans)) {
2426 ret = PTR_ERR(trans);
2427 goto out;
2428 }
2429
Chris Masonc8a894d2009-06-27 21:07:03 -04002430 if (type == BTRFS_FILE_EXTENT_REG ||
2431 type == BTRFS_FILE_EXTENT_PREALLOC) {
Li Zefand72c0842011-09-11 10:52:25 -04002432 /*
2433 * a | --- range to clone ---| b
2434 * | ------------- extent ------------- |
2435 */
2436
2437 /* substract range b */
2438 if (key.offset + datal > off + len)
2439 datal = off + len - key.offset;
2440
2441 /* substract range a */
Yan, Zhenga22285a2010-05-16 10:48:46 -04002442 if (off > key.offset) {
2443 datao += off - key.offset;
2444 datal -= off - key.offset;
2445 }
2446
Yan, Zhenga22285a2010-05-16 10:48:46 -04002447 ret = btrfs_drop_extents(trans, inode,
2448 new_key.offset,
2449 new_key.offset + datal,
2450 &hint_byte, 1);
2451 BUG_ON(ret);
2452
Sage Weilc5c9cd42008-11-12 14:32:25 -05002453 ret = btrfs_insert_empty_item(trans, root, path,
2454 &new_key, size);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002455 BUG_ON(ret);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002456
2457 leaf = path->nodes[0];
2458 slot = path->slots[0];
2459 write_extent_buffer(leaf, buf,
2460 btrfs_item_ptr_offset(leaf, slot),
2461 size);
2462
2463 extent = btrfs_item_ptr(leaf, slot,
2464 struct btrfs_file_extent_item);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002465
Sage Weilc5c9cd42008-11-12 14:32:25 -05002466 /* disko == 0 means it's a hole */
2467 if (!disko)
2468 datao = 0;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002469
2470 btrfs_set_file_extent_offset(leaf, extent,
2471 datao);
2472 btrfs_set_file_extent_num_bytes(leaf, extent,
2473 datal);
2474 if (disko) {
2475 inode_add_bytes(inode, datal);
2476 ret = btrfs_inc_extent_ref(trans, root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002477 disko, diskl, 0,
2478 root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08002479 btrfs_ino(inode),
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002480 new_key.offset - datao,
2481 0);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002482 BUG_ON(ret);
2483 }
2484 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
2485 u64 skip = 0;
2486 u64 trim = 0;
2487 if (off > key.offset) {
2488 skip = off - key.offset;
2489 new_key.offset += skip;
2490 }
Chris Masond3977122009-01-05 21:25:51 -05002491
Sage Weilc5c9cd42008-11-12 14:32:25 -05002492 if (key.offset + datal > off+len)
2493 trim = key.offset + datal - (off+len);
Chris Masond3977122009-01-05 21:25:51 -05002494
Sage Weilc5c9cd42008-11-12 14:32:25 -05002495 if (comp && (skip || trim)) {
Sage Weilc5c9cd42008-11-12 14:32:25 -05002496 ret = -EINVAL;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002497 btrfs_end_transaction(trans, root);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002498 goto out;
2499 }
2500 size -= skip + trim;
2501 datal -= skip + trim;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002502
2503 ret = btrfs_drop_extents(trans, inode,
2504 new_key.offset,
2505 new_key.offset + datal,
2506 &hint_byte, 1);
2507 BUG_ON(ret);
2508
Sage Weilc5c9cd42008-11-12 14:32:25 -05002509 ret = btrfs_insert_empty_item(trans, root, path,
2510 &new_key, size);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002511 BUG_ON(ret);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002512
2513 if (skip) {
Chris Masond3977122009-01-05 21:25:51 -05002514 u32 start =
2515 btrfs_file_extent_calc_inline_size(0);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002516 memmove(buf+start, buf+start+skip,
2517 datal);
2518 }
2519
2520 leaf = path->nodes[0];
2521 slot = path->slots[0];
2522 write_extent_buffer(leaf, buf,
2523 btrfs_item_ptr_offset(leaf, slot),
2524 size);
2525 inode_add_bytes(inode, datal);
2526 }
2527
2528 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02002529 btrfs_release_path(path);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002530
Yan, Zhenga22285a2010-05-16 10:48:46 -04002531 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
Sage Weilb5384d42010-06-12 22:31:14 +00002532
2533 /*
2534 * we round up to the block size at eof when
2535 * determining which extents to clone above,
2536 * but shouldn't round up the file size
2537 */
2538 endoff = new_key.offset + datal;
Li Zefan5f3888f2010-11-19 01:36:34 +00002539 if (endoff > destoff+olen)
2540 endoff = destoff+olen;
Sage Weilb5384d42010-06-12 22:31:14 +00002541 if (endoff > inode->i_size)
2542 btrfs_i_size_write(inode, endoff);
2543
Yan, Zhenga22285a2010-05-16 10:48:46 -04002544 ret = btrfs_update_inode(trans, root, inode);
2545 BUG_ON(ret);
2546 btrfs_end_transaction(trans, root);
2547 }
Chris Masond3977122009-01-05 21:25:51 -05002548next:
David Sterbab3b4aa72011-04-21 01:20:15 +02002549 btrfs_release_path(path);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002550 key.offset++;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002551 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002552 ret = 0;
2553out:
David Sterbab3b4aa72011-04-21 01:20:15 +02002554 btrfs_release_path(path);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002555 unlock_extent(&BTRFS_I(src)->io_tree, off, off+len, GFP_NOFS);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002556out_unlock:
2557 mutex_unlock(&src->i_mutex);
2558 mutex_unlock(&inode->i_mutex);
Yan Zhengae01a0a2008-08-04 23:23:47 -04002559 vfree(buf);
2560 btrfs_free_path(path);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002561out_fput:
2562 fput(src_file);
Yan Zhengab67b7c2008-12-19 10:58:39 -05002563out_drop_write:
2564 mnt_drop_write(file->f_path.mnt);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002565 return ret;
2566}
2567
Christoph Hellwig7a865e82008-12-02 09:52:24 -05002568static long btrfs_ioctl_clone_range(struct file *file, void __user *argp)
Sage Weilc5c9cd42008-11-12 14:32:25 -05002569{
2570 struct btrfs_ioctl_clone_range_args args;
2571
Christoph Hellwig7a865e82008-12-02 09:52:24 -05002572 if (copy_from_user(&args, argp, sizeof(args)))
Sage Weilc5c9cd42008-11-12 14:32:25 -05002573 return -EFAULT;
2574 return btrfs_ioctl_clone(file, args.src_fd, args.src_offset,
2575 args.src_length, args.dest_offset);
2576}
2577
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002578/*
2579 * there are many ways the trans_start and trans_end ioctls can lead
2580 * to deadlocks. They should only be used by applications that
2581 * basically own the machine, and have a very in depth understanding
2582 * of all the possible deadlocks and enospc problems.
2583 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05002584static long btrfs_ioctl_trans_start(struct file *file)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002585{
2586 struct inode *inode = fdentry(file)->d_inode;
2587 struct btrfs_root *root = BTRFS_I(inode)->root;
2588 struct btrfs_trans_handle *trans;
Sage Weil1ab86ae2009-09-29 18:38:44 -04002589 int ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002590
Sage Weil1ab86ae2009-09-29 18:38:44 -04002591 ret = -EPERM;
Christoph Hellwigdf5b5522008-06-11 21:53:58 -04002592 if (!capable(CAP_SYS_ADMIN))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002593 goto out;
Sage Weil1ab86ae2009-09-29 18:38:44 -04002594
2595 ret = -EINPROGRESS;
2596 if (file->private_data)
2597 goto out;
Sage Weil9ca9ee02008-08-04 10:41:27 -04002598
Li Zefanb83cc962010-12-20 16:04:08 +08002599 ret = -EROFS;
2600 if (btrfs_root_readonly(root))
2601 goto out;
2602
Yan Zhengc146afa2008-11-12 14:34:12 -05002603 ret = mnt_want_write(file->f_path.mnt);
2604 if (ret)
2605 goto out;
2606
Josef Bacika4abeea2011-04-11 17:25:13 -04002607 atomic_inc(&root->fs_info->open_ioctl_trans);
Sage Weil9ca9ee02008-08-04 10:41:27 -04002608
Sage Weil1ab86ae2009-09-29 18:38:44 -04002609 ret = -ENOMEM;
Josef Bacik7a7eaa42011-04-13 12:54:33 -04002610 trans = btrfs_start_ioctl_transaction(root);
Tsutomu Itohabd30bb2011-01-24 00:57:10 +00002611 if (IS_ERR(trans))
Sage Weil1ab86ae2009-09-29 18:38:44 -04002612 goto out_drop;
2613
2614 file->private_data = trans;
2615 return 0;
2616
2617out_drop:
Josef Bacika4abeea2011-04-11 17:25:13 -04002618 atomic_dec(&root->fs_info->open_ioctl_trans);
Sage Weil1ab86ae2009-09-29 18:38:44 -04002619 mnt_drop_write(file->f_path.mnt);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002620out:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002621 return ret;
2622}
2623
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002624static long btrfs_ioctl_default_subvol(struct file *file, void __user *argp)
2625{
2626 struct inode *inode = fdentry(file)->d_inode;
2627 struct btrfs_root *root = BTRFS_I(inode)->root;
2628 struct btrfs_root *new_root;
2629 struct btrfs_dir_item *di;
2630 struct btrfs_trans_handle *trans;
2631 struct btrfs_path *path;
2632 struct btrfs_key location;
2633 struct btrfs_disk_key disk_key;
2634 struct btrfs_super_block *disk_super;
2635 u64 features;
2636 u64 objectid = 0;
2637 u64 dir_id;
2638
2639 if (!capable(CAP_SYS_ADMIN))
2640 return -EPERM;
2641
2642 if (copy_from_user(&objectid, argp, sizeof(objectid)))
2643 return -EFAULT;
2644
2645 if (!objectid)
2646 objectid = root->root_key.objectid;
2647
2648 location.objectid = objectid;
2649 location.type = BTRFS_ROOT_ITEM_KEY;
2650 location.offset = (u64)-1;
2651
2652 new_root = btrfs_read_fs_root_no_name(root->fs_info, &location);
2653 if (IS_ERR(new_root))
2654 return PTR_ERR(new_root);
2655
2656 if (btrfs_root_refs(&new_root->root_item) == 0)
2657 return -ENOENT;
2658
2659 path = btrfs_alloc_path();
2660 if (!path)
2661 return -ENOMEM;
2662 path->leave_spinning = 1;
2663
2664 trans = btrfs_start_transaction(root, 1);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002665 if (IS_ERR(trans)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002666 btrfs_free_path(path);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002667 return PTR_ERR(trans);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002668 }
2669
David Sterba6c417612011-04-13 15:41:04 +02002670 dir_id = btrfs_super_root_dir(root->fs_info->super_copy);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002671 di = btrfs_lookup_dir_item(trans, root->fs_info->tree_root, path,
2672 dir_id, "default", 7, 1);
Dan Carpentercf1e99a2010-05-29 09:47:24 +00002673 if (IS_ERR_OR_NULL(di)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002674 btrfs_free_path(path);
2675 btrfs_end_transaction(trans, root);
2676 printk(KERN_ERR "Umm, you don't have the default dir item, "
2677 "this isn't going to work\n");
2678 return -ENOENT;
2679 }
2680
2681 btrfs_cpu_key_to_disk(&disk_key, &new_root->root_key);
2682 btrfs_set_dir_item_key(path->nodes[0], di, &disk_key);
2683 btrfs_mark_buffer_dirty(path->nodes[0]);
2684 btrfs_free_path(path);
2685
David Sterba6c417612011-04-13 15:41:04 +02002686 disk_super = root->fs_info->super_copy;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002687 features = btrfs_super_incompat_flags(disk_super);
2688 if (!(features & BTRFS_FEATURE_INCOMPAT_DEFAULT_SUBVOL)) {
2689 features |= BTRFS_FEATURE_INCOMPAT_DEFAULT_SUBVOL;
2690 btrfs_set_super_incompat_flags(disk_super, features);
2691 }
2692 btrfs_end_transaction(trans, root);
2693
2694 return 0;
2695}
2696
Josef Bacikbf5fc092010-09-29 11:22:36 -04002697static void get_block_group_info(struct list_head *groups_list,
2698 struct btrfs_ioctl_space_info *space)
2699{
2700 struct btrfs_block_group_cache *block_group;
2701
2702 space->total_bytes = 0;
2703 space->used_bytes = 0;
2704 space->flags = 0;
2705 list_for_each_entry(block_group, groups_list, list) {
2706 space->flags = block_group->flags;
2707 space->total_bytes += block_group->key.offset;
2708 space->used_bytes +=
2709 btrfs_block_group_used(&block_group->item);
2710 }
2711}
2712
Josef Bacik1406e432010-01-13 18:19:06 +00002713long btrfs_ioctl_space_info(struct btrfs_root *root, void __user *arg)
2714{
2715 struct btrfs_ioctl_space_args space_args;
2716 struct btrfs_ioctl_space_info space;
2717 struct btrfs_ioctl_space_info *dest;
Chris Mason7fde62b2010-03-16 15:40:10 -04002718 struct btrfs_ioctl_space_info *dest_orig;
Daniel J Blueman13f26962011-04-11 15:56:31 +00002719 struct btrfs_ioctl_space_info __user *user_dest;
Josef Bacik1406e432010-01-13 18:19:06 +00002720 struct btrfs_space_info *info;
Josef Bacikbf5fc092010-09-29 11:22:36 -04002721 u64 types[] = {BTRFS_BLOCK_GROUP_DATA,
2722 BTRFS_BLOCK_GROUP_SYSTEM,
2723 BTRFS_BLOCK_GROUP_METADATA,
2724 BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA};
2725 int num_types = 4;
Chris Mason7fde62b2010-03-16 15:40:10 -04002726 int alloc_size;
Josef Bacik1406e432010-01-13 18:19:06 +00002727 int ret = 0;
Dan Rosenberg51788b12011-02-14 16:04:23 -05002728 u64 slot_count = 0;
Josef Bacikbf5fc092010-09-29 11:22:36 -04002729 int i, c;
Josef Bacik1406e432010-01-13 18:19:06 +00002730
2731 if (copy_from_user(&space_args,
2732 (struct btrfs_ioctl_space_args __user *)arg,
2733 sizeof(space_args)))
2734 return -EFAULT;
2735
Josef Bacikbf5fc092010-09-29 11:22:36 -04002736 for (i = 0; i < num_types; i++) {
2737 struct btrfs_space_info *tmp;
2738
2739 info = NULL;
2740 rcu_read_lock();
2741 list_for_each_entry_rcu(tmp, &root->fs_info->space_info,
2742 list) {
2743 if (tmp->flags == types[i]) {
2744 info = tmp;
2745 break;
2746 }
2747 }
2748 rcu_read_unlock();
2749
2750 if (!info)
2751 continue;
2752
2753 down_read(&info->groups_sem);
2754 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
2755 if (!list_empty(&info->block_groups[c]))
2756 slot_count++;
2757 }
2758 up_read(&info->groups_sem);
2759 }
Josef Bacik1406e432010-01-13 18:19:06 +00002760
Chris Mason7fde62b2010-03-16 15:40:10 -04002761 /* space_slots == 0 means they are asking for a count */
2762 if (space_args.space_slots == 0) {
2763 space_args.total_spaces = slot_count;
2764 goto out;
2765 }
Josef Bacikbf5fc092010-09-29 11:22:36 -04002766
Dan Rosenberg51788b12011-02-14 16:04:23 -05002767 slot_count = min_t(u64, space_args.space_slots, slot_count);
Josef Bacikbf5fc092010-09-29 11:22:36 -04002768
Chris Mason7fde62b2010-03-16 15:40:10 -04002769 alloc_size = sizeof(*dest) * slot_count;
Josef Bacikbf5fc092010-09-29 11:22:36 -04002770
Chris Mason7fde62b2010-03-16 15:40:10 -04002771 /* we generally have at most 6 or so space infos, one for each raid
2772 * level. So, a whole page should be more than enough for everyone
2773 */
2774 if (alloc_size > PAGE_CACHE_SIZE)
2775 return -ENOMEM;
2776
2777 space_args.total_spaces = 0;
2778 dest = kmalloc(alloc_size, GFP_NOFS);
2779 if (!dest)
2780 return -ENOMEM;
2781 dest_orig = dest;
2782
2783 /* now we have a buffer to copy into */
Josef Bacikbf5fc092010-09-29 11:22:36 -04002784 for (i = 0; i < num_types; i++) {
2785 struct btrfs_space_info *tmp;
Chris Mason7fde62b2010-03-16 15:40:10 -04002786
Dan Rosenberg51788b12011-02-14 16:04:23 -05002787 if (!slot_count)
2788 break;
2789
Josef Bacikbf5fc092010-09-29 11:22:36 -04002790 info = NULL;
2791 rcu_read_lock();
2792 list_for_each_entry_rcu(tmp, &root->fs_info->space_info,
2793 list) {
2794 if (tmp->flags == types[i]) {
2795 info = tmp;
2796 break;
2797 }
2798 }
2799 rcu_read_unlock();
Chris Mason7fde62b2010-03-16 15:40:10 -04002800
Josef Bacikbf5fc092010-09-29 11:22:36 -04002801 if (!info)
2802 continue;
2803 down_read(&info->groups_sem);
2804 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
2805 if (!list_empty(&info->block_groups[c])) {
2806 get_block_group_info(&info->block_groups[c],
2807 &space);
2808 memcpy(dest, &space, sizeof(space));
2809 dest++;
2810 space_args.total_spaces++;
Dan Rosenberg51788b12011-02-14 16:04:23 -05002811 slot_count--;
Josef Bacikbf5fc092010-09-29 11:22:36 -04002812 }
Dan Rosenberg51788b12011-02-14 16:04:23 -05002813 if (!slot_count)
2814 break;
Josef Bacikbf5fc092010-09-29 11:22:36 -04002815 }
2816 up_read(&info->groups_sem);
Josef Bacik1406e432010-01-13 18:19:06 +00002817 }
Josef Bacik1406e432010-01-13 18:19:06 +00002818
Chris Mason7fde62b2010-03-16 15:40:10 -04002819 user_dest = (struct btrfs_ioctl_space_info *)
2820 (arg + sizeof(struct btrfs_ioctl_space_args));
2821
2822 if (copy_to_user(user_dest, dest_orig, alloc_size))
2823 ret = -EFAULT;
2824
2825 kfree(dest_orig);
2826out:
2827 if (ret == 0 && copy_to_user(arg, &space_args, sizeof(space_args)))
Josef Bacik1406e432010-01-13 18:19:06 +00002828 ret = -EFAULT;
2829
2830 return ret;
2831}
2832
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002833/*
2834 * there are many ways the trans_start and trans_end ioctls can lead
2835 * to deadlocks. They should only be used by applications that
2836 * basically own the machine, and have a very in depth understanding
2837 * of all the possible deadlocks and enospc problems.
2838 */
2839long btrfs_ioctl_trans_end(struct file *file)
2840{
2841 struct inode *inode = fdentry(file)->d_inode;
2842 struct btrfs_root *root = BTRFS_I(inode)->root;
2843 struct btrfs_trans_handle *trans;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002844
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002845 trans = file->private_data;
Sage Weil1ab86ae2009-09-29 18:38:44 -04002846 if (!trans)
2847 return -EINVAL;
Christoph Hellwigb2141072008-09-05 16:43:31 -04002848 file->private_data = NULL;
Sage Weil9ca9ee02008-08-04 10:41:27 -04002849
Sage Weil1ab86ae2009-09-29 18:38:44 -04002850 btrfs_end_transaction(trans, root);
2851
Josef Bacika4abeea2011-04-11 17:25:13 -04002852 atomic_dec(&root->fs_info->open_ioctl_trans);
Sage Weil9ca9ee02008-08-04 10:41:27 -04002853
Sage Weilcfc8ea82008-12-11 16:30:06 -05002854 mnt_drop_write(file->f_path.mnt);
Sage Weil1ab86ae2009-09-29 18:38:44 -04002855 return 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002856}
2857
Sage Weil46204592010-10-29 15:41:32 -04002858static noinline long btrfs_ioctl_start_sync(struct file *file, void __user *argp)
2859{
2860 struct btrfs_root *root = BTRFS_I(file->f_dentry->d_inode)->root;
2861 struct btrfs_trans_handle *trans;
2862 u64 transid;
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00002863 int ret;
Sage Weil46204592010-10-29 15:41:32 -04002864
2865 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002866 if (IS_ERR(trans))
2867 return PTR_ERR(trans);
Sage Weil46204592010-10-29 15:41:32 -04002868 transid = trans->transid;
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00002869 ret = btrfs_commit_transaction_async(trans, root, 0);
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00002870 if (ret) {
2871 btrfs_end_transaction(trans, root);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00002872 return ret;
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00002873 }
Sage Weil46204592010-10-29 15:41:32 -04002874
2875 if (argp)
2876 if (copy_to_user(argp, &transid, sizeof(transid)))
2877 return -EFAULT;
2878 return 0;
2879}
2880
2881static noinline long btrfs_ioctl_wait_sync(struct file *file, void __user *argp)
2882{
2883 struct btrfs_root *root = BTRFS_I(file->f_dentry->d_inode)->root;
2884 u64 transid;
2885
2886 if (argp) {
2887 if (copy_from_user(&transid, argp, sizeof(transid)))
2888 return -EFAULT;
2889 } else {
2890 transid = 0; /* current trans */
2891 }
2892 return btrfs_wait_for_commit(root, transid);
2893}
2894
Jan Schmidt475f6382011-03-11 15:41:01 +01002895static long btrfs_ioctl_scrub(struct btrfs_root *root, void __user *arg)
2896{
2897 int ret;
2898 struct btrfs_ioctl_scrub_args *sa;
2899
2900 if (!capable(CAP_SYS_ADMIN))
2901 return -EPERM;
2902
2903 sa = memdup_user(arg, sizeof(*sa));
2904 if (IS_ERR(sa))
2905 return PTR_ERR(sa);
2906
2907 ret = btrfs_scrub_dev(root, sa->devid, sa->start, sa->end,
Arne Jansen86287642011-03-23 16:34:19 +01002908 &sa->progress, sa->flags & BTRFS_SCRUB_READONLY);
Jan Schmidt475f6382011-03-11 15:41:01 +01002909
2910 if (copy_to_user(arg, sa, sizeof(*sa)))
2911 ret = -EFAULT;
2912
2913 kfree(sa);
2914 return ret;
2915}
2916
2917static long btrfs_ioctl_scrub_cancel(struct btrfs_root *root, void __user *arg)
2918{
2919 if (!capable(CAP_SYS_ADMIN))
2920 return -EPERM;
2921
2922 return btrfs_scrub_cancel(root);
2923}
2924
2925static long btrfs_ioctl_scrub_progress(struct btrfs_root *root,
2926 void __user *arg)
2927{
2928 struct btrfs_ioctl_scrub_args *sa;
2929 int ret;
2930
2931 if (!capable(CAP_SYS_ADMIN))
2932 return -EPERM;
2933
2934 sa = memdup_user(arg, sizeof(*sa));
2935 if (IS_ERR(sa))
2936 return PTR_ERR(sa);
2937
2938 ret = btrfs_scrub_progress(root, sa->devid, &sa->progress);
2939
2940 if (copy_to_user(arg, sa, sizeof(*sa)))
2941 ret = -EFAULT;
2942
2943 kfree(sa);
2944 return ret;
2945}
2946
Jan Schmidtd7728c92011-07-07 16:48:38 +02002947static long btrfs_ioctl_ino_to_path(struct btrfs_root *root, void __user *arg)
2948{
2949 int ret = 0;
2950 int i;
Chris Mason740c3d22011-11-02 15:48:34 -04002951 u64 rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02002952 int size;
Chris Mason806468f2011-11-06 03:07:10 -05002953 struct btrfs_ioctl_ino_path_args *ipa = NULL;
Jan Schmidtd7728c92011-07-07 16:48:38 +02002954 struct inode_fs_paths *ipath = NULL;
2955 struct btrfs_path *path;
2956
2957 if (!capable(CAP_SYS_ADMIN))
2958 return -EPERM;
2959
2960 path = btrfs_alloc_path();
2961 if (!path) {
2962 ret = -ENOMEM;
2963 goto out;
2964 }
2965
2966 ipa = memdup_user(arg, sizeof(*ipa));
2967 if (IS_ERR(ipa)) {
2968 ret = PTR_ERR(ipa);
2969 ipa = NULL;
2970 goto out;
2971 }
2972
2973 size = min_t(u32, ipa->size, 4096);
2974 ipath = init_ipath(size, root, path);
2975 if (IS_ERR(ipath)) {
2976 ret = PTR_ERR(ipath);
2977 ipath = NULL;
2978 goto out;
2979 }
2980
2981 ret = paths_from_inode(ipa->inum, ipath);
2982 if (ret < 0)
2983 goto out;
2984
2985 for (i = 0; i < ipath->fspath->elem_cnt; ++i) {
Jeff Mahoney745c4d82011-11-20 07:31:57 -05002986 rel_ptr = ipath->fspath->val[i] -
2987 (u64)(unsigned long)ipath->fspath->val;
Chris Mason740c3d22011-11-02 15:48:34 -04002988 ipath->fspath->val[i] = rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02002989 }
2990
Jeff Mahoney745c4d82011-11-20 07:31:57 -05002991 ret = copy_to_user((void *)(unsigned long)ipa->fspath,
2992 (void *)(unsigned long)ipath->fspath, size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02002993 if (ret) {
2994 ret = -EFAULT;
2995 goto out;
2996 }
2997
2998out:
2999 btrfs_free_path(path);
3000 free_ipath(ipath);
3001 kfree(ipa);
3002
3003 return ret;
3004}
3005
3006static int build_ino_list(u64 inum, u64 offset, u64 root, void *ctx)
3007{
3008 struct btrfs_data_container *inodes = ctx;
3009 const size_t c = 3 * sizeof(u64);
3010
3011 if (inodes->bytes_left >= c) {
3012 inodes->bytes_left -= c;
3013 inodes->val[inodes->elem_cnt] = inum;
3014 inodes->val[inodes->elem_cnt + 1] = offset;
3015 inodes->val[inodes->elem_cnt + 2] = root;
3016 inodes->elem_cnt += 3;
3017 } else {
3018 inodes->bytes_missing += c - inodes->bytes_left;
3019 inodes->bytes_left = 0;
3020 inodes->elem_missed += 3;
3021 }
3022
3023 return 0;
3024}
3025
3026static long btrfs_ioctl_logical_to_ino(struct btrfs_root *root,
3027 void __user *arg)
3028{
3029 int ret = 0;
3030 int size;
Jan Schmidt4692cf52011-12-02 14:56:41 +01003031 u64 extent_item_pos;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003032 struct btrfs_ioctl_logical_ino_args *loi;
3033 struct btrfs_data_container *inodes = NULL;
3034 struct btrfs_path *path = NULL;
3035 struct btrfs_key key;
3036
3037 if (!capable(CAP_SYS_ADMIN))
3038 return -EPERM;
3039
3040 loi = memdup_user(arg, sizeof(*loi));
3041 if (IS_ERR(loi)) {
3042 ret = PTR_ERR(loi);
3043 loi = NULL;
3044 goto out;
3045 }
3046
3047 path = btrfs_alloc_path();
3048 if (!path) {
3049 ret = -ENOMEM;
3050 goto out;
3051 }
3052
3053 size = min_t(u32, loi->size, 4096);
3054 inodes = init_data_container(size);
3055 if (IS_ERR(inodes)) {
3056 ret = PTR_ERR(inodes);
3057 inodes = NULL;
3058 goto out;
3059 }
3060
3061 ret = extent_from_logical(root->fs_info, loi->logical, path, &key);
Jan Schmidt4692cf52011-12-02 14:56:41 +01003062 btrfs_release_path(path);
Jan Schmidtd7728c92011-07-07 16:48:38 +02003063
3064 if (ret & BTRFS_EXTENT_FLAG_TREE_BLOCK)
3065 ret = -ENOENT;
3066 if (ret < 0)
3067 goto out;
3068
Jan Schmidt4692cf52011-12-02 14:56:41 +01003069 extent_item_pos = loi->logical - key.objectid;
Jan Schmidt7a3ae2f2012-03-23 17:32:28 +01003070 ret = iterate_extent_inodes(root->fs_info, key.objectid,
3071 extent_item_pos, 0, build_ino_list,
Jan Schmidt4692cf52011-12-02 14:56:41 +01003072 inodes);
Jan Schmidtd7728c92011-07-07 16:48:38 +02003073
3074 if (ret < 0)
3075 goto out;
3076
Jeff Mahoney745c4d82011-11-20 07:31:57 -05003077 ret = copy_to_user((void *)(unsigned long)loi->inodes,
3078 (void *)(unsigned long)inodes, size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02003079 if (ret)
3080 ret = -EFAULT;
3081
3082out:
3083 btrfs_free_path(path);
3084 kfree(inodes);
3085 kfree(loi);
3086
3087 return ret;
3088}
3089
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003090void update_ioctl_balance_args(struct btrfs_fs_info *fs_info, int lock,
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003091 struct btrfs_ioctl_balance_args *bargs)
3092{
3093 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
3094
3095 bargs->flags = bctl->flags;
3096
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003097 if (atomic_read(&fs_info->balance_running))
3098 bargs->state |= BTRFS_BALANCE_STATE_RUNNING;
3099 if (atomic_read(&fs_info->balance_pause_req))
3100 bargs->state |= BTRFS_BALANCE_STATE_PAUSE_REQ;
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003101 if (atomic_read(&fs_info->balance_cancel_req))
3102 bargs->state |= BTRFS_BALANCE_STATE_CANCEL_REQ;
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003103
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003104 memcpy(&bargs->data, &bctl->data, sizeof(bargs->data));
3105 memcpy(&bargs->meta, &bctl->meta, sizeof(bargs->meta));
3106 memcpy(&bargs->sys, &bctl->sys, sizeof(bargs->sys));
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003107
3108 if (lock) {
3109 spin_lock(&fs_info->balance_lock);
3110 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
3111 spin_unlock(&fs_info->balance_lock);
3112 } else {
3113 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
3114 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003115}
3116
3117static long btrfs_ioctl_balance(struct btrfs_root *root, void __user *arg)
3118{
3119 struct btrfs_fs_info *fs_info = root->fs_info;
3120 struct btrfs_ioctl_balance_args *bargs;
3121 struct btrfs_balance_control *bctl;
3122 int ret;
3123
3124 if (!capable(CAP_SYS_ADMIN))
3125 return -EPERM;
3126
3127 if (fs_info->sb->s_flags & MS_RDONLY)
3128 return -EROFS;
3129
3130 mutex_lock(&fs_info->volume_mutex);
3131 mutex_lock(&fs_info->balance_mutex);
3132
3133 if (arg) {
3134 bargs = memdup_user(arg, sizeof(*bargs));
3135 if (IS_ERR(bargs)) {
3136 ret = PTR_ERR(bargs);
3137 goto out;
3138 }
Ilya Dryomovde322262012-01-16 22:04:49 +02003139
3140 if (bargs->flags & BTRFS_BALANCE_RESUME) {
3141 if (!fs_info->balance_ctl) {
3142 ret = -ENOTCONN;
3143 goto out_bargs;
3144 }
3145
3146 bctl = fs_info->balance_ctl;
3147 spin_lock(&fs_info->balance_lock);
3148 bctl->flags |= BTRFS_BALANCE_RESUME;
3149 spin_unlock(&fs_info->balance_lock);
3150
3151 goto do_balance;
3152 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003153 } else {
3154 bargs = NULL;
3155 }
3156
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003157 if (fs_info->balance_ctl) {
3158 ret = -EINPROGRESS;
3159 goto out_bargs;
3160 }
3161
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003162 bctl = kzalloc(sizeof(*bctl), GFP_NOFS);
3163 if (!bctl) {
3164 ret = -ENOMEM;
3165 goto out_bargs;
3166 }
3167
3168 bctl->fs_info = fs_info;
3169 if (arg) {
3170 memcpy(&bctl->data, &bargs->data, sizeof(bctl->data));
3171 memcpy(&bctl->meta, &bargs->meta, sizeof(bctl->meta));
3172 memcpy(&bctl->sys, &bargs->sys, sizeof(bctl->sys));
3173
3174 bctl->flags = bargs->flags;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003175 } else {
3176 /* balance everything - no filters */
3177 bctl->flags |= BTRFS_BALANCE_TYPE_MASK;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003178 }
3179
Ilya Dryomovde322262012-01-16 22:04:49 +02003180do_balance:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003181 ret = btrfs_balance(bctl, bargs);
3182 /*
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003183 * bctl is freed in __cancel_balance or in free_fs_info if
3184 * restriper was paused all the way until unmount
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003185 */
3186 if (arg) {
3187 if (copy_to_user(arg, bargs, sizeof(*bargs)))
3188 ret = -EFAULT;
3189 }
3190
3191out_bargs:
3192 kfree(bargs);
3193out:
3194 mutex_unlock(&fs_info->balance_mutex);
3195 mutex_unlock(&fs_info->volume_mutex);
3196 return ret;
3197}
3198
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003199static long btrfs_ioctl_balance_ctl(struct btrfs_root *root, int cmd)
3200{
3201 if (!capable(CAP_SYS_ADMIN))
3202 return -EPERM;
3203
3204 switch (cmd) {
3205 case BTRFS_BALANCE_CTL_PAUSE:
3206 return btrfs_pause_balance(root->fs_info);
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003207 case BTRFS_BALANCE_CTL_CANCEL:
3208 return btrfs_cancel_balance(root->fs_info);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003209 }
3210
3211 return -EINVAL;
3212}
3213
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003214static long btrfs_ioctl_balance_progress(struct btrfs_root *root,
3215 void __user *arg)
3216{
3217 struct btrfs_fs_info *fs_info = root->fs_info;
3218 struct btrfs_ioctl_balance_args *bargs;
3219 int ret = 0;
3220
3221 if (!capable(CAP_SYS_ADMIN))
3222 return -EPERM;
3223
3224 mutex_lock(&fs_info->balance_mutex);
3225 if (!fs_info->balance_ctl) {
3226 ret = -ENOTCONN;
3227 goto out;
3228 }
3229
3230 bargs = kzalloc(sizeof(*bargs), GFP_NOFS);
3231 if (!bargs) {
3232 ret = -ENOMEM;
3233 goto out;
3234 }
3235
3236 update_ioctl_balance_args(fs_info, 1, bargs);
3237
3238 if (copy_to_user(arg, bargs, sizeof(*bargs)))
3239 ret = -EFAULT;
3240
3241 kfree(bargs);
3242out:
3243 mutex_unlock(&fs_info->balance_mutex);
3244 return ret;
3245}
3246
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003247long btrfs_ioctl(struct file *file, unsigned int
3248 cmd, unsigned long arg)
3249{
3250 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05003251 void __user *argp = (void __user *)arg;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003252
3253 switch (cmd) {
Christoph Hellwig6cbff002009-04-17 10:37:41 +02003254 case FS_IOC_GETFLAGS:
3255 return btrfs_ioctl_getflags(file, argp);
3256 case FS_IOC_SETFLAGS:
3257 return btrfs_ioctl_setflags(file, argp);
3258 case FS_IOC_GETVERSION:
3259 return btrfs_ioctl_getversion(file, argp);
Li Dongyangf7039b12011-03-24 10:24:28 +00003260 case FITRIM:
3261 return btrfs_ioctl_fitrim(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003262 case BTRFS_IOC_SNAP_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08003263 return btrfs_ioctl_snap_create(file, argp, 0);
Li Zefanfdfb1e42010-12-10 06:41:56 +00003264 case BTRFS_IOC_SNAP_CREATE_V2:
Li Zefanfa0d2b92010-12-20 15:53:28 +08003265 return btrfs_ioctl_snap_create_v2(file, argp, 0);
Chris Mason3de45862008-11-17 21:02:50 -05003266 case BTRFS_IOC_SUBVOL_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08003267 return btrfs_ioctl_snap_create(file, argp, 1);
Yan, Zheng76dda932009-09-21 16:00:26 -04003268 case BTRFS_IOC_SNAP_DESTROY:
3269 return btrfs_ioctl_snap_destroy(file, argp);
Li Zefan0caa1022010-12-20 16:30:25 +08003270 case BTRFS_IOC_SUBVOL_GETFLAGS:
3271 return btrfs_ioctl_subvol_getflags(file, argp);
3272 case BTRFS_IOC_SUBVOL_SETFLAGS:
3273 return btrfs_ioctl_subvol_setflags(file, argp);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003274 case BTRFS_IOC_DEFAULT_SUBVOL:
3275 return btrfs_ioctl_default_subvol(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003276 case BTRFS_IOC_DEFRAG:
Chris Mason1e701a32010-03-11 09:42:04 -05003277 return btrfs_ioctl_defrag(file, NULL);
3278 case BTRFS_IOC_DEFRAG_RANGE:
3279 return btrfs_ioctl_defrag(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003280 case BTRFS_IOC_RESIZE:
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05003281 return btrfs_ioctl_resize(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003282 case BTRFS_IOC_ADD_DEV:
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05003283 return btrfs_ioctl_add_dev(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003284 case BTRFS_IOC_RM_DEV:
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05003285 return btrfs_ioctl_rm_dev(root, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01003286 case BTRFS_IOC_FS_INFO:
3287 return btrfs_ioctl_fs_info(root, argp);
3288 case BTRFS_IOC_DEV_INFO:
3289 return btrfs_ioctl_dev_info(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003290 case BTRFS_IOC_BALANCE:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003291 return btrfs_ioctl_balance(root, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003292 case BTRFS_IOC_CLONE:
Sage Weilc5c9cd42008-11-12 14:32:25 -05003293 return btrfs_ioctl_clone(file, arg, 0, 0, 0);
3294 case BTRFS_IOC_CLONE_RANGE:
Christoph Hellwig7a865e82008-12-02 09:52:24 -05003295 return btrfs_ioctl_clone_range(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003296 case BTRFS_IOC_TRANS_START:
3297 return btrfs_ioctl_trans_start(file);
3298 case BTRFS_IOC_TRANS_END:
3299 return btrfs_ioctl_trans_end(file);
Chris Masonac8e9812010-02-28 15:39:26 -05003300 case BTRFS_IOC_TREE_SEARCH:
3301 return btrfs_ioctl_tree_search(file, argp);
3302 case BTRFS_IOC_INO_LOOKUP:
3303 return btrfs_ioctl_ino_lookup(file, argp);
Jan Schmidtd7728c92011-07-07 16:48:38 +02003304 case BTRFS_IOC_INO_PATHS:
3305 return btrfs_ioctl_ino_to_path(root, argp);
3306 case BTRFS_IOC_LOGICAL_INO:
3307 return btrfs_ioctl_logical_to_ino(root, argp);
Josef Bacik1406e432010-01-13 18:19:06 +00003308 case BTRFS_IOC_SPACE_INFO:
3309 return btrfs_ioctl_space_info(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003310 case BTRFS_IOC_SYNC:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003311 btrfs_sync_fs(file->f_dentry->d_sb, 1);
3312 return 0;
Sage Weil46204592010-10-29 15:41:32 -04003313 case BTRFS_IOC_START_SYNC:
3314 return btrfs_ioctl_start_sync(file, argp);
3315 case BTRFS_IOC_WAIT_SYNC:
3316 return btrfs_ioctl_wait_sync(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01003317 case BTRFS_IOC_SCRUB:
3318 return btrfs_ioctl_scrub(root, argp);
3319 case BTRFS_IOC_SCRUB_CANCEL:
3320 return btrfs_ioctl_scrub_cancel(root, argp);
3321 case BTRFS_IOC_SCRUB_PROGRESS:
3322 return btrfs_ioctl_scrub_progress(root, argp);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003323 case BTRFS_IOC_BALANCE_V2:
3324 return btrfs_ioctl_balance(root, argp);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003325 case BTRFS_IOC_BALANCE_CTL:
3326 return btrfs_ioctl_balance_ctl(root, arg);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003327 case BTRFS_IOC_BALANCE_PROGRESS:
3328 return btrfs_ioctl_balance_progress(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003329 }
3330
3331 return -ENOTTY;
3332}