]> git.ipfire.org Git - thirdparty/linux.git/blame - fs/btrfs/ioctl.c
Btrfs: fix the deadlock between the transaction start/attach and commit
[thirdparty/linux.git] / fs / btrfs / ioctl.c
CommitLineData
f46b5a66
CH
1/*
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>
cb8e7090 24#include <linux/fsnotify.h>
f46b5a66
CH
25#include <linux/pagemap.h>
26#include <linux/highmem.h>
27#include <linux/time.h>
28#include <linux/init.h>
29#include <linux/string.h>
f46b5a66 30#include <linux/backing-dev.h>
cb8e7090 31#include <linux/mount.h>
f46b5a66 32#include <linux/mpage.h>
cb8e7090 33#include <linux/namei.h>
f46b5a66
CH
34#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>
cb8e7090 39#include <linux/security.h>
f46b5a66 40#include <linux/xattr.h>
7ea394f1 41#include <linux/vmalloc.h>
5a0e3ad6 42#include <linux/slab.h>
f7039b1d 43#include <linux/blkdev.h>
8ea05e3a 44#include <linux/uuid.h>
55e301fd 45#include <linux/btrfs.h>
4b4e25f2 46#include "compat.h"
f46b5a66
CH
47#include "ctree.h"
48#include "disk-io.h"
49#include "transaction.h"
50#include "btrfs_inode.h"
f46b5a66
CH
51#include "print-tree.h"
52#include "volumes.h"
925baedd 53#include "locking.h"
581bb050 54#include "inode-map.h"
d7728c96 55#include "backref.h"
606686ee 56#include "rcu-string.h"
31db9f7c 57#include "send.h"
3f6bcfbd 58#include "dev-replace.h"
f46b5a66 59
6cbff00f
CH
60/* 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}
70
71/*
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;
d0092bdd
LZ
90 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;
6cbff00f
CH
97
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 *
e27425d6 125 * Currently only the compression flags and the cow flags are inherited.
6cbff00f
CH
126 */
127void btrfs_inherit_iflags(struct inode *inode, struct inode *dir)
128{
0b4dcea5
CM
129 unsigned int flags;
130
131 if (!dir)
132 return;
133
134 flags = BTRFS_I(dir)->flags;
6cbff00f 135
e27425d6
JB
136 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 }
143
213490b3 144 if (flags & BTRFS_INODE_NODATACOW) {
e27425d6 145 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW;
213490b3
LB
146 if (S_ISREG(inode->i_mode))
147 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
148 }
6cbff00f 149
6cbff00f
CH
150 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
75e7cb7f
LB
163static 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 | \
e1e8fb6a
LZ
168 FS_NOCOMP_FL | FS_COMPR_FL |
169 FS_NOCOW_FL))
75e7cb7f
LB
170 return -EOPNOTSUPP;
171
172 if ((flags & FS_NOCOMP_FL) && (flags & FS_COMPR_FL))
173 return -EINVAL;
174
75e7cb7f
LB
175 return 0;
176}
177
6cbff00f
CH
178static 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;
f062abf0
LZ
186 u64 ip_oldflags;
187 unsigned int i_oldflags;
7e97b8da 188 umode_t mode;
6cbff00f 189
b83cc969
LZ
190 if (btrfs_root_readonly(root))
191 return -EROFS;
192
6cbff00f
CH
193 if (copy_from_user(&flags, arg, sizeof(flags)))
194 return -EFAULT;
195
75e7cb7f
LB
196 ret = check_flags(flags);
197 if (ret)
198 return ret;
f46b5a66 199
2e149670 200 if (!inode_owner_or_capable(inode))
6cbff00f
CH
201 return -EACCES;
202
e7848683
JK
203 ret = mnt_want_write_file(file);
204 if (ret)
205 return ret;
206
6cbff00f
CH
207 mutex_lock(&inode->i_mutex);
208
f062abf0
LZ
209 ip_oldflags = ip->flags;
210 i_oldflags = inode->i_flags;
7e97b8da 211 mode = inode->i_mode;
f062abf0 212
6cbff00f
CH
213 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
6cbff00f
CH
222 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;
7e97b8da
DS
246 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 }
6cbff00f 271
75e7cb7f
LB
272 /*
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;
ebcb904d
LZ
283 } else {
284 ip->flags &= ~(BTRFS_INODE_COMPRESS | BTRFS_INODE_NOCOMPRESS);
75e7cb7f 285 }
6cbff00f 286
4da6f1a3 287 trans = btrfs_start_transaction(root, 1);
f062abf0
LZ
288 if (IS_ERR(trans)) {
289 ret = PTR_ERR(trans);
290 goto out_drop;
291 }
6cbff00f 292
306424cc 293 btrfs_update_iflags(inode);
0c4d2d95 294 inode_inc_iversion(inode);
306424cc 295 inode->i_ctime = CURRENT_TIME;
6cbff00f 296 ret = btrfs_update_inode(trans, root, inode);
6cbff00f 297
6cbff00f 298 btrfs_end_transaction(trans, root);
f062abf0
LZ
299 out_drop:
300 if (ret) {
301 ip->flags = ip_oldflags;
302 inode->i_flags = i_oldflags;
303 }
6cbff00f 304
6cbff00f
CH
305 out_unlock:
306 mutex_unlock(&inode->i_mutex);
e7848683 307 mnt_drop_write_file(file);
2d4e6f6a 308 return ret;
6cbff00f
CH
309}
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}
f46b5a66 317
f7039b1d
LD
318static noinline int btrfs_ioctl_fitrim(struct file *file, void __user *arg)
319{
815745cf 320 struct btrfs_fs_info *fs_info = btrfs_sb(fdentry(file)->d_sb);
f7039b1d
LD
321 struct btrfs_device *device;
322 struct request_queue *q;
323 struct fstrim_range range;
324 u64 minlen = ULLONG_MAX;
325 u64 num_devices = 0;
815745cf 326 u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy);
f7039b1d
LD
327 int ret;
328
329 if (!capable(CAP_SYS_ADMIN))
330 return -EPERM;
331
1f78160c
XG
332 rcu_read_lock();
333 list_for_each_entry_rcu(device, &fs_info->fs_devices->devices,
334 dev_list) {
f7039b1d
LD
335 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 }
1f78160c 344 rcu_read_unlock();
f4c697e6 345
f7039b1d
LD
346 if (!num_devices)
347 return -EOPNOTSUPP;
f7039b1d
LD
348 if (copy_from_user(&range, arg, sizeof(range)))
349 return -EFAULT;
e515c18b
LC
350 if (range.start > total_bytes ||
351 range.len < fs_info->sb->s_blocksize)
f4c697e6 352 return -EINVAL;
f7039b1d 353
f4c697e6 354 range.len = min(range.len, total_bytes - range.start);
f7039b1d 355 range.minlen = max(range.minlen, minlen);
815745cf 356 ret = btrfs_trim_fs(fs_info->tree_root, &range);
f7039b1d
LD
357 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
cb8e7090
CH
366static noinline int create_subvol(struct btrfs_root *root,
367 struct dentry *dentry,
72fd032e 368 char *name, int namelen,
6f72c7e2 369 u64 *async_transid,
8696c533 370 struct btrfs_qgroup_inherit *inherit)
f46b5a66
CH
371{
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;
76dda93c 377 struct btrfs_root *new_root;
2fbe8c8a 378 struct dentry *parent = dentry->d_parent;
6a912213 379 struct inode *dir;
8ea05e3a 380 struct timespec cur_time = CURRENT_TIME;
f46b5a66
CH
381 int ret;
382 int err;
383 u64 objectid;
384 u64 new_dirid = BTRFS_FIRST_FREE_OBJECTID;
3de4586c 385 u64 index = 0;
8ea05e3a 386 uuid_le new_uuid;
f46b5a66 387
581bb050 388 ret = btrfs_find_free_objectid(root->fs_info->tree_root, &objectid);
2fbe8c8a 389 if (ret)
a22285a6 390 return ret;
6a912213
JB
391
392 dir = parent->d_inode;
393
9ed74f2d
JB
394 /*
395 * 1 - inode item
396 * 2 - refs
397 * 1 - root item
398 * 2 - dir items
399 */
a22285a6 400 trans = btrfs_start_transaction(root, 6);
2fbe8c8a 401 if (IS_ERR(trans))
a22285a6 402 return PTR_ERR(trans);
f46b5a66 403
8696c533 404 ret = btrfs_qgroup_inherit(trans, root->fs_info, 0, objectid, inherit);
6f72c7e2
AJ
405 if (ret)
406 goto fail;
407
5d4f98a2 408 leaf = btrfs_alloc_free_block(trans, root, root->leafsize,
5581a51a 409 0, objectid, NULL, 0, 0, 0);
8e8a1e31
JB
410 if (IS_ERR(leaf)) {
411 ret = PTR_ERR(leaf);
412 goto fail;
413 }
f46b5a66 414
5d4f98a2 415 memset_extent_buffer(leaf, 0, 0, sizeof(struct btrfs_header));
f46b5a66
CH
416 btrfs_set_header_bytenr(leaf, leaf->start);
417 btrfs_set_header_generation(leaf, trans->transid);
5d4f98a2 418 btrfs_set_header_backref_rev(leaf, BTRFS_MIXED_BACKREF_REV);
f46b5a66
CH
419 btrfs_set_header_owner(leaf, objectid);
420
421 write_extent_buffer(leaf, root->fs_info->fsid,
422 (unsigned long)btrfs_header_fsid(leaf),
423 BTRFS_FSID_SIZE);
5d4f98a2
YZ
424 write_extent_buffer(leaf, root->fs_info->chunk_tree_uuid,
425 (unsigned long)btrfs_header_chunk_tree_uuid(leaf),
426 BTRFS_UUID_SIZE);
f46b5a66
CH
427 btrfs_mark_buffer_dirty(leaf);
428
8ea05e3a
AB
429 memset(&root_item, 0, sizeof(root_item));
430
f46b5a66 431 inode_item = &root_item.inode;
f46b5a66
CH
432 inode_item->generation = cpu_to_le64(1);
433 inode_item->size = cpu_to_le64(3);
434 inode_item->nlink = cpu_to_le32(1);
a76a3cd4 435 inode_item->nbytes = cpu_to_le64(root->leafsize);
f46b5a66
CH
436 inode_item->mode = cpu_to_le32(S_IFDIR | 0755);
437
08fe4db1
LZ
438 root_item.flags = 0;
439 root_item.byte_limit = 0;
440 inode_item->flags = cpu_to_le64(BTRFS_INODE_ROOT_ITEM_INIT);
441
f46b5a66 442 btrfs_set_root_bytenr(&root_item, leaf->start);
84234f3a 443 btrfs_set_root_generation(&root_item, trans->transid);
f46b5a66
CH
444 btrfs_set_root_level(&root_item, 0);
445 btrfs_set_root_refs(&root_item, 1);
86b9f2ec 446 btrfs_set_root_used(&root_item, leaf->len);
80ff3856 447 btrfs_set_root_last_snapshot(&root_item, 0);
f46b5a66 448
8ea05e3a
AB
449 btrfs_set_root_generation_v2(&root_item,
450 btrfs_root_generation(&root_item));
451 uuid_le_gen(&new_uuid);
452 memcpy(root_item.uuid, new_uuid.b, BTRFS_UUID_SIZE);
453 root_item.otime.sec = cpu_to_le64(cur_time.tv_sec);
dadd1105 454 root_item.otime.nsec = cpu_to_le32(cur_time.tv_nsec);
8ea05e3a
AB
455 root_item.ctime = root_item.otime;
456 btrfs_set_root_ctransid(&root_item, trans->transid);
457 btrfs_set_root_otransid(&root_item, trans->transid);
f46b5a66 458
925baedd 459 btrfs_tree_unlock(leaf);
f46b5a66
CH
460 free_extent_buffer(leaf);
461 leaf = NULL;
462
463 btrfs_set_root_dirid(&root_item, new_dirid);
464
465 key.objectid = objectid;
5d4f98a2 466 key.offset = 0;
f46b5a66
CH
467 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
468 ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
469 &root_item);
470 if (ret)
471 goto fail;
472
76dda93c
YZ
473 key.offset = (u64)-1;
474 new_root = btrfs_read_fs_root_no_name(root->fs_info, &key);
79787eaa
JM
475 if (IS_ERR(new_root)) {
476 btrfs_abort_transaction(trans, root, PTR_ERR(new_root));
477 ret = PTR_ERR(new_root);
478 goto fail;
479 }
76dda93c
YZ
480
481 btrfs_record_root_in_trans(trans, new_root);
482
d82a6f1d 483 ret = btrfs_create_subvol_root(trans, new_root, new_dirid);
ce598979
MF
484 if (ret) {
485 /* We potentially lose an unused inode item here */
79787eaa 486 btrfs_abort_transaction(trans, root, ret);
ce598979
MF
487 goto fail;
488 }
489
f46b5a66
CH
490 /*
491 * insert the directory item
492 */
3de4586c 493 ret = btrfs_set_inode_index(dir, &index);
79787eaa
JM
494 if (ret) {
495 btrfs_abort_transaction(trans, root, ret);
496 goto fail;
497 }
3de4586c
CM
498
499 ret = btrfs_insert_dir_item(trans, root,
16cdcec7 500 name, namelen, dir, &key,
3de4586c 501 BTRFS_FT_DIR, index);
79787eaa
JM
502 if (ret) {
503 btrfs_abort_transaction(trans, root, ret);
f46b5a66 504 goto fail;
79787eaa 505 }
0660b5af 506
52c26179
YZ
507 btrfs_i_size_write(dir, dir->i_size + namelen * 2);
508 ret = btrfs_update_inode(trans, root, dir);
509 BUG_ON(ret);
510
0660b5af 511 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
4df27c4d 512 objectid, root->root_key.objectid,
33345d01 513 btrfs_ino(dir), index, name, namelen);
0660b5af 514
76dda93c 515 BUG_ON(ret);
f46b5a66 516
f46b5a66 517fail:
72fd032e
SW
518 if (async_transid) {
519 *async_transid = trans->transid;
520 err = btrfs_commit_transaction_async(trans, root, 1);
521 } else {
522 err = btrfs_commit_transaction(trans, root);
523 }
f46b5a66
CH
524 if (err && !ret)
525 ret = err;
1a65e24b
CM
526
527 if (!ret)
528 d_instantiate(dentry, btrfs_lookup_dentry(dir, dentry));
529
f46b5a66
CH
530 return ret;
531}
532
72fd032e 533static int create_snapshot(struct btrfs_root *root, struct dentry *dentry,
b83cc969 534 char *name, int namelen, u64 *async_transid,
8696c533 535 bool readonly, struct btrfs_qgroup_inherit *inherit)
f46b5a66 536{
2e4bfab9 537 struct inode *inode;
f46b5a66
CH
538 struct btrfs_pending_snapshot *pending_snapshot;
539 struct btrfs_trans_handle *trans;
2e4bfab9 540 int ret;
f46b5a66
CH
541
542 if (!root->ref_cows)
543 return -EINVAL;
544
3de4586c 545 pending_snapshot = kzalloc(sizeof(*pending_snapshot), GFP_NOFS);
a22285a6
YZ
546 if (!pending_snapshot)
547 return -ENOMEM;
548
66d8f3dd
MX
549 btrfs_init_block_rsv(&pending_snapshot->block_rsv,
550 BTRFS_BLOCK_RSV_TEMP);
3de4586c 551 pending_snapshot->dentry = dentry;
f46b5a66 552 pending_snapshot->root = root;
b83cc969 553 pending_snapshot->readonly = readonly;
8696c533 554 pending_snapshot->inherit = inherit;
a22285a6 555
48c03c4b 556 trans = btrfs_start_transaction(root->fs_info->extent_root, 6);
a22285a6
YZ
557 if (IS_ERR(trans)) {
558 ret = PTR_ERR(trans);
559 goto fail;
560 }
561
562 ret = btrfs_snap_reserve_metadata(trans, pending_snapshot);
563 BUG_ON(ret);
564
8351583e 565 spin_lock(&root->fs_info->trans_lock);
f46b5a66
CH
566 list_add(&pending_snapshot->list,
567 &trans->transaction->pending_snapshots);
8351583e 568 spin_unlock(&root->fs_info->trans_lock);
72fd032e
SW
569 if (async_transid) {
570 *async_transid = trans->transid;
571 ret = btrfs_commit_transaction_async(trans,
572 root->fs_info->extent_root, 1);
573 } else {
574 ret = btrfs_commit_transaction(trans,
575 root->fs_info->extent_root);
576 }
109f2365
LB
577 if (ret) {
578 /* cleanup_transaction has freed this for us */
579 if (trans->aborted)
580 pending_snapshot = NULL;
c37b2b62 581 goto fail;
109f2365 582 }
a22285a6
YZ
583
584 ret = pending_snapshot->error;
585 if (ret)
586 goto fail;
587
66b4ffd1
JB
588 ret = btrfs_orphan_cleanup(pending_snapshot->snap);
589 if (ret)
590 goto fail;
f46b5a66 591
2fbe8c8a 592 inode = btrfs_lookup_dentry(dentry->d_parent->d_inode, dentry);
2e4bfab9
YZ
593 if (IS_ERR(inode)) {
594 ret = PTR_ERR(inode);
595 goto fail;
596 }
597 BUG_ON(!inode);
598 d_instantiate(dentry, inode);
599 ret = 0;
600fail:
a22285a6 601 kfree(pending_snapshot);
f46b5a66
CH
602 return ret;
603}
604
4260f7c7
SW
605/* copy of check_sticky in fs/namei.c()
606* It's inline, so penalty for filesystems that don't use sticky bit is
607* minimal.
608*/
609static inline int btrfs_check_sticky(struct inode *dir, struct inode *inode)
610{
2f2f43d3 611 kuid_t fsuid = current_fsuid();
4260f7c7
SW
612
613 if (!(dir->i_mode & S_ISVTX))
614 return 0;
2f2f43d3 615 if (uid_eq(inode->i_uid, fsuid))
4260f7c7 616 return 0;
2f2f43d3 617 if (uid_eq(dir->i_uid, fsuid))
4260f7c7
SW
618 return 0;
619 return !capable(CAP_FOWNER);
620}
621
622/* copy of may_delete in fs/namei.c()
623 * Check whether we can remove a link victim from directory dir, check
624 * whether the type of victim is right.
625 * 1. We can't do it if dir is read-only (done in permission())
626 * 2. We should have write and exec permissions on dir
627 * 3. We can't remove anything from append-only dir
628 * 4. We can't do anything with immutable dir (done in permission())
629 * 5. If the sticky bit on dir is set we should either
630 * a. be owner of dir, or
631 * b. be owner of victim, or
632 * c. have CAP_FOWNER capability
633 * 6. If the victim is append-only or immutable we can't do antyhing with
634 * links pointing to it.
635 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
636 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
637 * 9. We can't remove a root or mountpoint.
638 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
639 * nfs_async_unlink().
640 */
641
642static int btrfs_may_delete(struct inode *dir,struct dentry *victim,int isdir)
643{
644 int error;
645
646 if (!victim->d_inode)
647 return -ENOENT;
648
649 BUG_ON(victim->d_parent->d_inode != dir);
4fa6b5ec 650 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
4260f7c7
SW
651
652 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
653 if (error)
654 return error;
655 if (IS_APPEND(dir))
656 return -EPERM;
657 if (btrfs_check_sticky(dir, victim->d_inode)||
658 IS_APPEND(victim->d_inode)||
659 IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode))
660 return -EPERM;
661 if (isdir) {
662 if (!S_ISDIR(victim->d_inode->i_mode))
663 return -ENOTDIR;
664 if (IS_ROOT(victim))
665 return -EBUSY;
666 } else if (S_ISDIR(victim->d_inode->i_mode))
667 return -EISDIR;
668 if (IS_DEADDIR(dir))
669 return -ENOENT;
670 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
671 return -EBUSY;
672 return 0;
673}
674
cb8e7090
CH
675/* copy of may_create in fs/namei.c() */
676static inline int btrfs_may_create(struct inode *dir, struct dentry *child)
677{
678 if (child->d_inode)
679 return -EEXIST;
680 if (IS_DEADDIR(dir))
681 return -ENOENT;
682 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
683}
684
685/*
686 * Create a new subvolume below @parent. This is largely modeled after
687 * sys_mkdirat and vfs_mkdir, but we only do a single component lookup
688 * inside this filesystem so it's quite a bit simpler.
689 */
76dda93c
YZ
690static noinline int btrfs_mksubvol(struct path *parent,
691 char *name, int namelen,
72fd032e 692 struct btrfs_root *snap_src,
6f72c7e2 693 u64 *async_transid, bool readonly,
8696c533 694 struct btrfs_qgroup_inherit *inherit)
cb8e7090 695{
76dda93c 696 struct inode *dir = parent->dentry->d_inode;
cb8e7090
CH
697 struct dentry *dentry;
698 int error;
699
76dda93c 700 mutex_lock_nested(&dir->i_mutex, I_MUTEX_PARENT);
cb8e7090
CH
701
702 dentry = lookup_one_len(name, parent->dentry, namelen);
703 error = PTR_ERR(dentry);
704 if (IS_ERR(dentry))
705 goto out_unlock;
706
707 error = -EEXIST;
708 if (dentry->d_inode)
709 goto out_dput;
710
76dda93c 711 error = btrfs_may_create(dir, dentry);
cb8e7090 712 if (error)
a874a63e 713 goto out_dput;
cb8e7090 714
9c52057c
CM
715 /*
716 * even if this name doesn't exist, we may get hash collisions.
717 * check for them now when we can safely fail
718 */
719 error = btrfs_check_dir_item_collision(BTRFS_I(dir)->root,
720 dir->i_ino, name,
721 namelen);
722 if (error)
723 goto out_dput;
724
76dda93c
YZ
725 down_read(&BTRFS_I(dir)->root->fs_info->subvol_sem);
726
727 if (btrfs_root_refs(&BTRFS_I(dir)->root->root_item) == 0)
728 goto out_up_read;
729
3de4586c 730 if (snap_src) {
6f72c7e2
AJ
731 error = create_snapshot(snap_src, dentry, name, namelen,
732 async_transid, readonly, inherit);
3de4586c 733 } else {
76dda93c 734 error = create_subvol(BTRFS_I(dir)->root, dentry,
6f72c7e2 735 name, namelen, async_transid, inherit);
3de4586c 736 }
76dda93c
YZ
737 if (!error)
738 fsnotify_mkdir(dir, dentry);
739out_up_read:
740 up_read(&BTRFS_I(dir)->root->fs_info->subvol_sem);
cb8e7090
CH
741out_dput:
742 dput(dentry);
743out_unlock:
76dda93c 744 mutex_unlock(&dir->i_mutex);
cb8e7090
CH
745 return error;
746}
747
4cb5300b
CM
748/*
749 * When we're defragging a range, we don't want to kick it off again
750 * if it is really just waiting for delalloc to send it down.
751 * If we find a nice big extent or delalloc range for the bytes in the
752 * file you want to defrag, we return 0 to let you know to skip this
753 * part of the file
754 */
755static int check_defrag_in_cache(struct inode *inode, u64 offset, int thresh)
756{
757 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
758 struct extent_map *em = NULL;
759 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
760 u64 end;
761
762 read_lock(&em_tree->lock);
763 em = lookup_extent_mapping(em_tree, offset, PAGE_CACHE_SIZE);
764 read_unlock(&em_tree->lock);
765
766 if (em) {
767 end = extent_map_end(em);
768 free_extent_map(em);
769 if (end - offset > thresh)
770 return 0;
771 }
772 /* if we already have a nice delalloc here, just stop */
773 thresh /= 2;
774 end = count_range_bits(io_tree, &offset, offset + thresh,
775 thresh, EXTENT_DELALLOC, 1);
776 if (end >= thresh)
777 return 0;
778 return 1;
779}
780
781/*
782 * helper function to walk through a file and find extents
783 * newer than a specific transid, and smaller than thresh.
784 *
785 * This is used by the defragging code to find new and small
786 * extents
787 */
788static int find_new_extents(struct btrfs_root *root,
789 struct inode *inode, u64 newer_than,
790 u64 *off, int thresh)
791{
792 struct btrfs_path *path;
793 struct btrfs_key min_key;
794 struct btrfs_key max_key;
795 struct extent_buffer *leaf;
796 struct btrfs_file_extent_item *extent;
797 int type;
798 int ret;
a4689d2b 799 u64 ino = btrfs_ino(inode);
4cb5300b
CM
800
801 path = btrfs_alloc_path();
802 if (!path)
803 return -ENOMEM;
804
a4689d2b 805 min_key.objectid = ino;
4cb5300b
CM
806 min_key.type = BTRFS_EXTENT_DATA_KEY;
807 min_key.offset = *off;
808
a4689d2b 809 max_key.objectid = ino;
4cb5300b
CM
810 max_key.type = (u8)-1;
811 max_key.offset = (u64)-1;
812
813 path->keep_locks = 1;
814
815 while(1) {
816 ret = btrfs_search_forward(root, &min_key, &max_key,
de78b51a 817 path, newer_than);
4cb5300b
CM
818 if (ret != 0)
819 goto none;
a4689d2b 820 if (min_key.objectid != ino)
4cb5300b
CM
821 goto none;
822 if (min_key.type != BTRFS_EXTENT_DATA_KEY)
823 goto none;
824
825 leaf = path->nodes[0];
826 extent = btrfs_item_ptr(leaf, path->slots[0],
827 struct btrfs_file_extent_item);
828
829 type = btrfs_file_extent_type(leaf, extent);
830 if (type == BTRFS_FILE_EXTENT_REG &&
831 btrfs_file_extent_num_bytes(leaf, extent) < thresh &&
832 check_defrag_in_cache(inode, min_key.offset, thresh)) {
833 *off = min_key.offset;
834 btrfs_free_path(path);
835 return 0;
836 }
837
838 if (min_key.offset == (u64)-1)
839 goto none;
840
841 min_key.offset++;
842 btrfs_release_path(path);
843 }
844none:
845 btrfs_free_path(path);
846 return -ENOENT;
847}
848
6c282eb4 849static struct extent_map *defrag_lookup_extent(struct inode *inode, u64 start)
17ce6ef8
LB
850{
851 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
6c282eb4
LZ
852 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
853 struct extent_map *em;
854 u64 len = PAGE_CACHE_SIZE;
17ce6ef8 855
6c282eb4
LZ
856 /*
857 * hopefully we have this extent in the tree already, try without
858 * the full extent lock
859 */
17ce6ef8 860 read_lock(&em_tree->lock);
6c282eb4 861 em = lookup_extent_mapping(em_tree, start, len);
17ce6ef8
LB
862 read_unlock(&em_tree->lock);
863
6c282eb4
LZ
864 if (!em) {
865 /* get the big lock and read metadata off disk */
866 lock_extent(io_tree, start, start + len - 1);
867 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
868 unlock_extent(io_tree, start, start + len - 1);
869
870 if (IS_ERR(em))
871 return NULL;
872 }
873
874 return em;
875}
17ce6ef8 876
6c282eb4
LZ
877static bool defrag_check_next_extent(struct inode *inode, struct extent_map *em)
878{
879 struct extent_map *next;
880 bool ret = true;
881
882 /* this is the last extent */
883 if (em->start + em->len >= i_size_read(inode))
884 return false;
885
886 next = defrag_lookup_extent(inode, em->start + em->len);
887 if (!next || next->block_start >= EXTENT_MAP_LAST_BYTE)
888 ret = false;
889
890 free_extent_map(next);
17ce6ef8
LB
891 return ret;
892}
893
6c282eb4 894static int should_defrag_range(struct inode *inode, u64 start, int thresh,
a43a2111
AM
895 u64 *last_len, u64 *skip, u64 *defrag_end,
896 int compress)
940100a4 897{
6c282eb4 898 struct extent_map *em;
940100a4 899 int ret = 1;
6c282eb4 900 bool next_mergeable = true;
940100a4
CM
901
902 /*
008873ea 903 * make sure that once we start defragging an extent, we keep on
940100a4
CM
904 * defragging it
905 */
906 if (start < *defrag_end)
907 return 1;
908
909 *skip = 0;
910
6c282eb4
LZ
911 em = defrag_lookup_extent(inode, start);
912 if (!em)
913 return 0;
940100a4
CM
914
915 /* this will cover holes, and inline extents */
17ce6ef8 916 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
940100a4 917 ret = 0;
17ce6ef8
LB
918 goto out;
919 }
920
6c282eb4 921 next_mergeable = defrag_check_next_extent(inode, em);
940100a4
CM
922
923 /*
6c282eb4
LZ
924 * we hit a real extent, if it is big or the next extent is not a
925 * real extent, don't bother defragging it
940100a4 926 */
a43a2111 927 if (!compress && (*last_len == 0 || *last_len >= thresh) &&
6c282eb4 928 (em->len >= thresh || !next_mergeable))
940100a4 929 ret = 0;
17ce6ef8 930out:
940100a4
CM
931 /*
932 * last_len ends up being a counter of how many bytes we've defragged.
933 * every time we choose not to defrag an extent, we reset *last_len
934 * so that the next tiny extent will force a defrag.
935 *
936 * The end result of this is that tiny extents before a single big
937 * extent will force at least part of that big extent to be defragged.
938 */
939 if (ret) {
940100a4
CM
940 *defrag_end = extent_map_end(em);
941 } else {
942 *last_len = 0;
943 *skip = extent_map_end(em);
944 *defrag_end = 0;
945 }
946
947 free_extent_map(em);
948 return ret;
949}
950
4cb5300b
CM
951/*
952 * it doesn't do much good to defrag one or two pages
953 * at a time. This pulls in a nice chunk of pages
954 * to COW and defrag.
955 *
956 * It also makes sure the delalloc code has enough
957 * dirty data to avoid making new small extents as part
958 * of the defrag
959 *
960 * It's a good idea to start RA on this range
961 * before calling this.
962 */
963static int cluster_pages_for_defrag(struct inode *inode,
964 struct page **pages,
965 unsigned long start_index,
966 int num_pages)
f46b5a66 967{
4cb5300b
CM
968 unsigned long file_end;
969 u64 isize = i_size_read(inode);
970 u64 page_start;
971 u64 page_end;
1f12bd06 972 u64 page_cnt;
4cb5300b
CM
973 int ret;
974 int i;
975 int i_done;
3eaa2885 976 struct btrfs_ordered_extent *ordered;
4cb5300b 977 struct extent_state *cached_state = NULL;
600a45e1 978 struct extent_io_tree *tree;
3b16a4e3 979 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
4cb5300b 980
4cb5300b 981 file_end = (isize - 1) >> PAGE_CACHE_SHIFT;
1f12bd06
LB
982 if (!isize || start_index > file_end)
983 return 0;
984
985 page_cnt = min_t(u64, (u64)num_pages, (u64)file_end - start_index + 1);
4cb5300b
CM
986
987 ret = btrfs_delalloc_reserve_space(inode,
1f12bd06 988 page_cnt << PAGE_CACHE_SHIFT);
4cb5300b
CM
989 if (ret)
990 return ret;
4cb5300b 991 i_done = 0;
600a45e1 992 tree = &BTRFS_I(inode)->io_tree;
4cb5300b
CM
993
994 /* step one, lock all the pages */
1f12bd06 995 for (i = 0; i < page_cnt; i++) {
4cb5300b 996 struct page *page;
600a45e1 997again:
a94733d0 998 page = find_or_create_page(inode->i_mapping,
600a45e1 999 start_index + i, mask);
4cb5300b
CM
1000 if (!page)
1001 break;
1002
600a45e1
MX
1003 page_start = page_offset(page);
1004 page_end = page_start + PAGE_CACHE_SIZE - 1;
1005 while (1) {
d0082371 1006 lock_extent(tree, page_start, page_end);
600a45e1
MX
1007 ordered = btrfs_lookup_ordered_extent(inode,
1008 page_start);
d0082371 1009 unlock_extent(tree, page_start, page_end);
600a45e1
MX
1010 if (!ordered)
1011 break;
1012
1013 unlock_page(page);
1014 btrfs_start_ordered_extent(inode, ordered, 1);
1015 btrfs_put_ordered_extent(ordered);
1016 lock_page(page);
1f12bd06
LB
1017 /*
1018 * we unlocked the page above, so we need check if
1019 * it was released or not.
1020 */
1021 if (page->mapping != inode->i_mapping) {
1022 unlock_page(page);
1023 page_cache_release(page);
1024 goto again;
1025 }
600a45e1
MX
1026 }
1027
4cb5300b
CM
1028 if (!PageUptodate(page)) {
1029 btrfs_readpage(NULL, page);
1030 lock_page(page);
1031 if (!PageUptodate(page)) {
1032 unlock_page(page);
1033 page_cache_release(page);
1034 ret = -EIO;
1035 break;
1036 }
1037 }
600a45e1 1038
600a45e1
MX
1039 if (page->mapping != inode->i_mapping) {
1040 unlock_page(page);
1041 page_cache_release(page);
1042 goto again;
1043 }
1044
4cb5300b
CM
1045 pages[i] = page;
1046 i_done++;
1047 }
1048 if (!i_done || ret)
1049 goto out;
1050
1051 if (!(inode->i_sb->s_flags & MS_ACTIVE))
1052 goto out;
1053
1054 /*
1055 * so now we have a nice long stream of locked
1056 * and up to date pages, lets wait on them
1057 */
1058 for (i = 0; i < i_done; i++)
1059 wait_on_page_writeback(pages[i]);
1060
1061 page_start = page_offset(pages[0]);
1062 page_end = page_offset(pages[i_done - 1]) + PAGE_CACHE_SIZE;
1063
1064 lock_extent_bits(&BTRFS_I(inode)->io_tree,
d0082371 1065 page_start, page_end - 1, 0, &cached_state);
4cb5300b
CM
1066 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start,
1067 page_end - 1, EXTENT_DIRTY | EXTENT_DELALLOC |
9e8a4a8b
LB
1068 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, 0, 0,
1069 &cached_state, GFP_NOFS);
4cb5300b 1070
1f12bd06 1071 if (i_done != page_cnt) {
9e0baf60
JB
1072 spin_lock(&BTRFS_I(inode)->lock);
1073 BTRFS_I(inode)->outstanding_extents++;
1074 spin_unlock(&BTRFS_I(inode)->lock);
4cb5300b 1075 btrfs_delalloc_release_space(inode,
1f12bd06 1076 (page_cnt - i_done) << PAGE_CACHE_SHIFT);
4cb5300b
CM
1077 }
1078
1079
9e8a4a8b
LB
1080 set_extent_defrag(&BTRFS_I(inode)->io_tree, page_start, page_end - 1,
1081 &cached_state, GFP_NOFS);
4cb5300b
CM
1082
1083 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
1084 page_start, page_end - 1, &cached_state,
1085 GFP_NOFS);
1086
1087 for (i = 0; i < i_done; i++) {
1088 clear_page_dirty_for_io(pages[i]);
1089 ClearPageChecked(pages[i]);
1090 set_page_extent_mapped(pages[i]);
1091 set_page_dirty(pages[i]);
1092 unlock_page(pages[i]);
1093 page_cache_release(pages[i]);
1094 }
1095 return i_done;
1096out:
1097 for (i = 0; i < i_done; i++) {
1098 unlock_page(pages[i]);
1099 page_cache_release(pages[i]);
1100 }
1f12bd06 1101 btrfs_delalloc_release_space(inode, page_cnt << PAGE_CACHE_SHIFT);
4cb5300b
CM
1102 return ret;
1103
1104}
1105
1106int btrfs_defrag_file(struct inode *inode, struct file *file,
1107 struct btrfs_ioctl_defrag_range_args *range,
1108 u64 newer_than, unsigned long max_to_defrag)
1109{
1110 struct btrfs_root *root = BTRFS_I(inode)->root;
4cb5300b 1111 struct file_ra_state *ra = NULL;
f46b5a66 1112 unsigned long last_index;
151a31b2 1113 u64 isize = i_size_read(inode);
940100a4
CM
1114 u64 last_len = 0;
1115 u64 skip = 0;
1116 u64 defrag_end = 0;
4cb5300b 1117 u64 newer_off = range->start;
f46b5a66 1118 unsigned long i;
008873ea 1119 unsigned long ra_index = 0;
f46b5a66 1120 int ret;
4cb5300b 1121 int defrag_count = 0;
1a419d85 1122 int compress_type = BTRFS_COMPRESS_ZLIB;
4cb5300b 1123 int extent_thresh = range->extent_thresh;
008873ea
LZ
1124 int max_cluster = (256 * 1024) >> PAGE_CACHE_SHIFT;
1125 int cluster = max_cluster;
4cb5300b
CM
1126 u64 new_align = ~((u64)128 * 1024 - 1);
1127 struct page **pages = NULL;
1128
1129 if (extent_thresh == 0)
1130 extent_thresh = 256 * 1024;
1a419d85
LZ
1131
1132 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS) {
1133 if (range->compress_type > BTRFS_COMPRESS_TYPES)
1134 return -EINVAL;
1135 if (range->compress_type)
1136 compress_type = range->compress_type;
1137 }
f46b5a66 1138
151a31b2 1139 if (isize == 0)
940100a4
CM
1140 return 0;
1141
4cb5300b
CM
1142 /*
1143 * if we were not given a file, allocate a readahead
1144 * context
1145 */
1146 if (!file) {
1147 ra = kzalloc(sizeof(*ra), GFP_NOFS);
1148 if (!ra)
1149 return -ENOMEM;
1150 file_ra_state_init(ra, inode->i_mapping);
1151 } else {
1152 ra = &file->f_ra;
1153 }
1154
008873ea 1155 pages = kmalloc(sizeof(struct page *) * max_cluster,
4cb5300b
CM
1156 GFP_NOFS);
1157 if (!pages) {
1158 ret = -ENOMEM;
1159 goto out_ra;
1160 }
1161
1162 /* find the last page to defrag */
1e701a32 1163 if (range->start + range->len > range->start) {
151a31b2 1164 last_index = min_t(u64, isize - 1,
1e701a32
CM
1165 range->start + range->len - 1) >> PAGE_CACHE_SHIFT;
1166 } else {
151a31b2 1167 last_index = (isize - 1) >> PAGE_CACHE_SHIFT;
1e701a32
CM
1168 }
1169
4cb5300b
CM
1170 if (newer_than) {
1171 ret = find_new_extents(root, inode, newer_than,
1172 &newer_off, 64 * 1024);
1173 if (!ret) {
1174 range->start = newer_off;
1175 /*
1176 * we always align our defrag to help keep
1177 * the extents in the file evenly spaced
1178 */
1179 i = (newer_off & new_align) >> PAGE_CACHE_SHIFT;
4cb5300b
CM
1180 } else
1181 goto out_ra;
1182 } else {
1183 i = range->start >> PAGE_CACHE_SHIFT;
1184 }
1185 if (!max_to_defrag)
7ec31b54 1186 max_to_defrag = last_index + 1;
4cb5300b 1187
2a0f7f57
LZ
1188 /*
1189 * make writeback starts from i, so the defrag range can be
1190 * written sequentially.
1191 */
1192 if (i < inode->i_mapping->writeback_index)
1193 inode->i_mapping->writeback_index = i;
1194
f7f43cc8
CM
1195 while (i <= last_index && defrag_count < max_to_defrag &&
1196 (i < (i_size_read(inode) + PAGE_CACHE_SIZE - 1) >>
1197 PAGE_CACHE_SHIFT)) {
4cb5300b
CM
1198 /*
1199 * make sure we stop running if someone unmounts
1200 * the FS
1201 */
1202 if (!(inode->i_sb->s_flags & MS_ACTIVE))
1203 break;
1204
210549eb
DS
1205 if (btrfs_defrag_cancelled(root->fs_info)) {
1206 printk(KERN_DEBUG "btrfs: defrag_file cancelled\n");
1207 ret = -EAGAIN;
1208 break;
1209 }
1210
66c26892 1211 if (!should_defrag_range(inode, (u64)i << PAGE_CACHE_SHIFT,
6c282eb4 1212 extent_thresh, &last_len, &skip,
a43a2111
AM
1213 &defrag_end, range->flags &
1214 BTRFS_DEFRAG_RANGE_COMPRESS)) {
940100a4
CM
1215 unsigned long next;
1216 /*
1217 * the should_defrag function tells us how much to skip
1218 * bump our counter by the suggested amount
1219 */
1220 next = (skip + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
1221 i = max(i + 1, next);
1222 continue;
1223 }
008873ea
LZ
1224
1225 if (!newer_than) {
1226 cluster = (PAGE_CACHE_ALIGN(defrag_end) >>
1227 PAGE_CACHE_SHIFT) - i;
1228 cluster = min(cluster, max_cluster);
1229 } else {
1230 cluster = max_cluster;
1231 }
1232
1e701a32 1233 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)
1a419d85 1234 BTRFS_I(inode)->force_compress = compress_type;
940100a4 1235
008873ea
LZ
1236 if (i + cluster > ra_index) {
1237 ra_index = max(i, ra_index);
1238 btrfs_force_ra(inode->i_mapping, ra, file, ra_index,
1239 cluster);
1240 ra_index += max_cluster;
1241 }
940100a4 1242
ecb8bea8 1243 mutex_lock(&inode->i_mutex);
008873ea 1244 ret = cluster_pages_for_defrag(inode, pages, i, cluster);
ecb8bea8
LB
1245 if (ret < 0) {
1246 mutex_unlock(&inode->i_mutex);
4cb5300b 1247 goto out_ra;
ecb8bea8 1248 }
4cb5300b
CM
1249
1250 defrag_count += ret;
1251 balance_dirty_pages_ratelimited_nr(inode->i_mapping, ret);
ecb8bea8 1252 mutex_unlock(&inode->i_mutex);
4cb5300b
CM
1253
1254 if (newer_than) {
1255 if (newer_off == (u64)-1)
1256 break;
1257
e1f041e1
LB
1258 if (ret > 0)
1259 i += ret;
1260
4cb5300b
CM
1261 newer_off = max(newer_off + 1,
1262 (u64)i << PAGE_CACHE_SHIFT);
1263
1264 ret = find_new_extents(root, inode,
1265 newer_than, &newer_off,
1266 64 * 1024);
1267 if (!ret) {
1268 range->start = newer_off;
1269 i = (newer_off & new_align) >> PAGE_CACHE_SHIFT;
4cb5300b
CM
1270 } else {
1271 break;
f46b5a66 1272 }
4cb5300b 1273 } else {
008873ea 1274 if (ret > 0) {
cbcc8326 1275 i += ret;
008873ea
LZ
1276 last_len += ret << PAGE_CACHE_SHIFT;
1277 } else {
cbcc8326 1278 i++;
008873ea
LZ
1279 last_len = 0;
1280 }
f46b5a66 1281 }
f46b5a66
CH
1282 }
1283
1e701a32
CM
1284 if ((range->flags & BTRFS_DEFRAG_RANGE_START_IO))
1285 filemap_flush(inode->i_mapping);
1286
1287 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
1288 /* the filemap_flush will queue IO into the worker threads, but
1289 * we have to make sure the IO is actually started and that
1290 * ordered extents get created before we return
1291 */
1292 atomic_inc(&root->fs_info->async_submit_draining);
1293 while (atomic_read(&root->fs_info->nr_async_submits) ||
1294 atomic_read(&root->fs_info->async_delalloc_pages)) {
1295 wait_event(root->fs_info->async_submit_wait,
1296 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
1297 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
1298 }
1299 atomic_dec(&root->fs_info->async_submit_draining);
1300
1301 mutex_lock(&inode->i_mutex);
261507a0 1302 BTRFS_I(inode)->force_compress = BTRFS_COMPRESS_NONE;
1e701a32
CM
1303 mutex_unlock(&inode->i_mutex);
1304 }
1305
1a419d85 1306 if (range->compress_type == BTRFS_COMPRESS_LZO) {
2b0ce2c2 1307 btrfs_set_fs_incompat(root->fs_info, COMPRESS_LZO);
1a419d85
LZ
1308 }
1309
60ccf82f 1310 ret = defrag_count;
940100a4 1311
4cb5300b
CM
1312out_ra:
1313 if (!file)
1314 kfree(ra);
1315 kfree(pages);
940100a4 1316 return ret;
f46b5a66
CH
1317}
1318
198605a8 1319static noinline int btrfs_ioctl_resize(struct file *file,
76dda93c 1320 void __user *arg)
f46b5a66
CH
1321{
1322 u64 new_size;
1323 u64 old_size;
1324 u64 devid = 1;
198605a8 1325 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
f46b5a66
CH
1326 struct btrfs_ioctl_vol_args *vol_args;
1327 struct btrfs_trans_handle *trans;
1328 struct btrfs_device *device = NULL;
1329 char *sizestr;
1330 char *devstr = NULL;
1331 int ret = 0;
f46b5a66
CH
1332 int mod = 0;
1333
e441d54d
CM
1334 if (!capable(CAP_SYS_ADMIN))
1335 return -EPERM;
1336
198605a8
MX
1337 ret = mnt_want_write_file(file);
1338 if (ret)
1339 return ret;
1340
5ac00add
SB
1341 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
1342 1)) {
1343 pr_info("btrfs: dev add/delete/balance/replace/resize operation in progress\n");
97547676 1344 mnt_drop_write_file(file);
2c0c9da0 1345 return -EINVAL;
c9e9f97b
ID
1346 }
1347
5ac00add 1348 mutex_lock(&root->fs_info->volume_mutex);
dae7b665 1349 vol_args = memdup_user(arg, sizeof(*vol_args));
c9e9f97b
ID
1350 if (IS_ERR(vol_args)) {
1351 ret = PTR_ERR(vol_args);
1352 goto out;
1353 }
5516e595
MF
1354
1355 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
f46b5a66 1356
f46b5a66
CH
1357 sizestr = vol_args->name;
1358 devstr = strchr(sizestr, ':');
1359 if (devstr) {
1360 char *end;
1361 sizestr = devstr + 1;
1362 *devstr = '\0';
1363 devstr = vol_args->name;
1364 devid = simple_strtoull(devstr, &end, 10);
dfd79829
MX
1365 if (!devid) {
1366 ret = -EINVAL;
1367 goto out_free;
1368 }
5bb14682 1369 printk(KERN_INFO "btrfs: resizing devid %llu\n",
21380931 1370 (unsigned long long)devid);
f46b5a66 1371 }
dba60f3f 1372
aa1b8cd4 1373 device = btrfs_find_device(root->fs_info, devid, NULL, NULL);
f46b5a66 1374 if (!device) {
5bb14682 1375 printk(KERN_INFO "btrfs: resizer unable to find device %llu\n",
21380931 1376 (unsigned long long)devid);
dfd79829 1377 ret = -ENODEV;
c9e9f97b 1378 goto out_free;
f46b5a66 1379 }
dba60f3f
MX
1380
1381 if (!device->writeable) {
4e42ae1b 1382 printk(KERN_INFO "btrfs: resizer unable to apply on "
dba60f3f 1383 "readonly device %llu\n",
a8c4a33b 1384 (unsigned long long)devid);
dfd79829 1385 ret = -EPERM;
4e42ae1b
LB
1386 goto out_free;
1387 }
1388
f46b5a66
CH
1389 if (!strcmp(sizestr, "max"))
1390 new_size = device->bdev->bd_inode->i_size;
1391 else {
1392 if (sizestr[0] == '-') {
1393 mod = -1;
1394 sizestr++;
1395 } else if (sizestr[0] == '+') {
1396 mod = 1;
1397 sizestr++;
1398 }
91748467 1399 new_size = memparse(sizestr, NULL);
f46b5a66
CH
1400 if (new_size == 0) {
1401 ret = -EINVAL;
c9e9f97b 1402 goto out_free;
f46b5a66
CH
1403 }
1404 }
1405
63a212ab 1406 if (device->is_tgtdev_for_dev_replace) {
dfd79829 1407 ret = -EPERM;
63a212ab
SB
1408 goto out_free;
1409 }
1410
f46b5a66
CH
1411 old_size = device->total_bytes;
1412
1413 if (mod < 0) {
1414 if (new_size > old_size) {
1415 ret = -EINVAL;
c9e9f97b 1416 goto out_free;
f46b5a66
CH
1417 }
1418 new_size = old_size - new_size;
1419 } else if (mod > 0) {
1420 new_size = old_size + new_size;
1421 }
1422
1423 if (new_size < 256 * 1024 * 1024) {
1424 ret = -EINVAL;
c9e9f97b 1425 goto out_free;
f46b5a66
CH
1426 }
1427 if (new_size > device->bdev->bd_inode->i_size) {
1428 ret = -EFBIG;
c9e9f97b 1429 goto out_free;
f46b5a66
CH
1430 }
1431
1432 do_div(new_size, root->sectorsize);
1433 new_size *= root->sectorsize;
1434
606686ee
JB
1435 printk_in_rcu(KERN_INFO "btrfs: new size for %s is %llu\n",
1436 rcu_str_deref(device->name),
1437 (unsigned long long)new_size);
f46b5a66
CH
1438
1439 if (new_size > old_size) {
a22285a6 1440 trans = btrfs_start_transaction(root, 0);
98d5dc13
TI
1441 if (IS_ERR(trans)) {
1442 ret = PTR_ERR(trans);
c9e9f97b 1443 goto out_free;
98d5dc13 1444 }
f46b5a66
CH
1445 ret = btrfs_grow_device(trans, device, new_size);
1446 btrfs_commit_transaction(trans, root);
ece7d20e 1447 } else if (new_size < old_size) {
f46b5a66 1448 ret = btrfs_shrink_device(device, new_size);
0253f40e 1449 } /* equal, nothing need to do */
f46b5a66 1450
c9e9f97b 1451out_free:
f46b5a66 1452 kfree(vol_args);
c9e9f97b
ID
1453out:
1454 mutex_unlock(&root->fs_info->volume_mutex);
5ac00add 1455 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
18f39c41 1456 mnt_drop_write_file(file);
f46b5a66
CH
1457 return ret;
1458}
1459
72fd032e 1460static noinline int btrfs_ioctl_snap_create_transid(struct file *file,
6f72c7e2
AJ
1461 char *name, unsigned long fd, int subvol,
1462 u64 *transid, bool readonly,
8696c533 1463 struct btrfs_qgroup_inherit *inherit)
f46b5a66 1464{
f46b5a66 1465 int namelen;
3de4586c 1466 int ret = 0;
f46b5a66 1467
a874a63e
LB
1468 ret = mnt_want_write_file(file);
1469 if (ret)
1470 goto out;
1471
72fd032e
SW
1472 namelen = strlen(name);
1473 if (strchr(name, '/')) {
f46b5a66 1474 ret = -EINVAL;
a874a63e 1475 goto out_drop_write;
f46b5a66
CH
1476 }
1477
16780cab
CM
1478 if (name[0] == '.' &&
1479 (namelen == 1 || (name[1] == '.' && namelen == 2))) {
1480 ret = -EEXIST;
a874a63e 1481 goto out_drop_write;
16780cab
CM
1482 }
1483
3de4586c 1484 if (subvol) {
72fd032e 1485 ret = btrfs_mksubvol(&file->f_path, name, namelen,
6f72c7e2 1486 NULL, transid, readonly, inherit);
cb8e7090 1487 } else {
2903ff01 1488 struct fd src = fdget(fd);
3de4586c 1489 struct inode *src_inode;
2903ff01 1490 if (!src.file) {
3de4586c 1491 ret = -EINVAL;
a874a63e 1492 goto out_drop_write;
3de4586c
CM
1493 }
1494
2903ff01 1495 src_inode = src.file->f_path.dentry->d_inode;
3de4586c 1496 if (src_inode->i_sb != file->f_path.dentry->d_inode->i_sb) {
d397712b
CM
1497 printk(KERN_INFO "btrfs: Snapshot src from "
1498 "another FS\n");
3de4586c 1499 ret = -EINVAL;
ecd18815
AV
1500 } else {
1501 ret = btrfs_mksubvol(&file->f_path, name, namelen,
1502 BTRFS_I(src_inode)->root,
1503 transid, readonly, inherit);
3de4586c 1504 }
2903ff01 1505 fdput(src);
cb8e7090 1506 }
a874a63e
LB
1507out_drop_write:
1508 mnt_drop_write_file(file);
f46b5a66 1509out:
72fd032e
SW
1510 return ret;
1511}
1512
1513static noinline int btrfs_ioctl_snap_create(struct file *file,
fa0d2b9b 1514 void __user *arg, int subvol)
72fd032e 1515{
fa0d2b9b 1516 struct btrfs_ioctl_vol_args *vol_args;
72fd032e
SW
1517 int ret;
1518
fa0d2b9b
LZ
1519 vol_args = memdup_user(arg, sizeof(*vol_args));
1520 if (IS_ERR(vol_args))
1521 return PTR_ERR(vol_args);
1522 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
72fd032e 1523
fa0d2b9b 1524 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
b83cc969 1525 vol_args->fd, subvol,
6f72c7e2 1526 NULL, false, NULL);
fdfb1e4f 1527
fa0d2b9b
LZ
1528 kfree(vol_args);
1529 return ret;
1530}
fdfb1e4f 1531
fa0d2b9b
LZ
1532static noinline int btrfs_ioctl_snap_create_v2(struct file *file,
1533 void __user *arg, int subvol)
1534{
1535 struct btrfs_ioctl_vol_args_v2 *vol_args;
1536 int ret;
1537 u64 transid = 0;
1538 u64 *ptr = NULL;
b83cc969 1539 bool readonly = false;
6f72c7e2 1540 struct btrfs_qgroup_inherit *inherit = NULL;
75eaa0e2 1541
fa0d2b9b
LZ
1542 vol_args = memdup_user(arg, sizeof(*vol_args));
1543 if (IS_ERR(vol_args))
1544 return PTR_ERR(vol_args);
1545 vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
75eaa0e2 1546
b83cc969 1547 if (vol_args->flags &
6f72c7e2
AJ
1548 ~(BTRFS_SUBVOL_CREATE_ASYNC | BTRFS_SUBVOL_RDONLY |
1549 BTRFS_SUBVOL_QGROUP_INHERIT)) {
b83cc969 1550 ret = -EOPNOTSUPP;
fa0d2b9b 1551 goto out;
72fd032e 1552 }
fa0d2b9b
LZ
1553
1554 if (vol_args->flags & BTRFS_SUBVOL_CREATE_ASYNC)
1555 ptr = &transid;
b83cc969
LZ
1556 if (vol_args->flags & BTRFS_SUBVOL_RDONLY)
1557 readonly = true;
6f72c7e2
AJ
1558 if (vol_args->flags & BTRFS_SUBVOL_QGROUP_INHERIT) {
1559 if (vol_args->size > PAGE_CACHE_SIZE) {
1560 ret = -EINVAL;
1561 goto out;
1562 }
1563 inherit = memdup_user(vol_args->qgroup_inherit, vol_args->size);
1564 if (IS_ERR(inherit)) {
1565 ret = PTR_ERR(inherit);
1566 goto out;
1567 }
1568 }
fa0d2b9b
LZ
1569
1570 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
6f72c7e2 1571 vol_args->fd, subvol, ptr,
8696c533 1572 readonly, inherit);
fa0d2b9b
LZ
1573
1574 if (ret == 0 && ptr &&
1575 copy_to_user(arg +
1576 offsetof(struct btrfs_ioctl_vol_args_v2,
1577 transid), ptr, sizeof(*ptr)))
1578 ret = -EFAULT;
fdfb1e4f 1579out:
f46b5a66 1580 kfree(vol_args);
6f72c7e2 1581 kfree(inherit);
f46b5a66
CH
1582 return ret;
1583}
1584
0caa102d
LZ
1585static noinline int btrfs_ioctl_subvol_getflags(struct file *file,
1586 void __user *arg)
1587{
1588 struct inode *inode = fdentry(file)->d_inode;
1589 struct btrfs_root *root = BTRFS_I(inode)->root;
1590 int ret = 0;
1591 u64 flags = 0;
1592
33345d01 1593 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID)
0caa102d
LZ
1594 return -EINVAL;
1595
1596 down_read(&root->fs_info->subvol_sem);
1597 if (btrfs_root_readonly(root))
1598 flags |= BTRFS_SUBVOL_RDONLY;
1599 up_read(&root->fs_info->subvol_sem);
1600
1601 if (copy_to_user(arg, &flags, sizeof(flags)))
1602 ret = -EFAULT;
1603
1604 return ret;
1605}
1606
1607static noinline int btrfs_ioctl_subvol_setflags(struct file *file,
1608 void __user *arg)
1609{
1610 struct inode *inode = fdentry(file)->d_inode;
1611 struct btrfs_root *root = BTRFS_I(inode)->root;
1612 struct btrfs_trans_handle *trans;
1613 u64 root_flags;
1614 u64 flags;
1615 int ret = 0;
1616
b9ca0664
LB
1617 ret = mnt_want_write_file(file);
1618 if (ret)
1619 goto out;
0caa102d 1620
b9ca0664
LB
1621 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
1622 ret = -EINVAL;
1623 goto out_drop_write;
1624 }
0caa102d 1625
b9ca0664
LB
1626 if (copy_from_user(&flags, arg, sizeof(flags))) {
1627 ret = -EFAULT;
1628 goto out_drop_write;
1629 }
0caa102d 1630
b9ca0664
LB
1631 if (flags & BTRFS_SUBVOL_CREATE_ASYNC) {
1632 ret = -EINVAL;
1633 goto out_drop_write;
1634 }
0caa102d 1635
b9ca0664
LB
1636 if (flags & ~BTRFS_SUBVOL_RDONLY) {
1637 ret = -EOPNOTSUPP;
1638 goto out_drop_write;
1639 }
0caa102d 1640
b9ca0664
LB
1641 if (!inode_owner_or_capable(inode)) {
1642 ret = -EACCES;
1643 goto out_drop_write;
1644 }
b4dc2b8c 1645
0caa102d
LZ
1646 down_write(&root->fs_info->subvol_sem);
1647
1648 /* nothing to do */
1649 if (!!(flags & BTRFS_SUBVOL_RDONLY) == btrfs_root_readonly(root))
b9ca0664 1650 goto out_drop_sem;
0caa102d
LZ
1651
1652 root_flags = btrfs_root_flags(&root->root_item);
1653 if (flags & BTRFS_SUBVOL_RDONLY)
1654 btrfs_set_root_flags(&root->root_item,
1655 root_flags | BTRFS_ROOT_SUBVOL_RDONLY);
1656 else
1657 btrfs_set_root_flags(&root->root_item,
1658 root_flags & ~BTRFS_ROOT_SUBVOL_RDONLY);
1659
1660 trans = btrfs_start_transaction(root, 1);
1661 if (IS_ERR(trans)) {
1662 ret = PTR_ERR(trans);
1663 goto out_reset;
1664 }
1665
b4dc2b8c 1666 ret = btrfs_update_root(trans, root->fs_info->tree_root,
0caa102d
LZ
1667 &root->root_key, &root->root_item);
1668
1669 btrfs_commit_transaction(trans, root);
1670out_reset:
1671 if (ret)
1672 btrfs_set_root_flags(&root->root_item, root_flags);
b9ca0664 1673out_drop_sem:
0caa102d 1674 up_write(&root->fs_info->subvol_sem);
b9ca0664
LB
1675out_drop_write:
1676 mnt_drop_write_file(file);
1677out:
0caa102d
LZ
1678 return ret;
1679}
1680
76dda93c
YZ
1681/*
1682 * helper to check if the subvolume references other subvolumes
1683 */
1684static noinline int may_destroy_subvol(struct btrfs_root *root)
1685{
1686 struct btrfs_path *path;
1687 struct btrfs_key key;
1688 int ret;
1689
1690 path = btrfs_alloc_path();
1691 if (!path)
1692 return -ENOMEM;
1693
1694 key.objectid = root->root_key.objectid;
1695 key.type = BTRFS_ROOT_REF_KEY;
1696 key.offset = (u64)-1;
1697
1698 ret = btrfs_search_slot(NULL, root->fs_info->tree_root,
1699 &key, path, 0, 0);
1700 if (ret < 0)
1701 goto out;
1702 BUG_ON(ret == 0);
1703
1704 ret = 0;
1705 if (path->slots[0] > 0) {
1706 path->slots[0]--;
1707 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1708 if (key.objectid == root->root_key.objectid &&
1709 key.type == BTRFS_ROOT_REF_KEY)
1710 ret = -ENOTEMPTY;
1711 }
1712out:
1713 btrfs_free_path(path);
1714 return ret;
1715}
1716
ac8e9819
CM
1717static noinline int key_in_sk(struct btrfs_key *key,
1718 struct btrfs_ioctl_search_key *sk)
1719{
abc6e134
CM
1720 struct btrfs_key test;
1721 int ret;
1722
1723 test.objectid = sk->min_objectid;
1724 test.type = sk->min_type;
1725 test.offset = sk->min_offset;
1726
1727 ret = btrfs_comp_cpu_keys(key, &test);
1728 if (ret < 0)
ac8e9819 1729 return 0;
abc6e134
CM
1730
1731 test.objectid = sk->max_objectid;
1732 test.type = sk->max_type;
1733 test.offset = sk->max_offset;
1734
1735 ret = btrfs_comp_cpu_keys(key, &test);
1736 if (ret > 0)
ac8e9819
CM
1737 return 0;
1738 return 1;
1739}
1740
1741static noinline int copy_to_sk(struct btrfs_root *root,
1742 struct btrfs_path *path,
1743 struct btrfs_key *key,
1744 struct btrfs_ioctl_search_key *sk,
1745 char *buf,
1746 unsigned long *sk_offset,
1747 int *num_found)
1748{
1749 u64 found_transid;
1750 struct extent_buffer *leaf;
1751 struct btrfs_ioctl_search_header sh;
1752 unsigned long item_off;
1753 unsigned long item_len;
1754 int nritems;
1755 int i;
1756 int slot;
ac8e9819
CM
1757 int ret = 0;
1758
1759 leaf = path->nodes[0];
1760 slot = path->slots[0];
1761 nritems = btrfs_header_nritems(leaf);
1762
1763 if (btrfs_header_generation(leaf) > sk->max_transid) {
1764 i = nritems;
1765 goto advance_key;
1766 }
1767 found_transid = btrfs_header_generation(leaf);
1768
1769 for (i = slot; i < nritems; i++) {
1770 item_off = btrfs_item_ptr_offset(leaf, i);
1771 item_len = btrfs_item_size_nr(leaf, i);
1772
1773 if (item_len > BTRFS_SEARCH_ARGS_BUFSIZE)
1774 item_len = 0;
1775
1776 if (sizeof(sh) + item_len + *sk_offset >
1777 BTRFS_SEARCH_ARGS_BUFSIZE) {
1778 ret = 1;
1779 goto overflow;
1780 }
1781
1782 btrfs_item_key_to_cpu(leaf, key, i);
1783 if (!key_in_sk(key, sk))
1784 continue;
1785
1786 sh.objectid = key->objectid;
1787 sh.offset = key->offset;
1788 sh.type = key->type;
1789 sh.len = item_len;
1790 sh.transid = found_transid;
1791
1792 /* copy search result header */
1793 memcpy(buf + *sk_offset, &sh, sizeof(sh));
1794 *sk_offset += sizeof(sh);
1795
1796 if (item_len) {
1797 char *p = buf + *sk_offset;
1798 /* copy the item */
1799 read_extent_buffer(leaf, p,
1800 item_off, item_len);
1801 *sk_offset += item_len;
ac8e9819 1802 }
e2156867 1803 (*num_found)++;
ac8e9819
CM
1804
1805 if (*num_found >= sk->nr_items)
1806 break;
1807 }
1808advance_key:
abc6e134
CM
1809 ret = 0;
1810 if (key->offset < (u64)-1 && key->offset < sk->max_offset)
ac8e9819 1811 key->offset++;
abc6e134
CM
1812 else if (key->type < (u8)-1 && key->type < sk->max_type) {
1813 key->offset = 0;
ac8e9819 1814 key->type++;
abc6e134
CM
1815 } else if (key->objectid < (u64)-1 && key->objectid < sk->max_objectid) {
1816 key->offset = 0;
1817 key->type = 0;
ac8e9819 1818 key->objectid++;
abc6e134
CM
1819 } else
1820 ret = 1;
ac8e9819 1821overflow:
ac8e9819
CM
1822 return ret;
1823}
1824
1825static noinline int search_ioctl(struct inode *inode,
1826 struct btrfs_ioctl_search_args *args)
1827{
1828 struct btrfs_root *root;
1829 struct btrfs_key key;
1830 struct btrfs_key max_key;
1831 struct btrfs_path *path;
1832 struct btrfs_ioctl_search_key *sk = &args->key;
1833 struct btrfs_fs_info *info = BTRFS_I(inode)->root->fs_info;
1834 int ret;
1835 int num_found = 0;
1836 unsigned long sk_offset = 0;
1837
1838 path = btrfs_alloc_path();
1839 if (!path)
1840 return -ENOMEM;
1841
1842 if (sk->tree_id == 0) {
1843 /* search the root of the inode that was passed */
1844 root = BTRFS_I(inode)->root;
1845 } else {
1846 key.objectid = sk->tree_id;
1847 key.type = BTRFS_ROOT_ITEM_KEY;
1848 key.offset = (u64)-1;
1849 root = btrfs_read_fs_root_no_name(info, &key);
1850 if (IS_ERR(root)) {
1851 printk(KERN_ERR "could not find root %llu\n",
1852 sk->tree_id);
1853 btrfs_free_path(path);
1854 return -ENOENT;
1855 }
1856 }
1857
1858 key.objectid = sk->min_objectid;
1859 key.type = sk->min_type;
1860 key.offset = sk->min_offset;
1861
1862 max_key.objectid = sk->max_objectid;
1863 max_key.type = sk->max_type;
1864 max_key.offset = sk->max_offset;
1865
1866 path->keep_locks = 1;
1867
1868 while(1) {
de78b51a 1869 ret = btrfs_search_forward(root, &key, &max_key, path,
ac8e9819
CM
1870 sk->min_transid);
1871 if (ret != 0) {
1872 if (ret > 0)
1873 ret = 0;
1874 goto err;
1875 }
1876 ret = copy_to_sk(root, path, &key, sk, args->buf,
1877 &sk_offset, &num_found);
b3b4aa74 1878 btrfs_release_path(path);
ac8e9819
CM
1879 if (ret || num_found >= sk->nr_items)
1880 break;
1881
1882 }
1883 ret = 0;
1884err:
1885 sk->nr_items = num_found;
1886 btrfs_free_path(path);
1887 return ret;
1888}
1889
1890static noinline int btrfs_ioctl_tree_search(struct file *file,
1891 void __user *argp)
1892{
1893 struct btrfs_ioctl_search_args *args;
1894 struct inode *inode;
1895 int ret;
1896
1897 if (!capable(CAP_SYS_ADMIN))
1898 return -EPERM;
1899
2354d08f
JL
1900 args = memdup_user(argp, sizeof(*args));
1901 if (IS_ERR(args))
1902 return PTR_ERR(args);
ac8e9819 1903
ac8e9819
CM
1904 inode = fdentry(file)->d_inode;
1905 ret = search_ioctl(inode, args);
1906 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
1907 ret = -EFAULT;
1908 kfree(args);
1909 return ret;
1910}
1911
98d377a0 1912/*
ac8e9819
CM
1913 * Search INODE_REFs to identify path name of 'dirid' directory
1914 * in a 'tree_id' tree. and sets path name to 'name'.
1915 */
98d377a0
TH
1916static noinline int btrfs_search_path_in_tree(struct btrfs_fs_info *info,
1917 u64 tree_id, u64 dirid, char *name)
1918{
1919 struct btrfs_root *root;
1920 struct btrfs_key key;
ac8e9819 1921 char *ptr;
98d377a0
TH
1922 int ret = -1;
1923 int slot;
1924 int len;
1925 int total_len = 0;
1926 struct btrfs_inode_ref *iref;
1927 struct extent_buffer *l;
1928 struct btrfs_path *path;
1929
1930 if (dirid == BTRFS_FIRST_FREE_OBJECTID) {
1931 name[0]='\0';
1932 return 0;
1933 }
1934
1935 path = btrfs_alloc_path();
1936 if (!path)
1937 return -ENOMEM;
1938
ac8e9819 1939 ptr = &name[BTRFS_INO_LOOKUP_PATH_MAX];
98d377a0
TH
1940
1941 key.objectid = tree_id;
1942 key.type = BTRFS_ROOT_ITEM_KEY;
1943 key.offset = (u64)-1;
1944 root = btrfs_read_fs_root_no_name(info, &key);
1945 if (IS_ERR(root)) {
1946 printk(KERN_ERR "could not find root %llu\n", tree_id);
8ad6fcab
CM
1947 ret = -ENOENT;
1948 goto out;
98d377a0
TH
1949 }
1950
1951 key.objectid = dirid;
1952 key.type = BTRFS_INODE_REF_KEY;
8ad6fcab 1953 key.offset = (u64)-1;
98d377a0
TH
1954
1955 while(1) {
1956 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1957 if (ret < 0)
1958 goto out;
1959
1960 l = path->nodes[0];
1961 slot = path->slots[0];
8ad6fcab
CM
1962 if (ret > 0 && slot > 0)
1963 slot--;
98d377a0
TH
1964 btrfs_item_key_to_cpu(l, &key, slot);
1965
1966 if (ret > 0 && (key.objectid != dirid ||
ac8e9819
CM
1967 key.type != BTRFS_INODE_REF_KEY)) {
1968 ret = -ENOENT;
98d377a0 1969 goto out;
ac8e9819 1970 }
98d377a0
TH
1971
1972 iref = btrfs_item_ptr(l, slot, struct btrfs_inode_ref);
1973 len = btrfs_inode_ref_name_len(l, iref);
1974 ptr -= len + 1;
1975 total_len += len + 1;
ac8e9819 1976 if (ptr < name)
98d377a0
TH
1977 goto out;
1978
1979 *(ptr + len) = '/';
1980 read_extent_buffer(l, ptr,(unsigned long)(iref + 1), len);
1981
1982 if (key.offset == BTRFS_FIRST_FREE_OBJECTID)
1983 break;
1984
b3b4aa74 1985 btrfs_release_path(path);
98d377a0 1986 key.objectid = key.offset;
8ad6fcab 1987 key.offset = (u64)-1;
98d377a0 1988 dirid = key.objectid;
98d377a0 1989 }
ac8e9819 1990 if (ptr < name)
98d377a0 1991 goto out;
77906a50 1992 memmove(name, ptr, total_len);
98d377a0
TH
1993 name[total_len]='\0';
1994 ret = 0;
1995out:
1996 btrfs_free_path(path);
ac8e9819
CM
1997 return ret;
1998}
1999
2000static noinline int btrfs_ioctl_ino_lookup(struct file *file,
2001 void __user *argp)
2002{
2003 struct btrfs_ioctl_ino_lookup_args *args;
2004 struct inode *inode;
2005 int ret;
2006
2007 if (!capable(CAP_SYS_ADMIN))
2008 return -EPERM;
2009
2354d08f
JL
2010 args = memdup_user(argp, sizeof(*args));
2011 if (IS_ERR(args))
2012 return PTR_ERR(args);
c2b96929 2013
ac8e9819
CM
2014 inode = fdentry(file)->d_inode;
2015
1b53ac4d
CM
2016 if (args->treeid == 0)
2017 args->treeid = BTRFS_I(inode)->root->root_key.objectid;
2018
ac8e9819
CM
2019 ret = btrfs_search_path_in_tree(BTRFS_I(inode)->root->fs_info,
2020 args->treeid, args->objectid,
2021 args->name);
2022
2023 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
2024 ret = -EFAULT;
2025
2026 kfree(args);
98d377a0
TH
2027 return ret;
2028}
2029
76dda93c
YZ
2030static noinline int btrfs_ioctl_snap_destroy(struct file *file,
2031 void __user *arg)
2032{
2033 struct dentry *parent = fdentry(file);
2034 struct dentry *dentry;
2035 struct inode *dir = parent->d_inode;
2036 struct inode *inode;
2037 struct btrfs_root *root = BTRFS_I(dir)->root;
2038 struct btrfs_root *dest = NULL;
2039 struct btrfs_ioctl_vol_args *vol_args;
2040 struct btrfs_trans_handle *trans;
2041 int namelen;
2042 int ret;
2043 int err = 0;
2044
76dda93c
YZ
2045 vol_args = memdup_user(arg, sizeof(*vol_args));
2046 if (IS_ERR(vol_args))
2047 return PTR_ERR(vol_args);
2048
2049 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
2050 namelen = strlen(vol_args->name);
2051 if (strchr(vol_args->name, '/') ||
2052 strncmp(vol_args->name, "..", namelen) == 0) {
2053 err = -EINVAL;
2054 goto out;
2055 }
2056
a561be71 2057 err = mnt_want_write_file(file);
76dda93c
YZ
2058 if (err)
2059 goto out;
2060
2061 mutex_lock_nested(&dir->i_mutex, I_MUTEX_PARENT);
2062 dentry = lookup_one_len(vol_args->name, parent, namelen);
2063 if (IS_ERR(dentry)) {
2064 err = PTR_ERR(dentry);
2065 goto out_unlock_dir;
2066 }
2067
2068 if (!dentry->d_inode) {
2069 err = -ENOENT;
2070 goto out_dput;
2071 }
2072
2073 inode = dentry->d_inode;
4260f7c7
SW
2074 dest = BTRFS_I(inode)->root;
2075 if (!capable(CAP_SYS_ADMIN)){
2076 /*
2077 * Regular user. Only allow this with a special mount
2078 * option, when the user has write+exec access to the
2079 * subvol root, and when rmdir(2) would have been
2080 * allowed.
2081 *
2082 * Note that this is _not_ check that the subvol is
2083 * empty or doesn't contain data that we wouldn't
2084 * otherwise be able to delete.
2085 *
2086 * Users who want to delete empty subvols should try
2087 * rmdir(2).
2088 */
2089 err = -EPERM;
2090 if (!btrfs_test_opt(root, USER_SUBVOL_RM_ALLOWED))
2091 goto out_dput;
2092
2093 /*
2094 * Do not allow deletion if the parent dir is the same
2095 * as the dir to be deleted. That means the ioctl
2096 * must be called on the dentry referencing the root
2097 * of the subvol, not a random directory contained
2098 * within it.
2099 */
2100 err = -EINVAL;
2101 if (root == dest)
2102 goto out_dput;
2103
2104 err = inode_permission(inode, MAY_WRITE | MAY_EXEC);
2105 if (err)
2106 goto out_dput;
4260f7c7
SW
2107 }
2108
5c39da5b
MX
2109 /* check if subvolume may be deleted by a user */
2110 err = btrfs_may_delete(dir, dentry, 1);
2111 if (err)
2112 goto out_dput;
2113
33345d01 2114 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
76dda93c
YZ
2115 err = -EINVAL;
2116 goto out_dput;
2117 }
2118
76dda93c
YZ
2119 mutex_lock(&inode->i_mutex);
2120 err = d_invalidate(dentry);
2121 if (err)
2122 goto out_unlock;
2123
2124 down_write(&root->fs_info->subvol_sem);
2125
2126 err = may_destroy_subvol(dest);
2127 if (err)
2128 goto out_up_write;
2129
a22285a6
YZ
2130 trans = btrfs_start_transaction(root, 0);
2131 if (IS_ERR(trans)) {
2132 err = PTR_ERR(trans);
d327099a 2133 goto out_up_write;
a22285a6
YZ
2134 }
2135 trans->block_rsv = &root->fs_info->global_block_rsv;
2136
76dda93c
YZ
2137 ret = btrfs_unlink_subvol(trans, root, dir,
2138 dest->root_key.objectid,
2139 dentry->d_name.name,
2140 dentry->d_name.len);
79787eaa
JM
2141 if (ret) {
2142 err = ret;
2143 btrfs_abort_transaction(trans, root, ret);
2144 goto out_end_trans;
2145 }
76dda93c
YZ
2146
2147 btrfs_record_root_in_trans(trans, dest);
2148
2149 memset(&dest->root_item.drop_progress, 0,
2150 sizeof(dest->root_item.drop_progress));
2151 dest->root_item.drop_level = 0;
2152 btrfs_set_root_refs(&dest->root_item, 0);
2153
d68fc57b
YZ
2154 if (!xchg(&dest->orphan_item_inserted, 1)) {
2155 ret = btrfs_insert_orphan_item(trans,
2156 root->fs_info->tree_root,
2157 dest->root_key.objectid);
79787eaa
JM
2158 if (ret) {
2159 btrfs_abort_transaction(trans, root, ret);
2160 err = ret;
2161 goto out_end_trans;
2162 }
d68fc57b 2163 }
79787eaa 2164out_end_trans:
531cb13f 2165 ret = btrfs_end_transaction(trans, root);
79787eaa
JM
2166 if (ret && !err)
2167 err = ret;
76dda93c
YZ
2168 inode->i_flags |= S_DEAD;
2169out_up_write:
2170 up_write(&root->fs_info->subvol_sem);
2171out_unlock:
2172 mutex_unlock(&inode->i_mutex);
2173 if (!err) {
efefb143 2174 shrink_dcache_sb(root->fs_info->sb);
76dda93c
YZ
2175 btrfs_invalidate_inodes(dest);
2176 d_delete(dentry);
2177 }
2178out_dput:
2179 dput(dentry);
2180out_unlock_dir:
2181 mutex_unlock(&dir->i_mutex);
2a79f17e 2182 mnt_drop_write_file(file);
76dda93c
YZ
2183out:
2184 kfree(vol_args);
2185 return err;
2186}
2187
1e701a32 2188static int btrfs_ioctl_defrag(struct file *file, void __user *argp)
f46b5a66
CH
2189{
2190 struct inode *inode = fdentry(file)->d_inode;
2191 struct btrfs_root *root = BTRFS_I(inode)->root;
1e701a32 2192 struct btrfs_ioctl_defrag_range_args *range;
c146afad
YZ
2193 int ret;
2194
25122d15
ID
2195 ret = mnt_want_write_file(file);
2196 if (ret)
2197 return ret;
b83cc969 2198
5ac00add
SB
2199 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
2200 1)) {
2201 pr_info("btrfs: dev add/delete/balance/replace/resize operation in progress\n");
25122d15 2202 mnt_drop_write_file(file);
2c0c9da0 2203 return -EINVAL;
5ac00add 2204 }
25122d15
ID
2205
2206 if (btrfs_root_readonly(root)) {
2207 ret = -EROFS;
2208 goto out;
5ac00add 2209 }
f46b5a66
CH
2210
2211 switch (inode->i_mode & S_IFMT) {
2212 case S_IFDIR:
e441d54d
CM
2213 if (!capable(CAP_SYS_ADMIN)) {
2214 ret = -EPERM;
2215 goto out;
2216 }
de78b51a 2217 ret = btrfs_defrag_root(root);
8929ecfa
YZ
2218 if (ret)
2219 goto out;
de78b51a 2220 ret = btrfs_defrag_root(root->fs_info->extent_root);
f46b5a66
CH
2221 break;
2222 case S_IFREG:
e441d54d
CM
2223 if (!(file->f_mode & FMODE_WRITE)) {
2224 ret = -EINVAL;
2225 goto out;
2226 }
1e701a32
CM
2227
2228 range = kzalloc(sizeof(*range), GFP_KERNEL);
2229 if (!range) {
2230 ret = -ENOMEM;
2231 goto out;
2232 }
2233
2234 if (argp) {
2235 if (copy_from_user(range, argp,
2236 sizeof(*range))) {
2237 ret = -EFAULT;
2238 kfree(range);
683be16e 2239 goto out;
1e701a32
CM
2240 }
2241 /* compression requires us to start the IO */
2242 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
2243 range->flags |= BTRFS_DEFRAG_RANGE_START_IO;
2244 range->extent_thresh = (u32)-1;
2245 }
2246 } else {
2247 /* the rest are all set to zero by kzalloc */
2248 range->len = (u64)-1;
2249 }
4cb5300b
CM
2250 ret = btrfs_defrag_file(fdentry(file)->d_inode, file,
2251 range, 0, 0);
2252 if (ret > 0)
2253 ret = 0;
1e701a32 2254 kfree(range);
f46b5a66 2255 break;
8929ecfa
YZ
2256 default:
2257 ret = -EINVAL;
f46b5a66 2258 }
e441d54d 2259out:
5ac00add 2260 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
25122d15 2261 mnt_drop_write_file(file);
e441d54d 2262 return ret;
f46b5a66
CH
2263}
2264
b2950863 2265static long btrfs_ioctl_add_dev(struct btrfs_root *root, void __user *arg)
f46b5a66
CH
2266{
2267 struct btrfs_ioctl_vol_args *vol_args;
2268 int ret;
2269
e441d54d
CM
2270 if (!capable(CAP_SYS_ADMIN))
2271 return -EPERM;
2272
5ac00add
SB
2273 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
2274 1)) {
2275 pr_info("btrfs: dev add/delete/balance/replace/resize operation in progress\n");
2c0c9da0 2276 return -EINVAL;
c9e9f97b
ID
2277 }
2278
5ac00add 2279 mutex_lock(&root->fs_info->volume_mutex);
dae7b665 2280 vol_args = memdup_user(arg, sizeof(*vol_args));
c9e9f97b
ID
2281 if (IS_ERR(vol_args)) {
2282 ret = PTR_ERR(vol_args);
2283 goto out;
2284 }
f46b5a66 2285
5516e595 2286 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
f46b5a66
CH
2287 ret = btrfs_init_new_device(root, vol_args->name);
2288
f46b5a66 2289 kfree(vol_args);
c9e9f97b
ID
2290out:
2291 mutex_unlock(&root->fs_info->volume_mutex);
5ac00add 2292 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
f46b5a66
CH
2293 return ret;
2294}
2295
da24927b 2296static long btrfs_ioctl_rm_dev(struct file *file, void __user *arg)
f46b5a66 2297{
da24927b 2298 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
f46b5a66
CH
2299 struct btrfs_ioctl_vol_args *vol_args;
2300 int ret;
2301
e441d54d
CM
2302 if (!capable(CAP_SYS_ADMIN))
2303 return -EPERM;
2304
da24927b
MX
2305 ret = mnt_want_write_file(file);
2306 if (ret)
2307 return ret;
c146afad 2308
5ac00add
SB
2309 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
2310 1)) {
2311 pr_info("btrfs: dev add/delete/balance/replace/resize operation in progress\n");
da24927b 2312 mnt_drop_write_file(file);
2c0c9da0 2313 return -EINVAL;
c9e9f97b
ID
2314 }
2315
5ac00add 2316 mutex_lock(&root->fs_info->volume_mutex);
dae7b665 2317 vol_args = memdup_user(arg, sizeof(*vol_args));
c9e9f97b
ID
2318 if (IS_ERR(vol_args)) {
2319 ret = PTR_ERR(vol_args);
2320 goto out;
2321 }
f46b5a66 2322
5516e595 2323 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
f46b5a66
CH
2324 ret = btrfs_rm_device(root, vol_args->name);
2325
f46b5a66 2326 kfree(vol_args);
c9e9f97b
ID
2327out:
2328 mutex_unlock(&root->fs_info->volume_mutex);
5ac00add 2329 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
4ac20c70 2330 mnt_drop_write_file(file);
f46b5a66
CH
2331 return ret;
2332}
2333
475f6387
JS
2334static long btrfs_ioctl_fs_info(struct btrfs_root *root, void __user *arg)
2335{
027ed2f0 2336 struct btrfs_ioctl_fs_info_args *fi_args;
475f6387
JS
2337 struct btrfs_device *device;
2338 struct btrfs_device *next;
2339 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
027ed2f0 2340 int ret = 0;
475f6387
JS
2341
2342 if (!capable(CAP_SYS_ADMIN))
2343 return -EPERM;
2344
027ed2f0
LZ
2345 fi_args = kzalloc(sizeof(*fi_args), GFP_KERNEL);
2346 if (!fi_args)
2347 return -ENOMEM;
2348
2349 fi_args->num_devices = fs_devices->num_devices;
2350 memcpy(&fi_args->fsid, root->fs_info->fsid, sizeof(fi_args->fsid));
475f6387
JS
2351
2352 mutex_lock(&fs_devices->device_list_mutex);
2353 list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) {
027ed2f0
LZ
2354 if (device->devid > fi_args->max_id)
2355 fi_args->max_id = device->devid;
475f6387
JS
2356 }
2357 mutex_unlock(&fs_devices->device_list_mutex);
2358
027ed2f0
LZ
2359 if (copy_to_user(arg, fi_args, sizeof(*fi_args)))
2360 ret = -EFAULT;
475f6387 2361
027ed2f0
LZ
2362 kfree(fi_args);
2363 return ret;
475f6387
JS
2364}
2365
2366static long btrfs_ioctl_dev_info(struct btrfs_root *root, void __user *arg)
2367{
2368 struct btrfs_ioctl_dev_info_args *di_args;
2369 struct btrfs_device *dev;
2370 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
2371 int ret = 0;
2372 char *s_uuid = NULL;
2373 char empty_uuid[BTRFS_UUID_SIZE] = {0};
2374
2375 if (!capable(CAP_SYS_ADMIN))
2376 return -EPERM;
2377
2378 di_args = memdup_user(arg, sizeof(*di_args));
2379 if (IS_ERR(di_args))
2380 return PTR_ERR(di_args);
2381
2382 if (memcmp(empty_uuid, di_args->uuid, BTRFS_UUID_SIZE) != 0)
2383 s_uuid = di_args->uuid;
2384
2385 mutex_lock(&fs_devices->device_list_mutex);
aa1b8cd4 2386 dev = btrfs_find_device(root->fs_info, di_args->devid, s_uuid, NULL);
475f6387
JS
2387 mutex_unlock(&fs_devices->device_list_mutex);
2388
2389 if (!dev) {
2390 ret = -ENODEV;
2391 goto out;
2392 }
2393
2394 di_args->devid = dev->devid;
2395 di_args->bytes_used = dev->bytes_used;
2396 di_args->total_bytes = dev->total_bytes;
2397 memcpy(di_args->uuid, dev->uuid, sizeof(di_args->uuid));
a27202fb 2398 if (dev->name) {
606686ee
JB
2399 struct rcu_string *name;
2400
2401 rcu_read_lock();
2402 name = rcu_dereference(dev->name);
2403 strncpy(di_args->path, name->str, sizeof(di_args->path));
2404 rcu_read_unlock();
a27202fb
JM
2405 di_args->path[sizeof(di_args->path) - 1] = 0;
2406 } else {
99ba55ad 2407 di_args->path[0] = '\0';
a27202fb 2408 }
475f6387
JS
2409
2410out:
2411 if (ret == 0 && copy_to_user(arg, di_args, sizeof(*di_args)))
2412 ret = -EFAULT;
2413
2414 kfree(di_args);
2415 return ret;
2416}
2417
76dda93c
YZ
2418static noinline long btrfs_ioctl_clone(struct file *file, unsigned long srcfd,
2419 u64 off, u64 olen, u64 destoff)
f46b5a66
CH
2420{
2421 struct inode *inode = fdentry(file)->d_inode;
2422 struct btrfs_root *root = BTRFS_I(inode)->root;
2903ff01 2423 struct fd src_file;
f46b5a66
CH
2424 struct inode *src;
2425 struct btrfs_trans_handle *trans;
f46b5a66 2426 struct btrfs_path *path;
f46b5a66 2427 struct extent_buffer *leaf;
ae01a0ab
YZ
2428 char *buf;
2429 struct btrfs_key key;
f46b5a66
CH
2430 u32 nritems;
2431 int slot;
ae01a0ab 2432 int ret;
c5c9cd4d
SW
2433 u64 len = olen;
2434 u64 bs = root->fs_info->sb->s_blocksize;
d20f7043 2435
c5c9cd4d
SW
2436 /*
2437 * TODO:
2438 * - split compressed inline extents. annoying: we need to
2439 * decompress into destination's address_space (the file offset
2440 * may change, so source mapping won't do), then recompress (or
2441 * otherwise reinsert) a subrange.
2442 * - allow ranges within the same file to be cloned (provided
2443 * they don't overlap)?
2444 */
2445
e441d54d 2446 /* the destination must be opened for writing */
2ebc3464 2447 if (!(file->f_mode & FMODE_WRITE) || (file->f_flags & O_APPEND))
e441d54d
CM
2448 return -EINVAL;
2449
b83cc969
LZ
2450 if (btrfs_root_readonly(root))
2451 return -EROFS;
2452
a561be71 2453 ret = mnt_want_write_file(file);
c146afad
YZ
2454 if (ret)
2455 return ret;
2456
2903ff01
AV
2457 src_file = fdget(srcfd);
2458 if (!src_file.file) {
ab67b7c1
YZ
2459 ret = -EBADF;
2460 goto out_drop_write;
2461 }
5dc64164 2462
362a20c5 2463 ret = -EXDEV;
2903ff01 2464 if (src_file.file->f_path.mnt != file->f_path.mnt)
362a20c5
DS
2465 goto out_fput;
2466
2903ff01 2467 src = src_file.file->f_dentry->d_inode;
f46b5a66 2468
c5c9cd4d
SW
2469 ret = -EINVAL;
2470 if (src == inode)
2471 goto out_fput;
2472
5dc64164 2473 /* the src must be open for reading */
2903ff01 2474 if (!(src_file.file->f_mode & FMODE_READ))
5dc64164
DR
2475 goto out_fput;
2476
0e7b824c
LZ
2477 /* don't make the dst file partly checksummed */
2478 if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
2479 (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM))
2480 goto out_fput;
2481
ae01a0ab
YZ
2482 ret = -EISDIR;
2483 if (S_ISDIR(src->i_mode) || S_ISDIR(inode->i_mode))
2484 goto out_fput;
2485
f46b5a66 2486 ret = -EXDEV;
362a20c5 2487 if (src->i_sb != inode->i_sb)
ae01a0ab
YZ
2488 goto out_fput;
2489
2490 ret = -ENOMEM;
2491 buf = vmalloc(btrfs_level_size(root, 0));
2492 if (!buf)
2493 goto out_fput;
2494
2495 path = btrfs_alloc_path();
2496 if (!path) {
2497 vfree(buf);
f46b5a66 2498 goto out_fput;
ae01a0ab
YZ
2499 }
2500 path->reada = 2;
f46b5a66
CH
2501
2502 if (inode < src) {
fccdae43
SW
2503 mutex_lock_nested(&inode->i_mutex, I_MUTEX_PARENT);
2504 mutex_lock_nested(&src->i_mutex, I_MUTEX_CHILD);
f46b5a66 2505 } else {
fccdae43
SW
2506 mutex_lock_nested(&src->i_mutex, I_MUTEX_PARENT);
2507 mutex_lock_nested(&inode->i_mutex, I_MUTEX_CHILD);
f46b5a66
CH
2508 }
2509
c5c9cd4d
SW
2510 /* determine range to clone */
2511 ret = -EINVAL;
2ebc3464 2512 if (off + len > src->i_size || off + len < off)
f46b5a66 2513 goto out_unlock;
c5c9cd4d
SW
2514 if (len == 0)
2515 olen = len = src->i_size - off;
2516 /* if we extend to eof, continue to block boundary */
2517 if (off + len == src->i_size)
2a6b8dae 2518 len = ALIGN(src->i_size, bs) - off;
c5c9cd4d
SW
2519
2520 /* verify the end result is block aligned */
2a6b8dae
LZ
2521 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs) ||
2522 !IS_ALIGNED(destoff, bs))
c5c9cd4d
SW
2523 goto out_unlock;
2524
d525e8ab
LZ
2525 if (destoff > inode->i_size) {
2526 ret = btrfs_cont_expand(inode, inode->i_size, destoff);
2527 if (ret)
2528 goto out_unlock;
2529 }
2530
71ef0786
LZ
2531 /* truncate page cache pages from target inode range */
2532 truncate_inode_pages_range(&inode->i_data, destoff,
2533 PAGE_CACHE_ALIGN(destoff + len) - 1);
2534
f46b5a66
CH
2535 /* do any pending delalloc/csum calc on src, one way or
2536 another, and lock file content */
2537 while (1) {
31840ae1 2538 struct btrfs_ordered_extent *ordered;
aa42ffd9
LB
2539 lock_extent(&BTRFS_I(src)->io_tree, off, off + len - 1);
2540 ordered = btrfs_lookup_first_ordered_extent(src, off + len - 1);
9a019196 2541 if (!ordered &&
aa42ffd9
LB
2542 !test_range_bit(&BTRFS_I(src)->io_tree, off, off + len - 1,
2543 EXTENT_DELALLOC, 0, NULL))
f46b5a66 2544 break;
aa42ffd9 2545 unlock_extent(&BTRFS_I(src)->io_tree, off, off + len - 1);
ae01a0ab
YZ
2546 if (ordered)
2547 btrfs_put_ordered_extent(ordered);
9a019196 2548 btrfs_wait_ordered_range(src, off, len);
f46b5a66
CH
2549 }
2550
c5c9cd4d 2551 /* clone data */
33345d01 2552 key.objectid = btrfs_ino(src);
ae01a0ab
YZ
2553 key.type = BTRFS_EXTENT_DATA_KEY;
2554 key.offset = 0;
f46b5a66
CH
2555
2556 while (1) {
2557 /*
2558 * note the key will change type as we walk through the
2559 * tree.
2560 */
362a20c5
DS
2561 ret = btrfs_search_slot(NULL, BTRFS_I(src)->root, &key, path,
2562 0, 0);
f46b5a66
CH
2563 if (ret < 0)
2564 goto out;
2565
ae01a0ab
YZ
2566 nritems = btrfs_header_nritems(path->nodes[0]);
2567 if (path->slots[0] >= nritems) {
362a20c5 2568 ret = btrfs_next_leaf(BTRFS_I(src)->root, path);
f46b5a66
CH
2569 if (ret < 0)
2570 goto out;
2571 if (ret > 0)
2572 break;
ae01a0ab 2573 nritems = btrfs_header_nritems(path->nodes[0]);
f46b5a66
CH
2574 }
2575 leaf = path->nodes[0];
2576 slot = path->slots[0];
f46b5a66 2577
ae01a0ab 2578 btrfs_item_key_to_cpu(leaf, &key, slot);
d20f7043 2579 if (btrfs_key_type(&key) > BTRFS_EXTENT_DATA_KEY ||
33345d01 2580 key.objectid != btrfs_ino(src))
f46b5a66
CH
2581 break;
2582
c5c9cd4d
SW
2583 if (btrfs_key_type(&key) == BTRFS_EXTENT_DATA_KEY) {
2584 struct btrfs_file_extent_item *extent;
2585 int type;
31840ae1
ZY
2586 u32 size;
2587 struct btrfs_key new_key;
c5c9cd4d
SW
2588 u64 disko = 0, diskl = 0;
2589 u64 datao = 0, datal = 0;
2590 u8 comp;
b5384d48 2591 u64 endoff;
31840ae1
ZY
2592
2593 size = btrfs_item_size_nr(leaf, slot);
2594 read_extent_buffer(leaf, buf,
2595 btrfs_item_ptr_offset(leaf, slot),
2596 size);
c5c9cd4d
SW
2597
2598 extent = btrfs_item_ptr(leaf, slot,
2599 struct btrfs_file_extent_item);
2600 comp = btrfs_file_extent_compression(leaf, extent);
2601 type = btrfs_file_extent_type(leaf, extent);
c8a894d7
CM
2602 if (type == BTRFS_FILE_EXTENT_REG ||
2603 type == BTRFS_FILE_EXTENT_PREALLOC) {
d397712b
CM
2604 disko = btrfs_file_extent_disk_bytenr(leaf,
2605 extent);
2606 diskl = btrfs_file_extent_disk_num_bytes(leaf,
2607 extent);
c5c9cd4d 2608 datao = btrfs_file_extent_offset(leaf, extent);
d397712b
CM
2609 datal = btrfs_file_extent_num_bytes(leaf,
2610 extent);
c5c9cd4d
SW
2611 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
2612 /* take upper bound, may be compressed */
2613 datal = btrfs_file_extent_ram_bytes(leaf,
2614 extent);
2615 }
b3b4aa74 2616 btrfs_release_path(path);
31840ae1 2617
050006a7 2618 if (key.offset + datal <= off ||
aa42ffd9 2619 key.offset >= off + len - 1)
c5c9cd4d
SW
2620 goto next;
2621
31840ae1 2622 memcpy(&new_key, &key, sizeof(new_key));
33345d01 2623 new_key.objectid = btrfs_ino(inode);
4d728ec7
LZ
2624 if (off <= key.offset)
2625 new_key.offset = key.offset + destoff - off;
2626 else
2627 new_key.offset = destoff;
31840ae1 2628
b6f3409b
SW
2629 /*
2630 * 1 - adjusting old extent (we may have to split it)
2631 * 1 - add new extent
2632 * 1 - inode update
2633 */
2634 trans = btrfs_start_transaction(root, 3);
a22285a6
YZ
2635 if (IS_ERR(trans)) {
2636 ret = PTR_ERR(trans);
2637 goto out;
2638 }
2639
c8a894d7
CM
2640 if (type == BTRFS_FILE_EXTENT_REG ||
2641 type == BTRFS_FILE_EXTENT_PREALLOC) {
d72c0842
LZ
2642 /*
2643 * a | --- range to clone ---| b
2644 * | ------------- extent ------------- |
2645 */
2646
2647 /* substract range b */
2648 if (key.offset + datal > off + len)
2649 datal = off + len - key.offset;
2650
2651 /* substract range a */
a22285a6
YZ
2652 if (off > key.offset) {
2653 datao += off - key.offset;
2654 datal -= off - key.offset;
2655 }
2656
5dc562c5 2657 ret = btrfs_drop_extents(trans, root, inode,
a22285a6
YZ
2658 new_key.offset,
2659 new_key.offset + datal,
2671485d 2660 1);
79787eaa
JM
2661 if (ret) {
2662 btrfs_abort_transaction(trans, root,
2663 ret);
2664 btrfs_end_transaction(trans, root);
2665 goto out;
2666 }
a22285a6 2667
c5c9cd4d
SW
2668 ret = btrfs_insert_empty_item(trans, root, path,
2669 &new_key, size);
79787eaa
JM
2670 if (ret) {
2671 btrfs_abort_transaction(trans, root,
2672 ret);
2673 btrfs_end_transaction(trans, root);
2674 goto out;
2675 }
c5c9cd4d
SW
2676
2677 leaf = path->nodes[0];
2678 slot = path->slots[0];
2679 write_extent_buffer(leaf, buf,
31840ae1
ZY
2680 btrfs_item_ptr_offset(leaf, slot),
2681 size);
ae01a0ab 2682
c5c9cd4d 2683 extent = btrfs_item_ptr(leaf, slot,
f46b5a66 2684 struct btrfs_file_extent_item);
c5c9cd4d 2685
c5c9cd4d
SW
2686 /* disko == 0 means it's a hole */
2687 if (!disko)
2688 datao = 0;
c5c9cd4d
SW
2689
2690 btrfs_set_file_extent_offset(leaf, extent,
2691 datao);
2692 btrfs_set_file_extent_num_bytes(leaf, extent,
2693 datal);
2694 if (disko) {
2695 inode_add_bytes(inode, datal);
ae01a0ab 2696 ret = btrfs_inc_extent_ref(trans, root,
5d4f98a2
YZ
2697 disko, diskl, 0,
2698 root->root_key.objectid,
33345d01 2699 btrfs_ino(inode),
66d7e7f0
AJ
2700 new_key.offset - datao,
2701 0);
79787eaa
JM
2702 if (ret) {
2703 btrfs_abort_transaction(trans,
2704 root,
2705 ret);
2706 btrfs_end_transaction(trans,
2707 root);
2708 goto out;
2709
2710 }
f46b5a66 2711 }
c5c9cd4d
SW
2712 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
2713 u64 skip = 0;
2714 u64 trim = 0;
2715 if (off > key.offset) {
2716 skip = off - key.offset;
2717 new_key.offset += skip;
2718 }
d397712b 2719
aa42ffd9
LB
2720 if (key.offset + datal > off + len)
2721 trim = key.offset + datal - (off + len);
d397712b 2722
c5c9cd4d 2723 if (comp && (skip || trim)) {
c5c9cd4d 2724 ret = -EINVAL;
a22285a6 2725 btrfs_end_transaction(trans, root);
c5c9cd4d
SW
2726 goto out;
2727 }
2728 size -= skip + trim;
2729 datal -= skip + trim;
a22285a6 2730
5dc562c5 2731 ret = btrfs_drop_extents(trans, root, inode,
a22285a6
YZ
2732 new_key.offset,
2733 new_key.offset + datal,
2671485d 2734 1);
79787eaa
JM
2735 if (ret) {
2736 btrfs_abort_transaction(trans, root,
2737 ret);
2738 btrfs_end_transaction(trans, root);
2739 goto out;
2740 }
a22285a6 2741
c5c9cd4d
SW
2742 ret = btrfs_insert_empty_item(trans, root, path,
2743 &new_key, size);
79787eaa
JM
2744 if (ret) {
2745 btrfs_abort_transaction(trans, root,
2746 ret);
2747 btrfs_end_transaction(trans, root);
2748 goto out;
2749 }
c5c9cd4d
SW
2750
2751 if (skip) {
d397712b
CM
2752 u32 start =
2753 btrfs_file_extent_calc_inline_size(0);
c5c9cd4d
SW
2754 memmove(buf+start, buf+start+skip,
2755 datal);
2756 }
2757
2758 leaf = path->nodes[0];
2759 slot = path->slots[0];
2760 write_extent_buffer(leaf, buf,
2761 btrfs_item_ptr_offset(leaf, slot),
2762 size);
2763 inode_add_bytes(inode, datal);
f46b5a66 2764 }
c5c9cd4d
SW
2765
2766 btrfs_mark_buffer_dirty(leaf);
b3b4aa74 2767 btrfs_release_path(path);
c5c9cd4d 2768
0c4d2d95 2769 inode_inc_iversion(inode);
a22285a6 2770 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
b5384d48
SW
2771
2772 /*
2773 * we round up to the block size at eof when
2774 * determining which extents to clone above,
2775 * but shouldn't round up the file size
2776 */
2777 endoff = new_key.offset + datal;
5f3888ff
LZ
2778 if (endoff > destoff+olen)
2779 endoff = destoff+olen;
b5384d48
SW
2780 if (endoff > inode->i_size)
2781 btrfs_i_size_write(inode, endoff);
2782
a22285a6 2783 ret = btrfs_update_inode(trans, root, inode);
79787eaa
JM
2784 if (ret) {
2785 btrfs_abort_transaction(trans, root, ret);
2786 btrfs_end_transaction(trans, root);
2787 goto out;
2788 }
2789 ret = btrfs_end_transaction(trans, root);
a22285a6 2790 }
d397712b 2791next:
b3b4aa74 2792 btrfs_release_path(path);
f46b5a66 2793 key.offset++;
f46b5a66 2794 }
f46b5a66
CH
2795 ret = 0;
2796out:
b3b4aa74 2797 btrfs_release_path(path);
aa42ffd9 2798 unlock_extent(&BTRFS_I(src)->io_tree, off, off + len - 1);
f46b5a66
CH
2799out_unlock:
2800 mutex_unlock(&src->i_mutex);
2801 mutex_unlock(&inode->i_mutex);
ae01a0ab
YZ
2802 vfree(buf);
2803 btrfs_free_path(path);
f46b5a66 2804out_fput:
2903ff01 2805 fdput(src_file);
ab67b7c1 2806out_drop_write:
2a79f17e 2807 mnt_drop_write_file(file);
f46b5a66
CH
2808 return ret;
2809}
2810
7a865e8a 2811static long btrfs_ioctl_clone_range(struct file *file, void __user *argp)
c5c9cd4d
SW
2812{
2813 struct btrfs_ioctl_clone_range_args args;
2814
7a865e8a 2815 if (copy_from_user(&args, argp, sizeof(args)))
c5c9cd4d
SW
2816 return -EFAULT;
2817 return btrfs_ioctl_clone(file, args.src_fd, args.src_offset,
2818 args.src_length, args.dest_offset);
2819}
2820
f46b5a66
CH
2821/*
2822 * there are many ways the trans_start and trans_end ioctls can lead
2823 * to deadlocks. They should only be used by applications that
2824 * basically own the machine, and have a very in depth understanding
2825 * of all the possible deadlocks and enospc problems.
2826 */
b2950863 2827static long btrfs_ioctl_trans_start(struct file *file)
f46b5a66
CH
2828{
2829 struct inode *inode = fdentry(file)->d_inode;
2830 struct btrfs_root *root = BTRFS_I(inode)->root;
2831 struct btrfs_trans_handle *trans;
1ab86aed 2832 int ret;
f46b5a66 2833
1ab86aed 2834 ret = -EPERM;
df5b5520 2835 if (!capable(CAP_SYS_ADMIN))
1ab86aed 2836 goto out;
df5b5520 2837
1ab86aed
SW
2838 ret = -EINPROGRESS;
2839 if (file->private_data)
f46b5a66 2840 goto out;
9ca9ee09 2841
b83cc969
LZ
2842 ret = -EROFS;
2843 if (btrfs_root_readonly(root))
2844 goto out;
2845
a561be71 2846 ret = mnt_want_write_file(file);
c146afad
YZ
2847 if (ret)
2848 goto out;
2849
a4abeea4 2850 atomic_inc(&root->fs_info->open_ioctl_trans);
9ca9ee09 2851
1ab86aed 2852 ret = -ENOMEM;
7a7eaa40 2853 trans = btrfs_start_ioctl_transaction(root);
abd30bb0 2854 if (IS_ERR(trans))
1ab86aed
SW
2855 goto out_drop;
2856
2857 file->private_data = trans;
2858 return 0;
2859
2860out_drop:
a4abeea4 2861 atomic_dec(&root->fs_info->open_ioctl_trans);
2a79f17e 2862 mnt_drop_write_file(file);
f46b5a66 2863out:
f46b5a66
CH
2864 return ret;
2865}
2866
6ef5ed0d
JB
2867static long btrfs_ioctl_default_subvol(struct file *file, void __user *argp)
2868{
2869 struct inode *inode = fdentry(file)->d_inode;
2870 struct btrfs_root *root = BTRFS_I(inode)->root;
2871 struct btrfs_root *new_root;
2872 struct btrfs_dir_item *di;
2873 struct btrfs_trans_handle *trans;
2874 struct btrfs_path *path;
2875 struct btrfs_key location;
2876 struct btrfs_disk_key disk_key;
6ef5ed0d
JB
2877 u64 objectid = 0;
2878 u64 dir_id;
3c04ce01 2879 int ret;
6ef5ed0d
JB
2880
2881 if (!capable(CAP_SYS_ADMIN))
2882 return -EPERM;
2883
3c04ce01
MX
2884 ret = mnt_want_write_file(file);
2885 if (ret)
2886 return ret;
2887
2888 if (copy_from_user(&objectid, argp, sizeof(objectid))) {
2889 ret = -EFAULT;
2890 goto out;
2891 }
6ef5ed0d
JB
2892
2893 if (!objectid)
2894 objectid = root->root_key.objectid;
2895
2896 location.objectid = objectid;
2897 location.type = BTRFS_ROOT_ITEM_KEY;
2898 location.offset = (u64)-1;
2899
2900 new_root = btrfs_read_fs_root_no_name(root->fs_info, &location);
3c04ce01
MX
2901 if (IS_ERR(new_root)) {
2902 ret = PTR_ERR(new_root);
2903 goto out;
2904 }
6ef5ed0d 2905
3c04ce01
MX
2906 if (btrfs_root_refs(&new_root->root_item) == 0) {
2907 ret = -ENOENT;
2908 goto out;
2909 }
6ef5ed0d
JB
2910
2911 path = btrfs_alloc_path();
3c04ce01
MX
2912 if (!path) {
2913 ret = -ENOMEM;
2914 goto out;
2915 }
6ef5ed0d
JB
2916 path->leave_spinning = 1;
2917
2918 trans = btrfs_start_transaction(root, 1);
98d5dc13 2919 if (IS_ERR(trans)) {
6ef5ed0d 2920 btrfs_free_path(path);
3c04ce01
MX
2921 ret = PTR_ERR(trans);
2922 goto out;
6ef5ed0d
JB
2923 }
2924
6c41761f 2925 dir_id = btrfs_super_root_dir(root->fs_info->super_copy);
6ef5ed0d
JB
2926 di = btrfs_lookup_dir_item(trans, root->fs_info->tree_root, path,
2927 dir_id, "default", 7, 1);
cf1e99a4 2928 if (IS_ERR_OR_NULL(di)) {
6ef5ed0d
JB
2929 btrfs_free_path(path);
2930 btrfs_end_transaction(trans, root);
2931 printk(KERN_ERR "Umm, you don't have the default dir item, "
2932 "this isn't going to work\n");
3c04ce01
MX
2933 ret = -ENOENT;
2934 goto out;
6ef5ed0d
JB
2935 }
2936
2937 btrfs_cpu_key_to_disk(&disk_key, &new_root->root_key);
2938 btrfs_set_dir_item_key(path->nodes[0], di, &disk_key);
2939 btrfs_mark_buffer_dirty(path->nodes[0]);
2940 btrfs_free_path(path);
2941
2b0ce2c2 2942 btrfs_set_fs_incompat(root->fs_info, DEFAULT_SUBVOL);
6ef5ed0d 2943 btrfs_end_transaction(trans, root);
3c04ce01
MX
2944out:
2945 mnt_drop_write_file(file);
2946 return ret;
6ef5ed0d
JB
2947}
2948
5af3e8cc
SB
2949void btrfs_get_block_group_info(struct list_head *groups_list,
2950 struct btrfs_ioctl_space_info *space)
bf5fc093
JB
2951{
2952 struct btrfs_block_group_cache *block_group;
2953
2954 space->total_bytes = 0;
2955 space->used_bytes = 0;
2956 space->flags = 0;
2957 list_for_each_entry(block_group, groups_list, list) {
2958 space->flags = block_group->flags;
2959 space->total_bytes += block_group->key.offset;
2960 space->used_bytes +=
2961 btrfs_block_group_used(&block_group->item);
2962 }
2963}
2964
1406e432
JB
2965long btrfs_ioctl_space_info(struct btrfs_root *root, void __user *arg)
2966{
2967 struct btrfs_ioctl_space_args space_args;
2968 struct btrfs_ioctl_space_info space;
2969 struct btrfs_ioctl_space_info *dest;
7fde62bf 2970 struct btrfs_ioctl_space_info *dest_orig;
13f2696f 2971 struct btrfs_ioctl_space_info __user *user_dest;
1406e432 2972 struct btrfs_space_info *info;
bf5fc093
JB
2973 u64 types[] = {BTRFS_BLOCK_GROUP_DATA,
2974 BTRFS_BLOCK_GROUP_SYSTEM,
2975 BTRFS_BLOCK_GROUP_METADATA,
2976 BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA};
2977 int num_types = 4;
7fde62bf 2978 int alloc_size;
1406e432 2979 int ret = 0;
51788b1b 2980 u64 slot_count = 0;
bf5fc093 2981 int i, c;
1406e432
JB
2982
2983 if (copy_from_user(&space_args,
2984 (struct btrfs_ioctl_space_args __user *)arg,
2985 sizeof(space_args)))
2986 return -EFAULT;
2987
bf5fc093
JB
2988 for (i = 0; i < num_types; i++) {
2989 struct btrfs_space_info *tmp;
2990
2991 info = NULL;
2992 rcu_read_lock();
2993 list_for_each_entry_rcu(tmp, &root->fs_info->space_info,
2994 list) {
2995 if (tmp->flags == types[i]) {
2996 info = tmp;
2997 break;
2998 }
2999 }
3000 rcu_read_unlock();
3001
3002 if (!info)
3003 continue;
3004
3005 down_read(&info->groups_sem);
3006 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
3007 if (!list_empty(&info->block_groups[c]))
3008 slot_count++;
3009 }
3010 up_read(&info->groups_sem);
3011 }
7fde62bf
CM
3012
3013 /* space_slots == 0 means they are asking for a count */
3014 if (space_args.space_slots == 0) {
3015 space_args.total_spaces = slot_count;
3016 goto out;
3017 }
bf5fc093 3018
51788b1b 3019 slot_count = min_t(u64, space_args.space_slots, slot_count);
bf5fc093 3020
7fde62bf 3021 alloc_size = sizeof(*dest) * slot_count;
bf5fc093 3022
7fde62bf
CM
3023 /* we generally have at most 6 or so space infos, one for each raid
3024 * level. So, a whole page should be more than enough for everyone
3025 */
3026 if (alloc_size > PAGE_CACHE_SIZE)
3027 return -ENOMEM;
3028
1406e432 3029 space_args.total_spaces = 0;
7fde62bf
CM
3030 dest = kmalloc(alloc_size, GFP_NOFS);
3031 if (!dest)
3032 return -ENOMEM;
3033 dest_orig = dest;
1406e432 3034
7fde62bf 3035 /* now we have a buffer to copy into */
bf5fc093
JB
3036 for (i = 0; i < num_types; i++) {
3037 struct btrfs_space_info *tmp;
3038
51788b1b
DR
3039 if (!slot_count)
3040 break;
3041
bf5fc093
JB
3042 info = NULL;
3043 rcu_read_lock();
3044 list_for_each_entry_rcu(tmp, &root->fs_info->space_info,
3045 list) {
3046 if (tmp->flags == types[i]) {
3047 info = tmp;
3048 break;
3049 }
3050 }
3051 rcu_read_unlock();
7fde62bf 3052
bf5fc093
JB
3053 if (!info)
3054 continue;
3055 down_read(&info->groups_sem);
3056 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
3057 if (!list_empty(&info->block_groups[c])) {
5af3e8cc
SB
3058 btrfs_get_block_group_info(
3059 &info->block_groups[c], &space);
bf5fc093
JB
3060 memcpy(dest, &space, sizeof(space));
3061 dest++;
3062 space_args.total_spaces++;
51788b1b 3063 slot_count--;
bf5fc093 3064 }
51788b1b
DR
3065 if (!slot_count)
3066 break;
bf5fc093
JB
3067 }
3068 up_read(&info->groups_sem);
1406e432 3069 }
1406e432 3070
2eec6c81 3071 user_dest = (struct btrfs_ioctl_space_info __user *)
7fde62bf
CM
3072 (arg + sizeof(struct btrfs_ioctl_space_args));
3073
3074 if (copy_to_user(user_dest, dest_orig, alloc_size))
3075 ret = -EFAULT;
3076
3077 kfree(dest_orig);
3078out:
3079 if (ret == 0 && copy_to_user(arg, &space_args, sizeof(space_args)))
1406e432
JB
3080 ret = -EFAULT;
3081
3082 return ret;
3083}
3084
f46b5a66
CH
3085/*
3086 * there are many ways the trans_start and trans_end ioctls can lead
3087 * to deadlocks. They should only be used by applications that
3088 * basically own the machine, and have a very in depth understanding
3089 * of all the possible deadlocks and enospc problems.
3090 */
3091long btrfs_ioctl_trans_end(struct file *file)
3092{
3093 struct inode *inode = fdentry(file)->d_inode;
3094 struct btrfs_root *root = BTRFS_I(inode)->root;
3095 struct btrfs_trans_handle *trans;
f46b5a66 3096
f46b5a66 3097 trans = file->private_data;
1ab86aed
SW
3098 if (!trans)
3099 return -EINVAL;
b214107e 3100 file->private_data = NULL;
9ca9ee09 3101
1ab86aed
SW
3102 btrfs_end_transaction(trans, root);
3103
a4abeea4 3104 atomic_dec(&root->fs_info->open_ioctl_trans);
9ca9ee09 3105
2a79f17e 3106 mnt_drop_write_file(file);
1ab86aed 3107 return 0;
f46b5a66
CH
3108}
3109
9a8c28be
MX
3110static noinline long btrfs_ioctl_start_sync(struct btrfs_root *root,
3111 void __user *argp)
46204592 3112{
46204592
SW
3113 struct btrfs_trans_handle *trans;
3114 u64 transid;
db5b493a 3115 int ret;
46204592 3116
ff7c1d33
MX
3117 trans = btrfs_attach_transaction(root);
3118 if (IS_ERR(trans)) {
3119 if (PTR_ERR(trans) != -ENOENT)
3120 return PTR_ERR(trans);
3121
3122 /* No running transaction, don't bother */
3123 transid = root->fs_info->last_trans_committed;
3124 goto out;
3125 }
46204592 3126 transid = trans->transid;
db5b493a 3127 ret = btrfs_commit_transaction_async(trans, root, 0);
8b2b2d3c
TI
3128 if (ret) {
3129 btrfs_end_transaction(trans, root);
db5b493a 3130 return ret;
8b2b2d3c 3131 }
ff7c1d33 3132out:
46204592
SW
3133 if (argp)
3134 if (copy_to_user(argp, &transid, sizeof(transid)))
3135 return -EFAULT;
3136 return 0;
3137}
3138
9a8c28be
MX
3139static noinline long btrfs_ioctl_wait_sync(struct btrfs_root *root,
3140 void __user *argp)
46204592 3141{
46204592
SW
3142 u64 transid;
3143
3144 if (argp) {
3145 if (copy_from_user(&transid, argp, sizeof(transid)))
3146 return -EFAULT;
3147 } else {
3148 transid = 0; /* current trans */
3149 }
3150 return btrfs_wait_for_commit(root, transid);
3151}
3152
b8e95489 3153static long btrfs_ioctl_scrub(struct file *file, void __user *arg)
475f6387 3154{
b8e95489 3155 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
475f6387 3156 struct btrfs_ioctl_scrub_args *sa;
b8e95489 3157 int ret;
475f6387
JS
3158
3159 if (!capable(CAP_SYS_ADMIN))
3160 return -EPERM;
3161
3162 sa = memdup_user(arg, sizeof(*sa));
3163 if (IS_ERR(sa))
3164 return PTR_ERR(sa);
3165
b8e95489
MX
3166 if (!(sa->flags & BTRFS_SCRUB_READONLY)) {
3167 ret = mnt_want_write_file(file);
3168 if (ret)
3169 goto out;
3170 }
3171
aa1b8cd4 3172 ret = btrfs_scrub_dev(root->fs_info, sa->devid, sa->start, sa->end,
63a212ab
SB
3173 &sa->progress, sa->flags & BTRFS_SCRUB_READONLY,
3174 0);
475f6387
JS
3175
3176 if (copy_to_user(arg, sa, sizeof(*sa)))
3177 ret = -EFAULT;
3178
b8e95489
MX
3179 if (!(sa->flags & BTRFS_SCRUB_READONLY))
3180 mnt_drop_write_file(file);
3181out:
475f6387
JS
3182 kfree(sa);
3183 return ret;
3184}
3185
3186static long btrfs_ioctl_scrub_cancel(struct btrfs_root *root, void __user *arg)
3187{
3188 if (!capable(CAP_SYS_ADMIN))
3189 return -EPERM;
3190
aa1b8cd4 3191 return btrfs_scrub_cancel(root->fs_info);
475f6387
JS
3192}
3193
3194static long btrfs_ioctl_scrub_progress(struct btrfs_root *root,
3195 void __user *arg)
3196{
3197 struct btrfs_ioctl_scrub_args *sa;
3198 int ret;
3199
3200 if (!capable(CAP_SYS_ADMIN))
3201 return -EPERM;
3202
3203 sa = memdup_user(arg, sizeof(*sa));
3204 if (IS_ERR(sa))
3205 return PTR_ERR(sa);
3206
3207 ret = btrfs_scrub_progress(root, sa->devid, &sa->progress);
3208
3209 if (copy_to_user(arg, sa, sizeof(*sa)))
3210 ret = -EFAULT;
3211
3212 kfree(sa);
3213 return ret;
3214}
3215
c11d2c23 3216static long btrfs_ioctl_get_dev_stats(struct btrfs_root *root,
b27f7c0c 3217 void __user *arg)
c11d2c23
SB
3218{
3219 struct btrfs_ioctl_get_dev_stats *sa;
3220 int ret;
3221
c11d2c23
SB
3222 sa = memdup_user(arg, sizeof(*sa));
3223 if (IS_ERR(sa))
3224 return PTR_ERR(sa);
3225
b27f7c0c
DS
3226 if ((sa->flags & BTRFS_DEV_STATS_RESET) && !capable(CAP_SYS_ADMIN)) {
3227 kfree(sa);
3228 return -EPERM;
3229 }
3230
3231 ret = btrfs_get_dev_stats(root, sa);
c11d2c23
SB
3232
3233 if (copy_to_user(arg, sa, sizeof(*sa)))
3234 ret = -EFAULT;
3235
3236 kfree(sa);
3237 return ret;
3238}
3239
3f6bcfbd
SB
3240static long btrfs_ioctl_dev_replace(struct btrfs_root *root, void __user *arg)
3241{
3242 struct btrfs_ioctl_dev_replace_args *p;
3243 int ret;
3244
3245 if (!capable(CAP_SYS_ADMIN))
3246 return -EPERM;
3247
3248 p = memdup_user(arg, sizeof(*p));
3249 if (IS_ERR(p))
3250 return PTR_ERR(p);
3251
3252 switch (p->cmd) {
3253 case BTRFS_IOCTL_DEV_REPLACE_CMD_START:
3254 if (atomic_xchg(
3255 &root->fs_info->mutually_exclusive_operation_running,
3256 1)) {
3257 pr_info("btrfs: dev add/delete/balance/replace/resize operation in progress\n");
3258 ret = -EINPROGRESS;
3259 } else {
3260 ret = btrfs_dev_replace_start(root, p);
3261 atomic_set(
3262 &root->fs_info->mutually_exclusive_operation_running,
3263 0);
3264 }
3265 break;
3266 case BTRFS_IOCTL_DEV_REPLACE_CMD_STATUS:
3267 btrfs_dev_replace_status(root->fs_info, p);
3268 ret = 0;
3269 break;
3270 case BTRFS_IOCTL_DEV_REPLACE_CMD_CANCEL:
3271 ret = btrfs_dev_replace_cancel(root->fs_info, p);
3272 break;
3273 default:
3274 ret = -EINVAL;
3275 break;
3276 }
3277
3278 if (copy_to_user(arg, p, sizeof(*p)))
3279 ret = -EFAULT;
3280
3281 kfree(p);
3282 return ret;
3283}
3284
d7728c96
JS
3285static long btrfs_ioctl_ino_to_path(struct btrfs_root *root, void __user *arg)
3286{
3287 int ret = 0;
3288 int i;
740c3d22 3289 u64 rel_ptr;
d7728c96 3290 int size;
806468f8 3291 struct btrfs_ioctl_ino_path_args *ipa = NULL;
d7728c96
JS
3292 struct inode_fs_paths *ipath = NULL;
3293 struct btrfs_path *path;
3294
82b22ac8 3295 if (!capable(CAP_DAC_READ_SEARCH))
d7728c96
JS
3296 return -EPERM;
3297
3298 path = btrfs_alloc_path();
3299 if (!path) {
3300 ret = -ENOMEM;
3301 goto out;
3302 }
3303
3304 ipa = memdup_user(arg, sizeof(*ipa));
3305 if (IS_ERR(ipa)) {
3306 ret = PTR_ERR(ipa);
3307 ipa = NULL;
3308 goto out;
3309 }
3310
3311 size = min_t(u32, ipa->size, 4096);
3312 ipath = init_ipath(size, root, path);
3313 if (IS_ERR(ipath)) {
3314 ret = PTR_ERR(ipath);
3315 ipath = NULL;
3316 goto out;
3317 }
3318
3319 ret = paths_from_inode(ipa->inum, ipath);
3320 if (ret < 0)
3321 goto out;
3322
3323 for (i = 0; i < ipath->fspath->elem_cnt; ++i) {
745c4d8e
JM
3324 rel_ptr = ipath->fspath->val[i] -
3325 (u64)(unsigned long)ipath->fspath->val;
740c3d22 3326 ipath->fspath->val[i] = rel_ptr;
d7728c96
JS
3327 }
3328
745c4d8e
JM
3329 ret = copy_to_user((void *)(unsigned long)ipa->fspath,
3330 (void *)(unsigned long)ipath->fspath, size);
d7728c96
JS
3331 if (ret) {
3332 ret = -EFAULT;
3333 goto out;
3334 }
3335
3336out:
3337 btrfs_free_path(path);
3338 free_ipath(ipath);
3339 kfree(ipa);
3340
3341 return ret;
3342}
3343
3344static int build_ino_list(u64 inum, u64 offset, u64 root, void *ctx)
3345{
3346 struct btrfs_data_container *inodes = ctx;
3347 const size_t c = 3 * sizeof(u64);
3348
3349 if (inodes->bytes_left >= c) {
3350 inodes->bytes_left -= c;
3351 inodes->val[inodes->elem_cnt] = inum;
3352 inodes->val[inodes->elem_cnt + 1] = offset;
3353 inodes->val[inodes->elem_cnt + 2] = root;
3354 inodes->elem_cnt += 3;
3355 } else {
3356 inodes->bytes_missing += c - inodes->bytes_left;
3357 inodes->bytes_left = 0;
3358 inodes->elem_missed += 3;
3359 }
3360
3361 return 0;
3362}
3363
3364static long btrfs_ioctl_logical_to_ino(struct btrfs_root *root,
3365 void __user *arg)
3366{
3367 int ret = 0;
3368 int size;
d7728c96
JS
3369 struct btrfs_ioctl_logical_ino_args *loi;
3370 struct btrfs_data_container *inodes = NULL;
3371 struct btrfs_path *path = NULL;
d7728c96
JS
3372
3373 if (!capable(CAP_SYS_ADMIN))
3374 return -EPERM;
3375
3376 loi = memdup_user(arg, sizeof(*loi));
3377 if (IS_ERR(loi)) {
3378 ret = PTR_ERR(loi);
3379 loi = NULL;
3380 goto out;
3381 }
3382
3383 path = btrfs_alloc_path();
3384 if (!path) {
3385 ret = -ENOMEM;
3386 goto out;
3387 }
3388
425d17a2 3389 size = min_t(u32, loi->size, 64 * 1024);
d7728c96
JS
3390 inodes = init_data_container(size);
3391 if (IS_ERR(inodes)) {
3392 ret = PTR_ERR(inodes);
3393 inodes = NULL;
3394 goto out;
3395 }
3396
df031f07
LB
3397 ret = iterate_inodes_from_logical(loi->logical, root->fs_info, path,
3398 build_ino_list, inodes);
3399 if (ret == -EINVAL)
d7728c96
JS
3400 ret = -ENOENT;
3401 if (ret < 0)
3402 goto out;
3403
745c4d8e
JM
3404 ret = copy_to_user((void *)(unsigned long)loi->inodes,
3405 (void *)(unsigned long)inodes, size);
d7728c96
JS
3406 if (ret)
3407 ret = -EFAULT;
3408
3409out:
3410 btrfs_free_path(path);
425d17a2 3411 vfree(inodes);
d7728c96
JS
3412 kfree(loi);
3413
3414 return ret;
3415}
3416
19a39dce 3417void update_ioctl_balance_args(struct btrfs_fs_info *fs_info, int lock,
c9e9f97b
ID
3418 struct btrfs_ioctl_balance_args *bargs)
3419{
3420 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
3421
3422 bargs->flags = bctl->flags;
3423
837d5b6e
ID
3424 if (atomic_read(&fs_info->balance_running))
3425 bargs->state |= BTRFS_BALANCE_STATE_RUNNING;
3426 if (atomic_read(&fs_info->balance_pause_req))
3427 bargs->state |= BTRFS_BALANCE_STATE_PAUSE_REQ;
a7e99c69
ID
3428 if (atomic_read(&fs_info->balance_cancel_req))
3429 bargs->state |= BTRFS_BALANCE_STATE_CANCEL_REQ;
837d5b6e 3430
c9e9f97b
ID
3431 memcpy(&bargs->data, &bctl->data, sizeof(bargs->data));
3432 memcpy(&bargs->meta, &bctl->meta, sizeof(bargs->meta));
3433 memcpy(&bargs->sys, &bctl->sys, sizeof(bargs->sys));
19a39dce
ID
3434
3435 if (lock) {
3436 spin_lock(&fs_info->balance_lock);
3437 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
3438 spin_unlock(&fs_info->balance_lock);
3439 } else {
3440 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
3441 }
c9e9f97b
ID
3442}
3443
9ba1f6e4 3444static long btrfs_ioctl_balance(struct file *file, void __user *arg)
c9e9f97b 3445{
9ba1f6e4 3446 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
c9e9f97b
ID
3447 struct btrfs_fs_info *fs_info = root->fs_info;
3448 struct btrfs_ioctl_balance_args *bargs;
3449 struct btrfs_balance_control *bctl;
ed0fb78f 3450 bool need_unlock; /* for mut. excl. ops lock */
c9e9f97b
ID
3451 int ret;
3452
3453 if (!capable(CAP_SYS_ADMIN))
3454 return -EPERM;
3455
e54bfa31 3456 ret = mnt_want_write_file(file);
9ba1f6e4
LB
3457 if (ret)
3458 return ret;
3459
ed0fb78f
ID
3460again:
3461 if (!atomic_xchg(&fs_info->mutually_exclusive_operation_running, 1)) {
3462 mutex_lock(&fs_info->volume_mutex);
3463 mutex_lock(&fs_info->balance_mutex);
3464 need_unlock = true;
3465 goto locked;
3466 }
3467
3468 /*
3469 * mut. excl. ops lock is locked. Three possibilites:
3470 * (1) some other op is running
3471 * (2) balance is running
3472 * (3) balance is paused -- special case (think resume)
3473 */
c9e9f97b 3474 mutex_lock(&fs_info->balance_mutex);
ed0fb78f
ID
3475 if (fs_info->balance_ctl) {
3476 /* this is either (2) or (3) */
3477 if (!atomic_read(&fs_info->balance_running)) {
3478 mutex_unlock(&fs_info->balance_mutex);
3479 if (!mutex_trylock(&fs_info->volume_mutex))
3480 goto again;
3481 mutex_lock(&fs_info->balance_mutex);
3482
3483 if (fs_info->balance_ctl &&
3484 !atomic_read(&fs_info->balance_running)) {
3485 /* this is (3) */
3486 need_unlock = false;
3487 goto locked;
3488 }
3489
3490 mutex_unlock(&fs_info->balance_mutex);
3491 mutex_unlock(&fs_info->volume_mutex);
3492 goto again;
3493 } else {
3494 /* this is (2) */
3495 mutex_unlock(&fs_info->balance_mutex);
3496 ret = -EINPROGRESS;
3497 goto out;
3498 }
3499 } else {
3500 /* this is (1) */
3501 mutex_unlock(&fs_info->balance_mutex);
3502 pr_info("btrfs: dev add/delete/balance/replace/resize operation in progress\n");
3503 ret = -EINVAL;
3504 goto out;
3505 }
3506
3507locked:
3508 BUG_ON(!atomic_read(&fs_info->mutually_exclusive_operation_running));
c9e9f97b
ID
3509
3510 if (arg) {
3511 bargs = memdup_user(arg, sizeof(*bargs));
3512 if (IS_ERR(bargs)) {
3513 ret = PTR_ERR(bargs);
ed0fb78f 3514 goto out_unlock;
c9e9f97b 3515 }
de322263
ID
3516
3517 if (bargs->flags & BTRFS_BALANCE_RESUME) {
3518 if (!fs_info->balance_ctl) {
3519 ret = -ENOTCONN;
3520 goto out_bargs;
3521 }
3522
3523 bctl = fs_info->balance_ctl;
3524 spin_lock(&fs_info->balance_lock);
3525 bctl->flags |= BTRFS_BALANCE_RESUME;
3526 spin_unlock(&fs_info->balance_lock);
3527
3528 goto do_balance;
3529 }
c9e9f97b
ID
3530 } else {
3531 bargs = NULL;
3532 }
3533
ed0fb78f 3534 if (fs_info->balance_ctl) {
837d5b6e
ID
3535 ret = -EINPROGRESS;
3536 goto out_bargs;
3537 }
3538
c9e9f97b
ID
3539 bctl = kzalloc(sizeof(*bctl), GFP_NOFS);
3540 if (!bctl) {
3541 ret = -ENOMEM;
3542 goto out_bargs;
3543 }
3544
3545 bctl->fs_info = fs_info;
3546 if (arg) {
3547 memcpy(&bctl->data, &bargs->data, sizeof(bctl->data));
3548 memcpy(&bctl->meta, &bargs->meta, sizeof(bctl->meta));
3549 memcpy(&bctl->sys, &bargs->sys, sizeof(bctl->sys));
3550
3551 bctl->flags = bargs->flags;
f43ffb60
ID
3552 } else {
3553 /* balance everything - no filters */
3554 bctl->flags |= BTRFS_BALANCE_TYPE_MASK;
c9e9f97b
ID
3555 }
3556
de322263 3557do_balance:
c9e9f97b 3558 /*
ed0fb78f
ID
3559 * Ownership of bctl and mutually_exclusive_operation_running
3560 * goes to to btrfs_balance. bctl is freed in __cancel_balance,
3561 * or, if restriper was paused all the way until unmount, in
3562 * free_fs_info. mutually_exclusive_operation_running is
3563 * cleared in __cancel_balance.
c9e9f97b 3564 */
ed0fb78f
ID
3565 need_unlock = false;
3566
3567 ret = btrfs_balance(bctl, bargs);
3568
c9e9f97b
ID
3569 if (arg) {
3570 if (copy_to_user(arg, bargs, sizeof(*bargs)))
3571 ret = -EFAULT;
3572 }
3573
3574out_bargs:
3575 kfree(bargs);
ed0fb78f 3576out_unlock:
c9e9f97b
ID
3577 mutex_unlock(&fs_info->balance_mutex);
3578 mutex_unlock(&fs_info->volume_mutex);
ed0fb78f
ID
3579 if (need_unlock)
3580 atomic_set(&fs_info->mutually_exclusive_operation_running, 0);
3581out:
e54bfa31 3582 mnt_drop_write_file(file);
c9e9f97b
ID
3583 return ret;
3584}
3585
837d5b6e
ID
3586static long btrfs_ioctl_balance_ctl(struct btrfs_root *root, int cmd)
3587{
3588 if (!capable(CAP_SYS_ADMIN))
3589 return -EPERM;
3590
3591 switch (cmd) {
3592 case BTRFS_BALANCE_CTL_PAUSE:
3593 return btrfs_pause_balance(root->fs_info);
a7e99c69
ID
3594 case BTRFS_BALANCE_CTL_CANCEL:
3595 return btrfs_cancel_balance(root->fs_info);
837d5b6e
ID
3596 }
3597
3598 return -EINVAL;
3599}
3600
19a39dce
ID
3601static long btrfs_ioctl_balance_progress(struct btrfs_root *root,
3602 void __user *arg)
3603{
3604 struct btrfs_fs_info *fs_info = root->fs_info;
3605 struct btrfs_ioctl_balance_args *bargs;
3606 int ret = 0;
3607
3608 if (!capable(CAP_SYS_ADMIN))
3609 return -EPERM;
3610
3611 mutex_lock(&fs_info->balance_mutex);
3612 if (!fs_info->balance_ctl) {
3613 ret = -ENOTCONN;
3614 goto out;
3615 }
3616
3617 bargs = kzalloc(sizeof(*bargs), GFP_NOFS);
3618 if (!bargs) {
3619 ret = -ENOMEM;
3620 goto out;
3621 }
3622
3623 update_ioctl_balance_args(fs_info, 1, bargs);
3624
3625 if (copy_to_user(arg, bargs, sizeof(*bargs)))
3626 ret = -EFAULT;
3627
3628 kfree(bargs);
3629out:
3630 mutex_unlock(&fs_info->balance_mutex);
3631 return ret;
3632}
3633
905b0dda 3634static long btrfs_ioctl_quota_ctl(struct file *file, void __user *arg)
5d13a37b 3635{
905b0dda 3636 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
5d13a37b
AJ
3637 struct btrfs_ioctl_quota_ctl_args *sa;
3638 struct btrfs_trans_handle *trans = NULL;
3639 int ret;
3640 int err;
3641
3642 if (!capable(CAP_SYS_ADMIN))
3643 return -EPERM;
3644
905b0dda
MX
3645 ret = mnt_want_write_file(file);
3646 if (ret)
3647 return ret;
5d13a37b
AJ
3648
3649 sa = memdup_user(arg, sizeof(*sa));
905b0dda
MX
3650 if (IS_ERR(sa)) {
3651 ret = PTR_ERR(sa);
3652 goto drop_write;
3653 }
5d13a37b
AJ
3654
3655 if (sa->cmd != BTRFS_QUOTA_CTL_RESCAN) {
3656 trans = btrfs_start_transaction(root, 2);
3657 if (IS_ERR(trans)) {
3658 ret = PTR_ERR(trans);
3659 goto out;
3660 }
3661 }
3662
3663 switch (sa->cmd) {
3664 case BTRFS_QUOTA_CTL_ENABLE:
3665 ret = btrfs_quota_enable(trans, root->fs_info);
3666 break;
3667 case BTRFS_QUOTA_CTL_DISABLE:
3668 ret = btrfs_quota_disable(trans, root->fs_info);
3669 break;
3670 case BTRFS_QUOTA_CTL_RESCAN:
3671 ret = btrfs_quota_rescan(root->fs_info);
3672 break;
3673 default:
3674 ret = -EINVAL;
3675 break;
3676 }
3677
3678 if (copy_to_user(arg, sa, sizeof(*sa)))
3679 ret = -EFAULT;
3680
3681 if (trans) {
3682 err = btrfs_commit_transaction(trans, root);
3683 if (err && !ret)
3684 ret = err;
3685 }
5d13a37b
AJ
3686out:
3687 kfree(sa);
905b0dda
MX
3688drop_write:
3689 mnt_drop_write_file(file);
5d13a37b
AJ
3690 return ret;
3691}
3692
905b0dda 3693static long btrfs_ioctl_qgroup_assign(struct file *file, void __user *arg)
5d13a37b 3694{
905b0dda 3695 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
5d13a37b
AJ
3696 struct btrfs_ioctl_qgroup_assign_args *sa;
3697 struct btrfs_trans_handle *trans;
3698 int ret;
3699 int err;
3700
3701 if (!capable(CAP_SYS_ADMIN))
3702 return -EPERM;
3703
905b0dda
MX
3704 ret = mnt_want_write_file(file);
3705 if (ret)
3706 return ret;
5d13a37b
AJ
3707
3708 sa = memdup_user(arg, sizeof(*sa));
905b0dda
MX
3709 if (IS_ERR(sa)) {
3710 ret = PTR_ERR(sa);
3711 goto drop_write;
3712 }
5d13a37b
AJ
3713
3714 trans = btrfs_join_transaction(root);
3715 if (IS_ERR(trans)) {
3716 ret = PTR_ERR(trans);
3717 goto out;
3718 }
3719
3720 /* FIXME: check if the IDs really exist */
3721 if (sa->assign) {
3722 ret = btrfs_add_qgroup_relation(trans, root->fs_info,
3723 sa->src, sa->dst);
3724 } else {
3725 ret = btrfs_del_qgroup_relation(trans, root->fs_info,
3726 sa->src, sa->dst);
3727 }
3728
3729 err = btrfs_end_transaction(trans, root);
3730 if (err && !ret)
3731 ret = err;
3732
3733out:
3734 kfree(sa);
905b0dda
MX
3735drop_write:
3736 mnt_drop_write_file(file);
5d13a37b
AJ
3737 return ret;
3738}
3739
905b0dda 3740static long btrfs_ioctl_qgroup_create(struct file *file, void __user *arg)
5d13a37b 3741{
905b0dda 3742 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
5d13a37b
AJ
3743 struct btrfs_ioctl_qgroup_create_args *sa;
3744 struct btrfs_trans_handle *trans;
3745 int ret;
3746 int err;
3747
3748 if (!capable(CAP_SYS_ADMIN))
3749 return -EPERM;
3750
905b0dda
MX
3751 ret = mnt_want_write_file(file);
3752 if (ret)
3753 return ret;
5d13a37b
AJ
3754
3755 sa = memdup_user(arg, sizeof(*sa));
905b0dda
MX
3756 if (IS_ERR(sa)) {
3757 ret = PTR_ERR(sa);
3758 goto drop_write;
3759 }
5d13a37b 3760
d86e56cf
MX
3761 if (!sa->qgroupid) {
3762 ret = -EINVAL;
3763 goto out;
3764 }
3765
5d13a37b
AJ
3766 trans = btrfs_join_transaction(root);
3767 if (IS_ERR(trans)) {
3768 ret = PTR_ERR(trans);
3769 goto out;
3770 }
3771
3772 /* FIXME: check if the IDs really exist */
3773 if (sa->create) {
3774 ret = btrfs_create_qgroup(trans, root->fs_info, sa->qgroupid,
3775 NULL);
3776 } else {
3777 ret = btrfs_remove_qgroup(trans, root->fs_info, sa->qgroupid);
3778 }
3779
3780 err = btrfs_end_transaction(trans, root);
3781 if (err && !ret)
3782 ret = err;
3783
3784out:
3785 kfree(sa);
905b0dda
MX
3786drop_write:
3787 mnt_drop_write_file(file);
5d13a37b
AJ
3788 return ret;
3789}
3790
905b0dda 3791static long btrfs_ioctl_qgroup_limit(struct file *file, void __user *arg)
5d13a37b 3792{
905b0dda 3793 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
5d13a37b
AJ
3794 struct btrfs_ioctl_qgroup_limit_args *sa;
3795 struct btrfs_trans_handle *trans;
3796 int ret;
3797 int err;
3798 u64 qgroupid;
3799
3800 if (!capable(CAP_SYS_ADMIN))
3801 return -EPERM;
3802
905b0dda
MX
3803 ret = mnt_want_write_file(file);
3804 if (ret)
3805 return ret;
5d13a37b
AJ
3806
3807 sa = memdup_user(arg, sizeof(*sa));
905b0dda
MX
3808 if (IS_ERR(sa)) {
3809 ret = PTR_ERR(sa);
3810 goto drop_write;
3811 }
5d13a37b
AJ
3812
3813 trans = btrfs_join_transaction(root);
3814 if (IS_ERR(trans)) {
3815 ret = PTR_ERR(trans);
3816 goto out;
3817 }
3818
3819 qgroupid = sa->qgroupid;
3820 if (!qgroupid) {
3821 /* take the current subvol as qgroup */
3822 qgroupid = root->root_key.objectid;
3823 }
3824
3825 /* FIXME: check if the IDs really exist */
3826 ret = btrfs_limit_qgroup(trans, root->fs_info, qgroupid, &sa->lim);
3827
3828 err = btrfs_end_transaction(trans, root);
3829 if (err && !ret)
3830 ret = err;
3831
3832out:
3833 kfree(sa);
905b0dda
MX
3834drop_write:
3835 mnt_drop_write_file(file);
5d13a37b
AJ
3836 return ret;
3837}
3838
8ea05e3a
AB
3839static long btrfs_ioctl_set_received_subvol(struct file *file,
3840 void __user *arg)
3841{
3842 struct btrfs_ioctl_received_subvol_args *sa = NULL;
3843 struct inode *inode = fdentry(file)->d_inode;
3844 struct btrfs_root *root = BTRFS_I(inode)->root;
3845 struct btrfs_root_item *root_item = &root->root_item;
3846 struct btrfs_trans_handle *trans;
3847 struct timespec ct = CURRENT_TIME;
3848 int ret = 0;
3849
3850 ret = mnt_want_write_file(file);
3851 if (ret < 0)
3852 return ret;
3853
3854 down_write(&root->fs_info->subvol_sem);
3855
3856 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
3857 ret = -EINVAL;
3858 goto out;
3859 }
3860
3861 if (btrfs_root_readonly(root)) {
3862 ret = -EROFS;
3863 goto out;
3864 }
3865
3866 if (!inode_owner_or_capable(inode)) {
3867 ret = -EACCES;
3868 goto out;
3869 }
3870
3871 sa = memdup_user(arg, sizeof(*sa));
3872 if (IS_ERR(sa)) {
3873 ret = PTR_ERR(sa);
3874 sa = NULL;
3875 goto out;
3876 }
3877
3878 trans = btrfs_start_transaction(root, 1);
3879 if (IS_ERR(trans)) {
3880 ret = PTR_ERR(trans);
3881 trans = NULL;
3882 goto out;
3883 }
3884
3885 sa->rtransid = trans->transid;
3886 sa->rtime.sec = ct.tv_sec;
3887 sa->rtime.nsec = ct.tv_nsec;
3888
3889 memcpy(root_item->received_uuid, sa->uuid, BTRFS_UUID_SIZE);
3890 btrfs_set_root_stransid(root_item, sa->stransid);
3891 btrfs_set_root_rtransid(root_item, sa->rtransid);
3892 root_item->stime.sec = cpu_to_le64(sa->stime.sec);
3893 root_item->stime.nsec = cpu_to_le32(sa->stime.nsec);
3894 root_item->rtime.sec = cpu_to_le64(sa->rtime.sec);
3895 root_item->rtime.nsec = cpu_to_le32(sa->rtime.nsec);
3896
3897 ret = btrfs_update_root(trans, root->fs_info->tree_root,
3898 &root->root_key, &root->root_item);
3899 if (ret < 0) {
3900 btrfs_end_transaction(trans, root);
3901 trans = NULL;
3902 goto out;
3903 } else {
3904 ret = btrfs_commit_transaction(trans, root);
3905 if (ret < 0)
3906 goto out;
3907 }
3908
3909 ret = copy_to_user(arg, sa, sizeof(*sa));
3910 if (ret)
3911 ret = -EFAULT;
3912
3913out:
3914 kfree(sa);
3915 up_write(&root->fs_info->subvol_sem);
3916 mnt_drop_write_file(file);
3917 return ret;
3918}
3919
867ab667 3920static int btrfs_ioctl_get_fslabel(struct file *file, void __user *arg)
3921{
3922 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
3923 const char *label = root->fs_info->super_copy->label;
3924 size_t len = strnlen(label, BTRFS_LABEL_SIZE);
3925 int ret;
3926
3927 if (len == BTRFS_LABEL_SIZE) {
3928 pr_warn("btrfs: label is too long, return the first %zu bytes\n",
3929 --len);
3930 }
3931
3932 mutex_lock(&root->fs_info->volume_mutex);
3933 ret = copy_to_user(arg, label, len);
3934 mutex_unlock(&root->fs_info->volume_mutex);
3935
3936 return ret ? -EFAULT : 0;
3937}
3938
a8bfd4ab 3939static int btrfs_ioctl_set_fslabel(struct file *file, void __user *arg)
3940{
3941 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
3942 struct btrfs_super_block *super_block = root->fs_info->super_copy;
3943 struct btrfs_trans_handle *trans;
3944 char label[BTRFS_LABEL_SIZE];
3945 int ret;
3946
3947 if (!capable(CAP_SYS_ADMIN))
3948 return -EPERM;
3949
3950 if (copy_from_user(label, arg, sizeof(label)))
3951 return -EFAULT;
3952
3953 if (strnlen(label, BTRFS_LABEL_SIZE) == BTRFS_LABEL_SIZE) {
3954 pr_err("btrfs: unable to set label with more than %d bytes\n",
3955 BTRFS_LABEL_SIZE - 1);
3956 return -EINVAL;
3957 }
3958
3959 ret = mnt_want_write_file(file);
3960 if (ret)
3961 return ret;
3962
3963 mutex_lock(&root->fs_info->volume_mutex);
3964 trans = btrfs_start_transaction(root, 0);
3965 if (IS_ERR(trans)) {
3966 ret = PTR_ERR(trans);
3967 goto out_unlock;
3968 }
3969
3970 strcpy(super_block->label, label);
3971 ret = btrfs_end_transaction(trans, root);
3972
3973out_unlock:
3974 mutex_unlock(&root->fs_info->volume_mutex);
3975 mnt_drop_write_file(file);
3976 return ret;
3977}
3978
f46b5a66
CH
3979long btrfs_ioctl(struct file *file, unsigned int
3980 cmd, unsigned long arg)
3981{
3982 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
4bcabaa3 3983 void __user *argp = (void __user *)arg;
f46b5a66
CH
3984
3985 switch (cmd) {
6cbff00f
CH
3986 case FS_IOC_GETFLAGS:
3987 return btrfs_ioctl_getflags(file, argp);
3988 case FS_IOC_SETFLAGS:
3989 return btrfs_ioctl_setflags(file, argp);
3990 case FS_IOC_GETVERSION:
3991 return btrfs_ioctl_getversion(file, argp);
f7039b1d
LD
3992 case FITRIM:
3993 return btrfs_ioctl_fitrim(file, argp);
f46b5a66 3994 case BTRFS_IOC_SNAP_CREATE:
fa0d2b9b 3995 return btrfs_ioctl_snap_create(file, argp, 0);
fdfb1e4f 3996 case BTRFS_IOC_SNAP_CREATE_V2:
fa0d2b9b 3997 return btrfs_ioctl_snap_create_v2(file, argp, 0);
3de4586c 3998 case BTRFS_IOC_SUBVOL_CREATE:
fa0d2b9b 3999 return btrfs_ioctl_snap_create(file, argp, 1);
6f72c7e2
AJ
4000 case BTRFS_IOC_SUBVOL_CREATE_V2:
4001 return btrfs_ioctl_snap_create_v2(file, argp, 1);
76dda93c
YZ
4002 case BTRFS_IOC_SNAP_DESTROY:
4003 return btrfs_ioctl_snap_destroy(file, argp);
0caa102d
LZ
4004 case BTRFS_IOC_SUBVOL_GETFLAGS:
4005 return btrfs_ioctl_subvol_getflags(file, argp);
4006 case BTRFS_IOC_SUBVOL_SETFLAGS:
4007 return btrfs_ioctl_subvol_setflags(file, argp);
6ef5ed0d
JB
4008 case BTRFS_IOC_DEFAULT_SUBVOL:
4009 return btrfs_ioctl_default_subvol(file, argp);
f46b5a66 4010 case BTRFS_IOC_DEFRAG:
1e701a32
CM
4011 return btrfs_ioctl_defrag(file, NULL);
4012 case BTRFS_IOC_DEFRAG_RANGE:
4013 return btrfs_ioctl_defrag(file, argp);
f46b5a66 4014 case BTRFS_IOC_RESIZE:
198605a8 4015 return btrfs_ioctl_resize(file, argp);
f46b5a66 4016 case BTRFS_IOC_ADD_DEV:
4bcabaa3 4017 return btrfs_ioctl_add_dev(root, argp);
f46b5a66 4018 case BTRFS_IOC_RM_DEV:
da24927b 4019 return btrfs_ioctl_rm_dev(file, argp);
475f6387
JS
4020 case BTRFS_IOC_FS_INFO:
4021 return btrfs_ioctl_fs_info(root, argp);
4022 case BTRFS_IOC_DEV_INFO:
4023 return btrfs_ioctl_dev_info(root, argp);
f46b5a66 4024 case BTRFS_IOC_BALANCE:
9ba1f6e4 4025 return btrfs_ioctl_balance(file, NULL);
f46b5a66 4026 case BTRFS_IOC_CLONE:
c5c9cd4d
SW
4027 return btrfs_ioctl_clone(file, arg, 0, 0, 0);
4028 case BTRFS_IOC_CLONE_RANGE:
7a865e8a 4029 return btrfs_ioctl_clone_range(file, argp);
f46b5a66
CH
4030 case BTRFS_IOC_TRANS_START:
4031 return btrfs_ioctl_trans_start(file);
4032 case BTRFS_IOC_TRANS_END:
4033 return btrfs_ioctl_trans_end(file);
ac8e9819
CM
4034 case BTRFS_IOC_TREE_SEARCH:
4035 return btrfs_ioctl_tree_search(file, argp);
4036 case BTRFS_IOC_INO_LOOKUP:
4037 return btrfs_ioctl_ino_lookup(file, argp);
d7728c96
JS
4038 case BTRFS_IOC_INO_PATHS:
4039 return btrfs_ioctl_ino_to_path(root, argp);
4040 case BTRFS_IOC_LOGICAL_INO:
4041 return btrfs_ioctl_logical_to_ino(root, argp);
1406e432
JB
4042 case BTRFS_IOC_SPACE_INFO:
4043 return btrfs_ioctl_space_info(root, argp);
f46b5a66
CH
4044 case BTRFS_IOC_SYNC:
4045 btrfs_sync_fs(file->f_dentry->d_sb, 1);
4046 return 0;
46204592 4047 case BTRFS_IOC_START_SYNC:
9a8c28be 4048 return btrfs_ioctl_start_sync(root, argp);
46204592 4049 case BTRFS_IOC_WAIT_SYNC:
9a8c28be 4050 return btrfs_ioctl_wait_sync(root, argp);
475f6387 4051 case BTRFS_IOC_SCRUB:
b8e95489 4052 return btrfs_ioctl_scrub(file, argp);
475f6387
JS
4053 case BTRFS_IOC_SCRUB_CANCEL:
4054 return btrfs_ioctl_scrub_cancel(root, argp);
4055 case BTRFS_IOC_SCRUB_PROGRESS:
4056 return btrfs_ioctl_scrub_progress(root, argp);
c9e9f97b 4057 case BTRFS_IOC_BALANCE_V2:
9ba1f6e4 4058 return btrfs_ioctl_balance(file, argp);
837d5b6e
ID
4059 case BTRFS_IOC_BALANCE_CTL:
4060 return btrfs_ioctl_balance_ctl(root, arg);
19a39dce
ID
4061 case BTRFS_IOC_BALANCE_PROGRESS:
4062 return btrfs_ioctl_balance_progress(root, argp);
8ea05e3a
AB
4063 case BTRFS_IOC_SET_RECEIVED_SUBVOL:
4064 return btrfs_ioctl_set_received_subvol(file, argp);
31db9f7c
AB
4065 case BTRFS_IOC_SEND:
4066 return btrfs_ioctl_send(file, argp);
c11d2c23 4067 case BTRFS_IOC_GET_DEV_STATS:
b27f7c0c 4068 return btrfs_ioctl_get_dev_stats(root, argp);
5d13a37b 4069 case BTRFS_IOC_QUOTA_CTL:
905b0dda 4070 return btrfs_ioctl_quota_ctl(file, argp);
5d13a37b 4071 case BTRFS_IOC_QGROUP_ASSIGN:
905b0dda 4072 return btrfs_ioctl_qgroup_assign(file, argp);
5d13a37b 4073 case BTRFS_IOC_QGROUP_CREATE:
905b0dda 4074 return btrfs_ioctl_qgroup_create(file, argp);
5d13a37b 4075 case BTRFS_IOC_QGROUP_LIMIT:
905b0dda 4076 return btrfs_ioctl_qgroup_limit(file, argp);
3f6bcfbd
SB
4077 case BTRFS_IOC_DEV_REPLACE:
4078 return btrfs_ioctl_dev_replace(root, argp);
867ab667 4079 case BTRFS_IOC_GET_FSLABEL:
4080 return btrfs_ioctl_get_fslabel(file, argp);
a8bfd4ab 4081 case BTRFS_IOC_SET_FSLABEL:
4082 return btrfs_ioctl_set_fslabel(file, argp);
f46b5a66
CH
4083 }
4084
4085 return -ENOTTY;
4086}