blob: 17facea6a51c8428878dffe52a9910b825fb8fd8 [file] [log] [blame]
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
19#include <linux/kernel.h>
20#include <linux/bio.h>
21#include <linux/buffer_head.h>
22#include <linux/file.h>
23#include <linux/fs.h>
Christoph Hellwigcb8e7092008-10-09 13:39:39 -040024#include <linux/fsnotify.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040025#include <linux/pagemap.h>
26#include <linux/highmem.h>
27#include <linux/time.h>
28#include <linux/init.h>
29#include <linux/string.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040030#include <linux/backing-dev.h>
Christoph Hellwigcb8e7092008-10-09 13:39:39 -040031#include <linux/mount.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040032#include <linux/mpage.h>
Christoph Hellwigcb8e7092008-10-09 13:39:39 -040033#include <linux/namei.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040034#include <linux/swap.h>
35#include <linux/writeback.h>
36#include <linux/statfs.h>
37#include <linux/compat.h>
38#include <linux/bit_spinlock.h>
Christoph Hellwigcb8e7092008-10-09 13:39:39 -040039#include <linux/security.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040040#include <linux/xattr.h>
Yan Zheng7ea394f2008-08-05 13:05:02 -040041#include <linux/vmalloc.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090042#include <linux/slab.h>
Li Dongyangf7039b12011-03-24 10:24:28 +000043#include <linux/blkdev.h>
Chris Mason4b4e25f2008-11-20 10:22:27 -050044#include "compat.h"
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040045#include "ctree.h"
46#include "disk-io.h"
47#include "transaction.h"
48#include "btrfs_inode.h"
49#include "ioctl.h"
50#include "print-tree.h"
51#include "volumes.h"
Chris Mason925baed2008-06-25 16:01:30 -040052#include "locking.h"
Li Zefan581bb052011-04-20 10:06:11 +080053#include "inode-map.h"
Jan Schmidtd7728c92011-07-07 16:48:38 +020054#include "backref.h"
Josef Bacik606686e2012-06-04 14:03:51 -040055#include "rcu-string.h"
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040056
Christoph Hellwig6cbff002009-04-17 10:37:41 +020057/* Mask out flags that are inappropriate for the given type of inode. */
58static inline __u32 btrfs_mask_flags(umode_t mode, __u32 flags)
59{
60 if (S_ISDIR(mode))
61 return flags;
62 else if (S_ISREG(mode))
63 return flags & ~FS_DIRSYNC_FL;
64 else
65 return flags & (FS_NODUMP_FL | FS_NOATIME_FL);
66}
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040067
Christoph Hellwig6cbff002009-04-17 10:37:41 +020068/*
69 * Export inode flags to the format expected by the FS_IOC_GETFLAGS ioctl.
70 */
71static unsigned int btrfs_flags_to_ioctl(unsigned int flags)
72{
73 unsigned int iflags = 0;
74
75 if (flags & BTRFS_INODE_SYNC)
76 iflags |= FS_SYNC_FL;
77 if (flags & BTRFS_INODE_IMMUTABLE)
78 iflags |= FS_IMMUTABLE_FL;
79 if (flags & BTRFS_INODE_APPEND)
80 iflags |= FS_APPEND_FL;
81 if (flags & BTRFS_INODE_NODUMP)
82 iflags |= FS_NODUMP_FL;
83 if (flags & BTRFS_INODE_NOATIME)
84 iflags |= FS_NOATIME_FL;
85 if (flags & BTRFS_INODE_DIRSYNC)
86 iflags |= FS_DIRSYNC_FL;
Li Zefand0092bd2011-04-15 03:03:06 +000087 if (flags & BTRFS_INODE_NODATACOW)
88 iflags |= FS_NOCOW_FL;
89
90 if ((flags & BTRFS_INODE_COMPRESS) && !(flags & BTRFS_INODE_NOCOMPRESS))
91 iflags |= FS_COMPR_FL;
92 else if (flags & BTRFS_INODE_NOCOMPRESS)
93 iflags |= FS_NOCOMP_FL;
Christoph Hellwig6cbff002009-04-17 10:37:41 +020094
95 return iflags;
96}
97
98/*
99 * Update inode->i_flags based on the btrfs internal flags.
100 */
101void btrfs_update_iflags(struct inode *inode)
102{
103 struct btrfs_inode *ip = BTRFS_I(inode);
104
105 inode->i_flags &= ~(S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC);
106
107 if (ip->flags & BTRFS_INODE_SYNC)
108 inode->i_flags |= S_SYNC;
109 if (ip->flags & BTRFS_INODE_IMMUTABLE)
110 inode->i_flags |= S_IMMUTABLE;
111 if (ip->flags & BTRFS_INODE_APPEND)
112 inode->i_flags |= S_APPEND;
113 if (ip->flags & BTRFS_INODE_NOATIME)
114 inode->i_flags |= S_NOATIME;
115 if (ip->flags & BTRFS_INODE_DIRSYNC)
116 inode->i_flags |= S_DIRSYNC;
117}
118
119/*
120 * Inherit flags from the parent inode.
121 *
Josef Bacike27425d2011-09-27 11:01:30 -0400122 * Currently only the compression flags and the cow flags are inherited.
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200123 */
124void btrfs_inherit_iflags(struct inode *inode, struct inode *dir)
125{
Chris Mason0b4dcea2009-06-11 11:13:35 -0400126 unsigned int flags;
127
128 if (!dir)
129 return;
130
131 flags = BTRFS_I(dir)->flags;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200132
Josef Bacike27425d2011-09-27 11:01:30 -0400133 if (flags & BTRFS_INODE_NOCOMPRESS) {
134 BTRFS_I(inode)->flags &= ~BTRFS_INODE_COMPRESS;
135 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
136 } else if (flags & BTRFS_INODE_COMPRESS) {
137 BTRFS_I(inode)->flags &= ~BTRFS_INODE_NOCOMPRESS;
138 BTRFS_I(inode)->flags |= BTRFS_INODE_COMPRESS;
139 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200140
Josef Bacike27425d2011-09-27 11:01:30 -0400141 if (flags & BTRFS_INODE_NODATACOW)
142 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW;
143
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200144 btrfs_update_iflags(inode);
145}
146
147static int btrfs_ioctl_getflags(struct file *file, void __user *arg)
148{
149 struct btrfs_inode *ip = BTRFS_I(file->f_path.dentry->d_inode);
150 unsigned int flags = btrfs_flags_to_ioctl(ip->flags);
151
152 if (copy_to_user(arg, &flags, sizeof(flags)))
153 return -EFAULT;
154 return 0;
155}
156
Liu Bo75e7cb72011-03-22 10:12:20 +0000157static int check_flags(unsigned int flags)
158{
159 if (flags & ~(FS_IMMUTABLE_FL | FS_APPEND_FL | \
160 FS_NOATIME_FL | FS_NODUMP_FL | \
161 FS_SYNC_FL | FS_DIRSYNC_FL | \
Li Zefane1e8fb62011-04-15 03:02:49 +0000162 FS_NOCOMP_FL | FS_COMPR_FL |
163 FS_NOCOW_FL))
Liu Bo75e7cb72011-03-22 10:12:20 +0000164 return -EOPNOTSUPP;
165
166 if ((flags & FS_NOCOMP_FL) && (flags & FS_COMPR_FL))
167 return -EINVAL;
168
Liu Bo75e7cb72011-03-22 10:12:20 +0000169 return 0;
170}
171
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200172static int btrfs_ioctl_setflags(struct file *file, void __user *arg)
173{
174 struct inode *inode = file->f_path.dentry->d_inode;
175 struct btrfs_inode *ip = BTRFS_I(inode);
176 struct btrfs_root *root = ip->root;
177 struct btrfs_trans_handle *trans;
178 unsigned int flags, oldflags;
179 int ret;
Li Zefanf062abf2011-12-29 13:36:45 +0800180 u64 ip_oldflags;
181 unsigned int i_oldflags;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200182
Li Zefanb83cc962010-12-20 16:04:08 +0800183 if (btrfs_root_readonly(root))
184 return -EROFS;
185
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200186 if (copy_from_user(&flags, arg, sizeof(flags)))
187 return -EFAULT;
188
Liu Bo75e7cb72011-03-22 10:12:20 +0000189 ret = check_flags(flags);
190 if (ret)
191 return ret;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200192
Serge E. Hallyn2e149672011-03-23 16:43:26 -0700193 if (!inode_owner_or_capable(inode))
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200194 return -EACCES;
195
196 mutex_lock(&inode->i_mutex);
197
Li Zefanf062abf2011-12-29 13:36:45 +0800198 ip_oldflags = ip->flags;
199 i_oldflags = inode->i_flags;
200
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200201 flags = btrfs_mask_flags(inode->i_mode, flags);
202 oldflags = btrfs_flags_to_ioctl(ip->flags);
203 if ((flags ^ oldflags) & (FS_APPEND_FL | FS_IMMUTABLE_FL)) {
204 if (!capable(CAP_LINUX_IMMUTABLE)) {
205 ret = -EPERM;
206 goto out_unlock;
207 }
208 }
209
Al Viroa561be72011-11-23 11:57:51 -0500210 ret = mnt_want_write_file(file);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200211 if (ret)
212 goto out_unlock;
213
214 if (flags & FS_SYNC_FL)
215 ip->flags |= BTRFS_INODE_SYNC;
216 else
217 ip->flags &= ~BTRFS_INODE_SYNC;
218 if (flags & FS_IMMUTABLE_FL)
219 ip->flags |= BTRFS_INODE_IMMUTABLE;
220 else
221 ip->flags &= ~BTRFS_INODE_IMMUTABLE;
222 if (flags & FS_APPEND_FL)
223 ip->flags |= BTRFS_INODE_APPEND;
224 else
225 ip->flags &= ~BTRFS_INODE_APPEND;
226 if (flags & FS_NODUMP_FL)
227 ip->flags |= BTRFS_INODE_NODUMP;
228 else
229 ip->flags &= ~BTRFS_INODE_NODUMP;
230 if (flags & FS_NOATIME_FL)
231 ip->flags |= BTRFS_INODE_NOATIME;
232 else
233 ip->flags &= ~BTRFS_INODE_NOATIME;
234 if (flags & FS_DIRSYNC_FL)
235 ip->flags |= BTRFS_INODE_DIRSYNC;
236 else
237 ip->flags &= ~BTRFS_INODE_DIRSYNC;
Li Zefane1e8fb62011-04-15 03:02:49 +0000238 if (flags & FS_NOCOW_FL)
239 ip->flags |= BTRFS_INODE_NODATACOW;
240 else
241 ip->flags &= ~BTRFS_INODE_NODATACOW;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200242
Liu Bo75e7cb72011-03-22 10:12:20 +0000243 /*
244 * The COMPRESS flag can only be changed by users, while the NOCOMPRESS
245 * flag may be changed automatically if compression code won't make
246 * things smaller.
247 */
248 if (flags & FS_NOCOMP_FL) {
249 ip->flags &= ~BTRFS_INODE_COMPRESS;
250 ip->flags |= BTRFS_INODE_NOCOMPRESS;
251 } else if (flags & FS_COMPR_FL) {
252 ip->flags |= BTRFS_INODE_COMPRESS;
253 ip->flags &= ~BTRFS_INODE_NOCOMPRESS;
Li Zefanebcb9042011-04-15 03:03:17 +0000254 } else {
255 ip->flags &= ~(BTRFS_INODE_COMPRESS | BTRFS_INODE_NOCOMPRESS);
Liu Bo75e7cb72011-03-22 10:12:20 +0000256 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200257
Li Zefan4da6f1a2011-12-29 13:39:50 +0800258 trans = btrfs_start_transaction(root, 1);
Li Zefanf062abf2011-12-29 13:36:45 +0800259 if (IS_ERR(trans)) {
260 ret = PTR_ERR(trans);
261 goto out_drop;
262 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200263
Li Zefan306424cc2011-12-14 20:12:02 -0500264 btrfs_update_iflags(inode);
Josef Bacik0c4d2d92012-04-05 15:03:02 -0400265 inode_inc_iversion(inode);
Li Zefan306424cc2011-12-14 20:12:02 -0500266 inode->i_ctime = CURRENT_TIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200267 ret = btrfs_update_inode(trans, root, inode);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200268
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200269 btrfs_end_transaction(trans, root);
Li Zefanf062abf2011-12-29 13:36:45 +0800270 out_drop:
271 if (ret) {
272 ip->flags = ip_oldflags;
273 inode->i_flags = i_oldflags;
274 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200275
Al Viro2a79f172011-12-09 08:06:57 -0500276 mnt_drop_write_file(file);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200277 out_unlock:
278 mutex_unlock(&inode->i_mutex);
liubo2d4e6f62011-02-24 09:38:16 +0000279 return ret;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200280}
281
282static int btrfs_ioctl_getversion(struct file *file, int __user *arg)
283{
284 struct inode *inode = file->f_path.dentry->d_inode;
285
286 return put_user(inode->i_generation, arg);
287}
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400288
Li Dongyangf7039b12011-03-24 10:24:28 +0000289static noinline int btrfs_ioctl_fitrim(struct file *file, void __user *arg)
290{
Al Viro815745c2011-11-17 15:40:49 -0500291 struct btrfs_fs_info *fs_info = btrfs_sb(fdentry(file)->d_sb);
Li Dongyangf7039b12011-03-24 10:24:28 +0000292 struct btrfs_device *device;
293 struct request_queue *q;
294 struct fstrim_range range;
295 u64 minlen = ULLONG_MAX;
296 u64 num_devices = 0;
Al Viro815745c2011-11-17 15:40:49 -0500297 u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy);
Li Dongyangf7039b12011-03-24 10:24:28 +0000298 int ret;
299
300 if (!capable(CAP_SYS_ADMIN))
301 return -EPERM;
302
Xiao Guangrong1f781602011-04-20 10:09:16 +0000303 rcu_read_lock();
304 list_for_each_entry_rcu(device, &fs_info->fs_devices->devices,
305 dev_list) {
Li Dongyangf7039b12011-03-24 10:24:28 +0000306 if (!device->bdev)
307 continue;
308 q = bdev_get_queue(device->bdev);
309 if (blk_queue_discard(q)) {
310 num_devices++;
311 minlen = min((u64)q->limits.discard_granularity,
312 minlen);
313 }
314 }
Xiao Guangrong1f781602011-04-20 10:09:16 +0000315 rcu_read_unlock();
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200316
Li Dongyangf7039b12011-03-24 10:24:28 +0000317 if (!num_devices)
318 return -EOPNOTSUPP;
Li Dongyangf7039b12011-03-24 10:24:28 +0000319 if (copy_from_user(&range, arg, sizeof(range)))
320 return -EFAULT;
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200321 if (range.start > total_bytes)
322 return -EINVAL;
Li Dongyangf7039b12011-03-24 10:24:28 +0000323
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200324 range.len = min(range.len, total_bytes - range.start);
Li Dongyangf7039b12011-03-24 10:24:28 +0000325 range.minlen = max(range.minlen, minlen);
Al Viro815745c2011-11-17 15:40:49 -0500326 ret = btrfs_trim_fs(fs_info->tree_root, &range);
Li Dongyangf7039b12011-03-24 10:24:28 +0000327 if (ret < 0)
328 return ret;
329
330 if (copy_to_user(arg, &range, sizeof(range)))
331 return -EFAULT;
332
333 return 0;
334}
335
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400336static noinline int create_subvol(struct btrfs_root *root,
337 struct dentry *dentry,
Sage Weil72fd0322010-10-29 15:41:32 -0400338 char *name, int namelen,
339 u64 *async_transid)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400340{
341 struct btrfs_trans_handle *trans;
342 struct btrfs_key key;
343 struct btrfs_root_item root_item;
344 struct btrfs_inode_item *inode_item;
345 struct extent_buffer *leaf;
Yan, Zheng76dda932009-09-21 16:00:26 -0400346 struct btrfs_root *new_root;
Al Viro2fbe8c82011-07-16 21:38:06 -0400347 struct dentry *parent = dentry->d_parent;
Josef Bacik6a912212010-11-20 09:48:00 +0000348 struct inode *dir;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400349 int ret;
350 int err;
351 u64 objectid;
352 u64 new_dirid = BTRFS_FIRST_FREE_OBJECTID;
Chris Mason3de45862008-11-17 21:02:50 -0500353 u64 index = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400354
Li Zefan581bb052011-04-20 10:06:11 +0800355 ret = btrfs_find_free_objectid(root->fs_info->tree_root, &objectid);
Al Viro2fbe8c82011-07-16 21:38:06 -0400356 if (ret)
Yan, Zhenga22285a2010-05-16 10:48:46 -0400357 return ret;
Josef Bacik6a912212010-11-20 09:48:00 +0000358
359 dir = parent->d_inode;
360
Josef Bacik9ed74f22009-09-11 16:12:44 -0400361 /*
362 * 1 - inode item
363 * 2 - refs
364 * 1 - root item
365 * 2 - dir items
366 */
Yan, Zhenga22285a2010-05-16 10:48:46 -0400367 trans = btrfs_start_transaction(root, 6);
Al Viro2fbe8c82011-07-16 21:38:06 -0400368 if (IS_ERR(trans))
Yan, Zhenga22285a2010-05-16 10:48:46 -0400369 return PTR_ERR(trans);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400370
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400371 leaf = btrfs_alloc_free_block(trans, root, root->leafsize,
Jan Schmidt5581a512012-05-16 17:04:52 +0200372 0, objectid, NULL, 0, 0, 0);
Josef Bacik8e8a1e32008-07-24 12:17:14 -0400373 if (IS_ERR(leaf)) {
374 ret = PTR_ERR(leaf);
375 goto fail;
376 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400377
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400378 memset_extent_buffer(leaf, 0, 0, sizeof(struct btrfs_header));
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400379 btrfs_set_header_bytenr(leaf, leaf->start);
380 btrfs_set_header_generation(leaf, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400381 btrfs_set_header_backref_rev(leaf, BTRFS_MIXED_BACKREF_REV);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400382 btrfs_set_header_owner(leaf, objectid);
383
384 write_extent_buffer(leaf, root->fs_info->fsid,
385 (unsigned long)btrfs_header_fsid(leaf),
386 BTRFS_FSID_SIZE);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400387 write_extent_buffer(leaf, root->fs_info->chunk_tree_uuid,
388 (unsigned long)btrfs_header_chunk_tree_uuid(leaf),
389 BTRFS_UUID_SIZE);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400390 btrfs_mark_buffer_dirty(leaf);
391
392 inode_item = &root_item.inode;
393 memset(inode_item, 0, sizeof(*inode_item));
394 inode_item->generation = cpu_to_le64(1);
395 inode_item->size = cpu_to_le64(3);
396 inode_item->nlink = cpu_to_le32(1);
Yan Zhenga76a3cd2008-10-09 11:46:29 -0400397 inode_item->nbytes = cpu_to_le64(root->leafsize);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400398 inode_item->mode = cpu_to_le32(S_IFDIR | 0755);
399
Li Zefan08fe4db2011-03-28 02:01:25 +0000400 root_item.flags = 0;
401 root_item.byte_limit = 0;
402 inode_item->flags = cpu_to_le64(BTRFS_INODE_ROOT_ITEM_INIT);
403
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400404 btrfs_set_root_bytenr(&root_item, leaf->start);
Yan Zheng84234f32008-10-29 14:49:05 -0400405 btrfs_set_root_generation(&root_item, trans->transid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400406 btrfs_set_root_level(&root_item, 0);
407 btrfs_set_root_refs(&root_item, 1);
Yan, Zheng86b9f2e2009-11-12 09:36:50 +0000408 btrfs_set_root_used(&root_item, leaf->len);
Yan Zheng80ff3852008-10-30 14:20:02 -0400409 btrfs_set_root_last_snapshot(&root_item, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400410
411 memset(&root_item.drop_progress, 0, sizeof(root_item.drop_progress));
412 root_item.drop_level = 0;
413
Chris Mason925baed2008-06-25 16:01:30 -0400414 btrfs_tree_unlock(leaf);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400415 free_extent_buffer(leaf);
416 leaf = NULL;
417
418 btrfs_set_root_dirid(&root_item, new_dirid);
419
420 key.objectid = objectid;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400421 key.offset = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400422 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
423 ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
424 &root_item);
425 if (ret)
426 goto fail;
427
Yan, Zheng76dda932009-09-21 16:00:26 -0400428 key.offset = (u64)-1;
429 new_root = btrfs_read_fs_root_no_name(root->fs_info, &key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100430 if (IS_ERR(new_root)) {
431 btrfs_abort_transaction(trans, root, PTR_ERR(new_root));
432 ret = PTR_ERR(new_root);
433 goto fail;
434 }
Yan, Zheng76dda932009-09-21 16:00:26 -0400435
436 btrfs_record_root_in_trans(trans, new_root);
437
Josef Bacikd82a6f12011-05-11 15:26:06 -0400438 ret = btrfs_create_subvol_root(trans, new_root, new_dirid);
Mark Fashehce598972011-07-26 11:32:23 -0700439 if (ret) {
440 /* We potentially lose an unused inode item here */
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100441 btrfs_abort_transaction(trans, root, ret);
Mark Fashehce598972011-07-26 11:32:23 -0700442 goto fail;
443 }
444
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400445 /*
446 * insert the directory item
447 */
Chris Mason3de45862008-11-17 21:02:50 -0500448 ret = btrfs_set_inode_index(dir, &index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100449 if (ret) {
450 btrfs_abort_transaction(trans, root, ret);
451 goto fail;
452 }
Chris Mason3de45862008-11-17 21:02:50 -0500453
454 ret = btrfs_insert_dir_item(trans, root,
Miao Xie16cdcec2011-04-22 18:12:22 +0800455 name, namelen, dir, &key,
Chris Mason3de45862008-11-17 21:02:50 -0500456 BTRFS_FT_DIR, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100457 if (ret) {
458 btrfs_abort_transaction(trans, root, ret);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400459 goto fail;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100460 }
Chris Mason0660b5a2008-11-17 20:37:39 -0500461
Yan Zheng52c26172009-01-05 15:43:43 -0500462 btrfs_i_size_write(dir, dir->i_size + namelen * 2);
463 ret = btrfs_update_inode(trans, root, dir);
464 BUG_ON(ret);
465
Chris Mason0660b5a2008-11-17 20:37:39 -0500466 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -0400467 objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +0800468 btrfs_ino(dir), index, name, namelen);
Yan, Zheng76dda932009-09-21 16:00:26 -0400469
Chris Mason0660b5a2008-11-17 20:37:39 -0500470 BUG_ON(ret);
471
Yan, Zheng76dda932009-09-21 16:00:26 -0400472 d_instantiate(dentry, btrfs_lookup_dentry(dir, dentry));
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400473fail:
Sage Weil72fd0322010-10-29 15:41:32 -0400474 if (async_transid) {
475 *async_transid = trans->transid;
476 err = btrfs_commit_transaction_async(trans, root, 1);
477 } else {
478 err = btrfs_commit_transaction(trans, root);
479 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400480 if (err && !ret)
481 ret = err;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400482 return ret;
483}
484
Sage Weil72fd0322010-10-29 15:41:32 -0400485static int create_snapshot(struct btrfs_root *root, struct dentry *dentry,
Li Zefanb83cc962010-12-20 16:04:08 +0800486 char *name, int namelen, u64 *async_transid,
487 bool readonly)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400488{
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000489 struct inode *inode;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400490 struct btrfs_pending_snapshot *pending_snapshot;
491 struct btrfs_trans_handle *trans;
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000492 int ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400493
494 if (!root->ref_cows)
495 return -EINVAL;
496
Yan, Zhenga22285a2010-05-16 10:48:46 -0400497 pending_snapshot = kzalloc(sizeof(*pending_snapshot), GFP_NOFS);
498 if (!pending_snapshot)
499 return -ENOMEM;
500
501 btrfs_init_block_rsv(&pending_snapshot->block_rsv);
502 pending_snapshot->dentry = dentry;
503 pending_snapshot->root = root;
Li Zefanb83cc962010-12-20 16:04:08 +0800504 pending_snapshot->readonly = readonly;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400505
506 trans = btrfs_start_transaction(root->fs_info->extent_root, 5);
507 if (IS_ERR(trans)) {
508 ret = PTR_ERR(trans);
509 goto fail;
510 }
511
512 ret = btrfs_snap_reserve_metadata(trans, pending_snapshot);
513 BUG_ON(ret);
514
Josef Bacik83515832011-06-14 15:16:14 -0400515 spin_lock(&root->fs_info->trans_lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400516 list_add(&pending_snapshot->list,
517 &trans->transaction->pending_snapshots);
Josef Bacik83515832011-06-14 15:16:14 -0400518 spin_unlock(&root->fs_info->trans_lock);
Sage Weil72fd0322010-10-29 15:41:32 -0400519 if (async_transid) {
520 *async_transid = trans->transid;
521 ret = btrfs_commit_transaction_async(trans,
522 root->fs_info->extent_root, 1);
523 } else {
524 ret = btrfs_commit_transaction(trans,
525 root->fs_info->extent_root);
526 }
Yan, Zhenga22285a2010-05-16 10:48:46 -0400527 BUG_ON(ret);
528
529 ret = pending_snapshot->error;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400530 if (ret)
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000531 goto fail;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400532
Josef Bacik66b4ffd2011-01-31 16:22:42 -0500533 ret = btrfs_orphan_cleanup(pending_snapshot->snap);
534 if (ret)
535 goto fail;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400536
Al Viro2fbe8c82011-07-16 21:38:06 -0400537 inode = btrfs_lookup_dentry(dentry->d_parent->d_inode, dentry);
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000538 if (IS_ERR(inode)) {
539 ret = PTR_ERR(inode);
540 goto fail;
541 }
542 BUG_ON(!inode);
543 d_instantiate(dentry, inode);
544 ret = 0;
545fail:
Yan, Zhenga22285a2010-05-16 10:48:46 -0400546 kfree(pending_snapshot);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400547 return ret;
548}
549
Sage Weil4260f7c2010-10-29 15:46:43 -0400550/* copy of check_sticky in fs/namei.c()
551* It's inline, so penalty for filesystems that don't use sticky bit is
552* minimal.
553*/
554static inline int btrfs_check_sticky(struct inode *dir, struct inode *inode)
555{
556 uid_t fsuid = current_fsuid();
557
558 if (!(dir->i_mode & S_ISVTX))
559 return 0;
560 if (inode->i_uid == fsuid)
561 return 0;
562 if (dir->i_uid == fsuid)
563 return 0;
564 return !capable(CAP_FOWNER);
565}
566
567/* copy of may_delete in fs/namei.c()
568 * Check whether we can remove a link victim from directory dir, check
569 * whether the type of victim is right.
570 * 1. We can't do it if dir is read-only (done in permission())
571 * 2. We should have write and exec permissions on dir
572 * 3. We can't remove anything from append-only dir
573 * 4. We can't do anything with immutable dir (done in permission())
574 * 5. If the sticky bit on dir is set we should either
575 * a. be owner of dir, or
576 * b. be owner of victim, or
577 * c. have CAP_FOWNER capability
578 * 6. If the victim is append-only or immutable we can't do antyhing with
579 * links pointing to it.
580 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
581 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
582 * 9. We can't remove a root or mountpoint.
583 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
584 * nfs_async_unlink().
585 */
586
587static int btrfs_may_delete(struct inode *dir,struct dentry *victim,int isdir)
588{
589 int error;
590
591 if (!victim->d_inode)
592 return -ENOENT;
593
594 BUG_ON(victim->d_parent->d_inode != dir);
595 audit_inode_child(victim, dir);
596
597 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
598 if (error)
599 return error;
600 if (IS_APPEND(dir))
601 return -EPERM;
602 if (btrfs_check_sticky(dir, victim->d_inode)||
603 IS_APPEND(victim->d_inode)||
604 IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode))
605 return -EPERM;
606 if (isdir) {
607 if (!S_ISDIR(victim->d_inode->i_mode))
608 return -ENOTDIR;
609 if (IS_ROOT(victim))
610 return -EBUSY;
611 } else if (S_ISDIR(victim->d_inode->i_mode))
612 return -EISDIR;
613 if (IS_DEADDIR(dir))
614 return -ENOENT;
615 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
616 return -EBUSY;
617 return 0;
618}
619
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400620/* copy of may_create in fs/namei.c() */
621static inline int btrfs_may_create(struct inode *dir, struct dentry *child)
622{
623 if (child->d_inode)
624 return -EEXIST;
625 if (IS_DEADDIR(dir))
626 return -ENOENT;
627 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
628}
629
630/*
631 * Create a new subvolume below @parent. This is largely modeled after
632 * sys_mkdirat and vfs_mkdir, but we only do a single component lookup
633 * inside this filesystem so it's quite a bit simpler.
634 */
Yan, Zheng76dda932009-09-21 16:00:26 -0400635static noinline int btrfs_mksubvol(struct path *parent,
636 char *name, int namelen,
Sage Weil72fd0322010-10-29 15:41:32 -0400637 struct btrfs_root *snap_src,
Li Zefanb83cc962010-12-20 16:04:08 +0800638 u64 *async_transid, bool readonly)
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400639{
Yan, Zheng76dda932009-09-21 16:00:26 -0400640 struct inode *dir = parent->dentry->d_inode;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400641 struct dentry *dentry;
642 int error;
643
Yan, Zheng76dda932009-09-21 16:00:26 -0400644 mutex_lock_nested(&dir->i_mutex, I_MUTEX_PARENT);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400645
646 dentry = lookup_one_len(name, parent->dentry, namelen);
647 error = PTR_ERR(dentry);
648 if (IS_ERR(dentry))
649 goto out_unlock;
650
651 error = -EEXIST;
652 if (dentry->d_inode)
653 goto out_dput;
654
Yan, Zheng76dda932009-09-21 16:00:26 -0400655 error = btrfs_may_create(dir, dentry);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400656 if (error)
Liu Boa874a632012-06-29 03:58:46 -0600657 goto out_dput;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400658
Yan, Zheng76dda932009-09-21 16:00:26 -0400659 down_read(&BTRFS_I(dir)->root->fs_info->subvol_sem);
660
661 if (btrfs_root_refs(&BTRFS_I(dir)->root->root_item) == 0)
662 goto out_up_read;
663
Chris Mason3de45862008-11-17 21:02:50 -0500664 if (snap_src) {
Sage Weil72fd0322010-10-29 15:41:32 -0400665 error = create_snapshot(snap_src, dentry,
Li Zefanb83cc962010-12-20 16:04:08 +0800666 name, namelen, async_transid, readonly);
Chris Mason3de45862008-11-17 21:02:50 -0500667 } else {
Yan, Zheng76dda932009-09-21 16:00:26 -0400668 error = create_subvol(BTRFS_I(dir)->root, dentry,
Sage Weil72fd0322010-10-29 15:41:32 -0400669 name, namelen, async_transid);
Chris Mason3de45862008-11-17 21:02:50 -0500670 }
Yan, Zheng76dda932009-09-21 16:00:26 -0400671 if (!error)
672 fsnotify_mkdir(dir, dentry);
673out_up_read:
674 up_read(&BTRFS_I(dir)->root->fs_info->subvol_sem);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400675out_dput:
676 dput(dentry);
677out_unlock:
Yan, Zheng76dda932009-09-21 16:00:26 -0400678 mutex_unlock(&dir->i_mutex);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400679 return error;
680}
681
Chris Mason4cb53002011-05-24 15:35:30 -0400682/*
683 * When we're defragging a range, we don't want to kick it off again
684 * if it is really just waiting for delalloc to send it down.
685 * If we find a nice big extent or delalloc range for the bytes in the
686 * file you want to defrag, we return 0 to let you know to skip this
687 * part of the file
688 */
689static int check_defrag_in_cache(struct inode *inode, u64 offset, int thresh)
690{
691 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
692 struct extent_map *em = NULL;
693 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
694 u64 end;
695
696 read_lock(&em_tree->lock);
697 em = lookup_extent_mapping(em_tree, offset, PAGE_CACHE_SIZE);
698 read_unlock(&em_tree->lock);
699
700 if (em) {
701 end = extent_map_end(em);
702 free_extent_map(em);
703 if (end - offset > thresh)
704 return 0;
705 }
706 /* if we already have a nice delalloc here, just stop */
707 thresh /= 2;
708 end = count_range_bits(io_tree, &offset, offset + thresh,
709 thresh, EXTENT_DELALLOC, 1);
710 if (end >= thresh)
711 return 0;
712 return 1;
713}
714
715/*
716 * helper function to walk through a file and find extents
717 * newer than a specific transid, and smaller than thresh.
718 *
719 * This is used by the defragging code to find new and small
720 * extents
721 */
722static int find_new_extents(struct btrfs_root *root,
723 struct inode *inode, u64 newer_than,
724 u64 *off, int thresh)
725{
726 struct btrfs_path *path;
727 struct btrfs_key min_key;
728 struct btrfs_key max_key;
729 struct extent_buffer *leaf;
730 struct btrfs_file_extent_item *extent;
731 int type;
732 int ret;
David Sterbaa4689d22011-05-31 17:08:14 +0000733 u64 ino = btrfs_ino(inode);
Chris Mason4cb53002011-05-24 15:35:30 -0400734
735 path = btrfs_alloc_path();
736 if (!path)
737 return -ENOMEM;
738
David Sterbaa4689d22011-05-31 17:08:14 +0000739 min_key.objectid = ino;
Chris Mason4cb53002011-05-24 15:35:30 -0400740 min_key.type = BTRFS_EXTENT_DATA_KEY;
741 min_key.offset = *off;
742
David Sterbaa4689d22011-05-31 17:08:14 +0000743 max_key.objectid = ino;
Chris Mason4cb53002011-05-24 15:35:30 -0400744 max_key.type = (u8)-1;
745 max_key.offset = (u64)-1;
746
747 path->keep_locks = 1;
748
749 while(1) {
750 ret = btrfs_search_forward(root, &min_key, &max_key,
751 path, 0, newer_than);
752 if (ret != 0)
753 goto none;
David Sterbaa4689d22011-05-31 17:08:14 +0000754 if (min_key.objectid != ino)
Chris Mason4cb53002011-05-24 15:35:30 -0400755 goto none;
756 if (min_key.type != BTRFS_EXTENT_DATA_KEY)
757 goto none;
758
759 leaf = path->nodes[0];
760 extent = btrfs_item_ptr(leaf, path->slots[0],
761 struct btrfs_file_extent_item);
762
763 type = btrfs_file_extent_type(leaf, extent);
764 if (type == BTRFS_FILE_EXTENT_REG &&
765 btrfs_file_extent_num_bytes(leaf, extent) < thresh &&
766 check_defrag_in_cache(inode, min_key.offset, thresh)) {
767 *off = min_key.offset;
768 btrfs_free_path(path);
769 return 0;
770 }
771
772 if (min_key.offset == (u64)-1)
773 goto none;
774
775 min_key.offset++;
776 btrfs_release_path(path);
777 }
778none:
779 btrfs_free_path(path);
780 return -ENOENT;
781}
782
Li Zefan6c282eb2012-06-11 16:03:35 +0800783static struct extent_map *defrag_lookup_extent(struct inode *inode, u64 start)
Liu Bo17ce6ef2012-03-29 09:57:45 -0400784{
785 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason940100a2010-03-10 10:52:59 -0500786 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Li Zefan6c282eb2012-06-11 16:03:35 +0800787 struct extent_map *em;
788 u64 len = PAGE_CACHE_SIZE;
Chris Mason940100a2010-03-10 10:52:59 -0500789
790 /*
791 * hopefully we have this extent in the tree already, try without
792 * the full extent lock
793 */
794 read_lock(&em_tree->lock);
795 em = lookup_extent_mapping(em_tree, start, len);
796 read_unlock(&em_tree->lock);
797
798 if (!em) {
799 /* get the big lock and read metadata off disk */
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100800 lock_extent(io_tree, start, start + len - 1);
Chris Mason940100a2010-03-10 10:52:59 -0500801 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100802 unlock_extent(io_tree, start, start + len - 1);
Chris Mason940100a2010-03-10 10:52:59 -0500803
Dan Carpenter6cf8bfb2010-03-20 11:22:10 +0000804 if (IS_ERR(em))
Li Zefan6c282eb2012-06-11 16:03:35 +0800805 return NULL;
Chris Mason940100a2010-03-10 10:52:59 -0500806 }
807
Li Zefan6c282eb2012-06-11 16:03:35 +0800808 return em;
809}
810
811static bool defrag_check_next_extent(struct inode *inode, struct extent_map *em)
812{
813 struct extent_map *next;
814 bool ret = true;
815
816 /* this is the last extent */
817 if (em->start + em->len >= i_size_read(inode))
818 return false;
819
820 next = defrag_lookup_extent(inode, em->start + em->len);
821 if (!next || next->block_start >= EXTENT_MAP_LAST_BYTE)
822 ret = false;
823
824 free_extent_map(next);
825 return ret;
826}
827
828static int should_defrag_range(struct inode *inode, u64 start, int thresh,
Andrew Mahonea43a2112012-06-19 21:08:32 -0400829 u64 *last_len, u64 *skip, u64 *defrag_end,
830 int compress)
Li Zefan6c282eb2012-06-11 16:03:35 +0800831{
832 struct extent_map *em;
833 int ret = 1;
834 bool next_mergeable = true;
835
836 /*
837 * make sure that once we start defragging an extent, we keep on
838 * defragging it
839 */
840 if (start < *defrag_end)
841 return 1;
842
843 *skip = 0;
844
845 em = defrag_lookup_extent(inode, start);
846 if (!em)
847 return 0;
848
Chris Mason940100a2010-03-10 10:52:59 -0500849 /* this will cover holes, and inline extents */
Liu Bo17ce6ef2012-03-29 09:57:45 -0400850 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
Chris Mason940100a2010-03-10 10:52:59 -0500851 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -0400852 goto out;
853 }
854
Li Zefan6c282eb2012-06-11 16:03:35 +0800855 next_mergeable = defrag_check_next_extent(inode, em);
Chris Mason940100a2010-03-10 10:52:59 -0500856
857 /*
Li Zefan6c282eb2012-06-11 16:03:35 +0800858 * we hit a real extent, if it is big or the next extent is not a
859 * real extent, don't bother defragging it
Chris Mason940100a2010-03-10 10:52:59 -0500860 */
Andrew Mahonea43a2112012-06-19 21:08:32 -0400861 if (!compress && (*last_len == 0 || *last_len >= thresh) &&
Li Zefan6c282eb2012-06-11 16:03:35 +0800862 (em->len >= thresh || !next_mergeable))
Chris Mason940100a2010-03-10 10:52:59 -0500863 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -0400864out:
Chris Mason940100a2010-03-10 10:52:59 -0500865 /*
866 * last_len ends up being a counter of how many bytes we've defragged.
867 * every time we choose not to defrag an extent, we reset *last_len
868 * so that the next tiny extent will force a defrag.
869 *
870 * The end result of this is that tiny extents before a single big
871 * extent will force at least part of that big extent to be defragged.
872 */
873 if (ret) {
Chris Mason940100a2010-03-10 10:52:59 -0500874 *defrag_end = extent_map_end(em);
875 } else {
876 *last_len = 0;
877 *skip = extent_map_end(em);
878 *defrag_end = 0;
879 }
880
881 free_extent_map(em);
882 return ret;
883}
884
Chris Mason4cb53002011-05-24 15:35:30 -0400885/*
886 * it doesn't do much good to defrag one or two pages
887 * at a time. This pulls in a nice chunk of pages
888 * to COW and defrag.
889 *
890 * It also makes sure the delalloc code has enough
891 * dirty data to avoid making new small extents as part
892 * of the defrag
893 *
894 * It's a good idea to start RA on this range
895 * before calling this.
896 */
897static int cluster_pages_for_defrag(struct inode *inode,
898 struct page **pages,
899 unsigned long start_index,
900 int num_pages)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400901{
Chris Mason4cb53002011-05-24 15:35:30 -0400902 unsigned long file_end;
903 u64 isize = i_size_read(inode);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400904 u64 page_start;
905 u64 page_end;
Liu Bo1f12bd02012-03-29 09:57:44 -0400906 u64 page_cnt;
Chris Mason4cb53002011-05-24 15:35:30 -0400907 int ret;
908 int i;
909 int i_done;
910 struct btrfs_ordered_extent *ordered;
911 struct extent_state *cached_state = NULL;
Miao Xie600a45e2012-02-16 15:01:24 +0800912 struct extent_io_tree *tree;
Josef Bacik3b16a4e2011-09-21 15:05:58 -0400913 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
Chris Mason4cb53002011-05-24 15:35:30 -0400914
Chris Mason4cb53002011-05-24 15:35:30 -0400915 file_end = (isize - 1) >> PAGE_CACHE_SHIFT;
Liu Bo1f12bd02012-03-29 09:57:44 -0400916 if (!isize || start_index > file_end)
917 return 0;
918
919 page_cnt = min_t(u64, (u64)num_pages, (u64)file_end - start_index + 1);
Chris Mason4cb53002011-05-24 15:35:30 -0400920
921 ret = btrfs_delalloc_reserve_space(inode,
Liu Bo1f12bd02012-03-29 09:57:44 -0400922 page_cnt << PAGE_CACHE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -0400923 if (ret)
924 return ret;
Chris Mason4cb53002011-05-24 15:35:30 -0400925 i_done = 0;
Miao Xie600a45e2012-02-16 15:01:24 +0800926 tree = &BTRFS_I(inode)->io_tree;
Chris Mason4cb53002011-05-24 15:35:30 -0400927
928 /* step one, lock all the pages */
Liu Bo1f12bd02012-03-29 09:57:44 -0400929 for (i = 0; i < page_cnt; i++) {
Chris Mason4cb53002011-05-24 15:35:30 -0400930 struct page *page;
Miao Xie600a45e2012-02-16 15:01:24 +0800931again:
Josef Bacika94733d2011-07-11 10:47:06 -0400932 page = find_or_create_page(inode->i_mapping,
Miao Xie600a45e2012-02-16 15:01:24 +0800933 start_index + i, mask);
Chris Mason4cb53002011-05-24 15:35:30 -0400934 if (!page)
935 break;
936
Miao Xie600a45e2012-02-16 15:01:24 +0800937 page_start = page_offset(page);
938 page_end = page_start + PAGE_CACHE_SIZE - 1;
939 while (1) {
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100940 lock_extent(tree, page_start, page_end);
Miao Xie600a45e2012-02-16 15:01:24 +0800941 ordered = btrfs_lookup_ordered_extent(inode,
942 page_start);
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100943 unlock_extent(tree, page_start, page_end);
Miao Xie600a45e2012-02-16 15:01:24 +0800944 if (!ordered)
945 break;
946
947 unlock_page(page);
948 btrfs_start_ordered_extent(inode, ordered, 1);
949 btrfs_put_ordered_extent(ordered);
950 lock_page(page);
Liu Bo1f12bd02012-03-29 09:57:44 -0400951 /*
952 * we unlocked the page above, so we need check if
953 * it was released or not.
954 */
955 if (page->mapping != inode->i_mapping) {
956 unlock_page(page);
957 page_cache_release(page);
958 goto again;
959 }
Miao Xie600a45e2012-02-16 15:01:24 +0800960 }
961
Chris Mason4cb53002011-05-24 15:35:30 -0400962 if (!PageUptodate(page)) {
963 btrfs_readpage(NULL, page);
964 lock_page(page);
965 if (!PageUptodate(page)) {
966 unlock_page(page);
967 page_cache_release(page);
968 ret = -EIO;
969 break;
970 }
971 }
Miao Xie600a45e2012-02-16 15:01:24 +0800972
Miao Xie600a45e2012-02-16 15:01:24 +0800973 if (page->mapping != inode->i_mapping) {
974 unlock_page(page);
975 page_cache_release(page);
976 goto again;
977 }
978
Chris Mason4cb53002011-05-24 15:35:30 -0400979 pages[i] = page;
980 i_done++;
981 }
982 if (!i_done || ret)
983 goto out;
984
985 if (!(inode->i_sb->s_flags & MS_ACTIVE))
986 goto out;
987
988 /*
989 * so now we have a nice long stream of locked
990 * and up to date pages, lets wait on them
991 */
992 for (i = 0; i < i_done; i++)
993 wait_on_page_writeback(pages[i]);
994
995 page_start = page_offset(pages[0]);
996 page_end = page_offset(pages[i_done - 1]) + PAGE_CACHE_SIZE;
997
998 lock_extent_bits(&BTRFS_I(inode)->io_tree,
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100999 page_start, page_end - 1, 0, &cached_state);
Chris Mason4cb53002011-05-24 15:35:30 -04001000 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start,
1001 page_end - 1, EXTENT_DIRTY | EXTENT_DELALLOC |
1002 EXTENT_DO_ACCOUNTING, 0, 0, &cached_state,
1003 GFP_NOFS);
1004
Liu Bo1f12bd02012-03-29 09:57:44 -04001005 if (i_done != page_cnt) {
Josef Bacik9e0baf62011-07-15 15:16:44 +00001006 spin_lock(&BTRFS_I(inode)->lock);
1007 BTRFS_I(inode)->outstanding_extents++;
1008 spin_unlock(&BTRFS_I(inode)->lock);
Chris Mason4cb53002011-05-24 15:35:30 -04001009 btrfs_delalloc_release_space(inode,
Liu Bo1f12bd02012-03-29 09:57:44 -04001010 (page_cnt - i_done) << PAGE_CACHE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001011 }
1012
1013
1014 btrfs_set_extent_delalloc(inode, page_start, page_end - 1,
1015 &cached_state);
1016
1017 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
1018 page_start, page_end - 1, &cached_state,
1019 GFP_NOFS);
1020
1021 for (i = 0; i < i_done; i++) {
1022 clear_page_dirty_for_io(pages[i]);
1023 ClearPageChecked(pages[i]);
1024 set_page_extent_mapped(pages[i]);
1025 set_page_dirty(pages[i]);
1026 unlock_page(pages[i]);
1027 page_cache_release(pages[i]);
1028 }
1029 return i_done;
1030out:
1031 for (i = 0; i < i_done; i++) {
1032 unlock_page(pages[i]);
1033 page_cache_release(pages[i]);
1034 }
Liu Bo1f12bd02012-03-29 09:57:44 -04001035 btrfs_delalloc_release_space(inode, page_cnt << PAGE_CACHE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001036 return ret;
1037
1038}
1039
1040int btrfs_defrag_file(struct inode *inode, struct file *file,
1041 struct btrfs_ioctl_defrag_range_args *range,
1042 u64 newer_than, unsigned long max_to_defrag)
1043{
1044 struct btrfs_root *root = BTRFS_I(inode)->root;
1045 struct btrfs_super_block *disk_super;
1046 struct file_ra_state *ra = NULL;
1047 unsigned long last_index;
Li Zefan151a31b2011-09-02 15:56:39 +08001048 u64 isize = i_size_read(inode);
Chris Mason4cb53002011-05-24 15:35:30 -04001049 u64 features;
Chris Mason940100a2010-03-10 10:52:59 -05001050 u64 last_len = 0;
1051 u64 skip = 0;
1052 u64 defrag_end = 0;
Chris Mason4cb53002011-05-24 15:35:30 -04001053 u64 newer_off = range->start;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001054 unsigned long i;
Li Zefan008873e2011-09-02 15:57:07 +08001055 unsigned long ra_index = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001056 int ret;
Chris Mason4cb53002011-05-24 15:35:30 -04001057 int defrag_count = 0;
Li Zefan1a419d82010-10-25 15:12:50 +08001058 int compress_type = BTRFS_COMPRESS_ZLIB;
Chris Mason4cb53002011-05-24 15:35:30 -04001059 int extent_thresh = range->extent_thresh;
Li Zefan008873e2011-09-02 15:57:07 +08001060 int max_cluster = (256 * 1024) >> PAGE_CACHE_SHIFT;
1061 int cluster = max_cluster;
Chris Mason4cb53002011-05-24 15:35:30 -04001062 u64 new_align = ~((u64)128 * 1024 - 1);
1063 struct page **pages = NULL;
1064
1065 if (extent_thresh == 0)
1066 extent_thresh = 256 * 1024;
Li Zefan1a419d82010-10-25 15:12:50 +08001067
1068 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS) {
1069 if (range->compress_type > BTRFS_COMPRESS_TYPES)
1070 return -EINVAL;
1071 if (range->compress_type)
1072 compress_type = range->compress_type;
1073 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001074
Li Zefan151a31b2011-09-02 15:56:39 +08001075 if (isize == 0)
Chris Mason940100a2010-03-10 10:52:59 -05001076 return 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001077
Chris Mason4cb53002011-05-24 15:35:30 -04001078 /*
1079 * if we were not given a file, allocate a readahead
1080 * context
1081 */
1082 if (!file) {
1083 ra = kzalloc(sizeof(*ra), GFP_NOFS);
1084 if (!ra)
1085 return -ENOMEM;
1086 file_ra_state_init(ra, inode->i_mapping);
1087 } else {
1088 ra = &file->f_ra;
1089 }
1090
Li Zefan008873e2011-09-02 15:57:07 +08001091 pages = kmalloc(sizeof(struct page *) * max_cluster,
Chris Mason4cb53002011-05-24 15:35:30 -04001092 GFP_NOFS);
1093 if (!pages) {
1094 ret = -ENOMEM;
1095 goto out_ra;
1096 }
1097
1098 /* find the last page to defrag */
Chris Mason1e701a32010-03-11 09:42:04 -05001099 if (range->start + range->len > range->start) {
Li Zefan151a31b2011-09-02 15:56:39 +08001100 last_index = min_t(u64, isize - 1,
Chris Mason1e701a32010-03-11 09:42:04 -05001101 range->start + range->len - 1) >> PAGE_CACHE_SHIFT;
1102 } else {
Li Zefan151a31b2011-09-02 15:56:39 +08001103 last_index = (isize - 1) >> PAGE_CACHE_SHIFT;
Chris Mason1e701a32010-03-11 09:42:04 -05001104 }
1105
Chris Mason4cb53002011-05-24 15:35:30 -04001106 if (newer_than) {
1107 ret = find_new_extents(root, inode, newer_than,
1108 &newer_off, 64 * 1024);
1109 if (!ret) {
1110 range->start = newer_off;
1111 /*
1112 * we always align our defrag to help keep
1113 * the extents in the file evenly spaced
1114 */
1115 i = (newer_off & new_align) >> PAGE_CACHE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001116 } else
1117 goto out_ra;
1118 } else {
1119 i = range->start >> PAGE_CACHE_SHIFT;
1120 }
1121 if (!max_to_defrag)
Liu Bo7ec31b52012-01-26 15:01:12 -05001122 max_to_defrag = last_index + 1;
Chris Mason4cb53002011-05-24 15:35:30 -04001123
Li Zefan2a0f7f52011-10-10 15:43:34 -04001124 /*
1125 * make writeback starts from i, so the defrag range can be
1126 * written sequentially.
1127 */
1128 if (i < inode->i_mapping->writeback_index)
1129 inode->i_mapping->writeback_index = i;
1130
Chris Masonf7f43cc2011-10-11 11:41:40 -04001131 while (i <= last_index && defrag_count < max_to_defrag &&
1132 (i < (i_size_read(inode) + PAGE_CACHE_SIZE - 1) >>
1133 PAGE_CACHE_SHIFT)) {
Chris Mason4cb53002011-05-24 15:35:30 -04001134 /*
1135 * make sure we stop running if someone unmounts
1136 * the FS
1137 */
1138 if (!(inode->i_sb->s_flags & MS_ACTIVE))
1139 break;
1140
Liu Bo66c26892012-03-29 09:57:45 -04001141 if (!should_defrag_range(inode, (u64)i << PAGE_CACHE_SHIFT,
Li Zefan6c282eb2012-06-11 16:03:35 +08001142 extent_thresh, &last_len, &skip,
Andrew Mahonea43a2112012-06-19 21:08:32 -04001143 &defrag_end, range->flags &
1144 BTRFS_DEFRAG_RANGE_COMPRESS)) {
Chris Mason940100a2010-03-10 10:52:59 -05001145 unsigned long next;
1146 /*
1147 * the should_defrag function tells us how much to skip
1148 * bump our counter by the suggested amount
1149 */
1150 next = (skip + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
1151 i = max(i + 1, next);
1152 continue;
1153 }
Li Zefan008873e2011-09-02 15:57:07 +08001154
1155 if (!newer_than) {
1156 cluster = (PAGE_CACHE_ALIGN(defrag_end) >>
1157 PAGE_CACHE_SHIFT) - i;
1158 cluster = min(cluster, max_cluster);
1159 } else {
1160 cluster = max_cluster;
1161 }
1162
Chris Mason1e701a32010-03-11 09:42:04 -05001163 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)
Li Zefan1a419d82010-10-25 15:12:50 +08001164 BTRFS_I(inode)->force_compress = compress_type;
Chris Mason940100a2010-03-10 10:52:59 -05001165
Li Zefan008873e2011-09-02 15:57:07 +08001166 if (i + cluster > ra_index) {
1167 ra_index = max(i, ra_index);
1168 btrfs_force_ra(inode->i_mapping, ra, file, ra_index,
1169 cluster);
1170 ra_index += max_cluster;
1171 }
Chris Mason940100a2010-03-10 10:52:59 -05001172
Liu Boecb8bea2012-03-29 09:57:44 -04001173 mutex_lock(&inode->i_mutex);
Li Zefan008873e2011-09-02 15:57:07 +08001174 ret = cluster_pages_for_defrag(inode, pages, i, cluster);
Liu Boecb8bea2012-03-29 09:57:44 -04001175 if (ret < 0) {
1176 mutex_unlock(&inode->i_mutex);
Chris Mason4cb53002011-05-24 15:35:30 -04001177 goto out_ra;
Liu Boecb8bea2012-03-29 09:57:44 -04001178 }
Chris Mason940100a2010-03-10 10:52:59 -05001179
Chris Mason4cb53002011-05-24 15:35:30 -04001180 defrag_count += ret;
1181 balance_dirty_pages_ratelimited_nr(inode->i_mapping, ret);
Liu Boecb8bea2012-03-29 09:57:44 -04001182 mutex_unlock(&inode->i_mutex);
Chris Mason4cb53002011-05-24 15:35:30 -04001183
1184 if (newer_than) {
1185 if (newer_off == (u64)-1)
1186 break;
1187
Liu Boe1f041e2012-03-29 09:57:45 -04001188 if (ret > 0)
1189 i += ret;
1190
Chris Mason4cb53002011-05-24 15:35:30 -04001191 newer_off = max(newer_off + 1,
1192 (u64)i << PAGE_CACHE_SHIFT);
1193
1194 ret = find_new_extents(root, inode,
1195 newer_than, &newer_off,
1196 64 * 1024);
1197 if (!ret) {
1198 range->start = newer_off;
1199 i = (newer_off & new_align) >> PAGE_CACHE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001200 } else {
1201 break;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001202 }
Chris Mason4cb53002011-05-24 15:35:30 -04001203 } else {
Li Zefan008873e2011-09-02 15:57:07 +08001204 if (ret > 0) {
Li Zefancbcc8322011-09-02 15:56:25 +08001205 i += ret;
Li Zefan008873e2011-09-02 15:57:07 +08001206 last_len += ret << PAGE_CACHE_SHIFT;
1207 } else {
Li Zefancbcc8322011-09-02 15:56:25 +08001208 i++;
Li Zefan008873e2011-09-02 15:57:07 +08001209 last_len = 0;
1210 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001211 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001212 }
1213
Chris Mason1e701a32010-03-11 09:42:04 -05001214 if ((range->flags & BTRFS_DEFRAG_RANGE_START_IO))
1215 filemap_flush(inode->i_mapping);
1216
1217 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
1218 /* the filemap_flush will queue IO into the worker threads, but
1219 * we have to make sure the IO is actually started and that
1220 * ordered extents get created before we return
1221 */
1222 atomic_inc(&root->fs_info->async_submit_draining);
1223 while (atomic_read(&root->fs_info->nr_async_submits) ||
1224 atomic_read(&root->fs_info->async_delalloc_pages)) {
1225 wait_event(root->fs_info->async_submit_wait,
1226 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
1227 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
1228 }
1229 atomic_dec(&root->fs_info->async_submit_draining);
1230
1231 mutex_lock(&inode->i_mutex);
Li Zefan261507a02010-12-17 14:21:50 +08001232 BTRFS_I(inode)->force_compress = BTRFS_COMPRESS_NONE;
Chris Mason1e701a32010-03-11 09:42:04 -05001233 mutex_unlock(&inode->i_mutex);
1234 }
1235
David Sterba6c417612011-04-13 15:41:04 +02001236 disk_super = root->fs_info->super_copy;
Li Zefan1a419d82010-10-25 15:12:50 +08001237 features = btrfs_super_incompat_flags(disk_super);
1238 if (range->compress_type == BTRFS_COMPRESS_LZO) {
1239 features |= BTRFS_FEATURE_INCOMPAT_COMPRESS_LZO;
1240 btrfs_set_super_incompat_flags(disk_super, features);
1241 }
1242
Diego Calleja60ccf822011-09-01 16:33:57 +02001243 ret = defrag_count;
Chris Mason940100a2010-03-10 10:52:59 -05001244
Chris Mason4cb53002011-05-24 15:35:30 -04001245out_ra:
1246 if (!file)
1247 kfree(ra);
1248 kfree(pages);
Chris Mason940100a2010-03-10 10:52:59 -05001249 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001250}
1251
Yan, Zheng76dda932009-09-21 16:00:26 -04001252static noinline int btrfs_ioctl_resize(struct btrfs_root *root,
1253 void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001254{
1255 u64 new_size;
1256 u64 old_size;
1257 u64 devid = 1;
1258 struct btrfs_ioctl_vol_args *vol_args;
1259 struct btrfs_trans_handle *trans;
1260 struct btrfs_device *device = NULL;
1261 char *sizestr;
1262 char *devstr = NULL;
1263 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001264 int mod = 0;
1265
Yan Zhengc146afa2008-11-12 14:34:12 -05001266 if (root->fs_info->sb->s_flags & MS_RDONLY)
1267 return -EROFS;
1268
Chris Masone441d542009-01-05 16:57:23 -05001269 if (!capable(CAP_SYS_ADMIN))
1270 return -EPERM;
1271
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001272 mutex_lock(&root->fs_info->volume_mutex);
1273 if (root->fs_info->balance_ctl) {
1274 printk(KERN_INFO "btrfs: balance in progress\n");
1275 ret = -EINVAL;
1276 goto out;
1277 }
1278
Li Zefandae7b662009-04-08 15:06:54 +08001279 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001280 if (IS_ERR(vol_args)) {
1281 ret = PTR_ERR(vol_args);
1282 goto out;
1283 }
Mark Fasheh5516e592008-07-24 12:20:14 -04001284
1285 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001286
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001287 sizestr = vol_args->name;
1288 devstr = strchr(sizestr, ':');
1289 if (devstr) {
1290 char *end;
1291 sizestr = devstr + 1;
1292 *devstr = '\0';
1293 devstr = vol_args->name;
1294 devid = simple_strtoull(devstr, &end, 10);
Arnd Hannemann5bb14682011-11-20 07:33:38 -05001295 printk(KERN_INFO "btrfs: resizing devid %llu\n",
Joel Becker21380932009-04-21 12:38:29 -07001296 (unsigned long long)devid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001297 }
Yan Zheng2b820322008-11-17 21:11:30 -05001298 device = btrfs_find_device(root, devid, NULL, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001299 if (!device) {
Arnd Hannemann5bb14682011-11-20 07:33:38 -05001300 printk(KERN_INFO "btrfs: resizer unable to find device %llu\n",
Joel Becker21380932009-04-21 12:38:29 -07001301 (unsigned long long)devid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001302 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001303 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001304 }
Liu Bo4e42ae12012-06-14 02:23:19 -06001305 if (device->fs_devices && device->fs_devices->seeding) {
1306 printk(KERN_INFO "btrfs: resizer unable to apply on "
Chris Masona8c4a332012-06-15 20:07:17 -04001307 "seeding device %llu\n",
1308 (unsigned long long)devid);
Liu Bo4e42ae12012-06-14 02:23:19 -06001309 ret = -EINVAL;
1310 goto out_free;
1311 }
1312
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001313 if (!strcmp(sizestr, "max"))
1314 new_size = device->bdev->bd_inode->i_size;
1315 else {
1316 if (sizestr[0] == '-') {
1317 mod = -1;
1318 sizestr++;
1319 } else if (sizestr[0] == '+') {
1320 mod = 1;
1321 sizestr++;
1322 }
Akinobu Mita91748462010-02-28 10:59:11 +00001323 new_size = memparse(sizestr, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001324 if (new_size == 0) {
1325 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001326 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001327 }
1328 }
1329
1330 old_size = device->total_bytes;
1331
1332 if (mod < 0) {
1333 if (new_size > old_size) {
1334 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001335 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001336 }
1337 new_size = old_size - new_size;
1338 } else if (mod > 0) {
1339 new_size = old_size + new_size;
1340 }
1341
1342 if (new_size < 256 * 1024 * 1024) {
1343 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001344 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001345 }
1346 if (new_size > device->bdev->bd_inode->i_size) {
1347 ret = -EFBIG;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001348 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001349 }
1350
1351 do_div(new_size, root->sectorsize);
1352 new_size *= root->sectorsize;
1353
Josef Bacik606686e2012-06-04 14:03:51 -04001354 printk_in_rcu(KERN_INFO "btrfs: new size for %s is %llu\n",
1355 rcu_str_deref(device->name),
1356 (unsigned long long)new_size);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001357
1358 if (new_size > old_size) {
Yan, Zhenga22285a2010-05-16 10:48:46 -04001359 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001360 if (IS_ERR(trans)) {
1361 ret = PTR_ERR(trans);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001362 goto out_free;
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001363 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001364 ret = btrfs_grow_device(trans, device, new_size);
1365 btrfs_commit_transaction(trans, root);
Mike Fleetwoodece7d202011-11-18 18:55:01 +00001366 } else if (new_size < old_size) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001367 ret = btrfs_shrink_device(device, new_size);
1368 }
1369
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001370out_free:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001371 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001372out:
1373 mutex_unlock(&root->fs_info->volume_mutex);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001374 return ret;
1375}
1376
Sage Weil72fd0322010-10-29 15:41:32 -04001377static noinline int btrfs_ioctl_snap_create_transid(struct file *file,
1378 char *name,
1379 unsigned long fd,
1380 int subvol,
Li Zefanb83cc962010-12-20 16:04:08 +08001381 u64 *transid,
1382 bool readonly)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001383{
Chris Mason3de45862008-11-17 21:02:50 -05001384 struct file *src_file;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001385 int namelen;
Chris Mason3de45862008-11-17 21:02:50 -05001386 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001387
Liu Boa874a632012-06-29 03:58:46 -06001388 ret = mnt_want_write_file(file);
1389 if (ret)
1390 goto out;
1391
Sage Weil72fd0322010-10-29 15:41:32 -04001392 namelen = strlen(name);
1393 if (strchr(name, '/')) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001394 ret = -EINVAL;
Liu Boa874a632012-06-29 03:58:46 -06001395 goto out_drop_write;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001396 }
1397
Chris Mason16780ca2012-02-20 22:14:55 -05001398 if (name[0] == '.' &&
1399 (namelen == 1 || (name[1] == '.' && namelen == 2))) {
1400 ret = -EEXIST;
Liu Boa874a632012-06-29 03:58:46 -06001401 goto out_drop_write;
Chris Mason16780ca2012-02-20 22:14:55 -05001402 }
1403
Chris Mason3de45862008-11-17 21:02:50 -05001404 if (subvol) {
Sage Weil72fd0322010-10-29 15:41:32 -04001405 ret = btrfs_mksubvol(&file->f_path, name, namelen,
Li Zefanb83cc962010-12-20 16:04:08 +08001406 NULL, transid, readonly);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001407 } else {
Chris Mason3de45862008-11-17 21:02:50 -05001408 struct inode *src_inode;
Sage Weil72fd0322010-10-29 15:41:32 -04001409 src_file = fget(fd);
Chris Mason3de45862008-11-17 21:02:50 -05001410 if (!src_file) {
1411 ret = -EINVAL;
Liu Boa874a632012-06-29 03:58:46 -06001412 goto out_drop_write;
Chris Mason3de45862008-11-17 21:02:50 -05001413 }
1414
1415 src_inode = src_file->f_path.dentry->d_inode;
1416 if (src_inode->i_sb != file->f_path.dentry->d_inode->i_sb) {
Chris Masond3977122009-01-05 21:25:51 -05001417 printk(KERN_INFO "btrfs: Snapshot src from "
1418 "another FS\n");
Chris Mason3de45862008-11-17 21:02:50 -05001419 ret = -EINVAL;
1420 fput(src_file);
Liu Boa874a632012-06-29 03:58:46 -06001421 goto out_drop_write;
Chris Mason3de45862008-11-17 21:02:50 -05001422 }
Sage Weil72fd0322010-10-29 15:41:32 -04001423 ret = btrfs_mksubvol(&file->f_path, name, namelen,
1424 BTRFS_I(src_inode)->root,
Li Zefanb83cc962010-12-20 16:04:08 +08001425 transid, readonly);
Chris Mason3de45862008-11-17 21:02:50 -05001426 fput(src_file);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001427 }
Liu Boa874a632012-06-29 03:58:46 -06001428out_drop_write:
1429 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001430out:
Sage Weil72fd0322010-10-29 15:41:32 -04001431 return ret;
1432}
1433
1434static noinline int btrfs_ioctl_snap_create(struct file *file,
Li Zefanfa0d2b92010-12-20 15:53:28 +08001435 void __user *arg, int subvol)
Sage Weil72fd0322010-10-29 15:41:32 -04001436{
Li Zefanfa0d2b92010-12-20 15:53:28 +08001437 struct btrfs_ioctl_vol_args *vol_args;
Sage Weil72fd0322010-10-29 15:41:32 -04001438 int ret;
1439
Li Zefanfa0d2b92010-12-20 15:53:28 +08001440 vol_args = memdup_user(arg, sizeof(*vol_args));
1441 if (IS_ERR(vol_args))
1442 return PTR_ERR(vol_args);
1443 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Sage Weil72fd0322010-10-29 15:41:32 -04001444
Li Zefanfa0d2b92010-12-20 15:53:28 +08001445 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
Li Zefanb83cc962010-12-20 16:04:08 +08001446 vol_args->fd, subvol,
1447 NULL, false);
Li Zefanfdfb1e42010-12-10 06:41:56 +00001448
Li Zefanfa0d2b92010-12-20 15:53:28 +08001449 kfree(vol_args);
1450 return ret;
1451}
Li Zefanfdfb1e42010-12-10 06:41:56 +00001452
Li Zefanfa0d2b92010-12-20 15:53:28 +08001453static noinline int btrfs_ioctl_snap_create_v2(struct file *file,
1454 void __user *arg, int subvol)
1455{
1456 struct btrfs_ioctl_vol_args_v2 *vol_args;
1457 int ret;
1458 u64 transid = 0;
1459 u64 *ptr = NULL;
Li Zefanb83cc962010-12-20 16:04:08 +08001460 bool readonly = false;
Li Zefanfdfb1e42010-12-10 06:41:56 +00001461
Li Zefanfa0d2b92010-12-20 15:53:28 +08001462 vol_args = memdup_user(arg, sizeof(*vol_args));
1463 if (IS_ERR(vol_args))
1464 return PTR_ERR(vol_args);
1465 vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
Sage Weil75eaa0e2010-12-10 00:36:28 +00001466
Li Zefanb83cc962010-12-20 16:04:08 +08001467 if (vol_args->flags &
1468 ~(BTRFS_SUBVOL_CREATE_ASYNC | BTRFS_SUBVOL_RDONLY)) {
1469 ret = -EOPNOTSUPP;
Li Zefanfa0d2b92010-12-20 15:53:28 +08001470 goto out;
Sage Weil72fd0322010-10-29 15:41:32 -04001471 }
Li Zefanfa0d2b92010-12-20 15:53:28 +08001472
1473 if (vol_args->flags & BTRFS_SUBVOL_CREATE_ASYNC)
1474 ptr = &transid;
Li Zefanb83cc962010-12-20 16:04:08 +08001475 if (vol_args->flags & BTRFS_SUBVOL_RDONLY)
1476 readonly = true;
Li Zefanfa0d2b92010-12-20 15:53:28 +08001477
1478 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
Li Zefanb83cc962010-12-20 16:04:08 +08001479 vol_args->fd, subvol,
1480 ptr, readonly);
Li Zefanfa0d2b92010-12-20 15:53:28 +08001481
1482 if (ret == 0 && ptr &&
1483 copy_to_user(arg +
1484 offsetof(struct btrfs_ioctl_vol_args_v2,
1485 transid), ptr, sizeof(*ptr)))
1486 ret = -EFAULT;
Li Zefanfdfb1e42010-12-10 06:41:56 +00001487out:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001488 kfree(vol_args);
1489 return ret;
1490}
1491
Li Zefan0caa1022010-12-20 16:30:25 +08001492static noinline int btrfs_ioctl_subvol_getflags(struct file *file,
1493 void __user *arg)
1494{
1495 struct inode *inode = fdentry(file)->d_inode;
1496 struct btrfs_root *root = BTRFS_I(inode)->root;
1497 int ret = 0;
1498 u64 flags = 0;
1499
Li Zefan33345d012011-04-20 10:31:50 +08001500 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID)
Li Zefan0caa1022010-12-20 16:30:25 +08001501 return -EINVAL;
1502
1503 down_read(&root->fs_info->subvol_sem);
1504 if (btrfs_root_readonly(root))
1505 flags |= BTRFS_SUBVOL_RDONLY;
1506 up_read(&root->fs_info->subvol_sem);
1507
1508 if (copy_to_user(arg, &flags, sizeof(flags)))
1509 ret = -EFAULT;
1510
1511 return ret;
1512}
1513
1514static noinline int btrfs_ioctl_subvol_setflags(struct file *file,
1515 void __user *arg)
1516{
1517 struct inode *inode = fdentry(file)->d_inode;
1518 struct btrfs_root *root = BTRFS_I(inode)->root;
1519 struct btrfs_trans_handle *trans;
1520 u64 root_flags;
1521 u64 flags;
1522 int ret = 0;
1523
Liu Bob9ca0662012-06-29 03:58:49 -06001524 ret = mnt_want_write_file(file);
1525 if (ret)
1526 goto out;
Li Zefan0caa1022010-12-20 16:30:25 +08001527
Liu Bob9ca0662012-06-29 03:58:49 -06001528 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
1529 ret = -EINVAL;
1530 goto out_drop_write;
1531 }
Li Zefan0caa1022010-12-20 16:30:25 +08001532
Liu Bob9ca0662012-06-29 03:58:49 -06001533 if (copy_from_user(&flags, arg, sizeof(flags))) {
1534 ret = -EFAULT;
1535 goto out_drop_write;
1536 }
Li Zefan0caa1022010-12-20 16:30:25 +08001537
Liu Bob9ca0662012-06-29 03:58:49 -06001538 if (flags & BTRFS_SUBVOL_CREATE_ASYNC) {
1539 ret = -EINVAL;
1540 goto out_drop_write;
1541 }
Li Zefan0caa1022010-12-20 16:30:25 +08001542
Liu Bob9ca0662012-06-29 03:58:49 -06001543 if (flags & ~BTRFS_SUBVOL_RDONLY) {
1544 ret = -EOPNOTSUPP;
1545 goto out_drop_write;
1546 }
Li Zefan0caa1022010-12-20 16:30:25 +08001547
Liu Bob9ca0662012-06-29 03:58:49 -06001548 if (!inode_owner_or_capable(inode)) {
1549 ret = -EACCES;
1550 goto out_drop_write;
1551 }
Li Zefanb4dc2b82011-02-16 06:06:34 +00001552
Li Zefan0caa1022010-12-20 16:30:25 +08001553 down_write(&root->fs_info->subvol_sem);
1554
1555 /* nothing to do */
1556 if (!!(flags & BTRFS_SUBVOL_RDONLY) == btrfs_root_readonly(root))
Liu Bob9ca0662012-06-29 03:58:49 -06001557 goto out_drop_sem;
Li Zefan0caa1022010-12-20 16:30:25 +08001558
1559 root_flags = btrfs_root_flags(&root->root_item);
1560 if (flags & BTRFS_SUBVOL_RDONLY)
1561 btrfs_set_root_flags(&root->root_item,
1562 root_flags | BTRFS_ROOT_SUBVOL_RDONLY);
1563 else
1564 btrfs_set_root_flags(&root->root_item,
1565 root_flags & ~BTRFS_ROOT_SUBVOL_RDONLY);
1566
1567 trans = btrfs_start_transaction(root, 1);
1568 if (IS_ERR(trans)) {
1569 ret = PTR_ERR(trans);
1570 goto out_reset;
1571 }
1572
Li Zefanb4dc2b82011-02-16 06:06:34 +00001573 ret = btrfs_update_root(trans, root->fs_info->tree_root,
Li Zefan0caa1022010-12-20 16:30:25 +08001574 &root->root_key, &root->root_item);
1575
1576 btrfs_commit_transaction(trans, root);
1577out_reset:
1578 if (ret)
1579 btrfs_set_root_flags(&root->root_item, root_flags);
Liu Bob9ca0662012-06-29 03:58:49 -06001580out_drop_sem:
Li Zefan0caa1022010-12-20 16:30:25 +08001581 up_write(&root->fs_info->subvol_sem);
Liu Bob9ca0662012-06-29 03:58:49 -06001582out_drop_write:
1583 mnt_drop_write_file(file);
1584out:
Li Zefan0caa1022010-12-20 16:30:25 +08001585 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 Lawall2354d082010-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 Lawall2354d082010-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
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002355 src = src_file->f_dentry->d_inode;
2356
Sage Weilc5c9cd42008-11-12 14:32:25 -05002357 ret = -EINVAL;
2358 if (src == inode)
2359 goto out_fput;
2360
Dan Rosenberg5dc64162010-05-15 11:27:37 -04002361 /* the src must be open for reading */
2362 if (!(src_file->f_mode & FMODE_READ))
2363 goto out_fput;
2364
Li Zefan0e7b8242011-09-18 10:20:46 -04002365 /* don't make the dst file partly checksummed */
2366 if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
2367 (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM))
2368 goto out_fput;
2369
Yan Zhengae01a0a2008-08-04 23:23:47 -04002370 ret = -EISDIR;
2371 if (S_ISDIR(src->i_mode) || S_ISDIR(inode->i_mode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002372 goto out_fput;
2373
Yan Zhengae01a0a2008-08-04 23:23:47 -04002374 ret = -EXDEV;
2375 if (src->i_sb != inode->i_sb || BTRFS_I(src)->root != root)
2376 goto out_fput;
2377
2378 ret = -ENOMEM;
2379 buf = vmalloc(btrfs_level_size(root, 0));
2380 if (!buf)
2381 goto out_fput;
2382
2383 path = btrfs_alloc_path();
2384 if (!path) {
2385 vfree(buf);
2386 goto out_fput;
2387 }
2388 path->reada = 2;
2389
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002390 if (inode < src) {
Sage Weilfccdae42010-10-29 15:37:33 -04002391 mutex_lock_nested(&inode->i_mutex, I_MUTEX_PARENT);
2392 mutex_lock_nested(&src->i_mutex, I_MUTEX_CHILD);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002393 } else {
Sage Weilfccdae42010-10-29 15:37:33 -04002394 mutex_lock_nested(&src->i_mutex, I_MUTEX_PARENT);
2395 mutex_lock_nested(&inode->i_mutex, I_MUTEX_CHILD);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002396 }
2397
Sage Weilc5c9cd42008-11-12 14:32:25 -05002398 /* determine range to clone */
2399 ret = -EINVAL;
Dan Rosenberg2ebc3462010-07-19 16:58:20 -04002400 if (off + len > src->i_size || off + len < off)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002401 goto out_unlock;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002402 if (len == 0)
2403 olen = len = src->i_size - off;
2404 /* if we extend to eof, continue to block boundary */
2405 if (off + len == src->i_size)
Li Zefan2a6b8da2010-11-19 01:36:10 +00002406 len = ALIGN(src->i_size, bs) - off;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002407
2408 /* verify the end result is block aligned */
Li Zefan2a6b8da2010-11-19 01:36:10 +00002409 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs) ||
2410 !IS_ALIGNED(destoff, bs))
Sage Weilc5c9cd42008-11-12 14:32:25 -05002411 goto out_unlock;
2412
Li Zefand525e8a2011-09-11 10:52:25 -04002413 if (destoff > inode->i_size) {
2414 ret = btrfs_cont_expand(inode, inode->i_size, destoff);
2415 if (ret)
2416 goto out_unlock;
2417 }
2418
Li Zefan71ef0782011-09-18 10:20:46 -04002419 /* truncate page cache pages from target inode range */
2420 truncate_inode_pages_range(&inode->i_data, destoff,
2421 PAGE_CACHE_ALIGN(destoff + len) - 1);
2422
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002423 /* do any pending delalloc/csum calc on src, one way or
2424 another, and lock file content */
2425 while (1) {
Zheng Yan31840ae2008-09-23 13:14:14 -04002426 struct btrfs_ordered_extent *ordered;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01002427 lock_extent(&BTRFS_I(src)->io_tree, off, off+len);
Sage Weil9a019192010-10-29 15:37:33 -04002428 ordered = btrfs_lookup_first_ordered_extent(src, off+len);
2429 if (!ordered &&
2430 !test_range_bit(&BTRFS_I(src)->io_tree, off, off+len,
2431 EXTENT_DELALLOC, 0, NULL))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002432 break;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01002433 unlock_extent(&BTRFS_I(src)->io_tree, off, off+len);
Yan Zhengae01a0a2008-08-04 23:23:47 -04002434 if (ordered)
2435 btrfs_put_ordered_extent(ordered);
Sage Weil9a019192010-10-29 15:37:33 -04002436 btrfs_wait_ordered_range(src, off, len);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002437 }
2438
Sage Weilc5c9cd42008-11-12 14:32:25 -05002439 /* clone data */
Li Zefan33345d012011-04-20 10:31:50 +08002440 key.objectid = btrfs_ino(src);
Yan Zhengae01a0a2008-08-04 23:23:47 -04002441 key.type = BTRFS_EXTENT_DATA_KEY;
2442 key.offset = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002443
2444 while (1) {
2445 /*
2446 * note the key will change type as we walk through the
2447 * tree.
2448 */
Yan, Zhenga22285a2010-05-16 10:48:46 -04002449 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002450 if (ret < 0)
2451 goto out;
2452
Yan Zhengae01a0a2008-08-04 23:23:47 -04002453 nritems = btrfs_header_nritems(path->nodes[0]);
2454 if (path->slots[0] >= nritems) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002455 ret = btrfs_next_leaf(root, path);
2456 if (ret < 0)
2457 goto out;
2458 if (ret > 0)
2459 break;
Yan Zhengae01a0a2008-08-04 23:23:47 -04002460 nritems = btrfs_header_nritems(path->nodes[0]);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002461 }
2462 leaf = path->nodes[0];
2463 slot = path->slots[0];
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002464
Yan Zhengae01a0a2008-08-04 23:23:47 -04002465 btrfs_item_key_to_cpu(leaf, &key, slot);
Chris Masond20f7042008-12-08 16:58:54 -05002466 if (btrfs_key_type(&key) > BTRFS_EXTENT_DATA_KEY ||
Li Zefan33345d012011-04-20 10:31:50 +08002467 key.objectid != btrfs_ino(src))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002468 break;
2469
Sage Weilc5c9cd42008-11-12 14:32:25 -05002470 if (btrfs_key_type(&key) == BTRFS_EXTENT_DATA_KEY) {
2471 struct btrfs_file_extent_item *extent;
2472 int type;
Zheng Yan31840ae2008-09-23 13:14:14 -04002473 u32 size;
2474 struct btrfs_key new_key;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002475 u64 disko = 0, diskl = 0;
2476 u64 datao = 0, datal = 0;
2477 u8 comp;
Sage Weilb5384d42010-06-12 22:31:14 +00002478 u64 endoff;
Zheng Yan31840ae2008-09-23 13:14:14 -04002479
2480 size = btrfs_item_size_nr(leaf, slot);
2481 read_extent_buffer(leaf, buf,
2482 btrfs_item_ptr_offset(leaf, slot),
2483 size);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002484
2485 extent = btrfs_item_ptr(leaf, slot,
2486 struct btrfs_file_extent_item);
2487 comp = btrfs_file_extent_compression(leaf, extent);
2488 type = btrfs_file_extent_type(leaf, extent);
Chris Masonc8a894d2009-06-27 21:07:03 -04002489 if (type == BTRFS_FILE_EXTENT_REG ||
2490 type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masond3977122009-01-05 21:25:51 -05002491 disko = btrfs_file_extent_disk_bytenr(leaf,
2492 extent);
2493 diskl = btrfs_file_extent_disk_num_bytes(leaf,
2494 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002495 datao = btrfs_file_extent_offset(leaf, extent);
Chris Masond3977122009-01-05 21:25:51 -05002496 datal = btrfs_file_extent_num_bytes(leaf,
2497 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002498 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
2499 /* take upper bound, may be compressed */
2500 datal = btrfs_file_extent_ram_bytes(leaf,
2501 extent);
2502 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002503 btrfs_release_path(path);
Zheng Yan31840ae2008-09-23 13:14:14 -04002504
Sage Weil050006a2010-10-29 15:37:33 -04002505 if (key.offset + datal <= off ||
Sage Weilc5c9cd42008-11-12 14:32:25 -05002506 key.offset >= off+len)
2507 goto next;
2508
Zheng Yan31840ae2008-09-23 13:14:14 -04002509 memcpy(&new_key, &key, sizeof(new_key));
Li Zefan33345d012011-04-20 10:31:50 +08002510 new_key.objectid = btrfs_ino(inode);
Li Zefan4d728ec2011-01-26 14:10:43 +08002511 if (off <= key.offset)
2512 new_key.offset = key.offset + destoff - off;
2513 else
2514 new_key.offset = destoff;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002515
Sage Weilb6f34092011-09-20 14:48:51 -04002516 /*
2517 * 1 - adjusting old extent (we may have to split it)
2518 * 1 - add new extent
2519 * 1 - inode update
2520 */
2521 trans = btrfs_start_transaction(root, 3);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002522 if (IS_ERR(trans)) {
2523 ret = PTR_ERR(trans);
2524 goto out;
2525 }
2526
Chris Masonc8a894d2009-06-27 21:07:03 -04002527 if (type == BTRFS_FILE_EXTENT_REG ||
2528 type == BTRFS_FILE_EXTENT_PREALLOC) {
Li Zefand72c0842011-09-11 10:52:25 -04002529 /*
2530 * a | --- range to clone ---| b
2531 * | ------------- extent ------------- |
2532 */
2533
2534 /* substract range b */
2535 if (key.offset + datal > off + len)
2536 datal = off + len - key.offset;
2537
2538 /* substract range a */
Yan, Zhenga22285a2010-05-16 10:48:46 -04002539 if (off > key.offset) {
2540 datao += off - key.offset;
2541 datal -= off - key.offset;
2542 }
2543
Yan, Zhenga22285a2010-05-16 10:48:46 -04002544 ret = btrfs_drop_extents(trans, inode,
2545 new_key.offset,
2546 new_key.offset + datal,
2547 &hint_byte, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002548 if (ret) {
2549 btrfs_abort_transaction(trans, root,
2550 ret);
2551 btrfs_end_transaction(trans, root);
2552 goto out;
2553 }
Yan, Zhenga22285a2010-05-16 10:48:46 -04002554
Sage Weilc5c9cd42008-11-12 14:32:25 -05002555 ret = btrfs_insert_empty_item(trans, root, path,
2556 &new_key, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002557 if (ret) {
2558 btrfs_abort_transaction(trans, root,
2559 ret);
2560 btrfs_end_transaction(trans, root);
2561 goto out;
2562 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05002563
2564 leaf = path->nodes[0];
2565 slot = path->slots[0];
2566 write_extent_buffer(leaf, buf,
2567 btrfs_item_ptr_offset(leaf, slot),
2568 size);
2569
2570 extent = btrfs_item_ptr(leaf, slot,
2571 struct btrfs_file_extent_item);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002572
Sage Weilc5c9cd42008-11-12 14:32:25 -05002573 /* disko == 0 means it's a hole */
2574 if (!disko)
2575 datao = 0;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002576
2577 btrfs_set_file_extent_offset(leaf, extent,
2578 datao);
2579 btrfs_set_file_extent_num_bytes(leaf, extent,
2580 datal);
2581 if (disko) {
2582 inode_add_bytes(inode, datal);
2583 ret = btrfs_inc_extent_ref(trans, root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002584 disko, diskl, 0,
2585 root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08002586 btrfs_ino(inode),
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002587 new_key.offset - datao,
2588 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002589 if (ret) {
2590 btrfs_abort_transaction(trans,
2591 root,
2592 ret);
2593 btrfs_end_transaction(trans,
2594 root);
2595 goto out;
2596
2597 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05002598 }
2599 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
2600 u64 skip = 0;
2601 u64 trim = 0;
2602 if (off > key.offset) {
2603 skip = off - key.offset;
2604 new_key.offset += skip;
2605 }
Chris Masond3977122009-01-05 21:25:51 -05002606
Sage Weilc5c9cd42008-11-12 14:32:25 -05002607 if (key.offset + datal > off+len)
2608 trim = key.offset + datal - (off+len);
Chris Masond3977122009-01-05 21:25:51 -05002609
Sage Weilc5c9cd42008-11-12 14:32:25 -05002610 if (comp && (skip || trim)) {
Sage Weilc5c9cd42008-11-12 14:32:25 -05002611 ret = -EINVAL;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002612 btrfs_end_transaction(trans, root);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002613 goto out;
2614 }
2615 size -= skip + trim;
2616 datal -= skip + trim;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002617
2618 ret = btrfs_drop_extents(trans, inode,
2619 new_key.offset,
2620 new_key.offset + datal,
2621 &hint_byte, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002622 if (ret) {
2623 btrfs_abort_transaction(trans, root,
2624 ret);
2625 btrfs_end_transaction(trans, root);
2626 goto out;
2627 }
Yan, Zhenga22285a2010-05-16 10:48:46 -04002628
Sage Weilc5c9cd42008-11-12 14:32:25 -05002629 ret = btrfs_insert_empty_item(trans, root, path,
2630 &new_key, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002631 if (ret) {
2632 btrfs_abort_transaction(trans, root,
2633 ret);
2634 btrfs_end_transaction(trans, root);
2635 goto out;
2636 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05002637
2638 if (skip) {
Chris Masond3977122009-01-05 21:25:51 -05002639 u32 start =
2640 btrfs_file_extent_calc_inline_size(0);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002641 memmove(buf+start, buf+start+skip,
2642 datal);
2643 }
2644
2645 leaf = path->nodes[0];
2646 slot = path->slots[0];
2647 write_extent_buffer(leaf, buf,
2648 btrfs_item_ptr_offset(leaf, slot),
2649 size);
2650 inode_add_bytes(inode, datal);
2651 }
2652
2653 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02002654 btrfs_release_path(path);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002655
Josef Bacik0c4d2d92012-04-05 15:03:02 -04002656 inode_inc_iversion(inode);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002657 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
Sage Weilb5384d42010-06-12 22:31:14 +00002658
2659 /*
2660 * we round up to the block size at eof when
2661 * determining which extents to clone above,
2662 * but shouldn't round up the file size
2663 */
2664 endoff = new_key.offset + datal;
Li Zefan5f3888f2010-11-19 01:36:34 +00002665 if (endoff > destoff+olen)
2666 endoff = destoff+olen;
Sage Weilb5384d42010-06-12 22:31:14 +00002667 if (endoff > inode->i_size)
2668 btrfs_i_size_write(inode, endoff);
2669
Yan, Zhenga22285a2010-05-16 10:48:46 -04002670 ret = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002671 if (ret) {
2672 btrfs_abort_transaction(trans, root, ret);
2673 btrfs_end_transaction(trans, root);
2674 goto out;
2675 }
2676 ret = btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002677 }
Chris Masond3977122009-01-05 21:25:51 -05002678next:
David Sterbab3b4aa72011-04-21 01:20:15 +02002679 btrfs_release_path(path);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002680 key.offset++;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002681 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002682 ret = 0;
2683out:
David Sterbab3b4aa72011-04-21 01:20:15 +02002684 btrfs_release_path(path);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01002685 unlock_extent(&BTRFS_I(src)->io_tree, off, off+len);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002686out_unlock:
2687 mutex_unlock(&src->i_mutex);
2688 mutex_unlock(&inode->i_mutex);
Yan Zhengae01a0a2008-08-04 23:23:47 -04002689 vfree(buf);
2690 btrfs_free_path(path);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002691out_fput:
2692 fput(src_file);
Yan Zhengab67b7c2008-12-19 10:58:39 -05002693out_drop_write:
Al Viro2a79f172011-12-09 08:06:57 -05002694 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002695 return ret;
2696}
2697
Christoph Hellwig7a865e82008-12-02 09:52:24 -05002698static long btrfs_ioctl_clone_range(struct file *file, void __user *argp)
Sage Weilc5c9cd42008-11-12 14:32:25 -05002699{
2700 struct btrfs_ioctl_clone_range_args args;
2701
Christoph Hellwig7a865e82008-12-02 09:52:24 -05002702 if (copy_from_user(&args, argp, sizeof(args)))
Sage Weilc5c9cd42008-11-12 14:32:25 -05002703 return -EFAULT;
2704 return btrfs_ioctl_clone(file, args.src_fd, args.src_offset,
2705 args.src_length, args.dest_offset);
2706}
2707
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002708/*
2709 * there are many ways the trans_start and trans_end ioctls can lead
2710 * to deadlocks. They should only be used by applications that
2711 * basically own the machine, and have a very in depth understanding
2712 * of all the possible deadlocks and enospc problems.
2713 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05002714static long btrfs_ioctl_trans_start(struct file *file)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002715{
2716 struct inode *inode = fdentry(file)->d_inode;
2717 struct btrfs_root *root = BTRFS_I(inode)->root;
2718 struct btrfs_trans_handle *trans;
Sage Weil1ab86ae2009-09-29 18:38:44 -04002719 int ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002720
Sage Weil1ab86ae2009-09-29 18:38:44 -04002721 ret = -EPERM;
Christoph Hellwigdf5b5522008-06-11 21:53:58 -04002722 if (!capable(CAP_SYS_ADMIN))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002723 goto out;
Sage Weil1ab86ae2009-09-29 18:38:44 -04002724
2725 ret = -EINPROGRESS;
2726 if (file->private_data)
2727 goto out;
Sage Weil9ca9ee02008-08-04 10:41:27 -04002728
Li Zefanb83cc962010-12-20 16:04:08 +08002729 ret = -EROFS;
2730 if (btrfs_root_readonly(root))
2731 goto out;
2732
Al Viroa561be72011-11-23 11:57:51 -05002733 ret = mnt_want_write_file(file);
Yan Zhengc146afa2008-11-12 14:34:12 -05002734 if (ret)
2735 goto out;
2736
Josef Bacika4abeea2011-04-11 17:25:13 -04002737 atomic_inc(&root->fs_info->open_ioctl_trans);
Sage Weil9ca9ee02008-08-04 10:41:27 -04002738
Sage Weil1ab86ae2009-09-29 18:38:44 -04002739 ret = -ENOMEM;
Josef Bacik7a7eaa42011-04-13 12:54:33 -04002740 trans = btrfs_start_ioctl_transaction(root);
Tsutomu Itohabd30bb2011-01-24 00:57:10 +00002741 if (IS_ERR(trans))
Sage Weil1ab86ae2009-09-29 18:38:44 -04002742 goto out_drop;
2743
2744 file->private_data = trans;
2745 return 0;
2746
2747out_drop:
Josef Bacika4abeea2011-04-11 17:25:13 -04002748 atomic_dec(&root->fs_info->open_ioctl_trans);
Al Viro2a79f172011-12-09 08:06:57 -05002749 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002750out:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002751 return ret;
2752}
2753
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002754static long btrfs_ioctl_default_subvol(struct file *file, void __user *argp)
2755{
2756 struct inode *inode = fdentry(file)->d_inode;
2757 struct btrfs_root *root = BTRFS_I(inode)->root;
2758 struct btrfs_root *new_root;
2759 struct btrfs_dir_item *di;
2760 struct btrfs_trans_handle *trans;
2761 struct btrfs_path *path;
2762 struct btrfs_key location;
2763 struct btrfs_disk_key disk_key;
2764 struct btrfs_super_block *disk_super;
2765 u64 features;
2766 u64 objectid = 0;
2767 u64 dir_id;
2768
2769 if (!capable(CAP_SYS_ADMIN))
2770 return -EPERM;
2771
2772 if (copy_from_user(&objectid, argp, sizeof(objectid)))
2773 return -EFAULT;
2774
2775 if (!objectid)
2776 objectid = root->root_key.objectid;
2777
2778 location.objectid = objectid;
2779 location.type = BTRFS_ROOT_ITEM_KEY;
2780 location.offset = (u64)-1;
2781
2782 new_root = btrfs_read_fs_root_no_name(root->fs_info, &location);
2783 if (IS_ERR(new_root))
2784 return PTR_ERR(new_root);
2785
2786 if (btrfs_root_refs(&new_root->root_item) == 0)
2787 return -ENOENT;
2788
2789 path = btrfs_alloc_path();
2790 if (!path)
2791 return -ENOMEM;
2792 path->leave_spinning = 1;
2793
2794 trans = btrfs_start_transaction(root, 1);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002795 if (IS_ERR(trans)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002796 btrfs_free_path(path);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002797 return PTR_ERR(trans);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002798 }
2799
David Sterba6c417612011-04-13 15:41:04 +02002800 dir_id = btrfs_super_root_dir(root->fs_info->super_copy);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002801 di = btrfs_lookup_dir_item(trans, root->fs_info->tree_root, path,
2802 dir_id, "default", 7, 1);
Dan Carpentercf1e99a2010-05-29 09:47:24 +00002803 if (IS_ERR_OR_NULL(di)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002804 btrfs_free_path(path);
2805 btrfs_end_transaction(trans, root);
2806 printk(KERN_ERR "Umm, you don't have the default dir item, "
2807 "this isn't going to work\n");
2808 return -ENOENT;
2809 }
2810
2811 btrfs_cpu_key_to_disk(&disk_key, &new_root->root_key);
2812 btrfs_set_dir_item_key(path->nodes[0], di, &disk_key);
2813 btrfs_mark_buffer_dirty(path->nodes[0]);
2814 btrfs_free_path(path);
2815
David Sterba6c417612011-04-13 15:41:04 +02002816 disk_super = root->fs_info->super_copy;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002817 features = btrfs_super_incompat_flags(disk_super);
2818 if (!(features & BTRFS_FEATURE_INCOMPAT_DEFAULT_SUBVOL)) {
2819 features |= BTRFS_FEATURE_INCOMPAT_DEFAULT_SUBVOL;
2820 btrfs_set_super_incompat_flags(disk_super, features);
2821 }
2822 btrfs_end_transaction(trans, root);
2823
2824 return 0;
2825}
2826
Josef Bacikbf5fc0932010-09-29 11:22:36 -04002827static void get_block_group_info(struct list_head *groups_list,
2828 struct btrfs_ioctl_space_info *space)
2829{
2830 struct btrfs_block_group_cache *block_group;
2831
2832 space->total_bytes = 0;
2833 space->used_bytes = 0;
2834 space->flags = 0;
2835 list_for_each_entry(block_group, groups_list, list) {
2836 space->flags = block_group->flags;
2837 space->total_bytes += block_group->key.offset;
2838 space->used_bytes +=
2839 btrfs_block_group_used(&block_group->item);
2840 }
2841}
2842
Josef Bacik1406e432010-01-13 18:19:06 +00002843long btrfs_ioctl_space_info(struct btrfs_root *root, void __user *arg)
2844{
2845 struct btrfs_ioctl_space_args space_args;
2846 struct btrfs_ioctl_space_info space;
2847 struct btrfs_ioctl_space_info *dest;
Chris Mason7fde62b2010-03-16 15:40:10 -04002848 struct btrfs_ioctl_space_info *dest_orig;
Daniel J Blueman13f26962011-04-11 15:56:31 +00002849 struct btrfs_ioctl_space_info __user *user_dest;
Josef Bacik1406e432010-01-13 18:19:06 +00002850 struct btrfs_space_info *info;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04002851 u64 types[] = {BTRFS_BLOCK_GROUP_DATA,
2852 BTRFS_BLOCK_GROUP_SYSTEM,
2853 BTRFS_BLOCK_GROUP_METADATA,
2854 BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA};
2855 int num_types = 4;
Chris Mason7fde62b2010-03-16 15:40:10 -04002856 int alloc_size;
Josef Bacik1406e432010-01-13 18:19:06 +00002857 int ret = 0;
Dan Rosenberg51788b12011-02-14 16:04:23 -05002858 u64 slot_count = 0;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04002859 int i, c;
Josef Bacik1406e432010-01-13 18:19:06 +00002860
2861 if (copy_from_user(&space_args,
2862 (struct btrfs_ioctl_space_args __user *)arg,
2863 sizeof(space_args)))
2864 return -EFAULT;
2865
Josef Bacikbf5fc0932010-09-29 11:22:36 -04002866 for (i = 0; i < num_types; i++) {
2867 struct btrfs_space_info *tmp;
2868
2869 info = NULL;
2870 rcu_read_lock();
2871 list_for_each_entry_rcu(tmp, &root->fs_info->space_info,
2872 list) {
2873 if (tmp->flags == types[i]) {
2874 info = tmp;
2875 break;
2876 }
2877 }
2878 rcu_read_unlock();
2879
2880 if (!info)
2881 continue;
2882
2883 down_read(&info->groups_sem);
2884 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
2885 if (!list_empty(&info->block_groups[c]))
2886 slot_count++;
2887 }
2888 up_read(&info->groups_sem);
2889 }
Josef Bacik1406e432010-01-13 18:19:06 +00002890
Chris Mason7fde62b2010-03-16 15:40:10 -04002891 /* space_slots == 0 means they are asking for a count */
2892 if (space_args.space_slots == 0) {
2893 space_args.total_spaces = slot_count;
2894 goto out;
2895 }
Josef Bacikbf5fc0932010-09-29 11:22:36 -04002896
Dan Rosenberg51788b12011-02-14 16:04:23 -05002897 slot_count = min_t(u64, space_args.space_slots, slot_count);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04002898
Chris Mason7fde62b2010-03-16 15:40:10 -04002899 alloc_size = sizeof(*dest) * slot_count;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04002900
Chris Mason7fde62b2010-03-16 15:40:10 -04002901 /* we generally have at most 6 or so space infos, one for each raid
2902 * level. So, a whole page should be more than enough for everyone
2903 */
2904 if (alloc_size > PAGE_CACHE_SIZE)
2905 return -ENOMEM;
2906
2907 space_args.total_spaces = 0;
2908 dest = kmalloc(alloc_size, GFP_NOFS);
2909 if (!dest)
2910 return -ENOMEM;
2911 dest_orig = dest;
2912
2913 /* now we have a buffer to copy into */
Josef Bacikbf5fc0932010-09-29 11:22:36 -04002914 for (i = 0; i < num_types; i++) {
2915 struct btrfs_space_info *tmp;
Chris Mason7fde62b2010-03-16 15:40:10 -04002916
Dan Rosenberg51788b12011-02-14 16:04:23 -05002917 if (!slot_count)
2918 break;
2919
Josef Bacikbf5fc0932010-09-29 11:22:36 -04002920 info = NULL;
2921 rcu_read_lock();
2922 list_for_each_entry_rcu(tmp, &root->fs_info->space_info,
2923 list) {
2924 if (tmp->flags == types[i]) {
2925 info = tmp;
2926 break;
2927 }
2928 }
2929 rcu_read_unlock();
Chris Mason7fde62b2010-03-16 15:40:10 -04002930
Josef Bacikbf5fc0932010-09-29 11:22:36 -04002931 if (!info)
2932 continue;
2933 down_read(&info->groups_sem);
2934 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
2935 if (!list_empty(&info->block_groups[c])) {
2936 get_block_group_info(&info->block_groups[c],
2937 &space);
2938 memcpy(dest, &space, sizeof(space));
2939 dest++;
2940 space_args.total_spaces++;
Dan Rosenberg51788b12011-02-14 16:04:23 -05002941 slot_count--;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04002942 }
Dan Rosenberg51788b12011-02-14 16:04:23 -05002943 if (!slot_count)
2944 break;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04002945 }
2946 up_read(&info->groups_sem);
Josef Bacik1406e432010-01-13 18:19:06 +00002947 }
Josef Bacik1406e432010-01-13 18:19:06 +00002948
Daniel J Blueman2eec6c82012-04-26 00:37:14 +08002949 user_dest = (struct btrfs_ioctl_space_info __user *)
Chris Mason7fde62b2010-03-16 15:40:10 -04002950 (arg + sizeof(struct btrfs_ioctl_space_args));
2951
2952 if (copy_to_user(user_dest, dest_orig, alloc_size))
2953 ret = -EFAULT;
2954
2955 kfree(dest_orig);
2956out:
2957 if (ret == 0 && copy_to_user(arg, &space_args, sizeof(space_args)))
Josef Bacik1406e432010-01-13 18:19:06 +00002958 ret = -EFAULT;
2959
2960 return ret;
2961}
2962
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002963/*
2964 * there are many ways the trans_start and trans_end ioctls can lead
2965 * to deadlocks. They should only be used by applications that
2966 * basically own the machine, and have a very in depth understanding
2967 * of all the possible deadlocks and enospc problems.
2968 */
2969long btrfs_ioctl_trans_end(struct file *file)
2970{
2971 struct inode *inode = fdentry(file)->d_inode;
2972 struct btrfs_root *root = BTRFS_I(inode)->root;
2973 struct btrfs_trans_handle *trans;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002974
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002975 trans = file->private_data;
Sage Weil1ab86ae2009-09-29 18:38:44 -04002976 if (!trans)
2977 return -EINVAL;
Christoph Hellwigb2141072008-09-05 16:43:31 -04002978 file->private_data = NULL;
Sage Weil9ca9ee02008-08-04 10:41:27 -04002979
Sage Weil1ab86ae2009-09-29 18:38:44 -04002980 btrfs_end_transaction(trans, root);
2981
Josef Bacika4abeea2011-04-11 17:25:13 -04002982 atomic_dec(&root->fs_info->open_ioctl_trans);
Sage Weil9ca9ee02008-08-04 10:41:27 -04002983
Al Viro2a79f172011-12-09 08:06:57 -05002984 mnt_drop_write_file(file);
Sage Weil1ab86ae2009-09-29 18:38:44 -04002985 return 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002986}
2987
Sage Weil46204592010-10-29 15:41:32 -04002988static noinline long btrfs_ioctl_start_sync(struct file *file, void __user *argp)
2989{
2990 struct btrfs_root *root = BTRFS_I(file->f_dentry->d_inode)->root;
2991 struct btrfs_trans_handle *trans;
2992 u64 transid;
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00002993 int ret;
Sage Weil46204592010-10-29 15:41:32 -04002994
2995 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002996 if (IS_ERR(trans))
2997 return PTR_ERR(trans);
Sage Weil46204592010-10-29 15:41:32 -04002998 transid = trans->transid;
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00002999 ret = btrfs_commit_transaction_async(trans, root, 0);
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00003000 if (ret) {
3001 btrfs_end_transaction(trans, root);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00003002 return ret;
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00003003 }
Sage Weil46204592010-10-29 15:41:32 -04003004
3005 if (argp)
3006 if (copy_to_user(argp, &transid, sizeof(transid)))
3007 return -EFAULT;
3008 return 0;
3009}
3010
3011static noinline long btrfs_ioctl_wait_sync(struct file *file, void __user *argp)
3012{
3013 struct btrfs_root *root = BTRFS_I(file->f_dentry->d_inode)->root;
3014 u64 transid;
3015
3016 if (argp) {
3017 if (copy_from_user(&transid, argp, sizeof(transid)))
3018 return -EFAULT;
3019 } else {
3020 transid = 0; /* current trans */
3021 }
3022 return btrfs_wait_for_commit(root, transid);
3023}
3024
Jan Schmidt475f6382011-03-11 15:41:01 +01003025static long btrfs_ioctl_scrub(struct btrfs_root *root, void __user *arg)
3026{
3027 int ret;
3028 struct btrfs_ioctl_scrub_args *sa;
3029
3030 if (!capable(CAP_SYS_ADMIN))
3031 return -EPERM;
3032
3033 sa = memdup_user(arg, sizeof(*sa));
3034 if (IS_ERR(sa))
3035 return PTR_ERR(sa);
3036
3037 ret = btrfs_scrub_dev(root, sa->devid, sa->start, sa->end,
Arne Jansen86287642011-03-23 16:34:19 +01003038 &sa->progress, sa->flags & BTRFS_SCRUB_READONLY);
Jan Schmidt475f6382011-03-11 15:41:01 +01003039
3040 if (copy_to_user(arg, sa, sizeof(*sa)))
3041 ret = -EFAULT;
3042
3043 kfree(sa);
3044 return ret;
3045}
3046
3047static long btrfs_ioctl_scrub_cancel(struct btrfs_root *root, void __user *arg)
3048{
3049 if (!capable(CAP_SYS_ADMIN))
3050 return -EPERM;
3051
3052 return btrfs_scrub_cancel(root);
3053}
3054
3055static long btrfs_ioctl_scrub_progress(struct btrfs_root *root,
3056 void __user *arg)
3057{
3058 struct btrfs_ioctl_scrub_args *sa;
3059 int ret;
3060
3061 if (!capable(CAP_SYS_ADMIN))
3062 return -EPERM;
3063
3064 sa = memdup_user(arg, sizeof(*sa));
3065 if (IS_ERR(sa))
3066 return PTR_ERR(sa);
3067
3068 ret = btrfs_scrub_progress(root, sa->devid, &sa->progress);
3069
3070 if (copy_to_user(arg, sa, sizeof(*sa)))
3071 ret = -EFAULT;
3072
3073 kfree(sa);
3074 return ret;
3075}
3076
Stefan Behrensc11d2c22012-05-25 16:06:09 +02003077static long btrfs_ioctl_get_dev_stats(struct btrfs_root *root,
David Sterbab27f7c02012-06-22 06:30:39 -06003078 void __user *arg)
Stefan Behrensc11d2c22012-05-25 16:06:09 +02003079{
3080 struct btrfs_ioctl_get_dev_stats *sa;
3081 int ret;
3082
Stefan Behrensc11d2c22012-05-25 16:06:09 +02003083 sa = memdup_user(arg, sizeof(*sa));
3084 if (IS_ERR(sa))
3085 return PTR_ERR(sa);
3086
David Sterbab27f7c02012-06-22 06:30:39 -06003087 if ((sa->flags & BTRFS_DEV_STATS_RESET) && !capable(CAP_SYS_ADMIN)) {
3088 kfree(sa);
3089 return -EPERM;
3090 }
3091
3092 ret = btrfs_get_dev_stats(root, sa);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02003093
3094 if (copy_to_user(arg, sa, sizeof(*sa)))
3095 ret = -EFAULT;
3096
3097 kfree(sa);
3098 return ret;
3099}
3100
Jan Schmidtd7728c92011-07-07 16:48:38 +02003101static long btrfs_ioctl_ino_to_path(struct btrfs_root *root, void __user *arg)
3102{
3103 int ret = 0;
3104 int i;
Chris Mason740c3d22011-11-02 15:48:34 -04003105 u64 rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003106 int size;
Chris Mason806468f2011-11-06 03:07:10 -05003107 struct btrfs_ioctl_ino_path_args *ipa = NULL;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003108 struct inode_fs_paths *ipath = NULL;
3109 struct btrfs_path *path;
3110
3111 if (!capable(CAP_SYS_ADMIN))
3112 return -EPERM;
3113
3114 path = btrfs_alloc_path();
3115 if (!path) {
3116 ret = -ENOMEM;
3117 goto out;
3118 }
3119
3120 ipa = memdup_user(arg, sizeof(*ipa));
3121 if (IS_ERR(ipa)) {
3122 ret = PTR_ERR(ipa);
3123 ipa = NULL;
3124 goto out;
3125 }
3126
3127 size = min_t(u32, ipa->size, 4096);
3128 ipath = init_ipath(size, root, path);
3129 if (IS_ERR(ipath)) {
3130 ret = PTR_ERR(ipath);
3131 ipath = NULL;
3132 goto out;
3133 }
3134
3135 ret = paths_from_inode(ipa->inum, ipath);
3136 if (ret < 0)
3137 goto out;
3138
3139 for (i = 0; i < ipath->fspath->elem_cnt; ++i) {
Jeff Mahoney745c4d82011-11-20 07:31:57 -05003140 rel_ptr = ipath->fspath->val[i] -
3141 (u64)(unsigned long)ipath->fspath->val;
Chris Mason740c3d22011-11-02 15:48:34 -04003142 ipath->fspath->val[i] = rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003143 }
3144
Jeff Mahoney745c4d82011-11-20 07:31:57 -05003145 ret = copy_to_user((void *)(unsigned long)ipa->fspath,
3146 (void *)(unsigned long)ipath->fspath, size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02003147 if (ret) {
3148 ret = -EFAULT;
3149 goto out;
3150 }
3151
3152out:
3153 btrfs_free_path(path);
3154 free_ipath(ipath);
3155 kfree(ipa);
3156
3157 return ret;
3158}
3159
3160static int build_ino_list(u64 inum, u64 offset, u64 root, void *ctx)
3161{
3162 struct btrfs_data_container *inodes = ctx;
3163 const size_t c = 3 * sizeof(u64);
3164
3165 if (inodes->bytes_left >= c) {
3166 inodes->bytes_left -= c;
3167 inodes->val[inodes->elem_cnt] = inum;
3168 inodes->val[inodes->elem_cnt + 1] = offset;
3169 inodes->val[inodes->elem_cnt + 2] = root;
3170 inodes->elem_cnt += 3;
3171 } else {
3172 inodes->bytes_missing += c - inodes->bytes_left;
3173 inodes->bytes_left = 0;
3174 inodes->elem_missed += 3;
3175 }
3176
3177 return 0;
3178}
3179
3180static long btrfs_ioctl_logical_to_ino(struct btrfs_root *root,
3181 void __user *arg)
3182{
3183 int ret = 0;
3184 int size;
Jan Schmidt4692cf52011-12-02 14:56:41 +01003185 u64 extent_item_pos;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003186 struct btrfs_ioctl_logical_ino_args *loi;
3187 struct btrfs_data_container *inodes = NULL;
3188 struct btrfs_path *path = NULL;
3189 struct btrfs_key key;
3190
3191 if (!capable(CAP_SYS_ADMIN))
3192 return -EPERM;
3193
3194 loi = memdup_user(arg, sizeof(*loi));
3195 if (IS_ERR(loi)) {
3196 ret = PTR_ERR(loi);
3197 loi = NULL;
3198 goto out;
3199 }
3200
3201 path = btrfs_alloc_path();
3202 if (!path) {
3203 ret = -ENOMEM;
3204 goto out;
3205 }
3206
3207 size = min_t(u32, loi->size, 4096);
3208 inodes = init_data_container(size);
3209 if (IS_ERR(inodes)) {
3210 ret = PTR_ERR(inodes);
3211 inodes = NULL;
3212 goto out;
3213 }
3214
3215 ret = extent_from_logical(root->fs_info, loi->logical, path, &key);
Jan Schmidt4692cf52011-12-02 14:56:41 +01003216 btrfs_release_path(path);
Jan Schmidtd7728c92011-07-07 16:48:38 +02003217
3218 if (ret & BTRFS_EXTENT_FLAG_TREE_BLOCK)
3219 ret = -ENOENT;
3220 if (ret < 0)
3221 goto out;
3222
Jan Schmidt4692cf52011-12-02 14:56:41 +01003223 extent_item_pos = loi->logical - key.objectid;
Jan Schmidt7a3ae2f2012-03-23 17:32:28 +01003224 ret = iterate_extent_inodes(root->fs_info, key.objectid,
3225 extent_item_pos, 0, build_ino_list,
Jan Schmidt4692cf52011-12-02 14:56:41 +01003226 inodes);
Jan Schmidtd7728c92011-07-07 16:48:38 +02003227
3228 if (ret < 0)
3229 goto out;
3230
Jeff Mahoney745c4d82011-11-20 07:31:57 -05003231 ret = copy_to_user((void *)(unsigned long)loi->inodes,
3232 (void *)(unsigned long)inodes, size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02003233 if (ret)
3234 ret = -EFAULT;
3235
3236out:
3237 btrfs_free_path(path);
3238 kfree(inodes);
3239 kfree(loi);
3240
3241 return ret;
3242}
3243
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003244void update_ioctl_balance_args(struct btrfs_fs_info *fs_info, int lock,
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003245 struct btrfs_ioctl_balance_args *bargs)
3246{
3247 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
3248
3249 bargs->flags = bctl->flags;
3250
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003251 if (atomic_read(&fs_info->balance_running))
3252 bargs->state |= BTRFS_BALANCE_STATE_RUNNING;
3253 if (atomic_read(&fs_info->balance_pause_req))
3254 bargs->state |= BTRFS_BALANCE_STATE_PAUSE_REQ;
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003255 if (atomic_read(&fs_info->balance_cancel_req))
3256 bargs->state |= BTRFS_BALANCE_STATE_CANCEL_REQ;
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003257
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003258 memcpy(&bargs->data, &bctl->data, sizeof(bargs->data));
3259 memcpy(&bargs->meta, &bctl->meta, sizeof(bargs->meta));
3260 memcpy(&bargs->sys, &bctl->sys, sizeof(bargs->sys));
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003261
3262 if (lock) {
3263 spin_lock(&fs_info->balance_lock);
3264 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
3265 spin_unlock(&fs_info->balance_lock);
3266 } else {
3267 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
3268 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003269}
3270
Liu Bo9ba1f6e2012-05-11 18:11:26 +08003271static long btrfs_ioctl_balance(struct file *file, void __user *arg)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003272{
Liu Bo9ba1f6e2012-05-11 18:11:26 +08003273 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003274 struct btrfs_fs_info *fs_info = root->fs_info;
3275 struct btrfs_ioctl_balance_args *bargs;
3276 struct btrfs_balance_control *bctl;
3277 int ret;
3278
3279 if (!capable(CAP_SYS_ADMIN))
3280 return -EPERM;
3281
Liu Boe54bfa32012-06-29 03:58:48 -06003282 ret = mnt_want_write_file(file);
Liu Bo9ba1f6e2012-05-11 18:11:26 +08003283 if (ret)
3284 return ret;
3285
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003286 mutex_lock(&fs_info->volume_mutex);
3287 mutex_lock(&fs_info->balance_mutex);
3288
3289 if (arg) {
3290 bargs = memdup_user(arg, sizeof(*bargs));
3291 if (IS_ERR(bargs)) {
3292 ret = PTR_ERR(bargs);
3293 goto out;
3294 }
Ilya Dryomovde322262012-01-16 22:04:49 +02003295
3296 if (bargs->flags & BTRFS_BALANCE_RESUME) {
3297 if (!fs_info->balance_ctl) {
3298 ret = -ENOTCONN;
3299 goto out_bargs;
3300 }
3301
3302 bctl = fs_info->balance_ctl;
3303 spin_lock(&fs_info->balance_lock);
3304 bctl->flags |= BTRFS_BALANCE_RESUME;
3305 spin_unlock(&fs_info->balance_lock);
3306
3307 goto do_balance;
3308 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003309 } else {
3310 bargs = NULL;
3311 }
3312
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003313 if (fs_info->balance_ctl) {
3314 ret = -EINPROGRESS;
3315 goto out_bargs;
3316 }
3317
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003318 bctl = kzalloc(sizeof(*bctl), GFP_NOFS);
3319 if (!bctl) {
3320 ret = -ENOMEM;
3321 goto out_bargs;
3322 }
3323
3324 bctl->fs_info = fs_info;
3325 if (arg) {
3326 memcpy(&bctl->data, &bargs->data, sizeof(bctl->data));
3327 memcpy(&bctl->meta, &bargs->meta, sizeof(bctl->meta));
3328 memcpy(&bctl->sys, &bargs->sys, sizeof(bctl->sys));
3329
3330 bctl->flags = bargs->flags;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003331 } else {
3332 /* balance everything - no filters */
3333 bctl->flags |= BTRFS_BALANCE_TYPE_MASK;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003334 }
3335
Ilya Dryomovde322262012-01-16 22:04:49 +02003336do_balance:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003337 ret = btrfs_balance(bctl, bargs);
3338 /*
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003339 * bctl is freed in __cancel_balance or in free_fs_info if
3340 * restriper was paused all the way until unmount
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003341 */
3342 if (arg) {
3343 if (copy_to_user(arg, bargs, sizeof(*bargs)))
3344 ret = -EFAULT;
3345 }
3346
3347out_bargs:
3348 kfree(bargs);
3349out:
3350 mutex_unlock(&fs_info->balance_mutex);
3351 mutex_unlock(&fs_info->volume_mutex);
Liu Boe54bfa32012-06-29 03:58:48 -06003352 mnt_drop_write_file(file);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003353 return ret;
3354}
3355
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003356static long btrfs_ioctl_balance_ctl(struct btrfs_root *root, int cmd)
3357{
3358 if (!capable(CAP_SYS_ADMIN))
3359 return -EPERM;
3360
3361 switch (cmd) {
3362 case BTRFS_BALANCE_CTL_PAUSE:
3363 return btrfs_pause_balance(root->fs_info);
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003364 case BTRFS_BALANCE_CTL_CANCEL:
3365 return btrfs_cancel_balance(root->fs_info);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003366 }
3367
3368 return -EINVAL;
3369}
3370
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003371static long btrfs_ioctl_balance_progress(struct btrfs_root *root,
3372 void __user *arg)
3373{
3374 struct btrfs_fs_info *fs_info = root->fs_info;
3375 struct btrfs_ioctl_balance_args *bargs;
3376 int ret = 0;
3377
3378 if (!capable(CAP_SYS_ADMIN))
3379 return -EPERM;
3380
3381 mutex_lock(&fs_info->balance_mutex);
3382 if (!fs_info->balance_ctl) {
3383 ret = -ENOTCONN;
3384 goto out;
3385 }
3386
3387 bargs = kzalloc(sizeof(*bargs), GFP_NOFS);
3388 if (!bargs) {
3389 ret = -ENOMEM;
3390 goto out;
3391 }
3392
3393 update_ioctl_balance_args(fs_info, 1, bargs);
3394
3395 if (copy_to_user(arg, bargs, sizeof(*bargs)))
3396 ret = -EFAULT;
3397
3398 kfree(bargs);
3399out:
3400 mutex_unlock(&fs_info->balance_mutex);
3401 return ret;
3402}
3403
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003404long btrfs_ioctl(struct file *file, unsigned int
3405 cmd, unsigned long arg)
3406{
3407 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05003408 void __user *argp = (void __user *)arg;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003409
3410 switch (cmd) {
Christoph Hellwig6cbff002009-04-17 10:37:41 +02003411 case FS_IOC_GETFLAGS:
3412 return btrfs_ioctl_getflags(file, argp);
3413 case FS_IOC_SETFLAGS:
3414 return btrfs_ioctl_setflags(file, argp);
3415 case FS_IOC_GETVERSION:
3416 return btrfs_ioctl_getversion(file, argp);
Li Dongyangf7039b12011-03-24 10:24:28 +00003417 case FITRIM:
3418 return btrfs_ioctl_fitrim(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003419 case BTRFS_IOC_SNAP_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08003420 return btrfs_ioctl_snap_create(file, argp, 0);
Li Zefanfdfb1e42010-12-10 06:41:56 +00003421 case BTRFS_IOC_SNAP_CREATE_V2:
Li Zefanfa0d2b92010-12-20 15:53:28 +08003422 return btrfs_ioctl_snap_create_v2(file, argp, 0);
Chris Mason3de45862008-11-17 21:02:50 -05003423 case BTRFS_IOC_SUBVOL_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08003424 return btrfs_ioctl_snap_create(file, argp, 1);
Yan, Zheng76dda932009-09-21 16:00:26 -04003425 case BTRFS_IOC_SNAP_DESTROY:
3426 return btrfs_ioctl_snap_destroy(file, argp);
Li Zefan0caa1022010-12-20 16:30:25 +08003427 case BTRFS_IOC_SUBVOL_GETFLAGS:
3428 return btrfs_ioctl_subvol_getflags(file, argp);
3429 case BTRFS_IOC_SUBVOL_SETFLAGS:
3430 return btrfs_ioctl_subvol_setflags(file, argp);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003431 case BTRFS_IOC_DEFAULT_SUBVOL:
3432 return btrfs_ioctl_default_subvol(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003433 case BTRFS_IOC_DEFRAG:
Chris Mason1e701a32010-03-11 09:42:04 -05003434 return btrfs_ioctl_defrag(file, NULL);
3435 case BTRFS_IOC_DEFRAG_RANGE:
3436 return btrfs_ioctl_defrag(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003437 case BTRFS_IOC_RESIZE:
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05003438 return btrfs_ioctl_resize(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003439 case BTRFS_IOC_ADD_DEV:
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05003440 return btrfs_ioctl_add_dev(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003441 case BTRFS_IOC_RM_DEV:
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05003442 return btrfs_ioctl_rm_dev(root, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01003443 case BTRFS_IOC_FS_INFO:
3444 return btrfs_ioctl_fs_info(root, argp);
3445 case BTRFS_IOC_DEV_INFO:
3446 return btrfs_ioctl_dev_info(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003447 case BTRFS_IOC_BALANCE:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08003448 return btrfs_ioctl_balance(file, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003449 case BTRFS_IOC_CLONE:
Sage Weilc5c9cd42008-11-12 14:32:25 -05003450 return btrfs_ioctl_clone(file, arg, 0, 0, 0);
3451 case BTRFS_IOC_CLONE_RANGE:
Christoph Hellwig7a865e82008-12-02 09:52:24 -05003452 return btrfs_ioctl_clone_range(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003453 case BTRFS_IOC_TRANS_START:
3454 return btrfs_ioctl_trans_start(file);
3455 case BTRFS_IOC_TRANS_END:
3456 return btrfs_ioctl_trans_end(file);
Chris Masonac8e9812010-02-28 15:39:26 -05003457 case BTRFS_IOC_TREE_SEARCH:
3458 return btrfs_ioctl_tree_search(file, argp);
3459 case BTRFS_IOC_INO_LOOKUP:
3460 return btrfs_ioctl_ino_lookup(file, argp);
Jan Schmidtd7728c92011-07-07 16:48:38 +02003461 case BTRFS_IOC_INO_PATHS:
3462 return btrfs_ioctl_ino_to_path(root, argp);
3463 case BTRFS_IOC_LOGICAL_INO:
3464 return btrfs_ioctl_logical_to_ino(root, argp);
Josef Bacik1406e432010-01-13 18:19:06 +00003465 case BTRFS_IOC_SPACE_INFO:
3466 return btrfs_ioctl_space_info(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003467 case BTRFS_IOC_SYNC:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003468 btrfs_sync_fs(file->f_dentry->d_sb, 1);
3469 return 0;
Sage Weil46204592010-10-29 15:41:32 -04003470 case BTRFS_IOC_START_SYNC:
3471 return btrfs_ioctl_start_sync(file, argp);
3472 case BTRFS_IOC_WAIT_SYNC:
3473 return btrfs_ioctl_wait_sync(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01003474 case BTRFS_IOC_SCRUB:
3475 return btrfs_ioctl_scrub(root, argp);
3476 case BTRFS_IOC_SCRUB_CANCEL:
3477 return btrfs_ioctl_scrub_cancel(root, argp);
3478 case BTRFS_IOC_SCRUB_PROGRESS:
3479 return btrfs_ioctl_scrub_progress(root, argp);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003480 case BTRFS_IOC_BALANCE_V2:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08003481 return btrfs_ioctl_balance(file, argp);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003482 case BTRFS_IOC_BALANCE_CTL:
3483 return btrfs_ioctl_balance_ctl(root, arg);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003484 case BTRFS_IOC_BALANCE_PROGRESS:
3485 return btrfs_ioctl_balance_progress(root, argp);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02003486 case BTRFS_IOC_GET_DEV_STATS:
David Sterbab27f7c02012-06-22 06:30:39 -06003487 return btrfs_ioctl_get_dev_stats(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003488 }
3489
3490 return -ENOTTY;
3491}