blob: de25e4255aeb637287b56fa7fe737f3b78655851 [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
Al Viroa561be72011-11-23 11:57:51 -0500209 ret = mnt_want_write_file(file);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200210 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
Al Viro2a79f172011-12-09 08:06:57 -0500274 mnt_drop_write_file(file);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200275 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{
Al Viro815745c2011-11-17 15:40:49 -0500289 struct btrfs_fs_info *fs_info = btrfs_sb(fdentry(file)->d_sb);
Li Dongyangf7039b12011-03-24 10:24:28 +0000290 struct btrfs_device *device;
291 struct request_queue *q;
292 struct fstrim_range range;
293 u64 minlen = ULLONG_MAX;
294 u64 num_devices = 0;
Al Viro815745c2011-11-17 15:40:49 -0500295 u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy);
Li Dongyangf7039b12011-03-24 10:24:28 +0000296 int ret;
297
298 if (!capable(CAP_SYS_ADMIN))
299 return -EPERM;
300
Xiao Guangrong1f781602011-04-20 10:09:16 +0000301 rcu_read_lock();
302 list_for_each_entry_rcu(device, &fs_info->fs_devices->devices,
303 dev_list) {
Li Dongyangf7039b12011-03-24 10:24:28 +0000304 if (!device->bdev)
305 continue;
306 q = bdev_get_queue(device->bdev);
307 if (blk_queue_discard(q)) {
308 num_devices++;
309 minlen = min((u64)q->limits.discard_granularity,
310 minlen);
311 }
312 }
Xiao Guangrong1f781602011-04-20 10:09:16 +0000313 rcu_read_unlock();
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200314
Li Dongyangf7039b12011-03-24 10:24:28 +0000315 if (!num_devices)
316 return -EOPNOTSUPP;
Li Dongyangf7039b12011-03-24 10:24:28 +0000317 if (copy_from_user(&range, arg, sizeof(range)))
318 return -EFAULT;
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200319 if (range.start > total_bytes)
320 return -EINVAL;
Li Dongyangf7039b12011-03-24 10:24:28 +0000321
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200322 range.len = min(range.len, total_bytes - range.start);
Li Dongyangf7039b12011-03-24 10:24:28 +0000323 range.minlen = max(range.minlen, minlen);
Al Viro815745c2011-11-17 15:40:49 -0500324 ret = btrfs_trim_fs(fs_info->tree_root, &range);
Li Dongyangf7039b12011-03-24 10:24:28 +0000325 if (ret < 0)
326 return ret;
327
328 if (copy_to_user(arg, &range, sizeof(range)))
329 return -EFAULT;
330
331 return 0;
332}
333
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400334static noinline int create_subvol(struct btrfs_root *root,
335 struct dentry *dentry,
Sage Weil72fd0322010-10-29 15:41:32 -0400336 char *name, int namelen,
337 u64 *async_transid)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400338{
339 struct btrfs_trans_handle *trans;
340 struct btrfs_key key;
341 struct btrfs_root_item root_item;
342 struct btrfs_inode_item *inode_item;
343 struct extent_buffer *leaf;
Yan, Zheng76dda932009-09-21 16:00:26 -0400344 struct btrfs_root *new_root;
Al Viro2fbe8c82011-07-16 21:38:06 -0400345 struct dentry *parent = dentry->d_parent;
Josef Bacik6a912212010-11-20 09:48:00 +0000346 struct inode *dir;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400347 int ret;
348 int err;
349 u64 objectid;
350 u64 new_dirid = BTRFS_FIRST_FREE_OBJECTID;
Chris Mason3de45862008-11-17 21:02:50 -0500351 u64 index = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400352
Li Zefan581bb052011-04-20 10:06:11 +0800353 ret = btrfs_find_free_objectid(root->fs_info->tree_root, &objectid);
Al Viro2fbe8c82011-07-16 21:38:06 -0400354 if (ret)
Yan, Zhenga22285a2010-05-16 10:48:46 -0400355 return ret;
Josef Bacik6a912212010-11-20 09:48:00 +0000356
357 dir = parent->d_inode;
358
Josef Bacik9ed74f22009-09-11 16:12:44 -0400359 /*
360 * 1 - inode item
361 * 2 - refs
362 * 1 - root item
363 * 2 - dir items
364 */
Yan, Zhenga22285a2010-05-16 10:48:46 -0400365 trans = btrfs_start_transaction(root, 6);
Al Viro2fbe8c82011-07-16 21:38:06 -0400366 if (IS_ERR(trans))
Yan, Zhenga22285a2010-05-16 10:48:46 -0400367 return PTR_ERR(trans);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400368
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400369 leaf = btrfs_alloc_free_block(trans, root, root->leafsize,
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200370 0, objectid, NULL, 0, 0, 0, 0);
Josef Bacik8e8a1e32008-07-24 12:17:14 -0400371 if (IS_ERR(leaf)) {
372 ret = PTR_ERR(leaf);
373 goto fail;
374 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400375
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400376 memset_extent_buffer(leaf, 0, 0, sizeof(struct btrfs_header));
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400377 btrfs_set_header_bytenr(leaf, leaf->start);
378 btrfs_set_header_generation(leaf, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400379 btrfs_set_header_backref_rev(leaf, BTRFS_MIXED_BACKREF_REV);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400380 btrfs_set_header_owner(leaf, objectid);
381
382 write_extent_buffer(leaf, root->fs_info->fsid,
383 (unsigned long)btrfs_header_fsid(leaf),
384 BTRFS_FSID_SIZE);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400385 write_extent_buffer(leaf, root->fs_info->chunk_tree_uuid,
386 (unsigned long)btrfs_header_chunk_tree_uuid(leaf),
387 BTRFS_UUID_SIZE);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400388 btrfs_mark_buffer_dirty(leaf);
389
390 inode_item = &root_item.inode;
391 memset(inode_item, 0, sizeof(*inode_item));
392 inode_item->generation = cpu_to_le64(1);
393 inode_item->size = cpu_to_le64(3);
394 inode_item->nlink = cpu_to_le32(1);
Yan Zhenga76a3cd2008-10-09 11:46:29 -0400395 inode_item->nbytes = cpu_to_le64(root->leafsize);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400396 inode_item->mode = cpu_to_le32(S_IFDIR | 0755);
397
Li Zefan08fe4db2011-03-28 02:01:25 +0000398 root_item.flags = 0;
399 root_item.byte_limit = 0;
400 inode_item->flags = cpu_to_le64(BTRFS_INODE_ROOT_ITEM_INIT);
401
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400402 btrfs_set_root_bytenr(&root_item, leaf->start);
Yan Zheng84234f32008-10-29 14:49:05 -0400403 btrfs_set_root_generation(&root_item, trans->transid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400404 btrfs_set_root_level(&root_item, 0);
405 btrfs_set_root_refs(&root_item, 1);
Yan, Zheng86b9f2e2009-11-12 09:36:50 +0000406 btrfs_set_root_used(&root_item, leaf->len);
Yan Zheng80ff3852008-10-30 14:20:02 -0400407 btrfs_set_root_last_snapshot(&root_item, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400408
409 memset(&root_item.drop_progress, 0, sizeof(root_item.drop_progress));
410 root_item.drop_level = 0;
411
Chris Mason925baed2008-06-25 16:01:30 -0400412 btrfs_tree_unlock(leaf);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400413 free_extent_buffer(leaf);
414 leaf = NULL;
415
416 btrfs_set_root_dirid(&root_item, new_dirid);
417
418 key.objectid = objectid;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400419 key.offset = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400420 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
421 ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
422 &root_item);
423 if (ret)
424 goto fail;
425
Yan, Zheng76dda932009-09-21 16:00:26 -0400426 key.offset = (u64)-1;
427 new_root = btrfs_read_fs_root_no_name(root->fs_info, &key);
428 BUG_ON(IS_ERR(new_root));
429
430 btrfs_record_root_in_trans(trans, new_root);
431
Josef Bacikd82a6f12011-05-11 15:26:06 -0400432 ret = btrfs_create_subvol_root(trans, new_root, new_dirid);
Mark Fashehce598972011-07-26 11:32:23 -0700433 if (ret) {
434 /* We potentially lose an unused inode item here */
435 goto fail;
436 }
437
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400438 /*
439 * insert the directory item
440 */
Chris Mason3de45862008-11-17 21:02:50 -0500441 ret = btrfs_set_inode_index(dir, &index);
442 BUG_ON(ret);
443
444 ret = btrfs_insert_dir_item(trans, root,
Miao Xie16cdcec2011-04-22 18:12:22 +0800445 name, namelen, dir, &key,
Chris Mason3de45862008-11-17 21:02:50 -0500446 BTRFS_FT_DIR, index);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400447 if (ret)
448 goto fail;
Chris Mason0660b5a2008-11-17 20:37:39 -0500449
Yan Zheng52c26172009-01-05 15:43:43 -0500450 btrfs_i_size_write(dir, dir->i_size + namelen * 2);
451 ret = btrfs_update_inode(trans, root, dir);
452 BUG_ON(ret);
453
Chris Mason0660b5a2008-11-17 20:37:39 -0500454 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -0400455 objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +0800456 btrfs_ino(dir), index, name, namelen);
Yan, Zheng76dda932009-09-21 16:00:26 -0400457
Chris Mason0660b5a2008-11-17 20:37:39 -0500458 BUG_ON(ret);
459
Yan, Zheng76dda932009-09-21 16:00:26 -0400460 d_instantiate(dentry, btrfs_lookup_dentry(dir, dentry));
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400461fail:
Sage Weil72fd0322010-10-29 15:41:32 -0400462 if (async_transid) {
463 *async_transid = trans->transid;
464 err = btrfs_commit_transaction_async(trans, root, 1);
465 } else {
466 err = btrfs_commit_transaction(trans, root);
467 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400468 if (err && !ret)
469 ret = err;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400470 return ret;
471}
472
Sage Weil72fd0322010-10-29 15:41:32 -0400473static int create_snapshot(struct btrfs_root *root, struct dentry *dentry,
Li Zefanb83cc962010-12-20 16:04:08 +0800474 char *name, int namelen, u64 *async_transid,
475 bool readonly)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400476{
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000477 struct inode *inode;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400478 struct btrfs_pending_snapshot *pending_snapshot;
479 struct btrfs_trans_handle *trans;
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000480 int ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400481
482 if (!root->ref_cows)
483 return -EINVAL;
484
Yan, Zhenga22285a2010-05-16 10:48:46 -0400485 pending_snapshot = kzalloc(sizeof(*pending_snapshot), GFP_NOFS);
486 if (!pending_snapshot)
487 return -ENOMEM;
488
489 btrfs_init_block_rsv(&pending_snapshot->block_rsv);
490 pending_snapshot->dentry = dentry;
491 pending_snapshot->root = root;
Li Zefanb83cc962010-12-20 16:04:08 +0800492 pending_snapshot->readonly = readonly;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400493
494 trans = btrfs_start_transaction(root->fs_info->extent_root, 5);
495 if (IS_ERR(trans)) {
496 ret = PTR_ERR(trans);
497 goto fail;
498 }
499
500 ret = btrfs_snap_reserve_metadata(trans, pending_snapshot);
501 BUG_ON(ret);
502
Josef Bacik83515832011-06-14 15:16:14 -0400503 spin_lock(&root->fs_info->trans_lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400504 list_add(&pending_snapshot->list,
505 &trans->transaction->pending_snapshots);
Josef Bacik83515832011-06-14 15:16:14 -0400506 spin_unlock(&root->fs_info->trans_lock);
Sage Weil72fd0322010-10-29 15:41:32 -0400507 if (async_transid) {
508 *async_transid = trans->transid;
509 ret = btrfs_commit_transaction_async(trans,
510 root->fs_info->extent_root, 1);
511 } else {
512 ret = btrfs_commit_transaction(trans,
513 root->fs_info->extent_root);
514 }
Yan, Zhenga22285a2010-05-16 10:48:46 -0400515 BUG_ON(ret);
516
517 ret = pending_snapshot->error;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400518 if (ret)
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000519 goto fail;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400520
Josef Bacik66b4ffd2011-01-31 16:22:42 -0500521 ret = btrfs_orphan_cleanup(pending_snapshot->snap);
522 if (ret)
523 goto fail;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400524
Al Viro2fbe8c82011-07-16 21:38:06 -0400525 inode = btrfs_lookup_dentry(dentry->d_parent->d_inode, dentry);
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000526 if (IS_ERR(inode)) {
527 ret = PTR_ERR(inode);
528 goto fail;
529 }
530 BUG_ON(!inode);
531 d_instantiate(dentry, inode);
532 ret = 0;
533fail:
Yan, Zhenga22285a2010-05-16 10:48:46 -0400534 kfree(pending_snapshot);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400535 return ret;
536}
537
Sage Weil4260f7c2010-10-29 15:46:43 -0400538/* copy of check_sticky in fs/namei.c()
539* It's inline, so penalty for filesystems that don't use sticky bit is
540* minimal.
541*/
542static inline int btrfs_check_sticky(struct inode *dir, struct inode *inode)
543{
544 uid_t fsuid = current_fsuid();
545
546 if (!(dir->i_mode & S_ISVTX))
547 return 0;
548 if (inode->i_uid == fsuid)
549 return 0;
550 if (dir->i_uid == fsuid)
551 return 0;
552 return !capable(CAP_FOWNER);
553}
554
555/* copy of may_delete in fs/namei.c()
556 * Check whether we can remove a link victim from directory dir, check
557 * whether the type of victim is right.
558 * 1. We can't do it if dir is read-only (done in permission())
559 * 2. We should have write and exec permissions on dir
560 * 3. We can't remove anything from append-only dir
561 * 4. We can't do anything with immutable dir (done in permission())
562 * 5. If the sticky bit on dir is set we should either
563 * a. be owner of dir, or
564 * b. be owner of victim, or
565 * c. have CAP_FOWNER capability
566 * 6. If the victim is append-only or immutable we can't do antyhing with
567 * links pointing to it.
568 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
569 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
570 * 9. We can't remove a root or mountpoint.
571 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
572 * nfs_async_unlink().
573 */
574
575static int btrfs_may_delete(struct inode *dir,struct dentry *victim,int isdir)
576{
577 int error;
578
579 if (!victim->d_inode)
580 return -ENOENT;
581
582 BUG_ON(victim->d_parent->d_inode != dir);
583 audit_inode_child(victim, dir);
584
585 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
586 if (error)
587 return error;
588 if (IS_APPEND(dir))
589 return -EPERM;
590 if (btrfs_check_sticky(dir, victim->d_inode)||
591 IS_APPEND(victim->d_inode)||
592 IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode))
593 return -EPERM;
594 if (isdir) {
595 if (!S_ISDIR(victim->d_inode->i_mode))
596 return -ENOTDIR;
597 if (IS_ROOT(victim))
598 return -EBUSY;
599 } else if (S_ISDIR(victim->d_inode->i_mode))
600 return -EISDIR;
601 if (IS_DEADDIR(dir))
602 return -ENOENT;
603 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
604 return -EBUSY;
605 return 0;
606}
607
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400608/* copy of may_create in fs/namei.c() */
609static inline int btrfs_may_create(struct inode *dir, struct dentry *child)
610{
611 if (child->d_inode)
612 return -EEXIST;
613 if (IS_DEADDIR(dir))
614 return -ENOENT;
615 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
616}
617
618/*
619 * Create a new subvolume below @parent. This is largely modeled after
620 * sys_mkdirat and vfs_mkdir, but we only do a single component lookup
621 * inside this filesystem so it's quite a bit simpler.
622 */
Yan, Zheng76dda932009-09-21 16:00:26 -0400623static noinline int btrfs_mksubvol(struct path *parent,
624 char *name, int namelen,
Sage Weil72fd0322010-10-29 15:41:32 -0400625 struct btrfs_root *snap_src,
Li Zefanb83cc962010-12-20 16:04:08 +0800626 u64 *async_transid, bool readonly)
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400627{
Yan, Zheng76dda932009-09-21 16:00:26 -0400628 struct inode *dir = parent->dentry->d_inode;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400629 struct dentry *dentry;
630 int error;
631
Yan, Zheng76dda932009-09-21 16:00:26 -0400632 mutex_lock_nested(&dir->i_mutex, I_MUTEX_PARENT);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400633
634 dentry = lookup_one_len(name, parent->dentry, namelen);
635 error = PTR_ERR(dentry);
636 if (IS_ERR(dentry))
637 goto out_unlock;
638
639 error = -EEXIST;
640 if (dentry->d_inode)
641 goto out_dput;
642
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400643 error = mnt_want_write(parent->mnt);
644 if (error)
645 goto out_dput;
646
Yan, Zheng76dda932009-09-21 16:00:26 -0400647 error = btrfs_may_create(dir, dentry);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400648 if (error)
649 goto out_drop_write;
650
Yan, Zheng76dda932009-09-21 16:00:26 -0400651 down_read(&BTRFS_I(dir)->root->fs_info->subvol_sem);
652
653 if (btrfs_root_refs(&BTRFS_I(dir)->root->root_item) == 0)
654 goto out_up_read;
655
Chris Mason3de45862008-11-17 21:02:50 -0500656 if (snap_src) {
Sage Weil72fd0322010-10-29 15:41:32 -0400657 error = create_snapshot(snap_src, dentry,
Li Zefanb83cc962010-12-20 16:04:08 +0800658 name, namelen, async_transid, readonly);
Chris Mason3de45862008-11-17 21:02:50 -0500659 } else {
Yan, Zheng76dda932009-09-21 16:00:26 -0400660 error = create_subvol(BTRFS_I(dir)->root, dentry,
Sage Weil72fd0322010-10-29 15:41:32 -0400661 name, namelen, async_transid);
Chris Mason3de45862008-11-17 21:02:50 -0500662 }
Yan, Zheng76dda932009-09-21 16:00:26 -0400663 if (!error)
664 fsnotify_mkdir(dir, dentry);
665out_up_read:
666 up_read(&BTRFS_I(dir)->root->fs_info->subvol_sem);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400667out_drop_write:
668 mnt_drop_write(parent->mnt);
669out_dput:
670 dput(dentry);
671out_unlock:
Yan, Zheng76dda932009-09-21 16:00:26 -0400672 mutex_unlock(&dir->i_mutex);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400673 return error;
674}
675
Chris Mason4cb53002011-05-24 15:35:30 -0400676/*
677 * When we're defragging a range, we don't want to kick it off again
678 * if it is really just waiting for delalloc to send it down.
679 * If we find a nice big extent or delalloc range for the bytes in the
680 * file you want to defrag, we return 0 to let you know to skip this
681 * part of the file
682 */
683static int check_defrag_in_cache(struct inode *inode, u64 offset, int thresh)
684{
685 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
686 struct extent_map *em = NULL;
687 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
688 u64 end;
689
690 read_lock(&em_tree->lock);
691 em = lookup_extent_mapping(em_tree, offset, PAGE_CACHE_SIZE);
692 read_unlock(&em_tree->lock);
693
694 if (em) {
695 end = extent_map_end(em);
696 free_extent_map(em);
697 if (end - offset > thresh)
698 return 0;
699 }
700 /* if we already have a nice delalloc here, just stop */
701 thresh /= 2;
702 end = count_range_bits(io_tree, &offset, offset + thresh,
703 thresh, EXTENT_DELALLOC, 1);
704 if (end >= thresh)
705 return 0;
706 return 1;
707}
708
709/*
710 * helper function to walk through a file and find extents
711 * newer than a specific transid, and smaller than thresh.
712 *
713 * This is used by the defragging code to find new and small
714 * extents
715 */
716static int find_new_extents(struct btrfs_root *root,
717 struct inode *inode, u64 newer_than,
718 u64 *off, int thresh)
719{
720 struct btrfs_path *path;
721 struct btrfs_key min_key;
722 struct btrfs_key max_key;
723 struct extent_buffer *leaf;
724 struct btrfs_file_extent_item *extent;
725 int type;
726 int ret;
David Sterbaa4689d22011-05-31 17:08:14 +0000727 u64 ino = btrfs_ino(inode);
Chris Mason4cb53002011-05-24 15:35:30 -0400728
729 path = btrfs_alloc_path();
730 if (!path)
731 return -ENOMEM;
732
David Sterbaa4689d22011-05-31 17:08:14 +0000733 min_key.objectid = ino;
Chris Mason4cb53002011-05-24 15:35:30 -0400734 min_key.type = BTRFS_EXTENT_DATA_KEY;
735 min_key.offset = *off;
736
David Sterbaa4689d22011-05-31 17:08:14 +0000737 max_key.objectid = ino;
Chris Mason4cb53002011-05-24 15:35:30 -0400738 max_key.type = (u8)-1;
739 max_key.offset = (u64)-1;
740
741 path->keep_locks = 1;
742
743 while(1) {
744 ret = btrfs_search_forward(root, &min_key, &max_key,
745 path, 0, newer_than);
746 if (ret != 0)
747 goto none;
David Sterbaa4689d22011-05-31 17:08:14 +0000748 if (min_key.objectid != ino)
Chris Mason4cb53002011-05-24 15:35:30 -0400749 goto none;
750 if (min_key.type != BTRFS_EXTENT_DATA_KEY)
751 goto none;
752
753 leaf = path->nodes[0];
754 extent = btrfs_item_ptr(leaf, path->slots[0],
755 struct btrfs_file_extent_item);
756
757 type = btrfs_file_extent_type(leaf, extent);
758 if (type == BTRFS_FILE_EXTENT_REG &&
759 btrfs_file_extent_num_bytes(leaf, extent) < thresh &&
760 check_defrag_in_cache(inode, min_key.offset, thresh)) {
761 *off = min_key.offset;
762 btrfs_free_path(path);
763 return 0;
764 }
765
766 if (min_key.offset == (u64)-1)
767 goto none;
768
769 min_key.offset++;
770 btrfs_release_path(path);
771 }
772none:
773 btrfs_free_path(path);
774 return -ENOENT;
775}
776
Chris Mason940100a2010-03-10 10:52:59 -0500777static int should_defrag_range(struct inode *inode, u64 start, u64 len,
Chris Mason1e701a32010-03-11 09:42:04 -0500778 int thresh, u64 *last_len, u64 *skip,
779 u64 *defrag_end)
Chris Mason940100a2010-03-10 10:52:59 -0500780{
781 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
782 struct extent_map *em = NULL;
783 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
784 int ret = 1;
785
786 /*
Li Zefan008873e2011-09-02 15:57:07 +0800787 * make sure that once we start defragging an extent, we keep on
Chris Mason940100a2010-03-10 10:52:59 -0500788 * defragging it
789 */
790 if (start < *defrag_end)
791 return 1;
792
793 *skip = 0;
794
795 /*
796 * hopefully we have this extent in the tree already, try without
797 * the full extent lock
798 */
799 read_lock(&em_tree->lock);
800 em = lookup_extent_mapping(em_tree, start, len);
801 read_unlock(&em_tree->lock);
802
803 if (!em) {
804 /* get the big lock and read metadata off disk */
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100805 lock_extent(io_tree, start, start + len - 1);
Chris Mason940100a2010-03-10 10:52:59 -0500806 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100807 unlock_extent(io_tree, start, start + len - 1);
Chris Mason940100a2010-03-10 10:52:59 -0500808
Dan Carpenter6cf8bfb2010-03-20 11:22:10 +0000809 if (IS_ERR(em))
Chris Mason940100a2010-03-10 10:52:59 -0500810 return 0;
811 }
812
813 /* this will cover holes, and inline extents */
814 if (em->block_start >= EXTENT_MAP_LAST_BYTE)
815 ret = 0;
816
817 /*
818 * we hit a real extent, if it is big don't bother defragging it again
819 */
Chris Mason1e701a32010-03-11 09:42:04 -0500820 if ((*last_len == 0 || *last_len >= thresh) && em->len >= thresh)
Chris Mason940100a2010-03-10 10:52:59 -0500821 ret = 0;
822
823 /*
824 * last_len ends up being a counter of how many bytes we've defragged.
825 * every time we choose not to defrag an extent, we reset *last_len
826 * so that the next tiny extent will force a defrag.
827 *
828 * The end result of this is that tiny extents before a single big
829 * extent will force at least part of that big extent to be defragged.
830 */
831 if (ret) {
Chris Mason940100a2010-03-10 10:52:59 -0500832 *defrag_end = extent_map_end(em);
833 } else {
834 *last_len = 0;
835 *skip = extent_map_end(em);
836 *defrag_end = 0;
837 }
838
839 free_extent_map(em);
840 return ret;
841}
842
Chris Mason4cb53002011-05-24 15:35:30 -0400843/*
844 * it doesn't do much good to defrag one or two pages
845 * at a time. This pulls in a nice chunk of pages
846 * to COW and defrag.
847 *
848 * It also makes sure the delalloc code has enough
849 * dirty data to avoid making new small extents as part
850 * of the defrag
851 *
852 * It's a good idea to start RA on this range
853 * before calling this.
854 */
855static int cluster_pages_for_defrag(struct inode *inode,
856 struct page **pages,
857 unsigned long start_index,
858 int num_pages)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400859{
Chris Mason4cb53002011-05-24 15:35:30 -0400860 unsigned long file_end;
861 u64 isize = i_size_read(inode);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400862 u64 page_start;
863 u64 page_end;
Chris Mason4cb53002011-05-24 15:35:30 -0400864 int ret;
865 int i;
866 int i_done;
867 struct btrfs_ordered_extent *ordered;
868 struct extent_state *cached_state = NULL;
Miao Xie600a45e2012-02-16 15:01:24 +0800869 struct extent_io_tree *tree;
Josef Bacik3b16a4e2011-09-21 15:05:58 -0400870 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
Chris Mason4cb53002011-05-24 15:35:30 -0400871
872 if (isize == 0)
873 return 0;
874 file_end = (isize - 1) >> PAGE_CACHE_SHIFT;
875
876 ret = btrfs_delalloc_reserve_space(inode,
877 num_pages << PAGE_CACHE_SHIFT);
878 if (ret)
879 return ret;
Chris Mason4cb53002011-05-24 15:35:30 -0400880 i_done = 0;
Miao Xie600a45e2012-02-16 15:01:24 +0800881 tree = &BTRFS_I(inode)->io_tree;
Chris Mason4cb53002011-05-24 15:35:30 -0400882
883 /* step one, lock all the pages */
884 for (i = 0; i < num_pages; i++) {
885 struct page *page;
Miao Xie600a45e2012-02-16 15:01:24 +0800886again:
Josef Bacika94733d2011-07-11 10:47:06 -0400887 page = find_or_create_page(inode->i_mapping,
Miao Xie600a45e2012-02-16 15:01:24 +0800888 start_index + i, mask);
Chris Mason4cb53002011-05-24 15:35:30 -0400889 if (!page)
890 break;
891
Miao Xie600a45e2012-02-16 15:01:24 +0800892 page_start = page_offset(page);
893 page_end = page_start + PAGE_CACHE_SIZE - 1;
894 while (1) {
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100895 lock_extent(tree, page_start, page_end);
Miao Xie600a45e2012-02-16 15:01:24 +0800896 ordered = btrfs_lookup_ordered_extent(inode,
897 page_start);
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100898 unlock_extent(tree, page_start, page_end);
Miao Xie600a45e2012-02-16 15:01:24 +0800899 if (!ordered)
900 break;
901
902 unlock_page(page);
903 btrfs_start_ordered_extent(inode, ordered, 1);
904 btrfs_put_ordered_extent(ordered);
905 lock_page(page);
906 }
907
Chris Mason4cb53002011-05-24 15:35:30 -0400908 if (!PageUptodate(page)) {
909 btrfs_readpage(NULL, page);
910 lock_page(page);
911 if (!PageUptodate(page)) {
912 unlock_page(page);
913 page_cache_release(page);
914 ret = -EIO;
915 break;
916 }
917 }
Miao Xie600a45e2012-02-16 15:01:24 +0800918
Chris Mason4cb53002011-05-24 15:35:30 -0400919 isize = i_size_read(inode);
920 file_end = (isize - 1) >> PAGE_CACHE_SHIFT;
Miao Xie600a45e2012-02-16 15:01:24 +0800921 if (!isize || page->index > file_end) {
Chris Mason4cb53002011-05-24 15:35:30 -0400922 /* whoops, we blew past eof, skip this page */
923 unlock_page(page);
924 page_cache_release(page);
925 break;
926 }
Miao Xie600a45e2012-02-16 15:01:24 +0800927
928 if (page->mapping != inode->i_mapping) {
929 unlock_page(page);
930 page_cache_release(page);
931 goto again;
932 }
933
Chris Mason4cb53002011-05-24 15:35:30 -0400934 pages[i] = page;
935 i_done++;
936 }
937 if (!i_done || ret)
938 goto out;
939
940 if (!(inode->i_sb->s_flags & MS_ACTIVE))
941 goto out;
942
943 /*
944 * so now we have a nice long stream of locked
945 * and up to date pages, lets wait on them
946 */
947 for (i = 0; i < i_done; i++)
948 wait_on_page_writeback(pages[i]);
949
950 page_start = page_offset(pages[0]);
951 page_end = page_offset(pages[i_done - 1]) + PAGE_CACHE_SIZE;
952
953 lock_extent_bits(&BTRFS_I(inode)->io_tree,
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100954 page_start, page_end - 1, 0, &cached_state);
Chris Mason4cb53002011-05-24 15:35:30 -0400955 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start,
956 page_end - 1, EXTENT_DIRTY | EXTENT_DELALLOC |
957 EXTENT_DO_ACCOUNTING, 0, 0, &cached_state,
958 GFP_NOFS);
959
960 if (i_done != num_pages) {
Josef Bacik9e0baf62011-07-15 15:16:44 +0000961 spin_lock(&BTRFS_I(inode)->lock);
962 BTRFS_I(inode)->outstanding_extents++;
963 spin_unlock(&BTRFS_I(inode)->lock);
Chris Mason4cb53002011-05-24 15:35:30 -0400964 btrfs_delalloc_release_space(inode,
965 (num_pages - i_done) << PAGE_CACHE_SHIFT);
966 }
967
968
969 btrfs_set_extent_delalloc(inode, page_start, page_end - 1,
970 &cached_state);
971
972 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
973 page_start, page_end - 1, &cached_state,
974 GFP_NOFS);
975
976 for (i = 0; i < i_done; i++) {
977 clear_page_dirty_for_io(pages[i]);
978 ClearPageChecked(pages[i]);
979 set_page_extent_mapped(pages[i]);
980 set_page_dirty(pages[i]);
981 unlock_page(pages[i]);
982 page_cache_release(pages[i]);
983 }
984 return i_done;
985out:
986 for (i = 0; i < i_done; i++) {
987 unlock_page(pages[i]);
988 page_cache_release(pages[i]);
989 }
990 btrfs_delalloc_release_space(inode, num_pages << PAGE_CACHE_SHIFT);
991 return ret;
992
993}
994
995int btrfs_defrag_file(struct inode *inode, struct file *file,
996 struct btrfs_ioctl_defrag_range_args *range,
997 u64 newer_than, unsigned long max_to_defrag)
998{
999 struct btrfs_root *root = BTRFS_I(inode)->root;
1000 struct btrfs_super_block *disk_super;
1001 struct file_ra_state *ra = NULL;
1002 unsigned long last_index;
Li Zefan151a31b2011-09-02 15:56:39 +08001003 u64 isize = i_size_read(inode);
Chris Mason4cb53002011-05-24 15:35:30 -04001004 u64 features;
Chris Mason940100a2010-03-10 10:52:59 -05001005 u64 last_len = 0;
1006 u64 skip = 0;
1007 u64 defrag_end = 0;
Chris Mason4cb53002011-05-24 15:35:30 -04001008 u64 newer_off = range->start;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001009 unsigned long i;
Li Zefan008873e2011-09-02 15:57:07 +08001010 unsigned long ra_index = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001011 int ret;
Chris Mason4cb53002011-05-24 15:35:30 -04001012 int defrag_count = 0;
Li Zefan1a419d82010-10-25 15:12:50 +08001013 int compress_type = BTRFS_COMPRESS_ZLIB;
Chris Mason4cb53002011-05-24 15:35:30 -04001014 int extent_thresh = range->extent_thresh;
Li Zefan008873e2011-09-02 15:57:07 +08001015 int max_cluster = (256 * 1024) >> PAGE_CACHE_SHIFT;
1016 int cluster = max_cluster;
Chris Mason4cb53002011-05-24 15:35:30 -04001017 u64 new_align = ~((u64)128 * 1024 - 1);
1018 struct page **pages = NULL;
1019
1020 if (extent_thresh == 0)
1021 extent_thresh = 256 * 1024;
Li Zefan1a419d82010-10-25 15:12:50 +08001022
1023 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS) {
1024 if (range->compress_type > BTRFS_COMPRESS_TYPES)
1025 return -EINVAL;
1026 if (range->compress_type)
1027 compress_type = range->compress_type;
1028 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001029
Li Zefan151a31b2011-09-02 15:56:39 +08001030 if (isize == 0)
Chris Mason940100a2010-03-10 10:52:59 -05001031 return 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001032
Chris Mason4cb53002011-05-24 15:35:30 -04001033 /*
1034 * if we were not given a file, allocate a readahead
1035 * context
1036 */
1037 if (!file) {
1038 ra = kzalloc(sizeof(*ra), GFP_NOFS);
1039 if (!ra)
1040 return -ENOMEM;
1041 file_ra_state_init(ra, inode->i_mapping);
1042 } else {
1043 ra = &file->f_ra;
1044 }
1045
Li Zefan008873e2011-09-02 15:57:07 +08001046 pages = kmalloc(sizeof(struct page *) * max_cluster,
Chris Mason4cb53002011-05-24 15:35:30 -04001047 GFP_NOFS);
1048 if (!pages) {
1049 ret = -ENOMEM;
1050 goto out_ra;
1051 }
1052
1053 /* find the last page to defrag */
Chris Mason1e701a32010-03-11 09:42:04 -05001054 if (range->start + range->len > range->start) {
Li Zefan151a31b2011-09-02 15:56:39 +08001055 last_index = min_t(u64, isize - 1,
Chris Mason1e701a32010-03-11 09:42:04 -05001056 range->start + range->len - 1) >> PAGE_CACHE_SHIFT;
1057 } else {
Li Zefan151a31b2011-09-02 15:56:39 +08001058 last_index = (isize - 1) >> PAGE_CACHE_SHIFT;
Chris Mason1e701a32010-03-11 09:42:04 -05001059 }
1060
Chris Mason4cb53002011-05-24 15:35:30 -04001061 if (newer_than) {
1062 ret = find_new_extents(root, inode, newer_than,
1063 &newer_off, 64 * 1024);
1064 if (!ret) {
1065 range->start = newer_off;
1066 /*
1067 * we always align our defrag to help keep
1068 * the extents in the file evenly spaced
1069 */
1070 i = (newer_off & new_align) >> PAGE_CACHE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001071 } else
1072 goto out_ra;
1073 } else {
1074 i = range->start >> PAGE_CACHE_SHIFT;
1075 }
1076 if (!max_to_defrag)
Liu Bo7ec31b52012-01-26 15:01:12 -05001077 max_to_defrag = last_index + 1;
Chris Mason4cb53002011-05-24 15:35:30 -04001078
Li Zefan2a0f7f52011-10-10 15:43:34 -04001079 /*
1080 * make writeback starts from i, so the defrag range can be
1081 * written sequentially.
1082 */
1083 if (i < inode->i_mapping->writeback_index)
1084 inode->i_mapping->writeback_index = i;
1085
Chris Masonf7f43cc2011-10-11 11:41:40 -04001086 while (i <= last_index && defrag_count < max_to_defrag &&
1087 (i < (i_size_read(inode) + PAGE_CACHE_SIZE - 1) >>
1088 PAGE_CACHE_SHIFT)) {
Chris Mason4cb53002011-05-24 15:35:30 -04001089 /*
1090 * make sure we stop running if someone unmounts
1091 * the FS
1092 */
1093 if (!(inode->i_sb->s_flags & MS_ACTIVE))
1094 break;
1095
1096 if (!newer_than &&
1097 !should_defrag_range(inode, (u64)i << PAGE_CACHE_SHIFT,
Chris Mason1e701a32010-03-11 09:42:04 -05001098 PAGE_CACHE_SIZE,
Chris Mason4cb53002011-05-24 15:35:30 -04001099 extent_thresh,
Chris Mason1e701a32010-03-11 09:42:04 -05001100 &last_len, &skip,
Chris Mason940100a2010-03-10 10:52:59 -05001101 &defrag_end)) {
1102 unsigned long next;
1103 /*
1104 * the should_defrag function tells us how much to skip
1105 * bump our counter by the suggested amount
1106 */
1107 next = (skip + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
1108 i = max(i + 1, next);
1109 continue;
1110 }
Li Zefan008873e2011-09-02 15:57:07 +08001111
1112 if (!newer_than) {
1113 cluster = (PAGE_CACHE_ALIGN(defrag_end) >>
1114 PAGE_CACHE_SHIFT) - i;
1115 cluster = min(cluster, max_cluster);
1116 } else {
1117 cluster = max_cluster;
1118 }
1119
Chris Mason1e701a32010-03-11 09:42:04 -05001120 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)
Li Zefan1a419d82010-10-25 15:12:50 +08001121 BTRFS_I(inode)->force_compress = compress_type;
Chris Mason940100a2010-03-10 10:52:59 -05001122
Li Zefan008873e2011-09-02 15:57:07 +08001123 if (i + cluster > ra_index) {
1124 ra_index = max(i, ra_index);
1125 btrfs_force_ra(inode->i_mapping, ra, file, ra_index,
1126 cluster);
1127 ra_index += max_cluster;
1128 }
Chris Mason940100a2010-03-10 10:52:59 -05001129
Li Zefan008873e2011-09-02 15:57:07 +08001130 ret = cluster_pages_for_defrag(inode, pages, i, cluster);
Chris Mason4cb53002011-05-24 15:35:30 -04001131 if (ret < 0)
1132 goto out_ra;
Chris Mason940100a2010-03-10 10:52:59 -05001133
Chris Mason4cb53002011-05-24 15:35:30 -04001134 defrag_count += ret;
1135 balance_dirty_pages_ratelimited_nr(inode->i_mapping, ret);
Chris Mason4cb53002011-05-24 15:35:30 -04001136
1137 if (newer_than) {
1138 if (newer_off == (u64)-1)
1139 break;
1140
1141 newer_off = max(newer_off + 1,
1142 (u64)i << PAGE_CACHE_SHIFT);
1143
1144 ret = find_new_extents(root, inode,
1145 newer_than, &newer_off,
1146 64 * 1024);
1147 if (!ret) {
1148 range->start = newer_off;
1149 i = (newer_off & new_align) >> PAGE_CACHE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001150 } else {
1151 break;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001152 }
Chris Mason4cb53002011-05-24 15:35:30 -04001153 } else {
Li Zefan008873e2011-09-02 15:57:07 +08001154 if (ret > 0) {
Li Zefancbcc8322011-09-02 15:56:25 +08001155 i += ret;
Li Zefan008873e2011-09-02 15:57:07 +08001156 last_len += ret << PAGE_CACHE_SHIFT;
1157 } else {
Li Zefancbcc8322011-09-02 15:56:25 +08001158 i++;
Li Zefan008873e2011-09-02 15:57:07 +08001159 last_len = 0;
1160 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001161 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001162 }
1163
Chris Mason1e701a32010-03-11 09:42:04 -05001164 if ((range->flags & BTRFS_DEFRAG_RANGE_START_IO))
1165 filemap_flush(inode->i_mapping);
1166
1167 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
1168 /* the filemap_flush will queue IO into the worker threads, but
1169 * we have to make sure the IO is actually started and that
1170 * ordered extents get created before we return
1171 */
1172 atomic_inc(&root->fs_info->async_submit_draining);
1173 while (atomic_read(&root->fs_info->nr_async_submits) ||
1174 atomic_read(&root->fs_info->async_delalloc_pages)) {
1175 wait_event(root->fs_info->async_submit_wait,
1176 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
1177 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
1178 }
1179 atomic_dec(&root->fs_info->async_submit_draining);
1180
1181 mutex_lock(&inode->i_mutex);
Li Zefan261507a02010-12-17 14:21:50 +08001182 BTRFS_I(inode)->force_compress = BTRFS_COMPRESS_NONE;
Chris Mason1e701a32010-03-11 09:42:04 -05001183 mutex_unlock(&inode->i_mutex);
1184 }
1185
David Sterba6c417612011-04-13 15:41:04 +02001186 disk_super = root->fs_info->super_copy;
Li Zefan1a419d82010-10-25 15:12:50 +08001187 features = btrfs_super_incompat_flags(disk_super);
1188 if (range->compress_type == BTRFS_COMPRESS_LZO) {
1189 features |= BTRFS_FEATURE_INCOMPAT_COMPRESS_LZO;
1190 btrfs_set_super_incompat_flags(disk_super, features);
1191 }
1192
Diego Calleja60ccf822011-09-01 16:33:57 +02001193 ret = defrag_count;
Chris Mason940100a2010-03-10 10:52:59 -05001194
Chris Mason4cb53002011-05-24 15:35:30 -04001195out_ra:
1196 if (!file)
1197 kfree(ra);
1198 kfree(pages);
Chris Mason940100a2010-03-10 10:52:59 -05001199 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001200}
1201
Yan, Zheng76dda932009-09-21 16:00:26 -04001202static noinline int btrfs_ioctl_resize(struct btrfs_root *root,
1203 void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001204{
1205 u64 new_size;
1206 u64 old_size;
1207 u64 devid = 1;
1208 struct btrfs_ioctl_vol_args *vol_args;
1209 struct btrfs_trans_handle *trans;
1210 struct btrfs_device *device = NULL;
1211 char *sizestr;
1212 char *devstr = NULL;
1213 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001214 int mod = 0;
1215
Yan Zhengc146afa2008-11-12 14:34:12 -05001216 if (root->fs_info->sb->s_flags & MS_RDONLY)
1217 return -EROFS;
1218
Chris Masone441d542009-01-05 16:57:23 -05001219 if (!capable(CAP_SYS_ADMIN))
1220 return -EPERM;
1221
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001222 mutex_lock(&root->fs_info->volume_mutex);
1223 if (root->fs_info->balance_ctl) {
1224 printk(KERN_INFO "btrfs: balance in progress\n");
1225 ret = -EINVAL;
1226 goto out;
1227 }
1228
Li Zefandae7b662009-04-08 15:06:54 +08001229 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001230 if (IS_ERR(vol_args)) {
1231 ret = PTR_ERR(vol_args);
1232 goto out;
1233 }
Mark Fasheh5516e592008-07-24 12:20:14 -04001234
1235 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001236
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001237 sizestr = vol_args->name;
1238 devstr = strchr(sizestr, ':');
1239 if (devstr) {
1240 char *end;
1241 sizestr = devstr + 1;
1242 *devstr = '\0';
1243 devstr = vol_args->name;
1244 devid = simple_strtoull(devstr, &end, 10);
Arnd Hannemann5bb14682011-11-20 07:33:38 -05001245 printk(KERN_INFO "btrfs: resizing devid %llu\n",
Joel Becker21380932009-04-21 12:38:29 -07001246 (unsigned long long)devid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001247 }
Yan Zheng2b820322008-11-17 21:11:30 -05001248 device = btrfs_find_device(root, devid, NULL, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001249 if (!device) {
Arnd Hannemann5bb14682011-11-20 07:33:38 -05001250 printk(KERN_INFO "btrfs: resizer unable to find device %llu\n",
Joel Becker21380932009-04-21 12:38:29 -07001251 (unsigned long long)devid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001252 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001253 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001254 }
1255 if (!strcmp(sizestr, "max"))
1256 new_size = device->bdev->bd_inode->i_size;
1257 else {
1258 if (sizestr[0] == '-') {
1259 mod = -1;
1260 sizestr++;
1261 } else if (sizestr[0] == '+') {
1262 mod = 1;
1263 sizestr++;
1264 }
Akinobu Mita91748462010-02-28 10:59:11 +00001265 new_size = memparse(sizestr, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001266 if (new_size == 0) {
1267 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001268 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001269 }
1270 }
1271
1272 old_size = device->total_bytes;
1273
1274 if (mod < 0) {
1275 if (new_size > old_size) {
1276 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001277 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001278 }
1279 new_size = old_size - new_size;
1280 } else if (mod > 0) {
1281 new_size = old_size + new_size;
1282 }
1283
1284 if (new_size < 256 * 1024 * 1024) {
1285 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001286 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001287 }
1288 if (new_size > device->bdev->bd_inode->i_size) {
1289 ret = -EFBIG;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001290 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001291 }
1292
1293 do_div(new_size, root->sectorsize);
1294 new_size *= root->sectorsize;
1295
Arnd Hannemann5bb14682011-11-20 07:33:38 -05001296 printk(KERN_INFO "btrfs: new size for %s is %llu\n",
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001297 device->name, (unsigned long long)new_size);
1298
1299 if (new_size > old_size) {
Yan, Zhenga22285a2010-05-16 10:48:46 -04001300 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001301 if (IS_ERR(trans)) {
1302 ret = PTR_ERR(trans);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001303 goto out_free;
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001304 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001305 ret = btrfs_grow_device(trans, device, new_size);
1306 btrfs_commit_transaction(trans, root);
Mike Fleetwoodece7d202011-11-18 18:55:01 +00001307 } else if (new_size < old_size) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001308 ret = btrfs_shrink_device(device, new_size);
1309 }
1310
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001311out_free:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001312 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001313out:
1314 mutex_unlock(&root->fs_info->volume_mutex);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001315 return ret;
1316}
1317
Sage Weil72fd0322010-10-29 15:41:32 -04001318static noinline int btrfs_ioctl_snap_create_transid(struct file *file,
1319 char *name,
1320 unsigned long fd,
1321 int subvol,
Li Zefanb83cc962010-12-20 16:04:08 +08001322 u64 *transid,
1323 bool readonly)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001324{
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001325 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
Chris Mason3de45862008-11-17 21:02:50 -05001326 struct file *src_file;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001327 int namelen;
Chris Mason3de45862008-11-17 21:02:50 -05001328 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001329
Yan Zhengc146afa2008-11-12 14:34:12 -05001330 if (root->fs_info->sb->s_flags & MS_RDONLY)
1331 return -EROFS;
1332
Sage Weil72fd0322010-10-29 15:41:32 -04001333 namelen = strlen(name);
1334 if (strchr(name, '/')) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001335 ret = -EINVAL;
1336 goto out;
1337 }
1338
Chris Mason16780ca2012-02-20 22:14:55 -05001339 if (name[0] == '.' &&
1340 (namelen == 1 || (name[1] == '.' && namelen == 2))) {
1341 ret = -EEXIST;
1342 goto out;
1343 }
1344
Chris Mason3de45862008-11-17 21:02:50 -05001345 if (subvol) {
Sage Weil72fd0322010-10-29 15:41:32 -04001346 ret = btrfs_mksubvol(&file->f_path, name, namelen,
Li Zefanb83cc962010-12-20 16:04:08 +08001347 NULL, transid, readonly);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001348 } else {
Chris Mason3de45862008-11-17 21:02:50 -05001349 struct inode *src_inode;
Sage Weil72fd0322010-10-29 15:41:32 -04001350 src_file = fget(fd);
Chris Mason3de45862008-11-17 21:02:50 -05001351 if (!src_file) {
1352 ret = -EINVAL;
1353 goto out;
1354 }
1355
1356 src_inode = src_file->f_path.dentry->d_inode;
1357 if (src_inode->i_sb != file->f_path.dentry->d_inode->i_sb) {
Chris Masond3977122009-01-05 21:25:51 -05001358 printk(KERN_INFO "btrfs: Snapshot src from "
1359 "another FS\n");
Chris Mason3de45862008-11-17 21:02:50 -05001360 ret = -EINVAL;
1361 fput(src_file);
1362 goto out;
1363 }
Sage Weil72fd0322010-10-29 15:41:32 -04001364 ret = btrfs_mksubvol(&file->f_path, name, namelen,
1365 BTRFS_I(src_inode)->root,
Li Zefanb83cc962010-12-20 16:04:08 +08001366 transid, readonly);
Chris Mason3de45862008-11-17 21:02:50 -05001367 fput(src_file);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001368 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001369out:
Sage Weil72fd0322010-10-29 15:41:32 -04001370 return ret;
1371}
1372
1373static noinline int btrfs_ioctl_snap_create(struct file *file,
Li Zefanfa0d2b92010-12-20 15:53:28 +08001374 void __user *arg, int subvol)
Sage Weil72fd0322010-10-29 15:41:32 -04001375{
Li Zefanfa0d2b92010-12-20 15:53:28 +08001376 struct btrfs_ioctl_vol_args *vol_args;
Sage Weil72fd0322010-10-29 15:41:32 -04001377 int ret;
1378
Li Zefanfa0d2b92010-12-20 15:53:28 +08001379 vol_args = memdup_user(arg, sizeof(*vol_args));
1380 if (IS_ERR(vol_args))
1381 return PTR_ERR(vol_args);
1382 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Sage Weil72fd0322010-10-29 15:41:32 -04001383
Li Zefanfa0d2b92010-12-20 15:53:28 +08001384 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
Li Zefanb83cc962010-12-20 16:04:08 +08001385 vol_args->fd, subvol,
1386 NULL, false);
Li Zefanfdfb1e42010-12-10 06:41:56 +00001387
Li Zefanfa0d2b92010-12-20 15:53:28 +08001388 kfree(vol_args);
1389 return ret;
1390}
Li Zefanfdfb1e42010-12-10 06:41:56 +00001391
Li Zefanfa0d2b92010-12-20 15:53:28 +08001392static noinline int btrfs_ioctl_snap_create_v2(struct file *file,
1393 void __user *arg, int subvol)
1394{
1395 struct btrfs_ioctl_vol_args_v2 *vol_args;
1396 int ret;
1397 u64 transid = 0;
1398 u64 *ptr = NULL;
Li Zefanb83cc962010-12-20 16:04:08 +08001399 bool readonly = false;
Li Zefanfdfb1e42010-12-10 06:41:56 +00001400
Li Zefanfa0d2b92010-12-20 15:53:28 +08001401 vol_args = memdup_user(arg, sizeof(*vol_args));
1402 if (IS_ERR(vol_args))
1403 return PTR_ERR(vol_args);
1404 vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
Sage Weil75eaa0e2010-12-10 00:36:28 +00001405
Li Zefanb83cc962010-12-20 16:04:08 +08001406 if (vol_args->flags &
1407 ~(BTRFS_SUBVOL_CREATE_ASYNC | BTRFS_SUBVOL_RDONLY)) {
1408 ret = -EOPNOTSUPP;
Li Zefanfa0d2b92010-12-20 15:53:28 +08001409 goto out;
Sage Weil72fd0322010-10-29 15:41:32 -04001410 }
Li Zefanfa0d2b92010-12-20 15:53:28 +08001411
1412 if (vol_args->flags & BTRFS_SUBVOL_CREATE_ASYNC)
1413 ptr = &transid;
Li Zefanb83cc962010-12-20 16:04:08 +08001414 if (vol_args->flags & BTRFS_SUBVOL_RDONLY)
1415 readonly = true;
Li Zefanfa0d2b92010-12-20 15:53:28 +08001416
1417 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
Li Zefanb83cc962010-12-20 16:04:08 +08001418 vol_args->fd, subvol,
1419 ptr, readonly);
Li Zefanfa0d2b92010-12-20 15:53:28 +08001420
1421 if (ret == 0 && ptr &&
1422 copy_to_user(arg +
1423 offsetof(struct btrfs_ioctl_vol_args_v2,
1424 transid), ptr, sizeof(*ptr)))
1425 ret = -EFAULT;
Li Zefanfdfb1e42010-12-10 06:41:56 +00001426out:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001427 kfree(vol_args);
1428 return ret;
1429}
1430
Li Zefan0caa1022010-12-20 16:30:25 +08001431static noinline int btrfs_ioctl_subvol_getflags(struct file *file,
1432 void __user *arg)
1433{
1434 struct inode *inode = fdentry(file)->d_inode;
1435 struct btrfs_root *root = BTRFS_I(inode)->root;
1436 int ret = 0;
1437 u64 flags = 0;
1438
Li Zefan33345d012011-04-20 10:31:50 +08001439 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID)
Li Zefan0caa1022010-12-20 16:30:25 +08001440 return -EINVAL;
1441
1442 down_read(&root->fs_info->subvol_sem);
1443 if (btrfs_root_readonly(root))
1444 flags |= BTRFS_SUBVOL_RDONLY;
1445 up_read(&root->fs_info->subvol_sem);
1446
1447 if (copy_to_user(arg, &flags, sizeof(flags)))
1448 ret = -EFAULT;
1449
1450 return ret;
1451}
1452
1453static noinline int btrfs_ioctl_subvol_setflags(struct file *file,
1454 void __user *arg)
1455{
1456 struct inode *inode = fdentry(file)->d_inode;
1457 struct btrfs_root *root = BTRFS_I(inode)->root;
1458 struct btrfs_trans_handle *trans;
1459 u64 root_flags;
1460 u64 flags;
1461 int ret = 0;
1462
1463 if (root->fs_info->sb->s_flags & MS_RDONLY)
1464 return -EROFS;
1465
Li Zefan33345d012011-04-20 10:31:50 +08001466 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID)
Li Zefan0caa1022010-12-20 16:30:25 +08001467 return -EINVAL;
1468
1469 if (copy_from_user(&flags, arg, sizeof(flags)))
1470 return -EFAULT;
1471
Li Zefanb4dc2b82011-02-16 06:06:34 +00001472 if (flags & BTRFS_SUBVOL_CREATE_ASYNC)
Li Zefan0caa1022010-12-20 16:30:25 +08001473 return -EINVAL;
1474
1475 if (flags & ~BTRFS_SUBVOL_RDONLY)
1476 return -EOPNOTSUPP;
1477
Serge E. Hallyn2e149672011-03-23 16:43:26 -07001478 if (!inode_owner_or_capable(inode))
Li Zefanb4dc2b82011-02-16 06:06:34 +00001479 return -EACCES;
1480
Li Zefan0caa1022010-12-20 16:30:25 +08001481 down_write(&root->fs_info->subvol_sem);
1482
1483 /* nothing to do */
1484 if (!!(flags & BTRFS_SUBVOL_RDONLY) == btrfs_root_readonly(root))
1485 goto out;
1486
1487 root_flags = btrfs_root_flags(&root->root_item);
1488 if (flags & BTRFS_SUBVOL_RDONLY)
1489 btrfs_set_root_flags(&root->root_item,
1490 root_flags | BTRFS_ROOT_SUBVOL_RDONLY);
1491 else
1492 btrfs_set_root_flags(&root->root_item,
1493 root_flags & ~BTRFS_ROOT_SUBVOL_RDONLY);
1494
1495 trans = btrfs_start_transaction(root, 1);
1496 if (IS_ERR(trans)) {
1497 ret = PTR_ERR(trans);
1498 goto out_reset;
1499 }
1500
Li Zefanb4dc2b82011-02-16 06:06:34 +00001501 ret = btrfs_update_root(trans, root->fs_info->tree_root,
Li Zefan0caa1022010-12-20 16:30:25 +08001502 &root->root_key, &root->root_item);
1503
1504 btrfs_commit_transaction(trans, root);
1505out_reset:
1506 if (ret)
1507 btrfs_set_root_flags(&root->root_item, root_flags);
1508out:
1509 up_write(&root->fs_info->subvol_sem);
1510 return ret;
1511}
1512
Yan, Zheng76dda932009-09-21 16:00:26 -04001513/*
1514 * helper to check if the subvolume references other subvolumes
1515 */
1516static noinline int may_destroy_subvol(struct btrfs_root *root)
1517{
1518 struct btrfs_path *path;
1519 struct btrfs_key key;
1520 int ret;
1521
1522 path = btrfs_alloc_path();
1523 if (!path)
1524 return -ENOMEM;
1525
1526 key.objectid = root->root_key.objectid;
1527 key.type = BTRFS_ROOT_REF_KEY;
1528 key.offset = (u64)-1;
1529
1530 ret = btrfs_search_slot(NULL, root->fs_info->tree_root,
1531 &key, path, 0, 0);
1532 if (ret < 0)
1533 goto out;
1534 BUG_ON(ret == 0);
1535
1536 ret = 0;
1537 if (path->slots[0] > 0) {
1538 path->slots[0]--;
1539 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1540 if (key.objectid == root->root_key.objectid &&
1541 key.type == BTRFS_ROOT_REF_KEY)
1542 ret = -ENOTEMPTY;
1543 }
1544out:
1545 btrfs_free_path(path);
1546 return ret;
1547}
1548
Chris Masonac8e9812010-02-28 15:39:26 -05001549static noinline int key_in_sk(struct btrfs_key *key,
1550 struct btrfs_ioctl_search_key *sk)
1551{
Chris Masonabc6e132010-03-18 12:10:08 -04001552 struct btrfs_key test;
1553 int ret;
1554
1555 test.objectid = sk->min_objectid;
1556 test.type = sk->min_type;
1557 test.offset = sk->min_offset;
1558
1559 ret = btrfs_comp_cpu_keys(key, &test);
1560 if (ret < 0)
Chris Masonac8e9812010-02-28 15:39:26 -05001561 return 0;
Chris Masonabc6e132010-03-18 12:10:08 -04001562
1563 test.objectid = sk->max_objectid;
1564 test.type = sk->max_type;
1565 test.offset = sk->max_offset;
1566
1567 ret = btrfs_comp_cpu_keys(key, &test);
1568 if (ret > 0)
Chris Masonac8e9812010-02-28 15:39:26 -05001569 return 0;
1570 return 1;
1571}
1572
1573static noinline int copy_to_sk(struct btrfs_root *root,
1574 struct btrfs_path *path,
1575 struct btrfs_key *key,
1576 struct btrfs_ioctl_search_key *sk,
1577 char *buf,
1578 unsigned long *sk_offset,
1579 int *num_found)
1580{
1581 u64 found_transid;
1582 struct extent_buffer *leaf;
1583 struct btrfs_ioctl_search_header sh;
1584 unsigned long item_off;
1585 unsigned long item_len;
1586 int nritems;
1587 int i;
1588 int slot;
Chris Masonac8e9812010-02-28 15:39:26 -05001589 int ret = 0;
1590
1591 leaf = path->nodes[0];
1592 slot = path->slots[0];
1593 nritems = btrfs_header_nritems(leaf);
1594
1595 if (btrfs_header_generation(leaf) > sk->max_transid) {
1596 i = nritems;
1597 goto advance_key;
1598 }
1599 found_transid = btrfs_header_generation(leaf);
1600
1601 for (i = slot; i < nritems; i++) {
1602 item_off = btrfs_item_ptr_offset(leaf, i);
1603 item_len = btrfs_item_size_nr(leaf, i);
1604
1605 if (item_len > BTRFS_SEARCH_ARGS_BUFSIZE)
1606 item_len = 0;
1607
1608 if (sizeof(sh) + item_len + *sk_offset >
1609 BTRFS_SEARCH_ARGS_BUFSIZE) {
1610 ret = 1;
1611 goto overflow;
1612 }
1613
1614 btrfs_item_key_to_cpu(leaf, key, i);
1615 if (!key_in_sk(key, sk))
1616 continue;
1617
1618 sh.objectid = key->objectid;
1619 sh.offset = key->offset;
1620 sh.type = key->type;
1621 sh.len = item_len;
1622 sh.transid = found_transid;
1623
1624 /* copy search result header */
1625 memcpy(buf + *sk_offset, &sh, sizeof(sh));
1626 *sk_offset += sizeof(sh);
1627
1628 if (item_len) {
1629 char *p = buf + *sk_offset;
1630 /* copy the item */
1631 read_extent_buffer(leaf, p,
1632 item_off, item_len);
1633 *sk_offset += item_len;
Chris Masonac8e9812010-02-28 15:39:26 -05001634 }
Hugo Millse2156862011-05-14 17:43:41 +00001635 (*num_found)++;
Chris Masonac8e9812010-02-28 15:39:26 -05001636
1637 if (*num_found >= sk->nr_items)
1638 break;
1639 }
1640advance_key:
Chris Masonac8e9812010-02-28 15:39:26 -05001641 ret = 0;
Chris Masonabc6e132010-03-18 12:10:08 -04001642 if (key->offset < (u64)-1 && key->offset < sk->max_offset)
1643 key->offset++;
1644 else if (key->type < (u8)-1 && key->type < sk->max_type) {
1645 key->offset = 0;
1646 key->type++;
1647 } else if (key->objectid < (u64)-1 && key->objectid < sk->max_objectid) {
1648 key->offset = 0;
1649 key->type = 0;
1650 key->objectid++;
1651 } else
1652 ret = 1;
Chris Masonac8e9812010-02-28 15:39:26 -05001653overflow:
Chris Masonac8e9812010-02-28 15:39:26 -05001654 return ret;
1655}
1656
1657static noinline int search_ioctl(struct inode *inode,
1658 struct btrfs_ioctl_search_args *args)
1659{
1660 struct btrfs_root *root;
1661 struct btrfs_key key;
1662 struct btrfs_key max_key;
1663 struct btrfs_path *path;
1664 struct btrfs_ioctl_search_key *sk = &args->key;
1665 struct btrfs_fs_info *info = BTRFS_I(inode)->root->fs_info;
1666 int ret;
1667 int num_found = 0;
1668 unsigned long sk_offset = 0;
1669
1670 path = btrfs_alloc_path();
1671 if (!path)
1672 return -ENOMEM;
1673
1674 if (sk->tree_id == 0) {
1675 /* search the root of the inode that was passed */
1676 root = BTRFS_I(inode)->root;
1677 } else {
1678 key.objectid = sk->tree_id;
1679 key.type = BTRFS_ROOT_ITEM_KEY;
1680 key.offset = (u64)-1;
1681 root = btrfs_read_fs_root_no_name(info, &key);
1682 if (IS_ERR(root)) {
1683 printk(KERN_ERR "could not find root %llu\n",
1684 sk->tree_id);
1685 btrfs_free_path(path);
1686 return -ENOENT;
1687 }
1688 }
1689
1690 key.objectid = sk->min_objectid;
1691 key.type = sk->min_type;
1692 key.offset = sk->min_offset;
1693
1694 max_key.objectid = sk->max_objectid;
1695 max_key.type = sk->max_type;
1696 max_key.offset = sk->max_offset;
1697
1698 path->keep_locks = 1;
1699
1700 while(1) {
1701 ret = btrfs_search_forward(root, &key, &max_key, path, 0,
1702 sk->min_transid);
1703 if (ret != 0) {
1704 if (ret > 0)
1705 ret = 0;
1706 goto err;
1707 }
1708 ret = copy_to_sk(root, path, &key, sk, args->buf,
1709 &sk_offset, &num_found);
David Sterbab3b4aa72011-04-21 01:20:15 +02001710 btrfs_release_path(path);
Chris Masonac8e9812010-02-28 15:39:26 -05001711 if (ret || num_found >= sk->nr_items)
1712 break;
1713
1714 }
1715 ret = 0;
1716err:
1717 sk->nr_items = num_found;
1718 btrfs_free_path(path);
1719 return ret;
1720}
1721
1722static noinline int btrfs_ioctl_tree_search(struct file *file,
1723 void __user *argp)
1724{
1725 struct btrfs_ioctl_search_args *args;
1726 struct inode *inode;
1727 int ret;
1728
1729 if (!capable(CAP_SYS_ADMIN))
1730 return -EPERM;
1731
Julia Lawall2354d082010-10-29 15:14:18 -04001732 args = memdup_user(argp, sizeof(*args));
1733 if (IS_ERR(args))
1734 return PTR_ERR(args);
Chris Masonac8e9812010-02-28 15:39:26 -05001735
Chris Masonac8e9812010-02-28 15:39:26 -05001736 inode = fdentry(file)->d_inode;
1737 ret = search_ioctl(inode, args);
1738 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
1739 ret = -EFAULT;
1740 kfree(args);
1741 return ret;
1742}
1743
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001744/*
Chris Masonac8e9812010-02-28 15:39:26 -05001745 * Search INODE_REFs to identify path name of 'dirid' directory
1746 * in a 'tree_id' tree. and sets path name to 'name'.
1747 */
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001748static noinline int btrfs_search_path_in_tree(struct btrfs_fs_info *info,
1749 u64 tree_id, u64 dirid, char *name)
1750{
1751 struct btrfs_root *root;
1752 struct btrfs_key key;
Chris Masonac8e9812010-02-28 15:39:26 -05001753 char *ptr;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001754 int ret = -1;
1755 int slot;
1756 int len;
1757 int total_len = 0;
1758 struct btrfs_inode_ref *iref;
1759 struct extent_buffer *l;
1760 struct btrfs_path *path;
1761
1762 if (dirid == BTRFS_FIRST_FREE_OBJECTID) {
1763 name[0]='\0';
1764 return 0;
1765 }
1766
1767 path = btrfs_alloc_path();
1768 if (!path)
1769 return -ENOMEM;
1770
Chris Masonac8e9812010-02-28 15:39:26 -05001771 ptr = &name[BTRFS_INO_LOOKUP_PATH_MAX];
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001772
1773 key.objectid = tree_id;
1774 key.type = BTRFS_ROOT_ITEM_KEY;
1775 key.offset = (u64)-1;
1776 root = btrfs_read_fs_root_no_name(info, &key);
1777 if (IS_ERR(root)) {
1778 printk(KERN_ERR "could not find root %llu\n", tree_id);
Chris Mason8ad6fca2010-03-18 12:23:10 -04001779 ret = -ENOENT;
1780 goto out;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001781 }
1782
1783 key.objectid = dirid;
1784 key.type = BTRFS_INODE_REF_KEY;
Chris Mason8ad6fca2010-03-18 12:23:10 -04001785 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001786
1787 while(1) {
1788 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1789 if (ret < 0)
1790 goto out;
1791
1792 l = path->nodes[0];
1793 slot = path->slots[0];
Chris Mason8ad6fca2010-03-18 12:23:10 -04001794 if (ret > 0 && slot > 0)
1795 slot--;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001796 btrfs_item_key_to_cpu(l, &key, slot);
1797
1798 if (ret > 0 && (key.objectid != dirid ||
Chris Masonac8e9812010-02-28 15:39:26 -05001799 key.type != BTRFS_INODE_REF_KEY)) {
1800 ret = -ENOENT;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001801 goto out;
Chris Masonac8e9812010-02-28 15:39:26 -05001802 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001803
1804 iref = btrfs_item_ptr(l, slot, struct btrfs_inode_ref);
1805 len = btrfs_inode_ref_name_len(l, iref);
1806 ptr -= len + 1;
1807 total_len += len + 1;
Chris Masonac8e9812010-02-28 15:39:26 -05001808 if (ptr < name)
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001809 goto out;
1810
1811 *(ptr + len) = '/';
1812 read_extent_buffer(l, ptr,(unsigned long)(iref + 1), len);
1813
1814 if (key.offset == BTRFS_FIRST_FREE_OBJECTID)
1815 break;
1816
David Sterbab3b4aa72011-04-21 01:20:15 +02001817 btrfs_release_path(path);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001818 key.objectid = key.offset;
Chris Mason8ad6fca2010-03-18 12:23:10 -04001819 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001820 dirid = key.objectid;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001821 }
Chris Masonac8e9812010-02-28 15:39:26 -05001822 if (ptr < name)
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001823 goto out;
Li Zefan77906a502011-07-14 03:16:00 +00001824 memmove(name, ptr, total_len);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001825 name[total_len]='\0';
1826 ret = 0;
1827out:
1828 btrfs_free_path(path);
Chris Masonac8e9812010-02-28 15:39:26 -05001829 return ret;
1830}
1831
1832static noinline int btrfs_ioctl_ino_lookup(struct file *file,
1833 void __user *argp)
1834{
1835 struct btrfs_ioctl_ino_lookup_args *args;
1836 struct inode *inode;
1837 int ret;
1838
1839 if (!capable(CAP_SYS_ADMIN))
1840 return -EPERM;
1841
Julia Lawall2354d082010-10-29 15:14:18 -04001842 args = memdup_user(argp, sizeof(*args));
1843 if (IS_ERR(args))
1844 return PTR_ERR(args);
Dan Carpenterc2b96922010-03-20 11:24:15 +00001845
Chris Masonac8e9812010-02-28 15:39:26 -05001846 inode = fdentry(file)->d_inode;
1847
Chris Mason1b53ac42010-03-18 12:17:05 -04001848 if (args->treeid == 0)
1849 args->treeid = BTRFS_I(inode)->root->root_key.objectid;
1850
Chris Masonac8e9812010-02-28 15:39:26 -05001851 ret = btrfs_search_path_in_tree(BTRFS_I(inode)->root->fs_info,
1852 args->treeid, args->objectid,
1853 args->name);
1854
1855 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
1856 ret = -EFAULT;
1857
1858 kfree(args);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001859 return ret;
1860}
1861
Yan, Zheng76dda932009-09-21 16:00:26 -04001862static noinline int btrfs_ioctl_snap_destroy(struct file *file,
1863 void __user *arg)
1864{
1865 struct dentry *parent = fdentry(file);
1866 struct dentry *dentry;
1867 struct inode *dir = parent->d_inode;
1868 struct inode *inode;
1869 struct btrfs_root *root = BTRFS_I(dir)->root;
1870 struct btrfs_root *dest = NULL;
1871 struct btrfs_ioctl_vol_args *vol_args;
1872 struct btrfs_trans_handle *trans;
1873 int namelen;
1874 int ret;
1875 int err = 0;
1876
Yan, Zheng76dda932009-09-21 16:00:26 -04001877 vol_args = memdup_user(arg, sizeof(*vol_args));
1878 if (IS_ERR(vol_args))
1879 return PTR_ERR(vol_args);
1880
1881 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
1882 namelen = strlen(vol_args->name);
1883 if (strchr(vol_args->name, '/') ||
1884 strncmp(vol_args->name, "..", namelen) == 0) {
1885 err = -EINVAL;
1886 goto out;
1887 }
1888
Al Viroa561be72011-11-23 11:57:51 -05001889 err = mnt_want_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04001890 if (err)
1891 goto out;
1892
1893 mutex_lock_nested(&dir->i_mutex, I_MUTEX_PARENT);
1894 dentry = lookup_one_len(vol_args->name, parent, namelen);
1895 if (IS_ERR(dentry)) {
1896 err = PTR_ERR(dentry);
1897 goto out_unlock_dir;
1898 }
1899
1900 if (!dentry->d_inode) {
1901 err = -ENOENT;
1902 goto out_dput;
1903 }
1904
1905 inode = dentry->d_inode;
Sage Weil4260f7c2010-10-29 15:46:43 -04001906 dest = BTRFS_I(inode)->root;
1907 if (!capable(CAP_SYS_ADMIN)){
1908 /*
1909 * Regular user. Only allow this with a special mount
1910 * option, when the user has write+exec access to the
1911 * subvol root, and when rmdir(2) would have been
1912 * allowed.
1913 *
1914 * Note that this is _not_ check that the subvol is
1915 * empty or doesn't contain data that we wouldn't
1916 * otherwise be able to delete.
1917 *
1918 * Users who want to delete empty subvols should try
1919 * rmdir(2).
1920 */
1921 err = -EPERM;
1922 if (!btrfs_test_opt(root, USER_SUBVOL_RM_ALLOWED))
1923 goto out_dput;
1924
1925 /*
1926 * Do not allow deletion if the parent dir is the same
1927 * as the dir to be deleted. That means the ioctl
1928 * must be called on the dentry referencing the root
1929 * of the subvol, not a random directory contained
1930 * within it.
1931 */
1932 err = -EINVAL;
1933 if (root == dest)
1934 goto out_dput;
1935
1936 err = inode_permission(inode, MAY_WRITE | MAY_EXEC);
1937 if (err)
1938 goto out_dput;
1939
1940 /* check if subvolume may be deleted by a non-root user */
1941 err = btrfs_may_delete(dir, dentry, 1);
1942 if (err)
1943 goto out_dput;
1944 }
1945
Li Zefan33345d012011-04-20 10:31:50 +08001946 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
Yan, Zheng76dda932009-09-21 16:00:26 -04001947 err = -EINVAL;
1948 goto out_dput;
1949 }
1950
Yan, Zheng76dda932009-09-21 16:00:26 -04001951 mutex_lock(&inode->i_mutex);
1952 err = d_invalidate(dentry);
1953 if (err)
1954 goto out_unlock;
1955
1956 down_write(&root->fs_info->subvol_sem);
1957
1958 err = may_destroy_subvol(dest);
1959 if (err)
1960 goto out_up_write;
1961
Yan, Zhenga22285a2010-05-16 10:48:46 -04001962 trans = btrfs_start_transaction(root, 0);
1963 if (IS_ERR(trans)) {
1964 err = PTR_ERR(trans);
Dan Carpenterd3270992010-05-29 09:46:47 +00001965 goto out_up_write;
Yan, Zhenga22285a2010-05-16 10:48:46 -04001966 }
1967 trans->block_rsv = &root->fs_info->global_block_rsv;
1968
Yan, Zheng76dda932009-09-21 16:00:26 -04001969 ret = btrfs_unlink_subvol(trans, root, dir,
1970 dest->root_key.objectid,
1971 dentry->d_name.name,
1972 dentry->d_name.len);
1973 BUG_ON(ret);
1974
1975 btrfs_record_root_in_trans(trans, dest);
1976
1977 memset(&dest->root_item.drop_progress, 0,
1978 sizeof(dest->root_item.drop_progress));
1979 dest->root_item.drop_level = 0;
1980 btrfs_set_root_refs(&dest->root_item, 0);
1981
Yan, Zhengd68fc572010-05-16 10:49:58 -04001982 if (!xchg(&dest->orphan_item_inserted, 1)) {
1983 ret = btrfs_insert_orphan_item(trans,
1984 root->fs_info->tree_root,
1985 dest->root_key.objectid);
1986 BUG_ON(ret);
1987 }
Yan, Zheng76dda932009-09-21 16:00:26 -04001988
Sage Weil531cb132010-10-29 15:41:32 -04001989 ret = btrfs_end_transaction(trans, root);
Yan, Zheng76dda932009-09-21 16:00:26 -04001990 BUG_ON(ret);
1991 inode->i_flags |= S_DEAD;
1992out_up_write:
1993 up_write(&root->fs_info->subvol_sem);
1994out_unlock:
1995 mutex_unlock(&inode->i_mutex);
1996 if (!err) {
Yan, Zhengefefb142009-10-09 09:25:16 -04001997 shrink_dcache_sb(root->fs_info->sb);
Yan, Zheng76dda932009-09-21 16:00:26 -04001998 btrfs_invalidate_inodes(dest);
1999 d_delete(dentry);
2000 }
2001out_dput:
2002 dput(dentry);
2003out_unlock_dir:
2004 mutex_unlock(&dir->i_mutex);
Al Viro2a79f172011-12-09 08:06:57 -05002005 mnt_drop_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04002006out:
2007 kfree(vol_args);
2008 return err;
2009}
2010
Chris Mason1e701a32010-03-11 09:42:04 -05002011static int btrfs_ioctl_defrag(struct file *file, void __user *argp)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002012{
2013 struct inode *inode = fdentry(file)->d_inode;
2014 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason1e701a32010-03-11 09:42:04 -05002015 struct btrfs_ioctl_defrag_range_args *range;
Yan Zhengc146afa2008-11-12 14:34:12 -05002016 int ret;
2017
Li Zefanb83cc962010-12-20 16:04:08 +08002018 if (btrfs_root_readonly(root))
2019 return -EROFS;
2020
Al Viroa561be72011-11-23 11:57:51 -05002021 ret = mnt_want_write_file(file);
Yan Zhengc146afa2008-11-12 14:34:12 -05002022 if (ret)
2023 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002024
2025 switch (inode->i_mode & S_IFMT) {
2026 case S_IFDIR:
Chris Masone441d542009-01-05 16:57:23 -05002027 if (!capable(CAP_SYS_ADMIN)) {
2028 ret = -EPERM;
2029 goto out;
2030 }
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04002031 ret = btrfs_defrag_root(root, 0);
2032 if (ret)
2033 goto out;
2034 ret = btrfs_defrag_root(root->fs_info->extent_root, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002035 break;
2036 case S_IFREG:
Chris Masone441d542009-01-05 16:57:23 -05002037 if (!(file->f_mode & FMODE_WRITE)) {
2038 ret = -EINVAL;
2039 goto out;
2040 }
Chris Mason1e701a32010-03-11 09:42:04 -05002041
2042 range = kzalloc(sizeof(*range), GFP_KERNEL);
2043 if (!range) {
2044 ret = -ENOMEM;
2045 goto out;
2046 }
2047
2048 if (argp) {
2049 if (copy_from_user(range, argp,
2050 sizeof(*range))) {
2051 ret = -EFAULT;
2052 kfree(range);
Dan Carpenter683be162010-03-20 11:24:48 +00002053 goto out;
Chris Mason1e701a32010-03-11 09:42:04 -05002054 }
2055 /* compression requires us to start the IO */
2056 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
2057 range->flags |= BTRFS_DEFRAG_RANGE_START_IO;
2058 range->extent_thresh = (u32)-1;
2059 }
2060 } else {
2061 /* the rest are all set to zero by kzalloc */
2062 range->len = (u64)-1;
2063 }
Chris Mason4cb53002011-05-24 15:35:30 -04002064 ret = btrfs_defrag_file(fdentry(file)->d_inode, file,
2065 range, 0, 0);
2066 if (ret > 0)
2067 ret = 0;
Chris Mason1e701a32010-03-11 09:42:04 -05002068 kfree(range);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002069 break;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04002070 default:
2071 ret = -EINVAL;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002072 }
Chris Masone441d542009-01-05 16:57:23 -05002073out:
Al Viro2a79f172011-12-09 08:06:57 -05002074 mnt_drop_write_file(file);
Chris Masone441d542009-01-05 16:57:23 -05002075 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002076}
2077
Christoph Hellwigb2950862008-12-02 09:54:17 -05002078static long btrfs_ioctl_add_dev(struct btrfs_root *root, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002079{
2080 struct btrfs_ioctl_vol_args *vol_args;
2081 int ret;
2082
Chris Masone441d542009-01-05 16:57:23 -05002083 if (!capable(CAP_SYS_ADMIN))
2084 return -EPERM;
2085
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002086 mutex_lock(&root->fs_info->volume_mutex);
2087 if (root->fs_info->balance_ctl) {
2088 printk(KERN_INFO "btrfs: balance in progress\n");
2089 ret = -EINVAL;
2090 goto out;
2091 }
2092
Li Zefandae7b662009-04-08 15:06:54 +08002093 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002094 if (IS_ERR(vol_args)) {
2095 ret = PTR_ERR(vol_args);
2096 goto out;
2097 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002098
Mark Fasheh5516e592008-07-24 12:20:14 -04002099 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002100 ret = btrfs_init_new_device(root, vol_args->name);
2101
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002102 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002103out:
2104 mutex_unlock(&root->fs_info->volume_mutex);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002105 return ret;
2106}
2107
Christoph Hellwigb2950862008-12-02 09:54:17 -05002108static long btrfs_ioctl_rm_dev(struct btrfs_root *root, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002109{
2110 struct btrfs_ioctl_vol_args *vol_args;
2111 int ret;
2112
Chris Masone441d542009-01-05 16:57:23 -05002113 if (!capable(CAP_SYS_ADMIN))
2114 return -EPERM;
2115
Yan Zhengc146afa2008-11-12 14:34:12 -05002116 if (root->fs_info->sb->s_flags & MS_RDONLY)
2117 return -EROFS;
2118
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002119 mutex_lock(&root->fs_info->volume_mutex);
2120 if (root->fs_info->balance_ctl) {
2121 printk(KERN_INFO "btrfs: balance in progress\n");
2122 ret = -EINVAL;
2123 goto out;
2124 }
2125
Li Zefandae7b662009-04-08 15:06:54 +08002126 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002127 if (IS_ERR(vol_args)) {
2128 ret = PTR_ERR(vol_args);
2129 goto out;
2130 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002131
Mark Fasheh5516e592008-07-24 12:20:14 -04002132 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002133 ret = btrfs_rm_device(root, vol_args->name);
2134
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002135 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002136out:
2137 mutex_unlock(&root->fs_info->volume_mutex);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002138 return ret;
2139}
2140
Jan Schmidt475f6382011-03-11 15:41:01 +01002141static long btrfs_ioctl_fs_info(struct btrfs_root *root, void __user *arg)
2142{
Li Zefan027ed2f2011-06-08 08:27:56 +00002143 struct btrfs_ioctl_fs_info_args *fi_args;
Jan Schmidt475f6382011-03-11 15:41:01 +01002144 struct btrfs_device *device;
2145 struct btrfs_device *next;
2146 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
Li Zefan027ed2f2011-06-08 08:27:56 +00002147 int ret = 0;
Jan Schmidt475f6382011-03-11 15:41:01 +01002148
2149 if (!capable(CAP_SYS_ADMIN))
2150 return -EPERM;
2151
Li Zefan027ed2f2011-06-08 08:27:56 +00002152 fi_args = kzalloc(sizeof(*fi_args), GFP_KERNEL);
2153 if (!fi_args)
2154 return -ENOMEM;
2155
2156 fi_args->num_devices = fs_devices->num_devices;
2157 memcpy(&fi_args->fsid, root->fs_info->fsid, sizeof(fi_args->fsid));
Jan Schmidt475f6382011-03-11 15:41:01 +01002158
2159 mutex_lock(&fs_devices->device_list_mutex);
2160 list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) {
Li Zefan027ed2f2011-06-08 08:27:56 +00002161 if (device->devid > fi_args->max_id)
2162 fi_args->max_id = device->devid;
Jan Schmidt475f6382011-03-11 15:41:01 +01002163 }
2164 mutex_unlock(&fs_devices->device_list_mutex);
2165
Li Zefan027ed2f2011-06-08 08:27:56 +00002166 if (copy_to_user(arg, fi_args, sizeof(*fi_args)))
2167 ret = -EFAULT;
Jan Schmidt475f6382011-03-11 15:41:01 +01002168
Li Zefan027ed2f2011-06-08 08:27:56 +00002169 kfree(fi_args);
2170 return ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01002171}
2172
2173static long btrfs_ioctl_dev_info(struct btrfs_root *root, void __user *arg)
2174{
2175 struct btrfs_ioctl_dev_info_args *di_args;
2176 struct btrfs_device *dev;
2177 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
2178 int ret = 0;
2179 char *s_uuid = NULL;
2180 char empty_uuid[BTRFS_UUID_SIZE] = {0};
2181
2182 if (!capable(CAP_SYS_ADMIN))
2183 return -EPERM;
2184
2185 di_args = memdup_user(arg, sizeof(*di_args));
2186 if (IS_ERR(di_args))
2187 return PTR_ERR(di_args);
2188
2189 if (memcmp(empty_uuid, di_args->uuid, BTRFS_UUID_SIZE) != 0)
2190 s_uuid = di_args->uuid;
2191
2192 mutex_lock(&fs_devices->device_list_mutex);
2193 dev = btrfs_find_device(root, di_args->devid, s_uuid, NULL);
2194 mutex_unlock(&fs_devices->device_list_mutex);
2195
2196 if (!dev) {
2197 ret = -ENODEV;
2198 goto out;
2199 }
2200
2201 di_args->devid = dev->devid;
2202 di_args->bytes_used = dev->bytes_used;
2203 di_args->total_bytes = dev->total_bytes;
2204 memcpy(di_args->uuid, dev->uuid, sizeof(di_args->uuid));
2205 strncpy(di_args->path, dev->name, sizeof(di_args->path));
2206
2207out:
2208 if (ret == 0 && copy_to_user(arg, di_args, sizeof(*di_args)))
2209 ret = -EFAULT;
2210
2211 kfree(di_args);
2212 return ret;
2213}
2214
Yan, Zheng76dda932009-09-21 16:00:26 -04002215static noinline long btrfs_ioctl_clone(struct file *file, unsigned long srcfd,
2216 u64 off, u64 olen, u64 destoff)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002217{
2218 struct inode *inode = fdentry(file)->d_inode;
2219 struct btrfs_root *root = BTRFS_I(inode)->root;
2220 struct file *src_file;
2221 struct inode *src;
2222 struct btrfs_trans_handle *trans;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002223 struct btrfs_path *path;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002224 struct extent_buffer *leaf;
Yan Zhengae01a0a2008-08-04 23:23:47 -04002225 char *buf;
2226 struct btrfs_key key;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002227 u32 nritems;
2228 int slot;
Yan Zhengae01a0a2008-08-04 23:23:47 -04002229 int ret;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002230 u64 len = olen;
2231 u64 bs = root->fs_info->sb->s_blocksize;
2232 u64 hint_byte;
Chris Masond20f7042008-12-08 16:58:54 -05002233
Sage Weilc5c9cd42008-11-12 14:32:25 -05002234 /*
2235 * TODO:
2236 * - split compressed inline extents. annoying: we need to
2237 * decompress into destination's address_space (the file offset
2238 * may change, so source mapping won't do), then recompress (or
2239 * otherwise reinsert) a subrange.
2240 * - allow ranges within the same file to be cloned (provided
2241 * they don't overlap)?
2242 */
2243
Chris Masone441d542009-01-05 16:57:23 -05002244 /* the destination must be opened for writing */
Dan Rosenberg2ebc3462010-07-19 16:58:20 -04002245 if (!(file->f_mode & FMODE_WRITE) || (file->f_flags & O_APPEND))
Chris Masone441d542009-01-05 16:57:23 -05002246 return -EINVAL;
2247
Li Zefanb83cc962010-12-20 16:04:08 +08002248 if (btrfs_root_readonly(root))
2249 return -EROFS;
2250
Al Viroa561be72011-11-23 11:57:51 -05002251 ret = mnt_want_write_file(file);
Yan Zhengc146afa2008-11-12 14:34:12 -05002252 if (ret)
2253 return ret;
2254
Sage Weilc5c9cd42008-11-12 14:32:25 -05002255 src_file = fget(srcfd);
Yan Zhengab67b7c2008-12-19 10:58:39 -05002256 if (!src_file) {
2257 ret = -EBADF;
2258 goto out_drop_write;
2259 }
Dan Rosenberg5dc64162010-05-15 11:27:37 -04002260
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002261 src = src_file->f_dentry->d_inode;
2262
Sage Weilc5c9cd42008-11-12 14:32:25 -05002263 ret = -EINVAL;
2264 if (src == inode)
2265 goto out_fput;
2266
Dan Rosenberg5dc64162010-05-15 11:27:37 -04002267 /* the src must be open for reading */
2268 if (!(src_file->f_mode & FMODE_READ))
2269 goto out_fput;
2270
Li Zefan0e7b8242011-09-18 10:20:46 -04002271 /* don't make the dst file partly checksummed */
2272 if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
2273 (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM))
2274 goto out_fput;
2275
Yan Zhengae01a0a2008-08-04 23:23:47 -04002276 ret = -EISDIR;
2277 if (S_ISDIR(src->i_mode) || S_ISDIR(inode->i_mode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002278 goto out_fput;
2279
Yan Zhengae01a0a2008-08-04 23:23:47 -04002280 ret = -EXDEV;
2281 if (src->i_sb != inode->i_sb || BTRFS_I(src)->root != root)
2282 goto out_fput;
2283
2284 ret = -ENOMEM;
2285 buf = vmalloc(btrfs_level_size(root, 0));
2286 if (!buf)
2287 goto out_fput;
2288
2289 path = btrfs_alloc_path();
2290 if (!path) {
2291 vfree(buf);
2292 goto out_fput;
2293 }
2294 path->reada = 2;
2295
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002296 if (inode < src) {
Sage Weilfccdae42010-10-29 15:37:33 -04002297 mutex_lock_nested(&inode->i_mutex, I_MUTEX_PARENT);
2298 mutex_lock_nested(&src->i_mutex, I_MUTEX_CHILD);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002299 } else {
Sage Weilfccdae42010-10-29 15:37:33 -04002300 mutex_lock_nested(&src->i_mutex, I_MUTEX_PARENT);
2301 mutex_lock_nested(&inode->i_mutex, I_MUTEX_CHILD);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002302 }
2303
Sage Weilc5c9cd42008-11-12 14:32:25 -05002304 /* determine range to clone */
2305 ret = -EINVAL;
Dan Rosenberg2ebc3462010-07-19 16:58:20 -04002306 if (off + len > src->i_size || off + len < off)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002307 goto out_unlock;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002308 if (len == 0)
2309 olen = len = src->i_size - off;
2310 /* if we extend to eof, continue to block boundary */
2311 if (off + len == src->i_size)
Li Zefan2a6b8da2010-11-19 01:36:10 +00002312 len = ALIGN(src->i_size, bs) - off;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002313
2314 /* verify the end result is block aligned */
Li Zefan2a6b8da2010-11-19 01:36:10 +00002315 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs) ||
2316 !IS_ALIGNED(destoff, bs))
Sage Weilc5c9cd42008-11-12 14:32:25 -05002317 goto out_unlock;
2318
Li Zefand525e8a2011-09-11 10:52:25 -04002319 if (destoff > inode->i_size) {
2320 ret = btrfs_cont_expand(inode, inode->i_size, destoff);
2321 if (ret)
2322 goto out_unlock;
2323 }
2324
Li Zefan71ef0782011-09-18 10:20:46 -04002325 /* truncate page cache pages from target inode range */
2326 truncate_inode_pages_range(&inode->i_data, destoff,
2327 PAGE_CACHE_ALIGN(destoff + len) - 1);
2328
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002329 /* do any pending delalloc/csum calc on src, one way or
2330 another, and lock file content */
2331 while (1) {
Zheng Yan31840ae2008-09-23 13:14:14 -04002332 struct btrfs_ordered_extent *ordered;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01002333 lock_extent(&BTRFS_I(src)->io_tree, off, off+len);
Sage Weil9a019192010-10-29 15:37:33 -04002334 ordered = btrfs_lookup_first_ordered_extent(src, off+len);
2335 if (!ordered &&
2336 !test_range_bit(&BTRFS_I(src)->io_tree, off, off+len,
2337 EXTENT_DELALLOC, 0, NULL))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002338 break;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01002339 unlock_extent(&BTRFS_I(src)->io_tree, off, off+len);
Yan Zhengae01a0a2008-08-04 23:23:47 -04002340 if (ordered)
2341 btrfs_put_ordered_extent(ordered);
Sage Weil9a019192010-10-29 15:37:33 -04002342 btrfs_wait_ordered_range(src, off, len);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002343 }
2344
Sage Weilc5c9cd42008-11-12 14:32:25 -05002345 /* clone data */
Li Zefan33345d012011-04-20 10:31:50 +08002346 key.objectid = btrfs_ino(src);
Yan Zhengae01a0a2008-08-04 23:23:47 -04002347 key.type = BTRFS_EXTENT_DATA_KEY;
2348 key.offset = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002349
2350 while (1) {
2351 /*
2352 * note the key will change type as we walk through the
2353 * tree.
2354 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04002355 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002356 if (ret < 0)
2357 goto out;
2358
Yan Zhengae01a0a2008-08-04 23:23:47 -04002359 nritems = btrfs_header_nritems(path->nodes[0]);
2360 if (path->slots[0] >= nritems) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002361 ret = btrfs_next_leaf(root, path);
2362 if (ret < 0)
2363 goto out;
2364 if (ret > 0)
2365 break;
Yan Zhengae01a0a2008-08-04 23:23:47 -04002366 nritems = btrfs_header_nritems(path->nodes[0]);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002367 }
2368 leaf = path->nodes[0];
2369 slot = path->slots[0];
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002370
Yan Zhengae01a0a2008-08-04 23:23:47 -04002371 btrfs_item_key_to_cpu(leaf, &key, slot);
Chris Masond20f7042008-12-08 16:58:54 -05002372 if (btrfs_key_type(&key) > BTRFS_EXTENT_DATA_KEY ||
Li Zefan33345d012011-04-20 10:31:50 +08002373 key.objectid != btrfs_ino(src))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002374 break;
2375
Sage Weilc5c9cd42008-11-12 14:32:25 -05002376 if (btrfs_key_type(&key) == BTRFS_EXTENT_DATA_KEY) {
2377 struct btrfs_file_extent_item *extent;
2378 int type;
Zheng Yan31840ae2008-09-23 13:14:14 -04002379 u32 size;
2380 struct btrfs_key new_key;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002381 u64 disko = 0, diskl = 0;
2382 u64 datao = 0, datal = 0;
2383 u8 comp;
Sage Weilb5384d42010-06-12 22:31:14 +00002384 u64 endoff;
Zheng Yan31840ae2008-09-23 13:14:14 -04002385
2386 size = btrfs_item_size_nr(leaf, slot);
2387 read_extent_buffer(leaf, buf,
2388 btrfs_item_ptr_offset(leaf, slot),
2389 size);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002390
2391 extent = btrfs_item_ptr(leaf, slot,
2392 struct btrfs_file_extent_item);
2393 comp = btrfs_file_extent_compression(leaf, extent);
2394 type = btrfs_file_extent_type(leaf, extent);
Chris Masonc8a894d2009-06-27 21:07:03 -04002395 if (type == BTRFS_FILE_EXTENT_REG ||
2396 type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masond3977122009-01-05 21:25:51 -05002397 disko = btrfs_file_extent_disk_bytenr(leaf,
2398 extent);
2399 diskl = btrfs_file_extent_disk_num_bytes(leaf,
2400 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002401 datao = btrfs_file_extent_offset(leaf, extent);
Chris Masond3977122009-01-05 21:25:51 -05002402 datal = btrfs_file_extent_num_bytes(leaf,
2403 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002404 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
2405 /* take upper bound, may be compressed */
2406 datal = btrfs_file_extent_ram_bytes(leaf,
2407 extent);
2408 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002409 btrfs_release_path(path);
Zheng Yan31840ae2008-09-23 13:14:14 -04002410
Sage Weil050006a2010-10-29 15:37:33 -04002411 if (key.offset + datal <= off ||
Sage Weilc5c9cd42008-11-12 14:32:25 -05002412 key.offset >= off+len)
2413 goto next;
2414
Zheng Yan31840ae2008-09-23 13:14:14 -04002415 memcpy(&new_key, &key, sizeof(new_key));
Li Zefan33345d012011-04-20 10:31:50 +08002416 new_key.objectid = btrfs_ino(inode);
Li Zefan4d728ec2011-01-26 14:10:43 +08002417 if (off <= key.offset)
2418 new_key.offset = key.offset + destoff - off;
2419 else
2420 new_key.offset = destoff;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002421
Sage Weilb6f34092011-09-20 14:48:51 -04002422 /*
2423 * 1 - adjusting old extent (we may have to split it)
2424 * 1 - add new extent
2425 * 1 - inode update
2426 */
2427 trans = btrfs_start_transaction(root, 3);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002428 if (IS_ERR(trans)) {
2429 ret = PTR_ERR(trans);
2430 goto out;
2431 }
2432
Chris Masonc8a894d2009-06-27 21:07:03 -04002433 if (type == BTRFS_FILE_EXTENT_REG ||
2434 type == BTRFS_FILE_EXTENT_PREALLOC) {
Li Zefand72c0842011-09-11 10:52:25 -04002435 /*
2436 * a | --- range to clone ---| b
2437 * | ------------- extent ------------- |
2438 */
2439
2440 /* substract range b */
2441 if (key.offset + datal > off + len)
2442 datal = off + len - key.offset;
2443
2444 /* substract range a */
Yan, Zhenga22285a2010-05-16 10:48:46 -04002445 if (off > key.offset) {
2446 datao += off - key.offset;
2447 datal -= off - key.offset;
2448 }
2449
Yan, Zhenga22285a2010-05-16 10:48:46 -04002450 ret = btrfs_drop_extents(trans, inode,
2451 new_key.offset,
2452 new_key.offset + datal,
2453 &hint_byte, 1);
2454 BUG_ON(ret);
2455
Sage Weilc5c9cd42008-11-12 14:32:25 -05002456 ret = btrfs_insert_empty_item(trans, root, path,
2457 &new_key, size);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002458 BUG_ON(ret);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002459
2460 leaf = path->nodes[0];
2461 slot = path->slots[0];
2462 write_extent_buffer(leaf, buf,
2463 btrfs_item_ptr_offset(leaf, slot),
2464 size);
2465
2466 extent = btrfs_item_ptr(leaf, slot,
2467 struct btrfs_file_extent_item);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002468
Sage Weilc5c9cd42008-11-12 14:32:25 -05002469 /* disko == 0 means it's a hole */
2470 if (!disko)
2471 datao = 0;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002472
2473 btrfs_set_file_extent_offset(leaf, extent,
2474 datao);
2475 btrfs_set_file_extent_num_bytes(leaf, extent,
2476 datal);
2477 if (disko) {
2478 inode_add_bytes(inode, datal);
2479 ret = btrfs_inc_extent_ref(trans, root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002480 disko, diskl, 0,
2481 root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08002482 btrfs_ino(inode),
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002483 new_key.offset - datao,
2484 0);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002485 BUG_ON(ret);
2486 }
2487 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
2488 u64 skip = 0;
2489 u64 trim = 0;
2490 if (off > key.offset) {
2491 skip = off - key.offset;
2492 new_key.offset += skip;
2493 }
Chris Masond3977122009-01-05 21:25:51 -05002494
Sage Weilc5c9cd42008-11-12 14:32:25 -05002495 if (key.offset + datal > off+len)
2496 trim = key.offset + datal - (off+len);
Chris Masond3977122009-01-05 21:25:51 -05002497
Sage Weilc5c9cd42008-11-12 14:32:25 -05002498 if (comp && (skip || trim)) {
Sage Weilc5c9cd42008-11-12 14:32:25 -05002499 ret = -EINVAL;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002500 btrfs_end_transaction(trans, root);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002501 goto out;
2502 }
2503 size -= skip + trim;
2504 datal -= skip + trim;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002505
2506 ret = btrfs_drop_extents(trans, inode,
2507 new_key.offset,
2508 new_key.offset + datal,
2509 &hint_byte, 1);
2510 BUG_ON(ret);
2511
Sage Weilc5c9cd42008-11-12 14:32:25 -05002512 ret = btrfs_insert_empty_item(trans, root, path,
2513 &new_key, size);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002514 BUG_ON(ret);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002515
2516 if (skip) {
Chris Masond3977122009-01-05 21:25:51 -05002517 u32 start =
2518 btrfs_file_extent_calc_inline_size(0);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002519 memmove(buf+start, buf+start+skip,
2520 datal);
2521 }
2522
2523 leaf = path->nodes[0];
2524 slot = path->slots[0];
2525 write_extent_buffer(leaf, buf,
2526 btrfs_item_ptr_offset(leaf, slot),
2527 size);
2528 inode_add_bytes(inode, datal);
2529 }
2530
2531 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02002532 btrfs_release_path(path);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002533
Yan, Zhenga22285a2010-05-16 10:48:46 -04002534 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
Sage Weilb5384d42010-06-12 22:31:14 +00002535
2536 /*
2537 * we round up to the block size at eof when
2538 * determining which extents to clone above,
2539 * but shouldn't round up the file size
2540 */
2541 endoff = new_key.offset + datal;
Li Zefan5f3888f2010-11-19 01:36:34 +00002542 if (endoff > destoff+olen)
2543 endoff = destoff+olen;
Sage Weilb5384d42010-06-12 22:31:14 +00002544 if (endoff > inode->i_size)
2545 btrfs_i_size_write(inode, endoff);
2546
Yan, Zhenga22285a2010-05-16 10:48:46 -04002547 ret = btrfs_update_inode(trans, root, inode);
2548 BUG_ON(ret);
2549 btrfs_end_transaction(trans, root);
2550 }
Chris Masond3977122009-01-05 21:25:51 -05002551next:
David Sterbab3b4aa72011-04-21 01:20:15 +02002552 btrfs_release_path(path);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002553 key.offset++;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002554 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002555 ret = 0;
2556out:
David Sterbab3b4aa72011-04-21 01:20:15 +02002557 btrfs_release_path(path);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01002558 unlock_extent(&BTRFS_I(src)->io_tree, off, off+len);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002559out_unlock:
2560 mutex_unlock(&src->i_mutex);
2561 mutex_unlock(&inode->i_mutex);
Yan Zhengae01a0a2008-08-04 23:23:47 -04002562 vfree(buf);
2563 btrfs_free_path(path);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002564out_fput:
2565 fput(src_file);
Yan Zhengab67b7c2008-12-19 10:58:39 -05002566out_drop_write:
Al Viro2a79f172011-12-09 08:06:57 -05002567 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002568 return ret;
2569}
2570
Christoph Hellwig7a865e82008-12-02 09:52:24 -05002571static long btrfs_ioctl_clone_range(struct file *file, void __user *argp)
Sage Weilc5c9cd42008-11-12 14:32:25 -05002572{
2573 struct btrfs_ioctl_clone_range_args args;
2574
Christoph Hellwig7a865e82008-12-02 09:52:24 -05002575 if (copy_from_user(&args, argp, sizeof(args)))
Sage Weilc5c9cd42008-11-12 14:32:25 -05002576 return -EFAULT;
2577 return btrfs_ioctl_clone(file, args.src_fd, args.src_offset,
2578 args.src_length, args.dest_offset);
2579}
2580
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002581/*
2582 * there are many ways the trans_start and trans_end ioctls can lead
2583 * to deadlocks. They should only be used by applications that
2584 * basically own the machine, and have a very in depth understanding
2585 * of all the possible deadlocks and enospc problems.
2586 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05002587static long btrfs_ioctl_trans_start(struct file *file)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002588{
2589 struct inode *inode = fdentry(file)->d_inode;
2590 struct btrfs_root *root = BTRFS_I(inode)->root;
2591 struct btrfs_trans_handle *trans;
Sage Weil1ab86ae2009-09-29 18:38:44 -04002592 int ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002593
Sage Weil1ab86ae2009-09-29 18:38:44 -04002594 ret = -EPERM;
Christoph Hellwigdf5b5522008-06-11 21:53:58 -04002595 if (!capable(CAP_SYS_ADMIN))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002596 goto out;
Sage Weil1ab86ae2009-09-29 18:38:44 -04002597
2598 ret = -EINPROGRESS;
2599 if (file->private_data)
2600 goto out;
Sage Weil9ca9ee02008-08-04 10:41:27 -04002601
Li Zefanb83cc962010-12-20 16:04:08 +08002602 ret = -EROFS;
2603 if (btrfs_root_readonly(root))
2604 goto out;
2605
Al Viroa561be72011-11-23 11:57:51 -05002606 ret = mnt_want_write_file(file);
Yan Zhengc146afa2008-11-12 14:34:12 -05002607 if (ret)
2608 goto out;
2609
Josef Bacika4abeea2011-04-11 17:25:13 -04002610 atomic_inc(&root->fs_info->open_ioctl_trans);
Sage Weil9ca9ee02008-08-04 10:41:27 -04002611
Sage Weil1ab86ae2009-09-29 18:38:44 -04002612 ret = -ENOMEM;
Josef Bacik7a7eaa42011-04-13 12:54:33 -04002613 trans = btrfs_start_ioctl_transaction(root);
Tsutomu Itohabd30bb2011-01-24 00:57:10 +00002614 if (IS_ERR(trans))
Sage Weil1ab86ae2009-09-29 18:38:44 -04002615 goto out_drop;
2616
2617 file->private_data = trans;
2618 return 0;
2619
2620out_drop:
Josef Bacika4abeea2011-04-11 17:25:13 -04002621 atomic_dec(&root->fs_info->open_ioctl_trans);
Al Viro2a79f172011-12-09 08:06:57 -05002622 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002623out:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002624 return ret;
2625}
2626
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002627static long btrfs_ioctl_default_subvol(struct file *file, void __user *argp)
2628{
2629 struct inode *inode = fdentry(file)->d_inode;
2630 struct btrfs_root *root = BTRFS_I(inode)->root;
2631 struct btrfs_root *new_root;
2632 struct btrfs_dir_item *di;
2633 struct btrfs_trans_handle *trans;
2634 struct btrfs_path *path;
2635 struct btrfs_key location;
2636 struct btrfs_disk_key disk_key;
2637 struct btrfs_super_block *disk_super;
2638 u64 features;
2639 u64 objectid = 0;
2640 u64 dir_id;
2641
2642 if (!capable(CAP_SYS_ADMIN))
2643 return -EPERM;
2644
2645 if (copy_from_user(&objectid, argp, sizeof(objectid)))
2646 return -EFAULT;
2647
2648 if (!objectid)
2649 objectid = root->root_key.objectid;
2650
2651 location.objectid = objectid;
2652 location.type = BTRFS_ROOT_ITEM_KEY;
2653 location.offset = (u64)-1;
2654
2655 new_root = btrfs_read_fs_root_no_name(root->fs_info, &location);
2656 if (IS_ERR(new_root))
2657 return PTR_ERR(new_root);
2658
2659 if (btrfs_root_refs(&new_root->root_item) == 0)
2660 return -ENOENT;
2661
2662 path = btrfs_alloc_path();
2663 if (!path)
2664 return -ENOMEM;
2665 path->leave_spinning = 1;
2666
2667 trans = btrfs_start_transaction(root, 1);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002668 if (IS_ERR(trans)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002669 btrfs_free_path(path);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002670 return PTR_ERR(trans);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002671 }
2672
David Sterba6c417612011-04-13 15:41:04 +02002673 dir_id = btrfs_super_root_dir(root->fs_info->super_copy);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002674 di = btrfs_lookup_dir_item(trans, root->fs_info->tree_root, path,
2675 dir_id, "default", 7, 1);
Dan Carpentercf1e99a2010-05-29 09:47:24 +00002676 if (IS_ERR_OR_NULL(di)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002677 btrfs_free_path(path);
2678 btrfs_end_transaction(trans, root);
2679 printk(KERN_ERR "Umm, you don't have the default dir item, "
2680 "this isn't going to work\n");
2681 return -ENOENT;
2682 }
2683
2684 btrfs_cpu_key_to_disk(&disk_key, &new_root->root_key);
2685 btrfs_set_dir_item_key(path->nodes[0], di, &disk_key);
2686 btrfs_mark_buffer_dirty(path->nodes[0]);
2687 btrfs_free_path(path);
2688
David Sterba6c417612011-04-13 15:41:04 +02002689 disk_super = root->fs_info->super_copy;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002690 features = btrfs_super_incompat_flags(disk_super);
2691 if (!(features & BTRFS_FEATURE_INCOMPAT_DEFAULT_SUBVOL)) {
2692 features |= BTRFS_FEATURE_INCOMPAT_DEFAULT_SUBVOL;
2693 btrfs_set_super_incompat_flags(disk_super, features);
2694 }
2695 btrfs_end_transaction(trans, root);
2696
2697 return 0;
2698}
2699
Josef Bacikbf5fc092010-09-29 11:22:36 -04002700static void get_block_group_info(struct list_head *groups_list,
2701 struct btrfs_ioctl_space_info *space)
2702{
2703 struct btrfs_block_group_cache *block_group;
2704
2705 space->total_bytes = 0;
2706 space->used_bytes = 0;
2707 space->flags = 0;
2708 list_for_each_entry(block_group, groups_list, list) {
2709 space->flags = block_group->flags;
2710 space->total_bytes += block_group->key.offset;
2711 space->used_bytes +=
2712 btrfs_block_group_used(&block_group->item);
2713 }
2714}
2715
Josef Bacik1406e432010-01-13 18:19:06 +00002716long btrfs_ioctl_space_info(struct btrfs_root *root, void __user *arg)
2717{
2718 struct btrfs_ioctl_space_args space_args;
2719 struct btrfs_ioctl_space_info space;
2720 struct btrfs_ioctl_space_info *dest;
Chris Mason7fde62b2010-03-16 15:40:10 -04002721 struct btrfs_ioctl_space_info *dest_orig;
Daniel J Blueman13f26962011-04-11 15:56:31 +00002722 struct btrfs_ioctl_space_info __user *user_dest;
Josef Bacik1406e432010-01-13 18:19:06 +00002723 struct btrfs_space_info *info;
Josef Bacikbf5fc092010-09-29 11:22:36 -04002724 u64 types[] = {BTRFS_BLOCK_GROUP_DATA,
2725 BTRFS_BLOCK_GROUP_SYSTEM,
2726 BTRFS_BLOCK_GROUP_METADATA,
2727 BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA};
2728 int num_types = 4;
Chris Mason7fde62b2010-03-16 15:40:10 -04002729 int alloc_size;
Josef Bacik1406e432010-01-13 18:19:06 +00002730 int ret = 0;
Dan Rosenberg51788b12011-02-14 16:04:23 -05002731 u64 slot_count = 0;
Josef Bacikbf5fc092010-09-29 11:22:36 -04002732 int i, c;
Josef Bacik1406e432010-01-13 18:19:06 +00002733
2734 if (copy_from_user(&space_args,
2735 (struct btrfs_ioctl_space_args __user *)arg,
2736 sizeof(space_args)))
2737 return -EFAULT;
2738
Josef Bacikbf5fc092010-09-29 11:22:36 -04002739 for (i = 0; i < num_types; i++) {
2740 struct btrfs_space_info *tmp;
2741
2742 info = NULL;
2743 rcu_read_lock();
2744 list_for_each_entry_rcu(tmp, &root->fs_info->space_info,
2745 list) {
2746 if (tmp->flags == types[i]) {
2747 info = tmp;
2748 break;
2749 }
2750 }
2751 rcu_read_unlock();
2752
2753 if (!info)
2754 continue;
2755
2756 down_read(&info->groups_sem);
2757 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
2758 if (!list_empty(&info->block_groups[c]))
2759 slot_count++;
2760 }
2761 up_read(&info->groups_sem);
2762 }
Josef Bacik1406e432010-01-13 18:19:06 +00002763
Chris Mason7fde62b2010-03-16 15:40:10 -04002764 /* space_slots == 0 means they are asking for a count */
2765 if (space_args.space_slots == 0) {
2766 space_args.total_spaces = slot_count;
2767 goto out;
2768 }
Josef Bacikbf5fc092010-09-29 11:22:36 -04002769
Dan Rosenberg51788b12011-02-14 16:04:23 -05002770 slot_count = min_t(u64, space_args.space_slots, slot_count);
Josef Bacikbf5fc092010-09-29 11:22:36 -04002771
Chris Mason7fde62b2010-03-16 15:40:10 -04002772 alloc_size = sizeof(*dest) * slot_count;
Josef Bacikbf5fc092010-09-29 11:22:36 -04002773
Chris Mason7fde62b2010-03-16 15:40:10 -04002774 /* we generally have at most 6 or so space infos, one for each raid
2775 * level. So, a whole page should be more than enough for everyone
2776 */
2777 if (alloc_size > PAGE_CACHE_SIZE)
2778 return -ENOMEM;
2779
2780 space_args.total_spaces = 0;
2781 dest = kmalloc(alloc_size, GFP_NOFS);
2782 if (!dest)
2783 return -ENOMEM;
2784 dest_orig = dest;
2785
2786 /* now we have a buffer to copy into */
Josef Bacikbf5fc092010-09-29 11:22:36 -04002787 for (i = 0; i < num_types; i++) {
2788 struct btrfs_space_info *tmp;
Chris Mason7fde62b2010-03-16 15:40:10 -04002789
Dan Rosenberg51788b12011-02-14 16:04:23 -05002790 if (!slot_count)
2791 break;
2792
Josef Bacikbf5fc092010-09-29 11:22:36 -04002793 info = NULL;
2794 rcu_read_lock();
2795 list_for_each_entry_rcu(tmp, &root->fs_info->space_info,
2796 list) {
2797 if (tmp->flags == types[i]) {
2798 info = tmp;
2799 break;
2800 }
2801 }
2802 rcu_read_unlock();
Chris Mason7fde62b2010-03-16 15:40:10 -04002803
Josef Bacikbf5fc092010-09-29 11:22:36 -04002804 if (!info)
2805 continue;
2806 down_read(&info->groups_sem);
2807 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
2808 if (!list_empty(&info->block_groups[c])) {
2809 get_block_group_info(&info->block_groups[c],
2810 &space);
2811 memcpy(dest, &space, sizeof(space));
2812 dest++;
2813 space_args.total_spaces++;
Dan Rosenberg51788b12011-02-14 16:04:23 -05002814 slot_count--;
Josef Bacikbf5fc092010-09-29 11:22:36 -04002815 }
Dan Rosenberg51788b12011-02-14 16:04:23 -05002816 if (!slot_count)
2817 break;
Josef Bacikbf5fc092010-09-29 11:22:36 -04002818 }
2819 up_read(&info->groups_sem);
Josef Bacik1406e432010-01-13 18:19:06 +00002820 }
Josef Bacik1406e432010-01-13 18:19:06 +00002821
Chris Mason7fde62b2010-03-16 15:40:10 -04002822 user_dest = (struct btrfs_ioctl_space_info *)
2823 (arg + sizeof(struct btrfs_ioctl_space_args));
2824
2825 if (copy_to_user(user_dest, dest_orig, alloc_size))
2826 ret = -EFAULT;
2827
2828 kfree(dest_orig);
2829out:
2830 if (ret == 0 && copy_to_user(arg, &space_args, sizeof(space_args)))
Josef Bacik1406e432010-01-13 18:19:06 +00002831 ret = -EFAULT;
2832
2833 return ret;
2834}
2835
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002836/*
2837 * there are many ways the trans_start and trans_end ioctls can lead
2838 * to deadlocks. They should only be used by applications that
2839 * basically own the machine, and have a very in depth understanding
2840 * of all the possible deadlocks and enospc problems.
2841 */
2842long btrfs_ioctl_trans_end(struct file *file)
2843{
2844 struct inode *inode = fdentry(file)->d_inode;
2845 struct btrfs_root *root = BTRFS_I(inode)->root;
2846 struct btrfs_trans_handle *trans;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002847
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002848 trans = file->private_data;
Sage Weil1ab86ae2009-09-29 18:38:44 -04002849 if (!trans)
2850 return -EINVAL;
Christoph Hellwigb2141072008-09-05 16:43:31 -04002851 file->private_data = NULL;
Sage Weil9ca9ee02008-08-04 10:41:27 -04002852
Sage Weil1ab86ae2009-09-29 18:38:44 -04002853 btrfs_end_transaction(trans, root);
2854
Josef Bacika4abeea2011-04-11 17:25:13 -04002855 atomic_dec(&root->fs_info->open_ioctl_trans);
Sage Weil9ca9ee02008-08-04 10:41:27 -04002856
Al Viro2a79f172011-12-09 08:06:57 -05002857 mnt_drop_write_file(file);
Sage Weil1ab86ae2009-09-29 18:38:44 -04002858 return 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002859}
2860
Sage Weil46204592010-10-29 15:41:32 -04002861static noinline long btrfs_ioctl_start_sync(struct file *file, void __user *argp)
2862{
2863 struct btrfs_root *root = BTRFS_I(file->f_dentry->d_inode)->root;
2864 struct btrfs_trans_handle *trans;
2865 u64 transid;
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00002866 int ret;
Sage Weil46204592010-10-29 15:41:32 -04002867
2868 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002869 if (IS_ERR(trans))
2870 return PTR_ERR(trans);
Sage Weil46204592010-10-29 15:41:32 -04002871 transid = trans->transid;
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00002872 ret = btrfs_commit_transaction_async(trans, root, 0);
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00002873 if (ret) {
2874 btrfs_end_transaction(trans, root);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00002875 return ret;
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00002876 }
Sage Weil46204592010-10-29 15:41:32 -04002877
2878 if (argp)
2879 if (copy_to_user(argp, &transid, sizeof(transid)))
2880 return -EFAULT;
2881 return 0;
2882}
2883
2884static noinline long btrfs_ioctl_wait_sync(struct file *file, void __user *argp)
2885{
2886 struct btrfs_root *root = BTRFS_I(file->f_dentry->d_inode)->root;
2887 u64 transid;
2888
2889 if (argp) {
2890 if (copy_from_user(&transid, argp, sizeof(transid)))
2891 return -EFAULT;
2892 } else {
2893 transid = 0; /* current trans */
2894 }
2895 return btrfs_wait_for_commit(root, transid);
2896}
2897
Jan Schmidt475f6382011-03-11 15:41:01 +01002898static long btrfs_ioctl_scrub(struct btrfs_root *root, void __user *arg)
2899{
2900 int ret;
2901 struct btrfs_ioctl_scrub_args *sa;
2902
2903 if (!capable(CAP_SYS_ADMIN))
2904 return -EPERM;
2905
2906 sa = memdup_user(arg, sizeof(*sa));
2907 if (IS_ERR(sa))
2908 return PTR_ERR(sa);
2909
2910 ret = btrfs_scrub_dev(root, sa->devid, sa->start, sa->end,
Arne Jansen86287642011-03-23 16:34:19 +01002911 &sa->progress, sa->flags & BTRFS_SCRUB_READONLY);
Jan Schmidt475f6382011-03-11 15:41:01 +01002912
2913 if (copy_to_user(arg, sa, sizeof(*sa)))
2914 ret = -EFAULT;
2915
2916 kfree(sa);
2917 return ret;
2918}
2919
2920static long btrfs_ioctl_scrub_cancel(struct btrfs_root *root, void __user *arg)
2921{
2922 if (!capable(CAP_SYS_ADMIN))
2923 return -EPERM;
2924
2925 return btrfs_scrub_cancel(root);
2926}
2927
2928static long btrfs_ioctl_scrub_progress(struct btrfs_root *root,
2929 void __user *arg)
2930{
2931 struct btrfs_ioctl_scrub_args *sa;
2932 int ret;
2933
2934 if (!capable(CAP_SYS_ADMIN))
2935 return -EPERM;
2936
2937 sa = memdup_user(arg, sizeof(*sa));
2938 if (IS_ERR(sa))
2939 return PTR_ERR(sa);
2940
2941 ret = btrfs_scrub_progress(root, sa->devid, &sa->progress);
2942
2943 if (copy_to_user(arg, sa, sizeof(*sa)))
2944 ret = -EFAULT;
2945
2946 kfree(sa);
2947 return ret;
2948}
2949
Jan Schmidtd7728c92011-07-07 16:48:38 +02002950static long btrfs_ioctl_ino_to_path(struct btrfs_root *root, void __user *arg)
2951{
2952 int ret = 0;
2953 int i;
Chris Mason740c3d22011-11-02 15:48:34 -04002954 u64 rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02002955 int size;
Chris Mason806468f2011-11-06 03:07:10 -05002956 struct btrfs_ioctl_ino_path_args *ipa = NULL;
Jan Schmidtd7728c92011-07-07 16:48:38 +02002957 struct inode_fs_paths *ipath = NULL;
2958 struct btrfs_path *path;
2959
2960 if (!capable(CAP_SYS_ADMIN))
2961 return -EPERM;
2962
2963 path = btrfs_alloc_path();
2964 if (!path) {
2965 ret = -ENOMEM;
2966 goto out;
2967 }
2968
2969 ipa = memdup_user(arg, sizeof(*ipa));
2970 if (IS_ERR(ipa)) {
2971 ret = PTR_ERR(ipa);
2972 ipa = NULL;
2973 goto out;
2974 }
2975
2976 size = min_t(u32, ipa->size, 4096);
2977 ipath = init_ipath(size, root, path);
2978 if (IS_ERR(ipath)) {
2979 ret = PTR_ERR(ipath);
2980 ipath = NULL;
2981 goto out;
2982 }
2983
2984 ret = paths_from_inode(ipa->inum, ipath);
2985 if (ret < 0)
2986 goto out;
2987
2988 for (i = 0; i < ipath->fspath->elem_cnt; ++i) {
Jeff Mahoney745c4d82011-11-20 07:31:57 -05002989 rel_ptr = ipath->fspath->val[i] -
2990 (u64)(unsigned long)ipath->fspath->val;
Chris Mason740c3d22011-11-02 15:48:34 -04002991 ipath->fspath->val[i] = rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02002992 }
2993
Jeff Mahoney745c4d82011-11-20 07:31:57 -05002994 ret = copy_to_user((void *)(unsigned long)ipa->fspath,
2995 (void *)(unsigned long)ipath->fspath, size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02002996 if (ret) {
2997 ret = -EFAULT;
2998 goto out;
2999 }
3000
3001out:
3002 btrfs_free_path(path);
3003 free_ipath(ipath);
3004 kfree(ipa);
3005
3006 return ret;
3007}
3008
3009static int build_ino_list(u64 inum, u64 offset, u64 root, void *ctx)
3010{
3011 struct btrfs_data_container *inodes = ctx;
3012 const size_t c = 3 * sizeof(u64);
3013
3014 if (inodes->bytes_left >= c) {
3015 inodes->bytes_left -= c;
3016 inodes->val[inodes->elem_cnt] = inum;
3017 inodes->val[inodes->elem_cnt + 1] = offset;
3018 inodes->val[inodes->elem_cnt + 2] = root;
3019 inodes->elem_cnt += 3;
3020 } else {
3021 inodes->bytes_missing += c - inodes->bytes_left;
3022 inodes->bytes_left = 0;
3023 inodes->elem_missed += 3;
3024 }
3025
3026 return 0;
3027}
3028
3029static long btrfs_ioctl_logical_to_ino(struct btrfs_root *root,
3030 void __user *arg)
3031{
3032 int ret = 0;
3033 int size;
Jan Schmidt4692cf52011-12-02 14:56:41 +01003034 u64 extent_item_pos;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003035 struct btrfs_ioctl_logical_ino_args *loi;
3036 struct btrfs_data_container *inodes = NULL;
3037 struct btrfs_path *path = NULL;
3038 struct btrfs_key key;
3039
3040 if (!capable(CAP_SYS_ADMIN))
3041 return -EPERM;
3042
3043 loi = memdup_user(arg, sizeof(*loi));
3044 if (IS_ERR(loi)) {
3045 ret = PTR_ERR(loi);
3046 loi = NULL;
3047 goto out;
3048 }
3049
3050 path = btrfs_alloc_path();
3051 if (!path) {
3052 ret = -ENOMEM;
3053 goto out;
3054 }
3055
3056 size = min_t(u32, loi->size, 4096);
3057 inodes = init_data_container(size);
3058 if (IS_ERR(inodes)) {
3059 ret = PTR_ERR(inodes);
3060 inodes = NULL;
3061 goto out;
3062 }
3063
3064 ret = extent_from_logical(root->fs_info, loi->logical, path, &key);
Jan Schmidt4692cf52011-12-02 14:56:41 +01003065 btrfs_release_path(path);
Jan Schmidtd7728c92011-07-07 16:48:38 +02003066
3067 if (ret & BTRFS_EXTENT_FLAG_TREE_BLOCK)
3068 ret = -ENOENT;
3069 if (ret < 0)
3070 goto out;
3071
Jan Schmidt4692cf52011-12-02 14:56:41 +01003072 extent_item_pos = loi->logical - key.objectid;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003073 ret = iterate_extent_inodes(root->fs_info, path, key.objectid,
Jan Schmidt4692cf52011-12-02 14:56:41 +01003074 extent_item_pos, build_ino_list,
3075 inodes);
Jan Schmidtd7728c92011-07-07 16:48:38 +02003076
3077 if (ret < 0)
3078 goto out;
3079
Jeff Mahoney745c4d82011-11-20 07:31:57 -05003080 ret = copy_to_user((void *)(unsigned long)loi->inodes,
3081 (void *)(unsigned long)inodes, size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02003082 if (ret)
3083 ret = -EFAULT;
3084
3085out:
3086 btrfs_free_path(path);
3087 kfree(inodes);
3088 kfree(loi);
3089
3090 return ret;
3091}
3092
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003093void update_ioctl_balance_args(struct btrfs_fs_info *fs_info, int lock,
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003094 struct btrfs_ioctl_balance_args *bargs)
3095{
3096 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
3097
3098 bargs->flags = bctl->flags;
3099
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003100 if (atomic_read(&fs_info->balance_running))
3101 bargs->state |= BTRFS_BALANCE_STATE_RUNNING;
3102 if (atomic_read(&fs_info->balance_pause_req))
3103 bargs->state |= BTRFS_BALANCE_STATE_PAUSE_REQ;
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003104 if (atomic_read(&fs_info->balance_cancel_req))
3105 bargs->state |= BTRFS_BALANCE_STATE_CANCEL_REQ;
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003106
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003107 memcpy(&bargs->data, &bctl->data, sizeof(bargs->data));
3108 memcpy(&bargs->meta, &bctl->meta, sizeof(bargs->meta));
3109 memcpy(&bargs->sys, &bctl->sys, sizeof(bargs->sys));
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003110
3111 if (lock) {
3112 spin_lock(&fs_info->balance_lock);
3113 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
3114 spin_unlock(&fs_info->balance_lock);
3115 } else {
3116 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
3117 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003118}
3119
3120static long btrfs_ioctl_balance(struct btrfs_root *root, void __user *arg)
3121{
3122 struct btrfs_fs_info *fs_info = root->fs_info;
3123 struct btrfs_ioctl_balance_args *bargs;
3124 struct btrfs_balance_control *bctl;
3125 int ret;
3126
3127 if (!capable(CAP_SYS_ADMIN))
3128 return -EPERM;
3129
3130 if (fs_info->sb->s_flags & MS_RDONLY)
3131 return -EROFS;
3132
3133 mutex_lock(&fs_info->volume_mutex);
3134 mutex_lock(&fs_info->balance_mutex);
3135
3136 if (arg) {
3137 bargs = memdup_user(arg, sizeof(*bargs));
3138 if (IS_ERR(bargs)) {
3139 ret = PTR_ERR(bargs);
3140 goto out;
3141 }
Ilya Dryomovde322262012-01-16 22:04:49 +02003142
3143 if (bargs->flags & BTRFS_BALANCE_RESUME) {
3144 if (!fs_info->balance_ctl) {
3145 ret = -ENOTCONN;
3146 goto out_bargs;
3147 }
3148
3149 bctl = fs_info->balance_ctl;
3150 spin_lock(&fs_info->balance_lock);
3151 bctl->flags |= BTRFS_BALANCE_RESUME;
3152 spin_unlock(&fs_info->balance_lock);
3153
3154 goto do_balance;
3155 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003156 } else {
3157 bargs = NULL;
3158 }
3159
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003160 if (fs_info->balance_ctl) {
3161 ret = -EINPROGRESS;
3162 goto out_bargs;
3163 }
3164
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003165 bctl = kzalloc(sizeof(*bctl), GFP_NOFS);
3166 if (!bctl) {
3167 ret = -ENOMEM;
3168 goto out_bargs;
3169 }
3170
3171 bctl->fs_info = fs_info;
3172 if (arg) {
3173 memcpy(&bctl->data, &bargs->data, sizeof(bctl->data));
3174 memcpy(&bctl->meta, &bargs->meta, sizeof(bctl->meta));
3175 memcpy(&bctl->sys, &bargs->sys, sizeof(bctl->sys));
3176
3177 bctl->flags = bargs->flags;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003178 } else {
3179 /* balance everything - no filters */
3180 bctl->flags |= BTRFS_BALANCE_TYPE_MASK;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003181 }
3182
Ilya Dryomovde322262012-01-16 22:04:49 +02003183do_balance:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003184 ret = btrfs_balance(bctl, bargs);
3185 /*
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003186 * bctl is freed in __cancel_balance or in free_fs_info if
3187 * restriper was paused all the way until unmount
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003188 */
3189 if (arg) {
3190 if (copy_to_user(arg, bargs, sizeof(*bargs)))
3191 ret = -EFAULT;
3192 }
3193
3194out_bargs:
3195 kfree(bargs);
3196out:
3197 mutex_unlock(&fs_info->balance_mutex);
3198 mutex_unlock(&fs_info->volume_mutex);
3199 return ret;
3200}
3201
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003202static long btrfs_ioctl_balance_ctl(struct btrfs_root *root, int cmd)
3203{
3204 if (!capable(CAP_SYS_ADMIN))
3205 return -EPERM;
3206
3207 switch (cmd) {
3208 case BTRFS_BALANCE_CTL_PAUSE:
3209 return btrfs_pause_balance(root->fs_info);
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003210 case BTRFS_BALANCE_CTL_CANCEL:
3211 return btrfs_cancel_balance(root->fs_info);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003212 }
3213
3214 return -EINVAL;
3215}
3216
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003217static long btrfs_ioctl_balance_progress(struct btrfs_root *root,
3218 void __user *arg)
3219{
3220 struct btrfs_fs_info *fs_info = root->fs_info;
3221 struct btrfs_ioctl_balance_args *bargs;
3222 int ret = 0;
3223
3224 if (!capable(CAP_SYS_ADMIN))
3225 return -EPERM;
3226
3227 mutex_lock(&fs_info->balance_mutex);
3228 if (!fs_info->balance_ctl) {
3229 ret = -ENOTCONN;
3230 goto out;
3231 }
3232
3233 bargs = kzalloc(sizeof(*bargs), GFP_NOFS);
3234 if (!bargs) {
3235 ret = -ENOMEM;
3236 goto out;
3237 }
3238
3239 update_ioctl_balance_args(fs_info, 1, bargs);
3240
3241 if (copy_to_user(arg, bargs, sizeof(*bargs)))
3242 ret = -EFAULT;
3243
3244 kfree(bargs);
3245out:
3246 mutex_unlock(&fs_info->balance_mutex);
3247 return ret;
3248}
3249
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003250long btrfs_ioctl(struct file *file, unsigned int
3251 cmd, unsigned long arg)
3252{
3253 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05003254 void __user *argp = (void __user *)arg;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003255
3256 switch (cmd) {
Christoph Hellwig6cbff002009-04-17 10:37:41 +02003257 case FS_IOC_GETFLAGS:
3258 return btrfs_ioctl_getflags(file, argp);
3259 case FS_IOC_SETFLAGS:
3260 return btrfs_ioctl_setflags(file, argp);
3261 case FS_IOC_GETVERSION:
3262 return btrfs_ioctl_getversion(file, argp);
Li Dongyangf7039b12011-03-24 10:24:28 +00003263 case FITRIM:
3264 return btrfs_ioctl_fitrim(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003265 case BTRFS_IOC_SNAP_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08003266 return btrfs_ioctl_snap_create(file, argp, 0);
Li Zefanfdfb1e42010-12-10 06:41:56 +00003267 case BTRFS_IOC_SNAP_CREATE_V2:
Li Zefanfa0d2b92010-12-20 15:53:28 +08003268 return btrfs_ioctl_snap_create_v2(file, argp, 0);
Chris Mason3de45862008-11-17 21:02:50 -05003269 case BTRFS_IOC_SUBVOL_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08003270 return btrfs_ioctl_snap_create(file, argp, 1);
Yan, Zheng76dda932009-09-21 16:00:26 -04003271 case BTRFS_IOC_SNAP_DESTROY:
3272 return btrfs_ioctl_snap_destroy(file, argp);
Li Zefan0caa1022010-12-20 16:30:25 +08003273 case BTRFS_IOC_SUBVOL_GETFLAGS:
3274 return btrfs_ioctl_subvol_getflags(file, argp);
3275 case BTRFS_IOC_SUBVOL_SETFLAGS:
3276 return btrfs_ioctl_subvol_setflags(file, argp);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003277 case BTRFS_IOC_DEFAULT_SUBVOL:
3278 return btrfs_ioctl_default_subvol(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003279 case BTRFS_IOC_DEFRAG:
Chris Mason1e701a32010-03-11 09:42:04 -05003280 return btrfs_ioctl_defrag(file, NULL);
3281 case BTRFS_IOC_DEFRAG_RANGE:
3282 return btrfs_ioctl_defrag(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003283 case BTRFS_IOC_RESIZE:
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05003284 return btrfs_ioctl_resize(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003285 case BTRFS_IOC_ADD_DEV:
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05003286 return btrfs_ioctl_add_dev(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003287 case BTRFS_IOC_RM_DEV:
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05003288 return btrfs_ioctl_rm_dev(root, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01003289 case BTRFS_IOC_FS_INFO:
3290 return btrfs_ioctl_fs_info(root, argp);
3291 case BTRFS_IOC_DEV_INFO:
3292 return btrfs_ioctl_dev_info(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003293 case BTRFS_IOC_BALANCE:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003294 return btrfs_ioctl_balance(root, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003295 case BTRFS_IOC_CLONE:
Sage Weilc5c9cd42008-11-12 14:32:25 -05003296 return btrfs_ioctl_clone(file, arg, 0, 0, 0);
3297 case BTRFS_IOC_CLONE_RANGE:
Christoph Hellwig7a865e82008-12-02 09:52:24 -05003298 return btrfs_ioctl_clone_range(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003299 case BTRFS_IOC_TRANS_START:
3300 return btrfs_ioctl_trans_start(file);
3301 case BTRFS_IOC_TRANS_END:
3302 return btrfs_ioctl_trans_end(file);
Chris Masonac8e9812010-02-28 15:39:26 -05003303 case BTRFS_IOC_TREE_SEARCH:
3304 return btrfs_ioctl_tree_search(file, argp);
3305 case BTRFS_IOC_INO_LOOKUP:
3306 return btrfs_ioctl_ino_lookup(file, argp);
Jan Schmidtd7728c92011-07-07 16:48:38 +02003307 case BTRFS_IOC_INO_PATHS:
3308 return btrfs_ioctl_ino_to_path(root, argp);
3309 case BTRFS_IOC_LOGICAL_INO:
3310 return btrfs_ioctl_logical_to_ino(root, argp);
Josef Bacik1406e432010-01-13 18:19:06 +00003311 case BTRFS_IOC_SPACE_INFO:
3312 return btrfs_ioctl_space_info(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003313 case BTRFS_IOC_SYNC:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003314 btrfs_sync_fs(file->f_dentry->d_sb, 1);
3315 return 0;
Sage Weil46204592010-10-29 15:41:32 -04003316 case BTRFS_IOC_START_SYNC:
3317 return btrfs_ioctl_start_sync(file, argp);
3318 case BTRFS_IOC_WAIT_SYNC:
3319 return btrfs_ioctl_wait_sync(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01003320 case BTRFS_IOC_SCRUB:
3321 return btrfs_ioctl_scrub(root, argp);
3322 case BTRFS_IOC_SCRUB_CANCEL:
3323 return btrfs_ioctl_scrub_cancel(root, argp);
3324 case BTRFS_IOC_SCRUB_PROGRESS:
3325 return btrfs_ioctl_scrub_progress(root, argp);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003326 case BTRFS_IOC_BALANCE_V2:
3327 return btrfs_ioctl_balance(root, argp);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003328 case BTRFS_IOC_BALANCE_CTL:
3329 return btrfs_ioctl_balance_ctl(root, arg);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003330 case BTRFS_IOC_BALANCE_PROGRESS:
3331 return btrfs_ioctl_balance_progress(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003332 }
3333
3334 return -ENOTTY;
3335}