Btrfs: cache the extent state everywhere we possibly can V2
[GitHub/mt8127/android_kernel_alcatel_ttab.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>
4b4e25f2 42#include "compat.h"
f46b5a66
CH
43#include "ctree.h"
44#include "disk-io.h"
45#include "transaction.h"
46#include "btrfs_inode.h"
47#include "ioctl.h"
48#include "print-tree.h"
49#include "volumes.h"
925baedd 50#include "locking.h"
98d377a0 51#include "ctree.h"
f46b5a66 52
6cbff00f
CH
53/* Mask out flags that are inappropriate for the given type of inode. */
54static inline __u32 btrfs_mask_flags(umode_t mode, __u32 flags)
55{
56 if (S_ISDIR(mode))
57 return flags;
58 else if (S_ISREG(mode))
59 return flags & ~FS_DIRSYNC_FL;
60 else
61 return flags & (FS_NODUMP_FL | FS_NOATIME_FL);
62}
63
64/*
65 * Export inode flags to the format expected by the FS_IOC_GETFLAGS ioctl.
66 */
67static unsigned int btrfs_flags_to_ioctl(unsigned int flags)
68{
69 unsigned int iflags = 0;
70
71 if (flags & BTRFS_INODE_SYNC)
72 iflags |= FS_SYNC_FL;
73 if (flags & BTRFS_INODE_IMMUTABLE)
74 iflags |= FS_IMMUTABLE_FL;
75 if (flags & BTRFS_INODE_APPEND)
76 iflags |= FS_APPEND_FL;
77 if (flags & BTRFS_INODE_NODUMP)
78 iflags |= FS_NODUMP_FL;
79 if (flags & BTRFS_INODE_NOATIME)
80 iflags |= FS_NOATIME_FL;
81 if (flags & BTRFS_INODE_DIRSYNC)
82 iflags |= FS_DIRSYNC_FL;
83
84 return iflags;
85}
86
87/*
88 * Update inode->i_flags based on the btrfs internal flags.
89 */
90void btrfs_update_iflags(struct inode *inode)
91{
92 struct btrfs_inode *ip = BTRFS_I(inode);
93
94 inode->i_flags &= ~(S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC);
95
96 if (ip->flags & BTRFS_INODE_SYNC)
97 inode->i_flags |= S_SYNC;
98 if (ip->flags & BTRFS_INODE_IMMUTABLE)
99 inode->i_flags |= S_IMMUTABLE;
100 if (ip->flags & BTRFS_INODE_APPEND)
101 inode->i_flags |= S_APPEND;
102 if (ip->flags & BTRFS_INODE_NOATIME)
103 inode->i_flags |= S_NOATIME;
104 if (ip->flags & BTRFS_INODE_DIRSYNC)
105 inode->i_flags |= S_DIRSYNC;
106}
107
108/*
109 * Inherit flags from the parent inode.
110 *
111 * Unlike extN we don't have any flags we don't want to inherit currently.
112 */
113void btrfs_inherit_iflags(struct inode *inode, struct inode *dir)
114{
0b4dcea5
CM
115 unsigned int flags;
116
117 if (!dir)
118 return;
119
120 flags = BTRFS_I(dir)->flags;
6cbff00f
CH
121
122 if (S_ISREG(inode->i_mode))
123 flags &= ~BTRFS_INODE_DIRSYNC;
124 else if (!S_ISDIR(inode->i_mode))
125 flags &= (BTRFS_INODE_NODUMP | BTRFS_INODE_NOATIME);
126
127 BTRFS_I(inode)->flags = flags;
128 btrfs_update_iflags(inode);
129}
130
131static int btrfs_ioctl_getflags(struct file *file, void __user *arg)
132{
133 struct btrfs_inode *ip = BTRFS_I(file->f_path.dentry->d_inode);
134 unsigned int flags = btrfs_flags_to_ioctl(ip->flags);
135
136 if (copy_to_user(arg, &flags, sizeof(flags)))
137 return -EFAULT;
138 return 0;
139}
140
141static int btrfs_ioctl_setflags(struct file *file, void __user *arg)
142{
143 struct inode *inode = file->f_path.dentry->d_inode;
144 struct btrfs_inode *ip = BTRFS_I(inode);
145 struct btrfs_root *root = ip->root;
146 struct btrfs_trans_handle *trans;
147 unsigned int flags, oldflags;
148 int ret;
149
150 if (copy_from_user(&flags, arg, sizeof(flags)))
151 return -EFAULT;
152
153 if (flags & ~(FS_IMMUTABLE_FL | FS_APPEND_FL | \
154 FS_NOATIME_FL | FS_NODUMP_FL | \
155 FS_SYNC_FL | FS_DIRSYNC_FL))
156 return -EOPNOTSUPP;
f46b5a66 157
6cbff00f
CH
158 if (!is_owner_or_cap(inode))
159 return -EACCES;
160
161 mutex_lock(&inode->i_mutex);
162
163 flags = btrfs_mask_flags(inode->i_mode, flags);
164 oldflags = btrfs_flags_to_ioctl(ip->flags);
165 if ((flags ^ oldflags) & (FS_APPEND_FL | FS_IMMUTABLE_FL)) {
166 if (!capable(CAP_LINUX_IMMUTABLE)) {
167 ret = -EPERM;
168 goto out_unlock;
169 }
170 }
171
172 ret = mnt_want_write(file->f_path.mnt);
173 if (ret)
174 goto out_unlock;
175
176 if (flags & FS_SYNC_FL)
177 ip->flags |= BTRFS_INODE_SYNC;
178 else
179 ip->flags &= ~BTRFS_INODE_SYNC;
180 if (flags & FS_IMMUTABLE_FL)
181 ip->flags |= BTRFS_INODE_IMMUTABLE;
182 else
183 ip->flags &= ~BTRFS_INODE_IMMUTABLE;
184 if (flags & FS_APPEND_FL)
185 ip->flags |= BTRFS_INODE_APPEND;
186 else
187 ip->flags &= ~BTRFS_INODE_APPEND;
188 if (flags & FS_NODUMP_FL)
189 ip->flags |= BTRFS_INODE_NODUMP;
190 else
191 ip->flags &= ~BTRFS_INODE_NODUMP;
192 if (flags & FS_NOATIME_FL)
193 ip->flags |= BTRFS_INODE_NOATIME;
194 else
195 ip->flags &= ~BTRFS_INODE_NOATIME;
196 if (flags & FS_DIRSYNC_FL)
197 ip->flags |= BTRFS_INODE_DIRSYNC;
198 else
199 ip->flags &= ~BTRFS_INODE_DIRSYNC;
200
201
202 trans = btrfs_join_transaction(root, 1);
203 BUG_ON(!trans);
204
205 ret = btrfs_update_inode(trans, root, inode);
206 BUG_ON(ret);
207
208 btrfs_update_iflags(inode);
209 inode->i_ctime = CURRENT_TIME;
210 btrfs_end_transaction(trans, root);
211
212 mnt_drop_write(file->f_path.mnt);
213 out_unlock:
214 mutex_unlock(&inode->i_mutex);
215 return 0;
216}
217
218static int btrfs_ioctl_getversion(struct file *file, int __user *arg)
219{
220 struct inode *inode = file->f_path.dentry->d_inode;
221
222 return put_user(inode->i_generation, arg);
223}
f46b5a66 224
cb8e7090
CH
225static noinline int create_subvol(struct btrfs_root *root,
226 struct dentry *dentry,
227 char *name, int namelen)
f46b5a66
CH
228{
229 struct btrfs_trans_handle *trans;
230 struct btrfs_key key;
231 struct btrfs_root_item root_item;
232 struct btrfs_inode_item *inode_item;
233 struct extent_buffer *leaf;
76dda93c
YZ
234 struct btrfs_root *new_root;
235 struct inode *dir = dentry->d_parent->d_inode;
f46b5a66
CH
236 int ret;
237 int err;
238 u64 objectid;
239 u64 new_dirid = BTRFS_FIRST_FREE_OBJECTID;
3de4586c 240 u64 index = 0;
f46b5a66 241
9ed74f2d
JB
242 /*
243 * 1 - inode item
244 * 2 - refs
245 * 1 - root item
246 * 2 - dir items
247 */
248 ret = btrfs_reserve_metadata_space(root, 6);
f46b5a66 249 if (ret)
76dda93c 250 return ret;
f46b5a66
CH
251
252 trans = btrfs_start_transaction(root, 1);
253 BUG_ON(!trans);
254
255 ret = btrfs_find_free_objectid(trans, root->fs_info->tree_root,
256 0, &objectid);
257 if (ret)
258 goto fail;
259
5d4f98a2
YZ
260 leaf = btrfs_alloc_free_block(trans, root, root->leafsize,
261 0, objectid, NULL, 0, 0, 0);
8e8a1e31
JB
262 if (IS_ERR(leaf)) {
263 ret = PTR_ERR(leaf);
264 goto fail;
265 }
f46b5a66 266
5d4f98a2 267 memset_extent_buffer(leaf, 0, 0, sizeof(struct btrfs_header));
f46b5a66
CH
268 btrfs_set_header_bytenr(leaf, leaf->start);
269 btrfs_set_header_generation(leaf, trans->transid);
5d4f98a2 270 btrfs_set_header_backref_rev(leaf, BTRFS_MIXED_BACKREF_REV);
f46b5a66
CH
271 btrfs_set_header_owner(leaf, objectid);
272
273 write_extent_buffer(leaf, root->fs_info->fsid,
274 (unsigned long)btrfs_header_fsid(leaf),
275 BTRFS_FSID_SIZE);
5d4f98a2
YZ
276 write_extent_buffer(leaf, root->fs_info->chunk_tree_uuid,
277 (unsigned long)btrfs_header_chunk_tree_uuid(leaf),
278 BTRFS_UUID_SIZE);
f46b5a66
CH
279 btrfs_mark_buffer_dirty(leaf);
280
281 inode_item = &root_item.inode;
282 memset(inode_item, 0, sizeof(*inode_item));
283 inode_item->generation = cpu_to_le64(1);
284 inode_item->size = cpu_to_le64(3);
285 inode_item->nlink = cpu_to_le32(1);
a76a3cd4 286 inode_item->nbytes = cpu_to_le64(root->leafsize);
f46b5a66
CH
287 inode_item->mode = cpu_to_le32(S_IFDIR | 0755);
288
289 btrfs_set_root_bytenr(&root_item, leaf->start);
84234f3a 290 btrfs_set_root_generation(&root_item, trans->transid);
f46b5a66
CH
291 btrfs_set_root_level(&root_item, 0);
292 btrfs_set_root_refs(&root_item, 1);
86b9f2ec 293 btrfs_set_root_used(&root_item, leaf->len);
80ff3856 294 btrfs_set_root_last_snapshot(&root_item, 0);
f46b5a66
CH
295
296 memset(&root_item.drop_progress, 0, sizeof(root_item.drop_progress));
297 root_item.drop_level = 0;
298
925baedd 299 btrfs_tree_unlock(leaf);
f46b5a66
CH
300 free_extent_buffer(leaf);
301 leaf = NULL;
302
303 btrfs_set_root_dirid(&root_item, new_dirid);
304
305 key.objectid = objectid;
5d4f98a2 306 key.offset = 0;
f46b5a66
CH
307 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
308 ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
309 &root_item);
310 if (ret)
311 goto fail;
312
76dda93c
YZ
313 key.offset = (u64)-1;
314 new_root = btrfs_read_fs_root_no_name(root->fs_info, &key);
315 BUG_ON(IS_ERR(new_root));
316
317 btrfs_record_root_in_trans(trans, new_root);
318
319 ret = btrfs_create_subvol_root(trans, new_root, new_dirid,
320 BTRFS_I(dir)->block_group);
f46b5a66
CH
321 /*
322 * insert the directory item
323 */
3de4586c
CM
324 ret = btrfs_set_inode_index(dir, &index);
325 BUG_ON(ret);
326
327 ret = btrfs_insert_dir_item(trans, root,
f46b5a66 328 name, namelen, dir->i_ino, &key,
3de4586c 329 BTRFS_FT_DIR, index);
f46b5a66
CH
330 if (ret)
331 goto fail;
0660b5af 332
52c26179
YZ
333 btrfs_i_size_write(dir, dir->i_size + namelen * 2);
334 ret = btrfs_update_inode(trans, root, dir);
335 BUG_ON(ret);
336
0660b5af 337 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
4df27c4d 338 objectid, root->root_key.objectid,
0660b5af 339 dir->i_ino, index, name, namelen);
0660b5af 340
76dda93c 341 BUG_ON(ret);
f46b5a66 342
76dda93c 343 d_instantiate(dentry, btrfs_lookup_dentry(dir, dentry));
f46b5a66 344fail:
76dda93c 345 err = btrfs_commit_transaction(trans, root);
f46b5a66
CH
346 if (err && !ret)
347 ret = err;
9ed74f2d
JB
348
349 btrfs_unreserve_metadata_space(root, 6);
f46b5a66
CH
350 return ret;
351}
352
3de4586c
CM
353static int create_snapshot(struct btrfs_root *root, struct dentry *dentry,
354 char *name, int namelen)
f46b5a66 355{
2e4bfab9 356 struct inode *inode;
f46b5a66
CH
357 struct btrfs_pending_snapshot *pending_snapshot;
358 struct btrfs_trans_handle *trans;
2e4bfab9 359 int ret;
f46b5a66
CH
360
361 if (!root->ref_cows)
362 return -EINVAL;
363
9ed74f2d
JB
364 /*
365 * 1 - inode item
366 * 2 - refs
367 * 1 - root item
368 * 2 - dir items
369 */
370 ret = btrfs_reserve_metadata_space(root, 6);
f46b5a66 371 if (ret)
2e4bfab9 372 goto fail;
f46b5a66 373
3de4586c 374 pending_snapshot = kzalloc(sizeof(*pending_snapshot), GFP_NOFS);
f46b5a66
CH
375 if (!pending_snapshot) {
376 ret = -ENOMEM;
9ed74f2d 377 btrfs_unreserve_metadata_space(root, 6);
2e4bfab9 378 goto fail;
f46b5a66
CH
379 }
380 pending_snapshot->name = kmalloc(namelen + 1, GFP_NOFS);
381 if (!pending_snapshot->name) {
382 ret = -ENOMEM;
383 kfree(pending_snapshot);
9ed74f2d 384 btrfs_unreserve_metadata_space(root, 6);
2e4bfab9 385 goto fail;
f46b5a66
CH
386 }
387 memcpy(pending_snapshot->name, name, namelen);
388 pending_snapshot->name[namelen] = '\0';
3de4586c 389 pending_snapshot->dentry = dentry;
f46b5a66
CH
390 trans = btrfs_start_transaction(root, 1);
391 BUG_ON(!trans);
392 pending_snapshot->root = root;
393 list_add(&pending_snapshot->list,
394 &trans->transaction->pending_snapshots);
2e4bfab9
YZ
395 ret = btrfs_commit_transaction(trans, root);
396 BUG_ON(ret);
397 btrfs_unreserve_metadata_space(root, 6);
f46b5a66 398
2e4bfab9
YZ
399 inode = btrfs_lookup_dentry(dentry->d_parent->d_inode, dentry);
400 if (IS_ERR(inode)) {
401 ret = PTR_ERR(inode);
402 goto fail;
403 }
404 BUG_ON(!inode);
405 d_instantiate(dentry, inode);
406 ret = 0;
407fail:
f46b5a66
CH
408 return ret;
409}
410
cb8e7090
CH
411/* copy of may_create in fs/namei.c() */
412static inline int btrfs_may_create(struct inode *dir, struct dentry *child)
413{
414 if (child->d_inode)
415 return -EEXIST;
416 if (IS_DEADDIR(dir))
417 return -ENOENT;
418 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
419}
420
421/*
422 * Create a new subvolume below @parent. This is largely modeled after
423 * sys_mkdirat and vfs_mkdir, but we only do a single component lookup
424 * inside this filesystem so it's quite a bit simpler.
425 */
76dda93c
YZ
426static noinline int btrfs_mksubvol(struct path *parent,
427 char *name, int namelen,
3de4586c 428 struct btrfs_root *snap_src)
cb8e7090 429{
76dda93c 430 struct inode *dir = parent->dentry->d_inode;
cb8e7090
CH
431 struct dentry *dentry;
432 int error;
433
76dda93c 434 mutex_lock_nested(&dir->i_mutex, I_MUTEX_PARENT);
cb8e7090
CH
435
436 dentry = lookup_one_len(name, parent->dentry, namelen);
437 error = PTR_ERR(dentry);
438 if (IS_ERR(dentry))
439 goto out_unlock;
440
441 error = -EEXIST;
442 if (dentry->d_inode)
443 goto out_dput;
444
cb8e7090
CH
445 error = mnt_want_write(parent->mnt);
446 if (error)
447 goto out_dput;
448
76dda93c 449 error = btrfs_may_create(dir, dentry);
cb8e7090
CH
450 if (error)
451 goto out_drop_write;
452
76dda93c
YZ
453 down_read(&BTRFS_I(dir)->root->fs_info->subvol_sem);
454
455 if (btrfs_root_refs(&BTRFS_I(dir)->root->root_item) == 0)
456 goto out_up_read;
457
3de4586c 458 if (snap_src) {
76dda93c
YZ
459 error = create_snapshot(snap_src, dentry,
460 name, namelen);
3de4586c 461 } else {
76dda93c
YZ
462 error = create_subvol(BTRFS_I(dir)->root, dentry,
463 name, namelen);
3de4586c 464 }
76dda93c
YZ
465 if (!error)
466 fsnotify_mkdir(dir, dentry);
467out_up_read:
468 up_read(&BTRFS_I(dir)->root->fs_info->subvol_sem);
cb8e7090
CH
469out_drop_write:
470 mnt_drop_write(parent->mnt);
471out_dput:
472 dput(dentry);
473out_unlock:
76dda93c 474 mutex_unlock(&dir->i_mutex);
cb8e7090
CH
475 return error;
476}
477
940100a4 478static int should_defrag_range(struct inode *inode, u64 start, u64 len,
1e701a32
CM
479 int thresh, u64 *last_len, u64 *skip,
480 u64 *defrag_end)
940100a4
CM
481{
482 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
483 struct extent_map *em = NULL;
484 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
485 int ret = 1;
486
1e701a32
CM
487
488 if (thresh == 0)
489 thresh = 256 * 1024;
490
940100a4
CM
491 /*
492 * make sure that once we start defragging and extent, we keep on
493 * defragging it
494 */
495 if (start < *defrag_end)
496 return 1;
497
498 *skip = 0;
499
500 /*
501 * hopefully we have this extent in the tree already, try without
502 * the full extent lock
503 */
504 read_lock(&em_tree->lock);
505 em = lookup_extent_mapping(em_tree, start, len);
506 read_unlock(&em_tree->lock);
507
508 if (!em) {
509 /* get the big lock and read metadata off disk */
510 lock_extent(io_tree, start, start + len - 1, GFP_NOFS);
511 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
512 unlock_extent(io_tree, start, start + len - 1, GFP_NOFS);
513
514 if (!em)
515 return 0;
516 }
517
518 /* this will cover holes, and inline extents */
519 if (em->block_start >= EXTENT_MAP_LAST_BYTE)
520 ret = 0;
521
522 /*
523 * we hit a real extent, if it is big don't bother defragging it again
524 */
1e701a32 525 if ((*last_len == 0 || *last_len >= thresh) && em->len >= thresh)
940100a4
CM
526 ret = 0;
527
528 /*
529 * last_len ends up being a counter of how many bytes we've defragged.
530 * every time we choose not to defrag an extent, we reset *last_len
531 * so that the next tiny extent will force a defrag.
532 *
533 * The end result of this is that tiny extents before a single big
534 * extent will force at least part of that big extent to be defragged.
535 */
536 if (ret) {
537 *last_len += len;
538 *defrag_end = extent_map_end(em);
539 } else {
540 *last_len = 0;
541 *skip = extent_map_end(em);
542 *defrag_end = 0;
543 }
544
545 free_extent_map(em);
546 return ret;
547}
548
1e701a32
CM
549static int btrfs_defrag_file(struct file *file,
550 struct btrfs_ioctl_defrag_range_args *range)
f46b5a66
CH
551{
552 struct inode *inode = fdentry(file)->d_inode;
553 struct btrfs_root *root = BTRFS_I(inode)->root;
554 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
3eaa2885 555 struct btrfs_ordered_extent *ordered;
f46b5a66
CH
556 struct page *page;
557 unsigned long last_index;
558 unsigned long ra_pages = root->fs_info->bdi.ra_pages;
559 unsigned long total_read = 0;
560 u64 page_start;
561 u64 page_end;
940100a4
CM
562 u64 last_len = 0;
563 u64 skip = 0;
564 u64 defrag_end = 0;
f46b5a66
CH
565 unsigned long i;
566 int ret;
567
940100a4
CM
568 if (inode->i_size == 0)
569 return 0;
570
1e701a32
CM
571 if (range->start + range->len > range->start) {
572 last_index = min_t(u64, inode->i_size - 1,
573 range->start + range->len - 1) >> PAGE_CACHE_SHIFT;
574 } else {
575 last_index = (inode->i_size - 1) >> PAGE_CACHE_SHIFT;
576 }
577
578 i = range->start >> PAGE_CACHE_SHIFT;
940100a4
CM
579 while (i <= last_index) {
580 if (!should_defrag_range(inode, (u64)i << PAGE_CACHE_SHIFT,
1e701a32
CM
581 PAGE_CACHE_SIZE,
582 range->extent_thresh,
583 &last_len, &skip,
940100a4
CM
584 &defrag_end)) {
585 unsigned long next;
586 /*
587 * the should_defrag function tells us how much to skip
588 * bump our counter by the suggested amount
589 */
590 next = (skip + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
591 i = max(i + 1, next);
592 continue;
593 }
f46b5a66 594
f46b5a66
CH
595 if (total_read % ra_pages == 0) {
596 btrfs_force_ra(inode->i_mapping, &file->f_ra, file, i,
597 min(last_index, i + ra_pages - 1));
598 }
599 total_read++;
940100a4 600 mutex_lock(&inode->i_mutex);
1e701a32
CM
601 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)
602 BTRFS_I(inode)->force_compress = 1;
940100a4
CM
603
604 ret = btrfs_check_data_free_space(root, inode, PAGE_CACHE_SIZE);
605 if (ret) {
606 ret = -ENOSPC;
607 break;
608 }
609
610 ret = btrfs_reserve_metadata_for_delalloc(root, inode, 1);
611 if (ret) {
612 btrfs_free_reserved_data_space(root, inode,
613 PAGE_CACHE_SIZE);
614 ret = -ENOSPC;
615 break;
616 }
3eaa2885 617again:
940100a4
CM
618 if (inode->i_size == 0 ||
619 i > ((inode->i_size - 1) >> PAGE_CACHE_SHIFT)) {
620 ret = 0;
621 goto err_reservations;
622 }
623
f46b5a66
CH
624 page = grab_cache_page(inode->i_mapping, i);
625 if (!page)
940100a4
CM
626 goto err_reservations;
627
f46b5a66
CH
628 if (!PageUptodate(page)) {
629 btrfs_readpage(NULL, page);
630 lock_page(page);
631 if (!PageUptodate(page)) {
632 unlock_page(page);
633 page_cache_release(page);
940100a4 634 goto err_reservations;
f46b5a66
CH
635 }
636 }
637
940100a4
CM
638 if (page->mapping != inode->i_mapping) {
639 unlock_page(page);
640 page_cache_release(page);
641 goto again;
642 }
643
f46b5a66 644 wait_on_page_writeback(page);
f46b5a66 645
940100a4
CM
646 if (PageDirty(page)) {
647 btrfs_free_reserved_data_space(root, inode,
648 PAGE_CACHE_SIZE);
649 goto loop_unlock;
650 }
651
f46b5a66
CH
652 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
653 page_end = page_start + PAGE_CACHE_SIZE - 1;
f46b5a66 654 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
3eaa2885
CM
655
656 ordered = btrfs_lookup_ordered_extent(inode, page_start);
657 if (ordered) {
658 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
659 unlock_page(page);
660 page_cache_release(page);
661 btrfs_start_ordered_extent(inode, ordered, 1);
662 btrfs_put_ordered_extent(ordered);
663 goto again;
664 }
665 set_page_extent_mapped(page);
666
f87f057b
CM
667 /*
668 * this makes sure page_mkwrite is called on the
669 * page if it is dirtied again later
670 */
671 clear_page_dirty_for_io(page);
940100a4
CM
672 clear_extent_bits(&BTRFS_I(inode)->io_tree, page_start,
673 page_end, EXTENT_DIRTY | EXTENT_DELALLOC |
674 EXTENT_DO_ACCOUNTING, GFP_NOFS);
f87f057b 675
2ac55d41 676 btrfs_set_extent_delalloc(inode, page_start, page_end, NULL);
940100a4 677 ClearPageChecked(page);
f46b5a66 678 set_page_dirty(page);
a1ed835e 679 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
940100a4
CM
680
681loop_unlock:
f46b5a66
CH
682 unlock_page(page);
683 page_cache_release(page);
940100a4
CM
684 mutex_unlock(&inode->i_mutex);
685
686 btrfs_unreserve_metadata_for_delalloc(root, inode, 1);
f46b5a66 687 balance_dirty_pages_ratelimited_nr(inode->i_mapping, 1);
940100a4 688 i++;
f46b5a66
CH
689 }
690
1e701a32
CM
691 if ((range->flags & BTRFS_DEFRAG_RANGE_START_IO))
692 filemap_flush(inode->i_mapping);
693
694 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
695 /* the filemap_flush will queue IO into the worker threads, but
696 * we have to make sure the IO is actually started and that
697 * ordered extents get created before we return
698 */
699 atomic_inc(&root->fs_info->async_submit_draining);
700 while (atomic_read(&root->fs_info->nr_async_submits) ||
701 atomic_read(&root->fs_info->async_delalloc_pages)) {
702 wait_event(root->fs_info->async_submit_wait,
703 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
704 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
705 }
706 atomic_dec(&root->fs_info->async_submit_draining);
707
708 mutex_lock(&inode->i_mutex);
709 BTRFS_I(inode)->force_compress = 0;
710 mutex_unlock(&inode->i_mutex);
711 }
712
f46b5a66 713 return 0;
940100a4
CM
714
715err_reservations:
716 mutex_unlock(&inode->i_mutex);
717 btrfs_free_reserved_data_space(root, inode, PAGE_CACHE_SIZE);
718 btrfs_unreserve_metadata_for_delalloc(root, inode, 1);
719 return ret;
f46b5a66
CH
720}
721
76dda93c
YZ
722static noinline int btrfs_ioctl_resize(struct btrfs_root *root,
723 void __user *arg)
f46b5a66
CH
724{
725 u64 new_size;
726 u64 old_size;
727 u64 devid = 1;
728 struct btrfs_ioctl_vol_args *vol_args;
729 struct btrfs_trans_handle *trans;
730 struct btrfs_device *device = NULL;
731 char *sizestr;
732 char *devstr = NULL;
733 int ret = 0;
734 int namelen;
735 int mod = 0;
736
c146afad
YZ
737 if (root->fs_info->sb->s_flags & MS_RDONLY)
738 return -EROFS;
739
e441d54d
CM
740 if (!capable(CAP_SYS_ADMIN))
741 return -EPERM;
742
dae7b665
LZ
743 vol_args = memdup_user(arg, sizeof(*vol_args));
744 if (IS_ERR(vol_args))
745 return PTR_ERR(vol_args);
5516e595
MF
746
747 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
f46b5a66 748 namelen = strlen(vol_args->name);
f46b5a66 749
7d9eb12c 750 mutex_lock(&root->fs_info->volume_mutex);
f46b5a66
CH
751 sizestr = vol_args->name;
752 devstr = strchr(sizestr, ':');
753 if (devstr) {
754 char *end;
755 sizestr = devstr + 1;
756 *devstr = '\0';
757 devstr = vol_args->name;
758 devid = simple_strtoull(devstr, &end, 10);
21380931
JB
759 printk(KERN_INFO "resizing devid %llu\n",
760 (unsigned long long)devid);
f46b5a66 761 }
2b82032c 762 device = btrfs_find_device(root, devid, NULL, NULL);
f46b5a66 763 if (!device) {
21380931
JB
764 printk(KERN_INFO "resizer unable to find device %llu\n",
765 (unsigned long long)devid);
f46b5a66
CH
766 ret = -EINVAL;
767 goto out_unlock;
768 }
769 if (!strcmp(sizestr, "max"))
770 new_size = device->bdev->bd_inode->i_size;
771 else {
772 if (sizestr[0] == '-') {
773 mod = -1;
774 sizestr++;
775 } else if (sizestr[0] == '+') {
776 mod = 1;
777 sizestr++;
778 }
779 new_size = btrfs_parse_size(sizestr);
780 if (new_size == 0) {
781 ret = -EINVAL;
782 goto out_unlock;
783 }
784 }
785
786 old_size = device->total_bytes;
787
788 if (mod < 0) {
789 if (new_size > old_size) {
790 ret = -EINVAL;
791 goto out_unlock;
792 }
793 new_size = old_size - new_size;
794 } else if (mod > 0) {
795 new_size = old_size + new_size;
796 }
797
798 if (new_size < 256 * 1024 * 1024) {
799 ret = -EINVAL;
800 goto out_unlock;
801 }
802 if (new_size > device->bdev->bd_inode->i_size) {
803 ret = -EFBIG;
804 goto out_unlock;
805 }
806
807 do_div(new_size, root->sectorsize);
808 new_size *= root->sectorsize;
809
810 printk(KERN_INFO "new size for %s is %llu\n",
811 device->name, (unsigned long long)new_size);
812
813 if (new_size > old_size) {
814 trans = btrfs_start_transaction(root, 1);
815 ret = btrfs_grow_device(trans, device, new_size);
816 btrfs_commit_transaction(trans, root);
817 } else {
818 ret = btrfs_shrink_device(device, new_size);
819 }
820
821out_unlock:
7d9eb12c 822 mutex_unlock(&root->fs_info->volume_mutex);
f46b5a66
CH
823 kfree(vol_args);
824 return ret;
825}
826
cb8e7090 827static noinline int btrfs_ioctl_snap_create(struct file *file,
3de4586c 828 void __user *arg, int subvol)
f46b5a66 829{
cb8e7090 830 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
f46b5a66 831 struct btrfs_ioctl_vol_args *vol_args;
3de4586c 832 struct file *src_file;
f46b5a66 833 int namelen;
3de4586c 834 int ret = 0;
f46b5a66 835
c146afad
YZ
836 if (root->fs_info->sb->s_flags & MS_RDONLY)
837 return -EROFS;
838
dae7b665
LZ
839 vol_args = memdup_user(arg, sizeof(*vol_args));
840 if (IS_ERR(vol_args))
841 return PTR_ERR(vol_args);
f46b5a66 842
5516e595 843 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
f46b5a66 844 namelen = strlen(vol_args->name);
f46b5a66
CH
845 if (strchr(vol_args->name, '/')) {
846 ret = -EINVAL;
847 goto out;
848 }
849
3de4586c 850 if (subvol) {
76dda93c
YZ
851 ret = btrfs_mksubvol(&file->f_path, vol_args->name, namelen,
852 NULL);
cb8e7090 853 } else {
3de4586c
CM
854 struct inode *src_inode;
855 src_file = fget(vol_args->fd);
856 if (!src_file) {
857 ret = -EINVAL;
858 goto out;
859 }
860
861 src_inode = src_file->f_path.dentry->d_inode;
862 if (src_inode->i_sb != file->f_path.dentry->d_inode->i_sb) {
d397712b
CM
863 printk(KERN_INFO "btrfs: Snapshot src from "
864 "another FS\n");
3de4586c
CM
865 ret = -EINVAL;
866 fput(src_file);
867 goto out;
868 }
76dda93c
YZ
869 ret = btrfs_mksubvol(&file->f_path, vol_args->name, namelen,
870 BTRFS_I(src_inode)->root);
3de4586c 871 fput(src_file);
cb8e7090 872 }
f46b5a66
CH
873out:
874 kfree(vol_args);
875 return ret;
876}
877
76dda93c
YZ
878/*
879 * helper to check if the subvolume references other subvolumes
880 */
881static noinline int may_destroy_subvol(struct btrfs_root *root)
882{
883 struct btrfs_path *path;
884 struct btrfs_key key;
885 int ret;
886
887 path = btrfs_alloc_path();
888 if (!path)
889 return -ENOMEM;
890
891 key.objectid = root->root_key.objectid;
892 key.type = BTRFS_ROOT_REF_KEY;
893 key.offset = (u64)-1;
894
895 ret = btrfs_search_slot(NULL, root->fs_info->tree_root,
896 &key, path, 0, 0);
897 if (ret < 0)
898 goto out;
899 BUG_ON(ret == 0);
900
901 ret = 0;
902 if (path->slots[0] > 0) {
903 path->slots[0]--;
904 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
905 if (key.objectid == root->root_key.objectid &&
906 key.type == BTRFS_ROOT_REF_KEY)
907 ret = -ENOTEMPTY;
908 }
909out:
910 btrfs_free_path(path);
911 return ret;
912}
913
ac8e9819
CM
914static noinline int key_in_sk(struct btrfs_key *key,
915 struct btrfs_ioctl_search_key *sk)
916{
917 if (key->objectid < sk->min_objectid)
918 return 0;
919 if (key->offset < sk->min_offset)
920 return 0;
921 if (key->type < sk->min_type)
922 return 0;
923 if (key->objectid > sk->max_objectid)
924 return 0;
925 if (key->type > sk->max_type)
926 return 0;
927 if (key->offset > sk->max_offset)
928 return 0;
929 return 1;
930}
931
932static noinline int copy_to_sk(struct btrfs_root *root,
933 struct btrfs_path *path,
934 struct btrfs_key *key,
935 struct btrfs_ioctl_search_key *sk,
936 char *buf,
937 unsigned long *sk_offset,
938 int *num_found)
939{
940 u64 found_transid;
941 struct extent_buffer *leaf;
942 struct btrfs_ioctl_search_header sh;
943 unsigned long item_off;
944 unsigned long item_len;
945 int nritems;
946 int i;
947 int slot;
948 int found = 0;
949 int ret = 0;
950
951 leaf = path->nodes[0];
952 slot = path->slots[0];
953 nritems = btrfs_header_nritems(leaf);
954
955 if (btrfs_header_generation(leaf) > sk->max_transid) {
956 i = nritems;
957 goto advance_key;
958 }
959 found_transid = btrfs_header_generation(leaf);
960
961 for (i = slot; i < nritems; i++) {
962 item_off = btrfs_item_ptr_offset(leaf, i);
963 item_len = btrfs_item_size_nr(leaf, i);
964
965 if (item_len > BTRFS_SEARCH_ARGS_BUFSIZE)
966 item_len = 0;
967
968 if (sizeof(sh) + item_len + *sk_offset >
969 BTRFS_SEARCH_ARGS_BUFSIZE) {
970 ret = 1;
971 goto overflow;
972 }
973
974 btrfs_item_key_to_cpu(leaf, key, i);
975 if (!key_in_sk(key, sk))
976 continue;
977
978 sh.objectid = key->objectid;
979 sh.offset = key->offset;
980 sh.type = key->type;
981 sh.len = item_len;
982 sh.transid = found_transid;
983
984 /* copy search result header */
985 memcpy(buf + *sk_offset, &sh, sizeof(sh));
986 *sk_offset += sizeof(sh);
987
988 if (item_len) {
989 char *p = buf + *sk_offset;
990 /* copy the item */
991 read_extent_buffer(leaf, p,
992 item_off, item_len);
993 *sk_offset += item_len;
994 found++;
995 }
996
997 if (*num_found >= sk->nr_items)
998 break;
999 }
1000advance_key:
1001 if (key->offset < (u64)-1)
1002 key->offset++;
1003 else if (key->type < (u64)-1)
1004 key->type++;
1005 else if (key->objectid < (u64)-1)
1006 key->objectid++;
1007 ret = 0;
1008overflow:
1009 *num_found += found;
1010 return ret;
1011}
1012
1013static noinline int search_ioctl(struct inode *inode,
1014 struct btrfs_ioctl_search_args *args)
1015{
1016 struct btrfs_root *root;
1017 struct btrfs_key key;
1018 struct btrfs_key max_key;
1019 struct btrfs_path *path;
1020 struct btrfs_ioctl_search_key *sk = &args->key;
1021 struct btrfs_fs_info *info = BTRFS_I(inode)->root->fs_info;
1022 int ret;
1023 int num_found = 0;
1024 unsigned long sk_offset = 0;
1025
1026 path = btrfs_alloc_path();
1027 if (!path)
1028 return -ENOMEM;
1029
1030 if (sk->tree_id == 0) {
1031 /* search the root of the inode that was passed */
1032 root = BTRFS_I(inode)->root;
1033 } else {
1034 key.objectid = sk->tree_id;
1035 key.type = BTRFS_ROOT_ITEM_KEY;
1036 key.offset = (u64)-1;
1037 root = btrfs_read_fs_root_no_name(info, &key);
1038 if (IS_ERR(root)) {
1039 printk(KERN_ERR "could not find root %llu\n",
1040 sk->tree_id);
1041 btrfs_free_path(path);
1042 return -ENOENT;
1043 }
1044 }
1045
1046 key.objectid = sk->min_objectid;
1047 key.type = sk->min_type;
1048 key.offset = sk->min_offset;
1049
1050 max_key.objectid = sk->max_objectid;
1051 max_key.type = sk->max_type;
1052 max_key.offset = sk->max_offset;
1053
1054 path->keep_locks = 1;
1055
1056 while(1) {
1057 ret = btrfs_search_forward(root, &key, &max_key, path, 0,
1058 sk->min_transid);
1059 if (ret != 0) {
1060 if (ret > 0)
1061 ret = 0;
1062 goto err;
1063 }
1064 ret = copy_to_sk(root, path, &key, sk, args->buf,
1065 &sk_offset, &num_found);
1066 btrfs_release_path(root, path);
1067 if (ret || num_found >= sk->nr_items)
1068 break;
1069
1070 }
1071 ret = 0;
1072err:
1073 sk->nr_items = num_found;
1074 btrfs_free_path(path);
1075 return ret;
1076}
1077
1078static noinline int btrfs_ioctl_tree_search(struct file *file,
1079 void __user *argp)
1080{
1081 struct btrfs_ioctl_search_args *args;
1082 struct inode *inode;
1083 int ret;
1084
1085 if (!capable(CAP_SYS_ADMIN))
1086 return -EPERM;
1087
1088 args = kmalloc(sizeof(*args), GFP_KERNEL);
1089 if (!args)
1090 return -ENOMEM;
1091
1092 if (copy_from_user(args, argp, sizeof(*args))) {
1093 kfree(args);
1094 return -EFAULT;
1095 }
1096 inode = fdentry(file)->d_inode;
1097 ret = search_ioctl(inode, args);
1098 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
1099 ret = -EFAULT;
1100 kfree(args);
1101 return ret;
1102}
1103
98d377a0 1104/*
ac8e9819
CM
1105 * Search INODE_REFs to identify path name of 'dirid' directory
1106 * in a 'tree_id' tree. and sets path name to 'name'.
1107 */
98d377a0
TH
1108static noinline int btrfs_search_path_in_tree(struct btrfs_fs_info *info,
1109 u64 tree_id, u64 dirid, char *name)
1110{
1111 struct btrfs_root *root;
1112 struct btrfs_key key;
ac8e9819 1113 char *ptr;
98d377a0
TH
1114 int ret = -1;
1115 int slot;
1116 int len;
1117 int total_len = 0;
1118 struct btrfs_inode_ref *iref;
1119 struct extent_buffer *l;
1120 struct btrfs_path *path;
1121
1122 if (dirid == BTRFS_FIRST_FREE_OBJECTID) {
1123 name[0]='\0';
1124 return 0;
1125 }
1126
1127 path = btrfs_alloc_path();
1128 if (!path)
1129 return -ENOMEM;
1130
ac8e9819 1131 ptr = &name[BTRFS_INO_LOOKUP_PATH_MAX];
98d377a0
TH
1132
1133 key.objectid = tree_id;
1134 key.type = BTRFS_ROOT_ITEM_KEY;
1135 key.offset = (u64)-1;
1136 root = btrfs_read_fs_root_no_name(info, &key);
1137 if (IS_ERR(root)) {
1138 printk(KERN_ERR "could not find root %llu\n", tree_id);
1139 return -ENOENT;
1140 }
1141
1142 key.objectid = dirid;
1143 key.type = BTRFS_INODE_REF_KEY;
1144 key.offset = 0;
1145
1146 while(1) {
1147 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1148 if (ret < 0)
1149 goto out;
1150
1151 l = path->nodes[0];
1152 slot = path->slots[0];
1153 btrfs_item_key_to_cpu(l, &key, slot);
1154
1155 if (ret > 0 && (key.objectid != dirid ||
ac8e9819
CM
1156 key.type != BTRFS_INODE_REF_KEY)) {
1157 ret = -ENOENT;
98d377a0 1158 goto out;
ac8e9819 1159 }
98d377a0
TH
1160
1161 iref = btrfs_item_ptr(l, slot, struct btrfs_inode_ref);
1162 len = btrfs_inode_ref_name_len(l, iref);
1163 ptr -= len + 1;
1164 total_len += len + 1;
ac8e9819 1165 if (ptr < name)
98d377a0
TH
1166 goto out;
1167
1168 *(ptr + len) = '/';
1169 read_extent_buffer(l, ptr,(unsigned long)(iref + 1), len);
1170
1171 if (key.offset == BTRFS_FIRST_FREE_OBJECTID)
1172 break;
1173
1174 btrfs_release_path(root, path);
1175 key.objectid = key.offset;
1176 key.offset = 0;
1177 dirid = key.objectid;
1178
1179 }
ac8e9819 1180 if (ptr < name)
98d377a0 1181 goto out;
ac8e9819 1182 memcpy(name, ptr, total_len);
98d377a0
TH
1183 name[total_len]='\0';
1184 ret = 0;
1185out:
1186 btrfs_free_path(path);
ac8e9819
CM
1187 return ret;
1188}
1189
1190static noinline int btrfs_ioctl_ino_lookup(struct file *file,
1191 void __user *argp)
1192{
1193 struct btrfs_ioctl_ino_lookup_args *args;
1194 struct inode *inode;
1195 int ret;
1196
1197 if (!capable(CAP_SYS_ADMIN))
1198 return -EPERM;
1199
1200 args = kmalloc(sizeof(*args), GFP_KERNEL);
1201 if (copy_from_user(args, argp, sizeof(*args))) {
1202 kfree(args);
1203 return -EFAULT;
1204 }
1205 inode = fdentry(file)->d_inode;
1206
1207 ret = btrfs_search_path_in_tree(BTRFS_I(inode)->root->fs_info,
1208 args->treeid, args->objectid,
1209 args->name);
1210
1211 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
1212 ret = -EFAULT;
1213
1214 kfree(args);
98d377a0
TH
1215 return ret;
1216}
1217
76dda93c
YZ
1218static noinline int btrfs_ioctl_snap_destroy(struct file *file,
1219 void __user *arg)
1220{
1221 struct dentry *parent = fdentry(file);
1222 struct dentry *dentry;
1223 struct inode *dir = parent->d_inode;
1224 struct inode *inode;
1225 struct btrfs_root *root = BTRFS_I(dir)->root;
1226 struct btrfs_root *dest = NULL;
1227 struct btrfs_ioctl_vol_args *vol_args;
1228 struct btrfs_trans_handle *trans;
1229 int namelen;
1230 int ret;
1231 int err = 0;
1232
1233 if (!capable(CAP_SYS_ADMIN))
1234 return -EPERM;
1235
1236 vol_args = memdup_user(arg, sizeof(*vol_args));
1237 if (IS_ERR(vol_args))
1238 return PTR_ERR(vol_args);
1239
1240 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
1241 namelen = strlen(vol_args->name);
1242 if (strchr(vol_args->name, '/') ||
1243 strncmp(vol_args->name, "..", namelen) == 0) {
1244 err = -EINVAL;
1245 goto out;
1246 }
1247
1248 err = mnt_want_write(file->f_path.mnt);
1249 if (err)
1250 goto out;
1251
1252 mutex_lock_nested(&dir->i_mutex, I_MUTEX_PARENT);
1253 dentry = lookup_one_len(vol_args->name, parent, namelen);
1254 if (IS_ERR(dentry)) {
1255 err = PTR_ERR(dentry);
1256 goto out_unlock_dir;
1257 }
1258
1259 if (!dentry->d_inode) {
1260 err = -ENOENT;
1261 goto out_dput;
1262 }
1263
1264 inode = dentry->d_inode;
1265 if (inode->i_ino != BTRFS_FIRST_FREE_OBJECTID) {
1266 err = -EINVAL;
1267 goto out_dput;
1268 }
1269
1270 dest = BTRFS_I(inode)->root;
1271
1272 mutex_lock(&inode->i_mutex);
1273 err = d_invalidate(dentry);
1274 if (err)
1275 goto out_unlock;
1276
1277 down_write(&root->fs_info->subvol_sem);
1278
1279 err = may_destroy_subvol(dest);
1280 if (err)
1281 goto out_up_write;
1282
1283 trans = btrfs_start_transaction(root, 1);
1284 ret = btrfs_unlink_subvol(trans, root, dir,
1285 dest->root_key.objectid,
1286 dentry->d_name.name,
1287 dentry->d_name.len);
1288 BUG_ON(ret);
1289
1290 btrfs_record_root_in_trans(trans, dest);
1291
1292 memset(&dest->root_item.drop_progress, 0,
1293 sizeof(dest->root_item.drop_progress));
1294 dest->root_item.drop_level = 0;
1295 btrfs_set_root_refs(&dest->root_item, 0);
1296
1297 ret = btrfs_insert_orphan_item(trans,
1298 root->fs_info->tree_root,
1299 dest->root_key.objectid);
1300 BUG_ON(ret);
1301
1302 ret = btrfs_commit_transaction(trans, root);
1303 BUG_ON(ret);
1304 inode->i_flags |= S_DEAD;
1305out_up_write:
1306 up_write(&root->fs_info->subvol_sem);
1307out_unlock:
1308 mutex_unlock(&inode->i_mutex);
1309 if (!err) {
efefb143 1310 shrink_dcache_sb(root->fs_info->sb);
76dda93c
YZ
1311 btrfs_invalidate_inodes(dest);
1312 d_delete(dentry);
1313 }
1314out_dput:
1315 dput(dentry);
1316out_unlock_dir:
1317 mutex_unlock(&dir->i_mutex);
1318 mnt_drop_write(file->f_path.mnt);
1319out:
1320 kfree(vol_args);
1321 return err;
1322}
1323
1e701a32 1324static int btrfs_ioctl_defrag(struct file *file, void __user *argp)
f46b5a66
CH
1325{
1326 struct inode *inode = fdentry(file)->d_inode;
1327 struct btrfs_root *root = BTRFS_I(inode)->root;
1e701a32 1328 struct btrfs_ioctl_defrag_range_args *range;
c146afad
YZ
1329 int ret;
1330
1331 ret = mnt_want_write(file->f_path.mnt);
1332 if (ret)
1333 return ret;
f46b5a66
CH
1334
1335 switch (inode->i_mode & S_IFMT) {
1336 case S_IFDIR:
e441d54d
CM
1337 if (!capable(CAP_SYS_ADMIN)) {
1338 ret = -EPERM;
1339 goto out;
1340 }
f46b5a66
CH
1341 btrfs_defrag_root(root, 0);
1342 btrfs_defrag_root(root->fs_info->extent_root, 0);
f46b5a66
CH
1343 break;
1344 case S_IFREG:
e441d54d
CM
1345 if (!(file->f_mode & FMODE_WRITE)) {
1346 ret = -EINVAL;
1347 goto out;
1348 }
1e701a32
CM
1349
1350 range = kzalloc(sizeof(*range), GFP_KERNEL);
1351 if (!range) {
1352 ret = -ENOMEM;
1353 goto out;
1354 }
1355
1356 if (argp) {
1357 if (copy_from_user(range, argp,
1358 sizeof(*range))) {
1359 ret = -EFAULT;
1360 kfree(range);
1361 }
1362 /* compression requires us to start the IO */
1363 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
1364 range->flags |= BTRFS_DEFRAG_RANGE_START_IO;
1365 range->extent_thresh = (u32)-1;
1366 }
1367 } else {
1368 /* the rest are all set to zero by kzalloc */
1369 range->len = (u64)-1;
1370 }
1371 btrfs_defrag_file(file, range);
1372 kfree(range);
f46b5a66
CH
1373 break;
1374 }
e441d54d 1375out:
ab67b7c1 1376 mnt_drop_write(file->f_path.mnt);
e441d54d 1377 return ret;
f46b5a66
CH
1378}
1379
b2950863 1380static long btrfs_ioctl_add_dev(struct btrfs_root *root, void __user *arg)
f46b5a66
CH
1381{
1382 struct btrfs_ioctl_vol_args *vol_args;
1383 int ret;
1384
e441d54d
CM
1385 if (!capable(CAP_SYS_ADMIN))
1386 return -EPERM;
1387
dae7b665
LZ
1388 vol_args = memdup_user(arg, sizeof(*vol_args));
1389 if (IS_ERR(vol_args))
1390 return PTR_ERR(vol_args);
f46b5a66 1391
5516e595 1392 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
f46b5a66
CH
1393 ret = btrfs_init_new_device(root, vol_args->name);
1394
f46b5a66
CH
1395 kfree(vol_args);
1396 return ret;
1397}
1398
b2950863 1399static long btrfs_ioctl_rm_dev(struct btrfs_root *root, void __user *arg)
f46b5a66
CH
1400{
1401 struct btrfs_ioctl_vol_args *vol_args;
1402 int ret;
1403
e441d54d
CM
1404 if (!capable(CAP_SYS_ADMIN))
1405 return -EPERM;
1406
c146afad
YZ
1407 if (root->fs_info->sb->s_flags & MS_RDONLY)
1408 return -EROFS;
1409
dae7b665
LZ
1410 vol_args = memdup_user(arg, sizeof(*vol_args));
1411 if (IS_ERR(vol_args))
1412 return PTR_ERR(vol_args);
f46b5a66 1413
5516e595 1414 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
f46b5a66
CH
1415 ret = btrfs_rm_device(root, vol_args->name);
1416
f46b5a66
CH
1417 kfree(vol_args);
1418 return ret;
1419}
1420
76dda93c
YZ
1421static noinline long btrfs_ioctl_clone(struct file *file, unsigned long srcfd,
1422 u64 off, u64 olen, u64 destoff)
f46b5a66
CH
1423{
1424 struct inode *inode = fdentry(file)->d_inode;
1425 struct btrfs_root *root = BTRFS_I(inode)->root;
1426 struct file *src_file;
1427 struct inode *src;
1428 struct btrfs_trans_handle *trans;
f46b5a66 1429 struct btrfs_path *path;
f46b5a66 1430 struct extent_buffer *leaf;
ae01a0ab
YZ
1431 char *buf;
1432 struct btrfs_key key;
f46b5a66
CH
1433 u32 nritems;
1434 int slot;
ae01a0ab 1435 int ret;
c5c9cd4d
SW
1436 u64 len = olen;
1437 u64 bs = root->fs_info->sb->s_blocksize;
1438 u64 hint_byte;
d20f7043 1439
c5c9cd4d
SW
1440 /*
1441 * TODO:
1442 * - split compressed inline extents. annoying: we need to
1443 * decompress into destination's address_space (the file offset
1444 * may change, so source mapping won't do), then recompress (or
1445 * otherwise reinsert) a subrange.
1446 * - allow ranges within the same file to be cloned (provided
1447 * they don't overlap)?
1448 */
1449
e441d54d
CM
1450 /* the destination must be opened for writing */
1451 if (!(file->f_mode & FMODE_WRITE))
1452 return -EINVAL;
1453
c146afad
YZ
1454 ret = mnt_want_write(file->f_path.mnt);
1455 if (ret)
1456 return ret;
1457
c5c9cd4d 1458 src_file = fget(srcfd);
ab67b7c1
YZ
1459 if (!src_file) {
1460 ret = -EBADF;
1461 goto out_drop_write;
1462 }
f46b5a66
CH
1463 src = src_file->f_dentry->d_inode;
1464
c5c9cd4d
SW
1465 ret = -EINVAL;
1466 if (src == inode)
1467 goto out_fput;
1468
ae01a0ab
YZ
1469 ret = -EISDIR;
1470 if (S_ISDIR(src->i_mode) || S_ISDIR(inode->i_mode))
1471 goto out_fput;
1472
f46b5a66 1473 ret = -EXDEV;
ae01a0ab
YZ
1474 if (src->i_sb != inode->i_sb || BTRFS_I(src)->root != root)
1475 goto out_fput;
1476
1477 ret = -ENOMEM;
1478 buf = vmalloc(btrfs_level_size(root, 0));
1479 if (!buf)
1480 goto out_fput;
1481
1482 path = btrfs_alloc_path();
1483 if (!path) {
1484 vfree(buf);
f46b5a66 1485 goto out_fput;
ae01a0ab
YZ
1486 }
1487 path->reada = 2;
f46b5a66
CH
1488
1489 if (inode < src) {
1490 mutex_lock(&inode->i_mutex);
1491 mutex_lock(&src->i_mutex);
1492 } else {
1493 mutex_lock(&src->i_mutex);
1494 mutex_lock(&inode->i_mutex);
1495 }
1496
c5c9cd4d
SW
1497 /* determine range to clone */
1498 ret = -EINVAL;
1499 if (off >= src->i_size || off + len > src->i_size)
f46b5a66 1500 goto out_unlock;
c5c9cd4d
SW
1501 if (len == 0)
1502 olen = len = src->i_size - off;
1503 /* if we extend to eof, continue to block boundary */
1504 if (off + len == src->i_size)
1505 len = ((src->i_size + bs-1) & ~(bs-1))
1506 - off;
1507
1508 /* verify the end result is block aligned */
1509 if ((off & (bs-1)) ||
1510 ((off + len) & (bs-1)))
1511 goto out_unlock;
1512
f46b5a66
CH
1513 /* do any pending delalloc/csum calc on src, one way or
1514 another, and lock file content */
1515 while (1) {
31840ae1 1516 struct btrfs_ordered_extent *ordered;
c5c9cd4d
SW
1517 lock_extent(&BTRFS_I(src)->io_tree, off, off+len, GFP_NOFS);
1518 ordered = btrfs_lookup_first_ordered_extent(inode, off+len);
ae01a0ab 1519 if (BTRFS_I(src)->delalloc_bytes == 0 && !ordered)
f46b5a66 1520 break;
c5c9cd4d 1521 unlock_extent(&BTRFS_I(src)->io_tree, off, off+len, GFP_NOFS);
ae01a0ab
YZ
1522 if (ordered)
1523 btrfs_put_ordered_extent(ordered);
c5c9cd4d 1524 btrfs_wait_ordered_range(src, off, off+len);
f46b5a66
CH
1525 }
1526
ae01a0ab
YZ
1527 trans = btrfs_start_transaction(root, 1);
1528 BUG_ON(!trans);
1529
c5c9cd4d 1530 /* punch hole in destination first */
920bbbfb 1531 btrfs_drop_extents(trans, inode, off, off + len, &hint_byte, 1);
c5c9cd4d
SW
1532
1533 /* clone data */
f46b5a66 1534 key.objectid = src->i_ino;
ae01a0ab
YZ
1535 key.type = BTRFS_EXTENT_DATA_KEY;
1536 key.offset = 0;
f46b5a66
CH
1537
1538 while (1) {
1539 /*
1540 * note the key will change type as we walk through the
1541 * tree.
1542 */
1543 ret = btrfs_search_slot(trans, root, &key, path, 0, 0);
1544 if (ret < 0)
1545 goto out;
1546
ae01a0ab
YZ
1547 nritems = btrfs_header_nritems(path->nodes[0]);
1548 if (path->slots[0] >= nritems) {
f46b5a66
CH
1549 ret = btrfs_next_leaf(root, path);
1550 if (ret < 0)
1551 goto out;
1552 if (ret > 0)
1553 break;
ae01a0ab 1554 nritems = btrfs_header_nritems(path->nodes[0]);
f46b5a66
CH
1555 }
1556 leaf = path->nodes[0];
1557 slot = path->slots[0];
f46b5a66 1558
ae01a0ab 1559 btrfs_item_key_to_cpu(leaf, &key, slot);
d20f7043 1560 if (btrfs_key_type(&key) > BTRFS_EXTENT_DATA_KEY ||
f46b5a66
CH
1561 key.objectid != src->i_ino)
1562 break;
1563
c5c9cd4d
SW
1564 if (btrfs_key_type(&key) == BTRFS_EXTENT_DATA_KEY) {
1565 struct btrfs_file_extent_item *extent;
1566 int type;
31840ae1
ZY
1567 u32 size;
1568 struct btrfs_key new_key;
c5c9cd4d
SW
1569 u64 disko = 0, diskl = 0;
1570 u64 datao = 0, datal = 0;
1571 u8 comp;
31840ae1
ZY
1572
1573 size = btrfs_item_size_nr(leaf, slot);
1574 read_extent_buffer(leaf, buf,
1575 btrfs_item_ptr_offset(leaf, slot),
1576 size);
c5c9cd4d
SW
1577
1578 extent = btrfs_item_ptr(leaf, slot,
1579 struct btrfs_file_extent_item);
1580 comp = btrfs_file_extent_compression(leaf, extent);
1581 type = btrfs_file_extent_type(leaf, extent);
c8a894d7
CM
1582 if (type == BTRFS_FILE_EXTENT_REG ||
1583 type == BTRFS_FILE_EXTENT_PREALLOC) {
d397712b
CM
1584 disko = btrfs_file_extent_disk_bytenr(leaf,
1585 extent);
1586 diskl = btrfs_file_extent_disk_num_bytes(leaf,
1587 extent);
c5c9cd4d 1588 datao = btrfs_file_extent_offset(leaf, extent);
d397712b
CM
1589 datal = btrfs_file_extent_num_bytes(leaf,
1590 extent);
c5c9cd4d
SW
1591 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
1592 /* take upper bound, may be compressed */
1593 datal = btrfs_file_extent_ram_bytes(leaf,
1594 extent);
1595 }
31840ae1
ZY
1596 btrfs_release_path(root, path);
1597
c5c9cd4d
SW
1598 if (key.offset + datal < off ||
1599 key.offset >= off+len)
1600 goto next;
1601
31840ae1
ZY
1602 memcpy(&new_key, &key, sizeof(new_key));
1603 new_key.objectid = inode->i_ino;
c5c9cd4d 1604 new_key.offset = key.offset + destoff - off;
31840ae1 1605
c8a894d7
CM
1606 if (type == BTRFS_FILE_EXTENT_REG ||
1607 type == BTRFS_FILE_EXTENT_PREALLOC) {
c5c9cd4d
SW
1608 ret = btrfs_insert_empty_item(trans, root, path,
1609 &new_key, size);
1610 if (ret)
1611 goto out;
1612
1613 leaf = path->nodes[0];
1614 slot = path->slots[0];
1615 write_extent_buffer(leaf, buf,
31840ae1
ZY
1616 btrfs_item_ptr_offset(leaf, slot),
1617 size);
ae01a0ab 1618
c5c9cd4d 1619 extent = btrfs_item_ptr(leaf, slot,
f46b5a66 1620 struct btrfs_file_extent_item);
c5c9cd4d
SW
1621
1622 if (off > key.offset) {
1623 datao += off - key.offset;
1624 datal -= off - key.offset;
1625 }
ac6889cb
CM
1626
1627 if (key.offset + datal > off + len)
1628 datal = off + len - key.offset;
1629
c5c9cd4d
SW
1630 /* disko == 0 means it's a hole */
1631 if (!disko)
1632 datao = 0;
c5c9cd4d
SW
1633
1634 btrfs_set_file_extent_offset(leaf, extent,
1635 datao);
1636 btrfs_set_file_extent_num_bytes(leaf, extent,
1637 datal);
1638 if (disko) {
1639 inode_add_bytes(inode, datal);
ae01a0ab 1640 ret = btrfs_inc_extent_ref(trans, root,
5d4f98a2
YZ
1641 disko, diskl, 0,
1642 root->root_key.objectid,
1643 inode->i_ino,
1644 new_key.offset - datao);
31840ae1 1645 BUG_ON(ret);
f46b5a66 1646 }
c5c9cd4d
SW
1647 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
1648 u64 skip = 0;
1649 u64 trim = 0;
1650 if (off > key.offset) {
1651 skip = off - key.offset;
1652 new_key.offset += skip;
1653 }
d397712b 1654
c5c9cd4d
SW
1655 if (key.offset + datal > off+len)
1656 trim = key.offset + datal - (off+len);
d397712b 1657
c5c9cd4d 1658 if (comp && (skip || trim)) {
c5c9cd4d
SW
1659 ret = -EINVAL;
1660 goto out;
1661 }
1662 size -= skip + trim;
1663 datal -= skip + trim;
1664 ret = btrfs_insert_empty_item(trans, root, path,
1665 &new_key, size);
1666 if (ret)
1667 goto out;
1668
1669 if (skip) {
d397712b
CM
1670 u32 start =
1671 btrfs_file_extent_calc_inline_size(0);
c5c9cd4d
SW
1672 memmove(buf+start, buf+start+skip,
1673 datal);
1674 }
1675
1676 leaf = path->nodes[0];
1677 slot = path->slots[0];
1678 write_extent_buffer(leaf, buf,
1679 btrfs_item_ptr_offset(leaf, slot),
1680 size);
1681 inode_add_bytes(inode, datal);
f46b5a66 1682 }
c5c9cd4d
SW
1683
1684 btrfs_mark_buffer_dirty(leaf);
ae01a0ab 1685 }
c5c9cd4d 1686
d397712b 1687next:
31840ae1 1688 btrfs_release_path(root, path);
f46b5a66 1689 key.offset++;
f46b5a66 1690 }
f46b5a66
CH
1691 ret = 0;
1692out:
ae01a0ab
YZ
1693 btrfs_release_path(root, path);
1694 if (ret == 0) {
1695 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
c5c9cd4d
SW
1696 if (destoff + olen > inode->i_size)
1697 btrfs_i_size_write(inode, destoff + olen);
ae01a0ab
YZ
1698 BTRFS_I(inode)->flags = BTRFS_I(src)->flags;
1699 ret = btrfs_update_inode(trans, root, inode);
1700 }
f46b5a66 1701 btrfs_end_transaction(trans, root);
c5c9cd4d 1702 unlock_extent(&BTRFS_I(src)->io_tree, off, off+len, GFP_NOFS);
ae01a0ab
YZ
1703 if (ret)
1704 vmtruncate(inode, 0);
f46b5a66
CH
1705out_unlock:
1706 mutex_unlock(&src->i_mutex);
1707 mutex_unlock(&inode->i_mutex);
ae01a0ab
YZ
1708 vfree(buf);
1709 btrfs_free_path(path);
f46b5a66
CH
1710out_fput:
1711 fput(src_file);
ab67b7c1
YZ
1712out_drop_write:
1713 mnt_drop_write(file->f_path.mnt);
f46b5a66
CH
1714 return ret;
1715}
1716
7a865e8a 1717static long btrfs_ioctl_clone_range(struct file *file, void __user *argp)
c5c9cd4d
SW
1718{
1719 struct btrfs_ioctl_clone_range_args args;
1720
7a865e8a 1721 if (copy_from_user(&args, argp, sizeof(args)))
c5c9cd4d
SW
1722 return -EFAULT;
1723 return btrfs_ioctl_clone(file, args.src_fd, args.src_offset,
1724 args.src_length, args.dest_offset);
1725}
1726
f46b5a66
CH
1727/*
1728 * there are many ways the trans_start and trans_end ioctls can lead
1729 * to deadlocks. They should only be used by applications that
1730 * basically own the machine, and have a very in depth understanding
1731 * of all the possible deadlocks and enospc problems.
1732 */
b2950863 1733static long btrfs_ioctl_trans_start(struct file *file)
f46b5a66
CH
1734{
1735 struct inode *inode = fdentry(file)->d_inode;
1736 struct btrfs_root *root = BTRFS_I(inode)->root;
1737 struct btrfs_trans_handle *trans;
1ab86aed 1738 int ret;
f46b5a66 1739
1ab86aed 1740 ret = -EPERM;
df5b5520 1741 if (!capable(CAP_SYS_ADMIN))
1ab86aed 1742 goto out;
df5b5520 1743
1ab86aed
SW
1744 ret = -EINPROGRESS;
1745 if (file->private_data)
f46b5a66 1746 goto out;
9ca9ee09 1747
c146afad
YZ
1748 ret = mnt_want_write(file->f_path.mnt);
1749 if (ret)
1750 goto out;
1751
9ca9ee09
SW
1752 mutex_lock(&root->fs_info->trans_mutex);
1753 root->fs_info->open_ioctl_trans++;
1754 mutex_unlock(&root->fs_info->trans_mutex);
1755
1ab86aed 1756 ret = -ENOMEM;
9ca9ee09 1757 trans = btrfs_start_ioctl_transaction(root, 0);
1ab86aed
SW
1758 if (!trans)
1759 goto out_drop;
1760
1761 file->private_data = trans;
1762 return 0;
1763
1764out_drop:
1765 mutex_lock(&root->fs_info->trans_mutex);
1766 root->fs_info->open_ioctl_trans--;
1767 mutex_unlock(&root->fs_info->trans_mutex);
1768 mnt_drop_write(file->f_path.mnt);
f46b5a66 1769out:
f46b5a66
CH
1770 return ret;
1771}
1772
6ef5ed0d
JB
1773static long btrfs_ioctl_default_subvol(struct file *file, void __user *argp)
1774{
1775 struct inode *inode = fdentry(file)->d_inode;
1776 struct btrfs_root *root = BTRFS_I(inode)->root;
1777 struct btrfs_root *new_root;
1778 struct btrfs_dir_item *di;
1779 struct btrfs_trans_handle *trans;
1780 struct btrfs_path *path;
1781 struct btrfs_key location;
1782 struct btrfs_disk_key disk_key;
1783 struct btrfs_super_block *disk_super;
1784 u64 features;
1785 u64 objectid = 0;
1786 u64 dir_id;
1787
1788 if (!capable(CAP_SYS_ADMIN))
1789 return -EPERM;
1790
1791 if (copy_from_user(&objectid, argp, sizeof(objectid)))
1792 return -EFAULT;
1793
1794 if (!objectid)
1795 objectid = root->root_key.objectid;
1796
1797 location.objectid = objectid;
1798 location.type = BTRFS_ROOT_ITEM_KEY;
1799 location.offset = (u64)-1;
1800
1801 new_root = btrfs_read_fs_root_no_name(root->fs_info, &location);
1802 if (IS_ERR(new_root))
1803 return PTR_ERR(new_root);
1804
1805 if (btrfs_root_refs(&new_root->root_item) == 0)
1806 return -ENOENT;
1807
1808 path = btrfs_alloc_path();
1809 if (!path)
1810 return -ENOMEM;
1811 path->leave_spinning = 1;
1812
1813 trans = btrfs_start_transaction(root, 1);
1814 if (!trans) {
1815 btrfs_free_path(path);
1816 return -ENOMEM;
1817 }
1818
1819 dir_id = btrfs_super_root_dir(&root->fs_info->super_copy);
1820 di = btrfs_lookup_dir_item(trans, root->fs_info->tree_root, path,
1821 dir_id, "default", 7, 1);
1822 if (!di) {
1823 btrfs_free_path(path);
1824 btrfs_end_transaction(trans, root);
1825 printk(KERN_ERR "Umm, you don't have the default dir item, "
1826 "this isn't going to work\n");
1827 return -ENOENT;
1828 }
1829
1830 btrfs_cpu_key_to_disk(&disk_key, &new_root->root_key);
1831 btrfs_set_dir_item_key(path->nodes[0], di, &disk_key);
1832 btrfs_mark_buffer_dirty(path->nodes[0]);
1833 btrfs_free_path(path);
1834
1835 disk_super = &root->fs_info->super_copy;
1836 features = btrfs_super_incompat_flags(disk_super);
1837 if (!(features & BTRFS_FEATURE_INCOMPAT_DEFAULT_SUBVOL)) {
1838 features |= BTRFS_FEATURE_INCOMPAT_DEFAULT_SUBVOL;
1839 btrfs_set_super_incompat_flags(disk_super, features);
1840 }
1841 btrfs_end_transaction(trans, root);
1842
1843 return 0;
1844}
1845
f46b5a66
CH
1846/*
1847 * there are many ways the trans_start and trans_end ioctls can lead
1848 * to deadlocks. They should only be used by applications that
1849 * basically own the machine, and have a very in depth understanding
1850 * of all the possible deadlocks and enospc problems.
1851 */
1852long btrfs_ioctl_trans_end(struct file *file)
1853{
1854 struct inode *inode = fdentry(file)->d_inode;
1855 struct btrfs_root *root = BTRFS_I(inode)->root;
1856 struct btrfs_trans_handle *trans;
f46b5a66 1857
f46b5a66 1858 trans = file->private_data;
1ab86aed
SW
1859 if (!trans)
1860 return -EINVAL;
b214107e 1861 file->private_data = NULL;
9ca9ee09 1862
1ab86aed
SW
1863 btrfs_end_transaction(trans, root);
1864
9ca9ee09
SW
1865 mutex_lock(&root->fs_info->trans_mutex);
1866 root->fs_info->open_ioctl_trans--;
1867 mutex_unlock(&root->fs_info->trans_mutex);
1868
cfc8ea87 1869 mnt_drop_write(file->f_path.mnt);
1ab86aed 1870 return 0;
f46b5a66
CH
1871}
1872
1873long btrfs_ioctl(struct file *file, unsigned int
1874 cmd, unsigned long arg)
1875{
1876 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
4bcabaa3 1877 void __user *argp = (void __user *)arg;
f46b5a66
CH
1878
1879 switch (cmd) {
6cbff00f
CH
1880 case FS_IOC_GETFLAGS:
1881 return btrfs_ioctl_getflags(file, argp);
1882 case FS_IOC_SETFLAGS:
1883 return btrfs_ioctl_setflags(file, argp);
1884 case FS_IOC_GETVERSION:
1885 return btrfs_ioctl_getversion(file, argp);
f46b5a66 1886 case BTRFS_IOC_SNAP_CREATE:
4bcabaa3 1887 return btrfs_ioctl_snap_create(file, argp, 0);
3de4586c 1888 case BTRFS_IOC_SUBVOL_CREATE:
4bcabaa3 1889 return btrfs_ioctl_snap_create(file, argp, 1);
76dda93c
YZ
1890 case BTRFS_IOC_SNAP_DESTROY:
1891 return btrfs_ioctl_snap_destroy(file, argp);
6ef5ed0d
JB
1892 case BTRFS_IOC_DEFAULT_SUBVOL:
1893 return btrfs_ioctl_default_subvol(file, argp);
f46b5a66 1894 case BTRFS_IOC_DEFRAG:
1e701a32
CM
1895 return btrfs_ioctl_defrag(file, NULL);
1896 case BTRFS_IOC_DEFRAG_RANGE:
1897 return btrfs_ioctl_defrag(file, argp);
f46b5a66 1898 case BTRFS_IOC_RESIZE:
4bcabaa3 1899 return btrfs_ioctl_resize(root, argp);
f46b5a66 1900 case BTRFS_IOC_ADD_DEV:
4bcabaa3 1901 return btrfs_ioctl_add_dev(root, argp);
f46b5a66 1902 case BTRFS_IOC_RM_DEV:
4bcabaa3 1903 return btrfs_ioctl_rm_dev(root, argp);
f46b5a66
CH
1904 case BTRFS_IOC_BALANCE:
1905 return btrfs_balance(root->fs_info->dev_root);
1906 case BTRFS_IOC_CLONE:
c5c9cd4d
SW
1907 return btrfs_ioctl_clone(file, arg, 0, 0, 0);
1908 case BTRFS_IOC_CLONE_RANGE:
7a865e8a 1909 return btrfs_ioctl_clone_range(file, argp);
f46b5a66
CH
1910 case BTRFS_IOC_TRANS_START:
1911 return btrfs_ioctl_trans_start(file);
1912 case BTRFS_IOC_TRANS_END:
1913 return btrfs_ioctl_trans_end(file);
ac8e9819
CM
1914 case BTRFS_IOC_TREE_SEARCH:
1915 return btrfs_ioctl_tree_search(file, argp);
1916 case BTRFS_IOC_INO_LOOKUP:
1917 return btrfs_ioctl_ino_lookup(file, argp);
f46b5a66
CH
1918 case BTRFS_IOC_SYNC:
1919 btrfs_sync_fs(file->f_dentry->d_sb, 1);
1920 return 0;
1921 }
1922
1923 return -ENOTTY;
1924}