blob: bca6997fdb8086bc3825750f0cd7438512518246 [file] [log] [blame]
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
19#include <linux/kernel.h>
20#include <linux/bio.h>
21#include <linux/buffer_head.h>
22#include <linux/file.h>
23#include <linux/fs.h>
Christoph Hellwigcb8e7092008-10-09 13:39:39 -040024#include <linux/fsnotify.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040025#include <linux/pagemap.h>
26#include <linux/highmem.h>
27#include <linux/time.h>
28#include <linux/init.h>
29#include <linux/string.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040030#include <linux/backing-dev.h>
Christoph Hellwigcb8e7092008-10-09 13:39:39 -040031#include <linux/mount.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040032#include <linux/mpage.h>
Christoph Hellwigcb8e7092008-10-09 13:39:39 -040033#include <linux/namei.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040034#include <linux/swap.h>
35#include <linux/writeback.h>
36#include <linux/statfs.h>
37#include <linux/compat.h>
38#include <linux/bit_spinlock.h>
Christoph Hellwigcb8e7092008-10-09 13:39:39 -040039#include <linux/security.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040040#include <linux/xattr.h>
Yan Zheng7ea394f2008-08-05 13:05:02 -040041#include <linux/vmalloc.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090042#include <linux/slab.h>
Li Dongyangf7039b12011-03-24 10:24:28 +000043#include <linux/blkdev.h>
Alexander Block8ea05e32012-07-25 17:35:53 +020044#include <linux/uuid.h>
Chris Mason4b4e25f2008-11-20 10:22:27 -050045#include "compat.h"
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040046#include "ctree.h"
47#include "disk-io.h"
48#include "transaction.h"
49#include "btrfs_inode.h"
50#include "ioctl.h"
51#include "print-tree.h"
52#include "volumes.h"
Chris Mason925baed2008-06-25 16:01:30 -040053#include "locking.h"
Li Zefan581bb052011-04-20 10:06:11 +080054#include "inode-map.h"
Jan Schmidtd7728c92011-07-07 16:48:38 +020055#include "backref.h"
Josef Bacik606686e2012-06-04 14:03:51 -040056#include "rcu-string.h"
Alexander Block31db9f72012-07-25 23:19:24 +020057#include "send.h"
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040058
Christoph Hellwig6cbff002009-04-17 10:37:41 +020059/* Mask out flags that are inappropriate for the given type of inode. */
60static inline __u32 btrfs_mask_flags(umode_t mode, __u32 flags)
61{
62 if (S_ISDIR(mode))
63 return flags;
64 else if (S_ISREG(mode))
65 return flags & ~FS_DIRSYNC_FL;
66 else
67 return flags & (FS_NODUMP_FL | FS_NOATIME_FL);
68}
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040069
Christoph Hellwig6cbff002009-04-17 10:37:41 +020070/*
71 * Export inode flags to the format expected by the FS_IOC_GETFLAGS ioctl.
72 */
73static unsigned int btrfs_flags_to_ioctl(unsigned int flags)
74{
75 unsigned int iflags = 0;
76
77 if (flags & BTRFS_INODE_SYNC)
78 iflags |= FS_SYNC_FL;
79 if (flags & BTRFS_INODE_IMMUTABLE)
80 iflags |= FS_IMMUTABLE_FL;
81 if (flags & BTRFS_INODE_APPEND)
82 iflags |= FS_APPEND_FL;
83 if (flags & BTRFS_INODE_NODUMP)
84 iflags |= FS_NODUMP_FL;
85 if (flags & BTRFS_INODE_NOATIME)
86 iflags |= FS_NOATIME_FL;
87 if (flags & BTRFS_INODE_DIRSYNC)
88 iflags |= FS_DIRSYNC_FL;
Li Zefand0092bd2011-04-15 03:03:06 +000089 if (flags & BTRFS_INODE_NODATACOW)
90 iflags |= FS_NOCOW_FL;
91
92 if ((flags & BTRFS_INODE_COMPRESS) && !(flags & BTRFS_INODE_NOCOMPRESS))
93 iflags |= FS_COMPR_FL;
94 else if (flags & BTRFS_INODE_NOCOMPRESS)
95 iflags |= FS_NOCOMP_FL;
Christoph Hellwig6cbff002009-04-17 10:37:41 +020096
97 return iflags;
98}
99
100/*
101 * Update inode->i_flags based on the btrfs internal flags.
102 */
103void btrfs_update_iflags(struct inode *inode)
104{
105 struct btrfs_inode *ip = BTRFS_I(inode);
106
107 inode->i_flags &= ~(S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC);
108
109 if (ip->flags & BTRFS_INODE_SYNC)
110 inode->i_flags |= S_SYNC;
111 if (ip->flags & BTRFS_INODE_IMMUTABLE)
112 inode->i_flags |= S_IMMUTABLE;
113 if (ip->flags & BTRFS_INODE_APPEND)
114 inode->i_flags |= S_APPEND;
115 if (ip->flags & BTRFS_INODE_NOATIME)
116 inode->i_flags |= S_NOATIME;
117 if (ip->flags & BTRFS_INODE_DIRSYNC)
118 inode->i_flags |= S_DIRSYNC;
119}
120
121/*
122 * Inherit flags from the parent inode.
123 *
Josef Bacike27425d2011-09-27 11:01:30 -0400124 * Currently only the compression flags and the cow flags are inherited.
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200125 */
126void btrfs_inherit_iflags(struct inode *inode, struct inode *dir)
127{
Chris Mason0b4dcea2009-06-11 11:13:35 -0400128 unsigned int flags;
129
130 if (!dir)
131 return;
132
133 flags = BTRFS_I(dir)->flags;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200134
Josef Bacike27425d2011-09-27 11:01:30 -0400135 if (flags & BTRFS_INODE_NOCOMPRESS) {
136 BTRFS_I(inode)->flags &= ~BTRFS_INODE_COMPRESS;
137 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
138 } else if (flags & BTRFS_INODE_COMPRESS) {
139 BTRFS_I(inode)->flags &= ~BTRFS_INODE_NOCOMPRESS;
140 BTRFS_I(inode)->flags |= BTRFS_INODE_COMPRESS;
141 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200142
Josef Bacike27425d2011-09-27 11:01:30 -0400143 if (flags & BTRFS_INODE_NODATACOW)
144 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW;
145
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200146 btrfs_update_iflags(inode);
147}
148
149static int btrfs_ioctl_getflags(struct file *file, void __user *arg)
150{
151 struct btrfs_inode *ip = BTRFS_I(file->f_path.dentry->d_inode);
152 unsigned int flags = btrfs_flags_to_ioctl(ip->flags);
153
154 if (copy_to_user(arg, &flags, sizeof(flags)))
155 return -EFAULT;
156 return 0;
157}
158
Liu Bo75e7cb72011-03-22 10:12:20 +0000159static int check_flags(unsigned int flags)
160{
161 if (flags & ~(FS_IMMUTABLE_FL | FS_APPEND_FL | \
162 FS_NOATIME_FL | FS_NODUMP_FL | \
163 FS_SYNC_FL | FS_DIRSYNC_FL | \
Li Zefane1e8fb62011-04-15 03:02:49 +0000164 FS_NOCOMP_FL | FS_COMPR_FL |
165 FS_NOCOW_FL))
Liu Bo75e7cb72011-03-22 10:12:20 +0000166 return -EOPNOTSUPP;
167
168 if ((flags & FS_NOCOMP_FL) && (flags & FS_COMPR_FL))
169 return -EINVAL;
170
Liu Bo75e7cb72011-03-22 10:12:20 +0000171 return 0;
172}
173
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200174static int btrfs_ioctl_setflags(struct file *file, void __user *arg)
175{
176 struct inode *inode = file->f_path.dentry->d_inode;
177 struct btrfs_inode *ip = BTRFS_I(inode);
178 struct btrfs_root *root = ip->root;
179 struct btrfs_trans_handle *trans;
180 unsigned int flags, oldflags;
181 int ret;
Li Zefanf062abf02011-12-29 13:36:45 +0800182 u64 ip_oldflags;
183 unsigned int i_oldflags;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200184
Li Zefanb83cc962010-12-20 16:04:08 +0800185 if (btrfs_root_readonly(root))
186 return -EROFS;
187
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200188 if (copy_from_user(&flags, arg, sizeof(flags)))
189 return -EFAULT;
190
Liu Bo75e7cb72011-03-22 10:12:20 +0000191 ret = check_flags(flags);
192 if (ret)
193 return ret;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200194
Serge E. Hallyn2e149672011-03-23 16:43:26 -0700195 if (!inode_owner_or_capable(inode))
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200196 return -EACCES;
197
198 mutex_lock(&inode->i_mutex);
199
Li Zefanf062abf02011-12-29 13:36:45 +0800200 ip_oldflags = ip->flags;
201 i_oldflags = inode->i_flags;
202
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200203 flags = btrfs_mask_flags(inode->i_mode, flags);
204 oldflags = btrfs_flags_to_ioctl(ip->flags);
205 if ((flags ^ oldflags) & (FS_APPEND_FL | FS_IMMUTABLE_FL)) {
206 if (!capable(CAP_LINUX_IMMUTABLE)) {
207 ret = -EPERM;
208 goto out_unlock;
209 }
210 }
211
Al Viroa561be72011-11-23 11:57:51 -0500212 ret = mnt_want_write_file(file);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200213 if (ret)
214 goto out_unlock;
215
216 if (flags & FS_SYNC_FL)
217 ip->flags |= BTRFS_INODE_SYNC;
218 else
219 ip->flags &= ~BTRFS_INODE_SYNC;
220 if (flags & FS_IMMUTABLE_FL)
221 ip->flags |= BTRFS_INODE_IMMUTABLE;
222 else
223 ip->flags &= ~BTRFS_INODE_IMMUTABLE;
224 if (flags & FS_APPEND_FL)
225 ip->flags |= BTRFS_INODE_APPEND;
226 else
227 ip->flags &= ~BTRFS_INODE_APPEND;
228 if (flags & FS_NODUMP_FL)
229 ip->flags |= BTRFS_INODE_NODUMP;
230 else
231 ip->flags &= ~BTRFS_INODE_NODUMP;
232 if (flags & FS_NOATIME_FL)
233 ip->flags |= BTRFS_INODE_NOATIME;
234 else
235 ip->flags &= ~BTRFS_INODE_NOATIME;
236 if (flags & FS_DIRSYNC_FL)
237 ip->flags |= BTRFS_INODE_DIRSYNC;
238 else
239 ip->flags &= ~BTRFS_INODE_DIRSYNC;
Li Zefane1e8fb62011-04-15 03:02:49 +0000240 if (flags & FS_NOCOW_FL)
241 ip->flags |= BTRFS_INODE_NODATACOW;
242 else
243 ip->flags &= ~BTRFS_INODE_NODATACOW;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200244
Liu Bo75e7cb72011-03-22 10:12:20 +0000245 /*
246 * The COMPRESS flag can only be changed by users, while the NOCOMPRESS
247 * flag may be changed automatically if compression code won't make
248 * things smaller.
249 */
250 if (flags & FS_NOCOMP_FL) {
251 ip->flags &= ~BTRFS_INODE_COMPRESS;
252 ip->flags |= BTRFS_INODE_NOCOMPRESS;
253 } else if (flags & FS_COMPR_FL) {
254 ip->flags |= BTRFS_INODE_COMPRESS;
255 ip->flags &= ~BTRFS_INODE_NOCOMPRESS;
Li Zefanebcb9042011-04-15 03:03:17 +0000256 } else {
257 ip->flags &= ~(BTRFS_INODE_COMPRESS | BTRFS_INODE_NOCOMPRESS);
Liu Bo75e7cb72011-03-22 10:12:20 +0000258 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200259
Li Zefan4da6f1a2011-12-29 13:39:50 +0800260 trans = btrfs_start_transaction(root, 1);
Li Zefanf062abf02011-12-29 13:36:45 +0800261 if (IS_ERR(trans)) {
262 ret = PTR_ERR(trans);
263 goto out_drop;
264 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200265
Li Zefan306424cc2011-12-14 20:12:02 -0500266 btrfs_update_iflags(inode);
Josef Bacik0c4d2d92012-04-05 15:03:02 -0400267 inode_inc_iversion(inode);
Li Zefan306424cc2011-12-14 20:12:02 -0500268 inode->i_ctime = CURRENT_TIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200269 ret = btrfs_update_inode(trans, root, inode);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200270
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200271 btrfs_end_transaction(trans, root);
Li Zefanf062abf02011-12-29 13:36:45 +0800272 out_drop:
273 if (ret) {
274 ip->flags = ip_oldflags;
275 inode->i_flags = i_oldflags;
276 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200277
Al Viro2a79f172011-12-09 08:06:57 -0500278 mnt_drop_write_file(file);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200279 out_unlock:
280 mutex_unlock(&inode->i_mutex);
liubo2d4e6f6ad2011-02-24 09:38:16 +0000281 return ret;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200282}
283
284static int btrfs_ioctl_getversion(struct file *file, int __user *arg)
285{
286 struct inode *inode = file->f_path.dentry->d_inode;
287
288 return put_user(inode->i_generation, arg);
289}
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400290
Li Dongyangf7039b12011-03-24 10:24:28 +0000291static noinline int btrfs_ioctl_fitrim(struct file *file, void __user *arg)
292{
Al Viro815745c2011-11-17 15:40:49 -0500293 struct btrfs_fs_info *fs_info = btrfs_sb(fdentry(file)->d_sb);
Li Dongyangf7039b12011-03-24 10:24:28 +0000294 struct btrfs_device *device;
295 struct request_queue *q;
296 struct fstrim_range range;
297 u64 minlen = ULLONG_MAX;
298 u64 num_devices = 0;
Al Viro815745c2011-11-17 15:40:49 -0500299 u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy);
Li Dongyangf7039b12011-03-24 10:24:28 +0000300 int ret;
301
302 if (!capable(CAP_SYS_ADMIN))
303 return -EPERM;
304
Xiao Guangrong1f781602011-04-20 10:09:16 +0000305 rcu_read_lock();
306 list_for_each_entry_rcu(device, &fs_info->fs_devices->devices,
307 dev_list) {
Li Dongyangf7039b12011-03-24 10:24:28 +0000308 if (!device->bdev)
309 continue;
310 q = bdev_get_queue(device->bdev);
311 if (blk_queue_discard(q)) {
312 num_devices++;
313 minlen = min((u64)q->limits.discard_granularity,
314 minlen);
315 }
316 }
Xiao Guangrong1f781602011-04-20 10:09:16 +0000317 rcu_read_unlock();
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200318
Li Dongyangf7039b12011-03-24 10:24:28 +0000319 if (!num_devices)
320 return -EOPNOTSUPP;
Li Dongyangf7039b12011-03-24 10:24:28 +0000321 if (copy_from_user(&range, arg, sizeof(range)))
322 return -EFAULT;
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200323 if (range.start > total_bytes)
324 return -EINVAL;
Li Dongyangf7039b12011-03-24 10:24:28 +0000325
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200326 range.len = min(range.len, total_bytes - range.start);
Li Dongyangf7039b12011-03-24 10:24:28 +0000327 range.minlen = max(range.minlen, minlen);
Al Viro815745c2011-11-17 15:40:49 -0500328 ret = btrfs_trim_fs(fs_info->tree_root, &range);
Li Dongyangf7039b12011-03-24 10:24:28 +0000329 if (ret < 0)
330 return ret;
331
332 if (copy_to_user(arg, &range, sizeof(range)))
333 return -EFAULT;
334
335 return 0;
336}
337
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400338static noinline int create_subvol(struct btrfs_root *root,
339 struct dentry *dentry,
Sage Weil72fd0322010-10-29 15:41:32 -0400340 char *name, int namelen,
341 u64 *async_transid)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400342{
343 struct btrfs_trans_handle *trans;
344 struct btrfs_key key;
345 struct btrfs_root_item root_item;
346 struct btrfs_inode_item *inode_item;
347 struct extent_buffer *leaf;
Yan, Zheng76dda932009-09-21 16:00:26 -0400348 struct btrfs_root *new_root;
Al Viro2fbe8c82011-07-16 21:38:06 -0400349 struct dentry *parent = dentry->d_parent;
Josef Bacik6a912212010-11-20 09:48:00 +0000350 struct inode *dir;
Alexander Block8ea05e32012-07-25 17:35:53 +0200351 struct timespec cur_time = CURRENT_TIME;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400352 int ret;
353 int err;
354 u64 objectid;
355 u64 new_dirid = BTRFS_FIRST_FREE_OBJECTID;
Chris Mason3de45862008-11-17 21:02:50 -0500356 u64 index = 0;
Alexander Block8ea05e32012-07-25 17:35:53 +0200357 uuid_le new_uuid;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400358
Li Zefan581bb052011-04-20 10:06:11 +0800359 ret = btrfs_find_free_objectid(root->fs_info->tree_root, &objectid);
Al Viro2fbe8c82011-07-16 21:38:06 -0400360 if (ret)
Yan, Zhenga22285a2010-05-16 10:48:46 -0400361 return ret;
Josef Bacik6a912212010-11-20 09:48:00 +0000362
363 dir = parent->d_inode;
364
Josef Bacik9ed74f22009-09-11 16:12:44 -0400365 /*
366 * 1 - inode item
367 * 2 - refs
368 * 1 - root item
369 * 2 - dir items
370 */
Yan, Zhenga22285a2010-05-16 10:48:46 -0400371 trans = btrfs_start_transaction(root, 6);
Al Viro2fbe8c82011-07-16 21:38:06 -0400372 if (IS_ERR(trans))
Yan, Zhenga22285a2010-05-16 10:48:46 -0400373 return PTR_ERR(trans);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400374
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400375 leaf = btrfs_alloc_free_block(trans, root, root->leafsize,
Jan Schmidt5581a512012-05-16 17:04:52 +0200376 0, objectid, NULL, 0, 0, 0);
Josef Bacik8e8a1e32008-07-24 12:17:14 -0400377 if (IS_ERR(leaf)) {
378 ret = PTR_ERR(leaf);
379 goto fail;
380 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400381
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400382 memset_extent_buffer(leaf, 0, 0, sizeof(struct btrfs_header));
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400383 btrfs_set_header_bytenr(leaf, leaf->start);
384 btrfs_set_header_generation(leaf, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400385 btrfs_set_header_backref_rev(leaf, BTRFS_MIXED_BACKREF_REV);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400386 btrfs_set_header_owner(leaf, objectid);
387
388 write_extent_buffer(leaf, root->fs_info->fsid,
389 (unsigned long)btrfs_header_fsid(leaf),
390 BTRFS_FSID_SIZE);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400391 write_extent_buffer(leaf, root->fs_info->chunk_tree_uuid,
392 (unsigned long)btrfs_header_chunk_tree_uuid(leaf),
393 BTRFS_UUID_SIZE);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400394 btrfs_mark_buffer_dirty(leaf);
395
Alexander Block8ea05e32012-07-25 17:35:53 +0200396 memset(&root_item, 0, sizeof(root_item));
397
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400398 inode_item = &root_item.inode;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400399 inode_item->generation = cpu_to_le64(1);
400 inode_item->size = cpu_to_le64(3);
401 inode_item->nlink = cpu_to_le32(1);
Yan Zhenga76a3cd2008-10-09 11:46:29 -0400402 inode_item->nbytes = cpu_to_le64(root->leafsize);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400403 inode_item->mode = cpu_to_le32(S_IFDIR | 0755);
404
Li Zefan08fe4db2011-03-28 02:01:25 +0000405 root_item.flags = 0;
406 root_item.byte_limit = 0;
407 inode_item->flags = cpu_to_le64(BTRFS_INODE_ROOT_ITEM_INIT);
408
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400409 btrfs_set_root_bytenr(&root_item, leaf->start);
Yan Zheng84234f32008-10-29 14:49:05 -0400410 btrfs_set_root_generation(&root_item, trans->transid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400411 btrfs_set_root_level(&root_item, 0);
412 btrfs_set_root_refs(&root_item, 1);
Yan, Zheng86b9f2e2009-11-12 09:36:50 +0000413 btrfs_set_root_used(&root_item, leaf->len);
Yan Zheng80ff3852008-10-30 14:20:02 -0400414 btrfs_set_root_last_snapshot(&root_item, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400415
Alexander Block8ea05e32012-07-25 17:35:53 +0200416 btrfs_set_root_generation_v2(&root_item,
417 btrfs_root_generation(&root_item));
418 uuid_le_gen(&new_uuid);
419 memcpy(root_item.uuid, new_uuid.b, BTRFS_UUID_SIZE);
420 root_item.otime.sec = cpu_to_le64(cur_time.tv_sec);
421 root_item.otime.nsec = cpu_to_le64(cur_time.tv_nsec);
422 root_item.ctime = root_item.otime;
423 btrfs_set_root_ctransid(&root_item, trans->transid);
424 btrfs_set_root_otransid(&root_item, trans->transid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400425
Chris Mason925baed2008-06-25 16:01:30 -0400426 btrfs_tree_unlock(leaf);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400427 free_extent_buffer(leaf);
428 leaf = NULL;
429
430 btrfs_set_root_dirid(&root_item, new_dirid);
431
432 key.objectid = objectid;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400433 key.offset = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400434 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
435 ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
436 &root_item);
437 if (ret)
438 goto fail;
439
Yan, Zheng76dda932009-09-21 16:00:26 -0400440 key.offset = (u64)-1;
441 new_root = btrfs_read_fs_root_no_name(root->fs_info, &key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100442 if (IS_ERR(new_root)) {
443 btrfs_abort_transaction(trans, root, PTR_ERR(new_root));
444 ret = PTR_ERR(new_root);
445 goto fail;
446 }
Yan, Zheng76dda932009-09-21 16:00:26 -0400447
448 btrfs_record_root_in_trans(trans, new_root);
449
Josef Bacikd82a6f1d2011-05-11 15:26:06 -0400450 ret = btrfs_create_subvol_root(trans, new_root, new_dirid);
Mark Fashehce598972011-07-26 11:32:23 -0700451 if (ret) {
452 /* We potentially lose an unused inode item here */
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100453 btrfs_abort_transaction(trans, root, ret);
Mark Fashehce598972011-07-26 11:32:23 -0700454 goto fail;
455 }
456
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400457 /*
458 * insert the directory item
459 */
Chris Mason3de45862008-11-17 21:02:50 -0500460 ret = btrfs_set_inode_index(dir, &index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100461 if (ret) {
462 btrfs_abort_transaction(trans, root, ret);
463 goto fail;
464 }
Chris Mason3de45862008-11-17 21:02:50 -0500465
466 ret = btrfs_insert_dir_item(trans, root,
Miao Xie16cdcec2011-04-22 18:12:22 +0800467 name, namelen, dir, &key,
Chris Mason3de45862008-11-17 21:02:50 -0500468 BTRFS_FT_DIR, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100469 if (ret) {
470 btrfs_abort_transaction(trans, root, ret);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400471 goto fail;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100472 }
Chris Mason0660b5a2008-11-17 20:37:39 -0500473
Yan Zheng52c26172009-01-05 15:43:43 -0500474 btrfs_i_size_write(dir, dir->i_size + namelen * 2);
475 ret = btrfs_update_inode(trans, root, dir);
476 BUG_ON(ret);
477
Chris Mason0660b5a2008-11-17 20:37:39 -0500478 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -0400479 objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +0800480 btrfs_ino(dir), index, name, namelen);
Yan, Zheng76dda932009-09-21 16:00:26 -0400481
Chris Mason0660b5a2008-11-17 20:37:39 -0500482 BUG_ON(ret);
483
Yan, Zheng76dda932009-09-21 16:00:26 -0400484 d_instantiate(dentry, btrfs_lookup_dentry(dir, dentry));
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400485fail:
Sage Weil72fd0322010-10-29 15:41:32 -0400486 if (async_transid) {
487 *async_transid = trans->transid;
488 err = btrfs_commit_transaction_async(trans, root, 1);
489 } else {
490 err = btrfs_commit_transaction(trans, root);
491 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400492 if (err && !ret)
493 ret = err;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400494 return ret;
495}
496
Sage Weil72fd0322010-10-29 15:41:32 -0400497static int create_snapshot(struct btrfs_root *root, struct dentry *dentry,
Li Zefanb83cc962010-12-20 16:04:08 +0800498 char *name, int namelen, u64 *async_transid,
499 bool readonly)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400500{
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000501 struct inode *inode;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400502 struct btrfs_pending_snapshot *pending_snapshot;
503 struct btrfs_trans_handle *trans;
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000504 int ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400505
506 if (!root->ref_cows)
507 return -EINVAL;
508
Yan, Zhenga22285a2010-05-16 10:48:46 -0400509 pending_snapshot = kzalloc(sizeof(*pending_snapshot), GFP_NOFS);
510 if (!pending_snapshot)
511 return -ENOMEM;
512
513 btrfs_init_block_rsv(&pending_snapshot->block_rsv);
514 pending_snapshot->dentry = dentry;
515 pending_snapshot->root = root;
Li Zefanb83cc962010-12-20 16:04:08 +0800516 pending_snapshot->readonly = readonly;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400517
518 trans = btrfs_start_transaction(root->fs_info->extent_root, 5);
519 if (IS_ERR(trans)) {
520 ret = PTR_ERR(trans);
521 goto fail;
522 }
523
524 ret = btrfs_snap_reserve_metadata(trans, pending_snapshot);
525 BUG_ON(ret);
526
Josef Bacik83515832011-06-14 15:16:14 -0400527 spin_lock(&root->fs_info->trans_lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400528 list_add(&pending_snapshot->list,
529 &trans->transaction->pending_snapshots);
Josef Bacik83515832011-06-14 15:16:14 -0400530 spin_unlock(&root->fs_info->trans_lock);
Sage Weil72fd0322010-10-29 15:41:32 -0400531 if (async_transid) {
532 *async_transid = trans->transid;
533 ret = btrfs_commit_transaction_async(trans,
534 root->fs_info->extent_root, 1);
535 } else {
536 ret = btrfs_commit_transaction(trans,
537 root->fs_info->extent_root);
538 }
Yan, Zhenga22285a2010-05-16 10:48:46 -0400539 BUG_ON(ret);
540
541 ret = pending_snapshot->error;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400542 if (ret)
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000543 goto fail;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400544
Josef Bacik66b4ffd2011-01-31 16:22:42 -0500545 ret = btrfs_orphan_cleanup(pending_snapshot->snap);
546 if (ret)
547 goto fail;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400548
Al Viro2fbe8c82011-07-16 21:38:06 -0400549 inode = btrfs_lookup_dentry(dentry->d_parent->d_inode, dentry);
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000550 if (IS_ERR(inode)) {
551 ret = PTR_ERR(inode);
552 goto fail;
553 }
554 BUG_ON(!inode);
555 d_instantiate(dentry, inode);
556 ret = 0;
557fail:
Yan, Zhenga22285a2010-05-16 10:48:46 -0400558 kfree(pending_snapshot);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400559 return ret;
560}
561
Sage Weil4260f7c2010-10-29 15:46:43 -0400562/* copy of check_sticky in fs/namei.c()
563* It's inline, so penalty for filesystems that don't use sticky bit is
564* minimal.
565*/
566static inline int btrfs_check_sticky(struct inode *dir, struct inode *inode)
567{
568 uid_t fsuid = current_fsuid();
569
570 if (!(dir->i_mode & S_ISVTX))
571 return 0;
572 if (inode->i_uid == fsuid)
573 return 0;
574 if (dir->i_uid == fsuid)
575 return 0;
576 return !capable(CAP_FOWNER);
577}
578
579/* copy of may_delete in fs/namei.c()
580 * Check whether we can remove a link victim from directory dir, check
581 * whether the type of victim is right.
582 * 1. We can't do it if dir is read-only (done in permission())
583 * 2. We should have write and exec permissions on dir
584 * 3. We can't remove anything from append-only dir
585 * 4. We can't do anything with immutable dir (done in permission())
586 * 5. If the sticky bit on dir is set we should either
587 * a. be owner of dir, or
588 * b. be owner of victim, or
589 * c. have CAP_FOWNER capability
590 * 6. If the victim is append-only or immutable we can't do antyhing with
591 * links pointing to it.
592 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
593 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
594 * 9. We can't remove a root or mountpoint.
595 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
596 * nfs_async_unlink().
597 */
598
599static int btrfs_may_delete(struct inode *dir,struct dentry *victim,int isdir)
600{
601 int error;
602
603 if (!victim->d_inode)
604 return -ENOENT;
605
606 BUG_ON(victim->d_parent->d_inode != dir);
607 audit_inode_child(victim, dir);
608
609 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
610 if (error)
611 return error;
612 if (IS_APPEND(dir))
613 return -EPERM;
614 if (btrfs_check_sticky(dir, victim->d_inode)||
615 IS_APPEND(victim->d_inode)||
616 IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode))
617 return -EPERM;
618 if (isdir) {
619 if (!S_ISDIR(victim->d_inode->i_mode))
620 return -ENOTDIR;
621 if (IS_ROOT(victim))
622 return -EBUSY;
623 } else if (S_ISDIR(victim->d_inode->i_mode))
624 return -EISDIR;
625 if (IS_DEADDIR(dir))
626 return -ENOENT;
627 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
628 return -EBUSY;
629 return 0;
630}
631
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400632/* copy of may_create in fs/namei.c() */
633static inline int btrfs_may_create(struct inode *dir, struct dentry *child)
634{
635 if (child->d_inode)
636 return -EEXIST;
637 if (IS_DEADDIR(dir))
638 return -ENOENT;
639 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
640}
641
642/*
643 * Create a new subvolume below @parent. This is largely modeled after
644 * sys_mkdirat and vfs_mkdir, but we only do a single component lookup
645 * inside this filesystem so it's quite a bit simpler.
646 */
Yan, Zheng76dda932009-09-21 16:00:26 -0400647static noinline int btrfs_mksubvol(struct path *parent,
648 char *name, int namelen,
Sage Weil72fd0322010-10-29 15:41:32 -0400649 struct btrfs_root *snap_src,
Li Zefanb83cc962010-12-20 16:04:08 +0800650 u64 *async_transid, bool readonly)
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400651{
Yan, Zheng76dda932009-09-21 16:00:26 -0400652 struct inode *dir = parent->dentry->d_inode;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400653 struct dentry *dentry;
654 int error;
655
Yan, Zheng76dda932009-09-21 16:00:26 -0400656 mutex_lock_nested(&dir->i_mutex, I_MUTEX_PARENT);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400657
658 dentry = lookup_one_len(name, parent->dentry, namelen);
659 error = PTR_ERR(dentry);
660 if (IS_ERR(dentry))
661 goto out_unlock;
662
663 error = -EEXIST;
664 if (dentry->d_inode)
665 goto out_dput;
666
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400667 error = mnt_want_write(parent->mnt);
668 if (error)
669 goto out_dput;
670
Yan, Zheng76dda932009-09-21 16:00:26 -0400671 error = btrfs_may_create(dir, dentry);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400672 if (error)
673 goto out_drop_write;
674
Yan, Zheng76dda932009-09-21 16:00:26 -0400675 down_read(&BTRFS_I(dir)->root->fs_info->subvol_sem);
676
677 if (btrfs_root_refs(&BTRFS_I(dir)->root->root_item) == 0)
678 goto out_up_read;
679
Chris Mason3de45862008-11-17 21:02:50 -0500680 if (snap_src) {
Sage Weil72fd0322010-10-29 15:41:32 -0400681 error = create_snapshot(snap_src, dentry,
Li Zefanb83cc962010-12-20 16:04:08 +0800682 name, namelen, async_transid, readonly);
Chris Mason3de45862008-11-17 21:02:50 -0500683 } else {
Yan, Zheng76dda932009-09-21 16:00:26 -0400684 error = create_subvol(BTRFS_I(dir)->root, dentry,
Sage Weil72fd0322010-10-29 15:41:32 -0400685 name, namelen, async_transid);
Chris Mason3de45862008-11-17 21:02:50 -0500686 }
Yan, Zheng76dda932009-09-21 16:00:26 -0400687 if (!error)
688 fsnotify_mkdir(dir, dentry);
689out_up_read:
690 up_read(&BTRFS_I(dir)->root->fs_info->subvol_sem);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400691out_drop_write:
692 mnt_drop_write(parent->mnt);
693out_dput:
694 dput(dentry);
695out_unlock:
Yan, Zheng76dda932009-09-21 16:00:26 -0400696 mutex_unlock(&dir->i_mutex);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400697 return error;
698}
699
Chris Mason4cb53002011-05-24 15:35:30 -0400700/*
701 * When we're defragging a range, we don't want to kick it off again
702 * if it is really just waiting for delalloc to send it down.
703 * If we find a nice big extent or delalloc range for the bytes in the
704 * file you want to defrag, we return 0 to let you know to skip this
705 * part of the file
706 */
707static int check_defrag_in_cache(struct inode *inode, u64 offset, int thresh)
708{
709 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
710 struct extent_map *em = NULL;
711 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
712 u64 end;
713
714 read_lock(&em_tree->lock);
715 em = lookup_extent_mapping(em_tree, offset, PAGE_CACHE_SIZE);
716 read_unlock(&em_tree->lock);
717
718 if (em) {
719 end = extent_map_end(em);
720 free_extent_map(em);
721 if (end - offset > thresh)
722 return 0;
723 }
724 /* if we already have a nice delalloc here, just stop */
725 thresh /= 2;
726 end = count_range_bits(io_tree, &offset, offset + thresh,
727 thresh, EXTENT_DELALLOC, 1);
728 if (end >= thresh)
729 return 0;
730 return 1;
731}
732
733/*
734 * helper function to walk through a file and find extents
735 * newer than a specific transid, and smaller than thresh.
736 *
737 * This is used by the defragging code to find new and small
738 * extents
739 */
740static int find_new_extents(struct btrfs_root *root,
741 struct inode *inode, u64 newer_than,
742 u64 *off, int thresh)
743{
744 struct btrfs_path *path;
745 struct btrfs_key min_key;
746 struct btrfs_key max_key;
747 struct extent_buffer *leaf;
748 struct btrfs_file_extent_item *extent;
749 int type;
750 int ret;
David Sterbaa4689d22011-05-31 17:08:14 +0000751 u64 ino = btrfs_ino(inode);
Chris Mason4cb53002011-05-24 15:35:30 -0400752
753 path = btrfs_alloc_path();
754 if (!path)
755 return -ENOMEM;
756
David Sterbaa4689d22011-05-31 17:08:14 +0000757 min_key.objectid = ino;
Chris Mason4cb53002011-05-24 15:35:30 -0400758 min_key.type = BTRFS_EXTENT_DATA_KEY;
759 min_key.offset = *off;
760
David Sterbaa4689d22011-05-31 17:08:14 +0000761 max_key.objectid = ino;
Chris Mason4cb53002011-05-24 15:35:30 -0400762 max_key.type = (u8)-1;
763 max_key.offset = (u64)-1;
764
765 path->keep_locks = 1;
766
767 while(1) {
768 ret = btrfs_search_forward(root, &min_key, &max_key,
769 path, 0, newer_than);
770 if (ret != 0)
771 goto none;
David Sterbaa4689d22011-05-31 17:08:14 +0000772 if (min_key.objectid != ino)
Chris Mason4cb53002011-05-24 15:35:30 -0400773 goto none;
774 if (min_key.type != BTRFS_EXTENT_DATA_KEY)
775 goto none;
776
777 leaf = path->nodes[0];
778 extent = btrfs_item_ptr(leaf, path->slots[0],
779 struct btrfs_file_extent_item);
780
781 type = btrfs_file_extent_type(leaf, extent);
782 if (type == BTRFS_FILE_EXTENT_REG &&
783 btrfs_file_extent_num_bytes(leaf, extent) < thresh &&
784 check_defrag_in_cache(inode, min_key.offset, thresh)) {
785 *off = min_key.offset;
786 btrfs_free_path(path);
787 return 0;
788 }
789
790 if (min_key.offset == (u64)-1)
791 goto none;
792
793 min_key.offset++;
794 btrfs_release_path(path);
795 }
796none:
797 btrfs_free_path(path);
798 return -ENOENT;
799}
800
Li Zefan6c282eb2012-06-11 16:03:35 +0800801static struct extent_map *defrag_lookup_extent(struct inode *inode, u64 start)
Liu Bo17ce6ef2012-03-29 09:57:45 -0400802{
803 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason940100a2010-03-10 10:52:59 -0500804 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Li Zefan6c282eb2012-06-11 16:03:35 +0800805 struct extent_map *em;
806 u64 len = PAGE_CACHE_SIZE;
Chris Mason940100a2010-03-10 10:52:59 -0500807
808 /*
809 * hopefully we have this extent in the tree already, try without
810 * the full extent lock
811 */
812 read_lock(&em_tree->lock);
813 em = lookup_extent_mapping(em_tree, start, len);
814 read_unlock(&em_tree->lock);
815
816 if (!em) {
817 /* get the big lock and read metadata off disk */
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100818 lock_extent(io_tree, start, start + len - 1);
Chris Mason940100a2010-03-10 10:52:59 -0500819 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100820 unlock_extent(io_tree, start, start + len - 1);
Chris Mason940100a2010-03-10 10:52:59 -0500821
Dan Carpenter6cf8bfb2010-03-20 11:22:10 +0000822 if (IS_ERR(em))
Li Zefan6c282eb2012-06-11 16:03:35 +0800823 return NULL;
Chris Mason940100a2010-03-10 10:52:59 -0500824 }
825
Li Zefan6c282eb2012-06-11 16:03:35 +0800826 return em;
827}
828
829static bool defrag_check_next_extent(struct inode *inode, struct extent_map *em)
830{
831 struct extent_map *next;
832 bool ret = true;
833
834 /* this is the last extent */
835 if (em->start + em->len >= i_size_read(inode))
836 return false;
837
838 next = defrag_lookup_extent(inode, em->start + em->len);
839 if (!next || next->block_start >= EXTENT_MAP_LAST_BYTE)
840 ret = false;
841
842 free_extent_map(next);
843 return ret;
844}
845
846static int should_defrag_range(struct inode *inode, u64 start, int thresh,
847 u64 *last_len, u64 *skip, u64 *defrag_end)
848{
849 struct extent_map *em;
850 int ret = 1;
851 bool next_mergeable = true;
852
853 /*
854 * make sure that once we start defragging an extent, we keep on
855 * defragging it
856 */
857 if (start < *defrag_end)
858 return 1;
859
860 *skip = 0;
861
862 em = defrag_lookup_extent(inode, start);
863 if (!em)
864 return 0;
865
Chris Mason940100a2010-03-10 10:52:59 -0500866 /* this will cover holes, and inline extents */
Liu Bo17ce6ef2012-03-29 09:57:45 -0400867 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
Chris Mason940100a2010-03-10 10:52:59 -0500868 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -0400869 goto out;
870 }
871
Li Zefan6c282eb2012-06-11 16:03:35 +0800872 next_mergeable = defrag_check_next_extent(inode, em);
Chris Mason940100a2010-03-10 10:52:59 -0500873
874 /*
Li Zefan6c282eb2012-06-11 16:03:35 +0800875 * we hit a real extent, if it is big or the next extent is not a
876 * real extent, don't bother defragging it
Chris Mason940100a2010-03-10 10:52:59 -0500877 */
Li Zefan6c282eb2012-06-11 16:03:35 +0800878 if ((*last_len == 0 || *last_len >= thresh) &&
879 (em->len >= thresh || !next_mergeable))
Chris Mason940100a2010-03-10 10:52:59 -0500880 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -0400881out:
Chris Mason940100a2010-03-10 10:52:59 -0500882 /*
883 * last_len ends up being a counter of how many bytes we've defragged.
884 * every time we choose not to defrag an extent, we reset *last_len
885 * so that the next tiny extent will force a defrag.
886 *
887 * The end result of this is that tiny extents before a single big
888 * extent will force at least part of that big extent to be defragged.
889 */
890 if (ret) {
Chris Mason940100a2010-03-10 10:52:59 -0500891 *defrag_end = extent_map_end(em);
892 } else {
893 *last_len = 0;
894 *skip = extent_map_end(em);
895 *defrag_end = 0;
896 }
897
898 free_extent_map(em);
899 return ret;
900}
901
Chris Mason4cb53002011-05-24 15:35:30 -0400902/*
903 * it doesn't do much good to defrag one or two pages
904 * at a time. This pulls in a nice chunk of pages
905 * to COW and defrag.
906 *
907 * It also makes sure the delalloc code has enough
908 * dirty data to avoid making new small extents as part
909 * of the defrag
910 *
911 * It's a good idea to start RA on this range
912 * before calling this.
913 */
914static int cluster_pages_for_defrag(struct inode *inode,
915 struct page **pages,
916 unsigned long start_index,
917 int num_pages)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400918{
Chris Mason4cb53002011-05-24 15:35:30 -0400919 unsigned long file_end;
920 u64 isize = i_size_read(inode);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400921 u64 page_start;
922 u64 page_end;
Liu Bo1f12bd02012-03-29 09:57:44 -0400923 u64 page_cnt;
Chris Mason4cb53002011-05-24 15:35:30 -0400924 int ret;
925 int i;
926 int i_done;
927 struct btrfs_ordered_extent *ordered;
928 struct extent_state *cached_state = NULL;
Miao Xie600a45e2012-02-16 15:01:24 +0800929 struct extent_io_tree *tree;
Josef Bacik3b16a4e2011-09-21 15:05:58 -0400930 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
Chris Mason4cb53002011-05-24 15:35:30 -0400931
Chris Mason4cb53002011-05-24 15:35:30 -0400932 file_end = (isize - 1) >> PAGE_CACHE_SHIFT;
Liu Bo1f12bd02012-03-29 09:57:44 -0400933 if (!isize || start_index > file_end)
934 return 0;
935
936 page_cnt = min_t(u64, (u64)num_pages, (u64)file_end - start_index + 1);
Chris Mason4cb53002011-05-24 15:35:30 -0400937
938 ret = btrfs_delalloc_reserve_space(inode,
Liu Bo1f12bd02012-03-29 09:57:44 -0400939 page_cnt << PAGE_CACHE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -0400940 if (ret)
941 return ret;
Chris Mason4cb53002011-05-24 15:35:30 -0400942 i_done = 0;
Miao Xie600a45e2012-02-16 15:01:24 +0800943 tree = &BTRFS_I(inode)->io_tree;
Chris Mason4cb53002011-05-24 15:35:30 -0400944
945 /* step one, lock all the pages */
Liu Bo1f12bd02012-03-29 09:57:44 -0400946 for (i = 0; i < page_cnt; i++) {
Chris Mason4cb53002011-05-24 15:35:30 -0400947 struct page *page;
Miao Xie600a45e2012-02-16 15:01:24 +0800948again:
Josef Bacika94733d2011-07-11 10:47:06 -0400949 page = find_or_create_page(inode->i_mapping,
Miao Xie600a45e2012-02-16 15:01:24 +0800950 start_index + i, mask);
Chris Mason4cb53002011-05-24 15:35:30 -0400951 if (!page)
952 break;
953
Miao Xie600a45e2012-02-16 15:01:24 +0800954 page_start = page_offset(page);
955 page_end = page_start + PAGE_CACHE_SIZE - 1;
956 while (1) {
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100957 lock_extent(tree, page_start, page_end);
Miao Xie600a45e2012-02-16 15:01:24 +0800958 ordered = btrfs_lookup_ordered_extent(inode,
959 page_start);
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100960 unlock_extent(tree, page_start, page_end);
Miao Xie600a45e2012-02-16 15:01:24 +0800961 if (!ordered)
962 break;
963
964 unlock_page(page);
965 btrfs_start_ordered_extent(inode, ordered, 1);
966 btrfs_put_ordered_extent(ordered);
967 lock_page(page);
Liu Bo1f12bd02012-03-29 09:57:44 -0400968 /*
969 * we unlocked the page above, so we need check if
970 * it was released or not.
971 */
972 if (page->mapping != inode->i_mapping) {
973 unlock_page(page);
974 page_cache_release(page);
975 goto again;
976 }
Miao Xie600a45e2012-02-16 15:01:24 +0800977 }
978
Chris Mason4cb53002011-05-24 15:35:30 -0400979 if (!PageUptodate(page)) {
980 btrfs_readpage(NULL, page);
981 lock_page(page);
982 if (!PageUptodate(page)) {
983 unlock_page(page);
984 page_cache_release(page);
985 ret = -EIO;
986 break;
987 }
988 }
Miao Xie600a45e2012-02-16 15:01:24 +0800989
Miao Xie600a45e2012-02-16 15:01:24 +0800990 if (page->mapping != inode->i_mapping) {
991 unlock_page(page);
992 page_cache_release(page);
993 goto again;
994 }
995
Chris Mason4cb53002011-05-24 15:35:30 -0400996 pages[i] = page;
997 i_done++;
998 }
999 if (!i_done || ret)
1000 goto out;
1001
1002 if (!(inode->i_sb->s_flags & MS_ACTIVE))
1003 goto out;
1004
1005 /*
1006 * so now we have a nice long stream of locked
1007 * and up to date pages, lets wait on them
1008 */
1009 for (i = 0; i < i_done; i++)
1010 wait_on_page_writeback(pages[i]);
1011
1012 page_start = page_offset(pages[0]);
1013 page_end = page_offset(pages[i_done - 1]) + PAGE_CACHE_SIZE;
1014
1015 lock_extent_bits(&BTRFS_I(inode)->io_tree,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001016 page_start, page_end - 1, 0, &cached_state);
Chris Mason4cb53002011-05-24 15:35:30 -04001017 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start,
1018 page_end - 1, EXTENT_DIRTY | EXTENT_DELALLOC |
1019 EXTENT_DO_ACCOUNTING, 0, 0, &cached_state,
1020 GFP_NOFS);
1021
Liu Bo1f12bd02012-03-29 09:57:44 -04001022 if (i_done != page_cnt) {
Josef Bacik9e0baf62011-07-15 15:16:44 +00001023 spin_lock(&BTRFS_I(inode)->lock);
1024 BTRFS_I(inode)->outstanding_extents++;
1025 spin_unlock(&BTRFS_I(inode)->lock);
Chris Mason4cb53002011-05-24 15:35:30 -04001026 btrfs_delalloc_release_space(inode,
Liu Bo1f12bd02012-03-29 09:57:44 -04001027 (page_cnt - i_done) << PAGE_CACHE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001028 }
1029
1030
1031 btrfs_set_extent_delalloc(inode, page_start, page_end - 1,
1032 &cached_state);
1033
1034 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
1035 page_start, page_end - 1, &cached_state,
1036 GFP_NOFS);
1037
1038 for (i = 0; i < i_done; i++) {
1039 clear_page_dirty_for_io(pages[i]);
1040 ClearPageChecked(pages[i]);
1041 set_page_extent_mapped(pages[i]);
1042 set_page_dirty(pages[i]);
1043 unlock_page(pages[i]);
1044 page_cache_release(pages[i]);
1045 }
1046 return i_done;
1047out:
1048 for (i = 0; i < i_done; i++) {
1049 unlock_page(pages[i]);
1050 page_cache_release(pages[i]);
1051 }
Liu Bo1f12bd02012-03-29 09:57:44 -04001052 btrfs_delalloc_release_space(inode, page_cnt << PAGE_CACHE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001053 return ret;
1054
1055}
1056
1057int btrfs_defrag_file(struct inode *inode, struct file *file,
1058 struct btrfs_ioctl_defrag_range_args *range,
1059 u64 newer_than, unsigned long max_to_defrag)
1060{
1061 struct btrfs_root *root = BTRFS_I(inode)->root;
1062 struct btrfs_super_block *disk_super;
1063 struct file_ra_state *ra = NULL;
1064 unsigned long last_index;
Li Zefan151a31b2011-09-02 15:56:39 +08001065 u64 isize = i_size_read(inode);
Chris Mason4cb53002011-05-24 15:35:30 -04001066 u64 features;
Chris Mason940100a2010-03-10 10:52:59 -05001067 u64 last_len = 0;
1068 u64 skip = 0;
1069 u64 defrag_end = 0;
Chris Mason4cb53002011-05-24 15:35:30 -04001070 u64 newer_off = range->start;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001071 unsigned long i;
Li Zefan008873e2011-09-02 15:57:07 +08001072 unsigned long ra_index = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001073 int ret;
Chris Mason4cb53002011-05-24 15:35:30 -04001074 int defrag_count = 0;
Li Zefan1a419d82010-10-25 15:12:50 +08001075 int compress_type = BTRFS_COMPRESS_ZLIB;
Chris Mason4cb53002011-05-24 15:35:30 -04001076 int extent_thresh = range->extent_thresh;
Li Zefan008873e2011-09-02 15:57:07 +08001077 int max_cluster = (256 * 1024) >> PAGE_CACHE_SHIFT;
1078 int cluster = max_cluster;
Chris Mason4cb53002011-05-24 15:35:30 -04001079 u64 new_align = ~((u64)128 * 1024 - 1);
1080 struct page **pages = NULL;
1081
1082 if (extent_thresh == 0)
1083 extent_thresh = 256 * 1024;
Li Zefan1a419d82010-10-25 15:12:50 +08001084
1085 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS) {
1086 if (range->compress_type > BTRFS_COMPRESS_TYPES)
1087 return -EINVAL;
1088 if (range->compress_type)
1089 compress_type = range->compress_type;
1090 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001091
Li Zefan151a31b2011-09-02 15:56:39 +08001092 if (isize == 0)
Chris Mason940100a2010-03-10 10:52:59 -05001093 return 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001094
Chris Mason4cb53002011-05-24 15:35:30 -04001095 /*
1096 * if we were not given a file, allocate a readahead
1097 * context
1098 */
1099 if (!file) {
1100 ra = kzalloc(sizeof(*ra), GFP_NOFS);
1101 if (!ra)
1102 return -ENOMEM;
1103 file_ra_state_init(ra, inode->i_mapping);
1104 } else {
1105 ra = &file->f_ra;
1106 }
1107
Li Zefan008873e2011-09-02 15:57:07 +08001108 pages = kmalloc(sizeof(struct page *) * max_cluster,
Chris Mason4cb53002011-05-24 15:35:30 -04001109 GFP_NOFS);
1110 if (!pages) {
1111 ret = -ENOMEM;
1112 goto out_ra;
1113 }
1114
1115 /* find the last page to defrag */
Chris Mason1e701a32010-03-11 09:42:04 -05001116 if (range->start + range->len > range->start) {
Li Zefan151a31b2011-09-02 15:56:39 +08001117 last_index = min_t(u64, isize - 1,
Chris Mason1e701a32010-03-11 09:42:04 -05001118 range->start + range->len - 1) >> PAGE_CACHE_SHIFT;
1119 } else {
Li Zefan151a31b2011-09-02 15:56:39 +08001120 last_index = (isize - 1) >> PAGE_CACHE_SHIFT;
Chris Mason1e701a32010-03-11 09:42:04 -05001121 }
1122
Chris Mason4cb53002011-05-24 15:35:30 -04001123 if (newer_than) {
1124 ret = find_new_extents(root, inode, newer_than,
1125 &newer_off, 64 * 1024);
1126 if (!ret) {
1127 range->start = newer_off;
1128 /*
1129 * we always align our defrag to help keep
1130 * the extents in the file evenly spaced
1131 */
1132 i = (newer_off & new_align) >> PAGE_CACHE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001133 } else
1134 goto out_ra;
1135 } else {
1136 i = range->start >> PAGE_CACHE_SHIFT;
1137 }
1138 if (!max_to_defrag)
Liu Bo7ec31b52012-01-26 15:01:12 -05001139 max_to_defrag = last_index + 1;
Chris Mason4cb53002011-05-24 15:35:30 -04001140
Li Zefan2a0f7f52011-10-10 15:43:34 -04001141 /*
1142 * make writeback starts from i, so the defrag range can be
1143 * written sequentially.
1144 */
1145 if (i < inode->i_mapping->writeback_index)
1146 inode->i_mapping->writeback_index = i;
1147
Chris Masonf7f43cc2011-10-11 11:41:40 -04001148 while (i <= last_index && defrag_count < max_to_defrag &&
1149 (i < (i_size_read(inode) + PAGE_CACHE_SIZE - 1) >>
1150 PAGE_CACHE_SHIFT)) {
Chris Mason4cb53002011-05-24 15:35:30 -04001151 /*
1152 * make sure we stop running if someone unmounts
1153 * the FS
1154 */
1155 if (!(inode->i_sb->s_flags & MS_ACTIVE))
1156 break;
1157
Liu Bo66c26892012-03-29 09:57:45 -04001158 if (!should_defrag_range(inode, (u64)i << PAGE_CACHE_SHIFT,
Li Zefan6c282eb2012-06-11 16:03:35 +08001159 extent_thresh, &last_len, &skip,
1160 &defrag_end)) {
Chris Mason940100a2010-03-10 10:52:59 -05001161 unsigned long next;
1162 /*
1163 * the should_defrag function tells us how much to skip
1164 * bump our counter by the suggested amount
1165 */
1166 next = (skip + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
1167 i = max(i + 1, next);
1168 continue;
1169 }
Li Zefan008873e2011-09-02 15:57:07 +08001170
1171 if (!newer_than) {
1172 cluster = (PAGE_CACHE_ALIGN(defrag_end) >>
1173 PAGE_CACHE_SHIFT) - i;
1174 cluster = min(cluster, max_cluster);
1175 } else {
1176 cluster = max_cluster;
1177 }
1178
Chris Mason1e701a32010-03-11 09:42:04 -05001179 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)
Li Zefan1a419d82010-10-25 15:12:50 +08001180 BTRFS_I(inode)->force_compress = compress_type;
Chris Mason940100a2010-03-10 10:52:59 -05001181
Li Zefan008873e2011-09-02 15:57:07 +08001182 if (i + cluster > ra_index) {
1183 ra_index = max(i, ra_index);
1184 btrfs_force_ra(inode->i_mapping, ra, file, ra_index,
1185 cluster);
1186 ra_index += max_cluster;
1187 }
Chris Mason940100a2010-03-10 10:52:59 -05001188
Liu Boecb8bea2012-03-29 09:57:44 -04001189 mutex_lock(&inode->i_mutex);
Li Zefan008873e2011-09-02 15:57:07 +08001190 ret = cluster_pages_for_defrag(inode, pages, i, cluster);
Liu Boecb8bea2012-03-29 09:57:44 -04001191 if (ret < 0) {
1192 mutex_unlock(&inode->i_mutex);
Chris Mason4cb53002011-05-24 15:35:30 -04001193 goto out_ra;
Liu Boecb8bea2012-03-29 09:57:44 -04001194 }
Chris Mason940100a2010-03-10 10:52:59 -05001195
Chris Mason4cb53002011-05-24 15:35:30 -04001196 defrag_count += ret;
1197 balance_dirty_pages_ratelimited_nr(inode->i_mapping, ret);
Liu Boecb8bea2012-03-29 09:57:44 -04001198 mutex_unlock(&inode->i_mutex);
Chris Mason4cb53002011-05-24 15:35:30 -04001199
1200 if (newer_than) {
1201 if (newer_off == (u64)-1)
1202 break;
1203
Liu Boe1f041e2012-03-29 09:57:45 -04001204 if (ret > 0)
1205 i += ret;
1206
Chris Mason4cb53002011-05-24 15:35:30 -04001207 newer_off = max(newer_off + 1,
1208 (u64)i << PAGE_CACHE_SHIFT);
1209
1210 ret = find_new_extents(root, inode,
1211 newer_than, &newer_off,
1212 64 * 1024);
1213 if (!ret) {
1214 range->start = newer_off;
1215 i = (newer_off & new_align) >> PAGE_CACHE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001216 } else {
1217 break;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001218 }
Chris Mason4cb53002011-05-24 15:35:30 -04001219 } else {
Li Zefan008873e2011-09-02 15:57:07 +08001220 if (ret > 0) {
Li Zefancbcc8322011-09-02 15:56:25 +08001221 i += ret;
Li Zefan008873e2011-09-02 15:57:07 +08001222 last_len += ret << PAGE_CACHE_SHIFT;
1223 } else {
Li Zefancbcc8322011-09-02 15:56:25 +08001224 i++;
Li Zefan008873e2011-09-02 15:57:07 +08001225 last_len = 0;
1226 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001227 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001228 }
1229
Chris Mason1e701a32010-03-11 09:42:04 -05001230 if ((range->flags & BTRFS_DEFRAG_RANGE_START_IO))
1231 filemap_flush(inode->i_mapping);
1232
1233 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
1234 /* the filemap_flush will queue IO into the worker threads, but
1235 * we have to make sure the IO is actually started and that
1236 * ordered extents get created before we return
1237 */
1238 atomic_inc(&root->fs_info->async_submit_draining);
1239 while (atomic_read(&root->fs_info->nr_async_submits) ||
1240 atomic_read(&root->fs_info->async_delalloc_pages)) {
1241 wait_event(root->fs_info->async_submit_wait,
1242 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
1243 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
1244 }
1245 atomic_dec(&root->fs_info->async_submit_draining);
1246
1247 mutex_lock(&inode->i_mutex);
Li Zefan261507a02010-12-17 14:21:50 +08001248 BTRFS_I(inode)->force_compress = BTRFS_COMPRESS_NONE;
Chris Mason1e701a32010-03-11 09:42:04 -05001249 mutex_unlock(&inode->i_mutex);
1250 }
1251
David Sterba6c417612011-04-13 15:41:04 +02001252 disk_super = root->fs_info->super_copy;
Li Zefan1a419d82010-10-25 15:12:50 +08001253 features = btrfs_super_incompat_flags(disk_super);
1254 if (range->compress_type == BTRFS_COMPRESS_LZO) {
1255 features |= BTRFS_FEATURE_INCOMPAT_COMPRESS_LZO;
1256 btrfs_set_super_incompat_flags(disk_super, features);
1257 }
1258
Diego Calleja60ccf822011-09-01 16:33:57 +02001259 ret = defrag_count;
Chris Mason940100a2010-03-10 10:52:59 -05001260
Chris Mason4cb53002011-05-24 15:35:30 -04001261out_ra:
1262 if (!file)
1263 kfree(ra);
1264 kfree(pages);
Chris Mason940100a2010-03-10 10:52:59 -05001265 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001266}
1267
Yan, Zheng76dda932009-09-21 16:00:26 -04001268static noinline int btrfs_ioctl_resize(struct btrfs_root *root,
1269 void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001270{
1271 u64 new_size;
1272 u64 old_size;
1273 u64 devid = 1;
1274 struct btrfs_ioctl_vol_args *vol_args;
1275 struct btrfs_trans_handle *trans;
1276 struct btrfs_device *device = NULL;
1277 char *sizestr;
1278 char *devstr = NULL;
1279 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001280 int mod = 0;
1281
Yan Zhengc146afa2008-11-12 14:34:12 -05001282 if (root->fs_info->sb->s_flags & MS_RDONLY)
1283 return -EROFS;
1284
Chris Masone441d542009-01-05 16:57:23 -05001285 if (!capable(CAP_SYS_ADMIN))
1286 return -EPERM;
1287
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001288 mutex_lock(&root->fs_info->volume_mutex);
1289 if (root->fs_info->balance_ctl) {
1290 printk(KERN_INFO "btrfs: balance in progress\n");
1291 ret = -EINVAL;
1292 goto out;
1293 }
1294
Li Zefandae7b662009-04-08 15:06:54 +08001295 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001296 if (IS_ERR(vol_args)) {
1297 ret = PTR_ERR(vol_args);
1298 goto out;
1299 }
Mark Fasheh5516e592008-07-24 12:20:14 -04001300
1301 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001302
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001303 sizestr = vol_args->name;
1304 devstr = strchr(sizestr, ':');
1305 if (devstr) {
1306 char *end;
1307 sizestr = devstr + 1;
1308 *devstr = '\0';
1309 devstr = vol_args->name;
1310 devid = simple_strtoull(devstr, &end, 10);
Arnd Hannemann5bb14682011-11-20 07:33:38 -05001311 printk(KERN_INFO "btrfs: resizing devid %llu\n",
Joel Becker21380932009-04-21 12:38:29 -07001312 (unsigned long long)devid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001313 }
Yan Zheng2b820322008-11-17 21:11:30 -05001314 device = btrfs_find_device(root, devid, NULL, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001315 if (!device) {
Arnd Hannemann5bb14682011-11-20 07:33:38 -05001316 printk(KERN_INFO "btrfs: resizer unable to find device %llu\n",
Joel Becker21380932009-04-21 12:38:29 -07001317 (unsigned long long)devid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001318 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001319 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001320 }
Liu Bo4e42ae12012-06-14 02:23:19 -06001321 if (device->fs_devices && device->fs_devices->seeding) {
1322 printk(KERN_INFO "btrfs: resizer unable to apply on "
Chris Masona8c4a332012-06-15 20:07:17 -04001323 "seeding device %llu\n",
1324 (unsigned long long)devid);
Liu Bo4e42ae12012-06-14 02:23:19 -06001325 ret = -EINVAL;
1326 goto out_free;
1327 }
1328
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001329 if (!strcmp(sizestr, "max"))
1330 new_size = device->bdev->bd_inode->i_size;
1331 else {
1332 if (sizestr[0] == '-') {
1333 mod = -1;
1334 sizestr++;
1335 } else if (sizestr[0] == '+') {
1336 mod = 1;
1337 sizestr++;
1338 }
Akinobu Mita91748462010-02-28 10:59:11 +00001339 new_size = memparse(sizestr, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001340 if (new_size == 0) {
1341 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001342 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001343 }
1344 }
1345
1346 old_size = device->total_bytes;
1347
1348 if (mod < 0) {
1349 if (new_size > old_size) {
1350 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001351 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001352 }
1353 new_size = old_size - new_size;
1354 } else if (mod > 0) {
1355 new_size = old_size + new_size;
1356 }
1357
1358 if (new_size < 256 * 1024 * 1024) {
1359 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001360 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001361 }
1362 if (new_size > device->bdev->bd_inode->i_size) {
1363 ret = -EFBIG;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001364 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001365 }
1366
1367 do_div(new_size, root->sectorsize);
1368 new_size *= root->sectorsize;
1369
Josef Bacik606686e2012-06-04 14:03:51 -04001370 printk_in_rcu(KERN_INFO "btrfs: new size for %s is %llu\n",
1371 rcu_str_deref(device->name),
1372 (unsigned long long)new_size);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001373
1374 if (new_size > old_size) {
Yan, Zhenga22285a2010-05-16 10:48:46 -04001375 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001376 if (IS_ERR(trans)) {
1377 ret = PTR_ERR(trans);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001378 goto out_free;
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001379 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001380 ret = btrfs_grow_device(trans, device, new_size);
1381 btrfs_commit_transaction(trans, root);
Mike Fleetwoodece7d202011-11-18 18:55:01 +00001382 } else if (new_size < old_size) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001383 ret = btrfs_shrink_device(device, new_size);
1384 }
1385
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001386out_free:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001387 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001388out:
1389 mutex_unlock(&root->fs_info->volume_mutex);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001390 return ret;
1391}
1392
Sage Weil72fd0322010-10-29 15:41:32 -04001393static noinline int btrfs_ioctl_snap_create_transid(struct file *file,
1394 char *name,
1395 unsigned long fd,
1396 int subvol,
Li Zefanb83cc962010-12-20 16:04:08 +08001397 u64 *transid,
1398 bool readonly)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001399{
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001400 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
Chris Mason3de45862008-11-17 21:02:50 -05001401 struct file *src_file;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001402 int namelen;
Chris Mason3de45862008-11-17 21:02:50 -05001403 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001404
Yan Zhengc146afa2008-11-12 14:34:12 -05001405 if (root->fs_info->sb->s_flags & MS_RDONLY)
1406 return -EROFS;
1407
Sage Weil72fd0322010-10-29 15:41:32 -04001408 namelen = strlen(name);
1409 if (strchr(name, '/')) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001410 ret = -EINVAL;
1411 goto out;
1412 }
1413
Chris Mason16780ca2012-02-20 22:14:55 -05001414 if (name[0] == '.' &&
1415 (namelen == 1 || (name[1] == '.' && namelen == 2))) {
1416 ret = -EEXIST;
1417 goto out;
1418 }
1419
Chris Mason3de45862008-11-17 21:02:50 -05001420 if (subvol) {
Sage Weil72fd0322010-10-29 15:41:32 -04001421 ret = btrfs_mksubvol(&file->f_path, name, namelen,
Li Zefanb83cc962010-12-20 16:04:08 +08001422 NULL, transid, readonly);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001423 } else {
Chris Mason3de45862008-11-17 21:02:50 -05001424 struct inode *src_inode;
Sage Weil72fd0322010-10-29 15:41:32 -04001425 src_file = fget(fd);
Chris Mason3de45862008-11-17 21:02:50 -05001426 if (!src_file) {
1427 ret = -EINVAL;
1428 goto out;
1429 }
1430
1431 src_inode = src_file->f_path.dentry->d_inode;
1432 if (src_inode->i_sb != file->f_path.dentry->d_inode->i_sb) {
Chris Masond3977122009-01-05 21:25:51 -05001433 printk(KERN_INFO "btrfs: Snapshot src from "
1434 "another FS\n");
Chris Mason3de45862008-11-17 21:02:50 -05001435 ret = -EINVAL;
1436 fput(src_file);
1437 goto out;
1438 }
Sage Weil72fd0322010-10-29 15:41:32 -04001439 ret = btrfs_mksubvol(&file->f_path, name, namelen,
1440 BTRFS_I(src_inode)->root,
Li Zefanb83cc962010-12-20 16:04:08 +08001441 transid, readonly);
Chris Mason3de45862008-11-17 21:02:50 -05001442 fput(src_file);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001443 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001444out:
Sage Weil72fd0322010-10-29 15:41:32 -04001445 return ret;
1446}
1447
1448static noinline int btrfs_ioctl_snap_create(struct file *file,
Li Zefanfa0d2b92010-12-20 15:53:28 +08001449 void __user *arg, int subvol)
Sage Weil72fd0322010-10-29 15:41:32 -04001450{
Li Zefanfa0d2b92010-12-20 15:53:28 +08001451 struct btrfs_ioctl_vol_args *vol_args;
Sage Weil72fd0322010-10-29 15:41:32 -04001452 int ret;
1453
Li Zefanfa0d2b92010-12-20 15:53:28 +08001454 vol_args = memdup_user(arg, sizeof(*vol_args));
1455 if (IS_ERR(vol_args))
1456 return PTR_ERR(vol_args);
1457 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Sage Weil72fd0322010-10-29 15:41:32 -04001458
Li Zefanfa0d2b92010-12-20 15:53:28 +08001459 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
Li Zefanb83cc962010-12-20 16:04:08 +08001460 vol_args->fd, subvol,
1461 NULL, false);
Li Zefanfdfb1e42010-12-10 06:41:56 +00001462
Li Zefanfa0d2b92010-12-20 15:53:28 +08001463 kfree(vol_args);
1464 return ret;
1465}
Li Zefanfdfb1e42010-12-10 06:41:56 +00001466
Li Zefanfa0d2b92010-12-20 15:53:28 +08001467static noinline int btrfs_ioctl_snap_create_v2(struct file *file,
1468 void __user *arg, int subvol)
1469{
1470 struct btrfs_ioctl_vol_args_v2 *vol_args;
1471 int ret;
1472 u64 transid = 0;
1473 u64 *ptr = NULL;
Li Zefanb83cc962010-12-20 16:04:08 +08001474 bool readonly = false;
Li Zefanfdfb1e42010-12-10 06:41:56 +00001475
Li Zefanfa0d2b92010-12-20 15:53:28 +08001476 vol_args = memdup_user(arg, sizeof(*vol_args));
1477 if (IS_ERR(vol_args))
1478 return PTR_ERR(vol_args);
1479 vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
Sage Weil75eaa0e2010-12-10 00:36:28 +00001480
Li Zefanb83cc962010-12-20 16:04:08 +08001481 if (vol_args->flags &
1482 ~(BTRFS_SUBVOL_CREATE_ASYNC | BTRFS_SUBVOL_RDONLY)) {
1483 ret = -EOPNOTSUPP;
Li Zefanfa0d2b92010-12-20 15:53:28 +08001484 goto out;
Sage Weil72fd0322010-10-29 15:41:32 -04001485 }
Li Zefanfa0d2b92010-12-20 15:53:28 +08001486
1487 if (vol_args->flags & BTRFS_SUBVOL_CREATE_ASYNC)
1488 ptr = &transid;
Li Zefanb83cc962010-12-20 16:04:08 +08001489 if (vol_args->flags & BTRFS_SUBVOL_RDONLY)
1490 readonly = true;
Li Zefanfa0d2b92010-12-20 15:53:28 +08001491
1492 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
Li Zefanb83cc962010-12-20 16:04:08 +08001493 vol_args->fd, subvol,
1494 ptr, readonly);
Li Zefanfa0d2b92010-12-20 15:53:28 +08001495
1496 if (ret == 0 && ptr &&
1497 copy_to_user(arg +
1498 offsetof(struct btrfs_ioctl_vol_args_v2,
1499 transid), ptr, sizeof(*ptr)))
1500 ret = -EFAULT;
Li Zefanfdfb1e42010-12-10 06:41:56 +00001501out:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001502 kfree(vol_args);
1503 return ret;
1504}
1505
Li Zefan0caa1022010-12-20 16:30:25 +08001506static noinline int btrfs_ioctl_subvol_getflags(struct file *file,
1507 void __user *arg)
1508{
1509 struct inode *inode = fdentry(file)->d_inode;
1510 struct btrfs_root *root = BTRFS_I(inode)->root;
1511 int ret = 0;
1512 u64 flags = 0;
1513
Li Zefan33345d012011-04-20 10:31:50 +08001514 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID)
Li Zefan0caa1022010-12-20 16:30:25 +08001515 return -EINVAL;
1516
1517 down_read(&root->fs_info->subvol_sem);
1518 if (btrfs_root_readonly(root))
1519 flags |= BTRFS_SUBVOL_RDONLY;
1520 up_read(&root->fs_info->subvol_sem);
1521
1522 if (copy_to_user(arg, &flags, sizeof(flags)))
1523 ret = -EFAULT;
1524
1525 return ret;
1526}
1527
1528static noinline int btrfs_ioctl_subvol_setflags(struct file *file,
1529 void __user *arg)
1530{
1531 struct inode *inode = fdentry(file)->d_inode;
1532 struct btrfs_root *root = BTRFS_I(inode)->root;
1533 struct btrfs_trans_handle *trans;
1534 u64 root_flags;
1535 u64 flags;
1536 int ret = 0;
1537
1538 if (root->fs_info->sb->s_flags & MS_RDONLY)
1539 return -EROFS;
1540
Li Zefan33345d012011-04-20 10:31:50 +08001541 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID)
Li Zefan0caa1022010-12-20 16:30:25 +08001542 return -EINVAL;
1543
1544 if (copy_from_user(&flags, arg, sizeof(flags)))
1545 return -EFAULT;
1546
Li Zefanb4dc2b82011-02-16 06:06:34 +00001547 if (flags & BTRFS_SUBVOL_CREATE_ASYNC)
Li Zefan0caa1022010-12-20 16:30:25 +08001548 return -EINVAL;
1549
1550 if (flags & ~BTRFS_SUBVOL_RDONLY)
1551 return -EOPNOTSUPP;
1552
Serge E. Hallyn2e149672011-03-23 16:43:26 -07001553 if (!inode_owner_or_capable(inode))
Li Zefanb4dc2b82011-02-16 06:06:34 +00001554 return -EACCES;
1555
Li Zefan0caa1022010-12-20 16:30:25 +08001556 down_write(&root->fs_info->subvol_sem);
1557
1558 /* nothing to do */
1559 if (!!(flags & BTRFS_SUBVOL_RDONLY) == btrfs_root_readonly(root))
1560 goto out;
1561
1562 root_flags = btrfs_root_flags(&root->root_item);
1563 if (flags & BTRFS_SUBVOL_RDONLY)
1564 btrfs_set_root_flags(&root->root_item,
1565 root_flags | BTRFS_ROOT_SUBVOL_RDONLY);
1566 else
1567 btrfs_set_root_flags(&root->root_item,
1568 root_flags & ~BTRFS_ROOT_SUBVOL_RDONLY);
1569
1570 trans = btrfs_start_transaction(root, 1);
1571 if (IS_ERR(trans)) {
1572 ret = PTR_ERR(trans);
1573 goto out_reset;
1574 }
1575
Li Zefanb4dc2b82011-02-16 06:06:34 +00001576 ret = btrfs_update_root(trans, root->fs_info->tree_root,
Li Zefan0caa1022010-12-20 16:30:25 +08001577 &root->root_key, &root->root_item);
1578
1579 btrfs_commit_transaction(trans, root);
1580out_reset:
1581 if (ret)
1582 btrfs_set_root_flags(&root->root_item, root_flags);
1583out:
1584 up_write(&root->fs_info->subvol_sem);
1585 return ret;
1586}
1587
Yan, Zheng76dda932009-09-21 16:00:26 -04001588/*
1589 * helper to check if the subvolume references other subvolumes
1590 */
1591static noinline int may_destroy_subvol(struct btrfs_root *root)
1592{
1593 struct btrfs_path *path;
1594 struct btrfs_key key;
1595 int ret;
1596
1597 path = btrfs_alloc_path();
1598 if (!path)
1599 return -ENOMEM;
1600
1601 key.objectid = root->root_key.objectid;
1602 key.type = BTRFS_ROOT_REF_KEY;
1603 key.offset = (u64)-1;
1604
1605 ret = btrfs_search_slot(NULL, root->fs_info->tree_root,
1606 &key, path, 0, 0);
1607 if (ret < 0)
1608 goto out;
1609 BUG_ON(ret == 0);
1610
1611 ret = 0;
1612 if (path->slots[0] > 0) {
1613 path->slots[0]--;
1614 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1615 if (key.objectid == root->root_key.objectid &&
1616 key.type == BTRFS_ROOT_REF_KEY)
1617 ret = -ENOTEMPTY;
1618 }
1619out:
1620 btrfs_free_path(path);
1621 return ret;
1622}
1623
Chris Masonac8e9812010-02-28 15:39:26 -05001624static noinline int key_in_sk(struct btrfs_key *key,
1625 struct btrfs_ioctl_search_key *sk)
1626{
Chris Masonabc6e132010-03-18 12:10:08 -04001627 struct btrfs_key test;
1628 int ret;
1629
1630 test.objectid = sk->min_objectid;
1631 test.type = sk->min_type;
1632 test.offset = sk->min_offset;
1633
1634 ret = btrfs_comp_cpu_keys(key, &test);
1635 if (ret < 0)
Chris Masonac8e9812010-02-28 15:39:26 -05001636 return 0;
Chris Masonabc6e132010-03-18 12:10:08 -04001637
1638 test.objectid = sk->max_objectid;
1639 test.type = sk->max_type;
1640 test.offset = sk->max_offset;
1641
1642 ret = btrfs_comp_cpu_keys(key, &test);
1643 if (ret > 0)
Chris Masonac8e9812010-02-28 15:39:26 -05001644 return 0;
1645 return 1;
1646}
1647
1648static noinline int copy_to_sk(struct btrfs_root *root,
1649 struct btrfs_path *path,
1650 struct btrfs_key *key,
1651 struct btrfs_ioctl_search_key *sk,
1652 char *buf,
1653 unsigned long *sk_offset,
1654 int *num_found)
1655{
1656 u64 found_transid;
1657 struct extent_buffer *leaf;
1658 struct btrfs_ioctl_search_header sh;
1659 unsigned long item_off;
1660 unsigned long item_len;
1661 int nritems;
1662 int i;
1663 int slot;
Chris Masonac8e9812010-02-28 15:39:26 -05001664 int ret = 0;
1665
1666 leaf = path->nodes[0];
1667 slot = path->slots[0];
1668 nritems = btrfs_header_nritems(leaf);
1669
1670 if (btrfs_header_generation(leaf) > sk->max_transid) {
1671 i = nritems;
1672 goto advance_key;
1673 }
1674 found_transid = btrfs_header_generation(leaf);
1675
1676 for (i = slot; i < nritems; i++) {
1677 item_off = btrfs_item_ptr_offset(leaf, i);
1678 item_len = btrfs_item_size_nr(leaf, i);
1679
1680 if (item_len > BTRFS_SEARCH_ARGS_BUFSIZE)
1681 item_len = 0;
1682
1683 if (sizeof(sh) + item_len + *sk_offset >
1684 BTRFS_SEARCH_ARGS_BUFSIZE) {
1685 ret = 1;
1686 goto overflow;
1687 }
1688
1689 btrfs_item_key_to_cpu(leaf, key, i);
1690 if (!key_in_sk(key, sk))
1691 continue;
1692
1693 sh.objectid = key->objectid;
1694 sh.offset = key->offset;
1695 sh.type = key->type;
1696 sh.len = item_len;
1697 sh.transid = found_transid;
1698
1699 /* copy search result header */
1700 memcpy(buf + *sk_offset, &sh, sizeof(sh));
1701 *sk_offset += sizeof(sh);
1702
1703 if (item_len) {
1704 char *p = buf + *sk_offset;
1705 /* copy the item */
1706 read_extent_buffer(leaf, p,
1707 item_off, item_len);
1708 *sk_offset += item_len;
Chris Masonac8e9812010-02-28 15:39:26 -05001709 }
Hugo Millse2156862011-05-14 17:43:41 +00001710 (*num_found)++;
Chris Masonac8e9812010-02-28 15:39:26 -05001711
1712 if (*num_found >= sk->nr_items)
1713 break;
1714 }
1715advance_key:
Chris Masonac8e9812010-02-28 15:39:26 -05001716 ret = 0;
Chris Masonabc6e132010-03-18 12:10:08 -04001717 if (key->offset < (u64)-1 && key->offset < sk->max_offset)
1718 key->offset++;
1719 else if (key->type < (u8)-1 && key->type < sk->max_type) {
1720 key->offset = 0;
1721 key->type++;
1722 } else if (key->objectid < (u64)-1 && key->objectid < sk->max_objectid) {
1723 key->offset = 0;
1724 key->type = 0;
1725 key->objectid++;
1726 } else
1727 ret = 1;
Chris Masonac8e9812010-02-28 15:39:26 -05001728overflow:
Chris Masonac8e9812010-02-28 15:39:26 -05001729 return ret;
1730}
1731
1732static noinline int search_ioctl(struct inode *inode,
1733 struct btrfs_ioctl_search_args *args)
1734{
1735 struct btrfs_root *root;
1736 struct btrfs_key key;
1737 struct btrfs_key max_key;
1738 struct btrfs_path *path;
1739 struct btrfs_ioctl_search_key *sk = &args->key;
1740 struct btrfs_fs_info *info = BTRFS_I(inode)->root->fs_info;
1741 int ret;
1742 int num_found = 0;
1743 unsigned long sk_offset = 0;
1744
1745 path = btrfs_alloc_path();
1746 if (!path)
1747 return -ENOMEM;
1748
1749 if (sk->tree_id == 0) {
1750 /* search the root of the inode that was passed */
1751 root = BTRFS_I(inode)->root;
1752 } else {
1753 key.objectid = sk->tree_id;
1754 key.type = BTRFS_ROOT_ITEM_KEY;
1755 key.offset = (u64)-1;
1756 root = btrfs_read_fs_root_no_name(info, &key);
1757 if (IS_ERR(root)) {
1758 printk(KERN_ERR "could not find root %llu\n",
1759 sk->tree_id);
1760 btrfs_free_path(path);
1761 return -ENOENT;
1762 }
1763 }
1764
1765 key.objectid = sk->min_objectid;
1766 key.type = sk->min_type;
1767 key.offset = sk->min_offset;
1768
1769 max_key.objectid = sk->max_objectid;
1770 max_key.type = sk->max_type;
1771 max_key.offset = sk->max_offset;
1772
1773 path->keep_locks = 1;
1774
1775 while(1) {
1776 ret = btrfs_search_forward(root, &key, &max_key, path, 0,
1777 sk->min_transid);
1778 if (ret != 0) {
1779 if (ret > 0)
1780 ret = 0;
1781 goto err;
1782 }
1783 ret = copy_to_sk(root, path, &key, sk, args->buf,
1784 &sk_offset, &num_found);
David Sterbab3b4aa72011-04-21 01:20:15 +02001785 btrfs_release_path(path);
Chris Masonac8e9812010-02-28 15:39:26 -05001786 if (ret || num_found >= sk->nr_items)
1787 break;
1788
1789 }
1790 ret = 0;
1791err:
1792 sk->nr_items = num_found;
1793 btrfs_free_path(path);
1794 return ret;
1795}
1796
1797static noinline int btrfs_ioctl_tree_search(struct file *file,
1798 void __user *argp)
1799{
1800 struct btrfs_ioctl_search_args *args;
1801 struct inode *inode;
1802 int ret;
1803
1804 if (!capable(CAP_SYS_ADMIN))
1805 return -EPERM;
1806
Julia Lawall2354d08f2010-10-29 15:14:18 -04001807 args = memdup_user(argp, sizeof(*args));
1808 if (IS_ERR(args))
1809 return PTR_ERR(args);
Chris Masonac8e9812010-02-28 15:39:26 -05001810
Chris Masonac8e9812010-02-28 15:39:26 -05001811 inode = fdentry(file)->d_inode;
1812 ret = search_ioctl(inode, args);
1813 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
1814 ret = -EFAULT;
1815 kfree(args);
1816 return ret;
1817}
1818
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001819/*
Chris Masonac8e9812010-02-28 15:39:26 -05001820 * Search INODE_REFs to identify path name of 'dirid' directory
1821 * in a 'tree_id' tree. and sets path name to 'name'.
1822 */
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001823static noinline int btrfs_search_path_in_tree(struct btrfs_fs_info *info,
1824 u64 tree_id, u64 dirid, char *name)
1825{
1826 struct btrfs_root *root;
1827 struct btrfs_key key;
Chris Masonac8e9812010-02-28 15:39:26 -05001828 char *ptr;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001829 int ret = -1;
1830 int slot;
1831 int len;
1832 int total_len = 0;
1833 struct btrfs_inode_ref *iref;
1834 struct extent_buffer *l;
1835 struct btrfs_path *path;
1836
1837 if (dirid == BTRFS_FIRST_FREE_OBJECTID) {
1838 name[0]='\0';
1839 return 0;
1840 }
1841
1842 path = btrfs_alloc_path();
1843 if (!path)
1844 return -ENOMEM;
1845
Chris Masonac8e9812010-02-28 15:39:26 -05001846 ptr = &name[BTRFS_INO_LOOKUP_PATH_MAX];
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001847
1848 key.objectid = tree_id;
1849 key.type = BTRFS_ROOT_ITEM_KEY;
1850 key.offset = (u64)-1;
1851 root = btrfs_read_fs_root_no_name(info, &key);
1852 if (IS_ERR(root)) {
1853 printk(KERN_ERR "could not find root %llu\n", tree_id);
Chris Mason8ad6fca2010-03-18 12:23:10 -04001854 ret = -ENOENT;
1855 goto out;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001856 }
1857
1858 key.objectid = dirid;
1859 key.type = BTRFS_INODE_REF_KEY;
Chris Mason8ad6fca2010-03-18 12:23:10 -04001860 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001861
1862 while(1) {
1863 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1864 if (ret < 0)
1865 goto out;
1866
1867 l = path->nodes[0];
1868 slot = path->slots[0];
Chris Mason8ad6fca2010-03-18 12:23:10 -04001869 if (ret > 0 && slot > 0)
1870 slot--;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001871 btrfs_item_key_to_cpu(l, &key, slot);
1872
1873 if (ret > 0 && (key.objectid != dirid ||
Chris Masonac8e9812010-02-28 15:39:26 -05001874 key.type != BTRFS_INODE_REF_KEY)) {
1875 ret = -ENOENT;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001876 goto out;
Chris Masonac8e9812010-02-28 15:39:26 -05001877 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001878
1879 iref = btrfs_item_ptr(l, slot, struct btrfs_inode_ref);
1880 len = btrfs_inode_ref_name_len(l, iref);
1881 ptr -= len + 1;
1882 total_len += len + 1;
Chris Masonac8e9812010-02-28 15:39:26 -05001883 if (ptr < name)
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001884 goto out;
1885
1886 *(ptr + len) = '/';
1887 read_extent_buffer(l, ptr,(unsigned long)(iref + 1), len);
1888
1889 if (key.offset == BTRFS_FIRST_FREE_OBJECTID)
1890 break;
1891
David Sterbab3b4aa72011-04-21 01:20:15 +02001892 btrfs_release_path(path);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001893 key.objectid = key.offset;
Chris Mason8ad6fca2010-03-18 12:23:10 -04001894 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001895 dirid = key.objectid;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001896 }
Chris Masonac8e9812010-02-28 15:39:26 -05001897 if (ptr < name)
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001898 goto out;
Li Zefan77906a502011-07-14 03:16:00 +00001899 memmove(name, ptr, total_len);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001900 name[total_len]='\0';
1901 ret = 0;
1902out:
1903 btrfs_free_path(path);
Chris Masonac8e9812010-02-28 15:39:26 -05001904 return ret;
1905}
1906
1907static noinline int btrfs_ioctl_ino_lookup(struct file *file,
1908 void __user *argp)
1909{
1910 struct btrfs_ioctl_ino_lookup_args *args;
1911 struct inode *inode;
1912 int ret;
1913
1914 if (!capable(CAP_SYS_ADMIN))
1915 return -EPERM;
1916
Julia Lawall2354d08f2010-10-29 15:14:18 -04001917 args = memdup_user(argp, sizeof(*args));
1918 if (IS_ERR(args))
1919 return PTR_ERR(args);
Dan Carpenterc2b96922010-03-20 11:24:15 +00001920
Chris Masonac8e9812010-02-28 15:39:26 -05001921 inode = fdentry(file)->d_inode;
1922
Chris Mason1b53ac42010-03-18 12:17:05 -04001923 if (args->treeid == 0)
1924 args->treeid = BTRFS_I(inode)->root->root_key.objectid;
1925
Chris Masonac8e9812010-02-28 15:39:26 -05001926 ret = btrfs_search_path_in_tree(BTRFS_I(inode)->root->fs_info,
1927 args->treeid, args->objectid,
1928 args->name);
1929
1930 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
1931 ret = -EFAULT;
1932
1933 kfree(args);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001934 return ret;
1935}
1936
Yan, Zheng76dda932009-09-21 16:00:26 -04001937static noinline int btrfs_ioctl_snap_destroy(struct file *file,
1938 void __user *arg)
1939{
1940 struct dentry *parent = fdentry(file);
1941 struct dentry *dentry;
1942 struct inode *dir = parent->d_inode;
1943 struct inode *inode;
1944 struct btrfs_root *root = BTRFS_I(dir)->root;
1945 struct btrfs_root *dest = NULL;
1946 struct btrfs_ioctl_vol_args *vol_args;
1947 struct btrfs_trans_handle *trans;
1948 int namelen;
1949 int ret;
1950 int err = 0;
1951
Yan, Zheng76dda932009-09-21 16:00:26 -04001952 vol_args = memdup_user(arg, sizeof(*vol_args));
1953 if (IS_ERR(vol_args))
1954 return PTR_ERR(vol_args);
1955
1956 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
1957 namelen = strlen(vol_args->name);
1958 if (strchr(vol_args->name, '/') ||
1959 strncmp(vol_args->name, "..", namelen) == 0) {
1960 err = -EINVAL;
1961 goto out;
1962 }
1963
Al Viroa561be72011-11-23 11:57:51 -05001964 err = mnt_want_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04001965 if (err)
1966 goto out;
1967
1968 mutex_lock_nested(&dir->i_mutex, I_MUTEX_PARENT);
1969 dentry = lookup_one_len(vol_args->name, parent, namelen);
1970 if (IS_ERR(dentry)) {
1971 err = PTR_ERR(dentry);
1972 goto out_unlock_dir;
1973 }
1974
1975 if (!dentry->d_inode) {
1976 err = -ENOENT;
1977 goto out_dput;
1978 }
1979
1980 inode = dentry->d_inode;
Sage Weil4260f7c2010-10-29 15:46:43 -04001981 dest = BTRFS_I(inode)->root;
1982 if (!capable(CAP_SYS_ADMIN)){
1983 /*
1984 * Regular user. Only allow this with a special mount
1985 * option, when the user has write+exec access to the
1986 * subvol root, and when rmdir(2) would have been
1987 * allowed.
1988 *
1989 * Note that this is _not_ check that the subvol is
1990 * empty or doesn't contain data that we wouldn't
1991 * otherwise be able to delete.
1992 *
1993 * Users who want to delete empty subvols should try
1994 * rmdir(2).
1995 */
1996 err = -EPERM;
1997 if (!btrfs_test_opt(root, USER_SUBVOL_RM_ALLOWED))
1998 goto out_dput;
1999
2000 /*
2001 * Do not allow deletion if the parent dir is the same
2002 * as the dir to be deleted. That means the ioctl
2003 * must be called on the dentry referencing the root
2004 * of the subvol, not a random directory contained
2005 * within it.
2006 */
2007 err = -EINVAL;
2008 if (root == dest)
2009 goto out_dput;
2010
2011 err = inode_permission(inode, MAY_WRITE | MAY_EXEC);
2012 if (err)
2013 goto out_dput;
2014
2015 /* check if subvolume may be deleted by a non-root user */
2016 err = btrfs_may_delete(dir, dentry, 1);
2017 if (err)
2018 goto out_dput;
2019 }
2020
Li Zefan33345d012011-04-20 10:31:50 +08002021 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
Yan, Zheng76dda932009-09-21 16:00:26 -04002022 err = -EINVAL;
2023 goto out_dput;
2024 }
2025
Yan, Zheng76dda932009-09-21 16:00:26 -04002026 mutex_lock(&inode->i_mutex);
2027 err = d_invalidate(dentry);
2028 if (err)
2029 goto out_unlock;
2030
2031 down_write(&root->fs_info->subvol_sem);
2032
2033 err = may_destroy_subvol(dest);
2034 if (err)
2035 goto out_up_write;
2036
Yan, Zhenga22285a2010-05-16 10:48:46 -04002037 trans = btrfs_start_transaction(root, 0);
2038 if (IS_ERR(trans)) {
2039 err = PTR_ERR(trans);
Dan Carpenterd3270992010-05-29 09:46:47 +00002040 goto out_up_write;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002041 }
2042 trans->block_rsv = &root->fs_info->global_block_rsv;
2043
Yan, Zheng76dda932009-09-21 16:00:26 -04002044 ret = btrfs_unlink_subvol(trans, root, dir,
2045 dest->root_key.objectid,
2046 dentry->d_name.name,
2047 dentry->d_name.len);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002048 if (ret) {
2049 err = ret;
2050 btrfs_abort_transaction(trans, root, ret);
2051 goto out_end_trans;
2052 }
Yan, Zheng76dda932009-09-21 16:00:26 -04002053
2054 btrfs_record_root_in_trans(trans, dest);
2055
2056 memset(&dest->root_item.drop_progress, 0,
2057 sizeof(dest->root_item.drop_progress));
2058 dest->root_item.drop_level = 0;
2059 btrfs_set_root_refs(&dest->root_item, 0);
2060
Yan, Zhengd68fc572010-05-16 10:49:58 -04002061 if (!xchg(&dest->orphan_item_inserted, 1)) {
2062 ret = btrfs_insert_orphan_item(trans,
2063 root->fs_info->tree_root,
2064 dest->root_key.objectid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002065 if (ret) {
2066 btrfs_abort_transaction(trans, root, ret);
2067 err = ret;
2068 goto out_end_trans;
2069 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04002070 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002071out_end_trans:
Sage Weil531cb132010-10-29 15:41:32 -04002072 ret = btrfs_end_transaction(trans, root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002073 if (ret && !err)
2074 err = ret;
Yan, Zheng76dda932009-09-21 16:00:26 -04002075 inode->i_flags |= S_DEAD;
2076out_up_write:
2077 up_write(&root->fs_info->subvol_sem);
2078out_unlock:
2079 mutex_unlock(&inode->i_mutex);
2080 if (!err) {
Yan, Zhengefefb142009-10-09 09:25:16 -04002081 shrink_dcache_sb(root->fs_info->sb);
Yan, Zheng76dda932009-09-21 16:00:26 -04002082 btrfs_invalidate_inodes(dest);
2083 d_delete(dentry);
2084 }
2085out_dput:
2086 dput(dentry);
2087out_unlock_dir:
2088 mutex_unlock(&dir->i_mutex);
Al Viro2a79f172011-12-09 08:06:57 -05002089 mnt_drop_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04002090out:
2091 kfree(vol_args);
2092 return err;
2093}
2094
Chris Mason1e701a32010-03-11 09:42:04 -05002095static int btrfs_ioctl_defrag(struct file *file, void __user *argp)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002096{
2097 struct inode *inode = fdentry(file)->d_inode;
2098 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason1e701a32010-03-11 09:42:04 -05002099 struct btrfs_ioctl_defrag_range_args *range;
Yan Zhengc146afa2008-11-12 14:34:12 -05002100 int ret;
2101
Li Zefanb83cc962010-12-20 16:04:08 +08002102 if (btrfs_root_readonly(root))
2103 return -EROFS;
2104
Al Viroa561be72011-11-23 11:57:51 -05002105 ret = mnt_want_write_file(file);
Yan Zhengc146afa2008-11-12 14:34:12 -05002106 if (ret)
2107 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002108
2109 switch (inode->i_mode & S_IFMT) {
2110 case S_IFDIR:
Chris Masone441d542009-01-05 16:57:23 -05002111 if (!capable(CAP_SYS_ADMIN)) {
2112 ret = -EPERM;
2113 goto out;
2114 }
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04002115 ret = btrfs_defrag_root(root, 0);
2116 if (ret)
2117 goto out;
2118 ret = btrfs_defrag_root(root->fs_info->extent_root, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002119 break;
2120 case S_IFREG:
Chris Masone441d542009-01-05 16:57:23 -05002121 if (!(file->f_mode & FMODE_WRITE)) {
2122 ret = -EINVAL;
2123 goto out;
2124 }
Chris Mason1e701a32010-03-11 09:42:04 -05002125
2126 range = kzalloc(sizeof(*range), GFP_KERNEL);
2127 if (!range) {
2128 ret = -ENOMEM;
2129 goto out;
2130 }
2131
2132 if (argp) {
2133 if (copy_from_user(range, argp,
2134 sizeof(*range))) {
2135 ret = -EFAULT;
2136 kfree(range);
Dan Carpenter683be162010-03-20 11:24:48 +00002137 goto out;
Chris Mason1e701a32010-03-11 09:42:04 -05002138 }
2139 /* compression requires us to start the IO */
2140 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
2141 range->flags |= BTRFS_DEFRAG_RANGE_START_IO;
2142 range->extent_thresh = (u32)-1;
2143 }
2144 } else {
2145 /* the rest are all set to zero by kzalloc */
2146 range->len = (u64)-1;
2147 }
Chris Mason4cb53002011-05-24 15:35:30 -04002148 ret = btrfs_defrag_file(fdentry(file)->d_inode, file,
2149 range, 0, 0);
2150 if (ret > 0)
2151 ret = 0;
Chris Mason1e701a32010-03-11 09:42:04 -05002152 kfree(range);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002153 break;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04002154 default:
2155 ret = -EINVAL;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002156 }
Chris Masone441d542009-01-05 16:57:23 -05002157out:
Al Viro2a79f172011-12-09 08:06:57 -05002158 mnt_drop_write_file(file);
Chris Masone441d542009-01-05 16:57:23 -05002159 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002160}
2161
Christoph Hellwigb2950862008-12-02 09:54:17 -05002162static long btrfs_ioctl_add_dev(struct btrfs_root *root, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002163{
2164 struct btrfs_ioctl_vol_args *vol_args;
2165 int ret;
2166
Chris Masone441d542009-01-05 16:57:23 -05002167 if (!capable(CAP_SYS_ADMIN))
2168 return -EPERM;
2169
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002170 mutex_lock(&root->fs_info->volume_mutex);
2171 if (root->fs_info->balance_ctl) {
2172 printk(KERN_INFO "btrfs: balance in progress\n");
2173 ret = -EINVAL;
2174 goto out;
2175 }
2176
Li Zefandae7b662009-04-08 15:06:54 +08002177 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002178 if (IS_ERR(vol_args)) {
2179 ret = PTR_ERR(vol_args);
2180 goto out;
2181 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002182
Mark Fasheh5516e592008-07-24 12:20:14 -04002183 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002184 ret = btrfs_init_new_device(root, vol_args->name);
2185
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002186 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002187out:
2188 mutex_unlock(&root->fs_info->volume_mutex);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002189 return ret;
2190}
2191
Christoph Hellwigb2950862008-12-02 09:54:17 -05002192static long btrfs_ioctl_rm_dev(struct btrfs_root *root, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002193{
2194 struct btrfs_ioctl_vol_args *vol_args;
2195 int ret;
2196
Chris Masone441d542009-01-05 16:57:23 -05002197 if (!capable(CAP_SYS_ADMIN))
2198 return -EPERM;
2199
Yan Zhengc146afa2008-11-12 14:34:12 -05002200 if (root->fs_info->sb->s_flags & MS_RDONLY)
2201 return -EROFS;
2202
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002203 mutex_lock(&root->fs_info->volume_mutex);
2204 if (root->fs_info->balance_ctl) {
2205 printk(KERN_INFO "btrfs: balance in progress\n");
2206 ret = -EINVAL;
2207 goto out;
2208 }
2209
Li Zefandae7b662009-04-08 15:06:54 +08002210 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002211 if (IS_ERR(vol_args)) {
2212 ret = PTR_ERR(vol_args);
2213 goto out;
2214 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002215
Mark Fasheh5516e592008-07-24 12:20:14 -04002216 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002217 ret = btrfs_rm_device(root, vol_args->name);
2218
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002219 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002220out:
2221 mutex_unlock(&root->fs_info->volume_mutex);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002222 return ret;
2223}
2224
Jan Schmidt475f6382011-03-11 15:41:01 +01002225static long btrfs_ioctl_fs_info(struct btrfs_root *root, void __user *arg)
2226{
Li Zefan027ed2f2011-06-08 08:27:56 +00002227 struct btrfs_ioctl_fs_info_args *fi_args;
Jan Schmidt475f6382011-03-11 15:41:01 +01002228 struct btrfs_device *device;
2229 struct btrfs_device *next;
2230 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
Li Zefan027ed2f2011-06-08 08:27:56 +00002231 int ret = 0;
Jan Schmidt475f6382011-03-11 15:41:01 +01002232
2233 if (!capable(CAP_SYS_ADMIN))
2234 return -EPERM;
2235
Li Zefan027ed2f2011-06-08 08:27:56 +00002236 fi_args = kzalloc(sizeof(*fi_args), GFP_KERNEL);
2237 if (!fi_args)
2238 return -ENOMEM;
2239
2240 fi_args->num_devices = fs_devices->num_devices;
2241 memcpy(&fi_args->fsid, root->fs_info->fsid, sizeof(fi_args->fsid));
Jan Schmidt475f6382011-03-11 15:41:01 +01002242
2243 mutex_lock(&fs_devices->device_list_mutex);
2244 list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) {
Li Zefan027ed2f2011-06-08 08:27:56 +00002245 if (device->devid > fi_args->max_id)
2246 fi_args->max_id = device->devid;
Jan Schmidt475f6382011-03-11 15:41:01 +01002247 }
2248 mutex_unlock(&fs_devices->device_list_mutex);
2249
Li Zefan027ed2f2011-06-08 08:27:56 +00002250 if (copy_to_user(arg, fi_args, sizeof(*fi_args)))
2251 ret = -EFAULT;
Jan Schmidt475f6382011-03-11 15:41:01 +01002252
Li Zefan027ed2f2011-06-08 08:27:56 +00002253 kfree(fi_args);
2254 return ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01002255}
2256
2257static long btrfs_ioctl_dev_info(struct btrfs_root *root, void __user *arg)
2258{
2259 struct btrfs_ioctl_dev_info_args *di_args;
2260 struct btrfs_device *dev;
2261 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
2262 int ret = 0;
2263 char *s_uuid = NULL;
2264 char empty_uuid[BTRFS_UUID_SIZE] = {0};
2265
2266 if (!capable(CAP_SYS_ADMIN))
2267 return -EPERM;
2268
2269 di_args = memdup_user(arg, sizeof(*di_args));
2270 if (IS_ERR(di_args))
2271 return PTR_ERR(di_args);
2272
2273 if (memcmp(empty_uuid, di_args->uuid, BTRFS_UUID_SIZE) != 0)
2274 s_uuid = di_args->uuid;
2275
2276 mutex_lock(&fs_devices->device_list_mutex);
2277 dev = btrfs_find_device(root, di_args->devid, s_uuid, NULL);
2278 mutex_unlock(&fs_devices->device_list_mutex);
2279
2280 if (!dev) {
2281 ret = -ENODEV;
2282 goto out;
2283 }
2284
2285 di_args->devid = dev->devid;
2286 di_args->bytes_used = dev->bytes_used;
2287 di_args->total_bytes = dev->total_bytes;
2288 memcpy(di_args->uuid, dev->uuid, sizeof(di_args->uuid));
Jim Meyeringa27202f2012-04-26 18:36:56 +02002289 if (dev->name) {
Josef Bacik606686e2012-06-04 14:03:51 -04002290 struct rcu_string *name;
2291
2292 rcu_read_lock();
2293 name = rcu_dereference(dev->name);
2294 strncpy(di_args->path, name->str, sizeof(di_args->path));
2295 rcu_read_unlock();
Jim Meyeringa27202f2012-04-26 18:36:56 +02002296 di_args->path[sizeof(di_args->path) - 1] = 0;
2297 } else {
Stefan Behrens99ba55a2012-03-19 16:17:22 +01002298 di_args->path[0] = '\0';
Jim Meyeringa27202f2012-04-26 18:36:56 +02002299 }
Jan Schmidt475f6382011-03-11 15:41:01 +01002300
2301out:
2302 if (ret == 0 && copy_to_user(arg, di_args, sizeof(*di_args)))
2303 ret = -EFAULT;
2304
2305 kfree(di_args);
2306 return ret;
2307}
2308
Yan, Zheng76dda932009-09-21 16:00:26 -04002309static noinline long btrfs_ioctl_clone(struct file *file, unsigned long srcfd,
2310 u64 off, u64 olen, u64 destoff)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002311{
2312 struct inode *inode = fdentry(file)->d_inode;
2313 struct btrfs_root *root = BTRFS_I(inode)->root;
2314 struct file *src_file;
2315 struct inode *src;
2316 struct btrfs_trans_handle *trans;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002317 struct btrfs_path *path;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002318 struct extent_buffer *leaf;
Yan Zhengae01a0a2008-08-04 23:23:47 -04002319 char *buf;
2320 struct btrfs_key key;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002321 u32 nritems;
2322 int slot;
Yan Zhengae01a0a2008-08-04 23:23:47 -04002323 int ret;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002324 u64 len = olen;
2325 u64 bs = root->fs_info->sb->s_blocksize;
2326 u64 hint_byte;
Chris Masond20f7042008-12-08 16:58:54 -05002327
Sage Weilc5c9cd42008-11-12 14:32:25 -05002328 /*
2329 * TODO:
2330 * - split compressed inline extents. annoying: we need to
2331 * decompress into destination's address_space (the file offset
2332 * may change, so source mapping won't do), then recompress (or
2333 * otherwise reinsert) a subrange.
2334 * - allow ranges within the same file to be cloned (provided
2335 * they don't overlap)?
2336 */
2337
Chris Masone441d542009-01-05 16:57:23 -05002338 /* the destination must be opened for writing */
Dan Rosenberg2ebc3462010-07-19 16:58:20 -04002339 if (!(file->f_mode & FMODE_WRITE) || (file->f_flags & O_APPEND))
Chris Masone441d542009-01-05 16:57:23 -05002340 return -EINVAL;
2341
Li Zefanb83cc962010-12-20 16:04:08 +08002342 if (btrfs_root_readonly(root))
2343 return -EROFS;
2344
Al Viroa561be72011-11-23 11:57:51 -05002345 ret = mnt_want_write_file(file);
Yan Zhengc146afa2008-11-12 14:34:12 -05002346 if (ret)
2347 return ret;
2348
Sage Weilc5c9cd42008-11-12 14:32:25 -05002349 src_file = fget(srcfd);
Yan Zhengab67b7c2008-12-19 10:58:39 -05002350 if (!src_file) {
2351 ret = -EBADF;
2352 goto out_drop_write;
2353 }
Dan Rosenberg5dc64162010-05-15 11:27:37 -04002354
David Sterba362a20c2011-08-01 18:11:57 +02002355 ret = -EXDEV;
2356 if (src_file->f_path.mnt != file->f_path.mnt)
2357 goto out_fput;
2358
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002359 src = src_file->f_dentry->d_inode;
2360
Sage Weilc5c9cd42008-11-12 14:32:25 -05002361 ret = -EINVAL;
2362 if (src == inode)
2363 goto out_fput;
2364
Dan Rosenberg5dc64162010-05-15 11:27:37 -04002365 /* the src must be open for reading */
2366 if (!(src_file->f_mode & FMODE_READ))
2367 goto out_fput;
2368
Li Zefan0e7b8242011-09-18 10:20:46 -04002369 /* don't make the dst file partly checksummed */
2370 if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
2371 (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM))
2372 goto out_fput;
2373
Yan Zhengae01a0a2008-08-04 23:23:47 -04002374 ret = -EISDIR;
2375 if (S_ISDIR(src->i_mode) || S_ISDIR(inode->i_mode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002376 goto out_fput;
2377
Yan Zhengae01a0a2008-08-04 23:23:47 -04002378 ret = -EXDEV;
David Sterba362a20c2011-08-01 18:11:57 +02002379 if (src->i_sb != inode->i_sb)
Yan Zhengae01a0a2008-08-04 23:23:47 -04002380 goto out_fput;
2381
2382 ret = -ENOMEM;
2383 buf = vmalloc(btrfs_level_size(root, 0));
2384 if (!buf)
2385 goto out_fput;
2386
2387 path = btrfs_alloc_path();
2388 if (!path) {
2389 vfree(buf);
2390 goto out_fput;
2391 }
2392 path->reada = 2;
2393
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002394 if (inode < src) {
Sage Weilfccdae42010-10-29 15:37:33 -04002395 mutex_lock_nested(&inode->i_mutex, I_MUTEX_PARENT);
2396 mutex_lock_nested(&src->i_mutex, I_MUTEX_CHILD);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002397 } else {
Sage Weilfccdae42010-10-29 15:37:33 -04002398 mutex_lock_nested(&src->i_mutex, I_MUTEX_PARENT);
2399 mutex_lock_nested(&inode->i_mutex, I_MUTEX_CHILD);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002400 }
2401
Sage Weilc5c9cd42008-11-12 14:32:25 -05002402 /* determine range to clone */
2403 ret = -EINVAL;
Dan Rosenberg2ebc3462010-07-19 16:58:20 -04002404 if (off + len > src->i_size || off + len < off)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002405 goto out_unlock;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002406 if (len == 0)
2407 olen = len = src->i_size - off;
2408 /* if we extend to eof, continue to block boundary */
2409 if (off + len == src->i_size)
Li Zefan2a6b8da2010-11-19 01:36:10 +00002410 len = ALIGN(src->i_size, bs) - off;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002411
2412 /* verify the end result is block aligned */
Li Zefan2a6b8da2010-11-19 01:36:10 +00002413 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs) ||
2414 !IS_ALIGNED(destoff, bs))
Sage Weilc5c9cd42008-11-12 14:32:25 -05002415 goto out_unlock;
2416
Li Zefand525e8a2011-09-11 10:52:25 -04002417 if (destoff > inode->i_size) {
2418 ret = btrfs_cont_expand(inode, inode->i_size, destoff);
2419 if (ret)
2420 goto out_unlock;
2421 }
2422
Li Zefan71ef0782011-09-18 10:20:46 -04002423 /* truncate page cache pages from target inode range */
2424 truncate_inode_pages_range(&inode->i_data, destoff,
2425 PAGE_CACHE_ALIGN(destoff + len) - 1);
2426
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002427 /* do any pending delalloc/csum calc on src, one way or
2428 another, and lock file content */
2429 while (1) {
Zheng Yan31840ae2008-09-23 13:14:14 -04002430 struct btrfs_ordered_extent *ordered;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01002431 lock_extent(&BTRFS_I(src)->io_tree, off, off+len);
Sage Weil9a019192010-10-29 15:37:33 -04002432 ordered = btrfs_lookup_first_ordered_extent(src, off+len);
2433 if (!ordered &&
2434 !test_range_bit(&BTRFS_I(src)->io_tree, off, off+len,
2435 EXTENT_DELALLOC, 0, NULL))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002436 break;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01002437 unlock_extent(&BTRFS_I(src)->io_tree, off, off+len);
Yan Zhengae01a0a2008-08-04 23:23:47 -04002438 if (ordered)
2439 btrfs_put_ordered_extent(ordered);
Sage Weil9a019192010-10-29 15:37:33 -04002440 btrfs_wait_ordered_range(src, off, len);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002441 }
2442
Sage Weilc5c9cd42008-11-12 14:32:25 -05002443 /* clone data */
Li Zefan33345d012011-04-20 10:31:50 +08002444 key.objectid = btrfs_ino(src);
Yan Zhengae01a0a2008-08-04 23:23:47 -04002445 key.type = BTRFS_EXTENT_DATA_KEY;
2446 key.offset = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002447
2448 while (1) {
2449 /*
2450 * note the key will change type as we walk through the
2451 * tree.
2452 */
David Sterba362a20c2011-08-01 18:11:57 +02002453 ret = btrfs_search_slot(NULL, BTRFS_I(src)->root, &key, path,
2454 0, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002455 if (ret < 0)
2456 goto out;
2457
Yan Zhengae01a0a2008-08-04 23:23:47 -04002458 nritems = btrfs_header_nritems(path->nodes[0]);
2459 if (path->slots[0] >= nritems) {
David Sterba362a20c2011-08-01 18:11:57 +02002460 ret = btrfs_next_leaf(BTRFS_I(src)->root, path);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002461 if (ret < 0)
2462 goto out;
2463 if (ret > 0)
2464 break;
Yan Zhengae01a0a2008-08-04 23:23:47 -04002465 nritems = btrfs_header_nritems(path->nodes[0]);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002466 }
2467 leaf = path->nodes[0];
2468 slot = path->slots[0];
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002469
Yan Zhengae01a0a2008-08-04 23:23:47 -04002470 btrfs_item_key_to_cpu(leaf, &key, slot);
Chris Masond20f7042008-12-08 16:58:54 -05002471 if (btrfs_key_type(&key) > BTRFS_EXTENT_DATA_KEY ||
Li Zefan33345d012011-04-20 10:31:50 +08002472 key.objectid != btrfs_ino(src))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002473 break;
2474
Sage Weilc5c9cd42008-11-12 14:32:25 -05002475 if (btrfs_key_type(&key) == BTRFS_EXTENT_DATA_KEY) {
2476 struct btrfs_file_extent_item *extent;
2477 int type;
Zheng Yan31840ae2008-09-23 13:14:14 -04002478 u32 size;
2479 struct btrfs_key new_key;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002480 u64 disko = 0, diskl = 0;
2481 u64 datao = 0, datal = 0;
2482 u8 comp;
Sage Weilb5384d42010-06-12 22:31:14 +00002483 u64 endoff;
Zheng Yan31840ae2008-09-23 13:14:14 -04002484
2485 size = btrfs_item_size_nr(leaf, slot);
2486 read_extent_buffer(leaf, buf,
2487 btrfs_item_ptr_offset(leaf, slot),
2488 size);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002489
2490 extent = btrfs_item_ptr(leaf, slot,
2491 struct btrfs_file_extent_item);
2492 comp = btrfs_file_extent_compression(leaf, extent);
2493 type = btrfs_file_extent_type(leaf, extent);
Chris Masonc8a894d2009-06-27 21:07:03 -04002494 if (type == BTRFS_FILE_EXTENT_REG ||
2495 type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masond3977122009-01-05 21:25:51 -05002496 disko = btrfs_file_extent_disk_bytenr(leaf,
2497 extent);
2498 diskl = btrfs_file_extent_disk_num_bytes(leaf,
2499 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002500 datao = btrfs_file_extent_offset(leaf, extent);
Chris Masond3977122009-01-05 21:25:51 -05002501 datal = btrfs_file_extent_num_bytes(leaf,
2502 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002503 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
2504 /* take upper bound, may be compressed */
2505 datal = btrfs_file_extent_ram_bytes(leaf,
2506 extent);
2507 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002508 btrfs_release_path(path);
Zheng Yan31840ae2008-09-23 13:14:14 -04002509
Sage Weil050006a2010-10-29 15:37:33 -04002510 if (key.offset + datal <= off ||
Sage Weilc5c9cd42008-11-12 14:32:25 -05002511 key.offset >= off+len)
2512 goto next;
2513
Zheng Yan31840ae2008-09-23 13:14:14 -04002514 memcpy(&new_key, &key, sizeof(new_key));
Li Zefan33345d012011-04-20 10:31:50 +08002515 new_key.objectid = btrfs_ino(inode);
Li Zefan4d728ec2011-01-26 14:10:43 +08002516 if (off <= key.offset)
2517 new_key.offset = key.offset + destoff - off;
2518 else
2519 new_key.offset = destoff;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002520
Sage Weilb6f34092011-09-20 14:48:51 -04002521 /*
2522 * 1 - adjusting old extent (we may have to split it)
2523 * 1 - add new extent
2524 * 1 - inode update
2525 */
2526 trans = btrfs_start_transaction(root, 3);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002527 if (IS_ERR(trans)) {
2528 ret = PTR_ERR(trans);
2529 goto out;
2530 }
2531
Chris Masonc8a894d2009-06-27 21:07:03 -04002532 if (type == BTRFS_FILE_EXTENT_REG ||
2533 type == BTRFS_FILE_EXTENT_PREALLOC) {
Li Zefand72c0842011-09-11 10:52:25 -04002534 /*
2535 * a | --- range to clone ---| b
2536 * | ------------- extent ------------- |
2537 */
2538
2539 /* substract range b */
2540 if (key.offset + datal > off + len)
2541 datal = off + len - key.offset;
2542
2543 /* substract range a */
Yan, Zhenga22285a2010-05-16 10:48:46 -04002544 if (off > key.offset) {
2545 datao += off - key.offset;
2546 datal -= off - key.offset;
2547 }
2548
Yan, Zhenga22285a2010-05-16 10:48:46 -04002549 ret = btrfs_drop_extents(trans, inode,
2550 new_key.offset,
2551 new_key.offset + datal,
2552 &hint_byte, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002553 if (ret) {
2554 btrfs_abort_transaction(trans, root,
2555 ret);
2556 btrfs_end_transaction(trans, root);
2557 goto out;
2558 }
Yan, Zhenga22285a2010-05-16 10:48:46 -04002559
Sage Weilc5c9cd42008-11-12 14:32:25 -05002560 ret = btrfs_insert_empty_item(trans, root, path,
2561 &new_key, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002562 if (ret) {
2563 btrfs_abort_transaction(trans, root,
2564 ret);
2565 btrfs_end_transaction(trans, root);
2566 goto out;
2567 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05002568
2569 leaf = path->nodes[0];
2570 slot = path->slots[0];
2571 write_extent_buffer(leaf, buf,
2572 btrfs_item_ptr_offset(leaf, slot),
2573 size);
2574
2575 extent = btrfs_item_ptr(leaf, slot,
2576 struct btrfs_file_extent_item);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002577
Sage Weilc5c9cd42008-11-12 14:32:25 -05002578 /* disko == 0 means it's a hole */
2579 if (!disko)
2580 datao = 0;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002581
2582 btrfs_set_file_extent_offset(leaf, extent,
2583 datao);
2584 btrfs_set_file_extent_num_bytes(leaf, extent,
2585 datal);
2586 if (disko) {
2587 inode_add_bytes(inode, datal);
2588 ret = btrfs_inc_extent_ref(trans, root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002589 disko, diskl, 0,
2590 root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08002591 btrfs_ino(inode),
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002592 new_key.offset - datao,
2593 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002594 if (ret) {
2595 btrfs_abort_transaction(trans,
2596 root,
2597 ret);
2598 btrfs_end_transaction(trans,
2599 root);
2600 goto out;
2601
2602 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05002603 }
2604 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
2605 u64 skip = 0;
2606 u64 trim = 0;
2607 if (off > key.offset) {
2608 skip = off - key.offset;
2609 new_key.offset += skip;
2610 }
Chris Masond3977122009-01-05 21:25:51 -05002611
Sage Weilc5c9cd42008-11-12 14:32:25 -05002612 if (key.offset + datal > off+len)
2613 trim = key.offset + datal - (off+len);
Chris Masond3977122009-01-05 21:25:51 -05002614
Sage Weilc5c9cd42008-11-12 14:32:25 -05002615 if (comp && (skip || trim)) {
Sage Weilc5c9cd42008-11-12 14:32:25 -05002616 ret = -EINVAL;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002617 btrfs_end_transaction(trans, root);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002618 goto out;
2619 }
2620 size -= skip + trim;
2621 datal -= skip + trim;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002622
2623 ret = btrfs_drop_extents(trans, inode,
2624 new_key.offset,
2625 new_key.offset + datal,
2626 &hint_byte, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002627 if (ret) {
2628 btrfs_abort_transaction(trans, root,
2629 ret);
2630 btrfs_end_transaction(trans, root);
2631 goto out;
2632 }
Yan, Zhenga22285a2010-05-16 10:48:46 -04002633
Sage Weilc5c9cd42008-11-12 14:32:25 -05002634 ret = btrfs_insert_empty_item(trans, root, path,
2635 &new_key, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002636 if (ret) {
2637 btrfs_abort_transaction(trans, root,
2638 ret);
2639 btrfs_end_transaction(trans, root);
2640 goto out;
2641 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05002642
2643 if (skip) {
Chris Masond3977122009-01-05 21:25:51 -05002644 u32 start =
2645 btrfs_file_extent_calc_inline_size(0);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002646 memmove(buf+start, buf+start+skip,
2647 datal);
2648 }
2649
2650 leaf = path->nodes[0];
2651 slot = path->slots[0];
2652 write_extent_buffer(leaf, buf,
2653 btrfs_item_ptr_offset(leaf, slot),
2654 size);
2655 inode_add_bytes(inode, datal);
2656 }
2657
2658 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02002659 btrfs_release_path(path);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002660
Josef Bacik0c4d2d92012-04-05 15:03:02 -04002661 inode_inc_iversion(inode);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002662 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
Sage Weilb5384d42010-06-12 22:31:14 +00002663
2664 /*
2665 * we round up to the block size at eof when
2666 * determining which extents to clone above,
2667 * but shouldn't round up the file size
2668 */
2669 endoff = new_key.offset + datal;
Li Zefan5f3888f2010-11-19 01:36:34 +00002670 if (endoff > destoff+olen)
2671 endoff = destoff+olen;
Sage Weilb5384d42010-06-12 22:31:14 +00002672 if (endoff > inode->i_size)
2673 btrfs_i_size_write(inode, endoff);
2674
Yan, Zhenga22285a2010-05-16 10:48:46 -04002675 ret = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002676 if (ret) {
2677 btrfs_abort_transaction(trans, root, ret);
2678 btrfs_end_transaction(trans, root);
2679 goto out;
2680 }
2681 ret = btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002682 }
Chris Masond3977122009-01-05 21:25:51 -05002683next:
David Sterbab3b4aa72011-04-21 01:20:15 +02002684 btrfs_release_path(path);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002685 key.offset++;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002686 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002687 ret = 0;
2688out:
David Sterbab3b4aa72011-04-21 01:20:15 +02002689 btrfs_release_path(path);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01002690 unlock_extent(&BTRFS_I(src)->io_tree, off, off+len);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002691out_unlock:
2692 mutex_unlock(&src->i_mutex);
2693 mutex_unlock(&inode->i_mutex);
Yan Zhengae01a0a2008-08-04 23:23:47 -04002694 vfree(buf);
2695 btrfs_free_path(path);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002696out_fput:
2697 fput(src_file);
Yan Zhengab67b7c2008-12-19 10:58:39 -05002698out_drop_write:
Al Viro2a79f172011-12-09 08:06:57 -05002699 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002700 return ret;
2701}
2702
Christoph Hellwig7a865e82008-12-02 09:52:24 -05002703static long btrfs_ioctl_clone_range(struct file *file, void __user *argp)
Sage Weilc5c9cd42008-11-12 14:32:25 -05002704{
2705 struct btrfs_ioctl_clone_range_args args;
2706
Christoph Hellwig7a865e82008-12-02 09:52:24 -05002707 if (copy_from_user(&args, argp, sizeof(args)))
Sage Weilc5c9cd42008-11-12 14:32:25 -05002708 return -EFAULT;
2709 return btrfs_ioctl_clone(file, args.src_fd, args.src_offset,
2710 args.src_length, args.dest_offset);
2711}
2712
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002713/*
2714 * there are many ways the trans_start and trans_end ioctls can lead
2715 * to deadlocks. They should only be used by applications that
2716 * basically own the machine, and have a very in depth understanding
2717 * of all the possible deadlocks and enospc problems.
2718 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05002719static long btrfs_ioctl_trans_start(struct file *file)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002720{
2721 struct inode *inode = fdentry(file)->d_inode;
2722 struct btrfs_root *root = BTRFS_I(inode)->root;
2723 struct btrfs_trans_handle *trans;
Sage Weil1ab86ae2009-09-29 18:38:44 -04002724 int ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002725
Sage Weil1ab86ae2009-09-29 18:38:44 -04002726 ret = -EPERM;
Christoph Hellwigdf5b5522008-06-11 21:53:58 -04002727 if (!capable(CAP_SYS_ADMIN))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002728 goto out;
Sage Weil1ab86ae2009-09-29 18:38:44 -04002729
2730 ret = -EINPROGRESS;
2731 if (file->private_data)
2732 goto out;
Sage Weil9ca9ee02008-08-04 10:41:27 -04002733
Li Zefanb83cc962010-12-20 16:04:08 +08002734 ret = -EROFS;
2735 if (btrfs_root_readonly(root))
2736 goto out;
2737
Al Viroa561be72011-11-23 11:57:51 -05002738 ret = mnt_want_write_file(file);
Yan Zhengc146afa2008-11-12 14:34:12 -05002739 if (ret)
2740 goto out;
2741
Josef Bacika4abeea2011-04-11 17:25:13 -04002742 atomic_inc(&root->fs_info->open_ioctl_trans);
Sage Weil9ca9ee02008-08-04 10:41:27 -04002743
Sage Weil1ab86ae2009-09-29 18:38:44 -04002744 ret = -ENOMEM;
Josef Bacik7a7eaa42011-04-13 12:54:33 -04002745 trans = btrfs_start_ioctl_transaction(root);
Tsutomu Itohabd30bb2011-01-24 00:57:10 +00002746 if (IS_ERR(trans))
Sage Weil1ab86ae2009-09-29 18:38:44 -04002747 goto out_drop;
2748
2749 file->private_data = trans;
2750 return 0;
2751
2752out_drop:
Josef Bacika4abeea2011-04-11 17:25:13 -04002753 atomic_dec(&root->fs_info->open_ioctl_trans);
Al Viro2a79f172011-12-09 08:06:57 -05002754 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002755out:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002756 return ret;
2757}
2758
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002759static long btrfs_ioctl_default_subvol(struct file *file, void __user *argp)
2760{
2761 struct inode *inode = fdentry(file)->d_inode;
2762 struct btrfs_root *root = BTRFS_I(inode)->root;
2763 struct btrfs_root *new_root;
2764 struct btrfs_dir_item *di;
2765 struct btrfs_trans_handle *trans;
2766 struct btrfs_path *path;
2767 struct btrfs_key location;
2768 struct btrfs_disk_key disk_key;
2769 struct btrfs_super_block *disk_super;
2770 u64 features;
2771 u64 objectid = 0;
2772 u64 dir_id;
2773
2774 if (!capable(CAP_SYS_ADMIN))
2775 return -EPERM;
2776
2777 if (copy_from_user(&objectid, argp, sizeof(objectid)))
2778 return -EFAULT;
2779
2780 if (!objectid)
2781 objectid = root->root_key.objectid;
2782
2783 location.objectid = objectid;
2784 location.type = BTRFS_ROOT_ITEM_KEY;
2785 location.offset = (u64)-1;
2786
2787 new_root = btrfs_read_fs_root_no_name(root->fs_info, &location);
2788 if (IS_ERR(new_root))
2789 return PTR_ERR(new_root);
2790
2791 if (btrfs_root_refs(&new_root->root_item) == 0)
2792 return -ENOENT;
2793
2794 path = btrfs_alloc_path();
2795 if (!path)
2796 return -ENOMEM;
2797 path->leave_spinning = 1;
2798
2799 trans = btrfs_start_transaction(root, 1);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002800 if (IS_ERR(trans)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002801 btrfs_free_path(path);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002802 return PTR_ERR(trans);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002803 }
2804
David Sterba6c417612011-04-13 15:41:04 +02002805 dir_id = btrfs_super_root_dir(root->fs_info->super_copy);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002806 di = btrfs_lookup_dir_item(trans, root->fs_info->tree_root, path,
2807 dir_id, "default", 7, 1);
Dan Carpentercf1e99a2010-05-29 09:47:24 +00002808 if (IS_ERR_OR_NULL(di)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002809 btrfs_free_path(path);
2810 btrfs_end_transaction(trans, root);
2811 printk(KERN_ERR "Umm, you don't have the default dir item, "
2812 "this isn't going to work\n");
2813 return -ENOENT;
2814 }
2815
2816 btrfs_cpu_key_to_disk(&disk_key, &new_root->root_key);
2817 btrfs_set_dir_item_key(path->nodes[0], di, &disk_key);
2818 btrfs_mark_buffer_dirty(path->nodes[0]);
2819 btrfs_free_path(path);
2820
David Sterba6c417612011-04-13 15:41:04 +02002821 disk_super = root->fs_info->super_copy;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002822 features = btrfs_super_incompat_flags(disk_super);
2823 if (!(features & BTRFS_FEATURE_INCOMPAT_DEFAULT_SUBVOL)) {
2824 features |= BTRFS_FEATURE_INCOMPAT_DEFAULT_SUBVOL;
2825 btrfs_set_super_incompat_flags(disk_super, features);
2826 }
2827 btrfs_end_transaction(trans, root);
2828
2829 return 0;
2830}
2831
Josef Bacikbf5fc0932010-09-29 11:22:36 -04002832static void get_block_group_info(struct list_head *groups_list,
2833 struct btrfs_ioctl_space_info *space)
2834{
2835 struct btrfs_block_group_cache *block_group;
2836
2837 space->total_bytes = 0;
2838 space->used_bytes = 0;
2839 space->flags = 0;
2840 list_for_each_entry(block_group, groups_list, list) {
2841 space->flags = block_group->flags;
2842 space->total_bytes += block_group->key.offset;
2843 space->used_bytes +=
2844 btrfs_block_group_used(&block_group->item);
2845 }
2846}
2847
Josef Bacik1406e432010-01-13 18:19:06 +00002848long btrfs_ioctl_space_info(struct btrfs_root *root, void __user *arg)
2849{
2850 struct btrfs_ioctl_space_args space_args;
2851 struct btrfs_ioctl_space_info space;
2852 struct btrfs_ioctl_space_info *dest;
Chris Mason7fde62b2010-03-16 15:40:10 -04002853 struct btrfs_ioctl_space_info *dest_orig;
Daniel J Blueman13f26962011-04-11 15:56:31 +00002854 struct btrfs_ioctl_space_info __user *user_dest;
Josef Bacik1406e432010-01-13 18:19:06 +00002855 struct btrfs_space_info *info;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04002856 u64 types[] = {BTRFS_BLOCK_GROUP_DATA,
2857 BTRFS_BLOCK_GROUP_SYSTEM,
2858 BTRFS_BLOCK_GROUP_METADATA,
2859 BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA};
2860 int num_types = 4;
Chris Mason7fde62b2010-03-16 15:40:10 -04002861 int alloc_size;
Josef Bacik1406e432010-01-13 18:19:06 +00002862 int ret = 0;
Dan Rosenberg51788b12011-02-14 16:04:23 -05002863 u64 slot_count = 0;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04002864 int i, c;
Josef Bacik1406e432010-01-13 18:19:06 +00002865
2866 if (copy_from_user(&space_args,
2867 (struct btrfs_ioctl_space_args __user *)arg,
2868 sizeof(space_args)))
2869 return -EFAULT;
2870
Josef Bacikbf5fc0932010-09-29 11:22:36 -04002871 for (i = 0; i < num_types; i++) {
2872 struct btrfs_space_info *tmp;
2873
2874 info = NULL;
2875 rcu_read_lock();
2876 list_for_each_entry_rcu(tmp, &root->fs_info->space_info,
2877 list) {
2878 if (tmp->flags == types[i]) {
2879 info = tmp;
2880 break;
2881 }
2882 }
2883 rcu_read_unlock();
2884
2885 if (!info)
2886 continue;
2887
2888 down_read(&info->groups_sem);
2889 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
2890 if (!list_empty(&info->block_groups[c]))
2891 slot_count++;
2892 }
2893 up_read(&info->groups_sem);
2894 }
Josef Bacik1406e432010-01-13 18:19:06 +00002895
Chris Mason7fde62b2010-03-16 15:40:10 -04002896 /* space_slots == 0 means they are asking for a count */
2897 if (space_args.space_slots == 0) {
2898 space_args.total_spaces = slot_count;
2899 goto out;
2900 }
Josef Bacikbf5fc0932010-09-29 11:22:36 -04002901
Dan Rosenberg51788b12011-02-14 16:04:23 -05002902 slot_count = min_t(u64, space_args.space_slots, slot_count);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04002903
Chris Mason7fde62b2010-03-16 15:40:10 -04002904 alloc_size = sizeof(*dest) * slot_count;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04002905
Chris Mason7fde62b2010-03-16 15:40:10 -04002906 /* we generally have at most 6 or so space infos, one for each raid
2907 * level. So, a whole page should be more than enough for everyone
2908 */
2909 if (alloc_size > PAGE_CACHE_SIZE)
2910 return -ENOMEM;
2911
2912 space_args.total_spaces = 0;
2913 dest = kmalloc(alloc_size, GFP_NOFS);
2914 if (!dest)
2915 return -ENOMEM;
2916 dest_orig = dest;
2917
2918 /* now we have a buffer to copy into */
Josef Bacikbf5fc0932010-09-29 11:22:36 -04002919 for (i = 0; i < num_types; i++) {
2920 struct btrfs_space_info *tmp;
Chris Mason7fde62b2010-03-16 15:40:10 -04002921
Dan Rosenberg51788b12011-02-14 16:04:23 -05002922 if (!slot_count)
2923 break;
2924
Josef Bacikbf5fc0932010-09-29 11:22:36 -04002925 info = NULL;
2926 rcu_read_lock();
2927 list_for_each_entry_rcu(tmp, &root->fs_info->space_info,
2928 list) {
2929 if (tmp->flags == types[i]) {
2930 info = tmp;
2931 break;
2932 }
2933 }
2934 rcu_read_unlock();
Chris Mason7fde62b2010-03-16 15:40:10 -04002935
Josef Bacikbf5fc0932010-09-29 11:22:36 -04002936 if (!info)
2937 continue;
2938 down_read(&info->groups_sem);
2939 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
2940 if (!list_empty(&info->block_groups[c])) {
2941 get_block_group_info(&info->block_groups[c],
2942 &space);
2943 memcpy(dest, &space, sizeof(space));
2944 dest++;
2945 space_args.total_spaces++;
Dan Rosenberg51788b12011-02-14 16:04:23 -05002946 slot_count--;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04002947 }
Dan Rosenberg51788b12011-02-14 16:04:23 -05002948 if (!slot_count)
2949 break;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04002950 }
2951 up_read(&info->groups_sem);
Josef Bacik1406e432010-01-13 18:19:06 +00002952 }
Josef Bacik1406e432010-01-13 18:19:06 +00002953
Daniel J Blueman2eec6c82012-04-26 00:37:14 +08002954 user_dest = (struct btrfs_ioctl_space_info __user *)
Chris Mason7fde62b2010-03-16 15:40:10 -04002955 (arg + sizeof(struct btrfs_ioctl_space_args));
2956
2957 if (copy_to_user(user_dest, dest_orig, alloc_size))
2958 ret = -EFAULT;
2959
2960 kfree(dest_orig);
2961out:
2962 if (ret == 0 && copy_to_user(arg, &space_args, sizeof(space_args)))
Josef Bacik1406e432010-01-13 18:19:06 +00002963 ret = -EFAULT;
2964
2965 return ret;
2966}
2967
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002968/*
2969 * there are many ways the trans_start and trans_end ioctls can lead
2970 * to deadlocks. They should only be used by applications that
2971 * basically own the machine, and have a very in depth understanding
2972 * of all the possible deadlocks and enospc problems.
2973 */
2974long btrfs_ioctl_trans_end(struct file *file)
2975{
2976 struct inode *inode = fdentry(file)->d_inode;
2977 struct btrfs_root *root = BTRFS_I(inode)->root;
2978 struct btrfs_trans_handle *trans;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002979
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002980 trans = file->private_data;
Sage Weil1ab86ae2009-09-29 18:38:44 -04002981 if (!trans)
2982 return -EINVAL;
Christoph Hellwigb2141072008-09-05 16:43:31 -04002983 file->private_data = NULL;
Sage Weil9ca9ee02008-08-04 10:41:27 -04002984
Sage Weil1ab86ae2009-09-29 18:38:44 -04002985 btrfs_end_transaction(trans, root);
2986
Josef Bacika4abeea2011-04-11 17:25:13 -04002987 atomic_dec(&root->fs_info->open_ioctl_trans);
Sage Weil9ca9ee02008-08-04 10:41:27 -04002988
Al Viro2a79f172011-12-09 08:06:57 -05002989 mnt_drop_write_file(file);
Sage Weil1ab86ae2009-09-29 18:38:44 -04002990 return 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002991}
2992
Sage Weil46204592010-10-29 15:41:32 -04002993static noinline long btrfs_ioctl_start_sync(struct file *file, void __user *argp)
2994{
2995 struct btrfs_root *root = BTRFS_I(file->f_dentry->d_inode)->root;
2996 struct btrfs_trans_handle *trans;
2997 u64 transid;
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00002998 int ret;
Sage Weil46204592010-10-29 15:41:32 -04002999
3000 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00003001 if (IS_ERR(trans))
3002 return PTR_ERR(trans);
Sage Weil46204592010-10-29 15:41:32 -04003003 transid = trans->transid;
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00003004 ret = btrfs_commit_transaction_async(trans, root, 0);
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00003005 if (ret) {
3006 btrfs_end_transaction(trans, root);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00003007 return ret;
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00003008 }
Sage Weil46204592010-10-29 15:41:32 -04003009
3010 if (argp)
3011 if (copy_to_user(argp, &transid, sizeof(transid)))
3012 return -EFAULT;
3013 return 0;
3014}
3015
3016static noinline long btrfs_ioctl_wait_sync(struct file *file, void __user *argp)
3017{
3018 struct btrfs_root *root = BTRFS_I(file->f_dentry->d_inode)->root;
3019 u64 transid;
3020
3021 if (argp) {
3022 if (copy_from_user(&transid, argp, sizeof(transid)))
3023 return -EFAULT;
3024 } else {
3025 transid = 0; /* current trans */
3026 }
3027 return btrfs_wait_for_commit(root, transid);
3028}
3029
Jan Schmidt475f6382011-03-11 15:41:01 +01003030static long btrfs_ioctl_scrub(struct btrfs_root *root, void __user *arg)
3031{
3032 int ret;
3033 struct btrfs_ioctl_scrub_args *sa;
3034
3035 if (!capable(CAP_SYS_ADMIN))
3036 return -EPERM;
3037
3038 sa = memdup_user(arg, sizeof(*sa));
3039 if (IS_ERR(sa))
3040 return PTR_ERR(sa);
3041
3042 ret = btrfs_scrub_dev(root, sa->devid, sa->start, sa->end,
Arne Jansen86287642011-03-23 16:34:19 +01003043 &sa->progress, sa->flags & BTRFS_SCRUB_READONLY);
Jan Schmidt475f6382011-03-11 15:41:01 +01003044
3045 if (copy_to_user(arg, sa, sizeof(*sa)))
3046 ret = -EFAULT;
3047
3048 kfree(sa);
3049 return ret;
3050}
3051
3052static long btrfs_ioctl_scrub_cancel(struct btrfs_root *root, void __user *arg)
3053{
3054 if (!capable(CAP_SYS_ADMIN))
3055 return -EPERM;
3056
3057 return btrfs_scrub_cancel(root);
3058}
3059
3060static long btrfs_ioctl_scrub_progress(struct btrfs_root *root,
3061 void __user *arg)
3062{
3063 struct btrfs_ioctl_scrub_args *sa;
3064 int ret;
3065
3066 if (!capable(CAP_SYS_ADMIN))
3067 return -EPERM;
3068
3069 sa = memdup_user(arg, sizeof(*sa));
3070 if (IS_ERR(sa))
3071 return PTR_ERR(sa);
3072
3073 ret = btrfs_scrub_progress(root, sa->devid, &sa->progress);
3074
3075 if (copy_to_user(arg, sa, sizeof(*sa)))
3076 ret = -EFAULT;
3077
3078 kfree(sa);
3079 return ret;
3080}
3081
Stefan Behrensc11d2c22012-05-25 16:06:09 +02003082static long btrfs_ioctl_get_dev_stats(struct btrfs_root *root,
3083 void __user *arg, int reset_after_read)
3084{
3085 struct btrfs_ioctl_get_dev_stats *sa;
3086 int ret;
3087
3088 if (reset_after_read && !capable(CAP_SYS_ADMIN))
3089 return -EPERM;
3090
3091 sa = memdup_user(arg, sizeof(*sa));
3092 if (IS_ERR(sa))
3093 return PTR_ERR(sa);
3094
3095 ret = btrfs_get_dev_stats(root, sa, reset_after_read);
3096
3097 if (copy_to_user(arg, sa, sizeof(*sa)))
3098 ret = -EFAULT;
3099
3100 kfree(sa);
3101 return ret;
3102}
3103
Jan Schmidtd7728c92011-07-07 16:48:38 +02003104static long btrfs_ioctl_ino_to_path(struct btrfs_root *root, void __user *arg)
3105{
3106 int ret = 0;
3107 int i;
Chris Mason740c3d22011-11-02 15:48:34 -04003108 u64 rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003109 int size;
Chris Mason806468f2011-11-06 03:07:10 -05003110 struct btrfs_ioctl_ino_path_args *ipa = NULL;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003111 struct inode_fs_paths *ipath = NULL;
3112 struct btrfs_path *path;
3113
3114 if (!capable(CAP_SYS_ADMIN))
3115 return -EPERM;
3116
3117 path = btrfs_alloc_path();
3118 if (!path) {
3119 ret = -ENOMEM;
3120 goto out;
3121 }
3122
3123 ipa = memdup_user(arg, sizeof(*ipa));
3124 if (IS_ERR(ipa)) {
3125 ret = PTR_ERR(ipa);
3126 ipa = NULL;
3127 goto out;
3128 }
3129
3130 size = min_t(u32, ipa->size, 4096);
3131 ipath = init_ipath(size, root, path);
3132 if (IS_ERR(ipath)) {
3133 ret = PTR_ERR(ipath);
3134 ipath = NULL;
3135 goto out;
3136 }
3137
3138 ret = paths_from_inode(ipa->inum, ipath);
3139 if (ret < 0)
3140 goto out;
3141
3142 for (i = 0; i < ipath->fspath->elem_cnt; ++i) {
Jeff Mahoney745c4d82011-11-20 07:31:57 -05003143 rel_ptr = ipath->fspath->val[i] -
3144 (u64)(unsigned long)ipath->fspath->val;
Chris Mason740c3d22011-11-02 15:48:34 -04003145 ipath->fspath->val[i] = rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003146 }
3147
Jeff Mahoney745c4d82011-11-20 07:31:57 -05003148 ret = copy_to_user((void *)(unsigned long)ipa->fspath,
3149 (void *)(unsigned long)ipath->fspath, size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02003150 if (ret) {
3151 ret = -EFAULT;
3152 goto out;
3153 }
3154
3155out:
3156 btrfs_free_path(path);
3157 free_ipath(ipath);
3158 kfree(ipa);
3159
3160 return ret;
3161}
3162
3163static int build_ino_list(u64 inum, u64 offset, u64 root, void *ctx)
3164{
3165 struct btrfs_data_container *inodes = ctx;
3166 const size_t c = 3 * sizeof(u64);
3167
3168 if (inodes->bytes_left >= c) {
3169 inodes->bytes_left -= c;
3170 inodes->val[inodes->elem_cnt] = inum;
3171 inodes->val[inodes->elem_cnt + 1] = offset;
3172 inodes->val[inodes->elem_cnt + 2] = root;
3173 inodes->elem_cnt += 3;
3174 } else {
3175 inodes->bytes_missing += c - inodes->bytes_left;
3176 inodes->bytes_left = 0;
3177 inodes->elem_missed += 3;
3178 }
3179
3180 return 0;
3181}
3182
3183static long btrfs_ioctl_logical_to_ino(struct btrfs_root *root,
3184 void __user *arg)
3185{
3186 int ret = 0;
3187 int size;
Jan Schmidt4692cf52011-12-02 14:56:41 +01003188 u64 extent_item_pos;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003189 struct btrfs_ioctl_logical_ino_args *loi;
3190 struct btrfs_data_container *inodes = NULL;
3191 struct btrfs_path *path = NULL;
3192 struct btrfs_key key;
3193
3194 if (!capable(CAP_SYS_ADMIN))
3195 return -EPERM;
3196
3197 loi = memdup_user(arg, sizeof(*loi));
3198 if (IS_ERR(loi)) {
3199 ret = PTR_ERR(loi);
3200 loi = NULL;
3201 goto out;
3202 }
3203
3204 path = btrfs_alloc_path();
3205 if (!path) {
3206 ret = -ENOMEM;
3207 goto out;
3208 }
3209
3210 size = min_t(u32, loi->size, 4096);
3211 inodes = init_data_container(size);
3212 if (IS_ERR(inodes)) {
3213 ret = PTR_ERR(inodes);
3214 inodes = NULL;
3215 goto out;
3216 }
3217
3218 ret = extent_from_logical(root->fs_info, loi->logical, path, &key);
Jan Schmidt4692cf52011-12-02 14:56:41 +01003219 btrfs_release_path(path);
Jan Schmidtd7728c92011-07-07 16:48:38 +02003220
3221 if (ret & BTRFS_EXTENT_FLAG_TREE_BLOCK)
3222 ret = -ENOENT;
3223 if (ret < 0)
3224 goto out;
3225
Jan Schmidt4692cf52011-12-02 14:56:41 +01003226 extent_item_pos = loi->logical - key.objectid;
Jan Schmidt7a3ae2f2012-03-23 17:32:28 +01003227 ret = iterate_extent_inodes(root->fs_info, key.objectid,
3228 extent_item_pos, 0, build_ino_list,
Jan Schmidt4692cf52011-12-02 14:56:41 +01003229 inodes);
Jan Schmidtd7728c92011-07-07 16:48:38 +02003230
3231 if (ret < 0)
3232 goto out;
3233
Jeff Mahoney745c4d82011-11-20 07:31:57 -05003234 ret = copy_to_user((void *)(unsigned long)loi->inodes,
3235 (void *)(unsigned long)inodes, size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02003236 if (ret)
3237 ret = -EFAULT;
3238
3239out:
3240 btrfs_free_path(path);
3241 kfree(inodes);
3242 kfree(loi);
3243
3244 return ret;
3245}
3246
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003247void update_ioctl_balance_args(struct btrfs_fs_info *fs_info, int lock,
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003248 struct btrfs_ioctl_balance_args *bargs)
3249{
3250 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
3251
3252 bargs->flags = bctl->flags;
3253
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003254 if (atomic_read(&fs_info->balance_running))
3255 bargs->state |= BTRFS_BALANCE_STATE_RUNNING;
3256 if (atomic_read(&fs_info->balance_pause_req))
3257 bargs->state |= BTRFS_BALANCE_STATE_PAUSE_REQ;
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003258 if (atomic_read(&fs_info->balance_cancel_req))
3259 bargs->state |= BTRFS_BALANCE_STATE_CANCEL_REQ;
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003260
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003261 memcpy(&bargs->data, &bctl->data, sizeof(bargs->data));
3262 memcpy(&bargs->meta, &bctl->meta, sizeof(bargs->meta));
3263 memcpy(&bargs->sys, &bctl->sys, sizeof(bargs->sys));
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003264
3265 if (lock) {
3266 spin_lock(&fs_info->balance_lock);
3267 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
3268 spin_unlock(&fs_info->balance_lock);
3269 } else {
3270 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
3271 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003272}
3273
Liu Bo9ba1f6e2012-05-11 18:11:26 +08003274static long btrfs_ioctl_balance(struct file *file, void __user *arg)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003275{
Liu Bo9ba1f6e2012-05-11 18:11:26 +08003276 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003277 struct btrfs_fs_info *fs_info = root->fs_info;
3278 struct btrfs_ioctl_balance_args *bargs;
3279 struct btrfs_balance_control *bctl;
3280 int ret;
3281
3282 if (!capable(CAP_SYS_ADMIN))
3283 return -EPERM;
3284
3285 if (fs_info->sb->s_flags & MS_RDONLY)
3286 return -EROFS;
3287
Liu Bo9ba1f6e2012-05-11 18:11:26 +08003288 ret = mnt_want_write(file->f_path.mnt);
3289 if (ret)
3290 return ret;
3291
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003292 mutex_lock(&fs_info->volume_mutex);
3293 mutex_lock(&fs_info->balance_mutex);
3294
3295 if (arg) {
3296 bargs = memdup_user(arg, sizeof(*bargs));
3297 if (IS_ERR(bargs)) {
3298 ret = PTR_ERR(bargs);
3299 goto out;
3300 }
Ilya Dryomovde322262012-01-16 22:04:49 +02003301
3302 if (bargs->flags & BTRFS_BALANCE_RESUME) {
3303 if (!fs_info->balance_ctl) {
3304 ret = -ENOTCONN;
3305 goto out_bargs;
3306 }
3307
3308 bctl = fs_info->balance_ctl;
3309 spin_lock(&fs_info->balance_lock);
3310 bctl->flags |= BTRFS_BALANCE_RESUME;
3311 spin_unlock(&fs_info->balance_lock);
3312
3313 goto do_balance;
3314 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003315 } else {
3316 bargs = NULL;
3317 }
3318
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003319 if (fs_info->balance_ctl) {
3320 ret = -EINPROGRESS;
3321 goto out_bargs;
3322 }
3323
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003324 bctl = kzalloc(sizeof(*bctl), GFP_NOFS);
3325 if (!bctl) {
3326 ret = -ENOMEM;
3327 goto out_bargs;
3328 }
3329
3330 bctl->fs_info = fs_info;
3331 if (arg) {
3332 memcpy(&bctl->data, &bargs->data, sizeof(bctl->data));
3333 memcpy(&bctl->meta, &bargs->meta, sizeof(bctl->meta));
3334 memcpy(&bctl->sys, &bargs->sys, sizeof(bctl->sys));
3335
3336 bctl->flags = bargs->flags;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003337 } else {
3338 /* balance everything - no filters */
3339 bctl->flags |= BTRFS_BALANCE_TYPE_MASK;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003340 }
3341
Ilya Dryomovde322262012-01-16 22:04:49 +02003342do_balance:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003343 ret = btrfs_balance(bctl, bargs);
3344 /*
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003345 * bctl is freed in __cancel_balance or in free_fs_info if
3346 * restriper was paused all the way until unmount
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003347 */
3348 if (arg) {
3349 if (copy_to_user(arg, bargs, sizeof(*bargs)))
3350 ret = -EFAULT;
3351 }
3352
3353out_bargs:
3354 kfree(bargs);
3355out:
3356 mutex_unlock(&fs_info->balance_mutex);
3357 mutex_unlock(&fs_info->volume_mutex);
Liu Bo9ba1f6e2012-05-11 18:11:26 +08003358 mnt_drop_write(file->f_path.mnt);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003359 return ret;
3360}
3361
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003362static long btrfs_ioctl_balance_ctl(struct btrfs_root *root, int cmd)
3363{
3364 if (!capable(CAP_SYS_ADMIN))
3365 return -EPERM;
3366
3367 switch (cmd) {
3368 case BTRFS_BALANCE_CTL_PAUSE:
3369 return btrfs_pause_balance(root->fs_info);
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003370 case BTRFS_BALANCE_CTL_CANCEL:
3371 return btrfs_cancel_balance(root->fs_info);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003372 }
3373
3374 return -EINVAL;
3375}
3376
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003377static long btrfs_ioctl_balance_progress(struct btrfs_root *root,
3378 void __user *arg)
3379{
3380 struct btrfs_fs_info *fs_info = root->fs_info;
3381 struct btrfs_ioctl_balance_args *bargs;
3382 int ret = 0;
3383
3384 if (!capable(CAP_SYS_ADMIN))
3385 return -EPERM;
3386
3387 mutex_lock(&fs_info->balance_mutex);
3388 if (!fs_info->balance_ctl) {
3389 ret = -ENOTCONN;
3390 goto out;
3391 }
3392
3393 bargs = kzalloc(sizeof(*bargs), GFP_NOFS);
3394 if (!bargs) {
3395 ret = -ENOMEM;
3396 goto out;
3397 }
3398
3399 update_ioctl_balance_args(fs_info, 1, bargs);
3400
3401 if (copy_to_user(arg, bargs, sizeof(*bargs)))
3402 ret = -EFAULT;
3403
3404 kfree(bargs);
3405out:
3406 mutex_unlock(&fs_info->balance_mutex);
3407 return ret;
3408}
3409
Alexander Block8ea05e32012-07-25 17:35:53 +02003410static long btrfs_ioctl_set_received_subvol(struct file *file,
3411 void __user *arg)
3412{
3413 struct btrfs_ioctl_received_subvol_args *sa = NULL;
3414 struct inode *inode = fdentry(file)->d_inode;
3415 struct btrfs_root *root = BTRFS_I(inode)->root;
3416 struct btrfs_root_item *root_item = &root->root_item;
3417 struct btrfs_trans_handle *trans;
3418 struct timespec ct = CURRENT_TIME;
3419 int ret = 0;
3420
3421 ret = mnt_want_write_file(file);
3422 if (ret < 0)
3423 return ret;
3424
3425 down_write(&root->fs_info->subvol_sem);
3426
3427 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
3428 ret = -EINVAL;
3429 goto out;
3430 }
3431
3432 if (btrfs_root_readonly(root)) {
3433 ret = -EROFS;
3434 goto out;
3435 }
3436
3437 if (!inode_owner_or_capable(inode)) {
3438 ret = -EACCES;
3439 goto out;
3440 }
3441
3442 sa = memdup_user(arg, sizeof(*sa));
3443 if (IS_ERR(sa)) {
3444 ret = PTR_ERR(sa);
3445 sa = NULL;
3446 goto out;
3447 }
3448
3449 trans = btrfs_start_transaction(root, 1);
3450 if (IS_ERR(trans)) {
3451 ret = PTR_ERR(trans);
3452 trans = NULL;
3453 goto out;
3454 }
3455
3456 sa->rtransid = trans->transid;
3457 sa->rtime.sec = ct.tv_sec;
3458 sa->rtime.nsec = ct.tv_nsec;
3459
3460 memcpy(root_item->received_uuid, sa->uuid, BTRFS_UUID_SIZE);
3461 btrfs_set_root_stransid(root_item, sa->stransid);
3462 btrfs_set_root_rtransid(root_item, sa->rtransid);
3463 root_item->stime.sec = cpu_to_le64(sa->stime.sec);
3464 root_item->stime.nsec = cpu_to_le32(sa->stime.nsec);
3465 root_item->rtime.sec = cpu_to_le64(sa->rtime.sec);
3466 root_item->rtime.nsec = cpu_to_le32(sa->rtime.nsec);
3467
3468 ret = btrfs_update_root(trans, root->fs_info->tree_root,
3469 &root->root_key, &root->root_item);
3470 if (ret < 0) {
3471 btrfs_end_transaction(trans, root);
3472 trans = NULL;
3473 goto out;
3474 } else {
3475 ret = btrfs_commit_transaction(trans, root);
3476 if (ret < 0)
3477 goto out;
3478 }
3479
3480 ret = copy_to_user(arg, sa, sizeof(*sa));
3481 if (ret)
3482 ret = -EFAULT;
3483
3484out:
3485 kfree(sa);
3486 up_write(&root->fs_info->subvol_sem);
3487 mnt_drop_write_file(file);
3488 return ret;
3489}
3490
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003491long btrfs_ioctl(struct file *file, unsigned int
3492 cmd, unsigned long arg)
3493{
3494 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05003495 void __user *argp = (void __user *)arg;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003496
3497 switch (cmd) {
Christoph Hellwig6cbff002009-04-17 10:37:41 +02003498 case FS_IOC_GETFLAGS:
3499 return btrfs_ioctl_getflags(file, argp);
3500 case FS_IOC_SETFLAGS:
3501 return btrfs_ioctl_setflags(file, argp);
3502 case FS_IOC_GETVERSION:
3503 return btrfs_ioctl_getversion(file, argp);
Li Dongyangf7039b12011-03-24 10:24:28 +00003504 case FITRIM:
3505 return btrfs_ioctl_fitrim(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003506 case BTRFS_IOC_SNAP_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08003507 return btrfs_ioctl_snap_create(file, argp, 0);
Li Zefanfdfb1e42010-12-10 06:41:56 +00003508 case BTRFS_IOC_SNAP_CREATE_V2:
Li Zefanfa0d2b92010-12-20 15:53:28 +08003509 return btrfs_ioctl_snap_create_v2(file, argp, 0);
Chris Mason3de45862008-11-17 21:02:50 -05003510 case BTRFS_IOC_SUBVOL_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08003511 return btrfs_ioctl_snap_create(file, argp, 1);
Yan, Zheng76dda932009-09-21 16:00:26 -04003512 case BTRFS_IOC_SNAP_DESTROY:
3513 return btrfs_ioctl_snap_destroy(file, argp);
Li Zefan0caa1022010-12-20 16:30:25 +08003514 case BTRFS_IOC_SUBVOL_GETFLAGS:
3515 return btrfs_ioctl_subvol_getflags(file, argp);
3516 case BTRFS_IOC_SUBVOL_SETFLAGS:
3517 return btrfs_ioctl_subvol_setflags(file, argp);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003518 case BTRFS_IOC_DEFAULT_SUBVOL:
3519 return btrfs_ioctl_default_subvol(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003520 case BTRFS_IOC_DEFRAG:
Chris Mason1e701a32010-03-11 09:42:04 -05003521 return btrfs_ioctl_defrag(file, NULL);
3522 case BTRFS_IOC_DEFRAG_RANGE:
3523 return btrfs_ioctl_defrag(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003524 case BTRFS_IOC_RESIZE:
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05003525 return btrfs_ioctl_resize(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003526 case BTRFS_IOC_ADD_DEV:
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05003527 return btrfs_ioctl_add_dev(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003528 case BTRFS_IOC_RM_DEV:
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05003529 return btrfs_ioctl_rm_dev(root, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01003530 case BTRFS_IOC_FS_INFO:
3531 return btrfs_ioctl_fs_info(root, argp);
3532 case BTRFS_IOC_DEV_INFO:
3533 return btrfs_ioctl_dev_info(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003534 case BTRFS_IOC_BALANCE:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08003535 return btrfs_ioctl_balance(file, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003536 case BTRFS_IOC_CLONE:
Sage Weilc5c9cd42008-11-12 14:32:25 -05003537 return btrfs_ioctl_clone(file, arg, 0, 0, 0);
3538 case BTRFS_IOC_CLONE_RANGE:
Christoph Hellwig7a865e82008-12-02 09:52:24 -05003539 return btrfs_ioctl_clone_range(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003540 case BTRFS_IOC_TRANS_START:
3541 return btrfs_ioctl_trans_start(file);
3542 case BTRFS_IOC_TRANS_END:
3543 return btrfs_ioctl_trans_end(file);
Chris Masonac8e9812010-02-28 15:39:26 -05003544 case BTRFS_IOC_TREE_SEARCH:
3545 return btrfs_ioctl_tree_search(file, argp);
3546 case BTRFS_IOC_INO_LOOKUP:
3547 return btrfs_ioctl_ino_lookup(file, argp);
Jan Schmidtd7728c92011-07-07 16:48:38 +02003548 case BTRFS_IOC_INO_PATHS:
3549 return btrfs_ioctl_ino_to_path(root, argp);
3550 case BTRFS_IOC_LOGICAL_INO:
3551 return btrfs_ioctl_logical_to_ino(root, argp);
Josef Bacik1406e432010-01-13 18:19:06 +00003552 case BTRFS_IOC_SPACE_INFO:
3553 return btrfs_ioctl_space_info(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003554 case BTRFS_IOC_SYNC:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003555 btrfs_sync_fs(file->f_dentry->d_sb, 1);
3556 return 0;
Sage Weil46204592010-10-29 15:41:32 -04003557 case BTRFS_IOC_START_SYNC:
3558 return btrfs_ioctl_start_sync(file, argp);
3559 case BTRFS_IOC_WAIT_SYNC:
3560 return btrfs_ioctl_wait_sync(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01003561 case BTRFS_IOC_SCRUB:
3562 return btrfs_ioctl_scrub(root, argp);
3563 case BTRFS_IOC_SCRUB_CANCEL:
3564 return btrfs_ioctl_scrub_cancel(root, argp);
3565 case BTRFS_IOC_SCRUB_PROGRESS:
3566 return btrfs_ioctl_scrub_progress(root, argp);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003567 case BTRFS_IOC_BALANCE_V2:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08003568 return btrfs_ioctl_balance(file, argp);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003569 case BTRFS_IOC_BALANCE_CTL:
3570 return btrfs_ioctl_balance_ctl(root, arg);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003571 case BTRFS_IOC_BALANCE_PROGRESS:
3572 return btrfs_ioctl_balance_progress(root, argp);
Alexander Block8ea05e32012-07-25 17:35:53 +02003573 case BTRFS_IOC_SET_RECEIVED_SUBVOL:
3574 return btrfs_ioctl_set_received_subvol(file, argp);
Alexander Block31db9f72012-07-25 23:19:24 +02003575 case BTRFS_IOC_SEND:
3576 return btrfs_ioctl_send(file, argp);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02003577 case BTRFS_IOC_GET_DEV_STATS:
3578 return btrfs_ioctl_get_dev_stats(root, argp, 0);
3579 case BTRFS_IOC_GET_AND_RESET_DEV_STATS:
3580 return btrfs_ioctl_get_dev_stats(root, argp, 1);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003581 }
3582
3583 return -ENOTTY;
3584}