blob: f5c1c150d9f3be7bcf2feb2edc0601dabc5ad3c3 [file] [log] [blame]
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
19#include <linux/kernel.h>
20#include <linux/bio.h>
21#include <linux/buffer_head.h>
22#include <linux/file.h>
23#include <linux/fs.h>
Christoph Hellwigcb8e7092008-10-09 13:39:39 -040024#include <linux/fsnotify.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040025#include <linux/pagemap.h>
26#include <linux/highmem.h>
27#include <linux/time.h>
28#include <linux/init.h>
29#include <linux/string.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040030#include <linux/backing-dev.h>
Christoph Hellwigcb8e7092008-10-09 13:39:39 -040031#include <linux/mount.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040032#include <linux/mpage.h>
Christoph Hellwigcb8e7092008-10-09 13:39:39 -040033#include <linux/namei.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040034#include <linux/swap.h>
35#include <linux/writeback.h>
36#include <linux/statfs.h>
37#include <linux/compat.h>
38#include <linux/bit_spinlock.h>
Christoph Hellwigcb8e7092008-10-09 13:39:39 -040039#include <linux/security.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040040#include <linux/xattr.h>
Yan Zheng7ea394f2008-08-05 13:05:02 -040041#include <linux/vmalloc.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090042#include <linux/slab.h>
Li Dongyangf7039b12011-03-24 10:24:28 +000043#include <linux/blkdev.h>
Alexander Block8ea05e32012-07-25 17:35:53 +020044#include <linux/uuid.h>
Chris Mason4b4e25f2008-11-20 10:22:27 -050045#include "compat.h"
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040046#include "ctree.h"
47#include "disk-io.h"
48#include "transaction.h"
49#include "btrfs_inode.h"
50#include "ioctl.h"
51#include "print-tree.h"
52#include "volumes.h"
Chris Mason925baed2008-06-25 16:01:30 -040053#include "locking.h"
Li Zefan581bb052011-04-20 10:06:11 +080054#include "inode-map.h"
Jan Schmidtd7728c92011-07-07 16:48:38 +020055#include "backref.h"
Josef Bacik606686e2012-06-04 14:03:51 -040056#include "rcu-string.h"
Alexander Block31db9f72012-07-25 23:19:24 +020057#include "send.h"
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +010058#include "dev-replace.h"
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040059
Christoph Hellwig6cbff002009-04-17 10:37:41 +020060/* Mask out flags that are inappropriate for the given type of inode. */
61static inline __u32 btrfs_mask_flags(umode_t mode, __u32 flags)
62{
63 if (S_ISDIR(mode))
64 return flags;
65 else if (S_ISREG(mode))
66 return flags & ~FS_DIRSYNC_FL;
67 else
68 return flags & (FS_NODUMP_FL | FS_NOATIME_FL);
69}
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040070
Christoph Hellwig6cbff002009-04-17 10:37:41 +020071/*
72 * Export inode flags to the format expected by the FS_IOC_GETFLAGS ioctl.
73 */
74static unsigned int btrfs_flags_to_ioctl(unsigned int flags)
75{
76 unsigned int iflags = 0;
77
78 if (flags & BTRFS_INODE_SYNC)
79 iflags |= FS_SYNC_FL;
80 if (flags & BTRFS_INODE_IMMUTABLE)
81 iflags |= FS_IMMUTABLE_FL;
82 if (flags & BTRFS_INODE_APPEND)
83 iflags |= FS_APPEND_FL;
84 if (flags & BTRFS_INODE_NODUMP)
85 iflags |= FS_NODUMP_FL;
86 if (flags & BTRFS_INODE_NOATIME)
87 iflags |= FS_NOATIME_FL;
88 if (flags & BTRFS_INODE_DIRSYNC)
89 iflags |= FS_DIRSYNC_FL;
Li Zefand0092bd2011-04-15 03:03:06 +000090 if (flags & BTRFS_INODE_NODATACOW)
91 iflags |= FS_NOCOW_FL;
92
93 if ((flags & BTRFS_INODE_COMPRESS) && !(flags & BTRFS_INODE_NOCOMPRESS))
94 iflags |= FS_COMPR_FL;
95 else if (flags & BTRFS_INODE_NOCOMPRESS)
96 iflags |= FS_NOCOMP_FL;
Christoph Hellwig6cbff002009-04-17 10:37:41 +020097
98 return iflags;
99}
100
101/*
102 * Update inode->i_flags based on the btrfs internal flags.
103 */
104void btrfs_update_iflags(struct inode *inode)
105{
106 struct btrfs_inode *ip = BTRFS_I(inode);
107
108 inode->i_flags &= ~(S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC);
109
110 if (ip->flags & BTRFS_INODE_SYNC)
111 inode->i_flags |= S_SYNC;
112 if (ip->flags & BTRFS_INODE_IMMUTABLE)
113 inode->i_flags |= S_IMMUTABLE;
114 if (ip->flags & BTRFS_INODE_APPEND)
115 inode->i_flags |= S_APPEND;
116 if (ip->flags & BTRFS_INODE_NOATIME)
117 inode->i_flags |= S_NOATIME;
118 if (ip->flags & BTRFS_INODE_DIRSYNC)
119 inode->i_flags |= S_DIRSYNC;
120}
121
122/*
123 * Inherit flags from the parent inode.
124 *
Josef Bacike27425d2011-09-27 11:01:30 -0400125 * Currently only the compression flags and the cow flags are inherited.
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200126 */
127void btrfs_inherit_iflags(struct inode *inode, struct inode *dir)
128{
Chris Mason0b4dcea2009-06-11 11:13:35 -0400129 unsigned int flags;
130
131 if (!dir)
132 return;
133
134 flags = BTRFS_I(dir)->flags;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200135
Josef Bacike27425d2011-09-27 11:01:30 -0400136 if (flags & BTRFS_INODE_NOCOMPRESS) {
137 BTRFS_I(inode)->flags &= ~BTRFS_INODE_COMPRESS;
138 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
139 } else if (flags & BTRFS_INODE_COMPRESS) {
140 BTRFS_I(inode)->flags &= ~BTRFS_INODE_NOCOMPRESS;
141 BTRFS_I(inode)->flags |= BTRFS_INODE_COMPRESS;
142 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200143
Liu Bo213490b2012-09-11 08:33:50 -0600144 if (flags & BTRFS_INODE_NODATACOW) {
Josef Bacike27425d2011-09-27 11:01:30 -0400145 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW;
Liu Bo213490b2012-09-11 08:33:50 -0600146 if (S_ISREG(inode->i_mode))
147 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
148 }
Josef Bacike27425d2011-09-27 11:01:30 -0400149
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200150 btrfs_update_iflags(inode);
151}
152
153static int btrfs_ioctl_getflags(struct file *file, void __user *arg)
154{
155 struct btrfs_inode *ip = BTRFS_I(file->f_path.dentry->d_inode);
156 unsigned int flags = btrfs_flags_to_ioctl(ip->flags);
157
158 if (copy_to_user(arg, &flags, sizeof(flags)))
159 return -EFAULT;
160 return 0;
161}
162
Liu Bo75e7cb72011-03-22 10:12:20 +0000163static int check_flags(unsigned int flags)
164{
165 if (flags & ~(FS_IMMUTABLE_FL | FS_APPEND_FL | \
166 FS_NOATIME_FL | FS_NODUMP_FL | \
167 FS_SYNC_FL | FS_DIRSYNC_FL | \
Li Zefane1e8fb62011-04-15 03:02:49 +0000168 FS_NOCOMP_FL | FS_COMPR_FL |
169 FS_NOCOW_FL))
Liu Bo75e7cb72011-03-22 10:12:20 +0000170 return -EOPNOTSUPP;
171
172 if ((flags & FS_NOCOMP_FL) && (flags & FS_COMPR_FL))
173 return -EINVAL;
174
Liu Bo75e7cb72011-03-22 10:12:20 +0000175 return 0;
176}
177
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200178static int btrfs_ioctl_setflags(struct file *file, void __user *arg)
179{
180 struct inode *inode = file->f_path.dentry->d_inode;
181 struct btrfs_inode *ip = BTRFS_I(inode);
182 struct btrfs_root *root = ip->root;
183 struct btrfs_trans_handle *trans;
184 unsigned int flags, oldflags;
185 int ret;
Li Zefanf062abf2011-12-29 13:36:45 +0800186 u64 ip_oldflags;
187 unsigned int i_oldflags;
David Sterba7e97b8d2012-09-07 05:56:55 -0600188 umode_t mode;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200189
Li Zefanb83cc962010-12-20 16:04:08 +0800190 if (btrfs_root_readonly(root))
191 return -EROFS;
192
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200193 if (copy_from_user(&flags, arg, sizeof(flags)))
194 return -EFAULT;
195
Liu Bo75e7cb72011-03-22 10:12:20 +0000196 ret = check_flags(flags);
197 if (ret)
198 return ret;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200199
Serge E. Hallyn2e149672011-03-23 16:43:26 -0700200 if (!inode_owner_or_capable(inode))
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200201 return -EACCES;
202
Jan Karae7848682012-06-12 16:20:32 +0200203 ret = mnt_want_write_file(file);
204 if (ret)
205 return ret;
206
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200207 mutex_lock(&inode->i_mutex);
208
Li Zefanf062abf2011-12-29 13:36:45 +0800209 ip_oldflags = ip->flags;
210 i_oldflags = inode->i_flags;
David Sterba7e97b8d2012-09-07 05:56:55 -0600211 mode = inode->i_mode;
Li Zefanf062abf2011-12-29 13:36:45 +0800212
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200213 flags = btrfs_mask_flags(inode->i_mode, flags);
214 oldflags = btrfs_flags_to_ioctl(ip->flags);
215 if ((flags ^ oldflags) & (FS_APPEND_FL | FS_IMMUTABLE_FL)) {
216 if (!capable(CAP_LINUX_IMMUTABLE)) {
217 ret = -EPERM;
218 goto out_unlock;
219 }
220 }
221
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200222 if (flags & FS_SYNC_FL)
223 ip->flags |= BTRFS_INODE_SYNC;
224 else
225 ip->flags &= ~BTRFS_INODE_SYNC;
226 if (flags & FS_IMMUTABLE_FL)
227 ip->flags |= BTRFS_INODE_IMMUTABLE;
228 else
229 ip->flags &= ~BTRFS_INODE_IMMUTABLE;
230 if (flags & FS_APPEND_FL)
231 ip->flags |= BTRFS_INODE_APPEND;
232 else
233 ip->flags &= ~BTRFS_INODE_APPEND;
234 if (flags & FS_NODUMP_FL)
235 ip->flags |= BTRFS_INODE_NODUMP;
236 else
237 ip->flags &= ~BTRFS_INODE_NODUMP;
238 if (flags & FS_NOATIME_FL)
239 ip->flags |= BTRFS_INODE_NOATIME;
240 else
241 ip->flags &= ~BTRFS_INODE_NOATIME;
242 if (flags & FS_DIRSYNC_FL)
243 ip->flags |= BTRFS_INODE_DIRSYNC;
244 else
245 ip->flags &= ~BTRFS_INODE_DIRSYNC;
David Sterba7e97b8d2012-09-07 05:56:55 -0600246 if (flags & FS_NOCOW_FL) {
247 if (S_ISREG(mode)) {
248 /*
249 * It's safe to turn csums off here, no extents exist.
250 * Otherwise we want the flag to reflect the real COW
251 * status of the file and will not set it.
252 */
253 if (inode->i_size == 0)
254 ip->flags |= BTRFS_INODE_NODATACOW
255 | BTRFS_INODE_NODATASUM;
256 } else {
257 ip->flags |= BTRFS_INODE_NODATACOW;
258 }
259 } else {
260 /*
261 * Revert back under same assuptions as above
262 */
263 if (S_ISREG(mode)) {
264 if (inode->i_size == 0)
265 ip->flags &= ~(BTRFS_INODE_NODATACOW
266 | BTRFS_INODE_NODATASUM);
267 } else {
268 ip->flags &= ~BTRFS_INODE_NODATACOW;
269 }
270 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200271
Liu Bo75e7cb72011-03-22 10:12:20 +0000272 /*
273 * The COMPRESS flag can only be changed by users, while the NOCOMPRESS
274 * flag may be changed automatically if compression code won't make
275 * things smaller.
276 */
277 if (flags & FS_NOCOMP_FL) {
278 ip->flags &= ~BTRFS_INODE_COMPRESS;
279 ip->flags |= BTRFS_INODE_NOCOMPRESS;
280 } else if (flags & FS_COMPR_FL) {
281 ip->flags |= BTRFS_INODE_COMPRESS;
282 ip->flags &= ~BTRFS_INODE_NOCOMPRESS;
Li Zefanebcb9042011-04-15 03:03:17 +0000283 } else {
284 ip->flags &= ~(BTRFS_INODE_COMPRESS | BTRFS_INODE_NOCOMPRESS);
Liu Bo75e7cb72011-03-22 10:12:20 +0000285 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200286
Li Zefan4da6f1a2011-12-29 13:39:50 +0800287 trans = btrfs_start_transaction(root, 1);
Li Zefanf062abf2011-12-29 13:36:45 +0800288 if (IS_ERR(trans)) {
289 ret = PTR_ERR(trans);
290 goto out_drop;
291 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200292
Li Zefan306424cc2011-12-14 20:12:02 -0500293 btrfs_update_iflags(inode);
Josef Bacik0c4d2d92012-04-05 15:03:02 -0400294 inode_inc_iversion(inode);
Li Zefan306424cc2011-12-14 20:12:02 -0500295 inode->i_ctime = CURRENT_TIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200296 ret = btrfs_update_inode(trans, root, inode);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200297
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200298 btrfs_end_transaction(trans, root);
Li Zefanf062abf2011-12-29 13:36:45 +0800299 out_drop:
300 if (ret) {
301 ip->flags = ip_oldflags;
302 inode->i_flags = i_oldflags;
303 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200304
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200305 out_unlock:
306 mutex_unlock(&inode->i_mutex);
Jan Karae7848682012-06-12 16:20:32 +0200307 mnt_drop_write_file(file);
liubo2d4e6f62011-02-24 09:38:16 +0000308 return ret;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200309}
310
311static int btrfs_ioctl_getversion(struct file *file, int __user *arg)
312{
313 struct inode *inode = file->f_path.dentry->d_inode;
314
315 return put_user(inode->i_generation, arg);
316}
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400317
Li Dongyangf7039b12011-03-24 10:24:28 +0000318static noinline int btrfs_ioctl_fitrim(struct file *file, void __user *arg)
319{
Al Viro815745c2011-11-17 15:40:49 -0500320 struct btrfs_fs_info *fs_info = btrfs_sb(fdentry(file)->d_sb);
Li Dongyangf7039b12011-03-24 10:24:28 +0000321 struct btrfs_device *device;
322 struct request_queue *q;
323 struct fstrim_range range;
324 u64 minlen = ULLONG_MAX;
325 u64 num_devices = 0;
Al Viro815745c2011-11-17 15:40:49 -0500326 u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy);
Li Dongyangf7039b12011-03-24 10:24:28 +0000327 int ret;
328
329 if (!capable(CAP_SYS_ADMIN))
330 return -EPERM;
331
Xiao Guangrong1f781602011-04-20 10:09:16 +0000332 rcu_read_lock();
333 list_for_each_entry_rcu(device, &fs_info->fs_devices->devices,
334 dev_list) {
Li Dongyangf7039b12011-03-24 10:24:28 +0000335 if (!device->bdev)
336 continue;
337 q = bdev_get_queue(device->bdev);
338 if (blk_queue_discard(q)) {
339 num_devices++;
340 minlen = min((u64)q->limits.discard_granularity,
341 minlen);
342 }
343 }
Xiao Guangrong1f781602011-04-20 10:09:16 +0000344 rcu_read_unlock();
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200345
Li Dongyangf7039b12011-03-24 10:24:28 +0000346 if (!num_devices)
347 return -EOPNOTSUPP;
Li Dongyangf7039b12011-03-24 10:24:28 +0000348 if (copy_from_user(&range, arg, sizeof(range)))
349 return -EFAULT;
Lukas Czernere515c182012-10-16 09:34:36 +0000350 if (range.start > total_bytes ||
351 range.len < fs_info->sb->s_blocksize)
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200352 return -EINVAL;
Li Dongyangf7039b12011-03-24 10:24:28 +0000353
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200354 range.len = min(range.len, total_bytes - range.start);
Li Dongyangf7039b12011-03-24 10:24:28 +0000355 range.minlen = max(range.minlen, minlen);
Al Viro815745c2011-11-17 15:40:49 -0500356 ret = btrfs_trim_fs(fs_info->tree_root, &range);
Li Dongyangf7039b12011-03-24 10:24:28 +0000357 if (ret < 0)
358 return ret;
359
360 if (copy_to_user(arg, &range, sizeof(range)))
361 return -EFAULT;
362
363 return 0;
364}
365
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400366static noinline int create_subvol(struct btrfs_root *root,
367 struct dentry *dentry,
Sage Weil72fd0322010-10-29 15:41:32 -0400368 char *name, int namelen,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200369 u64 *async_transid,
370 struct btrfs_qgroup_inherit **inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400371{
372 struct btrfs_trans_handle *trans;
373 struct btrfs_key key;
374 struct btrfs_root_item root_item;
375 struct btrfs_inode_item *inode_item;
376 struct extent_buffer *leaf;
Yan, Zheng76dda932009-09-21 16:00:26 -0400377 struct btrfs_root *new_root;
Al Viro2fbe8c82011-07-16 21:38:06 -0400378 struct dentry *parent = dentry->d_parent;
Josef Bacik6a912212010-11-20 09:48:00 +0000379 struct inode *dir;
Alexander Block8ea05e32012-07-25 17:35:53 +0200380 struct timespec cur_time = CURRENT_TIME;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400381 int ret;
382 int err;
383 u64 objectid;
384 u64 new_dirid = BTRFS_FIRST_FREE_OBJECTID;
Chris Mason3de45862008-11-17 21:02:50 -0500385 u64 index = 0;
Alexander Block8ea05e32012-07-25 17:35:53 +0200386 uuid_le new_uuid;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400387
Li Zefan581bb052011-04-20 10:06:11 +0800388 ret = btrfs_find_free_objectid(root->fs_info->tree_root, &objectid);
Al Viro2fbe8c82011-07-16 21:38:06 -0400389 if (ret)
Yan, Zhenga22285a2010-05-16 10:48:46 -0400390 return ret;
Josef Bacik6a912212010-11-20 09:48:00 +0000391
392 dir = parent->d_inode;
393
Josef Bacik9ed74f22009-09-11 16:12:44 -0400394 /*
395 * 1 - inode item
396 * 2 - refs
397 * 1 - root item
398 * 2 - dir items
399 */
Yan, Zhenga22285a2010-05-16 10:48:46 -0400400 trans = btrfs_start_transaction(root, 6);
Al Viro2fbe8c82011-07-16 21:38:06 -0400401 if (IS_ERR(trans))
Yan, Zhenga22285a2010-05-16 10:48:46 -0400402 return PTR_ERR(trans);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400403
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200404 ret = btrfs_qgroup_inherit(trans, root->fs_info, 0, objectid,
405 inherit ? *inherit : NULL);
406 if (ret)
407 goto fail;
408
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400409 leaf = btrfs_alloc_free_block(trans, root, root->leafsize,
Jan Schmidt5581a512012-05-16 17:04:52 +0200410 0, objectid, NULL, 0, 0, 0);
Josef Bacik8e8a1e32008-07-24 12:17:14 -0400411 if (IS_ERR(leaf)) {
412 ret = PTR_ERR(leaf);
413 goto fail;
414 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400415
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400416 memset_extent_buffer(leaf, 0, 0, sizeof(struct btrfs_header));
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400417 btrfs_set_header_bytenr(leaf, leaf->start);
418 btrfs_set_header_generation(leaf, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400419 btrfs_set_header_backref_rev(leaf, BTRFS_MIXED_BACKREF_REV);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400420 btrfs_set_header_owner(leaf, objectid);
421
422 write_extent_buffer(leaf, root->fs_info->fsid,
423 (unsigned long)btrfs_header_fsid(leaf),
424 BTRFS_FSID_SIZE);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400425 write_extent_buffer(leaf, root->fs_info->chunk_tree_uuid,
426 (unsigned long)btrfs_header_chunk_tree_uuid(leaf),
427 BTRFS_UUID_SIZE);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400428 btrfs_mark_buffer_dirty(leaf);
429
Alexander Block8ea05e32012-07-25 17:35:53 +0200430 memset(&root_item, 0, sizeof(root_item));
431
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400432 inode_item = &root_item.inode;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400433 inode_item->generation = cpu_to_le64(1);
434 inode_item->size = cpu_to_le64(3);
435 inode_item->nlink = cpu_to_le32(1);
Yan Zhenga76a3cd2008-10-09 11:46:29 -0400436 inode_item->nbytes = cpu_to_le64(root->leafsize);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400437 inode_item->mode = cpu_to_le32(S_IFDIR | 0755);
438
Li Zefan08fe4db2011-03-28 02:01:25 +0000439 root_item.flags = 0;
440 root_item.byte_limit = 0;
441 inode_item->flags = cpu_to_le64(BTRFS_INODE_ROOT_ITEM_INIT);
442
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400443 btrfs_set_root_bytenr(&root_item, leaf->start);
Yan Zheng84234f32008-10-29 14:49:05 -0400444 btrfs_set_root_generation(&root_item, trans->transid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400445 btrfs_set_root_level(&root_item, 0);
446 btrfs_set_root_refs(&root_item, 1);
Yan, Zheng86b9f2e2009-11-12 09:36:50 +0000447 btrfs_set_root_used(&root_item, leaf->len);
Yan Zheng80ff3852008-10-30 14:20:02 -0400448 btrfs_set_root_last_snapshot(&root_item, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400449
Alexander Block8ea05e32012-07-25 17:35:53 +0200450 btrfs_set_root_generation_v2(&root_item,
451 btrfs_root_generation(&root_item));
452 uuid_le_gen(&new_uuid);
453 memcpy(root_item.uuid, new_uuid.b, BTRFS_UUID_SIZE);
454 root_item.otime.sec = cpu_to_le64(cur_time.tv_sec);
Dan Carpenterdadd1102012-07-30 02:10:44 -0600455 root_item.otime.nsec = cpu_to_le32(cur_time.tv_nsec);
Alexander Block8ea05e32012-07-25 17:35:53 +0200456 root_item.ctime = root_item.otime;
457 btrfs_set_root_ctransid(&root_item, trans->transid);
458 btrfs_set_root_otransid(&root_item, trans->transid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400459
Chris Mason925baed2008-06-25 16:01:30 -0400460 btrfs_tree_unlock(leaf);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400461 free_extent_buffer(leaf);
462 leaf = NULL;
463
464 btrfs_set_root_dirid(&root_item, new_dirid);
465
466 key.objectid = objectid;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400467 key.offset = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400468 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
469 ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
470 &root_item);
471 if (ret)
472 goto fail;
473
Yan, Zheng76dda932009-09-21 16:00:26 -0400474 key.offset = (u64)-1;
475 new_root = btrfs_read_fs_root_no_name(root->fs_info, &key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100476 if (IS_ERR(new_root)) {
477 btrfs_abort_transaction(trans, root, PTR_ERR(new_root));
478 ret = PTR_ERR(new_root);
479 goto fail;
480 }
Yan, Zheng76dda932009-09-21 16:00:26 -0400481
482 btrfs_record_root_in_trans(trans, new_root);
483
Josef Bacikd82a6f12011-05-11 15:26:06 -0400484 ret = btrfs_create_subvol_root(trans, new_root, new_dirid);
Mark Fashehce598972011-07-26 11:32:23 -0700485 if (ret) {
486 /* We potentially lose an unused inode item here */
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100487 btrfs_abort_transaction(trans, root, ret);
Mark Fashehce598972011-07-26 11:32:23 -0700488 goto fail;
489 }
490
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400491 /*
492 * insert the directory item
493 */
Chris Mason3de45862008-11-17 21:02:50 -0500494 ret = btrfs_set_inode_index(dir, &index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100495 if (ret) {
496 btrfs_abort_transaction(trans, root, ret);
497 goto fail;
498 }
Chris Mason3de45862008-11-17 21:02:50 -0500499
500 ret = btrfs_insert_dir_item(trans, root,
Miao Xie16cdcec2011-04-22 18:12:22 +0800501 name, namelen, dir, &key,
Chris Mason3de45862008-11-17 21:02:50 -0500502 BTRFS_FT_DIR, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100503 if (ret) {
504 btrfs_abort_transaction(trans, root, ret);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400505 goto fail;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100506 }
Chris Mason0660b5a2008-11-17 20:37:39 -0500507
Yan Zheng52c26172009-01-05 15:43:43 -0500508 btrfs_i_size_write(dir, dir->i_size + namelen * 2);
509 ret = btrfs_update_inode(trans, root, dir);
510 BUG_ON(ret);
511
Chris Mason0660b5a2008-11-17 20:37:39 -0500512 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -0400513 objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +0800514 btrfs_ino(dir), index, name, namelen);
Yan, Zheng76dda932009-09-21 16:00:26 -0400515
Chris Mason0660b5a2008-11-17 20:37:39 -0500516 BUG_ON(ret);
517
Yan, Zheng76dda932009-09-21 16:00:26 -0400518 d_instantiate(dentry, btrfs_lookup_dentry(dir, dentry));
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400519fail:
Sage Weil72fd0322010-10-29 15:41:32 -0400520 if (async_transid) {
521 *async_transid = trans->transid;
522 err = btrfs_commit_transaction_async(trans, root, 1);
523 } else {
524 err = btrfs_commit_transaction(trans, root);
525 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400526 if (err && !ret)
527 ret = err;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400528 return ret;
529}
530
Sage Weil72fd0322010-10-29 15:41:32 -0400531static int create_snapshot(struct btrfs_root *root, struct dentry *dentry,
Li Zefanb83cc962010-12-20 16:04:08 +0800532 char *name, int namelen, u64 *async_transid,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200533 bool readonly, struct btrfs_qgroup_inherit **inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400534{
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000535 struct inode *inode;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400536 struct btrfs_pending_snapshot *pending_snapshot;
537 struct btrfs_trans_handle *trans;
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000538 int ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400539
540 if (!root->ref_cows)
541 return -EINVAL;
542
Yan, Zhenga22285a2010-05-16 10:48:46 -0400543 pending_snapshot = kzalloc(sizeof(*pending_snapshot), GFP_NOFS);
544 if (!pending_snapshot)
545 return -ENOMEM;
546
Miao Xie66d8f3d2012-09-06 04:02:28 -0600547 btrfs_init_block_rsv(&pending_snapshot->block_rsv,
548 BTRFS_BLOCK_RSV_TEMP);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400549 pending_snapshot->dentry = dentry;
550 pending_snapshot->root = root;
Li Zefanb83cc962010-12-20 16:04:08 +0800551 pending_snapshot->readonly = readonly;
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200552 if (inherit) {
553 pending_snapshot->inherit = *inherit;
554 *inherit = NULL; /* take responsibility to free it */
555 }
Yan, Zhenga22285a2010-05-16 10:48:46 -0400556
Miao Xie48c03c42012-09-06 04:03:56 -0600557 trans = btrfs_start_transaction(root->fs_info->extent_root, 6);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400558 if (IS_ERR(trans)) {
559 ret = PTR_ERR(trans);
560 goto fail;
561 }
562
563 ret = btrfs_snap_reserve_metadata(trans, pending_snapshot);
564 BUG_ON(ret);
565
Josef Bacik83515832011-06-14 15:16:14 -0400566 spin_lock(&root->fs_info->trans_lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400567 list_add(&pending_snapshot->list,
568 &trans->transaction->pending_snapshots);
Josef Bacik83515832011-06-14 15:16:14 -0400569 spin_unlock(&root->fs_info->trans_lock);
Sage Weil72fd0322010-10-29 15:41:32 -0400570 if (async_transid) {
571 *async_transid = trans->transid;
572 ret = btrfs_commit_transaction_async(trans,
573 root->fs_info->extent_root, 1);
574 } else {
575 ret = btrfs_commit_transaction(trans,
576 root->fs_info->extent_root);
577 }
Liu Bo109f2362012-11-05 12:42:09 +0000578 if (ret) {
579 /* cleanup_transaction has freed this for us */
580 if (trans->aborted)
581 pending_snapshot = NULL;
Josef Bacikc37b2b62012-10-22 15:51:44 -0400582 goto fail;
Liu Bo109f2362012-11-05 12:42:09 +0000583 }
Yan, Zhenga22285a2010-05-16 10:48:46 -0400584
585 ret = pending_snapshot->error;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400586 if (ret)
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000587 goto fail;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400588
Josef Bacik66b4ffd2011-01-31 16:22:42 -0500589 ret = btrfs_orphan_cleanup(pending_snapshot->snap);
590 if (ret)
591 goto fail;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400592
Al Viro2fbe8c82011-07-16 21:38:06 -0400593 inode = btrfs_lookup_dentry(dentry->d_parent->d_inode, dentry);
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000594 if (IS_ERR(inode)) {
595 ret = PTR_ERR(inode);
596 goto fail;
597 }
598 BUG_ON(!inode);
599 d_instantiate(dentry, inode);
600 ret = 0;
601fail:
Yan, Zhenga22285a2010-05-16 10:48:46 -0400602 kfree(pending_snapshot);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400603 return ret;
604}
605
Sage Weil4260f7c2010-10-29 15:46:43 -0400606/* copy of check_sticky in fs/namei.c()
607* It's inline, so penalty for filesystems that don't use sticky bit is
608* minimal.
609*/
610static inline int btrfs_check_sticky(struct inode *dir, struct inode *inode)
611{
Eric W. Biederman2f2f43d2012-02-10 11:05:07 -0800612 kuid_t fsuid = current_fsuid();
Sage Weil4260f7c2010-10-29 15:46:43 -0400613
614 if (!(dir->i_mode & S_ISVTX))
615 return 0;
Eric W. Biederman2f2f43d2012-02-10 11:05:07 -0800616 if (uid_eq(inode->i_uid, fsuid))
Sage Weil4260f7c2010-10-29 15:46:43 -0400617 return 0;
Eric W. Biederman2f2f43d2012-02-10 11:05:07 -0800618 if (uid_eq(dir->i_uid, fsuid))
Sage Weil4260f7c2010-10-29 15:46:43 -0400619 return 0;
620 return !capable(CAP_FOWNER);
621}
622
623/* copy of may_delete in fs/namei.c()
624 * Check whether we can remove a link victim from directory dir, check
625 * whether the type of victim is right.
626 * 1. We can't do it if dir is read-only (done in permission())
627 * 2. We should have write and exec permissions on dir
628 * 3. We can't remove anything from append-only dir
629 * 4. We can't do anything with immutable dir (done in permission())
630 * 5. If the sticky bit on dir is set we should either
631 * a. be owner of dir, or
632 * b. be owner of victim, or
633 * c. have CAP_FOWNER capability
634 * 6. If the victim is append-only or immutable we can't do antyhing with
635 * links pointing to it.
636 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
637 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
638 * 9. We can't remove a root or mountpoint.
639 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
640 * nfs_async_unlink().
641 */
642
643static int btrfs_may_delete(struct inode *dir,struct dentry *victim,int isdir)
644{
645 int error;
646
647 if (!victim->d_inode)
648 return -ENOENT;
649
650 BUG_ON(victim->d_parent->d_inode != dir);
Jeff Layton4fa6b5e2012-10-10 15:25:25 -0400651 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
Sage Weil4260f7c2010-10-29 15:46:43 -0400652
653 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
654 if (error)
655 return error;
656 if (IS_APPEND(dir))
657 return -EPERM;
658 if (btrfs_check_sticky(dir, victim->d_inode)||
659 IS_APPEND(victim->d_inode)||
660 IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode))
661 return -EPERM;
662 if (isdir) {
663 if (!S_ISDIR(victim->d_inode->i_mode))
664 return -ENOTDIR;
665 if (IS_ROOT(victim))
666 return -EBUSY;
667 } else if (S_ISDIR(victim->d_inode->i_mode))
668 return -EISDIR;
669 if (IS_DEADDIR(dir))
670 return -ENOENT;
671 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
672 return -EBUSY;
673 return 0;
674}
675
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400676/* copy of may_create in fs/namei.c() */
677static inline int btrfs_may_create(struct inode *dir, struct dentry *child)
678{
679 if (child->d_inode)
680 return -EEXIST;
681 if (IS_DEADDIR(dir))
682 return -ENOENT;
683 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
684}
685
686/*
687 * Create a new subvolume below @parent. This is largely modeled after
688 * sys_mkdirat and vfs_mkdir, but we only do a single component lookup
689 * inside this filesystem so it's quite a bit simpler.
690 */
Yan, Zheng76dda932009-09-21 16:00:26 -0400691static noinline int btrfs_mksubvol(struct path *parent,
692 char *name, int namelen,
Sage Weil72fd0322010-10-29 15:41:32 -0400693 struct btrfs_root *snap_src,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200694 u64 *async_transid, bool readonly,
695 struct btrfs_qgroup_inherit **inherit)
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400696{
Yan, Zheng76dda932009-09-21 16:00:26 -0400697 struct inode *dir = parent->dentry->d_inode;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400698 struct dentry *dentry;
699 int error;
700
Yan, Zheng76dda932009-09-21 16:00:26 -0400701 mutex_lock_nested(&dir->i_mutex, I_MUTEX_PARENT);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400702
703 dentry = lookup_one_len(name, parent->dentry, namelen);
704 error = PTR_ERR(dentry);
705 if (IS_ERR(dentry))
706 goto out_unlock;
707
708 error = -EEXIST;
709 if (dentry->d_inode)
710 goto out_dput;
711
Yan, Zheng76dda932009-09-21 16:00:26 -0400712 error = btrfs_may_create(dir, dentry);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400713 if (error)
Liu Boa874a632012-06-29 03:58:46 -0600714 goto out_dput;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400715
Chris Mason9c520572012-12-17 14:26:57 -0500716 /*
717 * even if this name doesn't exist, we may get hash collisions.
718 * check for them now when we can safely fail
719 */
720 error = btrfs_check_dir_item_collision(BTRFS_I(dir)->root,
721 dir->i_ino, name,
722 namelen);
723 if (error)
724 goto out_dput;
725
Yan, Zheng76dda932009-09-21 16:00:26 -0400726 down_read(&BTRFS_I(dir)->root->fs_info->subvol_sem);
727
728 if (btrfs_root_refs(&BTRFS_I(dir)->root->root_item) == 0)
729 goto out_up_read;
730
Chris Mason3de45862008-11-17 21:02:50 -0500731 if (snap_src) {
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200732 error = create_snapshot(snap_src, dentry, name, namelen,
733 async_transid, readonly, inherit);
Chris Mason3de45862008-11-17 21:02:50 -0500734 } else {
Yan, Zheng76dda932009-09-21 16:00:26 -0400735 error = create_subvol(BTRFS_I(dir)->root, dentry,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200736 name, namelen, async_transid, inherit);
Chris Mason3de45862008-11-17 21:02:50 -0500737 }
Yan, Zheng76dda932009-09-21 16:00:26 -0400738 if (!error)
739 fsnotify_mkdir(dir, dentry);
740out_up_read:
741 up_read(&BTRFS_I(dir)->root->fs_info->subvol_sem);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400742out_dput:
743 dput(dentry);
744out_unlock:
Yan, Zheng76dda932009-09-21 16:00:26 -0400745 mutex_unlock(&dir->i_mutex);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400746 return error;
747}
748
Chris Mason4cb53002011-05-24 15:35:30 -0400749/*
750 * When we're defragging a range, we don't want to kick it off again
751 * if it is really just waiting for delalloc to send it down.
752 * If we find a nice big extent or delalloc range for the bytes in the
753 * file you want to defrag, we return 0 to let you know to skip this
754 * part of the file
755 */
756static int check_defrag_in_cache(struct inode *inode, u64 offset, int thresh)
757{
758 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
759 struct extent_map *em = NULL;
760 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
761 u64 end;
762
763 read_lock(&em_tree->lock);
764 em = lookup_extent_mapping(em_tree, offset, PAGE_CACHE_SIZE);
765 read_unlock(&em_tree->lock);
766
767 if (em) {
768 end = extent_map_end(em);
769 free_extent_map(em);
770 if (end - offset > thresh)
771 return 0;
772 }
773 /* if we already have a nice delalloc here, just stop */
774 thresh /= 2;
775 end = count_range_bits(io_tree, &offset, offset + thresh,
776 thresh, EXTENT_DELALLOC, 1);
777 if (end >= thresh)
778 return 0;
779 return 1;
780}
781
782/*
783 * helper function to walk through a file and find extents
784 * newer than a specific transid, and smaller than thresh.
785 *
786 * This is used by the defragging code to find new and small
787 * extents
788 */
789static int find_new_extents(struct btrfs_root *root,
790 struct inode *inode, u64 newer_than,
791 u64 *off, int thresh)
792{
793 struct btrfs_path *path;
794 struct btrfs_key min_key;
795 struct btrfs_key max_key;
796 struct extent_buffer *leaf;
797 struct btrfs_file_extent_item *extent;
798 int type;
799 int ret;
David Sterbaa4689d22011-05-31 17:08:14 +0000800 u64 ino = btrfs_ino(inode);
Chris Mason4cb53002011-05-24 15:35:30 -0400801
802 path = btrfs_alloc_path();
803 if (!path)
804 return -ENOMEM;
805
David Sterbaa4689d22011-05-31 17:08:14 +0000806 min_key.objectid = ino;
Chris Mason4cb53002011-05-24 15:35:30 -0400807 min_key.type = BTRFS_EXTENT_DATA_KEY;
808 min_key.offset = *off;
809
David Sterbaa4689d22011-05-31 17:08:14 +0000810 max_key.objectid = ino;
Chris Mason4cb53002011-05-24 15:35:30 -0400811 max_key.type = (u8)-1;
812 max_key.offset = (u64)-1;
813
814 path->keep_locks = 1;
815
816 while(1) {
817 ret = btrfs_search_forward(root, &min_key, &max_key,
818 path, 0, newer_than);
819 if (ret != 0)
820 goto none;
David Sterbaa4689d22011-05-31 17:08:14 +0000821 if (min_key.objectid != ino)
Chris Mason4cb53002011-05-24 15:35:30 -0400822 goto none;
823 if (min_key.type != BTRFS_EXTENT_DATA_KEY)
824 goto none;
825
826 leaf = path->nodes[0];
827 extent = btrfs_item_ptr(leaf, path->slots[0],
828 struct btrfs_file_extent_item);
829
830 type = btrfs_file_extent_type(leaf, extent);
831 if (type == BTRFS_FILE_EXTENT_REG &&
832 btrfs_file_extent_num_bytes(leaf, extent) < thresh &&
833 check_defrag_in_cache(inode, min_key.offset, thresh)) {
834 *off = min_key.offset;
835 btrfs_free_path(path);
836 return 0;
837 }
838
839 if (min_key.offset == (u64)-1)
840 goto none;
841
842 min_key.offset++;
843 btrfs_release_path(path);
844 }
845none:
846 btrfs_free_path(path);
847 return -ENOENT;
848}
849
Li Zefan6c282eb2012-06-11 16:03:35 +0800850static struct extent_map *defrag_lookup_extent(struct inode *inode, u64 start)
Liu Bo17ce6ef2012-03-29 09:57:45 -0400851{
852 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason940100a2010-03-10 10:52:59 -0500853 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Li Zefan6c282eb2012-06-11 16:03:35 +0800854 struct extent_map *em;
855 u64 len = PAGE_CACHE_SIZE;
Chris Mason940100a2010-03-10 10:52:59 -0500856
857 /*
858 * hopefully we have this extent in the tree already, try without
859 * the full extent lock
860 */
861 read_lock(&em_tree->lock);
862 em = lookup_extent_mapping(em_tree, start, len);
863 read_unlock(&em_tree->lock);
864
865 if (!em) {
866 /* get the big lock and read metadata off disk */
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100867 lock_extent(io_tree, start, start + len - 1);
Chris Mason940100a2010-03-10 10:52:59 -0500868 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100869 unlock_extent(io_tree, start, start + len - 1);
Chris Mason940100a2010-03-10 10:52:59 -0500870
Dan Carpenter6cf8bfb2010-03-20 11:22:10 +0000871 if (IS_ERR(em))
Li Zefan6c282eb2012-06-11 16:03:35 +0800872 return NULL;
Chris Mason940100a2010-03-10 10:52:59 -0500873 }
874
Li Zefan6c282eb2012-06-11 16:03:35 +0800875 return em;
876}
877
878static bool defrag_check_next_extent(struct inode *inode, struct extent_map *em)
879{
880 struct extent_map *next;
881 bool ret = true;
882
883 /* this is the last extent */
884 if (em->start + em->len >= i_size_read(inode))
885 return false;
886
887 next = defrag_lookup_extent(inode, em->start + em->len);
888 if (!next || next->block_start >= EXTENT_MAP_LAST_BYTE)
889 ret = false;
890
891 free_extent_map(next);
892 return ret;
893}
894
895static int should_defrag_range(struct inode *inode, u64 start, int thresh,
Andrew Mahonea43a2112012-06-19 21:08:32 -0400896 u64 *last_len, u64 *skip, u64 *defrag_end,
897 int compress)
Li Zefan6c282eb2012-06-11 16:03:35 +0800898{
899 struct extent_map *em;
900 int ret = 1;
901 bool next_mergeable = true;
902
903 /*
904 * make sure that once we start defragging an extent, we keep on
905 * defragging it
906 */
907 if (start < *defrag_end)
908 return 1;
909
910 *skip = 0;
911
912 em = defrag_lookup_extent(inode, start);
913 if (!em)
914 return 0;
915
Chris Mason940100a2010-03-10 10:52:59 -0500916 /* this will cover holes, and inline extents */
Liu Bo17ce6ef2012-03-29 09:57:45 -0400917 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
Chris Mason940100a2010-03-10 10:52:59 -0500918 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -0400919 goto out;
920 }
921
Li Zefan6c282eb2012-06-11 16:03:35 +0800922 next_mergeable = defrag_check_next_extent(inode, em);
Chris Mason940100a2010-03-10 10:52:59 -0500923
924 /*
Li Zefan6c282eb2012-06-11 16:03:35 +0800925 * we hit a real extent, if it is big or the next extent is not a
926 * real extent, don't bother defragging it
Chris Mason940100a2010-03-10 10:52:59 -0500927 */
Andrew Mahonea43a2112012-06-19 21:08:32 -0400928 if (!compress && (*last_len == 0 || *last_len >= thresh) &&
Li Zefan6c282eb2012-06-11 16:03:35 +0800929 (em->len >= thresh || !next_mergeable))
Chris Mason940100a2010-03-10 10:52:59 -0500930 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -0400931out:
Chris Mason940100a2010-03-10 10:52:59 -0500932 /*
933 * last_len ends up being a counter of how many bytes we've defragged.
934 * every time we choose not to defrag an extent, we reset *last_len
935 * so that the next tiny extent will force a defrag.
936 *
937 * The end result of this is that tiny extents before a single big
938 * extent will force at least part of that big extent to be defragged.
939 */
940 if (ret) {
Chris Mason940100a2010-03-10 10:52:59 -0500941 *defrag_end = extent_map_end(em);
942 } else {
943 *last_len = 0;
944 *skip = extent_map_end(em);
945 *defrag_end = 0;
946 }
947
948 free_extent_map(em);
949 return ret;
950}
951
Chris Mason4cb53002011-05-24 15:35:30 -0400952/*
953 * it doesn't do much good to defrag one or two pages
954 * at a time. This pulls in a nice chunk of pages
955 * to COW and defrag.
956 *
957 * It also makes sure the delalloc code has enough
958 * dirty data to avoid making new small extents as part
959 * of the defrag
960 *
961 * It's a good idea to start RA on this range
962 * before calling this.
963 */
964static int cluster_pages_for_defrag(struct inode *inode,
965 struct page **pages,
966 unsigned long start_index,
967 int num_pages)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400968{
Chris Mason4cb53002011-05-24 15:35:30 -0400969 unsigned long file_end;
970 u64 isize = i_size_read(inode);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400971 u64 page_start;
972 u64 page_end;
Liu Bo1f12bd02012-03-29 09:57:44 -0400973 u64 page_cnt;
Chris Mason4cb53002011-05-24 15:35:30 -0400974 int ret;
975 int i;
976 int i_done;
977 struct btrfs_ordered_extent *ordered;
978 struct extent_state *cached_state = NULL;
Miao Xie600a45e2012-02-16 15:01:24 +0800979 struct extent_io_tree *tree;
Josef Bacik3b16a4e2011-09-21 15:05:58 -0400980 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
Chris Mason4cb53002011-05-24 15:35:30 -0400981
Chris Mason4cb53002011-05-24 15:35:30 -0400982 file_end = (isize - 1) >> PAGE_CACHE_SHIFT;
Liu Bo1f12bd02012-03-29 09:57:44 -0400983 if (!isize || start_index > file_end)
984 return 0;
985
986 page_cnt = min_t(u64, (u64)num_pages, (u64)file_end - start_index + 1);
Chris Mason4cb53002011-05-24 15:35:30 -0400987
988 ret = btrfs_delalloc_reserve_space(inode,
Liu Bo1f12bd02012-03-29 09:57:44 -0400989 page_cnt << PAGE_CACHE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -0400990 if (ret)
991 return ret;
Chris Mason4cb53002011-05-24 15:35:30 -0400992 i_done = 0;
Miao Xie600a45e2012-02-16 15:01:24 +0800993 tree = &BTRFS_I(inode)->io_tree;
Chris Mason4cb53002011-05-24 15:35:30 -0400994
995 /* step one, lock all the pages */
Liu Bo1f12bd02012-03-29 09:57:44 -0400996 for (i = 0; i < page_cnt; i++) {
Chris Mason4cb53002011-05-24 15:35:30 -0400997 struct page *page;
Miao Xie600a45e2012-02-16 15:01:24 +0800998again:
Josef Bacika94733d2011-07-11 10:47:06 -0400999 page = find_or_create_page(inode->i_mapping,
Miao Xie600a45e2012-02-16 15:01:24 +08001000 start_index + i, mask);
Chris Mason4cb53002011-05-24 15:35:30 -04001001 if (!page)
1002 break;
1003
Miao Xie600a45e2012-02-16 15:01:24 +08001004 page_start = page_offset(page);
1005 page_end = page_start + PAGE_CACHE_SIZE - 1;
1006 while (1) {
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001007 lock_extent(tree, page_start, page_end);
Miao Xie600a45e2012-02-16 15:01:24 +08001008 ordered = btrfs_lookup_ordered_extent(inode,
1009 page_start);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001010 unlock_extent(tree, page_start, page_end);
Miao Xie600a45e2012-02-16 15:01:24 +08001011 if (!ordered)
1012 break;
1013
1014 unlock_page(page);
1015 btrfs_start_ordered_extent(inode, ordered, 1);
1016 btrfs_put_ordered_extent(ordered);
1017 lock_page(page);
Liu Bo1f12bd02012-03-29 09:57:44 -04001018 /*
1019 * we unlocked the page above, so we need check if
1020 * it was released or not.
1021 */
1022 if (page->mapping != inode->i_mapping) {
1023 unlock_page(page);
1024 page_cache_release(page);
1025 goto again;
1026 }
Miao Xie600a45e2012-02-16 15:01:24 +08001027 }
1028
Chris Mason4cb53002011-05-24 15:35:30 -04001029 if (!PageUptodate(page)) {
1030 btrfs_readpage(NULL, page);
1031 lock_page(page);
1032 if (!PageUptodate(page)) {
1033 unlock_page(page);
1034 page_cache_release(page);
1035 ret = -EIO;
1036 break;
1037 }
1038 }
Miao Xie600a45e2012-02-16 15:01:24 +08001039
Miao Xie600a45e2012-02-16 15:01:24 +08001040 if (page->mapping != inode->i_mapping) {
1041 unlock_page(page);
1042 page_cache_release(page);
1043 goto again;
1044 }
1045
Chris Mason4cb53002011-05-24 15:35:30 -04001046 pages[i] = page;
1047 i_done++;
1048 }
1049 if (!i_done || ret)
1050 goto out;
1051
1052 if (!(inode->i_sb->s_flags & MS_ACTIVE))
1053 goto out;
1054
1055 /*
1056 * so now we have a nice long stream of locked
1057 * and up to date pages, lets wait on them
1058 */
1059 for (i = 0; i < i_done; i++)
1060 wait_on_page_writeback(pages[i]);
1061
1062 page_start = page_offset(pages[0]);
1063 page_end = page_offset(pages[i_done - 1]) + PAGE_CACHE_SIZE;
1064
1065 lock_extent_bits(&BTRFS_I(inode)->io_tree,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001066 page_start, page_end - 1, 0, &cached_state);
Chris Mason4cb53002011-05-24 15:35:30 -04001067 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start,
1068 page_end - 1, EXTENT_DIRTY | EXTENT_DELALLOC |
Liu Bo9e8a4a82012-09-05 19:10:51 -06001069 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, 0, 0,
1070 &cached_state, GFP_NOFS);
Chris Mason4cb53002011-05-24 15:35:30 -04001071
Liu Bo1f12bd02012-03-29 09:57:44 -04001072 if (i_done != page_cnt) {
Josef Bacik9e0baf62011-07-15 15:16:44 +00001073 spin_lock(&BTRFS_I(inode)->lock);
1074 BTRFS_I(inode)->outstanding_extents++;
1075 spin_unlock(&BTRFS_I(inode)->lock);
Chris Mason4cb53002011-05-24 15:35:30 -04001076 btrfs_delalloc_release_space(inode,
Liu Bo1f12bd02012-03-29 09:57:44 -04001077 (page_cnt - i_done) << PAGE_CACHE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001078 }
1079
1080
Liu Bo9e8a4a82012-09-05 19:10:51 -06001081 set_extent_defrag(&BTRFS_I(inode)->io_tree, page_start, page_end - 1,
1082 &cached_state, GFP_NOFS);
Chris Mason4cb53002011-05-24 15:35:30 -04001083
1084 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
1085 page_start, page_end - 1, &cached_state,
1086 GFP_NOFS);
1087
1088 for (i = 0; i < i_done; i++) {
1089 clear_page_dirty_for_io(pages[i]);
1090 ClearPageChecked(pages[i]);
1091 set_page_extent_mapped(pages[i]);
1092 set_page_dirty(pages[i]);
1093 unlock_page(pages[i]);
1094 page_cache_release(pages[i]);
1095 }
1096 return i_done;
1097out:
1098 for (i = 0; i < i_done; i++) {
1099 unlock_page(pages[i]);
1100 page_cache_release(pages[i]);
1101 }
Liu Bo1f12bd02012-03-29 09:57:44 -04001102 btrfs_delalloc_release_space(inode, page_cnt << PAGE_CACHE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001103 return ret;
1104
1105}
1106
1107int btrfs_defrag_file(struct inode *inode, struct file *file,
1108 struct btrfs_ioctl_defrag_range_args *range,
1109 u64 newer_than, unsigned long max_to_defrag)
1110{
1111 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason4cb53002011-05-24 15:35:30 -04001112 struct file_ra_state *ra = NULL;
1113 unsigned long last_index;
Li Zefan151a31b2011-09-02 15:56:39 +08001114 u64 isize = i_size_read(inode);
Chris Mason940100a2010-03-10 10:52:59 -05001115 u64 last_len = 0;
1116 u64 skip = 0;
1117 u64 defrag_end = 0;
Chris Mason4cb53002011-05-24 15:35:30 -04001118 u64 newer_off = range->start;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001119 unsigned long i;
Li Zefan008873e2011-09-02 15:57:07 +08001120 unsigned long ra_index = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001121 int ret;
Chris Mason4cb53002011-05-24 15:35:30 -04001122 int defrag_count = 0;
Li Zefan1a419d82010-10-25 15:12:50 +08001123 int compress_type = BTRFS_COMPRESS_ZLIB;
Chris Mason4cb53002011-05-24 15:35:30 -04001124 int extent_thresh = range->extent_thresh;
Li Zefan008873e2011-09-02 15:57:07 +08001125 int max_cluster = (256 * 1024) >> PAGE_CACHE_SHIFT;
1126 int cluster = max_cluster;
Chris Mason4cb53002011-05-24 15:35:30 -04001127 u64 new_align = ~((u64)128 * 1024 - 1);
1128 struct page **pages = NULL;
1129
1130 if (extent_thresh == 0)
1131 extent_thresh = 256 * 1024;
Li Zefan1a419d82010-10-25 15:12:50 +08001132
1133 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS) {
1134 if (range->compress_type > BTRFS_COMPRESS_TYPES)
1135 return -EINVAL;
1136 if (range->compress_type)
1137 compress_type = range->compress_type;
1138 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001139
Li Zefan151a31b2011-09-02 15:56:39 +08001140 if (isize == 0)
Chris Mason940100a2010-03-10 10:52:59 -05001141 return 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001142
Chris Mason4cb53002011-05-24 15:35:30 -04001143 /*
1144 * if we were not given a file, allocate a readahead
1145 * context
1146 */
1147 if (!file) {
1148 ra = kzalloc(sizeof(*ra), GFP_NOFS);
1149 if (!ra)
1150 return -ENOMEM;
1151 file_ra_state_init(ra, inode->i_mapping);
1152 } else {
1153 ra = &file->f_ra;
1154 }
1155
Li Zefan008873e2011-09-02 15:57:07 +08001156 pages = kmalloc(sizeof(struct page *) * max_cluster,
Chris Mason4cb53002011-05-24 15:35:30 -04001157 GFP_NOFS);
1158 if (!pages) {
1159 ret = -ENOMEM;
1160 goto out_ra;
1161 }
1162
1163 /* find the last page to defrag */
Chris Mason1e701a32010-03-11 09:42:04 -05001164 if (range->start + range->len > range->start) {
Li Zefan151a31b2011-09-02 15:56:39 +08001165 last_index = min_t(u64, isize - 1,
Chris Mason1e701a32010-03-11 09:42:04 -05001166 range->start + range->len - 1) >> PAGE_CACHE_SHIFT;
1167 } else {
Li Zefan151a31b2011-09-02 15:56:39 +08001168 last_index = (isize - 1) >> PAGE_CACHE_SHIFT;
Chris Mason1e701a32010-03-11 09:42:04 -05001169 }
1170
Chris Mason4cb53002011-05-24 15:35:30 -04001171 if (newer_than) {
1172 ret = find_new_extents(root, inode, newer_than,
1173 &newer_off, 64 * 1024);
1174 if (!ret) {
1175 range->start = newer_off;
1176 /*
1177 * we always align our defrag to help keep
1178 * the extents in the file evenly spaced
1179 */
1180 i = (newer_off & new_align) >> PAGE_CACHE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001181 } else
1182 goto out_ra;
1183 } else {
1184 i = range->start >> PAGE_CACHE_SHIFT;
1185 }
1186 if (!max_to_defrag)
Liu Bo7ec31b52012-01-26 15:01:12 -05001187 max_to_defrag = last_index + 1;
Chris Mason4cb53002011-05-24 15:35:30 -04001188
Li Zefan2a0f7f52011-10-10 15:43:34 -04001189 /*
1190 * make writeback starts from i, so the defrag range can be
1191 * written sequentially.
1192 */
1193 if (i < inode->i_mapping->writeback_index)
1194 inode->i_mapping->writeback_index = i;
1195
Chris Masonf7f43cc2011-10-11 11:41:40 -04001196 while (i <= last_index && defrag_count < max_to_defrag &&
1197 (i < (i_size_read(inode) + PAGE_CACHE_SIZE - 1) >>
1198 PAGE_CACHE_SHIFT)) {
Chris Mason4cb53002011-05-24 15:35:30 -04001199 /*
1200 * make sure we stop running if someone unmounts
1201 * the FS
1202 */
1203 if (!(inode->i_sb->s_flags & MS_ACTIVE))
1204 break;
1205
Liu Bo66c26892012-03-29 09:57:45 -04001206 if (!should_defrag_range(inode, (u64)i << PAGE_CACHE_SHIFT,
Li Zefan6c282eb2012-06-11 16:03:35 +08001207 extent_thresh, &last_len, &skip,
Andrew Mahonea43a2112012-06-19 21:08:32 -04001208 &defrag_end, range->flags &
1209 BTRFS_DEFRAG_RANGE_COMPRESS)) {
Chris Mason940100a2010-03-10 10:52:59 -05001210 unsigned long next;
1211 /*
1212 * the should_defrag function tells us how much to skip
1213 * bump our counter by the suggested amount
1214 */
1215 next = (skip + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
1216 i = max(i + 1, next);
1217 continue;
1218 }
Li Zefan008873e2011-09-02 15:57:07 +08001219
1220 if (!newer_than) {
1221 cluster = (PAGE_CACHE_ALIGN(defrag_end) >>
1222 PAGE_CACHE_SHIFT) - i;
1223 cluster = min(cluster, max_cluster);
1224 } else {
1225 cluster = max_cluster;
1226 }
1227
Chris Mason1e701a32010-03-11 09:42:04 -05001228 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)
Li Zefan1a419d82010-10-25 15:12:50 +08001229 BTRFS_I(inode)->force_compress = compress_type;
Chris Mason940100a2010-03-10 10:52:59 -05001230
Li Zefan008873e2011-09-02 15:57:07 +08001231 if (i + cluster > ra_index) {
1232 ra_index = max(i, ra_index);
1233 btrfs_force_ra(inode->i_mapping, ra, file, ra_index,
1234 cluster);
1235 ra_index += max_cluster;
1236 }
Chris Mason940100a2010-03-10 10:52:59 -05001237
Liu Boecb8bea2012-03-29 09:57:44 -04001238 mutex_lock(&inode->i_mutex);
Li Zefan008873e2011-09-02 15:57:07 +08001239 ret = cluster_pages_for_defrag(inode, pages, i, cluster);
Liu Boecb8bea2012-03-29 09:57:44 -04001240 if (ret < 0) {
1241 mutex_unlock(&inode->i_mutex);
Chris Mason4cb53002011-05-24 15:35:30 -04001242 goto out_ra;
Liu Boecb8bea2012-03-29 09:57:44 -04001243 }
Chris Mason940100a2010-03-10 10:52:59 -05001244
Chris Mason4cb53002011-05-24 15:35:30 -04001245 defrag_count += ret;
1246 balance_dirty_pages_ratelimited_nr(inode->i_mapping, ret);
Liu Boecb8bea2012-03-29 09:57:44 -04001247 mutex_unlock(&inode->i_mutex);
Chris Mason4cb53002011-05-24 15:35:30 -04001248
1249 if (newer_than) {
1250 if (newer_off == (u64)-1)
1251 break;
1252
Liu Boe1f041e2012-03-29 09:57:45 -04001253 if (ret > 0)
1254 i += ret;
1255
Chris Mason4cb53002011-05-24 15:35:30 -04001256 newer_off = max(newer_off + 1,
1257 (u64)i << PAGE_CACHE_SHIFT);
1258
1259 ret = find_new_extents(root, inode,
1260 newer_than, &newer_off,
1261 64 * 1024);
1262 if (!ret) {
1263 range->start = newer_off;
1264 i = (newer_off & new_align) >> PAGE_CACHE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001265 } else {
1266 break;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001267 }
Chris Mason4cb53002011-05-24 15:35:30 -04001268 } else {
Li Zefan008873e2011-09-02 15:57:07 +08001269 if (ret > 0) {
Li Zefancbcc8322011-09-02 15:56:25 +08001270 i += ret;
Li Zefan008873e2011-09-02 15:57:07 +08001271 last_len += ret << PAGE_CACHE_SHIFT;
1272 } else {
Li Zefancbcc8322011-09-02 15:56:25 +08001273 i++;
Li Zefan008873e2011-09-02 15:57:07 +08001274 last_len = 0;
1275 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001276 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001277 }
1278
Chris Mason1e701a32010-03-11 09:42:04 -05001279 if ((range->flags & BTRFS_DEFRAG_RANGE_START_IO))
1280 filemap_flush(inode->i_mapping);
1281
1282 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
1283 /* the filemap_flush will queue IO into the worker threads, but
1284 * we have to make sure the IO is actually started and that
1285 * ordered extents get created before we return
1286 */
1287 atomic_inc(&root->fs_info->async_submit_draining);
1288 while (atomic_read(&root->fs_info->nr_async_submits) ||
1289 atomic_read(&root->fs_info->async_delalloc_pages)) {
1290 wait_event(root->fs_info->async_submit_wait,
1291 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
1292 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
1293 }
1294 atomic_dec(&root->fs_info->async_submit_draining);
1295
1296 mutex_lock(&inode->i_mutex);
Li Zefan261507a02010-12-17 14:21:50 +08001297 BTRFS_I(inode)->force_compress = BTRFS_COMPRESS_NONE;
Chris Mason1e701a32010-03-11 09:42:04 -05001298 mutex_unlock(&inode->i_mutex);
1299 }
1300
Li Zefan1a419d82010-10-25 15:12:50 +08001301 if (range->compress_type == BTRFS_COMPRESS_LZO) {
Mitch Harder2b0ce2c2012-07-24 11:58:43 -06001302 btrfs_set_fs_incompat(root->fs_info, COMPRESS_LZO);
Li Zefan1a419d82010-10-25 15:12:50 +08001303 }
1304
Diego Calleja60ccf822011-09-01 16:33:57 +02001305 ret = defrag_count;
Chris Mason940100a2010-03-10 10:52:59 -05001306
Chris Mason4cb53002011-05-24 15:35:30 -04001307out_ra:
1308 if (!file)
1309 kfree(ra);
1310 kfree(pages);
Chris Mason940100a2010-03-10 10:52:59 -05001311 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001312}
1313
Miao Xie198605a2012-11-26 08:43:45 +00001314static noinline int btrfs_ioctl_resize(struct file *file,
Yan, Zheng76dda932009-09-21 16:00:26 -04001315 void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001316{
1317 u64 new_size;
1318 u64 old_size;
1319 u64 devid = 1;
Miao Xie198605a2012-11-26 08:43:45 +00001320 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001321 struct btrfs_ioctl_vol_args *vol_args;
1322 struct btrfs_trans_handle *trans;
1323 struct btrfs_device *device = NULL;
1324 char *sizestr;
1325 char *devstr = NULL;
1326 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001327 int mod = 0;
1328
Yan Zhengc146afa2008-11-12 14:34:12 -05001329 if (root->fs_info->sb->s_flags & MS_RDONLY)
1330 return -EROFS;
1331
Chris Masone441d542009-01-05 16:57:23 -05001332 if (!capable(CAP_SYS_ADMIN))
1333 return -EPERM;
1334
Miao Xie198605a2012-11-26 08:43:45 +00001335 ret = mnt_want_write_file(file);
1336 if (ret)
1337 return ret;
1338
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01001339 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
1340 1)) {
1341 pr_info("btrfs: dev add/delete/balance/replace/resize operation in progress\n");
Miao Xie97547672012-12-21 10:38:50 +00001342 mnt_drop_write_file(file);
Ilya Dryomov2c0c9da2013-01-20 15:57:57 +02001343 return -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001344 }
1345
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01001346 mutex_lock(&root->fs_info->volume_mutex);
Li Zefandae7b662009-04-08 15:06:54 +08001347 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001348 if (IS_ERR(vol_args)) {
1349 ret = PTR_ERR(vol_args);
1350 goto out;
1351 }
Mark Fasheh5516e592008-07-24 12:20:14 -04001352
1353 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001354
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001355 sizestr = vol_args->name;
1356 devstr = strchr(sizestr, ':');
1357 if (devstr) {
1358 char *end;
1359 sizestr = devstr + 1;
1360 *devstr = '\0';
1361 devstr = vol_args->name;
1362 devid = simple_strtoull(devstr, &end, 10);
Arnd Hannemann5bb14682011-11-20 07:33:38 -05001363 printk(KERN_INFO "btrfs: resizing devid %llu\n",
Joel Becker21380932009-04-21 12:38:29 -07001364 (unsigned long long)devid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001365 }
Miao Xiedba60f32012-12-21 09:19:51 +00001366
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01001367 device = btrfs_find_device(root->fs_info, devid, NULL, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001368 if (!device) {
Arnd Hannemann5bb14682011-11-20 07:33:38 -05001369 printk(KERN_INFO "btrfs: resizer unable to find device %llu\n",
Joel Becker21380932009-04-21 12:38:29 -07001370 (unsigned long long)devid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001371 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001372 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001373 }
Miao Xiedba60f32012-12-21 09:19:51 +00001374
1375 if (!device->writeable) {
Liu Bo4e42ae12012-06-14 02:23:19 -06001376 printk(KERN_INFO "btrfs: resizer unable to apply on "
Miao Xiedba60f32012-12-21 09:19:51 +00001377 "readonly device %llu\n",
Chris Masona8c4a332012-06-15 20:07:17 -04001378 (unsigned long long)devid);
Liu Bo4e42ae12012-06-14 02:23:19 -06001379 ret = -EINVAL;
1380 goto out_free;
1381 }
1382
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001383 if (!strcmp(sizestr, "max"))
1384 new_size = device->bdev->bd_inode->i_size;
1385 else {
1386 if (sizestr[0] == '-') {
1387 mod = -1;
1388 sizestr++;
1389 } else if (sizestr[0] == '+') {
1390 mod = 1;
1391 sizestr++;
1392 }
Akinobu Mita91748462010-02-28 10:59:11 +00001393 new_size = memparse(sizestr, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001394 if (new_size == 0) {
1395 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001396 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001397 }
1398 }
1399
Stefan Behrens63a212a2012-11-05 18:29:28 +01001400 if (device->is_tgtdev_for_dev_replace) {
1401 ret = -EINVAL;
1402 goto out_free;
1403 }
1404
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001405 old_size = device->total_bytes;
1406
1407 if (mod < 0) {
1408 if (new_size > old_size) {
1409 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001410 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001411 }
1412 new_size = old_size - new_size;
1413 } else if (mod > 0) {
1414 new_size = old_size + new_size;
1415 }
1416
1417 if (new_size < 256 * 1024 * 1024) {
1418 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001419 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001420 }
1421 if (new_size > device->bdev->bd_inode->i_size) {
1422 ret = -EFBIG;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001423 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001424 }
1425
1426 do_div(new_size, root->sectorsize);
1427 new_size *= root->sectorsize;
1428
Josef Bacik606686e2012-06-04 14:03:51 -04001429 printk_in_rcu(KERN_INFO "btrfs: new size for %s is %llu\n",
1430 rcu_str_deref(device->name),
1431 (unsigned long long)new_size);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001432
1433 if (new_size > old_size) {
Yan, Zhenga22285a2010-05-16 10:48:46 -04001434 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001435 if (IS_ERR(trans)) {
1436 ret = PTR_ERR(trans);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001437 goto out_free;
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001438 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001439 ret = btrfs_grow_device(trans, device, new_size);
1440 btrfs_commit_transaction(trans, root);
Mike Fleetwoodece7d202011-11-18 18:55:01 +00001441 } else if (new_size < old_size) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001442 ret = btrfs_shrink_device(device, new_size);
jeff.liu0253f402012-10-27 12:06:39 +00001443 } /* equal, nothing need to do */
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001444
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001445out_free:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001446 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001447out:
1448 mutex_unlock(&root->fs_info->volume_mutex);
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01001449 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
Ilya Dryomov18f39c42013-01-20 15:57:57 +02001450 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001451 return ret;
1452}
1453
Sage Weil72fd0322010-10-29 15:41:32 -04001454static noinline int btrfs_ioctl_snap_create_transid(struct file *file,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001455 char *name, unsigned long fd, int subvol,
1456 u64 *transid, bool readonly,
1457 struct btrfs_qgroup_inherit **inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001458{
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001459 int namelen;
Chris Mason3de45862008-11-17 21:02:50 -05001460 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001461
Liu Boa874a632012-06-29 03:58:46 -06001462 ret = mnt_want_write_file(file);
1463 if (ret)
1464 goto out;
1465
Sage Weil72fd0322010-10-29 15:41:32 -04001466 namelen = strlen(name);
1467 if (strchr(name, '/')) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001468 ret = -EINVAL;
Liu Boa874a632012-06-29 03:58:46 -06001469 goto out_drop_write;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001470 }
1471
Chris Mason16780ca2012-02-20 22:14:55 -05001472 if (name[0] == '.' &&
1473 (namelen == 1 || (name[1] == '.' && namelen == 2))) {
1474 ret = -EEXIST;
Liu Boa874a632012-06-29 03:58:46 -06001475 goto out_drop_write;
Chris Mason16780ca2012-02-20 22:14:55 -05001476 }
1477
Chris Mason3de45862008-11-17 21:02:50 -05001478 if (subvol) {
Sage Weil72fd0322010-10-29 15:41:32 -04001479 ret = btrfs_mksubvol(&file->f_path, name, namelen,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001480 NULL, transid, readonly, inherit);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001481 } else {
Al Viro2903ff02012-08-28 12:52:22 -04001482 struct fd src = fdget(fd);
Chris Mason3de45862008-11-17 21:02:50 -05001483 struct inode *src_inode;
Al Viro2903ff02012-08-28 12:52:22 -04001484 if (!src.file) {
Chris Mason3de45862008-11-17 21:02:50 -05001485 ret = -EINVAL;
Liu Boa874a632012-06-29 03:58:46 -06001486 goto out_drop_write;
Chris Mason3de45862008-11-17 21:02:50 -05001487 }
1488
Al Viro2903ff02012-08-28 12:52:22 -04001489 src_inode = src.file->f_path.dentry->d_inode;
Chris Mason3de45862008-11-17 21:02:50 -05001490 if (src_inode->i_sb != file->f_path.dentry->d_inode->i_sb) {
Chris Masond3977122009-01-05 21:25:51 -05001491 printk(KERN_INFO "btrfs: Snapshot src from "
1492 "another FS\n");
Chris Mason3de45862008-11-17 21:02:50 -05001493 ret = -EINVAL;
Al Viroecd18812012-08-26 21:20:24 -04001494 } else {
1495 ret = btrfs_mksubvol(&file->f_path, name, namelen,
1496 BTRFS_I(src_inode)->root,
1497 transid, readonly, inherit);
Chris Mason3de45862008-11-17 21:02:50 -05001498 }
Al Viro2903ff02012-08-28 12:52:22 -04001499 fdput(src);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001500 }
Liu Boa874a632012-06-29 03:58:46 -06001501out_drop_write:
1502 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001503out:
Sage Weil72fd0322010-10-29 15:41:32 -04001504 return ret;
1505}
1506
1507static noinline int btrfs_ioctl_snap_create(struct file *file,
Li Zefanfa0d2b92010-12-20 15:53:28 +08001508 void __user *arg, int subvol)
Sage Weil72fd0322010-10-29 15:41:32 -04001509{
Li Zefanfa0d2b92010-12-20 15:53:28 +08001510 struct btrfs_ioctl_vol_args *vol_args;
Sage Weil72fd0322010-10-29 15:41:32 -04001511 int ret;
1512
Li Zefanfa0d2b92010-12-20 15:53:28 +08001513 vol_args = memdup_user(arg, sizeof(*vol_args));
1514 if (IS_ERR(vol_args))
1515 return PTR_ERR(vol_args);
1516 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Sage Weil72fd0322010-10-29 15:41:32 -04001517
Li Zefanfa0d2b92010-12-20 15:53:28 +08001518 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
Li Zefanb83cc962010-12-20 16:04:08 +08001519 vol_args->fd, subvol,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001520 NULL, false, NULL);
Li Zefanfdfb1e42010-12-10 06:41:56 +00001521
Li Zefanfa0d2b92010-12-20 15:53:28 +08001522 kfree(vol_args);
1523 return ret;
1524}
Li Zefanfdfb1e42010-12-10 06:41:56 +00001525
Li Zefanfa0d2b92010-12-20 15:53:28 +08001526static noinline int btrfs_ioctl_snap_create_v2(struct file *file,
1527 void __user *arg, int subvol)
1528{
1529 struct btrfs_ioctl_vol_args_v2 *vol_args;
1530 int ret;
1531 u64 transid = 0;
1532 u64 *ptr = NULL;
Li Zefanb83cc962010-12-20 16:04:08 +08001533 bool readonly = false;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001534 struct btrfs_qgroup_inherit *inherit = NULL;
Li Zefanfdfb1e42010-12-10 06:41:56 +00001535
Li Zefanfa0d2b92010-12-20 15:53:28 +08001536 vol_args = memdup_user(arg, sizeof(*vol_args));
1537 if (IS_ERR(vol_args))
1538 return PTR_ERR(vol_args);
1539 vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
Sage Weil75eaa0e2010-12-10 00:36:28 +00001540
Li Zefanb83cc962010-12-20 16:04:08 +08001541 if (vol_args->flags &
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001542 ~(BTRFS_SUBVOL_CREATE_ASYNC | BTRFS_SUBVOL_RDONLY |
1543 BTRFS_SUBVOL_QGROUP_INHERIT)) {
Li Zefanb83cc962010-12-20 16:04:08 +08001544 ret = -EOPNOTSUPP;
Li Zefanfa0d2b92010-12-20 15:53:28 +08001545 goto out;
Sage Weil72fd0322010-10-29 15:41:32 -04001546 }
Li Zefanfa0d2b92010-12-20 15:53:28 +08001547
1548 if (vol_args->flags & BTRFS_SUBVOL_CREATE_ASYNC)
1549 ptr = &transid;
Li Zefanb83cc962010-12-20 16:04:08 +08001550 if (vol_args->flags & BTRFS_SUBVOL_RDONLY)
1551 readonly = true;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001552 if (vol_args->flags & BTRFS_SUBVOL_QGROUP_INHERIT) {
1553 if (vol_args->size > PAGE_CACHE_SIZE) {
1554 ret = -EINVAL;
1555 goto out;
1556 }
1557 inherit = memdup_user(vol_args->qgroup_inherit, vol_args->size);
1558 if (IS_ERR(inherit)) {
1559 ret = PTR_ERR(inherit);
1560 goto out;
1561 }
1562 }
Li Zefanfa0d2b92010-12-20 15:53:28 +08001563
1564 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001565 vol_args->fd, subvol, ptr,
1566 readonly, &inherit);
Li Zefanfa0d2b92010-12-20 15:53:28 +08001567
1568 if (ret == 0 && ptr &&
1569 copy_to_user(arg +
1570 offsetof(struct btrfs_ioctl_vol_args_v2,
1571 transid), ptr, sizeof(*ptr)))
1572 ret = -EFAULT;
Li Zefanfdfb1e42010-12-10 06:41:56 +00001573out:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001574 kfree(vol_args);
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001575 kfree(inherit);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001576 return ret;
1577}
1578
Li Zefan0caa1022010-12-20 16:30:25 +08001579static noinline int btrfs_ioctl_subvol_getflags(struct file *file,
1580 void __user *arg)
1581{
1582 struct inode *inode = fdentry(file)->d_inode;
1583 struct btrfs_root *root = BTRFS_I(inode)->root;
1584 int ret = 0;
1585 u64 flags = 0;
1586
Li Zefan33345d012011-04-20 10:31:50 +08001587 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID)
Li Zefan0caa1022010-12-20 16:30:25 +08001588 return -EINVAL;
1589
1590 down_read(&root->fs_info->subvol_sem);
1591 if (btrfs_root_readonly(root))
1592 flags |= BTRFS_SUBVOL_RDONLY;
1593 up_read(&root->fs_info->subvol_sem);
1594
1595 if (copy_to_user(arg, &flags, sizeof(flags)))
1596 ret = -EFAULT;
1597
1598 return ret;
1599}
1600
1601static noinline int btrfs_ioctl_subvol_setflags(struct file *file,
1602 void __user *arg)
1603{
1604 struct inode *inode = fdentry(file)->d_inode;
1605 struct btrfs_root *root = BTRFS_I(inode)->root;
1606 struct btrfs_trans_handle *trans;
1607 u64 root_flags;
1608 u64 flags;
1609 int ret = 0;
1610
Liu Bob9ca0662012-06-29 03:58:49 -06001611 ret = mnt_want_write_file(file);
1612 if (ret)
1613 goto out;
Li Zefan0caa1022010-12-20 16:30:25 +08001614
Liu Bob9ca0662012-06-29 03:58:49 -06001615 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
1616 ret = -EINVAL;
1617 goto out_drop_write;
1618 }
Li Zefan0caa1022010-12-20 16:30:25 +08001619
Liu Bob9ca0662012-06-29 03:58:49 -06001620 if (copy_from_user(&flags, arg, sizeof(flags))) {
1621 ret = -EFAULT;
1622 goto out_drop_write;
1623 }
Li Zefan0caa1022010-12-20 16:30:25 +08001624
Liu Bob9ca0662012-06-29 03:58:49 -06001625 if (flags & BTRFS_SUBVOL_CREATE_ASYNC) {
1626 ret = -EINVAL;
1627 goto out_drop_write;
1628 }
Li Zefan0caa1022010-12-20 16:30:25 +08001629
Liu Bob9ca0662012-06-29 03:58:49 -06001630 if (flags & ~BTRFS_SUBVOL_RDONLY) {
1631 ret = -EOPNOTSUPP;
1632 goto out_drop_write;
1633 }
Li Zefan0caa1022010-12-20 16:30:25 +08001634
Liu Bob9ca0662012-06-29 03:58:49 -06001635 if (!inode_owner_or_capable(inode)) {
1636 ret = -EACCES;
1637 goto out_drop_write;
1638 }
Li Zefanb4dc2b82011-02-16 06:06:34 +00001639
Li Zefan0caa1022010-12-20 16:30:25 +08001640 down_write(&root->fs_info->subvol_sem);
1641
1642 /* nothing to do */
1643 if (!!(flags & BTRFS_SUBVOL_RDONLY) == btrfs_root_readonly(root))
Liu Bob9ca0662012-06-29 03:58:49 -06001644 goto out_drop_sem;
Li Zefan0caa1022010-12-20 16:30:25 +08001645
1646 root_flags = btrfs_root_flags(&root->root_item);
1647 if (flags & BTRFS_SUBVOL_RDONLY)
1648 btrfs_set_root_flags(&root->root_item,
1649 root_flags | BTRFS_ROOT_SUBVOL_RDONLY);
1650 else
1651 btrfs_set_root_flags(&root->root_item,
1652 root_flags & ~BTRFS_ROOT_SUBVOL_RDONLY);
1653
1654 trans = btrfs_start_transaction(root, 1);
1655 if (IS_ERR(trans)) {
1656 ret = PTR_ERR(trans);
1657 goto out_reset;
1658 }
1659
Li Zefanb4dc2b82011-02-16 06:06:34 +00001660 ret = btrfs_update_root(trans, root->fs_info->tree_root,
Li Zefan0caa1022010-12-20 16:30:25 +08001661 &root->root_key, &root->root_item);
1662
1663 btrfs_commit_transaction(trans, root);
1664out_reset:
1665 if (ret)
1666 btrfs_set_root_flags(&root->root_item, root_flags);
Liu Bob9ca0662012-06-29 03:58:49 -06001667out_drop_sem:
Li Zefan0caa1022010-12-20 16:30:25 +08001668 up_write(&root->fs_info->subvol_sem);
Liu Bob9ca0662012-06-29 03:58:49 -06001669out_drop_write:
1670 mnt_drop_write_file(file);
1671out:
Li Zefan0caa1022010-12-20 16:30:25 +08001672 return ret;
1673}
1674
Yan, Zheng76dda932009-09-21 16:00:26 -04001675/*
1676 * helper to check if the subvolume references other subvolumes
1677 */
1678static noinline int may_destroy_subvol(struct btrfs_root *root)
1679{
1680 struct btrfs_path *path;
1681 struct btrfs_key key;
1682 int ret;
1683
1684 path = btrfs_alloc_path();
1685 if (!path)
1686 return -ENOMEM;
1687
1688 key.objectid = root->root_key.objectid;
1689 key.type = BTRFS_ROOT_REF_KEY;
1690 key.offset = (u64)-1;
1691
1692 ret = btrfs_search_slot(NULL, root->fs_info->tree_root,
1693 &key, path, 0, 0);
1694 if (ret < 0)
1695 goto out;
1696 BUG_ON(ret == 0);
1697
1698 ret = 0;
1699 if (path->slots[0] > 0) {
1700 path->slots[0]--;
1701 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1702 if (key.objectid == root->root_key.objectid &&
1703 key.type == BTRFS_ROOT_REF_KEY)
1704 ret = -ENOTEMPTY;
1705 }
1706out:
1707 btrfs_free_path(path);
1708 return ret;
1709}
1710
Chris Masonac8e9812010-02-28 15:39:26 -05001711static noinline int key_in_sk(struct btrfs_key *key,
1712 struct btrfs_ioctl_search_key *sk)
1713{
Chris Masonabc6e132010-03-18 12:10:08 -04001714 struct btrfs_key test;
1715 int ret;
1716
1717 test.objectid = sk->min_objectid;
1718 test.type = sk->min_type;
1719 test.offset = sk->min_offset;
1720
1721 ret = btrfs_comp_cpu_keys(key, &test);
1722 if (ret < 0)
Chris Masonac8e9812010-02-28 15:39:26 -05001723 return 0;
Chris Masonabc6e132010-03-18 12:10:08 -04001724
1725 test.objectid = sk->max_objectid;
1726 test.type = sk->max_type;
1727 test.offset = sk->max_offset;
1728
1729 ret = btrfs_comp_cpu_keys(key, &test);
1730 if (ret > 0)
Chris Masonac8e9812010-02-28 15:39:26 -05001731 return 0;
1732 return 1;
1733}
1734
1735static noinline int copy_to_sk(struct btrfs_root *root,
1736 struct btrfs_path *path,
1737 struct btrfs_key *key,
1738 struct btrfs_ioctl_search_key *sk,
1739 char *buf,
1740 unsigned long *sk_offset,
1741 int *num_found)
1742{
1743 u64 found_transid;
1744 struct extent_buffer *leaf;
1745 struct btrfs_ioctl_search_header sh;
1746 unsigned long item_off;
1747 unsigned long item_len;
1748 int nritems;
1749 int i;
1750 int slot;
Chris Masonac8e9812010-02-28 15:39:26 -05001751 int ret = 0;
1752
1753 leaf = path->nodes[0];
1754 slot = path->slots[0];
1755 nritems = btrfs_header_nritems(leaf);
1756
1757 if (btrfs_header_generation(leaf) > sk->max_transid) {
1758 i = nritems;
1759 goto advance_key;
1760 }
1761 found_transid = btrfs_header_generation(leaf);
1762
1763 for (i = slot; i < nritems; i++) {
1764 item_off = btrfs_item_ptr_offset(leaf, i);
1765 item_len = btrfs_item_size_nr(leaf, i);
1766
1767 if (item_len > BTRFS_SEARCH_ARGS_BUFSIZE)
1768 item_len = 0;
1769
1770 if (sizeof(sh) + item_len + *sk_offset >
1771 BTRFS_SEARCH_ARGS_BUFSIZE) {
1772 ret = 1;
1773 goto overflow;
1774 }
1775
1776 btrfs_item_key_to_cpu(leaf, key, i);
1777 if (!key_in_sk(key, sk))
1778 continue;
1779
1780 sh.objectid = key->objectid;
1781 sh.offset = key->offset;
1782 sh.type = key->type;
1783 sh.len = item_len;
1784 sh.transid = found_transid;
1785
1786 /* copy search result header */
1787 memcpy(buf + *sk_offset, &sh, sizeof(sh));
1788 *sk_offset += sizeof(sh);
1789
1790 if (item_len) {
1791 char *p = buf + *sk_offset;
1792 /* copy the item */
1793 read_extent_buffer(leaf, p,
1794 item_off, item_len);
1795 *sk_offset += item_len;
Chris Masonac8e9812010-02-28 15:39:26 -05001796 }
Hugo Millse2156862011-05-14 17:43:41 +00001797 (*num_found)++;
Chris Masonac8e9812010-02-28 15:39:26 -05001798
1799 if (*num_found >= sk->nr_items)
1800 break;
1801 }
1802advance_key:
Chris Masonac8e9812010-02-28 15:39:26 -05001803 ret = 0;
Chris Masonabc6e132010-03-18 12:10:08 -04001804 if (key->offset < (u64)-1 && key->offset < sk->max_offset)
1805 key->offset++;
1806 else if (key->type < (u8)-1 && key->type < sk->max_type) {
1807 key->offset = 0;
1808 key->type++;
1809 } else if (key->objectid < (u64)-1 && key->objectid < sk->max_objectid) {
1810 key->offset = 0;
1811 key->type = 0;
1812 key->objectid++;
1813 } else
1814 ret = 1;
Chris Masonac8e9812010-02-28 15:39:26 -05001815overflow:
Chris Masonac8e9812010-02-28 15:39:26 -05001816 return ret;
1817}
1818
1819static noinline int search_ioctl(struct inode *inode,
1820 struct btrfs_ioctl_search_args *args)
1821{
1822 struct btrfs_root *root;
1823 struct btrfs_key key;
1824 struct btrfs_key max_key;
1825 struct btrfs_path *path;
1826 struct btrfs_ioctl_search_key *sk = &args->key;
1827 struct btrfs_fs_info *info = BTRFS_I(inode)->root->fs_info;
1828 int ret;
1829 int num_found = 0;
1830 unsigned long sk_offset = 0;
1831
1832 path = btrfs_alloc_path();
1833 if (!path)
1834 return -ENOMEM;
1835
1836 if (sk->tree_id == 0) {
1837 /* search the root of the inode that was passed */
1838 root = BTRFS_I(inode)->root;
1839 } else {
1840 key.objectid = sk->tree_id;
1841 key.type = BTRFS_ROOT_ITEM_KEY;
1842 key.offset = (u64)-1;
1843 root = btrfs_read_fs_root_no_name(info, &key);
1844 if (IS_ERR(root)) {
1845 printk(KERN_ERR "could not find root %llu\n",
1846 sk->tree_id);
1847 btrfs_free_path(path);
1848 return -ENOENT;
1849 }
1850 }
1851
1852 key.objectid = sk->min_objectid;
1853 key.type = sk->min_type;
1854 key.offset = sk->min_offset;
1855
1856 max_key.objectid = sk->max_objectid;
1857 max_key.type = sk->max_type;
1858 max_key.offset = sk->max_offset;
1859
1860 path->keep_locks = 1;
1861
1862 while(1) {
1863 ret = btrfs_search_forward(root, &key, &max_key, path, 0,
1864 sk->min_transid);
1865 if (ret != 0) {
1866 if (ret > 0)
1867 ret = 0;
1868 goto err;
1869 }
1870 ret = copy_to_sk(root, path, &key, sk, args->buf,
1871 &sk_offset, &num_found);
David Sterbab3b4aa72011-04-21 01:20:15 +02001872 btrfs_release_path(path);
Chris Masonac8e9812010-02-28 15:39:26 -05001873 if (ret || num_found >= sk->nr_items)
1874 break;
1875
1876 }
1877 ret = 0;
1878err:
1879 sk->nr_items = num_found;
1880 btrfs_free_path(path);
1881 return ret;
1882}
1883
1884static noinline int btrfs_ioctl_tree_search(struct file *file,
1885 void __user *argp)
1886{
1887 struct btrfs_ioctl_search_args *args;
1888 struct inode *inode;
1889 int ret;
1890
1891 if (!capable(CAP_SYS_ADMIN))
1892 return -EPERM;
1893
Julia Lawall2354d082010-10-29 15:14:18 -04001894 args = memdup_user(argp, sizeof(*args));
1895 if (IS_ERR(args))
1896 return PTR_ERR(args);
Chris Masonac8e9812010-02-28 15:39:26 -05001897
Chris Masonac8e9812010-02-28 15:39:26 -05001898 inode = fdentry(file)->d_inode;
1899 ret = search_ioctl(inode, args);
1900 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
1901 ret = -EFAULT;
1902 kfree(args);
1903 return ret;
1904}
1905
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001906/*
Chris Masonac8e9812010-02-28 15:39:26 -05001907 * Search INODE_REFs to identify path name of 'dirid' directory
1908 * in a 'tree_id' tree. and sets path name to 'name'.
1909 */
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001910static noinline int btrfs_search_path_in_tree(struct btrfs_fs_info *info,
1911 u64 tree_id, u64 dirid, char *name)
1912{
1913 struct btrfs_root *root;
1914 struct btrfs_key key;
Chris Masonac8e9812010-02-28 15:39:26 -05001915 char *ptr;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001916 int ret = -1;
1917 int slot;
1918 int len;
1919 int total_len = 0;
1920 struct btrfs_inode_ref *iref;
1921 struct extent_buffer *l;
1922 struct btrfs_path *path;
1923
1924 if (dirid == BTRFS_FIRST_FREE_OBJECTID) {
1925 name[0]='\0';
1926 return 0;
1927 }
1928
1929 path = btrfs_alloc_path();
1930 if (!path)
1931 return -ENOMEM;
1932
Chris Masonac8e9812010-02-28 15:39:26 -05001933 ptr = &name[BTRFS_INO_LOOKUP_PATH_MAX];
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001934
1935 key.objectid = tree_id;
1936 key.type = BTRFS_ROOT_ITEM_KEY;
1937 key.offset = (u64)-1;
1938 root = btrfs_read_fs_root_no_name(info, &key);
1939 if (IS_ERR(root)) {
1940 printk(KERN_ERR "could not find root %llu\n", tree_id);
Chris Mason8ad6fca2010-03-18 12:23:10 -04001941 ret = -ENOENT;
1942 goto out;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001943 }
1944
1945 key.objectid = dirid;
1946 key.type = BTRFS_INODE_REF_KEY;
Chris Mason8ad6fca2010-03-18 12:23:10 -04001947 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001948
1949 while(1) {
1950 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1951 if (ret < 0)
1952 goto out;
1953
1954 l = path->nodes[0];
1955 slot = path->slots[0];
Chris Mason8ad6fca2010-03-18 12:23:10 -04001956 if (ret > 0 && slot > 0)
1957 slot--;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001958 btrfs_item_key_to_cpu(l, &key, slot);
1959
1960 if (ret > 0 && (key.objectid != dirid ||
Chris Masonac8e9812010-02-28 15:39:26 -05001961 key.type != BTRFS_INODE_REF_KEY)) {
1962 ret = -ENOENT;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001963 goto out;
Chris Masonac8e9812010-02-28 15:39:26 -05001964 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001965
1966 iref = btrfs_item_ptr(l, slot, struct btrfs_inode_ref);
1967 len = btrfs_inode_ref_name_len(l, iref);
1968 ptr -= len + 1;
1969 total_len += len + 1;
Chris Masonac8e9812010-02-28 15:39:26 -05001970 if (ptr < name)
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001971 goto out;
1972
1973 *(ptr + len) = '/';
1974 read_extent_buffer(l, ptr,(unsigned long)(iref + 1), len);
1975
1976 if (key.offset == BTRFS_FIRST_FREE_OBJECTID)
1977 break;
1978
David Sterbab3b4aa72011-04-21 01:20:15 +02001979 btrfs_release_path(path);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001980 key.objectid = key.offset;
Chris Mason8ad6fca2010-03-18 12:23:10 -04001981 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001982 dirid = key.objectid;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001983 }
Chris Masonac8e9812010-02-28 15:39:26 -05001984 if (ptr < name)
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001985 goto out;
Li Zefan77906a502011-07-14 03:16:00 +00001986 memmove(name, ptr, total_len);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001987 name[total_len]='\0';
1988 ret = 0;
1989out:
1990 btrfs_free_path(path);
Chris Masonac8e9812010-02-28 15:39:26 -05001991 return ret;
1992}
1993
1994static noinline int btrfs_ioctl_ino_lookup(struct file *file,
1995 void __user *argp)
1996{
1997 struct btrfs_ioctl_ino_lookup_args *args;
1998 struct inode *inode;
1999 int ret;
2000
2001 if (!capable(CAP_SYS_ADMIN))
2002 return -EPERM;
2003
Julia Lawall2354d082010-10-29 15:14:18 -04002004 args = memdup_user(argp, sizeof(*args));
2005 if (IS_ERR(args))
2006 return PTR_ERR(args);
Dan Carpenterc2b96922010-03-20 11:24:15 +00002007
Chris Masonac8e9812010-02-28 15:39:26 -05002008 inode = fdentry(file)->d_inode;
2009
Chris Mason1b53ac42010-03-18 12:17:05 -04002010 if (args->treeid == 0)
2011 args->treeid = BTRFS_I(inode)->root->root_key.objectid;
2012
Chris Masonac8e9812010-02-28 15:39:26 -05002013 ret = btrfs_search_path_in_tree(BTRFS_I(inode)->root->fs_info,
2014 args->treeid, args->objectid,
2015 args->name);
2016
2017 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
2018 ret = -EFAULT;
2019
2020 kfree(args);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002021 return ret;
2022}
2023
Yan, Zheng76dda932009-09-21 16:00:26 -04002024static noinline int btrfs_ioctl_snap_destroy(struct file *file,
2025 void __user *arg)
2026{
2027 struct dentry *parent = fdentry(file);
2028 struct dentry *dentry;
2029 struct inode *dir = parent->d_inode;
2030 struct inode *inode;
2031 struct btrfs_root *root = BTRFS_I(dir)->root;
2032 struct btrfs_root *dest = NULL;
2033 struct btrfs_ioctl_vol_args *vol_args;
2034 struct btrfs_trans_handle *trans;
2035 int namelen;
2036 int ret;
2037 int err = 0;
2038
Yan, Zheng76dda932009-09-21 16:00:26 -04002039 vol_args = memdup_user(arg, sizeof(*vol_args));
2040 if (IS_ERR(vol_args))
2041 return PTR_ERR(vol_args);
2042
2043 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
2044 namelen = strlen(vol_args->name);
2045 if (strchr(vol_args->name, '/') ||
2046 strncmp(vol_args->name, "..", namelen) == 0) {
2047 err = -EINVAL;
2048 goto out;
2049 }
2050
Al Viroa561be72011-11-23 11:57:51 -05002051 err = mnt_want_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04002052 if (err)
2053 goto out;
2054
2055 mutex_lock_nested(&dir->i_mutex, I_MUTEX_PARENT);
2056 dentry = lookup_one_len(vol_args->name, parent, namelen);
2057 if (IS_ERR(dentry)) {
2058 err = PTR_ERR(dentry);
2059 goto out_unlock_dir;
2060 }
2061
2062 if (!dentry->d_inode) {
2063 err = -ENOENT;
2064 goto out_dput;
2065 }
2066
2067 inode = dentry->d_inode;
Sage Weil4260f7c2010-10-29 15:46:43 -04002068 dest = BTRFS_I(inode)->root;
2069 if (!capable(CAP_SYS_ADMIN)){
2070 /*
2071 * Regular user. Only allow this with a special mount
2072 * option, when the user has write+exec access to the
2073 * subvol root, and when rmdir(2) would have been
2074 * allowed.
2075 *
2076 * Note that this is _not_ check that the subvol is
2077 * empty or doesn't contain data that we wouldn't
2078 * otherwise be able to delete.
2079 *
2080 * Users who want to delete empty subvols should try
2081 * rmdir(2).
2082 */
2083 err = -EPERM;
2084 if (!btrfs_test_opt(root, USER_SUBVOL_RM_ALLOWED))
2085 goto out_dput;
2086
2087 /*
2088 * Do not allow deletion if the parent dir is the same
2089 * as the dir to be deleted. That means the ioctl
2090 * must be called on the dentry referencing the root
2091 * of the subvol, not a random directory contained
2092 * within it.
2093 */
2094 err = -EINVAL;
2095 if (root == dest)
2096 goto out_dput;
2097
2098 err = inode_permission(inode, MAY_WRITE | MAY_EXEC);
2099 if (err)
2100 goto out_dput;
Sage Weil4260f7c2010-10-29 15:46:43 -04002101 }
2102
Miao Xie5c39da52012-10-22 11:39:53 +00002103 /* check if subvolume may be deleted by a user */
2104 err = btrfs_may_delete(dir, dentry, 1);
2105 if (err)
2106 goto out_dput;
2107
Li Zefan33345d012011-04-20 10:31:50 +08002108 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
Yan, Zheng76dda932009-09-21 16:00:26 -04002109 err = -EINVAL;
2110 goto out_dput;
2111 }
2112
Yan, Zheng76dda932009-09-21 16:00:26 -04002113 mutex_lock(&inode->i_mutex);
2114 err = d_invalidate(dentry);
2115 if (err)
2116 goto out_unlock;
2117
2118 down_write(&root->fs_info->subvol_sem);
2119
2120 err = may_destroy_subvol(dest);
2121 if (err)
2122 goto out_up_write;
2123
Yan, Zhenga22285a2010-05-16 10:48:46 -04002124 trans = btrfs_start_transaction(root, 0);
2125 if (IS_ERR(trans)) {
2126 err = PTR_ERR(trans);
Dan Carpenterd3270992010-05-29 09:46:47 +00002127 goto out_up_write;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002128 }
2129 trans->block_rsv = &root->fs_info->global_block_rsv;
2130
Yan, Zheng76dda932009-09-21 16:00:26 -04002131 ret = btrfs_unlink_subvol(trans, root, dir,
2132 dest->root_key.objectid,
2133 dentry->d_name.name,
2134 dentry->d_name.len);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002135 if (ret) {
2136 err = ret;
2137 btrfs_abort_transaction(trans, root, ret);
2138 goto out_end_trans;
2139 }
Yan, Zheng76dda932009-09-21 16:00:26 -04002140
2141 btrfs_record_root_in_trans(trans, dest);
2142
2143 memset(&dest->root_item.drop_progress, 0,
2144 sizeof(dest->root_item.drop_progress));
2145 dest->root_item.drop_level = 0;
2146 btrfs_set_root_refs(&dest->root_item, 0);
2147
Yan, Zhengd68fc572010-05-16 10:49:58 -04002148 if (!xchg(&dest->orphan_item_inserted, 1)) {
2149 ret = btrfs_insert_orphan_item(trans,
2150 root->fs_info->tree_root,
2151 dest->root_key.objectid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002152 if (ret) {
2153 btrfs_abort_transaction(trans, root, ret);
2154 err = ret;
2155 goto out_end_trans;
2156 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04002157 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002158out_end_trans:
Sage Weil531cb132010-10-29 15:41:32 -04002159 ret = btrfs_end_transaction(trans, root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002160 if (ret && !err)
2161 err = ret;
Yan, Zheng76dda932009-09-21 16:00:26 -04002162 inode->i_flags |= S_DEAD;
2163out_up_write:
2164 up_write(&root->fs_info->subvol_sem);
2165out_unlock:
2166 mutex_unlock(&inode->i_mutex);
2167 if (!err) {
Yan, Zhengefefb142009-10-09 09:25:16 -04002168 shrink_dcache_sb(root->fs_info->sb);
Yan, Zheng76dda932009-09-21 16:00:26 -04002169 btrfs_invalidate_inodes(dest);
2170 d_delete(dentry);
2171 }
2172out_dput:
2173 dput(dentry);
2174out_unlock_dir:
2175 mutex_unlock(&dir->i_mutex);
Al Viro2a79f172011-12-09 08:06:57 -05002176 mnt_drop_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04002177out:
2178 kfree(vol_args);
2179 return err;
2180}
2181
Chris Mason1e701a32010-03-11 09:42:04 -05002182static int btrfs_ioctl_defrag(struct file *file, void __user *argp)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002183{
2184 struct inode *inode = fdentry(file)->d_inode;
2185 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason1e701a32010-03-11 09:42:04 -05002186 struct btrfs_ioctl_defrag_range_args *range;
Yan Zhengc146afa2008-11-12 14:34:12 -05002187 int ret;
2188
Li Zefanb83cc962010-12-20 16:04:08 +08002189 if (btrfs_root_readonly(root))
2190 return -EROFS;
2191
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002192 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
2193 1)) {
2194 pr_info("btrfs: dev add/delete/balance/replace/resize operation in progress\n");
Ilya Dryomov2c0c9da2013-01-20 15:57:57 +02002195 return -EINVAL;
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002196 }
Al Viroa561be72011-11-23 11:57:51 -05002197 ret = mnt_want_write_file(file);
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002198 if (ret) {
2199 atomic_set(&root->fs_info->mutually_exclusive_operation_running,
2200 0);
Yan Zhengc146afa2008-11-12 14:34:12 -05002201 return ret;
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002202 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002203
2204 switch (inode->i_mode & S_IFMT) {
2205 case S_IFDIR:
Chris Masone441d542009-01-05 16:57:23 -05002206 if (!capable(CAP_SYS_ADMIN)) {
2207 ret = -EPERM;
2208 goto out;
2209 }
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04002210 ret = btrfs_defrag_root(root, 0);
2211 if (ret)
2212 goto out;
2213 ret = btrfs_defrag_root(root->fs_info->extent_root, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002214 break;
2215 case S_IFREG:
Chris Masone441d542009-01-05 16:57:23 -05002216 if (!(file->f_mode & FMODE_WRITE)) {
2217 ret = -EINVAL;
2218 goto out;
2219 }
Chris Mason1e701a32010-03-11 09:42:04 -05002220
2221 range = kzalloc(sizeof(*range), GFP_KERNEL);
2222 if (!range) {
2223 ret = -ENOMEM;
2224 goto out;
2225 }
2226
2227 if (argp) {
2228 if (copy_from_user(range, argp,
2229 sizeof(*range))) {
2230 ret = -EFAULT;
2231 kfree(range);
Dan Carpenter683be162010-03-20 11:24:48 +00002232 goto out;
Chris Mason1e701a32010-03-11 09:42:04 -05002233 }
2234 /* compression requires us to start the IO */
2235 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
2236 range->flags |= BTRFS_DEFRAG_RANGE_START_IO;
2237 range->extent_thresh = (u32)-1;
2238 }
2239 } else {
2240 /* the rest are all set to zero by kzalloc */
2241 range->len = (u64)-1;
2242 }
Chris Mason4cb53002011-05-24 15:35:30 -04002243 ret = btrfs_defrag_file(fdentry(file)->d_inode, file,
2244 range, 0, 0);
2245 if (ret > 0)
2246 ret = 0;
Chris Mason1e701a32010-03-11 09:42:04 -05002247 kfree(range);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002248 break;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04002249 default:
2250 ret = -EINVAL;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002251 }
Chris Masone441d542009-01-05 16:57:23 -05002252out:
Al Viro2a79f172011-12-09 08:06:57 -05002253 mnt_drop_write_file(file);
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002254 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
Chris Masone441d542009-01-05 16:57:23 -05002255 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002256}
2257
Christoph Hellwigb2950862008-12-02 09:54:17 -05002258static long btrfs_ioctl_add_dev(struct btrfs_root *root, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002259{
2260 struct btrfs_ioctl_vol_args *vol_args;
2261 int ret;
2262
Chris Masone441d542009-01-05 16:57:23 -05002263 if (!capable(CAP_SYS_ADMIN))
2264 return -EPERM;
2265
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002266 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
2267 1)) {
2268 pr_info("btrfs: dev add/delete/balance/replace/resize operation in progress\n");
Ilya Dryomov2c0c9da2013-01-20 15:57:57 +02002269 return -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002270 }
2271
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002272 mutex_lock(&root->fs_info->volume_mutex);
Li Zefandae7b662009-04-08 15:06:54 +08002273 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002274 if (IS_ERR(vol_args)) {
2275 ret = PTR_ERR(vol_args);
2276 goto out;
2277 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002278
Mark Fasheh5516e592008-07-24 12:20:14 -04002279 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002280 ret = btrfs_init_new_device(root, vol_args->name);
2281
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002282 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002283out:
2284 mutex_unlock(&root->fs_info->volume_mutex);
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002285 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002286 return ret;
2287}
2288
Miao Xieda249272012-11-26 08:44:50 +00002289static long btrfs_ioctl_rm_dev(struct file *file, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002290{
Miao Xieda249272012-11-26 08:44:50 +00002291 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002292 struct btrfs_ioctl_vol_args *vol_args;
2293 int ret;
2294
Chris Masone441d542009-01-05 16:57:23 -05002295 if (!capable(CAP_SYS_ADMIN))
2296 return -EPERM;
2297
Miao Xieda249272012-11-26 08:44:50 +00002298 ret = mnt_want_write_file(file);
2299 if (ret)
2300 return ret;
Yan Zhengc146afa2008-11-12 14:34:12 -05002301
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002302 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
2303 1)) {
2304 pr_info("btrfs: dev add/delete/balance/replace/resize operation in progress\n");
Miao Xieda249272012-11-26 08:44:50 +00002305 mnt_drop_write_file(file);
Ilya Dryomov2c0c9da2013-01-20 15:57:57 +02002306 return -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002307 }
2308
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002309 mutex_lock(&root->fs_info->volume_mutex);
Li Zefandae7b662009-04-08 15:06:54 +08002310 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002311 if (IS_ERR(vol_args)) {
2312 ret = PTR_ERR(vol_args);
2313 goto out;
2314 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002315
Mark Fasheh5516e592008-07-24 12:20:14 -04002316 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002317 ret = btrfs_rm_device(root, vol_args->name);
2318
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002319 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002320out:
2321 mutex_unlock(&root->fs_info->volume_mutex);
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002322 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
Ilya Dryomov4ac20c72013-01-20 15:57:57 +02002323 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002324 return ret;
2325}
2326
Jan Schmidt475f6382011-03-11 15:41:01 +01002327static long btrfs_ioctl_fs_info(struct btrfs_root *root, void __user *arg)
2328{
Li Zefan027ed2f2011-06-08 08:27:56 +00002329 struct btrfs_ioctl_fs_info_args *fi_args;
Jan Schmidt475f6382011-03-11 15:41:01 +01002330 struct btrfs_device *device;
2331 struct btrfs_device *next;
2332 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
Li Zefan027ed2f2011-06-08 08:27:56 +00002333 int ret = 0;
Jan Schmidt475f6382011-03-11 15:41:01 +01002334
2335 if (!capable(CAP_SYS_ADMIN))
2336 return -EPERM;
2337
Li Zefan027ed2f2011-06-08 08:27:56 +00002338 fi_args = kzalloc(sizeof(*fi_args), GFP_KERNEL);
2339 if (!fi_args)
2340 return -ENOMEM;
2341
2342 fi_args->num_devices = fs_devices->num_devices;
2343 memcpy(&fi_args->fsid, root->fs_info->fsid, sizeof(fi_args->fsid));
Jan Schmidt475f6382011-03-11 15:41:01 +01002344
2345 mutex_lock(&fs_devices->device_list_mutex);
2346 list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) {
Li Zefan027ed2f2011-06-08 08:27:56 +00002347 if (device->devid > fi_args->max_id)
2348 fi_args->max_id = device->devid;
Jan Schmidt475f6382011-03-11 15:41:01 +01002349 }
2350 mutex_unlock(&fs_devices->device_list_mutex);
2351
Li Zefan027ed2f2011-06-08 08:27:56 +00002352 if (copy_to_user(arg, fi_args, sizeof(*fi_args)))
2353 ret = -EFAULT;
Jan Schmidt475f6382011-03-11 15:41:01 +01002354
Li Zefan027ed2f2011-06-08 08:27:56 +00002355 kfree(fi_args);
2356 return ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01002357}
2358
2359static long btrfs_ioctl_dev_info(struct btrfs_root *root, void __user *arg)
2360{
2361 struct btrfs_ioctl_dev_info_args *di_args;
2362 struct btrfs_device *dev;
2363 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
2364 int ret = 0;
2365 char *s_uuid = NULL;
2366 char empty_uuid[BTRFS_UUID_SIZE] = {0};
2367
2368 if (!capable(CAP_SYS_ADMIN))
2369 return -EPERM;
2370
2371 di_args = memdup_user(arg, sizeof(*di_args));
2372 if (IS_ERR(di_args))
2373 return PTR_ERR(di_args);
2374
2375 if (memcmp(empty_uuid, di_args->uuid, BTRFS_UUID_SIZE) != 0)
2376 s_uuid = di_args->uuid;
2377
2378 mutex_lock(&fs_devices->device_list_mutex);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01002379 dev = btrfs_find_device(root->fs_info, di_args->devid, s_uuid, NULL);
Jan Schmidt475f6382011-03-11 15:41:01 +01002380 mutex_unlock(&fs_devices->device_list_mutex);
2381
2382 if (!dev) {
2383 ret = -ENODEV;
2384 goto out;
2385 }
2386
2387 di_args->devid = dev->devid;
2388 di_args->bytes_used = dev->bytes_used;
2389 di_args->total_bytes = dev->total_bytes;
2390 memcpy(di_args->uuid, dev->uuid, sizeof(di_args->uuid));
Jim Meyeringa27202f2012-04-26 18:36:56 +02002391 if (dev->name) {
Josef Bacik606686e2012-06-04 14:03:51 -04002392 struct rcu_string *name;
2393
2394 rcu_read_lock();
2395 name = rcu_dereference(dev->name);
2396 strncpy(di_args->path, name->str, sizeof(di_args->path));
2397 rcu_read_unlock();
Jim Meyeringa27202f2012-04-26 18:36:56 +02002398 di_args->path[sizeof(di_args->path) - 1] = 0;
2399 } else {
Stefan Behrens99ba55a2012-03-19 16:17:22 +01002400 di_args->path[0] = '\0';
Jim Meyeringa27202f2012-04-26 18:36:56 +02002401 }
Jan Schmidt475f6382011-03-11 15:41:01 +01002402
2403out:
2404 if (ret == 0 && copy_to_user(arg, di_args, sizeof(*di_args)))
2405 ret = -EFAULT;
2406
2407 kfree(di_args);
2408 return ret;
2409}
2410
Yan, Zheng76dda932009-09-21 16:00:26 -04002411static noinline long btrfs_ioctl_clone(struct file *file, unsigned long srcfd,
2412 u64 off, u64 olen, u64 destoff)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002413{
2414 struct inode *inode = fdentry(file)->d_inode;
2415 struct btrfs_root *root = BTRFS_I(inode)->root;
Al Viro2903ff02012-08-28 12:52:22 -04002416 struct fd src_file;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002417 struct inode *src;
2418 struct btrfs_trans_handle *trans;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002419 struct btrfs_path *path;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002420 struct extent_buffer *leaf;
Yan Zhengae01a0a2008-08-04 23:23:47 -04002421 char *buf;
2422 struct btrfs_key key;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002423 u32 nritems;
2424 int slot;
Yan Zhengae01a0a2008-08-04 23:23:47 -04002425 int ret;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002426 u64 len = olen;
2427 u64 bs = root->fs_info->sb->s_blocksize;
Chris Masond20f7042008-12-08 16:58:54 -05002428
Sage Weilc5c9cd42008-11-12 14:32:25 -05002429 /*
2430 * TODO:
2431 * - split compressed inline extents. annoying: we need to
2432 * decompress into destination's address_space (the file offset
2433 * may change, so source mapping won't do), then recompress (or
2434 * otherwise reinsert) a subrange.
2435 * - allow ranges within the same file to be cloned (provided
2436 * they don't overlap)?
2437 */
2438
Chris Masone441d542009-01-05 16:57:23 -05002439 /* the destination must be opened for writing */
Dan Rosenberg2ebc3462010-07-19 16:58:20 -04002440 if (!(file->f_mode & FMODE_WRITE) || (file->f_flags & O_APPEND))
Chris Masone441d542009-01-05 16:57:23 -05002441 return -EINVAL;
2442
Li Zefanb83cc962010-12-20 16:04:08 +08002443 if (btrfs_root_readonly(root))
2444 return -EROFS;
2445
Al Viroa561be72011-11-23 11:57:51 -05002446 ret = mnt_want_write_file(file);
Yan Zhengc146afa2008-11-12 14:34:12 -05002447 if (ret)
2448 return ret;
2449
Al Viro2903ff02012-08-28 12:52:22 -04002450 src_file = fdget(srcfd);
2451 if (!src_file.file) {
Yan Zhengab67b7c2008-12-19 10:58:39 -05002452 ret = -EBADF;
2453 goto out_drop_write;
2454 }
Dan Rosenberg5dc64162010-05-15 11:27:37 -04002455
David Sterba362a20c2011-08-01 18:11:57 +02002456 ret = -EXDEV;
Al Viro2903ff02012-08-28 12:52:22 -04002457 if (src_file.file->f_path.mnt != file->f_path.mnt)
David Sterba362a20c2011-08-01 18:11:57 +02002458 goto out_fput;
2459
Al Viro2903ff02012-08-28 12:52:22 -04002460 src = src_file.file->f_dentry->d_inode;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002461
Sage Weilc5c9cd42008-11-12 14:32:25 -05002462 ret = -EINVAL;
2463 if (src == inode)
2464 goto out_fput;
2465
Dan Rosenberg5dc64162010-05-15 11:27:37 -04002466 /* the src must be open for reading */
Al Viro2903ff02012-08-28 12:52:22 -04002467 if (!(src_file.file->f_mode & FMODE_READ))
Dan Rosenberg5dc64162010-05-15 11:27:37 -04002468 goto out_fput;
2469
Li Zefan0e7b8242011-09-18 10:20:46 -04002470 /* don't make the dst file partly checksummed */
2471 if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
2472 (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM))
2473 goto out_fput;
2474
Yan Zhengae01a0a2008-08-04 23:23:47 -04002475 ret = -EISDIR;
2476 if (S_ISDIR(src->i_mode) || S_ISDIR(inode->i_mode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002477 goto out_fput;
2478
Yan Zhengae01a0a2008-08-04 23:23:47 -04002479 ret = -EXDEV;
David Sterba362a20c2011-08-01 18:11:57 +02002480 if (src->i_sb != inode->i_sb)
Yan Zhengae01a0a2008-08-04 23:23:47 -04002481 goto out_fput;
2482
2483 ret = -ENOMEM;
2484 buf = vmalloc(btrfs_level_size(root, 0));
2485 if (!buf)
2486 goto out_fput;
2487
2488 path = btrfs_alloc_path();
2489 if (!path) {
2490 vfree(buf);
2491 goto out_fput;
2492 }
2493 path->reada = 2;
2494
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002495 if (inode < src) {
Sage Weilfccdae42010-10-29 15:37:33 -04002496 mutex_lock_nested(&inode->i_mutex, I_MUTEX_PARENT);
2497 mutex_lock_nested(&src->i_mutex, I_MUTEX_CHILD);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002498 } else {
Sage Weilfccdae42010-10-29 15:37:33 -04002499 mutex_lock_nested(&src->i_mutex, I_MUTEX_PARENT);
2500 mutex_lock_nested(&inode->i_mutex, I_MUTEX_CHILD);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002501 }
2502
Sage Weilc5c9cd42008-11-12 14:32:25 -05002503 /* determine range to clone */
2504 ret = -EINVAL;
Dan Rosenberg2ebc3462010-07-19 16:58:20 -04002505 if (off + len > src->i_size || off + len < off)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002506 goto out_unlock;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002507 if (len == 0)
2508 olen = len = src->i_size - off;
2509 /* if we extend to eof, continue to block boundary */
2510 if (off + len == src->i_size)
Li Zefan2a6b8da2010-11-19 01:36:10 +00002511 len = ALIGN(src->i_size, bs) - off;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002512
2513 /* verify the end result is block aligned */
Li Zefan2a6b8da2010-11-19 01:36:10 +00002514 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs) ||
2515 !IS_ALIGNED(destoff, bs))
Sage Weilc5c9cd42008-11-12 14:32:25 -05002516 goto out_unlock;
2517
Li Zefand525e8a2011-09-11 10:52:25 -04002518 if (destoff > inode->i_size) {
2519 ret = btrfs_cont_expand(inode, inode->i_size, destoff);
2520 if (ret)
2521 goto out_unlock;
2522 }
2523
Li Zefan71ef0782011-09-18 10:20:46 -04002524 /* truncate page cache pages from target inode range */
2525 truncate_inode_pages_range(&inode->i_data, destoff,
2526 PAGE_CACHE_ALIGN(destoff + len) - 1);
2527
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002528 /* do any pending delalloc/csum calc on src, one way or
2529 another, and lock file content */
2530 while (1) {
Zheng Yan31840ae2008-09-23 13:14:14 -04002531 struct btrfs_ordered_extent *ordered;
Liu Boaa42ffd2012-09-18 03:52:23 -06002532 lock_extent(&BTRFS_I(src)->io_tree, off, off + len - 1);
2533 ordered = btrfs_lookup_first_ordered_extent(src, off + len - 1);
Sage Weil9a019192010-10-29 15:37:33 -04002534 if (!ordered &&
Liu Boaa42ffd2012-09-18 03:52:23 -06002535 !test_range_bit(&BTRFS_I(src)->io_tree, off, off + len - 1,
2536 EXTENT_DELALLOC, 0, NULL))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002537 break;
Liu Boaa42ffd2012-09-18 03:52:23 -06002538 unlock_extent(&BTRFS_I(src)->io_tree, off, off + len - 1);
Yan Zhengae01a0a2008-08-04 23:23:47 -04002539 if (ordered)
2540 btrfs_put_ordered_extent(ordered);
Sage Weil9a019192010-10-29 15:37:33 -04002541 btrfs_wait_ordered_range(src, off, len);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002542 }
2543
Sage Weilc5c9cd42008-11-12 14:32:25 -05002544 /* clone data */
Li Zefan33345d012011-04-20 10:31:50 +08002545 key.objectid = btrfs_ino(src);
Yan Zhengae01a0a2008-08-04 23:23:47 -04002546 key.type = BTRFS_EXTENT_DATA_KEY;
2547 key.offset = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002548
2549 while (1) {
2550 /*
2551 * note the key will change type as we walk through the
2552 * tree.
2553 */
David Sterba362a20c2011-08-01 18:11:57 +02002554 ret = btrfs_search_slot(NULL, BTRFS_I(src)->root, &key, path,
2555 0, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002556 if (ret < 0)
2557 goto out;
2558
Yan Zhengae01a0a2008-08-04 23:23:47 -04002559 nritems = btrfs_header_nritems(path->nodes[0]);
2560 if (path->slots[0] >= nritems) {
David Sterba362a20c2011-08-01 18:11:57 +02002561 ret = btrfs_next_leaf(BTRFS_I(src)->root, path);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002562 if (ret < 0)
2563 goto out;
2564 if (ret > 0)
2565 break;
Yan Zhengae01a0a2008-08-04 23:23:47 -04002566 nritems = btrfs_header_nritems(path->nodes[0]);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002567 }
2568 leaf = path->nodes[0];
2569 slot = path->slots[0];
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002570
Yan Zhengae01a0a2008-08-04 23:23:47 -04002571 btrfs_item_key_to_cpu(leaf, &key, slot);
Chris Masond20f7042008-12-08 16:58:54 -05002572 if (btrfs_key_type(&key) > BTRFS_EXTENT_DATA_KEY ||
Li Zefan33345d012011-04-20 10:31:50 +08002573 key.objectid != btrfs_ino(src))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002574 break;
2575
Sage Weilc5c9cd42008-11-12 14:32:25 -05002576 if (btrfs_key_type(&key) == BTRFS_EXTENT_DATA_KEY) {
2577 struct btrfs_file_extent_item *extent;
2578 int type;
Zheng Yan31840ae2008-09-23 13:14:14 -04002579 u32 size;
2580 struct btrfs_key new_key;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002581 u64 disko = 0, diskl = 0;
2582 u64 datao = 0, datal = 0;
2583 u8 comp;
Sage Weilb5384d42010-06-12 22:31:14 +00002584 u64 endoff;
Zheng Yan31840ae2008-09-23 13:14:14 -04002585
2586 size = btrfs_item_size_nr(leaf, slot);
2587 read_extent_buffer(leaf, buf,
2588 btrfs_item_ptr_offset(leaf, slot),
2589 size);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002590
2591 extent = btrfs_item_ptr(leaf, slot,
2592 struct btrfs_file_extent_item);
2593 comp = btrfs_file_extent_compression(leaf, extent);
2594 type = btrfs_file_extent_type(leaf, extent);
Chris Masonc8a894d2009-06-27 21:07:03 -04002595 if (type == BTRFS_FILE_EXTENT_REG ||
2596 type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masond3977122009-01-05 21:25:51 -05002597 disko = btrfs_file_extent_disk_bytenr(leaf,
2598 extent);
2599 diskl = btrfs_file_extent_disk_num_bytes(leaf,
2600 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002601 datao = btrfs_file_extent_offset(leaf, extent);
Chris Masond3977122009-01-05 21:25:51 -05002602 datal = btrfs_file_extent_num_bytes(leaf,
2603 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002604 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
2605 /* take upper bound, may be compressed */
2606 datal = btrfs_file_extent_ram_bytes(leaf,
2607 extent);
2608 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002609 btrfs_release_path(path);
Zheng Yan31840ae2008-09-23 13:14:14 -04002610
Sage Weil050006a2010-10-29 15:37:33 -04002611 if (key.offset + datal <= off ||
Liu Boaa42ffd2012-09-18 03:52:23 -06002612 key.offset >= off + len - 1)
Sage Weilc5c9cd42008-11-12 14:32:25 -05002613 goto next;
2614
Zheng Yan31840ae2008-09-23 13:14:14 -04002615 memcpy(&new_key, &key, sizeof(new_key));
Li Zefan33345d012011-04-20 10:31:50 +08002616 new_key.objectid = btrfs_ino(inode);
Li Zefan4d728ec2011-01-26 14:10:43 +08002617 if (off <= key.offset)
2618 new_key.offset = key.offset + destoff - off;
2619 else
2620 new_key.offset = destoff;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002621
Sage Weilb6f34092011-09-20 14:48:51 -04002622 /*
2623 * 1 - adjusting old extent (we may have to split it)
2624 * 1 - add new extent
2625 * 1 - inode update
2626 */
2627 trans = btrfs_start_transaction(root, 3);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002628 if (IS_ERR(trans)) {
2629 ret = PTR_ERR(trans);
2630 goto out;
2631 }
2632
Chris Masonc8a894d2009-06-27 21:07:03 -04002633 if (type == BTRFS_FILE_EXTENT_REG ||
2634 type == BTRFS_FILE_EXTENT_PREALLOC) {
Li Zefand72c0842011-09-11 10:52:25 -04002635 /*
2636 * a | --- range to clone ---| b
2637 * | ------------- extent ------------- |
2638 */
2639
2640 /* substract range b */
2641 if (key.offset + datal > off + len)
2642 datal = off + len - key.offset;
2643
2644 /* substract range a */
Yan, Zhenga22285a2010-05-16 10:48:46 -04002645 if (off > key.offset) {
2646 datao += off - key.offset;
2647 datal -= off - key.offset;
2648 }
2649
Josef Bacik5dc562c2012-08-17 13:14:17 -04002650 ret = btrfs_drop_extents(trans, root, inode,
Yan, Zhenga22285a2010-05-16 10:48:46 -04002651 new_key.offset,
2652 new_key.offset + datal,
Josef Bacik26714852012-08-29 12:24:27 -04002653 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002654 if (ret) {
2655 btrfs_abort_transaction(trans, root,
2656 ret);
2657 btrfs_end_transaction(trans, root);
2658 goto out;
2659 }
Yan, Zhenga22285a2010-05-16 10:48:46 -04002660
Sage Weilc5c9cd42008-11-12 14:32:25 -05002661 ret = btrfs_insert_empty_item(trans, root, path,
2662 &new_key, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002663 if (ret) {
2664 btrfs_abort_transaction(trans, root,
2665 ret);
2666 btrfs_end_transaction(trans, root);
2667 goto out;
2668 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05002669
2670 leaf = path->nodes[0];
2671 slot = path->slots[0];
2672 write_extent_buffer(leaf, buf,
2673 btrfs_item_ptr_offset(leaf, slot),
2674 size);
2675
2676 extent = btrfs_item_ptr(leaf, slot,
2677 struct btrfs_file_extent_item);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002678
Sage Weilc5c9cd42008-11-12 14:32:25 -05002679 /* disko == 0 means it's a hole */
2680 if (!disko)
2681 datao = 0;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002682
2683 btrfs_set_file_extent_offset(leaf, extent,
2684 datao);
2685 btrfs_set_file_extent_num_bytes(leaf, extent,
2686 datal);
2687 if (disko) {
2688 inode_add_bytes(inode, datal);
2689 ret = btrfs_inc_extent_ref(trans, root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002690 disko, diskl, 0,
2691 root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08002692 btrfs_ino(inode),
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002693 new_key.offset - datao,
2694 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002695 if (ret) {
2696 btrfs_abort_transaction(trans,
2697 root,
2698 ret);
2699 btrfs_end_transaction(trans,
2700 root);
2701 goto out;
2702
2703 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05002704 }
2705 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
2706 u64 skip = 0;
2707 u64 trim = 0;
2708 if (off > key.offset) {
2709 skip = off - key.offset;
2710 new_key.offset += skip;
2711 }
Chris Masond3977122009-01-05 21:25:51 -05002712
Liu Boaa42ffd2012-09-18 03:52:23 -06002713 if (key.offset + datal > off + len)
2714 trim = key.offset + datal - (off + len);
Chris Masond3977122009-01-05 21:25:51 -05002715
Sage Weilc5c9cd42008-11-12 14:32:25 -05002716 if (comp && (skip || trim)) {
Sage Weilc5c9cd42008-11-12 14:32:25 -05002717 ret = -EINVAL;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002718 btrfs_end_transaction(trans, root);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002719 goto out;
2720 }
2721 size -= skip + trim;
2722 datal -= skip + trim;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002723
Josef Bacik5dc562c2012-08-17 13:14:17 -04002724 ret = btrfs_drop_extents(trans, root, inode,
Yan, Zhenga22285a2010-05-16 10:48:46 -04002725 new_key.offset,
2726 new_key.offset + datal,
Josef Bacik26714852012-08-29 12:24:27 -04002727 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002728 if (ret) {
2729 btrfs_abort_transaction(trans, root,
2730 ret);
2731 btrfs_end_transaction(trans, root);
2732 goto out;
2733 }
Yan, Zhenga22285a2010-05-16 10:48:46 -04002734
Sage Weilc5c9cd42008-11-12 14:32:25 -05002735 ret = btrfs_insert_empty_item(trans, root, path,
2736 &new_key, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002737 if (ret) {
2738 btrfs_abort_transaction(trans, root,
2739 ret);
2740 btrfs_end_transaction(trans, root);
2741 goto out;
2742 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05002743
2744 if (skip) {
Chris Masond3977122009-01-05 21:25:51 -05002745 u32 start =
2746 btrfs_file_extent_calc_inline_size(0);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002747 memmove(buf+start, buf+start+skip,
2748 datal);
2749 }
2750
2751 leaf = path->nodes[0];
2752 slot = path->slots[0];
2753 write_extent_buffer(leaf, buf,
2754 btrfs_item_ptr_offset(leaf, slot),
2755 size);
2756 inode_add_bytes(inode, datal);
2757 }
2758
2759 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02002760 btrfs_release_path(path);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002761
Josef Bacik0c4d2d92012-04-05 15:03:02 -04002762 inode_inc_iversion(inode);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002763 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
Sage Weilb5384d42010-06-12 22:31:14 +00002764
2765 /*
2766 * we round up to the block size at eof when
2767 * determining which extents to clone above,
2768 * but shouldn't round up the file size
2769 */
2770 endoff = new_key.offset + datal;
Li Zefan5f3888f2010-11-19 01:36:34 +00002771 if (endoff > destoff+olen)
2772 endoff = destoff+olen;
Sage Weilb5384d42010-06-12 22:31:14 +00002773 if (endoff > inode->i_size)
2774 btrfs_i_size_write(inode, endoff);
2775
Yan, Zhenga22285a2010-05-16 10:48:46 -04002776 ret = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002777 if (ret) {
2778 btrfs_abort_transaction(trans, root, ret);
2779 btrfs_end_transaction(trans, root);
2780 goto out;
2781 }
2782 ret = btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002783 }
Chris Masond3977122009-01-05 21:25:51 -05002784next:
David Sterbab3b4aa72011-04-21 01:20:15 +02002785 btrfs_release_path(path);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002786 key.offset++;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002787 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002788 ret = 0;
2789out:
David Sterbab3b4aa72011-04-21 01:20:15 +02002790 btrfs_release_path(path);
Liu Boaa42ffd2012-09-18 03:52:23 -06002791 unlock_extent(&BTRFS_I(src)->io_tree, off, off + len - 1);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002792out_unlock:
2793 mutex_unlock(&src->i_mutex);
2794 mutex_unlock(&inode->i_mutex);
Yan Zhengae01a0a2008-08-04 23:23:47 -04002795 vfree(buf);
2796 btrfs_free_path(path);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002797out_fput:
Al Viro2903ff02012-08-28 12:52:22 -04002798 fdput(src_file);
Yan Zhengab67b7c2008-12-19 10:58:39 -05002799out_drop_write:
Al Viro2a79f172011-12-09 08:06:57 -05002800 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002801 return ret;
2802}
2803
Christoph Hellwig7a865e82008-12-02 09:52:24 -05002804static long btrfs_ioctl_clone_range(struct file *file, void __user *argp)
Sage Weilc5c9cd42008-11-12 14:32:25 -05002805{
2806 struct btrfs_ioctl_clone_range_args args;
2807
Christoph Hellwig7a865e82008-12-02 09:52:24 -05002808 if (copy_from_user(&args, argp, sizeof(args)))
Sage Weilc5c9cd42008-11-12 14:32:25 -05002809 return -EFAULT;
2810 return btrfs_ioctl_clone(file, args.src_fd, args.src_offset,
2811 args.src_length, args.dest_offset);
2812}
2813
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002814/*
2815 * there are many ways the trans_start and trans_end ioctls can lead
2816 * to deadlocks. They should only be used by applications that
2817 * basically own the machine, and have a very in depth understanding
2818 * of all the possible deadlocks and enospc problems.
2819 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05002820static long btrfs_ioctl_trans_start(struct file *file)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002821{
2822 struct inode *inode = fdentry(file)->d_inode;
2823 struct btrfs_root *root = BTRFS_I(inode)->root;
2824 struct btrfs_trans_handle *trans;
Sage Weil1ab86ae2009-09-29 18:38:44 -04002825 int ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002826
Sage Weil1ab86ae2009-09-29 18:38:44 -04002827 ret = -EPERM;
Christoph Hellwigdf5b5522008-06-11 21:53:58 -04002828 if (!capable(CAP_SYS_ADMIN))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002829 goto out;
Sage Weil1ab86ae2009-09-29 18:38:44 -04002830
2831 ret = -EINPROGRESS;
2832 if (file->private_data)
2833 goto out;
Sage Weil9ca9ee02008-08-04 10:41:27 -04002834
Li Zefanb83cc962010-12-20 16:04:08 +08002835 ret = -EROFS;
2836 if (btrfs_root_readonly(root))
2837 goto out;
2838
Al Viroa561be72011-11-23 11:57:51 -05002839 ret = mnt_want_write_file(file);
Yan Zhengc146afa2008-11-12 14:34:12 -05002840 if (ret)
2841 goto out;
2842
Josef Bacika4abeea2011-04-11 17:25:13 -04002843 atomic_inc(&root->fs_info->open_ioctl_trans);
Sage Weil9ca9ee02008-08-04 10:41:27 -04002844
Sage Weil1ab86ae2009-09-29 18:38:44 -04002845 ret = -ENOMEM;
Josef Bacik7a7eaa42011-04-13 12:54:33 -04002846 trans = btrfs_start_ioctl_transaction(root);
Tsutomu Itohabd30bb2011-01-24 00:57:10 +00002847 if (IS_ERR(trans))
Sage Weil1ab86ae2009-09-29 18:38:44 -04002848 goto out_drop;
2849
2850 file->private_data = trans;
2851 return 0;
2852
2853out_drop:
Josef Bacika4abeea2011-04-11 17:25:13 -04002854 atomic_dec(&root->fs_info->open_ioctl_trans);
Al Viro2a79f172011-12-09 08:06:57 -05002855 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002856out:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002857 return ret;
2858}
2859
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002860static long btrfs_ioctl_default_subvol(struct file *file, void __user *argp)
2861{
2862 struct inode *inode = fdentry(file)->d_inode;
2863 struct btrfs_root *root = BTRFS_I(inode)->root;
2864 struct btrfs_root *new_root;
2865 struct btrfs_dir_item *di;
2866 struct btrfs_trans_handle *trans;
2867 struct btrfs_path *path;
2868 struct btrfs_key location;
2869 struct btrfs_disk_key disk_key;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002870 u64 objectid = 0;
2871 u64 dir_id;
Miao Xie3c04ce02012-11-26 08:43:07 +00002872 int ret;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002873
2874 if (!capable(CAP_SYS_ADMIN))
2875 return -EPERM;
2876
Miao Xie3c04ce02012-11-26 08:43:07 +00002877 ret = mnt_want_write_file(file);
2878 if (ret)
2879 return ret;
2880
2881 if (copy_from_user(&objectid, argp, sizeof(objectid))) {
2882 ret = -EFAULT;
2883 goto out;
2884 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002885
2886 if (!objectid)
2887 objectid = root->root_key.objectid;
2888
2889 location.objectid = objectid;
2890 location.type = BTRFS_ROOT_ITEM_KEY;
2891 location.offset = (u64)-1;
2892
2893 new_root = btrfs_read_fs_root_no_name(root->fs_info, &location);
Miao Xie3c04ce02012-11-26 08:43:07 +00002894 if (IS_ERR(new_root)) {
2895 ret = PTR_ERR(new_root);
2896 goto out;
2897 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002898
Miao Xie3c04ce02012-11-26 08:43:07 +00002899 if (btrfs_root_refs(&new_root->root_item) == 0) {
2900 ret = -ENOENT;
2901 goto out;
2902 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002903
2904 path = btrfs_alloc_path();
Miao Xie3c04ce02012-11-26 08:43:07 +00002905 if (!path) {
2906 ret = -ENOMEM;
2907 goto out;
2908 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002909 path->leave_spinning = 1;
2910
2911 trans = btrfs_start_transaction(root, 1);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002912 if (IS_ERR(trans)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002913 btrfs_free_path(path);
Miao Xie3c04ce02012-11-26 08:43:07 +00002914 ret = PTR_ERR(trans);
2915 goto out;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002916 }
2917
David Sterba6c417612011-04-13 15:41:04 +02002918 dir_id = btrfs_super_root_dir(root->fs_info->super_copy);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002919 di = btrfs_lookup_dir_item(trans, root->fs_info->tree_root, path,
2920 dir_id, "default", 7, 1);
Dan Carpentercf1e99a2010-05-29 09:47:24 +00002921 if (IS_ERR_OR_NULL(di)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002922 btrfs_free_path(path);
2923 btrfs_end_transaction(trans, root);
2924 printk(KERN_ERR "Umm, you don't have the default dir item, "
2925 "this isn't going to work\n");
Miao Xie3c04ce02012-11-26 08:43:07 +00002926 ret = -ENOENT;
2927 goto out;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002928 }
2929
2930 btrfs_cpu_key_to_disk(&disk_key, &new_root->root_key);
2931 btrfs_set_dir_item_key(path->nodes[0], di, &disk_key);
2932 btrfs_mark_buffer_dirty(path->nodes[0]);
2933 btrfs_free_path(path);
2934
Mitch Harder2b0ce2c2012-07-24 11:58:43 -06002935 btrfs_set_fs_incompat(root->fs_info, DEFAULT_SUBVOL);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002936 btrfs_end_transaction(trans, root);
Miao Xie3c04ce02012-11-26 08:43:07 +00002937out:
2938 mnt_drop_write_file(file);
2939 return ret;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002940}
2941
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02002942void btrfs_get_block_group_info(struct list_head *groups_list,
2943 struct btrfs_ioctl_space_info *space)
Josef Bacikbf5fc0932010-09-29 11:22:36 -04002944{
2945 struct btrfs_block_group_cache *block_group;
2946
2947 space->total_bytes = 0;
2948 space->used_bytes = 0;
2949 space->flags = 0;
2950 list_for_each_entry(block_group, groups_list, list) {
2951 space->flags = block_group->flags;
2952 space->total_bytes += block_group->key.offset;
2953 space->used_bytes +=
2954 btrfs_block_group_used(&block_group->item);
2955 }
2956}
2957
Josef Bacik1406e432010-01-13 18:19:06 +00002958long btrfs_ioctl_space_info(struct btrfs_root *root, void __user *arg)
2959{
2960 struct btrfs_ioctl_space_args space_args;
2961 struct btrfs_ioctl_space_info space;
2962 struct btrfs_ioctl_space_info *dest;
Chris Mason7fde62b2010-03-16 15:40:10 -04002963 struct btrfs_ioctl_space_info *dest_orig;
Daniel J Blueman13f26962011-04-11 15:56:31 +00002964 struct btrfs_ioctl_space_info __user *user_dest;
Josef Bacik1406e432010-01-13 18:19:06 +00002965 struct btrfs_space_info *info;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04002966 u64 types[] = {BTRFS_BLOCK_GROUP_DATA,
2967 BTRFS_BLOCK_GROUP_SYSTEM,
2968 BTRFS_BLOCK_GROUP_METADATA,
2969 BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA};
2970 int num_types = 4;
Chris Mason7fde62b2010-03-16 15:40:10 -04002971 int alloc_size;
Josef Bacik1406e432010-01-13 18:19:06 +00002972 int ret = 0;
Dan Rosenberg51788b12011-02-14 16:04:23 -05002973 u64 slot_count = 0;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04002974 int i, c;
Josef Bacik1406e432010-01-13 18:19:06 +00002975
2976 if (copy_from_user(&space_args,
2977 (struct btrfs_ioctl_space_args __user *)arg,
2978 sizeof(space_args)))
2979 return -EFAULT;
2980
Josef Bacikbf5fc0932010-09-29 11:22:36 -04002981 for (i = 0; i < num_types; i++) {
2982 struct btrfs_space_info *tmp;
2983
2984 info = NULL;
2985 rcu_read_lock();
2986 list_for_each_entry_rcu(tmp, &root->fs_info->space_info,
2987 list) {
2988 if (tmp->flags == types[i]) {
2989 info = tmp;
2990 break;
2991 }
2992 }
2993 rcu_read_unlock();
2994
2995 if (!info)
2996 continue;
2997
2998 down_read(&info->groups_sem);
2999 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
3000 if (!list_empty(&info->block_groups[c]))
3001 slot_count++;
3002 }
3003 up_read(&info->groups_sem);
3004 }
Josef Bacik1406e432010-01-13 18:19:06 +00003005
Chris Mason7fde62b2010-03-16 15:40:10 -04003006 /* space_slots == 0 means they are asking for a count */
3007 if (space_args.space_slots == 0) {
3008 space_args.total_spaces = slot_count;
3009 goto out;
3010 }
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003011
Dan Rosenberg51788b12011-02-14 16:04:23 -05003012 slot_count = min_t(u64, space_args.space_slots, slot_count);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003013
Chris Mason7fde62b2010-03-16 15:40:10 -04003014 alloc_size = sizeof(*dest) * slot_count;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003015
Chris Mason7fde62b2010-03-16 15:40:10 -04003016 /* we generally have at most 6 or so space infos, one for each raid
3017 * level. So, a whole page should be more than enough for everyone
3018 */
3019 if (alloc_size > PAGE_CACHE_SIZE)
3020 return -ENOMEM;
3021
3022 space_args.total_spaces = 0;
3023 dest = kmalloc(alloc_size, GFP_NOFS);
3024 if (!dest)
3025 return -ENOMEM;
3026 dest_orig = dest;
3027
3028 /* now we have a buffer to copy into */
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003029 for (i = 0; i < num_types; i++) {
3030 struct btrfs_space_info *tmp;
Chris Mason7fde62b2010-03-16 15:40:10 -04003031
Dan Rosenberg51788b12011-02-14 16:04:23 -05003032 if (!slot_count)
3033 break;
3034
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003035 info = NULL;
3036 rcu_read_lock();
3037 list_for_each_entry_rcu(tmp, &root->fs_info->space_info,
3038 list) {
3039 if (tmp->flags == types[i]) {
3040 info = tmp;
3041 break;
3042 }
3043 }
3044 rcu_read_unlock();
Chris Mason7fde62b2010-03-16 15:40:10 -04003045
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003046 if (!info)
3047 continue;
3048 down_read(&info->groups_sem);
3049 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
3050 if (!list_empty(&info->block_groups[c])) {
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02003051 btrfs_get_block_group_info(
3052 &info->block_groups[c], &space);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003053 memcpy(dest, &space, sizeof(space));
3054 dest++;
3055 space_args.total_spaces++;
Dan Rosenberg51788b12011-02-14 16:04:23 -05003056 slot_count--;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003057 }
Dan Rosenberg51788b12011-02-14 16:04:23 -05003058 if (!slot_count)
3059 break;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003060 }
3061 up_read(&info->groups_sem);
Josef Bacik1406e432010-01-13 18:19:06 +00003062 }
Josef Bacik1406e432010-01-13 18:19:06 +00003063
Daniel J Blueman2eec6c82012-04-26 00:37:14 +08003064 user_dest = (struct btrfs_ioctl_space_info __user *)
Chris Mason7fde62b2010-03-16 15:40:10 -04003065 (arg + sizeof(struct btrfs_ioctl_space_args));
3066
3067 if (copy_to_user(user_dest, dest_orig, alloc_size))
3068 ret = -EFAULT;
3069
3070 kfree(dest_orig);
3071out:
3072 if (ret == 0 && copy_to_user(arg, &space_args, sizeof(space_args)))
Josef Bacik1406e432010-01-13 18:19:06 +00003073 ret = -EFAULT;
3074
3075 return ret;
3076}
3077
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003078/*
3079 * there are many ways the trans_start and trans_end ioctls can lead
3080 * to deadlocks. They should only be used by applications that
3081 * basically own the machine, and have a very in depth understanding
3082 * of all the possible deadlocks and enospc problems.
3083 */
3084long btrfs_ioctl_trans_end(struct file *file)
3085{
3086 struct inode *inode = fdentry(file)->d_inode;
3087 struct btrfs_root *root = BTRFS_I(inode)->root;
3088 struct btrfs_trans_handle *trans;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003089
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003090 trans = file->private_data;
Sage Weil1ab86ae2009-09-29 18:38:44 -04003091 if (!trans)
3092 return -EINVAL;
Christoph Hellwigb2141072008-09-05 16:43:31 -04003093 file->private_data = NULL;
Sage Weil9ca9ee02008-08-04 10:41:27 -04003094
Sage Weil1ab86ae2009-09-29 18:38:44 -04003095 btrfs_end_transaction(trans, root);
3096
Josef Bacika4abeea2011-04-11 17:25:13 -04003097 atomic_dec(&root->fs_info->open_ioctl_trans);
Sage Weil9ca9ee02008-08-04 10:41:27 -04003098
Al Viro2a79f172011-12-09 08:06:57 -05003099 mnt_drop_write_file(file);
Sage Weil1ab86ae2009-09-29 18:38:44 -04003100 return 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003101}
3102
Miao Xie9a8c28b2012-11-26 08:40:43 +00003103static noinline long btrfs_ioctl_start_sync(struct btrfs_root *root,
3104 void __user *argp)
Sage Weil46204592010-10-29 15:41:32 -04003105{
Sage Weil46204592010-10-29 15:41:32 -04003106 struct btrfs_trans_handle *trans;
3107 u64 transid;
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00003108 int ret;
Sage Weil46204592010-10-29 15:41:32 -04003109
Miao Xieff7c1d32012-11-26 08:41:29 +00003110 trans = btrfs_attach_transaction(root);
3111 if (IS_ERR(trans)) {
3112 if (PTR_ERR(trans) != -ENOENT)
3113 return PTR_ERR(trans);
3114
3115 /* No running transaction, don't bother */
3116 transid = root->fs_info->last_trans_committed;
3117 goto out;
3118 }
Sage Weil46204592010-10-29 15:41:32 -04003119 transid = trans->transid;
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00003120 ret = btrfs_commit_transaction_async(trans, root, 0);
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00003121 if (ret) {
3122 btrfs_end_transaction(trans, root);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00003123 return ret;
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00003124 }
Miao Xieff7c1d32012-11-26 08:41:29 +00003125out:
Sage Weil46204592010-10-29 15:41:32 -04003126 if (argp)
3127 if (copy_to_user(argp, &transid, sizeof(transid)))
3128 return -EFAULT;
3129 return 0;
3130}
3131
Miao Xie9a8c28b2012-11-26 08:40:43 +00003132static noinline long btrfs_ioctl_wait_sync(struct btrfs_root *root,
3133 void __user *argp)
Sage Weil46204592010-10-29 15:41:32 -04003134{
Sage Weil46204592010-10-29 15:41:32 -04003135 u64 transid;
3136
3137 if (argp) {
3138 if (copy_from_user(&transid, argp, sizeof(transid)))
3139 return -EFAULT;
3140 } else {
3141 transid = 0; /* current trans */
3142 }
3143 return btrfs_wait_for_commit(root, transid);
3144}
3145
Miao Xieb8e95482012-11-26 08:48:01 +00003146static long btrfs_ioctl_scrub(struct file *file, void __user *arg)
Jan Schmidt475f6382011-03-11 15:41:01 +01003147{
Miao Xieb8e95482012-11-26 08:48:01 +00003148 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
Jan Schmidt475f6382011-03-11 15:41:01 +01003149 struct btrfs_ioctl_scrub_args *sa;
Miao Xieb8e95482012-11-26 08:48:01 +00003150 int ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01003151
3152 if (!capable(CAP_SYS_ADMIN))
3153 return -EPERM;
3154
3155 sa = memdup_user(arg, sizeof(*sa));
3156 if (IS_ERR(sa))
3157 return PTR_ERR(sa);
3158
Miao Xieb8e95482012-11-26 08:48:01 +00003159 if (!(sa->flags & BTRFS_SCRUB_READONLY)) {
3160 ret = mnt_want_write_file(file);
3161 if (ret)
3162 goto out;
3163 }
3164
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01003165 ret = btrfs_scrub_dev(root->fs_info, sa->devid, sa->start, sa->end,
Stefan Behrens63a212a2012-11-05 18:29:28 +01003166 &sa->progress, sa->flags & BTRFS_SCRUB_READONLY,
3167 0);
Jan Schmidt475f6382011-03-11 15:41:01 +01003168
3169 if (copy_to_user(arg, sa, sizeof(*sa)))
3170 ret = -EFAULT;
3171
Miao Xieb8e95482012-11-26 08:48:01 +00003172 if (!(sa->flags & BTRFS_SCRUB_READONLY))
3173 mnt_drop_write_file(file);
3174out:
Jan Schmidt475f6382011-03-11 15:41:01 +01003175 kfree(sa);
3176 return ret;
3177}
3178
3179static long btrfs_ioctl_scrub_cancel(struct btrfs_root *root, void __user *arg)
3180{
3181 if (!capable(CAP_SYS_ADMIN))
3182 return -EPERM;
3183
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01003184 return btrfs_scrub_cancel(root->fs_info);
Jan Schmidt475f6382011-03-11 15:41:01 +01003185}
3186
3187static long btrfs_ioctl_scrub_progress(struct btrfs_root *root,
3188 void __user *arg)
3189{
3190 struct btrfs_ioctl_scrub_args *sa;
3191 int ret;
3192
3193 if (!capable(CAP_SYS_ADMIN))
3194 return -EPERM;
3195
3196 sa = memdup_user(arg, sizeof(*sa));
3197 if (IS_ERR(sa))
3198 return PTR_ERR(sa);
3199
3200 ret = btrfs_scrub_progress(root, sa->devid, &sa->progress);
3201
3202 if (copy_to_user(arg, sa, sizeof(*sa)))
3203 ret = -EFAULT;
3204
3205 kfree(sa);
3206 return ret;
3207}
3208
Stefan Behrensc11d2c22012-05-25 16:06:09 +02003209static long btrfs_ioctl_get_dev_stats(struct btrfs_root *root,
David Sterbab27f7c02012-06-22 06:30:39 -06003210 void __user *arg)
Stefan Behrensc11d2c22012-05-25 16:06:09 +02003211{
3212 struct btrfs_ioctl_get_dev_stats *sa;
3213 int ret;
3214
Stefan Behrensc11d2c22012-05-25 16:06:09 +02003215 sa = memdup_user(arg, sizeof(*sa));
3216 if (IS_ERR(sa))
3217 return PTR_ERR(sa);
3218
David Sterbab27f7c02012-06-22 06:30:39 -06003219 if ((sa->flags & BTRFS_DEV_STATS_RESET) && !capable(CAP_SYS_ADMIN)) {
3220 kfree(sa);
3221 return -EPERM;
3222 }
3223
3224 ret = btrfs_get_dev_stats(root, sa);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02003225
3226 if (copy_to_user(arg, sa, sizeof(*sa)))
3227 ret = -EFAULT;
3228
3229 kfree(sa);
3230 return ret;
3231}
3232
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01003233static long btrfs_ioctl_dev_replace(struct btrfs_root *root, void __user *arg)
3234{
3235 struct btrfs_ioctl_dev_replace_args *p;
3236 int ret;
3237
3238 if (!capable(CAP_SYS_ADMIN))
3239 return -EPERM;
3240
3241 p = memdup_user(arg, sizeof(*p));
3242 if (IS_ERR(p))
3243 return PTR_ERR(p);
3244
3245 switch (p->cmd) {
3246 case BTRFS_IOCTL_DEV_REPLACE_CMD_START:
3247 if (atomic_xchg(
3248 &root->fs_info->mutually_exclusive_operation_running,
3249 1)) {
3250 pr_info("btrfs: dev add/delete/balance/replace/resize operation in progress\n");
3251 ret = -EINPROGRESS;
3252 } else {
3253 ret = btrfs_dev_replace_start(root, p);
3254 atomic_set(
3255 &root->fs_info->mutually_exclusive_operation_running,
3256 0);
3257 }
3258 break;
3259 case BTRFS_IOCTL_DEV_REPLACE_CMD_STATUS:
3260 btrfs_dev_replace_status(root->fs_info, p);
3261 ret = 0;
3262 break;
3263 case BTRFS_IOCTL_DEV_REPLACE_CMD_CANCEL:
3264 ret = btrfs_dev_replace_cancel(root->fs_info, p);
3265 break;
3266 default:
3267 ret = -EINVAL;
3268 break;
3269 }
3270
3271 if (copy_to_user(arg, p, sizeof(*p)))
3272 ret = -EFAULT;
3273
3274 kfree(p);
3275 return ret;
3276}
3277
Jan Schmidtd7728c92011-07-07 16:48:38 +02003278static long btrfs_ioctl_ino_to_path(struct btrfs_root *root, void __user *arg)
3279{
3280 int ret = 0;
3281 int i;
Chris Mason740c3d22011-11-02 15:48:34 -04003282 u64 rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003283 int size;
Chris Mason806468f2011-11-06 03:07:10 -05003284 struct btrfs_ioctl_ino_path_args *ipa = NULL;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003285 struct inode_fs_paths *ipath = NULL;
3286 struct btrfs_path *path;
3287
3288 if (!capable(CAP_SYS_ADMIN))
3289 return -EPERM;
3290
3291 path = btrfs_alloc_path();
3292 if (!path) {
3293 ret = -ENOMEM;
3294 goto out;
3295 }
3296
3297 ipa = memdup_user(arg, sizeof(*ipa));
3298 if (IS_ERR(ipa)) {
3299 ret = PTR_ERR(ipa);
3300 ipa = NULL;
3301 goto out;
3302 }
3303
3304 size = min_t(u32, ipa->size, 4096);
3305 ipath = init_ipath(size, root, path);
3306 if (IS_ERR(ipath)) {
3307 ret = PTR_ERR(ipath);
3308 ipath = NULL;
3309 goto out;
3310 }
3311
3312 ret = paths_from_inode(ipa->inum, ipath);
3313 if (ret < 0)
3314 goto out;
3315
3316 for (i = 0; i < ipath->fspath->elem_cnt; ++i) {
Jeff Mahoney745c4d82011-11-20 07:31:57 -05003317 rel_ptr = ipath->fspath->val[i] -
3318 (u64)(unsigned long)ipath->fspath->val;
Chris Mason740c3d22011-11-02 15:48:34 -04003319 ipath->fspath->val[i] = rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003320 }
3321
Jeff Mahoney745c4d82011-11-20 07:31:57 -05003322 ret = copy_to_user((void *)(unsigned long)ipa->fspath,
3323 (void *)(unsigned long)ipath->fspath, size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02003324 if (ret) {
3325 ret = -EFAULT;
3326 goto out;
3327 }
3328
3329out:
3330 btrfs_free_path(path);
3331 free_ipath(ipath);
3332 kfree(ipa);
3333
3334 return ret;
3335}
3336
3337static int build_ino_list(u64 inum, u64 offset, u64 root, void *ctx)
3338{
3339 struct btrfs_data_container *inodes = ctx;
3340 const size_t c = 3 * sizeof(u64);
3341
3342 if (inodes->bytes_left >= c) {
3343 inodes->bytes_left -= c;
3344 inodes->val[inodes->elem_cnt] = inum;
3345 inodes->val[inodes->elem_cnt + 1] = offset;
3346 inodes->val[inodes->elem_cnt + 2] = root;
3347 inodes->elem_cnt += 3;
3348 } else {
3349 inodes->bytes_missing += c - inodes->bytes_left;
3350 inodes->bytes_left = 0;
3351 inodes->elem_missed += 3;
3352 }
3353
3354 return 0;
3355}
3356
3357static long btrfs_ioctl_logical_to_ino(struct btrfs_root *root,
3358 void __user *arg)
3359{
3360 int ret = 0;
3361 int size;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003362 struct btrfs_ioctl_logical_ino_args *loi;
3363 struct btrfs_data_container *inodes = NULL;
3364 struct btrfs_path *path = NULL;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003365
3366 if (!capable(CAP_SYS_ADMIN))
3367 return -EPERM;
3368
3369 loi = memdup_user(arg, sizeof(*loi));
3370 if (IS_ERR(loi)) {
3371 ret = PTR_ERR(loi);
3372 loi = NULL;
3373 goto out;
3374 }
3375
3376 path = btrfs_alloc_path();
3377 if (!path) {
3378 ret = -ENOMEM;
3379 goto out;
3380 }
3381
Liu Bo425d17a2012-09-07 20:01:30 -06003382 size = min_t(u32, loi->size, 64 * 1024);
Jan Schmidtd7728c92011-07-07 16:48:38 +02003383 inodes = init_data_container(size);
3384 if (IS_ERR(inodes)) {
3385 ret = PTR_ERR(inodes);
3386 inodes = NULL;
3387 goto out;
3388 }
3389
Liu Bodf031f02012-09-07 20:01:29 -06003390 ret = iterate_inodes_from_logical(loi->logical, root->fs_info, path,
3391 build_ino_list, inodes);
3392 if (ret == -EINVAL)
Jan Schmidtd7728c92011-07-07 16:48:38 +02003393 ret = -ENOENT;
3394 if (ret < 0)
3395 goto out;
3396
Jeff Mahoney745c4d82011-11-20 07:31:57 -05003397 ret = copy_to_user((void *)(unsigned long)loi->inodes,
3398 (void *)(unsigned long)inodes, size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02003399 if (ret)
3400 ret = -EFAULT;
3401
3402out:
3403 btrfs_free_path(path);
Liu Bo425d17a2012-09-07 20:01:30 -06003404 vfree(inodes);
Jan Schmidtd7728c92011-07-07 16:48:38 +02003405 kfree(loi);
3406
3407 return ret;
3408}
3409
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003410void update_ioctl_balance_args(struct btrfs_fs_info *fs_info, int lock,
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003411 struct btrfs_ioctl_balance_args *bargs)
3412{
3413 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
3414
3415 bargs->flags = bctl->flags;
3416
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003417 if (atomic_read(&fs_info->balance_running))
3418 bargs->state |= BTRFS_BALANCE_STATE_RUNNING;
3419 if (atomic_read(&fs_info->balance_pause_req))
3420 bargs->state |= BTRFS_BALANCE_STATE_PAUSE_REQ;
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003421 if (atomic_read(&fs_info->balance_cancel_req))
3422 bargs->state |= BTRFS_BALANCE_STATE_CANCEL_REQ;
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003423
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003424 memcpy(&bargs->data, &bctl->data, sizeof(bargs->data));
3425 memcpy(&bargs->meta, &bctl->meta, sizeof(bargs->meta));
3426 memcpy(&bargs->sys, &bctl->sys, sizeof(bargs->sys));
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003427
3428 if (lock) {
3429 spin_lock(&fs_info->balance_lock);
3430 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
3431 spin_unlock(&fs_info->balance_lock);
3432 } else {
3433 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
3434 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003435}
3436
Liu Bo9ba1f6e2012-05-11 18:11:26 +08003437static long btrfs_ioctl_balance(struct file *file, void __user *arg)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003438{
Liu Bo9ba1f6e2012-05-11 18:11:26 +08003439 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003440 struct btrfs_fs_info *fs_info = root->fs_info;
3441 struct btrfs_ioctl_balance_args *bargs;
3442 struct btrfs_balance_control *bctl;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003443 bool need_unlock; /* for mut. excl. ops lock */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003444 int ret;
3445
3446 if (!capable(CAP_SYS_ADMIN))
3447 return -EPERM;
3448
Liu Boe54bfa32012-06-29 03:58:48 -06003449 ret = mnt_want_write_file(file);
Liu Bo9ba1f6e2012-05-11 18:11:26 +08003450 if (ret)
3451 return ret;
3452
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003453again:
3454 if (!atomic_xchg(&fs_info->mutually_exclusive_operation_running, 1)) {
3455 mutex_lock(&fs_info->volume_mutex);
3456 mutex_lock(&fs_info->balance_mutex);
3457 need_unlock = true;
3458 goto locked;
3459 }
3460
3461 /*
3462 * mut. excl. ops lock is locked. Three possibilites:
3463 * (1) some other op is running
3464 * (2) balance is running
3465 * (3) balance is paused -- special case (think resume)
3466 */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003467 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003468 if (fs_info->balance_ctl) {
3469 /* this is either (2) or (3) */
3470 if (!atomic_read(&fs_info->balance_running)) {
3471 mutex_unlock(&fs_info->balance_mutex);
3472 if (!mutex_trylock(&fs_info->volume_mutex))
3473 goto again;
3474 mutex_lock(&fs_info->balance_mutex);
3475
3476 if (fs_info->balance_ctl &&
3477 !atomic_read(&fs_info->balance_running)) {
3478 /* this is (3) */
3479 need_unlock = false;
3480 goto locked;
3481 }
3482
3483 mutex_unlock(&fs_info->balance_mutex);
3484 mutex_unlock(&fs_info->volume_mutex);
3485 goto again;
3486 } else {
3487 /* this is (2) */
3488 mutex_unlock(&fs_info->balance_mutex);
3489 ret = -EINPROGRESS;
3490 goto out;
3491 }
3492 } else {
3493 /* this is (1) */
3494 mutex_unlock(&fs_info->balance_mutex);
3495 pr_info("btrfs: dev add/delete/balance/replace/resize operation in progress\n");
3496 ret = -EINVAL;
3497 goto out;
3498 }
3499
3500locked:
3501 BUG_ON(!atomic_read(&fs_info->mutually_exclusive_operation_running));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003502
3503 if (arg) {
3504 bargs = memdup_user(arg, sizeof(*bargs));
3505 if (IS_ERR(bargs)) {
3506 ret = PTR_ERR(bargs);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003507 goto out_unlock;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003508 }
Ilya Dryomovde322262012-01-16 22:04:49 +02003509
3510 if (bargs->flags & BTRFS_BALANCE_RESUME) {
3511 if (!fs_info->balance_ctl) {
3512 ret = -ENOTCONN;
3513 goto out_bargs;
3514 }
3515
3516 bctl = fs_info->balance_ctl;
3517 spin_lock(&fs_info->balance_lock);
3518 bctl->flags |= BTRFS_BALANCE_RESUME;
3519 spin_unlock(&fs_info->balance_lock);
3520
3521 goto do_balance;
3522 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003523 } else {
3524 bargs = NULL;
3525 }
3526
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003527 if (fs_info->balance_ctl) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003528 ret = -EINPROGRESS;
3529 goto out_bargs;
3530 }
3531
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003532 bctl = kzalloc(sizeof(*bctl), GFP_NOFS);
3533 if (!bctl) {
3534 ret = -ENOMEM;
3535 goto out_bargs;
3536 }
3537
3538 bctl->fs_info = fs_info;
3539 if (arg) {
3540 memcpy(&bctl->data, &bargs->data, sizeof(bctl->data));
3541 memcpy(&bctl->meta, &bargs->meta, sizeof(bctl->meta));
3542 memcpy(&bctl->sys, &bargs->sys, sizeof(bctl->sys));
3543
3544 bctl->flags = bargs->flags;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003545 } else {
3546 /* balance everything - no filters */
3547 bctl->flags |= BTRFS_BALANCE_TYPE_MASK;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003548 }
3549
Ilya Dryomovde322262012-01-16 22:04:49 +02003550do_balance:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003551 /*
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003552 * Ownership of bctl and mutually_exclusive_operation_running
3553 * goes to to btrfs_balance. bctl is freed in __cancel_balance,
3554 * or, if restriper was paused all the way until unmount, in
3555 * free_fs_info. mutually_exclusive_operation_running is
3556 * cleared in __cancel_balance.
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003557 */
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003558 need_unlock = false;
3559
3560 ret = btrfs_balance(bctl, bargs);
3561
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003562 if (arg) {
3563 if (copy_to_user(arg, bargs, sizeof(*bargs)))
3564 ret = -EFAULT;
3565 }
3566
3567out_bargs:
3568 kfree(bargs);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003569out_unlock:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003570 mutex_unlock(&fs_info->balance_mutex);
3571 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003572 if (need_unlock)
3573 atomic_set(&fs_info->mutually_exclusive_operation_running, 0);
3574out:
Liu Boe54bfa32012-06-29 03:58:48 -06003575 mnt_drop_write_file(file);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003576 return ret;
3577}
3578
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003579static long btrfs_ioctl_balance_ctl(struct btrfs_root *root, int cmd)
3580{
3581 if (!capable(CAP_SYS_ADMIN))
3582 return -EPERM;
3583
3584 switch (cmd) {
3585 case BTRFS_BALANCE_CTL_PAUSE:
3586 return btrfs_pause_balance(root->fs_info);
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003587 case BTRFS_BALANCE_CTL_CANCEL:
3588 return btrfs_cancel_balance(root->fs_info);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003589 }
3590
3591 return -EINVAL;
3592}
3593
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003594static long btrfs_ioctl_balance_progress(struct btrfs_root *root,
3595 void __user *arg)
3596{
3597 struct btrfs_fs_info *fs_info = root->fs_info;
3598 struct btrfs_ioctl_balance_args *bargs;
3599 int ret = 0;
3600
3601 if (!capable(CAP_SYS_ADMIN))
3602 return -EPERM;
3603
3604 mutex_lock(&fs_info->balance_mutex);
3605 if (!fs_info->balance_ctl) {
3606 ret = -ENOTCONN;
3607 goto out;
3608 }
3609
3610 bargs = kzalloc(sizeof(*bargs), GFP_NOFS);
3611 if (!bargs) {
3612 ret = -ENOMEM;
3613 goto out;
3614 }
3615
3616 update_ioctl_balance_args(fs_info, 1, bargs);
3617
3618 if (copy_to_user(arg, bargs, sizeof(*bargs)))
3619 ret = -EFAULT;
3620
3621 kfree(bargs);
3622out:
3623 mutex_unlock(&fs_info->balance_mutex);
3624 return ret;
3625}
3626
Miao Xie905b0dd2012-11-26 08:50:11 +00003627static long btrfs_ioctl_quota_ctl(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02003628{
Miao Xie905b0dd2012-11-26 08:50:11 +00003629 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02003630 struct btrfs_ioctl_quota_ctl_args *sa;
3631 struct btrfs_trans_handle *trans = NULL;
3632 int ret;
3633 int err;
3634
3635 if (!capable(CAP_SYS_ADMIN))
3636 return -EPERM;
3637
Miao Xie905b0dd2012-11-26 08:50:11 +00003638 ret = mnt_want_write_file(file);
3639 if (ret)
3640 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02003641
3642 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00003643 if (IS_ERR(sa)) {
3644 ret = PTR_ERR(sa);
3645 goto drop_write;
3646 }
Arne Jansen5d13a372011-09-14 15:53:51 +02003647
3648 if (sa->cmd != BTRFS_QUOTA_CTL_RESCAN) {
3649 trans = btrfs_start_transaction(root, 2);
3650 if (IS_ERR(trans)) {
3651 ret = PTR_ERR(trans);
3652 goto out;
3653 }
3654 }
3655
3656 switch (sa->cmd) {
3657 case BTRFS_QUOTA_CTL_ENABLE:
3658 ret = btrfs_quota_enable(trans, root->fs_info);
3659 break;
3660 case BTRFS_QUOTA_CTL_DISABLE:
3661 ret = btrfs_quota_disable(trans, root->fs_info);
3662 break;
3663 case BTRFS_QUOTA_CTL_RESCAN:
3664 ret = btrfs_quota_rescan(root->fs_info);
3665 break;
3666 default:
3667 ret = -EINVAL;
3668 break;
3669 }
3670
3671 if (copy_to_user(arg, sa, sizeof(*sa)))
3672 ret = -EFAULT;
3673
3674 if (trans) {
3675 err = btrfs_commit_transaction(trans, root);
3676 if (err && !ret)
3677 ret = err;
3678 }
Arne Jansen5d13a372011-09-14 15:53:51 +02003679out:
3680 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00003681drop_write:
3682 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02003683 return ret;
3684}
3685
Miao Xie905b0dd2012-11-26 08:50:11 +00003686static long btrfs_ioctl_qgroup_assign(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02003687{
Miao Xie905b0dd2012-11-26 08:50:11 +00003688 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02003689 struct btrfs_ioctl_qgroup_assign_args *sa;
3690 struct btrfs_trans_handle *trans;
3691 int ret;
3692 int err;
3693
3694 if (!capable(CAP_SYS_ADMIN))
3695 return -EPERM;
3696
Miao Xie905b0dd2012-11-26 08:50:11 +00003697 ret = mnt_want_write_file(file);
3698 if (ret)
3699 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02003700
3701 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00003702 if (IS_ERR(sa)) {
3703 ret = PTR_ERR(sa);
3704 goto drop_write;
3705 }
Arne Jansen5d13a372011-09-14 15:53:51 +02003706
3707 trans = btrfs_join_transaction(root);
3708 if (IS_ERR(trans)) {
3709 ret = PTR_ERR(trans);
3710 goto out;
3711 }
3712
3713 /* FIXME: check if the IDs really exist */
3714 if (sa->assign) {
3715 ret = btrfs_add_qgroup_relation(trans, root->fs_info,
3716 sa->src, sa->dst);
3717 } else {
3718 ret = btrfs_del_qgroup_relation(trans, root->fs_info,
3719 sa->src, sa->dst);
3720 }
3721
3722 err = btrfs_end_transaction(trans, root);
3723 if (err && !ret)
3724 ret = err;
3725
3726out:
3727 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00003728drop_write:
3729 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02003730 return ret;
3731}
3732
Miao Xie905b0dd2012-11-26 08:50:11 +00003733static long btrfs_ioctl_qgroup_create(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02003734{
Miao Xie905b0dd2012-11-26 08:50:11 +00003735 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02003736 struct btrfs_ioctl_qgroup_create_args *sa;
3737 struct btrfs_trans_handle *trans;
3738 int ret;
3739 int err;
3740
3741 if (!capable(CAP_SYS_ADMIN))
3742 return -EPERM;
3743
Miao Xie905b0dd2012-11-26 08:50:11 +00003744 ret = mnt_want_write_file(file);
3745 if (ret)
3746 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02003747
3748 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00003749 if (IS_ERR(sa)) {
3750 ret = PTR_ERR(sa);
3751 goto drop_write;
3752 }
Arne Jansen5d13a372011-09-14 15:53:51 +02003753
Miao Xied86e56c2012-11-15 11:35:41 +00003754 if (!sa->qgroupid) {
3755 ret = -EINVAL;
3756 goto out;
3757 }
3758
Arne Jansen5d13a372011-09-14 15:53:51 +02003759 trans = btrfs_join_transaction(root);
3760 if (IS_ERR(trans)) {
3761 ret = PTR_ERR(trans);
3762 goto out;
3763 }
3764
3765 /* FIXME: check if the IDs really exist */
3766 if (sa->create) {
3767 ret = btrfs_create_qgroup(trans, root->fs_info, sa->qgroupid,
3768 NULL);
3769 } else {
3770 ret = btrfs_remove_qgroup(trans, root->fs_info, sa->qgroupid);
3771 }
3772
3773 err = btrfs_end_transaction(trans, root);
3774 if (err && !ret)
3775 ret = err;
3776
3777out:
3778 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00003779drop_write:
3780 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02003781 return ret;
3782}
3783
Miao Xie905b0dd2012-11-26 08:50:11 +00003784static long btrfs_ioctl_qgroup_limit(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02003785{
Miao Xie905b0dd2012-11-26 08:50:11 +00003786 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02003787 struct btrfs_ioctl_qgroup_limit_args *sa;
3788 struct btrfs_trans_handle *trans;
3789 int ret;
3790 int err;
3791 u64 qgroupid;
3792
3793 if (!capable(CAP_SYS_ADMIN))
3794 return -EPERM;
3795
Miao Xie905b0dd2012-11-26 08:50:11 +00003796 ret = mnt_want_write_file(file);
3797 if (ret)
3798 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02003799
3800 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00003801 if (IS_ERR(sa)) {
3802 ret = PTR_ERR(sa);
3803 goto drop_write;
3804 }
Arne Jansen5d13a372011-09-14 15:53:51 +02003805
3806 trans = btrfs_join_transaction(root);
3807 if (IS_ERR(trans)) {
3808 ret = PTR_ERR(trans);
3809 goto out;
3810 }
3811
3812 qgroupid = sa->qgroupid;
3813 if (!qgroupid) {
3814 /* take the current subvol as qgroup */
3815 qgroupid = root->root_key.objectid;
3816 }
3817
3818 /* FIXME: check if the IDs really exist */
3819 ret = btrfs_limit_qgroup(trans, root->fs_info, qgroupid, &sa->lim);
3820
3821 err = btrfs_end_transaction(trans, root);
3822 if (err && !ret)
3823 ret = err;
3824
3825out:
3826 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00003827drop_write:
3828 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02003829 return ret;
3830}
3831
Alexander Block8ea05e32012-07-25 17:35:53 +02003832static long btrfs_ioctl_set_received_subvol(struct file *file,
3833 void __user *arg)
3834{
3835 struct btrfs_ioctl_received_subvol_args *sa = NULL;
3836 struct inode *inode = fdentry(file)->d_inode;
3837 struct btrfs_root *root = BTRFS_I(inode)->root;
3838 struct btrfs_root_item *root_item = &root->root_item;
3839 struct btrfs_trans_handle *trans;
3840 struct timespec ct = CURRENT_TIME;
3841 int ret = 0;
3842
3843 ret = mnt_want_write_file(file);
3844 if (ret < 0)
3845 return ret;
3846
3847 down_write(&root->fs_info->subvol_sem);
3848
3849 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
3850 ret = -EINVAL;
3851 goto out;
3852 }
3853
3854 if (btrfs_root_readonly(root)) {
3855 ret = -EROFS;
3856 goto out;
3857 }
3858
3859 if (!inode_owner_or_capable(inode)) {
3860 ret = -EACCES;
3861 goto out;
3862 }
3863
3864 sa = memdup_user(arg, sizeof(*sa));
3865 if (IS_ERR(sa)) {
3866 ret = PTR_ERR(sa);
3867 sa = NULL;
3868 goto out;
3869 }
3870
3871 trans = btrfs_start_transaction(root, 1);
3872 if (IS_ERR(trans)) {
3873 ret = PTR_ERR(trans);
3874 trans = NULL;
3875 goto out;
3876 }
3877
3878 sa->rtransid = trans->transid;
3879 sa->rtime.sec = ct.tv_sec;
3880 sa->rtime.nsec = ct.tv_nsec;
3881
3882 memcpy(root_item->received_uuid, sa->uuid, BTRFS_UUID_SIZE);
3883 btrfs_set_root_stransid(root_item, sa->stransid);
3884 btrfs_set_root_rtransid(root_item, sa->rtransid);
3885 root_item->stime.sec = cpu_to_le64(sa->stime.sec);
3886 root_item->stime.nsec = cpu_to_le32(sa->stime.nsec);
3887 root_item->rtime.sec = cpu_to_le64(sa->rtime.sec);
3888 root_item->rtime.nsec = cpu_to_le32(sa->rtime.nsec);
3889
3890 ret = btrfs_update_root(trans, root->fs_info->tree_root,
3891 &root->root_key, &root->root_item);
3892 if (ret < 0) {
3893 btrfs_end_transaction(trans, root);
3894 trans = NULL;
3895 goto out;
3896 } else {
3897 ret = btrfs_commit_transaction(trans, root);
3898 if (ret < 0)
3899 goto out;
3900 }
3901
3902 ret = copy_to_user(arg, sa, sizeof(*sa));
3903 if (ret)
3904 ret = -EFAULT;
3905
3906out:
3907 kfree(sa);
3908 up_write(&root->fs_info->subvol_sem);
3909 mnt_drop_write_file(file);
3910 return ret;
3911}
3912
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003913long btrfs_ioctl(struct file *file, unsigned int
3914 cmd, unsigned long arg)
3915{
3916 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05003917 void __user *argp = (void __user *)arg;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003918
3919 switch (cmd) {
Christoph Hellwig6cbff002009-04-17 10:37:41 +02003920 case FS_IOC_GETFLAGS:
3921 return btrfs_ioctl_getflags(file, argp);
3922 case FS_IOC_SETFLAGS:
3923 return btrfs_ioctl_setflags(file, argp);
3924 case FS_IOC_GETVERSION:
3925 return btrfs_ioctl_getversion(file, argp);
Li Dongyangf7039b12011-03-24 10:24:28 +00003926 case FITRIM:
3927 return btrfs_ioctl_fitrim(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003928 case BTRFS_IOC_SNAP_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08003929 return btrfs_ioctl_snap_create(file, argp, 0);
Li Zefanfdfb1e42010-12-10 06:41:56 +00003930 case BTRFS_IOC_SNAP_CREATE_V2:
Li Zefanfa0d2b92010-12-20 15:53:28 +08003931 return btrfs_ioctl_snap_create_v2(file, argp, 0);
Chris Mason3de45862008-11-17 21:02:50 -05003932 case BTRFS_IOC_SUBVOL_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08003933 return btrfs_ioctl_snap_create(file, argp, 1);
Arne Jansen6f72c7e2011-09-14 15:58:21 +02003934 case BTRFS_IOC_SUBVOL_CREATE_V2:
3935 return btrfs_ioctl_snap_create_v2(file, argp, 1);
Yan, Zheng76dda932009-09-21 16:00:26 -04003936 case BTRFS_IOC_SNAP_DESTROY:
3937 return btrfs_ioctl_snap_destroy(file, argp);
Li Zefan0caa1022010-12-20 16:30:25 +08003938 case BTRFS_IOC_SUBVOL_GETFLAGS:
3939 return btrfs_ioctl_subvol_getflags(file, argp);
3940 case BTRFS_IOC_SUBVOL_SETFLAGS:
3941 return btrfs_ioctl_subvol_setflags(file, argp);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003942 case BTRFS_IOC_DEFAULT_SUBVOL:
3943 return btrfs_ioctl_default_subvol(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003944 case BTRFS_IOC_DEFRAG:
Chris Mason1e701a32010-03-11 09:42:04 -05003945 return btrfs_ioctl_defrag(file, NULL);
3946 case BTRFS_IOC_DEFRAG_RANGE:
3947 return btrfs_ioctl_defrag(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003948 case BTRFS_IOC_RESIZE:
Miao Xie198605a2012-11-26 08:43:45 +00003949 return btrfs_ioctl_resize(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003950 case BTRFS_IOC_ADD_DEV:
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05003951 return btrfs_ioctl_add_dev(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003952 case BTRFS_IOC_RM_DEV:
Miao Xieda249272012-11-26 08:44:50 +00003953 return btrfs_ioctl_rm_dev(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01003954 case BTRFS_IOC_FS_INFO:
3955 return btrfs_ioctl_fs_info(root, argp);
3956 case BTRFS_IOC_DEV_INFO:
3957 return btrfs_ioctl_dev_info(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003958 case BTRFS_IOC_BALANCE:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08003959 return btrfs_ioctl_balance(file, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003960 case BTRFS_IOC_CLONE:
Sage Weilc5c9cd42008-11-12 14:32:25 -05003961 return btrfs_ioctl_clone(file, arg, 0, 0, 0);
3962 case BTRFS_IOC_CLONE_RANGE:
Christoph Hellwig7a865e82008-12-02 09:52:24 -05003963 return btrfs_ioctl_clone_range(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003964 case BTRFS_IOC_TRANS_START:
3965 return btrfs_ioctl_trans_start(file);
3966 case BTRFS_IOC_TRANS_END:
3967 return btrfs_ioctl_trans_end(file);
Chris Masonac8e9812010-02-28 15:39:26 -05003968 case BTRFS_IOC_TREE_SEARCH:
3969 return btrfs_ioctl_tree_search(file, argp);
3970 case BTRFS_IOC_INO_LOOKUP:
3971 return btrfs_ioctl_ino_lookup(file, argp);
Jan Schmidtd7728c92011-07-07 16:48:38 +02003972 case BTRFS_IOC_INO_PATHS:
3973 return btrfs_ioctl_ino_to_path(root, argp);
3974 case BTRFS_IOC_LOGICAL_INO:
3975 return btrfs_ioctl_logical_to_ino(root, argp);
Josef Bacik1406e432010-01-13 18:19:06 +00003976 case BTRFS_IOC_SPACE_INFO:
3977 return btrfs_ioctl_space_info(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003978 case BTRFS_IOC_SYNC:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003979 btrfs_sync_fs(file->f_dentry->d_sb, 1);
3980 return 0;
Sage Weil46204592010-10-29 15:41:32 -04003981 case BTRFS_IOC_START_SYNC:
Miao Xie9a8c28b2012-11-26 08:40:43 +00003982 return btrfs_ioctl_start_sync(root, argp);
Sage Weil46204592010-10-29 15:41:32 -04003983 case BTRFS_IOC_WAIT_SYNC:
Miao Xie9a8c28b2012-11-26 08:40:43 +00003984 return btrfs_ioctl_wait_sync(root, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01003985 case BTRFS_IOC_SCRUB:
Miao Xieb8e95482012-11-26 08:48:01 +00003986 return btrfs_ioctl_scrub(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01003987 case BTRFS_IOC_SCRUB_CANCEL:
3988 return btrfs_ioctl_scrub_cancel(root, argp);
3989 case BTRFS_IOC_SCRUB_PROGRESS:
3990 return btrfs_ioctl_scrub_progress(root, argp);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003991 case BTRFS_IOC_BALANCE_V2:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08003992 return btrfs_ioctl_balance(file, argp);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003993 case BTRFS_IOC_BALANCE_CTL:
3994 return btrfs_ioctl_balance_ctl(root, arg);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003995 case BTRFS_IOC_BALANCE_PROGRESS:
3996 return btrfs_ioctl_balance_progress(root, argp);
Alexander Block8ea05e32012-07-25 17:35:53 +02003997 case BTRFS_IOC_SET_RECEIVED_SUBVOL:
3998 return btrfs_ioctl_set_received_subvol(file, argp);
Alexander Block31db9f72012-07-25 23:19:24 +02003999 case BTRFS_IOC_SEND:
4000 return btrfs_ioctl_send(file, argp);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004001 case BTRFS_IOC_GET_DEV_STATS:
David Sterbab27f7c02012-06-22 06:30:39 -06004002 return btrfs_ioctl_get_dev_stats(root, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02004003 case BTRFS_IOC_QUOTA_CTL:
Miao Xie905b0dd2012-11-26 08:50:11 +00004004 return btrfs_ioctl_quota_ctl(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02004005 case BTRFS_IOC_QGROUP_ASSIGN:
Miao Xie905b0dd2012-11-26 08:50:11 +00004006 return btrfs_ioctl_qgroup_assign(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02004007 case BTRFS_IOC_QGROUP_CREATE:
Miao Xie905b0dd2012-11-26 08:50:11 +00004008 return btrfs_ioctl_qgroup_create(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02004009 case BTRFS_IOC_QGROUP_LIMIT:
Miao Xie905b0dd2012-11-26 08:50:11 +00004010 return btrfs_ioctl_qgroup_limit(file, argp);
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004011 case BTRFS_IOC_DEV_REPLACE:
4012 return btrfs_ioctl_dev_replace(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004013 }
4014
4015 return -ENOTTY;
4016}