]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - fs/btrfs/ioctl.c
Btrfs: using rcu lock in the reader side of devices list
[mirror_ubuntu-zesty-kernel.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>
4b4e25f2 44#include "compat.h"
f46b5a66
CH
45#include "ctree.h"
46#include "disk-io.h"
47#include "transaction.h"
48#include "btrfs_inode.h"
49#include "ioctl.h"
50#include "print-tree.h"
51#include "volumes.h"
925baedd 52#include "locking.h"
f46b5a66 53
6cbff00f
CH
54/* Mask out flags that are inappropriate for the given type of inode. */
55static inline __u32 btrfs_mask_flags(umode_t mode, __u32 flags)
56{
57 if (S_ISDIR(mode))
58 return flags;
59 else if (S_ISREG(mode))
60 return flags & ~FS_DIRSYNC_FL;
61 else
62 return flags & (FS_NODUMP_FL | FS_NOATIME_FL);
63}
64
65/*
66 * Export inode flags to the format expected by the FS_IOC_GETFLAGS ioctl.
67 */
68static unsigned int btrfs_flags_to_ioctl(unsigned int flags)
69{
70 unsigned int iflags = 0;
71
72 if (flags & BTRFS_INODE_SYNC)
73 iflags |= FS_SYNC_FL;
74 if (flags & BTRFS_INODE_IMMUTABLE)
75 iflags |= FS_IMMUTABLE_FL;
76 if (flags & BTRFS_INODE_APPEND)
77 iflags |= FS_APPEND_FL;
78 if (flags & BTRFS_INODE_NODUMP)
79 iflags |= FS_NODUMP_FL;
80 if (flags & BTRFS_INODE_NOATIME)
81 iflags |= FS_NOATIME_FL;
82 if (flags & BTRFS_INODE_DIRSYNC)
83 iflags |= FS_DIRSYNC_FL;
d0092bdd
LZ
84 if (flags & BTRFS_INODE_NODATACOW)
85 iflags |= FS_NOCOW_FL;
86
87 if ((flags & BTRFS_INODE_COMPRESS) && !(flags & BTRFS_INODE_NOCOMPRESS))
88 iflags |= FS_COMPR_FL;
89 else if (flags & BTRFS_INODE_NOCOMPRESS)
90 iflags |= FS_NOCOMP_FL;
6cbff00f
CH
91
92 return iflags;
93}
94
95/*
96 * Update inode->i_flags based on the btrfs internal flags.
97 */
98void btrfs_update_iflags(struct inode *inode)
99{
100 struct btrfs_inode *ip = BTRFS_I(inode);
101
102 inode->i_flags &= ~(S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC);
103
104 if (ip->flags & BTRFS_INODE_SYNC)
105 inode->i_flags |= S_SYNC;
106 if (ip->flags & BTRFS_INODE_IMMUTABLE)
107 inode->i_flags |= S_IMMUTABLE;
108 if (ip->flags & BTRFS_INODE_APPEND)
109 inode->i_flags |= S_APPEND;
110 if (ip->flags & BTRFS_INODE_NOATIME)
111 inode->i_flags |= S_NOATIME;
112 if (ip->flags & BTRFS_INODE_DIRSYNC)
113 inode->i_flags |= S_DIRSYNC;
114}
115
116/*
117 * Inherit flags from the parent inode.
118 *
119 * Unlike extN we don't have any flags we don't want to inherit currently.
120 */
121void btrfs_inherit_iflags(struct inode *inode, struct inode *dir)
122{
0b4dcea5
CM
123 unsigned int flags;
124
125 if (!dir)
126 return;
127
128 flags = BTRFS_I(dir)->flags;
6cbff00f
CH
129
130 if (S_ISREG(inode->i_mode))
131 flags &= ~BTRFS_INODE_DIRSYNC;
132 else if (!S_ISDIR(inode->i_mode))
133 flags &= (BTRFS_INODE_NODUMP | BTRFS_INODE_NOATIME);
134
135 BTRFS_I(inode)->flags = flags;
136 btrfs_update_iflags(inode);
137}
138
139static int btrfs_ioctl_getflags(struct file *file, void __user *arg)
140{
141 struct btrfs_inode *ip = BTRFS_I(file->f_path.dentry->d_inode);
142 unsigned int flags = btrfs_flags_to_ioctl(ip->flags);
143
144 if (copy_to_user(arg, &flags, sizeof(flags)))
145 return -EFAULT;
146 return 0;
147}
148
75e7cb7f
LB
149static int check_flags(unsigned int flags)
150{
151 if (flags & ~(FS_IMMUTABLE_FL | FS_APPEND_FL | \
152 FS_NOATIME_FL | FS_NODUMP_FL | \
153 FS_SYNC_FL | FS_DIRSYNC_FL | \
e1e8fb6a
LZ
154 FS_NOCOMP_FL | FS_COMPR_FL |
155 FS_NOCOW_FL))
75e7cb7f
LB
156 return -EOPNOTSUPP;
157
158 if ((flags & FS_NOCOMP_FL) && (flags & FS_COMPR_FL))
159 return -EINVAL;
160
75e7cb7f
LB
161 return 0;
162}
163
6cbff00f
CH
164static int btrfs_ioctl_setflags(struct file *file, void __user *arg)
165{
166 struct inode *inode = file->f_path.dentry->d_inode;
167 struct btrfs_inode *ip = BTRFS_I(inode);
168 struct btrfs_root *root = ip->root;
169 struct btrfs_trans_handle *trans;
170 unsigned int flags, oldflags;
171 int ret;
172
b83cc969
LZ
173 if (btrfs_root_readonly(root))
174 return -EROFS;
175
6cbff00f
CH
176 if (copy_from_user(&flags, arg, sizeof(flags)))
177 return -EFAULT;
178
75e7cb7f
LB
179 ret = check_flags(flags);
180 if (ret)
181 return ret;
f46b5a66 182
2e149670 183 if (!inode_owner_or_capable(inode))
6cbff00f
CH
184 return -EACCES;
185
186 mutex_lock(&inode->i_mutex);
187
188 flags = btrfs_mask_flags(inode->i_mode, flags);
189 oldflags = btrfs_flags_to_ioctl(ip->flags);
190 if ((flags ^ oldflags) & (FS_APPEND_FL | FS_IMMUTABLE_FL)) {
191 if (!capable(CAP_LINUX_IMMUTABLE)) {
192 ret = -EPERM;
193 goto out_unlock;
194 }
195 }
196
197 ret = mnt_want_write(file->f_path.mnt);
198 if (ret)
199 goto out_unlock;
200
201 if (flags & FS_SYNC_FL)
202 ip->flags |= BTRFS_INODE_SYNC;
203 else
204 ip->flags &= ~BTRFS_INODE_SYNC;
205 if (flags & FS_IMMUTABLE_FL)
206 ip->flags |= BTRFS_INODE_IMMUTABLE;
207 else
208 ip->flags &= ~BTRFS_INODE_IMMUTABLE;
209 if (flags & FS_APPEND_FL)
210 ip->flags |= BTRFS_INODE_APPEND;
211 else
212 ip->flags &= ~BTRFS_INODE_APPEND;
213 if (flags & FS_NODUMP_FL)
214 ip->flags |= BTRFS_INODE_NODUMP;
215 else
216 ip->flags &= ~BTRFS_INODE_NODUMP;
217 if (flags & FS_NOATIME_FL)
218 ip->flags |= BTRFS_INODE_NOATIME;
219 else
220 ip->flags &= ~BTRFS_INODE_NOATIME;
221 if (flags & FS_DIRSYNC_FL)
222 ip->flags |= BTRFS_INODE_DIRSYNC;
223 else
224 ip->flags &= ~BTRFS_INODE_DIRSYNC;
e1e8fb6a
LZ
225 if (flags & FS_NOCOW_FL)
226 ip->flags |= BTRFS_INODE_NODATACOW;
227 else
228 ip->flags &= ~BTRFS_INODE_NODATACOW;
6cbff00f 229
75e7cb7f
LB
230 /*
231 * The COMPRESS flag can only be changed by users, while the NOCOMPRESS
232 * flag may be changed automatically if compression code won't make
233 * things smaller.
234 */
235 if (flags & FS_NOCOMP_FL) {
236 ip->flags &= ~BTRFS_INODE_COMPRESS;
237 ip->flags |= BTRFS_INODE_NOCOMPRESS;
238 } else if (flags & FS_COMPR_FL) {
239 ip->flags |= BTRFS_INODE_COMPRESS;
240 ip->flags &= ~BTRFS_INODE_NOCOMPRESS;
ebcb904d
LZ
241 } else {
242 ip->flags &= ~(BTRFS_INODE_COMPRESS | BTRFS_INODE_NOCOMPRESS);
75e7cb7f 243 }
6cbff00f
CH
244
245 trans = btrfs_join_transaction(root, 1);
3612b495 246 BUG_ON(IS_ERR(trans));
6cbff00f
CH
247
248 ret = btrfs_update_inode(trans, root, inode);
249 BUG_ON(ret);
250
251 btrfs_update_iflags(inode);
252 inode->i_ctime = CURRENT_TIME;
253 btrfs_end_transaction(trans, root);
254
255 mnt_drop_write(file->f_path.mnt);
2d4e6f6a 256
257 ret = 0;
6cbff00f
CH
258 out_unlock:
259 mutex_unlock(&inode->i_mutex);
2d4e6f6a 260 return ret;
6cbff00f
CH
261}
262
263static int btrfs_ioctl_getversion(struct file *file, int __user *arg)
264{
265 struct inode *inode = file->f_path.dentry->d_inode;
266
267 return put_user(inode->i_generation, arg);
268}
f46b5a66 269
f7039b1d
LD
270static noinline int btrfs_ioctl_fitrim(struct file *file, void __user *arg)
271{
272 struct btrfs_root *root = fdentry(file)->d_sb->s_fs_info;
273 struct btrfs_fs_info *fs_info = root->fs_info;
274 struct btrfs_device *device;
275 struct request_queue *q;
276 struct fstrim_range range;
277 u64 minlen = ULLONG_MAX;
278 u64 num_devices = 0;
279 int ret;
280
281 if (!capable(CAP_SYS_ADMIN))
282 return -EPERM;
283
1f78160c
XG
284 rcu_read_lock();
285 list_for_each_entry_rcu(device, &fs_info->fs_devices->devices,
286 dev_list) {
f7039b1d
LD
287 if (!device->bdev)
288 continue;
289 q = bdev_get_queue(device->bdev);
290 if (blk_queue_discard(q)) {
291 num_devices++;
292 minlen = min((u64)q->limits.discard_granularity,
293 minlen);
294 }
295 }
1f78160c 296 rcu_read_unlock();
f7039b1d
LD
297 if (!num_devices)
298 return -EOPNOTSUPP;
299
300 if (copy_from_user(&range, arg, sizeof(range)))
301 return -EFAULT;
302
303 range.minlen = max(range.minlen, minlen);
304 ret = btrfs_trim_fs(root, &range);
305 if (ret < 0)
306 return ret;
307
308 if (copy_to_user(arg, &range, sizeof(range)))
309 return -EFAULT;
310
311 return 0;
312}
313
cb8e7090
CH
314static noinline int create_subvol(struct btrfs_root *root,
315 struct dentry *dentry,
72fd032e
SW
316 char *name, int namelen,
317 u64 *async_transid)
f46b5a66
CH
318{
319 struct btrfs_trans_handle *trans;
320 struct btrfs_key key;
321 struct btrfs_root_item root_item;
322 struct btrfs_inode_item *inode_item;
323 struct extent_buffer *leaf;
76dda93c 324 struct btrfs_root *new_root;
6a912213
JB
325 struct dentry *parent = dget_parent(dentry);
326 struct inode *dir;
f46b5a66
CH
327 int ret;
328 int err;
329 u64 objectid;
330 u64 new_dirid = BTRFS_FIRST_FREE_OBJECTID;
3de4586c 331 u64 index = 0;
f46b5a66 332
a22285a6
YZ
333 ret = btrfs_find_free_objectid(NULL, root->fs_info->tree_root,
334 0, &objectid);
6a912213
JB
335 if (ret) {
336 dput(parent);
a22285a6 337 return ret;
6a912213
JB
338 }
339
340 dir = parent->d_inode;
341
9ed74f2d
JB
342 /*
343 * 1 - inode item
344 * 2 - refs
345 * 1 - root item
346 * 2 - dir items
347 */
a22285a6 348 trans = btrfs_start_transaction(root, 6);
6a912213
JB
349 if (IS_ERR(trans)) {
350 dput(parent);
a22285a6 351 return PTR_ERR(trans);
6a912213 352 }
f46b5a66 353
5d4f98a2
YZ
354 leaf = btrfs_alloc_free_block(trans, root, root->leafsize,
355 0, objectid, NULL, 0, 0, 0);
8e8a1e31
JB
356 if (IS_ERR(leaf)) {
357 ret = PTR_ERR(leaf);
358 goto fail;
359 }
f46b5a66 360
5d4f98a2 361 memset_extent_buffer(leaf, 0, 0, sizeof(struct btrfs_header));
f46b5a66
CH
362 btrfs_set_header_bytenr(leaf, leaf->start);
363 btrfs_set_header_generation(leaf, trans->transid);
5d4f98a2 364 btrfs_set_header_backref_rev(leaf, BTRFS_MIXED_BACKREF_REV);
f46b5a66
CH
365 btrfs_set_header_owner(leaf, objectid);
366
367 write_extent_buffer(leaf, root->fs_info->fsid,
368 (unsigned long)btrfs_header_fsid(leaf),
369 BTRFS_FSID_SIZE);
5d4f98a2
YZ
370 write_extent_buffer(leaf, root->fs_info->chunk_tree_uuid,
371 (unsigned long)btrfs_header_chunk_tree_uuid(leaf),
372 BTRFS_UUID_SIZE);
f46b5a66
CH
373 btrfs_mark_buffer_dirty(leaf);
374
375 inode_item = &root_item.inode;
376 memset(inode_item, 0, sizeof(*inode_item));
377 inode_item->generation = cpu_to_le64(1);
378 inode_item->size = cpu_to_le64(3);
379 inode_item->nlink = cpu_to_le32(1);
a76a3cd4 380 inode_item->nbytes = cpu_to_le64(root->leafsize);
f46b5a66
CH
381 inode_item->mode = cpu_to_le32(S_IFDIR | 0755);
382
08fe4db1
LZ
383 root_item.flags = 0;
384 root_item.byte_limit = 0;
385 inode_item->flags = cpu_to_le64(BTRFS_INODE_ROOT_ITEM_INIT);
386
f46b5a66 387 btrfs_set_root_bytenr(&root_item, leaf->start);
84234f3a 388 btrfs_set_root_generation(&root_item, trans->transid);
f46b5a66
CH
389 btrfs_set_root_level(&root_item, 0);
390 btrfs_set_root_refs(&root_item, 1);
86b9f2ec 391 btrfs_set_root_used(&root_item, leaf->len);
80ff3856 392 btrfs_set_root_last_snapshot(&root_item, 0);
f46b5a66
CH
393
394 memset(&root_item.drop_progress, 0, sizeof(root_item.drop_progress));
395 root_item.drop_level = 0;
396
925baedd 397 btrfs_tree_unlock(leaf);
f46b5a66
CH
398 free_extent_buffer(leaf);
399 leaf = NULL;
400
401 btrfs_set_root_dirid(&root_item, new_dirid);
402
403 key.objectid = objectid;
5d4f98a2 404 key.offset = 0;
f46b5a66
CH
405 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
406 ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
407 &root_item);
408 if (ret)
409 goto fail;
410
76dda93c
YZ
411 key.offset = (u64)-1;
412 new_root = btrfs_read_fs_root_no_name(root->fs_info, &key);
413 BUG_ON(IS_ERR(new_root));
414
415 btrfs_record_root_in_trans(trans, new_root);
416
417 ret = btrfs_create_subvol_root(trans, new_root, new_dirid,
418 BTRFS_I(dir)->block_group);
f46b5a66
CH
419 /*
420 * insert the directory item
421 */
3de4586c
CM
422 ret = btrfs_set_inode_index(dir, &index);
423 BUG_ON(ret);
424
425 ret = btrfs_insert_dir_item(trans, root,
f46b5a66 426 name, namelen, dir->i_ino, &key,
3de4586c 427 BTRFS_FT_DIR, index);
f46b5a66
CH
428 if (ret)
429 goto fail;
0660b5af 430
52c26179
YZ
431 btrfs_i_size_write(dir, dir->i_size + namelen * 2);
432 ret = btrfs_update_inode(trans, root, dir);
433 BUG_ON(ret);
434
0660b5af 435 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
4df27c4d 436 objectid, root->root_key.objectid,
0660b5af 437 dir->i_ino, index, name, namelen);
0660b5af 438
76dda93c 439 BUG_ON(ret);
f46b5a66 440
76dda93c 441 d_instantiate(dentry, btrfs_lookup_dentry(dir, dentry));
f46b5a66 442fail:
6a912213 443 dput(parent);
72fd032e
SW
444 if (async_transid) {
445 *async_transid = trans->transid;
446 err = btrfs_commit_transaction_async(trans, root, 1);
447 } else {
448 err = btrfs_commit_transaction(trans, root);
449 }
f46b5a66
CH
450 if (err && !ret)
451 ret = err;
f46b5a66
CH
452 return ret;
453}
454
72fd032e 455static int create_snapshot(struct btrfs_root *root, struct dentry *dentry,
b83cc969
LZ
456 char *name, int namelen, u64 *async_transid,
457 bool readonly)
f46b5a66 458{
2e4bfab9 459 struct inode *inode;
6a912213 460 struct dentry *parent;
f46b5a66
CH
461 struct btrfs_pending_snapshot *pending_snapshot;
462 struct btrfs_trans_handle *trans;
2e4bfab9 463 int ret;
f46b5a66
CH
464
465 if (!root->ref_cows)
466 return -EINVAL;
467
3de4586c 468 pending_snapshot = kzalloc(sizeof(*pending_snapshot), GFP_NOFS);
a22285a6
YZ
469 if (!pending_snapshot)
470 return -ENOMEM;
471
472 btrfs_init_block_rsv(&pending_snapshot->block_rsv);
3de4586c 473 pending_snapshot->dentry = dentry;
f46b5a66 474 pending_snapshot->root = root;
b83cc969 475 pending_snapshot->readonly = readonly;
a22285a6
YZ
476
477 trans = btrfs_start_transaction(root->fs_info->extent_root, 5);
478 if (IS_ERR(trans)) {
479 ret = PTR_ERR(trans);
480 goto fail;
481 }
482
483 ret = btrfs_snap_reserve_metadata(trans, pending_snapshot);
484 BUG_ON(ret);
485
f46b5a66
CH
486 list_add(&pending_snapshot->list,
487 &trans->transaction->pending_snapshots);
72fd032e
SW
488 if (async_transid) {
489 *async_transid = trans->transid;
490 ret = btrfs_commit_transaction_async(trans,
491 root->fs_info->extent_root, 1);
492 } else {
493 ret = btrfs_commit_transaction(trans,
494 root->fs_info->extent_root);
495 }
2e4bfab9 496 BUG_ON(ret);
a22285a6
YZ
497
498 ret = pending_snapshot->error;
499 if (ret)
500 goto fail;
501
66b4ffd1
JB
502 ret = btrfs_orphan_cleanup(pending_snapshot->snap);
503 if (ret)
504 goto fail;
f46b5a66 505
6a912213
JB
506 parent = dget_parent(dentry);
507 inode = btrfs_lookup_dentry(parent->d_inode, dentry);
508 dput(parent);
2e4bfab9
YZ
509 if (IS_ERR(inode)) {
510 ret = PTR_ERR(inode);
511 goto fail;
512 }
513 BUG_ON(!inode);
514 d_instantiate(dentry, inode);
515 ret = 0;
516fail:
a22285a6 517 kfree(pending_snapshot);
f46b5a66
CH
518 return ret;
519}
520
4260f7c7
SW
521/* copy of check_sticky in fs/namei.c()
522* It's inline, so penalty for filesystems that don't use sticky bit is
523* minimal.
524*/
525static inline int btrfs_check_sticky(struct inode *dir, struct inode *inode)
526{
527 uid_t fsuid = current_fsuid();
528
529 if (!(dir->i_mode & S_ISVTX))
530 return 0;
531 if (inode->i_uid == fsuid)
532 return 0;
533 if (dir->i_uid == fsuid)
534 return 0;
535 return !capable(CAP_FOWNER);
536}
537
538/* copy of may_delete in fs/namei.c()
539 * Check whether we can remove a link victim from directory dir, check
540 * whether the type of victim is right.
541 * 1. We can't do it if dir is read-only (done in permission())
542 * 2. We should have write and exec permissions on dir
543 * 3. We can't remove anything from append-only dir
544 * 4. We can't do anything with immutable dir (done in permission())
545 * 5. If the sticky bit on dir is set we should either
546 * a. be owner of dir, or
547 * b. be owner of victim, or
548 * c. have CAP_FOWNER capability
549 * 6. If the victim is append-only or immutable we can't do antyhing with
550 * links pointing to it.
551 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
552 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
553 * 9. We can't remove a root or mountpoint.
554 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
555 * nfs_async_unlink().
556 */
557
558static int btrfs_may_delete(struct inode *dir,struct dentry *victim,int isdir)
559{
560 int error;
561
562 if (!victim->d_inode)
563 return -ENOENT;
564
565 BUG_ON(victim->d_parent->d_inode != dir);
566 audit_inode_child(victim, dir);
567
568 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
569 if (error)
570 return error;
571 if (IS_APPEND(dir))
572 return -EPERM;
573 if (btrfs_check_sticky(dir, victim->d_inode)||
574 IS_APPEND(victim->d_inode)||
575 IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode))
576 return -EPERM;
577 if (isdir) {
578 if (!S_ISDIR(victim->d_inode->i_mode))
579 return -ENOTDIR;
580 if (IS_ROOT(victim))
581 return -EBUSY;
582 } else if (S_ISDIR(victim->d_inode->i_mode))
583 return -EISDIR;
584 if (IS_DEADDIR(dir))
585 return -ENOENT;
586 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
587 return -EBUSY;
588 return 0;
589}
590
cb8e7090
CH
591/* copy of may_create in fs/namei.c() */
592static inline int btrfs_may_create(struct inode *dir, struct dentry *child)
593{
594 if (child->d_inode)
595 return -EEXIST;
596 if (IS_DEADDIR(dir))
597 return -ENOENT;
598 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
599}
600
601/*
602 * Create a new subvolume below @parent. This is largely modeled after
603 * sys_mkdirat and vfs_mkdir, but we only do a single component lookup
604 * inside this filesystem so it's quite a bit simpler.
605 */
76dda93c
YZ
606static noinline int btrfs_mksubvol(struct path *parent,
607 char *name, int namelen,
72fd032e 608 struct btrfs_root *snap_src,
b83cc969 609 u64 *async_transid, bool readonly)
cb8e7090 610{
76dda93c 611 struct inode *dir = parent->dentry->d_inode;
cb8e7090
CH
612 struct dentry *dentry;
613 int error;
614
76dda93c 615 mutex_lock_nested(&dir->i_mutex, I_MUTEX_PARENT);
cb8e7090
CH
616
617 dentry = lookup_one_len(name, parent->dentry, namelen);
618 error = PTR_ERR(dentry);
619 if (IS_ERR(dentry))
620 goto out_unlock;
621
622 error = -EEXIST;
623 if (dentry->d_inode)
624 goto out_dput;
625
cb8e7090
CH
626 error = mnt_want_write(parent->mnt);
627 if (error)
628 goto out_dput;
629
76dda93c 630 error = btrfs_may_create(dir, dentry);
cb8e7090
CH
631 if (error)
632 goto out_drop_write;
633
76dda93c
YZ
634 down_read(&BTRFS_I(dir)->root->fs_info->subvol_sem);
635
636 if (btrfs_root_refs(&BTRFS_I(dir)->root->root_item) == 0)
637 goto out_up_read;
638
3de4586c 639 if (snap_src) {
72fd032e 640 error = create_snapshot(snap_src, dentry,
b83cc969 641 name, namelen, async_transid, readonly);
3de4586c 642 } else {
76dda93c 643 error = create_subvol(BTRFS_I(dir)->root, dentry,
72fd032e 644 name, namelen, async_transid);
3de4586c 645 }
76dda93c
YZ
646 if (!error)
647 fsnotify_mkdir(dir, dentry);
648out_up_read:
649 up_read(&BTRFS_I(dir)->root->fs_info->subvol_sem);
cb8e7090
CH
650out_drop_write:
651 mnt_drop_write(parent->mnt);
652out_dput:
653 dput(dentry);
654out_unlock:
76dda93c 655 mutex_unlock(&dir->i_mutex);
cb8e7090
CH
656 return error;
657}
658
940100a4 659static int should_defrag_range(struct inode *inode, u64 start, u64 len,
1e701a32
CM
660 int thresh, u64 *last_len, u64 *skip,
661 u64 *defrag_end)
940100a4
CM
662{
663 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
664 struct extent_map *em = NULL;
665 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
666 int ret = 1;
667
1e701a32
CM
668
669 if (thresh == 0)
670 thresh = 256 * 1024;
671
940100a4
CM
672 /*
673 * make sure that once we start defragging and extent, we keep on
674 * defragging it
675 */
676 if (start < *defrag_end)
677 return 1;
678
679 *skip = 0;
680
681 /*
682 * hopefully we have this extent in the tree already, try without
683 * the full extent lock
684 */
685 read_lock(&em_tree->lock);
686 em = lookup_extent_mapping(em_tree, start, len);
687 read_unlock(&em_tree->lock);
688
689 if (!em) {
690 /* get the big lock and read metadata off disk */
691 lock_extent(io_tree, start, start + len - 1, GFP_NOFS);
692 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
693 unlock_extent(io_tree, start, start + len - 1, GFP_NOFS);
694
6cf8bfbf 695 if (IS_ERR(em))
940100a4
CM
696 return 0;
697 }
698
699 /* this will cover holes, and inline extents */
700 if (em->block_start >= EXTENT_MAP_LAST_BYTE)
701 ret = 0;
702
703 /*
704 * we hit a real extent, if it is big don't bother defragging it again
705 */
1e701a32 706 if ((*last_len == 0 || *last_len >= thresh) && em->len >= thresh)
940100a4
CM
707 ret = 0;
708
709 /*
710 * last_len ends up being a counter of how many bytes we've defragged.
711 * every time we choose not to defrag an extent, we reset *last_len
712 * so that the next tiny extent will force a defrag.
713 *
714 * The end result of this is that tiny extents before a single big
715 * extent will force at least part of that big extent to be defragged.
716 */
717 if (ret) {
718 *last_len += len;
719 *defrag_end = extent_map_end(em);
720 } else {
721 *last_len = 0;
722 *skip = extent_map_end(em);
723 *defrag_end = 0;
724 }
725
726 free_extent_map(em);
727 return ret;
728}
729
1e701a32
CM
730static int btrfs_defrag_file(struct file *file,
731 struct btrfs_ioctl_defrag_range_args *range)
f46b5a66
CH
732{
733 struct inode *inode = fdentry(file)->d_inode;
734 struct btrfs_root *root = BTRFS_I(inode)->root;
735 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
3eaa2885 736 struct btrfs_ordered_extent *ordered;
f46b5a66 737 struct page *page;
1a419d85 738 struct btrfs_super_block *disk_super;
f46b5a66
CH
739 unsigned long last_index;
740 unsigned long ra_pages = root->fs_info->bdi.ra_pages;
741 unsigned long total_read = 0;
1a419d85 742 u64 features;
f46b5a66
CH
743 u64 page_start;
744 u64 page_end;
940100a4
CM
745 u64 last_len = 0;
746 u64 skip = 0;
747 u64 defrag_end = 0;
f46b5a66
CH
748 unsigned long i;
749 int ret;
1a419d85
LZ
750 int compress_type = BTRFS_COMPRESS_ZLIB;
751
752 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS) {
753 if (range->compress_type > BTRFS_COMPRESS_TYPES)
754 return -EINVAL;
755 if (range->compress_type)
756 compress_type = range->compress_type;
757 }
f46b5a66 758
940100a4
CM
759 if (inode->i_size == 0)
760 return 0;
761
1e701a32
CM
762 if (range->start + range->len > range->start) {
763 last_index = min_t(u64, inode->i_size - 1,
764 range->start + range->len - 1) >> PAGE_CACHE_SHIFT;
765 } else {
766 last_index = (inode->i_size - 1) >> PAGE_CACHE_SHIFT;
767 }
768
769 i = range->start >> PAGE_CACHE_SHIFT;
940100a4
CM
770 while (i <= last_index) {
771 if (!should_defrag_range(inode, (u64)i << PAGE_CACHE_SHIFT,
1e701a32
CM
772 PAGE_CACHE_SIZE,
773 range->extent_thresh,
774 &last_len, &skip,
940100a4
CM
775 &defrag_end)) {
776 unsigned long next;
777 /*
778 * the should_defrag function tells us how much to skip
779 * bump our counter by the suggested amount
780 */
781 next = (skip + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
782 i = max(i + 1, next);
783 continue;
784 }
f46b5a66 785
f46b5a66
CH
786 if (total_read % ra_pages == 0) {
787 btrfs_force_ra(inode->i_mapping, &file->f_ra, file, i,
788 min(last_index, i + ra_pages - 1));
789 }
790 total_read++;
940100a4 791 mutex_lock(&inode->i_mutex);
1e701a32 792 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)
1a419d85 793 BTRFS_I(inode)->force_compress = compress_type;
940100a4 794
0ca1f7ce
YZ
795 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
796 if (ret)
797 goto err_unlock;
3eaa2885 798again:
940100a4
CM
799 if (inode->i_size == 0 ||
800 i > ((inode->i_size - 1) >> PAGE_CACHE_SHIFT)) {
801 ret = 0;
802 goto err_reservations;
803 }
804
f46b5a66 805 page = grab_cache_page(inode->i_mapping, i);
0ca1f7ce
YZ
806 if (!page) {
807 ret = -ENOMEM;
940100a4 808 goto err_reservations;
0ca1f7ce 809 }
940100a4 810
f46b5a66
CH
811 if (!PageUptodate(page)) {
812 btrfs_readpage(NULL, page);
813 lock_page(page);
814 if (!PageUptodate(page)) {
815 unlock_page(page);
816 page_cache_release(page);
0ca1f7ce 817 ret = -EIO;
940100a4 818 goto err_reservations;
f46b5a66
CH
819 }
820 }
821
940100a4
CM
822 if (page->mapping != inode->i_mapping) {
823 unlock_page(page);
824 page_cache_release(page);
825 goto again;
826 }
827
f46b5a66 828 wait_on_page_writeback(page);
f46b5a66 829
940100a4 830 if (PageDirty(page)) {
0ca1f7ce 831 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
940100a4
CM
832 goto loop_unlock;
833 }
834
f46b5a66
CH
835 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
836 page_end = page_start + PAGE_CACHE_SIZE - 1;
f46b5a66 837 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
3eaa2885
CM
838
839 ordered = btrfs_lookup_ordered_extent(inode, page_start);
840 if (ordered) {
841 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
842 unlock_page(page);
843 page_cache_release(page);
844 btrfs_start_ordered_extent(inode, ordered, 1);
845 btrfs_put_ordered_extent(ordered);
846 goto again;
847 }
848 set_page_extent_mapped(page);
849
f87f057b
CM
850 /*
851 * this makes sure page_mkwrite is called on the
852 * page if it is dirtied again later
853 */
854 clear_page_dirty_for_io(page);
940100a4
CM
855 clear_extent_bits(&BTRFS_I(inode)->io_tree, page_start,
856 page_end, EXTENT_DIRTY | EXTENT_DELALLOC |
857 EXTENT_DO_ACCOUNTING, GFP_NOFS);
f87f057b 858
2ac55d41 859 btrfs_set_extent_delalloc(inode, page_start, page_end, NULL);
940100a4 860 ClearPageChecked(page);
f46b5a66 861 set_page_dirty(page);
a1ed835e 862 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
940100a4
CM
863
864loop_unlock:
f46b5a66
CH
865 unlock_page(page);
866 page_cache_release(page);
940100a4
CM
867 mutex_unlock(&inode->i_mutex);
868
f46b5a66 869 balance_dirty_pages_ratelimited_nr(inode->i_mapping, 1);
940100a4 870 i++;
f46b5a66
CH
871 }
872
1e701a32
CM
873 if ((range->flags & BTRFS_DEFRAG_RANGE_START_IO))
874 filemap_flush(inode->i_mapping);
875
876 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
877 /* the filemap_flush will queue IO into the worker threads, but
878 * we have to make sure the IO is actually started and that
879 * ordered extents get created before we return
880 */
881 atomic_inc(&root->fs_info->async_submit_draining);
882 while (atomic_read(&root->fs_info->nr_async_submits) ||
883 atomic_read(&root->fs_info->async_delalloc_pages)) {
884 wait_event(root->fs_info->async_submit_wait,
885 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
886 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
887 }
888 atomic_dec(&root->fs_info->async_submit_draining);
889
890 mutex_lock(&inode->i_mutex);
261507a0 891 BTRFS_I(inode)->force_compress = BTRFS_COMPRESS_NONE;
1e701a32
CM
892 mutex_unlock(&inode->i_mutex);
893 }
894
1a419d85
LZ
895 disk_super = &root->fs_info->super_copy;
896 features = btrfs_super_incompat_flags(disk_super);
897 if (range->compress_type == BTRFS_COMPRESS_LZO) {
898 features |= BTRFS_FEATURE_INCOMPAT_COMPRESS_LZO;
899 btrfs_set_super_incompat_flags(disk_super, features);
900 }
901
f46b5a66 902 return 0;
940100a4
CM
903
904err_reservations:
0ca1f7ce
YZ
905 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
906err_unlock:
940100a4 907 mutex_unlock(&inode->i_mutex);
940100a4 908 return ret;
f46b5a66
CH
909}
910
76dda93c
YZ
911static noinline int btrfs_ioctl_resize(struct btrfs_root *root,
912 void __user *arg)
f46b5a66
CH
913{
914 u64 new_size;
915 u64 old_size;
916 u64 devid = 1;
917 struct btrfs_ioctl_vol_args *vol_args;
918 struct btrfs_trans_handle *trans;
919 struct btrfs_device *device = NULL;
920 char *sizestr;
921 char *devstr = NULL;
922 int ret = 0;
f46b5a66
CH
923 int mod = 0;
924
c146afad
YZ
925 if (root->fs_info->sb->s_flags & MS_RDONLY)
926 return -EROFS;
927
e441d54d
CM
928 if (!capable(CAP_SYS_ADMIN))
929 return -EPERM;
930
dae7b665
LZ
931 vol_args = memdup_user(arg, sizeof(*vol_args));
932 if (IS_ERR(vol_args))
933 return PTR_ERR(vol_args);
5516e595
MF
934
935 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
f46b5a66 936
7d9eb12c 937 mutex_lock(&root->fs_info->volume_mutex);
f46b5a66
CH
938 sizestr = vol_args->name;
939 devstr = strchr(sizestr, ':');
940 if (devstr) {
941 char *end;
942 sizestr = devstr + 1;
943 *devstr = '\0';
944 devstr = vol_args->name;
945 devid = simple_strtoull(devstr, &end, 10);
21380931
JB
946 printk(KERN_INFO "resizing devid %llu\n",
947 (unsigned long long)devid);
f46b5a66 948 }
2b82032c 949 device = btrfs_find_device(root, devid, NULL, NULL);
f46b5a66 950 if (!device) {
21380931
JB
951 printk(KERN_INFO "resizer unable to find device %llu\n",
952 (unsigned long long)devid);
f46b5a66
CH
953 ret = -EINVAL;
954 goto out_unlock;
955 }
956 if (!strcmp(sizestr, "max"))
957 new_size = device->bdev->bd_inode->i_size;
958 else {
959 if (sizestr[0] == '-') {
960 mod = -1;
961 sizestr++;
962 } else if (sizestr[0] == '+') {
963 mod = 1;
964 sizestr++;
965 }
91748467 966 new_size = memparse(sizestr, NULL);
f46b5a66
CH
967 if (new_size == 0) {
968 ret = -EINVAL;
969 goto out_unlock;
970 }
971 }
972
973 old_size = device->total_bytes;
974
975 if (mod < 0) {
976 if (new_size > old_size) {
977 ret = -EINVAL;
978 goto out_unlock;
979 }
980 new_size = old_size - new_size;
981 } else if (mod > 0) {
982 new_size = old_size + new_size;
983 }
984
985 if (new_size < 256 * 1024 * 1024) {
986 ret = -EINVAL;
987 goto out_unlock;
988 }
989 if (new_size > device->bdev->bd_inode->i_size) {
990 ret = -EFBIG;
991 goto out_unlock;
992 }
993
994 do_div(new_size, root->sectorsize);
995 new_size *= root->sectorsize;
996
997 printk(KERN_INFO "new size for %s is %llu\n",
998 device->name, (unsigned long long)new_size);
999
1000 if (new_size > old_size) {
a22285a6 1001 trans = btrfs_start_transaction(root, 0);
98d5dc13
TI
1002 if (IS_ERR(trans)) {
1003 ret = PTR_ERR(trans);
1004 goto out_unlock;
1005 }
f46b5a66
CH
1006 ret = btrfs_grow_device(trans, device, new_size);
1007 btrfs_commit_transaction(trans, root);
1008 } else {
1009 ret = btrfs_shrink_device(device, new_size);
1010 }
1011
1012out_unlock:
7d9eb12c 1013 mutex_unlock(&root->fs_info->volume_mutex);
f46b5a66
CH
1014 kfree(vol_args);
1015 return ret;
1016}
1017
72fd032e
SW
1018static noinline int btrfs_ioctl_snap_create_transid(struct file *file,
1019 char *name,
1020 unsigned long fd,
1021 int subvol,
b83cc969
LZ
1022 u64 *transid,
1023 bool readonly)
f46b5a66 1024{
cb8e7090 1025 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
3de4586c 1026 struct file *src_file;
f46b5a66 1027 int namelen;
3de4586c 1028 int ret = 0;
f46b5a66 1029
c146afad
YZ
1030 if (root->fs_info->sb->s_flags & MS_RDONLY)
1031 return -EROFS;
1032
72fd032e
SW
1033 namelen = strlen(name);
1034 if (strchr(name, '/')) {
f46b5a66
CH
1035 ret = -EINVAL;
1036 goto out;
1037 }
1038
3de4586c 1039 if (subvol) {
72fd032e 1040 ret = btrfs_mksubvol(&file->f_path, name, namelen,
b83cc969 1041 NULL, transid, readonly);
cb8e7090 1042 } else {
3de4586c 1043 struct inode *src_inode;
72fd032e 1044 src_file = fget(fd);
3de4586c
CM
1045 if (!src_file) {
1046 ret = -EINVAL;
1047 goto out;
1048 }
1049
1050 src_inode = src_file->f_path.dentry->d_inode;
1051 if (src_inode->i_sb != file->f_path.dentry->d_inode->i_sb) {
d397712b
CM
1052 printk(KERN_INFO "btrfs: Snapshot src from "
1053 "another FS\n");
3de4586c
CM
1054 ret = -EINVAL;
1055 fput(src_file);
1056 goto out;
1057 }
72fd032e
SW
1058 ret = btrfs_mksubvol(&file->f_path, name, namelen,
1059 BTRFS_I(src_inode)->root,
b83cc969 1060 transid, readonly);
3de4586c 1061 fput(src_file);
cb8e7090 1062 }
f46b5a66 1063out:
72fd032e
SW
1064 return ret;
1065}
1066
1067static noinline int btrfs_ioctl_snap_create(struct file *file,
fa0d2b9b 1068 void __user *arg, int subvol)
72fd032e 1069{
fa0d2b9b 1070 struct btrfs_ioctl_vol_args *vol_args;
72fd032e
SW
1071 int ret;
1072
fa0d2b9b
LZ
1073 vol_args = memdup_user(arg, sizeof(*vol_args));
1074 if (IS_ERR(vol_args))
1075 return PTR_ERR(vol_args);
1076 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
72fd032e 1077
fa0d2b9b 1078 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
b83cc969
LZ
1079 vol_args->fd, subvol,
1080 NULL, false);
fdfb1e4f 1081
fa0d2b9b
LZ
1082 kfree(vol_args);
1083 return ret;
1084}
fdfb1e4f 1085
fa0d2b9b
LZ
1086static noinline int btrfs_ioctl_snap_create_v2(struct file *file,
1087 void __user *arg, int subvol)
1088{
1089 struct btrfs_ioctl_vol_args_v2 *vol_args;
1090 int ret;
1091 u64 transid = 0;
1092 u64 *ptr = NULL;
b83cc969 1093 bool readonly = false;
75eaa0e2 1094
fa0d2b9b
LZ
1095 vol_args = memdup_user(arg, sizeof(*vol_args));
1096 if (IS_ERR(vol_args))
1097 return PTR_ERR(vol_args);
1098 vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
75eaa0e2 1099
b83cc969
LZ
1100 if (vol_args->flags &
1101 ~(BTRFS_SUBVOL_CREATE_ASYNC | BTRFS_SUBVOL_RDONLY)) {
1102 ret = -EOPNOTSUPP;
fa0d2b9b 1103 goto out;
72fd032e 1104 }
fa0d2b9b
LZ
1105
1106 if (vol_args->flags & BTRFS_SUBVOL_CREATE_ASYNC)
1107 ptr = &transid;
b83cc969
LZ
1108 if (vol_args->flags & BTRFS_SUBVOL_RDONLY)
1109 readonly = true;
fa0d2b9b
LZ
1110
1111 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
b83cc969
LZ
1112 vol_args->fd, subvol,
1113 ptr, readonly);
fa0d2b9b
LZ
1114
1115 if (ret == 0 && ptr &&
1116 copy_to_user(arg +
1117 offsetof(struct btrfs_ioctl_vol_args_v2,
1118 transid), ptr, sizeof(*ptr)))
1119 ret = -EFAULT;
fdfb1e4f 1120out:
f46b5a66
CH
1121 kfree(vol_args);
1122 return ret;
1123}
1124
0caa102d
LZ
1125static noinline int btrfs_ioctl_subvol_getflags(struct file *file,
1126 void __user *arg)
1127{
1128 struct inode *inode = fdentry(file)->d_inode;
1129 struct btrfs_root *root = BTRFS_I(inode)->root;
1130 int ret = 0;
1131 u64 flags = 0;
1132
1133 if (inode->i_ino != BTRFS_FIRST_FREE_OBJECTID)
1134 return -EINVAL;
1135
1136 down_read(&root->fs_info->subvol_sem);
1137 if (btrfs_root_readonly(root))
1138 flags |= BTRFS_SUBVOL_RDONLY;
1139 up_read(&root->fs_info->subvol_sem);
1140
1141 if (copy_to_user(arg, &flags, sizeof(flags)))
1142 ret = -EFAULT;
1143
1144 return ret;
1145}
1146
1147static noinline int btrfs_ioctl_subvol_setflags(struct file *file,
1148 void __user *arg)
1149{
1150 struct inode *inode = fdentry(file)->d_inode;
1151 struct btrfs_root *root = BTRFS_I(inode)->root;
1152 struct btrfs_trans_handle *trans;
1153 u64 root_flags;
1154 u64 flags;
1155 int ret = 0;
1156
1157 if (root->fs_info->sb->s_flags & MS_RDONLY)
1158 return -EROFS;
1159
1160 if (inode->i_ino != BTRFS_FIRST_FREE_OBJECTID)
1161 return -EINVAL;
1162
1163 if (copy_from_user(&flags, arg, sizeof(flags)))
1164 return -EFAULT;
1165
b4dc2b8c 1166 if (flags & BTRFS_SUBVOL_CREATE_ASYNC)
0caa102d
LZ
1167 return -EINVAL;
1168
1169 if (flags & ~BTRFS_SUBVOL_RDONLY)
1170 return -EOPNOTSUPP;
1171
2e149670 1172 if (!inode_owner_or_capable(inode))
b4dc2b8c
LZ
1173 return -EACCES;
1174
0caa102d
LZ
1175 down_write(&root->fs_info->subvol_sem);
1176
1177 /* nothing to do */
1178 if (!!(flags & BTRFS_SUBVOL_RDONLY) == btrfs_root_readonly(root))
1179 goto out;
1180
1181 root_flags = btrfs_root_flags(&root->root_item);
1182 if (flags & BTRFS_SUBVOL_RDONLY)
1183 btrfs_set_root_flags(&root->root_item,
1184 root_flags | BTRFS_ROOT_SUBVOL_RDONLY);
1185 else
1186 btrfs_set_root_flags(&root->root_item,
1187 root_flags & ~BTRFS_ROOT_SUBVOL_RDONLY);
1188
1189 trans = btrfs_start_transaction(root, 1);
1190 if (IS_ERR(trans)) {
1191 ret = PTR_ERR(trans);
1192 goto out_reset;
1193 }
1194
b4dc2b8c 1195 ret = btrfs_update_root(trans, root->fs_info->tree_root,
0caa102d
LZ
1196 &root->root_key, &root->root_item);
1197
1198 btrfs_commit_transaction(trans, root);
1199out_reset:
1200 if (ret)
1201 btrfs_set_root_flags(&root->root_item, root_flags);
1202out:
1203 up_write(&root->fs_info->subvol_sem);
1204 return ret;
1205}
1206
76dda93c
YZ
1207/*
1208 * helper to check if the subvolume references other subvolumes
1209 */
1210static noinline int may_destroy_subvol(struct btrfs_root *root)
1211{
1212 struct btrfs_path *path;
1213 struct btrfs_key key;
1214 int ret;
1215
1216 path = btrfs_alloc_path();
1217 if (!path)
1218 return -ENOMEM;
1219
1220 key.objectid = root->root_key.objectid;
1221 key.type = BTRFS_ROOT_REF_KEY;
1222 key.offset = (u64)-1;
1223
1224 ret = btrfs_search_slot(NULL, root->fs_info->tree_root,
1225 &key, path, 0, 0);
1226 if (ret < 0)
1227 goto out;
1228 BUG_ON(ret == 0);
1229
1230 ret = 0;
1231 if (path->slots[0] > 0) {
1232 path->slots[0]--;
1233 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1234 if (key.objectid == root->root_key.objectid &&
1235 key.type == BTRFS_ROOT_REF_KEY)
1236 ret = -ENOTEMPTY;
1237 }
1238out:
1239 btrfs_free_path(path);
1240 return ret;
1241}
1242
ac8e9819
CM
1243static noinline int key_in_sk(struct btrfs_key *key,
1244 struct btrfs_ioctl_search_key *sk)
1245{
abc6e134
CM
1246 struct btrfs_key test;
1247 int ret;
1248
1249 test.objectid = sk->min_objectid;
1250 test.type = sk->min_type;
1251 test.offset = sk->min_offset;
1252
1253 ret = btrfs_comp_cpu_keys(key, &test);
1254 if (ret < 0)
ac8e9819 1255 return 0;
abc6e134
CM
1256
1257 test.objectid = sk->max_objectid;
1258 test.type = sk->max_type;
1259 test.offset = sk->max_offset;
1260
1261 ret = btrfs_comp_cpu_keys(key, &test);
1262 if (ret > 0)
ac8e9819
CM
1263 return 0;
1264 return 1;
1265}
1266
1267static noinline int copy_to_sk(struct btrfs_root *root,
1268 struct btrfs_path *path,
1269 struct btrfs_key *key,
1270 struct btrfs_ioctl_search_key *sk,
1271 char *buf,
1272 unsigned long *sk_offset,
1273 int *num_found)
1274{
1275 u64 found_transid;
1276 struct extent_buffer *leaf;
1277 struct btrfs_ioctl_search_header sh;
1278 unsigned long item_off;
1279 unsigned long item_len;
1280 int nritems;
1281 int i;
1282 int slot;
ac8e9819
CM
1283 int ret = 0;
1284
1285 leaf = path->nodes[0];
1286 slot = path->slots[0];
1287 nritems = btrfs_header_nritems(leaf);
1288
1289 if (btrfs_header_generation(leaf) > sk->max_transid) {
1290 i = nritems;
1291 goto advance_key;
1292 }
1293 found_transid = btrfs_header_generation(leaf);
1294
1295 for (i = slot; i < nritems; i++) {
1296 item_off = btrfs_item_ptr_offset(leaf, i);
1297 item_len = btrfs_item_size_nr(leaf, i);
1298
1299 if (item_len > BTRFS_SEARCH_ARGS_BUFSIZE)
1300 item_len = 0;
1301
1302 if (sizeof(sh) + item_len + *sk_offset >
1303 BTRFS_SEARCH_ARGS_BUFSIZE) {
1304 ret = 1;
1305 goto overflow;
1306 }
1307
1308 btrfs_item_key_to_cpu(leaf, key, i);
1309 if (!key_in_sk(key, sk))
1310 continue;
1311
1312 sh.objectid = key->objectid;
1313 sh.offset = key->offset;
1314 sh.type = key->type;
1315 sh.len = item_len;
1316 sh.transid = found_transid;
1317
1318 /* copy search result header */
1319 memcpy(buf + *sk_offset, &sh, sizeof(sh));
1320 *sk_offset += sizeof(sh);
1321
1322 if (item_len) {
1323 char *p = buf + *sk_offset;
1324 /* copy the item */
1325 read_extent_buffer(leaf, p,
1326 item_off, item_len);
1327 *sk_offset += item_len;
ac8e9819 1328 }
e2156867 1329 (*num_found)++;
ac8e9819
CM
1330
1331 if (*num_found >= sk->nr_items)
1332 break;
1333 }
1334advance_key:
abc6e134
CM
1335 ret = 0;
1336 if (key->offset < (u64)-1 && key->offset < sk->max_offset)
ac8e9819 1337 key->offset++;
abc6e134
CM
1338 else if (key->type < (u8)-1 && key->type < sk->max_type) {
1339 key->offset = 0;
ac8e9819 1340 key->type++;
abc6e134
CM
1341 } else if (key->objectid < (u64)-1 && key->objectid < sk->max_objectid) {
1342 key->offset = 0;
1343 key->type = 0;
ac8e9819 1344 key->objectid++;
abc6e134
CM
1345 } else
1346 ret = 1;
ac8e9819 1347overflow:
ac8e9819
CM
1348 return ret;
1349}
1350
1351static noinline int search_ioctl(struct inode *inode,
1352 struct btrfs_ioctl_search_args *args)
1353{
1354 struct btrfs_root *root;
1355 struct btrfs_key key;
1356 struct btrfs_key max_key;
1357 struct btrfs_path *path;
1358 struct btrfs_ioctl_search_key *sk = &args->key;
1359 struct btrfs_fs_info *info = BTRFS_I(inode)->root->fs_info;
1360 int ret;
1361 int num_found = 0;
1362 unsigned long sk_offset = 0;
1363
1364 path = btrfs_alloc_path();
1365 if (!path)
1366 return -ENOMEM;
1367
1368 if (sk->tree_id == 0) {
1369 /* search the root of the inode that was passed */
1370 root = BTRFS_I(inode)->root;
1371 } else {
1372 key.objectid = sk->tree_id;
1373 key.type = BTRFS_ROOT_ITEM_KEY;
1374 key.offset = (u64)-1;
1375 root = btrfs_read_fs_root_no_name(info, &key);
1376 if (IS_ERR(root)) {
1377 printk(KERN_ERR "could not find root %llu\n",
1378 sk->tree_id);
1379 btrfs_free_path(path);
1380 return -ENOENT;
1381 }
1382 }
1383
1384 key.objectid = sk->min_objectid;
1385 key.type = sk->min_type;
1386 key.offset = sk->min_offset;
1387
1388 max_key.objectid = sk->max_objectid;
1389 max_key.type = sk->max_type;
1390 max_key.offset = sk->max_offset;
1391
1392 path->keep_locks = 1;
1393
1394 while(1) {
1395 ret = btrfs_search_forward(root, &key, &max_key, path, 0,
1396 sk->min_transid);
1397 if (ret != 0) {
1398 if (ret > 0)
1399 ret = 0;
1400 goto err;
1401 }
1402 ret = copy_to_sk(root, path, &key, sk, args->buf,
1403 &sk_offset, &num_found);
1404 btrfs_release_path(root, path);
1405 if (ret || num_found >= sk->nr_items)
1406 break;
1407
1408 }
1409 ret = 0;
1410err:
1411 sk->nr_items = num_found;
1412 btrfs_free_path(path);
1413 return ret;
1414}
1415
1416static noinline int btrfs_ioctl_tree_search(struct file *file,
1417 void __user *argp)
1418{
1419 struct btrfs_ioctl_search_args *args;
1420 struct inode *inode;
1421 int ret;
1422
1423 if (!capable(CAP_SYS_ADMIN))
1424 return -EPERM;
1425
2354d08f
JL
1426 args = memdup_user(argp, sizeof(*args));
1427 if (IS_ERR(args))
1428 return PTR_ERR(args);
ac8e9819 1429
ac8e9819
CM
1430 inode = fdentry(file)->d_inode;
1431 ret = search_ioctl(inode, args);
1432 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
1433 ret = -EFAULT;
1434 kfree(args);
1435 return ret;
1436}
1437
98d377a0 1438/*
ac8e9819
CM
1439 * Search INODE_REFs to identify path name of 'dirid' directory
1440 * in a 'tree_id' tree. and sets path name to 'name'.
1441 */
98d377a0
TH
1442static noinline int btrfs_search_path_in_tree(struct btrfs_fs_info *info,
1443 u64 tree_id, u64 dirid, char *name)
1444{
1445 struct btrfs_root *root;
1446 struct btrfs_key key;
ac8e9819 1447 char *ptr;
98d377a0
TH
1448 int ret = -1;
1449 int slot;
1450 int len;
1451 int total_len = 0;
1452 struct btrfs_inode_ref *iref;
1453 struct extent_buffer *l;
1454 struct btrfs_path *path;
1455
1456 if (dirid == BTRFS_FIRST_FREE_OBJECTID) {
1457 name[0]='\0';
1458 return 0;
1459 }
1460
1461 path = btrfs_alloc_path();
1462 if (!path)
1463 return -ENOMEM;
1464
ac8e9819 1465 ptr = &name[BTRFS_INO_LOOKUP_PATH_MAX];
98d377a0
TH
1466
1467 key.objectid = tree_id;
1468 key.type = BTRFS_ROOT_ITEM_KEY;
1469 key.offset = (u64)-1;
1470 root = btrfs_read_fs_root_no_name(info, &key);
1471 if (IS_ERR(root)) {
1472 printk(KERN_ERR "could not find root %llu\n", tree_id);
8ad6fcab
CM
1473 ret = -ENOENT;
1474 goto out;
98d377a0
TH
1475 }
1476
1477 key.objectid = dirid;
1478 key.type = BTRFS_INODE_REF_KEY;
8ad6fcab 1479 key.offset = (u64)-1;
98d377a0
TH
1480
1481 while(1) {
1482 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1483 if (ret < 0)
1484 goto out;
1485
1486 l = path->nodes[0];
1487 slot = path->slots[0];
8ad6fcab
CM
1488 if (ret > 0 && slot > 0)
1489 slot--;
98d377a0
TH
1490 btrfs_item_key_to_cpu(l, &key, slot);
1491
1492 if (ret > 0 && (key.objectid != dirid ||
ac8e9819
CM
1493 key.type != BTRFS_INODE_REF_KEY)) {
1494 ret = -ENOENT;
98d377a0 1495 goto out;
ac8e9819 1496 }
98d377a0
TH
1497
1498 iref = btrfs_item_ptr(l, slot, struct btrfs_inode_ref);
1499 len = btrfs_inode_ref_name_len(l, iref);
1500 ptr -= len + 1;
1501 total_len += len + 1;
ac8e9819 1502 if (ptr < name)
98d377a0
TH
1503 goto out;
1504
1505 *(ptr + len) = '/';
1506 read_extent_buffer(l, ptr,(unsigned long)(iref + 1), len);
1507
1508 if (key.offset == BTRFS_FIRST_FREE_OBJECTID)
1509 break;
1510
1511 btrfs_release_path(root, path);
1512 key.objectid = key.offset;
8ad6fcab 1513 key.offset = (u64)-1;
98d377a0
TH
1514 dirid = key.objectid;
1515
1516 }
ac8e9819 1517 if (ptr < name)
98d377a0 1518 goto out;
ac8e9819 1519 memcpy(name, ptr, total_len);
98d377a0
TH
1520 name[total_len]='\0';
1521 ret = 0;
1522out:
1523 btrfs_free_path(path);
ac8e9819
CM
1524 return ret;
1525}
1526
1527static noinline int btrfs_ioctl_ino_lookup(struct file *file,
1528 void __user *argp)
1529{
1530 struct btrfs_ioctl_ino_lookup_args *args;
1531 struct inode *inode;
1532 int ret;
1533
1534 if (!capable(CAP_SYS_ADMIN))
1535 return -EPERM;
1536
2354d08f
JL
1537 args = memdup_user(argp, sizeof(*args));
1538 if (IS_ERR(args))
1539 return PTR_ERR(args);
c2b96929 1540
ac8e9819
CM
1541 inode = fdentry(file)->d_inode;
1542
1b53ac4d
CM
1543 if (args->treeid == 0)
1544 args->treeid = BTRFS_I(inode)->root->root_key.objectid;
1545
ac8e9819
CM
1546 ret = btrfs_search_path_in_tree(BTRFS_I(inode)->root->fs_info,
1547 args->treeid, args->objectid,
1548 args->name);
1549
1550 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
1551 ret = -EFAULT;
1552
1553 kfree(args);
98d377a0
TH
1554 return ret;
1555}
1556
76dda93c
YZ
1557static noinline int btrfs_ioctl_snap_destroy(struct file *file,
1558 void __user *arg)
1559{
1560 struct dentry *parent = fdentry(file);
1561 struct dentry *dentry;
1562 struct inode *dir = parent->d_inode;
1563 struct inode *inode;
1564 struct btrfs_root *root = BTRFS_I(dir)->root;
1565 struct btrfs_root *dest = NULL;
1566 struct btrfs_ioctl_vol_args *vol_args;
1567 struct btrfs_trans_handle *trans;
1568 int namelen;
1569 int ret;
1570 int err = 0;
1571
76dda93c
YZ
1572 vol_args = memdup_user(arg, sizeof(*vol_args));
1573 if (IS_ERR(vol_args))
1574 return PTR_ERR(vol_args);
1575
1576 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
1577 namelen = strlen(vol_args->name);
1578 if (strchr(vol_args->name, '/') ||
1579 strncmp(vol_args->name, "..", namelen) == 0) {
1580 err = -EINVAL;
1581 goto out;
1582 }
1583
1584 err = mnt_want_write(file->f_path.mnt);
1585 if (err)
1586 goto out;
1587
1588 mutex_lock_nested(&dir->i_mutex, I_MUTEX_PARENT);
1589 dentry = lookup_one_len(vol_args->name, parent, namelen);
1590 if (IS_ERR(dentry)) {
1591 err = PTR_ERR(dentry);
1592 goto out_unlock_dir;
1593 }
1594
1595 if (!dentry->d_inode) {
1596 err = -ENOENT;
1597 goto out_dput;
1598 }
1599
1600 inode = dentry->d_inode;
4260f7c7
SW
1601 dest = BTRFS_I(inode)->root;
1602 if (!capable(CAP_SYS_ADMIN)){
1603 /*
1604 * Regular user. Only allow this with a special mount
1605 * option, when the user has write+exec access to the
1606 * subvol root, and when rmdir(2) would have been
1607 * allowed.
1608 *
1609 * Note that this is _not_ check that the subvol is
1610 * empty or doesn't contain data that we wouldn't
1611 * otherwise be able to delete.
1612 *
1613 * Users who want to delete empty subvols should try
1614 * rmdir(2).
1615 */
1616 err = -EPERM;
1617 if (!btrfs_test_opt(root, USER_SUBVOL_RM_ALLOWED))
1618 goto out_dput;
1619
1620 /*
1621 * Do not allow deletion if the parent dir is the same
1622 * as the dir to be deleted. That means the ioctl
1623 * must be called on the dentry referencing the root
1624 * of the subvol, not a random directory contained
1625 * within it.
1626 */
1627 err = -EINVAL;
1628 if (root == dest)
1629 goto out_dput;
1630
1631 err = inode_permission(inode, MAY_WRITE | MAY_EXEC);
1632 if (err)
1633 goto out_dput;
1634
1635 /* check if subvolume may be deleted by a non-root user */
1636 err = btrfs_may_delete(dir, dentry, 1);
1637 if (err)
1638 goto out_dput;
1639 }
1640
76dda93c
YZ
1641 if (inode->i_ino != BTRFS_FIRST_FREE_OBJECTID) {
1642 err = -EINVAL;
1643 goto out_dput;
1644 }
1645
76dda93c
YZ
1646 mutex_lock(&inode->i_mutex);
1647 err = d_invalidate(dentry);
1648 if (err)
1649 goto out_unlock;
1650
1651 down_write(&root->fs_info->subvol_sem);
1652
1653 err = may_destroy_subvol(dest);
1654 if (err)
1655 goto out_up_write;
1656
a22285a6
YZ
1657 trans = btrfs_start_transaction(root, 0);
1658 if (IS_ERR(trans)) {
1659 err = PTR_ERR(trans);
d327099a 1660 goto out_up_write;
a22285a6
YZ
1661 }
1662 trans->block_rsv = &root->fs_info->global_block_rsv;
1663
76dda93c
YZ
1664 ret = btrfs_unlink_subvol(trans, root, dir,
1665 dest->root_key.objectid,
1666 dentry->d_name.name,
1667 dentry->d_name.len);
1668 BUG_ON(ret);
1669
1670 btrfs_record_root_in_trans(trans, dest);
1671
1672 memset(&dest->root_item.drop_progress, 0,
1673 sizeof(dest->root_item.drop_progress));
1674 dest->root_item.drop_level = 0;
1675 btrfs_set_root_refs(&dest->root_item, 0);
1676
d68fc57b
YZ
1677 if (!xchg(&dest->orphan_item_inserted, 1)) {
1678 ret = btrfs_insert_orphan_item(trans,
1679 root->fs_info->tree_root,
1680 dest->root_key.objectid);
1681 BUG_ON(ret);
1682 }
76dda93c 1683
531cb13f 1684 ret = btrfs_end_transaction(trans, root);
76dda93c
YZ
1685 BUG_ON(ret);
1686 inode->i_flags |= S_DEAD;
1687out_up_write:
1688 up_write(&root->fs_info->subvol_sem);
1689out_unlock:
1690 mutex_unlock(&inode->i_mutex);
1691 if (!err) {
efefb143 1692 shrink_dcache_sb(root->fs_info->sb);
76dda93c
YZ
1693 btrfs_invalidate_inodes(dest);
1694 d_delete(dentry);
1695 }
1696out_dput:
1697 dput(dentry);
1698out_unlock_dir:
1699 mutex_unlock(&dir->i_mutex);
1700 mnt_drop_write(file->f_path.mnt);
1701out:
1702 kfree(vol_args);
1703 return err;
1704}
1705
1e701a32 1706static int btrfs_ioctl_defrag(struct file *file, void __user *argp)
f46b5a66
CH
1707{
1708 struct inode *inode = fdentry(file)->d_inode;
1709 struct btrfs_root *root = BTRFS_I(inode)->root;
1e701a32 1710 struct btrfs_ioctl_defrag_range_args *range;
c146afad
YZ
1711 int ret;
1712
b83cc969
LZ
1713 if (btrfs_root_readonly(root))
1714 return -EROFS;
1715
c146afad
YZ
1716 ret = mnt_want_write(file->f_path.mnt);
1717 if (ret)
1718 return ret;
f46b5a66
CH
1719
1720 switch (inode->i_mode & S_IFMT) {
1721 case S_IFDIR:
e441d54d
CM
1722 if (!capable(CAP_SYS_ADMIN)) {
1723 ret = -EPERM;
1724 goto out;
1725 }
8929ecfa
YZ
1726 ret = btrfs_defrag_root(root, 0);
1727 if (ret)
1728 goto out;
1729 ret = btrfs_defrag_root(root->fs_info->extent_root, 0);
f46b5a66
CH
1730 break;
1731 case S_IFREG:
e441d54d
CM
1732 if (!(file->f_mode & FMODE_WRITE)) {
1733 ret = -EINVAL;
1734 goto out;
1735 }
1e701a32
CM
1736
1737 range = kzalloc(sizeof(*range), GFP_KERNEL);
1738 if (!range) {
1739 ret = -ENOMEM;
1740 goto out;
1741 }
1742
1743 if (argp) {
1744 if (copy_from_user(range, argp,
1745 sizeof(*range))) {
1746 ret = -EFAULT;
1747 kfree(range);
683be16e 1748 goto out;
1e701a32
CM
1749 }
1750 /* compression requires us to start the IO */
1751 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
1752 range->flags |= BTRFS_DEFRAG_RANGE_START_IO;
1753 range->extent_thresh = (u32)-1;
1754 }
1755 } else {
1756 /* the rest are all set to zero by kzalloc */
1757 range->len = (u64)-1;
1758 }
8929ecfa 1759 ret = btrfs_defrag_file(file, range);
1e701a32 1760 kfree(range);
f46b5a66 1761 break;
8929ecfa
YZ
1762 default:
1763 ret = -EINVAL;
f46b5a66 1764 }
e441d54d 1765out:
ab67b7c1 1766 mnt_drop_write(file->f_path.mnt);
e441d54d 1767 return ret;
f46b5a66
CH
1768}
1769
b2950863 1770static long btrfs_ioctl_add_dev(struct btrfs_root *root, void __user *arg)
f46b5a66
CH
1771{
1772 struct btrfs_ioctl_vol_args *vol_args;
1773 int ret;
1774
e441d54d
CM
1775 if (!capable(CAP_SYS_ADMIN))
1776 return -EPERM;
1777
dae7b665
LZ
1778 vol_args = memdup_user(arg, sizeof(*vol_args));
1779 if (IS_ERR(vol_args))
1780 return PTR_ERR(vol_args);
f46b5a66 1781
5516e595 1782 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
f46b5a66
CH
1783 ret = btrfs_init_new_device(root, vol_args->name);
1784
f46b5a66
CH
1785 kfree(vol_args);
1786 return ret;
1787}
1788
b2950863 1789static long btrfs_ioctl_rm_dev(struct btrfs_root *root, void __user *arg)
f46b5a66
CH
1790{
1791 struct btrfs_ioctl_vol_args *vol_args;
1792 int ret;
1793
e441d54d
CM
1794 if (!capable(CAP_SYS_ADMIN))
1795 return -EPERM;
1796
c146afad
YZ
1797 if (root->fs_info->sb->s_flags & MS_RDONLY)
1798 return -EROFS;
1799
dae7b665
LZ
1800 vol_args = memdup_user(arg, sizeof(*vol_args));
1801 if (IS_ERR(vol_args))
1802 return PTR_ERR(vol_args);
f46b5a66 1803
5516e595 1804 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
f46b5a66
CH
1805 ret = btrfs_rm_device(root, vol_args->name);
1806
f46b5a66
CH
1807 kfree(vol_args);
1808 return ret;
1809}
1810
76dda93c
YZ
1811static noinline long btrfs_ioctl_clone(struct file *file, unsigned long srcfd,
1812 u64 off, u64 olen, u64 destoff)
f46b5a66
CH
1813{
1814 struct inode *inode = fdentry(file)->d_inode;
1815 struct btrfs_root *root = BTRFS_I(inode)->root;
1816 struct file *src_file;
1817 struct inode *src;
1818 struct btrfs_trans_handle *trans;
f46b5a66 1819 struct btrfs_path *path;
f46b5a66 1820 struct extent_buffer *leaf;
ae01a0ab
YZ
1821 char *buf;
1822 struct btrfs_key key;
f46b5a66
CH
1823 u32 nritems;
1824 int slot;
ae01a0ab 1825 int ret;
c5c9cd4d
SW
1826 u64 len = olen;
1827 u64 bs = root->fs_info->sb->s_blocksize;
1828 u64 hint_byte;
d20f7043 1829
c5c9cd4d
SW
1830 /*
1831 * TODO:
1832 * - split compressed inline extents. annoying: we need to
1833 * decompress into destination's address_space (the file offset
1834 * may change, so source mapping won't do), then recompress (or
1835 * otherwise reinsert) a subrange.
1836 * - allow ranges within the same file to be cloned (provided
1837 * they don't overlap)?
1838 */
1839
e441d54d 1840 /* the destination must be opened for writing */
2ebc3464 1841 if (!(file->f_mode & FMODE_WRITE) || (file->f_flags & O_APPEND))
e441d54d
CM
1842 return -EINVAL;
1843
b83cc969
LZ
1844 if (btrfs_root_readonly(root))
1845 return -EROFS;
1846
c146afad
YZ
1847 ret = mnt_want_write(file->f_path.mnt);
1848 if (ret)
1849 return ret;
1850
c5c9cd4d 1851 src_file = fget(srcfd);
ab67b7c1
YZ
1852 if (!src_file) {
1853 ret = -EBADF;
1854 goto out_drop_write;
1855 }
5dc64164 1856
f46b5a66
CH
1857 src = src_file->f_dentry->d_inode;
1858
c5c9cd4d
SW
1859 ret = -EINVAL;
1860 if (src == inode)
1861 goto out_fput;
1862
5dc64164
DR
1863 /* the src must be open for reading */
1864 if (!(src_file->f_mode & FMODE_READ))
1865 goto out_fput;
1866
ae01a0ab
YZ
1867 ret = -EISDIR;
1868 if (S_ISDIR(src->i_mode) || S_ISDIR(inode->i_mode))
1869 goto out_fput;
1870
f46b5a66 1871 ret = -EXDEV;
ae01a0ab
YZ
1872 if (src->i_sb != inode->i_sb || BTRFS_I(src)->root != root)
1873 goto out_fput;
1874
1875 ret = -ENOMEM;
1876 buf = vmalloc(btrfs_level_size(root, 0));
1877 if (!buf)
1878 goto out_fput;
1879
1880 path = btrfs_alloc_path();
1881 if (!path) {
1882 vfree(buf);
f46b5a66 1883 goto out_fput;
ae01a0ab
YZ
1884 }
1885 path->reada = 2;
f46b5a66
CH
1886
1887 if (inode < src) {
fccdae43
SW
1888 mutex_lock_nested(&inode->i_mutex, I_MUTEX_PARENT);
1889 mutex_lock_nested(&src->i_mutex, I_MUTEX_CHILD);
f46b5a66 1890 } else {
fccdae43
SW
1891 mutex_lock_nested(&src->i_mutex, I_MUTEX_PARENT);
1892 mutex_lock_nested(&inode->i_mutex, I_MUTEX_CHILD);
f46b5a66
CH
1893 }
1894
c5c9cd4d
SW
1895 /* determine range to clone */
1896 ret = -EINVAL;
2ebc3464 1897 if (off + len > src->i_size || off + len < off)
f46b5a66 1898 goto out_unlock;
c5c9cd4d
SW
1899 if (len == 0)
1900 olen = len = src->i_size - off;
1901 /* if we extend to eof, continue to block boundary */
1902 if (off + len == src->i_size)
2a6b8dae 1903 len = ALIGN(src->i_size, bs) - off;
c5c9cd4d
SW
1904
1905 /* verify the end result is block aligned */
2a6b8dae
LZ
1906 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs) ||
1907 !IS_ALIGNED(destoff, bs))
c5c9cd4d
SW
1908 goto out_unlock;
1909
f46b5a66
CH
1910 /* do any pending delalloc/csum calc on src, one way or
1911 another, and lock file content */
1912 while (1) {
31840ae1 1913 struct btrfs_ordered_extent *ordered;
c5c9cd4d 1914 lock_extent(&BTRFS_I(src)->io_tree, off, off+len, GFP_NOFS);
9a019196
SW
1915 ordered = btrfs_lookup_first_ordered_extent(src, off+len);
1916 if (!ordered &&
1917 !test_range_bit(&BTRFS_I(src)->io_tree, off, off+len,
1918 EXTENT_DELALLOC, 0, NULL))
f46b5a66 1919 break;
c5c9cd4d 1920 unlock_extent(&BTRFS_I(src)->io_tree, off, off+len, GFP_NOFS);
ae01a0ab
YZ
1921 if (ordered)
1922 btrfs_put_ordered_extent(ordered);
9a019196 1923 btrfs_wait_ordered_range(src, off, len);
f46b5a66
CH
1924 }
1925
c5c9cd4d 1926 /* clone data */
f46b5a66 1927 key.objectid = src->i_ino;
ae01a0ab
YZ
1928 key.type = BTRFS_EXTENT_DATA_KEY;
1929 key.offset = 0;
f46b5a66
CH
1930
1931 while (1) {
1932 /*
1933 * note the key will change type as we walk through the
1934 * tree.
1935 */
a22285a6 1936 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
f46b5a66
CH
1937 if (ret < 0)
1938 goto out;
1939
ae01a0ab
YZ
1940 nritems = btrfs_header_nritems(path->nodes[0]);
1941 if (path->slots[0] >= nritems) {
f46b5a66
CH
1942 ret = btrfs_next_leaf(root, path);
1943 if (ret < 0)
1944 goto out;
1945 if (ret > 0)
1946 break;
ae01a0ab 1947 nritems = btrfs_header_nritems(path->nodes[0]);
f46b5a66
CH
1948 }
1949 leaf = path->nodes[0];
1950 slot = path->slots[0];
f46b5a66 1951
ae01a0ab 1952 btrfs_item_key_to_cpu(leaf, &key, slot);
d20f7043 1953 if (btrfs_key_type(&key) > BTRFS_EXTENT_DATA_KEY ||
f46b5a66
CH
1954 key.objectid != src->i_ino)
1955 break;
1956
c5c9cd4d
SW
1957 if (btrfs_key_type(&key) == BTRFS_EXTENT_DATA_KEY) {
1958 struct btrfs_file_extent_item *extent;
1959 int type;
31840ae1
ZY
1960 u32 size;
1961 struct btrfs_key new_key;
c5c9cd4d
SW
1962 u64 disko = 0, diskl = 0;
1963 u64 datao = 0, datal = 0;
1964 u8 comp;
b5384d48 1965 u64 endoff;
31840ae1
ZY
1966
1967 size = btrfs_item_size_nr(leaf, slot);
1968 read_extent_buffer(leaf, buf,
1969 btrfs_item_ptr_offset(leaf, slot),
1970 size);
c5c9cd4d
SW
1971
1972 extent = btrfs_item_ptr(leaf, slot,
1973 struct btrfs_file_extent_item);
1974 comp = btrfs_file_extent_compression(leaf, extent);
1975 type = btrfs_file_extent_type(leaf, extent);
c8a894d7
CM
1976 if (type == BTRFS_FILE_EXTENT_REG ||
1977 type == BTRFS_FILE_EXTENT_PREALLOC) {
d397712b
CM
1978 disko = btrfs_file_extent_disk_bytenr(leaf,
1979 extent);
1980 diskl = btrfs_file_extent_disk_num_bytes(leaf,
1981 extent);
c5c9cd4d 1982 datao = btrfs_file_extent_offset(leaf, extent);
d397712b
CM
1983 datal = btrfs_file_extent_num_bytes(leaf,
1984 extent);
c5c9cd4d
SW
1985 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
1986 /* take upper bound, may be compressed */
1987 datal = btrfs_file_extent_ram_bytes(leaf,
1988 extent);
1989 }
31840ae1
ZY
1990 btrfs_release_path(root, path);
1991
050006a7 1992 if (key.offset + datal <= off ||
c5c9cd4d
SW
1993 key.offset >= off+len)
1994 goto next;
1995
31840ae1
ZY
1996 memcpy(&new_key, &key, sizeof(new_key));
1997 new_key.objectid = inode->i_ino;
4d728ec7
LZ
1998 if (off <= key.offset)
1999 new_key.offset = key.offset + destoff - off;
2000 else
2001 new_key.offset = destoff;
31840ae1 2002
a22285a6
YZ
2003 trans = btrfs_start_transaction(root, 1);
2004 if (IS_ERR(trans)) {
2005 ret = PTR_ERR(trans);
2006 goto out;
2007 }
2008
c8a894d7
CM
2009 if (type == BTRFS_FILE_EXTENT_REG ||
2010 type == BTRFS_FILE_EXTENT_PREALLOC) {
a22285a6
YZ
2011 if (off > key.offset) {
2012 datao += off - key.offset;
2013 datal -= off - key.offset;
2014 }
2015
2016 if (key.offset + datal > off + len)
2017 datal = off + len - key.offset;
2018
2019 ret = btrfs_drop_extents(trans, inode,
2020 new_key.offset,
2021 new_key.offset + datal,
2022 &hint_byte, 1);
2023 BUG_ON(ret);
2024
c5c9cd4d
SW
2025 ret = btrfs_insert_empty_item(trans, root, path,
2026 &new_key, size);
a22285a6 2027 BUG_ON(ret);
c5c9cd4d
SW
2028
2029 leaf = path->nodes[0];
2030 slot = path->slots[0];
2031 write_extent_buffer(leaf, buf,
31840ae1
ZY
2032 btrfs_item_ptr_offset(leaf, slot),
2033 size);
ae01a0ab 2034
c5c9cd4d 2035 extent = btrfs_item_ptr(leaf, slot,
f46b5a66 2036 struct btrfs_file_extent_item);
c5c9cd4d 2037
c5c9cd4d
SW
2038 /* disko == 0 means it's a hole */
2039 if (!disko)
2040 datao = 0;
c5c9cd4d
SW
2041
2042 btrfs_set_file_extent_offset(leaf, extent,
2043 datao);
2044 btrfs_set_file_extent_num_bytes(leaf, extent,
2045 datal);
2046 if (disko) {
2047 inode_add_bytes(inode, datal);
ae01a0ab 2048 ret = btrfs_inc_extent_ref(trans, root,
5d4f98a2
YZ
2049 disko, diskl, 0,
2050 root->root_key.objectid,
2051 inode->i_ino,
2052 new_key.offset - datao);
31840ae1 2053 BUG_ON(ret);
f46b5a66 2054 }
c5c9cd4d
SW
2055 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
2056 u64 skip = 0;
2057 u64 trim = 0;
2058 if (off > key.offset) {
2059 skip = off - key.offset;
2060 new_key.offset += skip;
2061 }
d397712b 2062
c5c9cd4d
SW
2063 if (key.offset + datal > off+len)
2064 trim = key.offset + datal - (off+len);
d397712b 2065
c5c9cd4d 2066 if (comp && (skip || trim)) {
c5c9cd4d 2067 ret = -EINVAL;
a22285a6 2068 btrfs_end_transaction(trans, root);
c5c9cd4d
SW
2069 goto out;
2070 }
2071 size -= skip + trim;
2072 datal -= skip + trim;
a22285a6
YZ
2073
2074 ret = btrfs_drop_extents(trans, inode,
2075 new_key.offset,
2076 new_key.offset + datal,
2077 &hint_byte, 1);
2078 BUG_ON(ret);
2079
c5c9cd4d
SW
2080 ret = btrfs_insert_empty_item(trans, root, path,
2081 &new_key, size);
a22285a6 2082 BUG_ON(ret);
c5c9cd4d
SW
2083
2084 if (skip) {
d397712b
CM
2085 u32 start =
2086 btrfs_file_extent_calc_inline_size(0);
c5c9cd4d
SW
2087 memmove(buf+start, buf+start+skip,
2088 datal);
2089 }
2090
2091 leaf = path->nodes[0];
2092 slot = path->slots[0];
2093 write_extent_buffer(leaf, buf,
2094 btrfs_item_ptr_offset(leaf, slot),
2095 size);
2096 inode_add_bytes(inode, datal);
f46b5a66 2097 }
c5c9cd4d
SW
2098
2099 btrfs_mark_buffer_dirty(leaf);
a22285a6 2100 btrfs_release_path(root, path);
c5c9cd4d 2101
a22285a6 2102 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
b5384d48
SW
2103
2104 /*
2105 * we round up to the block size at eof when
2106 * determining which extents to clone above,
2107 * but shouldn't round up the file size
2108 */
2109 endoff = new_key.offset + datal;
5f3888ff
LZ
2110 if (endoff > destoff+olen)
2111 endoff = destoff+olen;
b5384d48
SW
2112 if (endoff > inode->i_size)
2113 btrfs_i_size_write(inode, endoff);
2114
a22285a6
YZ
2115 BTRFS_I(inode)->flags = BTRFS_I(src)->flags;
2116 ret = btrfs_update_inode(trans, root, inode);
2117 BUG_ON(ret);
2118 btrfs_end_transaction(trans, root);
2119 }
d397712b 2120next:
31840ae1 2121 btrfs_release_path(root, path);
f46b5a66 2122 key.offset++;
f46b5a66 2123 }
f46b5a66
CH
2124 ret = 0;
2125out:
ae01a0ab 2126 btrfs_release_path(root, path);
c5c9cd4d 2127 unlock_extent(&BTRFS_I(src)->io_tree, off, off+len, GFP_NOFS);
f46b5a66
CH
2128out_unlock:
2129 mutex_unlock(&src->i_mutex);
2130 mutex_unlock(&inode->i_mutex);
ae01a0ab
YZ
2131 vfree(buf);
2132 btrfs_free_path(path);
f46b5a66
CH
2133out_fput:
2134 fput(src_file);
ab67b7c1
YZ
2135out_drop_write:
2136 mnt_drop_write(file->f_path.mnt);
f46b5a66
CH
2137 return ret;
2138}
2139
7a865e8a 2140static long btrfs_ioctl_clone_range(struct file *file, void __user *argp)
c5c9cd4d
SW
2141{
2142 struct btrfs_ioctl_clone_range_args args;
2143
7a865e8a 2144 if (copy_from_user(&args, argp, sizeof(args)))
c5c9cd4d
SW
2145 return -EFAULT;
2146 return btrfs_ioctl_clone(file, args.src_fd, args.src_offset,
2147 args.src_length, args.dest_offset);
2148}
2149
f46b5a66
CH
2150/*
2151 * there are many ways the trans_start and trans_end ioctls can lead
2152 * to deadlocks. They should only be used by applications that
2153 * basically own the machine, and have a very in depth understanding
2154 * of all the possible deadlocks and enospc problems.
2155 */
b2950863 2156static long btrfs_ioctl_trans_start(struct file *file)
f46b5a66
CH
2157{
2158 struct inode *inode = fdentry(file)->d_inode;
2159 struct btrfs_root *root = BTRFS_I(inode)->root;
2160 struct btrfs_trans_handle *trans;
1ab86aed 2161 int ret;
f46b5a66 2162
1ab86aed 2163 ret = -EPERM;
df5b5520 2164 if (!capable(CAP_SYS_ADMIN))
1ab86aed 2165 goto out;
df5b5520 2166
1ab86aed
SW
2167 ret = -EINPROGRESS;
2168 if (file->private_data)
f46b5a66 2169 goto out;
9ca9ee09 2170
b83cc969
LZ
2171 ret = -EROFS;
2172 if (btrfs_root_readonly(root))
2173 goto out;
2174
c146afad
YZ
2175 ret = mnt_want_write(file->f_path.mnt);
2176 if (ret)
2177 goto out;
2178
9ca9ee09
SW
2179 mutex_lock(&root->fs_info->trans_mutex);
2180 root->fs_info->open_ioctl_trans++;
2181 mutex_unlock(&root->fs_info->trans_mutex);
2182
1ab86aed 2183 ret = -ENOMEM;
9ca9ee09 2184 trans = btrfs_start_ioctl_transaction(root, 0);
abd30bb0 2185 if (IS_ERR(trans))
1ab86aed
SW
2186 goto out_drop;
2187
2188 file->private_data = trans;
2189 return 0;
2190
2191out_drop:
2192 mutex_lock(&root->fs_info->trans_mutex);
2193 root->fs_info->open_ioctl_trans--;
2194 mutex_unlock(&root->fs_info->trans_mutex);
2195 mnt_drop_write(file->f_path.mnt);
f46b5a66 2196out:
f46b5a66
CH
2197 return ret;
2198}
2199
6ef5ed0d
JB
2200static long btrfs_ioctl_default_subvol(struct file *file, void __user *argp)
2201{
2202 struct inode *inode = fdentry(file)->d_inode;
2203 struct btrfs_root *root = BTRFS_I(inode)->root;
2204 struct btrfs_root *new_root;
2205 struct btrfs_dir_item *di;
2206 struct btrfs_trans_handle *trans;
2207 struct btrfs_path *path;
2208 struct btrfs_key location;
2209 struct btrfs_disk_key disk_key;
2210 struct btrfs_super_block *disk_super;
2211 u64 features;
2212 u64 objectid = 0;
2213 u64 dir_id;
2214
2215 if (!capable(CAP_SYS_ADMIN))
2216 return -EPERM;
2217
2218 if (copy_from_user(&objectid, argp, sizeof(objectid)))
2219 return -EFAULT;
2220
2221 if (!objectid)
2222 objectid = root->root_key.objectid;
2223
2224 location.objectid = objectid;
2225 location.type = BTRFS_ROOT_ITEM_KEY;
2226 location.offset = (u64)-1;
2227
2228 new_root = btrfs_read_fs_root_no_name(root->fs_info, &location);
2229 if (IS_ERR(new_root))
2230 return PTR_ERR(new_root);
2231
2232 if (btrfs_root_refs(&new_root->root_item) == 0)
2233 return -ENOENT;
2234
2235 path = btrfs_alloc_path();
2236 if (!path)
2237 return -ENOMEM;
2238 path->leave_spinning = 1;
2239
2240 trans = btrfs_start_transaction(root, 1);
98d5dc13 2241 if (IS_ERR(trans)) {
6ef5ed0d 2242 btrfs_free_path(path);
98d5dc13 2243 return PTR_ERR(trans);
6ef5ed0d
JB
2244 }
2245
2246 dir_id = btrfs_super_root_dir(&root->fs_info->super_copy);
2247 di = btrfs_lookup_dir_item(trans, root->fs_info->tree_root, path,
2248 dir_id, "default", 7, 1);
cf1e99a4 2249 if (IS_ERR_OR_NULL(di)) {
6ef5ed0d
JB
2250 btrfs_free_path(path);
2251 btrfs_end_transaction(trans, root);
2252 printk(KERN_ERR "Umm, you don't have the default dir item, "
2253 "this isn't going to work\n");
2254 return -ENOENT;
2255 }
2256
2257 btrfs_cpu_key_to_disk(&disk_key, &new_root->root_key);
2258 btrfs_set_dir_item_key(path->nodes[0], di, &disk_key);
2259 btrfs_mark_buffer_dirty(path->nodes[0]);
2260 btrfs_free_path(path);
2261
2262 disk_super = &root->fs_info->super_copy;
2263 features = btrfs_super_incompat_flags(disk_super);
2264 if (!(features & BTRFS_FEATURE_INCOMPAT_DEFAULT_SUBVOL)) {
2265 features |= BTRFS_FEATURE_INCOMPAT_DEFAULT_SUBVOL;
2266 btrfs_set_super_incompat_flags(disk_super, features);
2267 }
2268 btrfs_end_transaction(trans, root);
2269
2270 return 0;
2271}
2272
bf5fc093
JB
2273static void get_block_group_info(struct list_head *groups_list,
2274 struct btrfs_ioctl_space_info *space)
2275{
2276 struct btrfs_block_group_cache *block_group;
2277
2278 space->total_bytes = 0;
2279 space->used_bytes = 0;
2280 space->flags = 0;
2281 list_for_each_entry(block_group, groups_list, list) {
2282 space->flags = block_group->flags;
2283 space->total_bytes += block_group->key.offset;
2284 space->used_bytes +=
2285 btrfs_block_group_used(&block_group->item);
2286 }
2287}
2288
1406e432
JB
2289long btrfs_ioctl_space_info(struct btrfs_root *root, void __user *arg)
2290{
2291 struct btrfs_ioctl_space_args space_args;
2292 struct btrfs_ioctl_space_info space;
2293 struct btrfs_ioctl_space_info *dest;
7fde62bf 2294 struct btrfs_ioctl_space_info *dest_orig;
13f2696f 2295 struct btrfs_ioctl_space_info __user *user_dest;
1406e432 2296 struct btrfs_space_info *info;
bf5fc093
JB
2297 u64 types[] = {BTRFS_BLOCK_GROUP_DATA,
2298 BTRFS_BLOCK_GROUP_SYSTEM,
2299 BTRFS_BLOCK_GROUP_METADATA,
2300 BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA};
2301 int num_types = 4;
7fde62bf 2302 int alloc_size;
1406e432 2303 int ret = 0;
51788b1b 2304 u64 slot_count = 0;
bf5fc093 2305 int i, c;
1406e432
JB
2306
2307 if (copy_from_user(&space_args,
2308 (struct btrfs_ioctl_space_args __user *)arg,
2309 sizeof(space_args)))
2310 return -EFAULT;
2311
bf5fc093
JB
2312 for (i = 0; i < num_types; i++) {
2313 struct btrfs_space_info *tmp;
2314
2315 info = NULL;
2316 rcu_read_lock();
2317 list_for_each_entry_rcu(tmp, &root->fs_info->space_info,
2318 list) {
2319 if (tmp->flags == types[i]) {
2320 info = tmp;
2321 break;
2322 }
2323 }
2324 rcu_read_unlock();
2325
2326 if (!info)
2327 continue;
2328
2329 down_read(&info->groups_sem);
2330 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
2331 if (!list_empty(&info->block_groups[c]))
2332 slot_count++;
2333 }
2334 up_read(&info->groups_sem);
2335 }
7fde62bf
CM
2336
2337 /* space_slots == 0 means they are asking for a count */
2338 if (space_args.space_slots == 0) {
2339 space_args.total_spaces = slot_count;
2340 goto out;
2341 }
bf5fc093 2342
51788b1b 2343 slot_count = min_t(u64, space_args.space_slots, slot_count);
bf5fc093 2344
7fde62bf 2345 alloc_size = sizeof(*dest) * slot_count;
bf5fc093 2346
7fde62bf
CM
2347 /* we generally have at most 6 or so space infos, one for each raid
2348 * level. So, a whole page should be more than enough for everyone
2349 */
2350 if (alloc_size > PAGE_CACHE_SIZE)
2351 return -ENOMEM;
2352
1406e432 2353 space_args.total_spaces = 0;
7fde62bf
CM
2354 dest = kmalloc(alloc_size, GFP_NOFS);
2355 if (!dest)
2356 return -ENOMEM;
2357 dest_orig = dest;
1406e432 2358
7fde62bf 2359 /* now we have a buffer to copy into */
bf5fc093
JB
2360 for (i = 0; i < num_types; i++) {
2361 struct btrfs_space_info *tmp;
2362
51788b1b
DR
2363 if (!slot_count)
2364 break;
2365
bf5fc093
JB
2366 info = NULL;
2367 rcu_read_lock();
2368 list_for_each_entry_rcu(tmp, &root->fs_info->space_info,
2369 list) {
2370 if (tmp->flags == types[i]) {
2371 info = tmp;
2372 break;
2373 }
2374 }
2375 rcu_read_unlock();
7fde62bf 2376
bf5fc093
JB
2377 if (!info)
2378 continue;
2379 down_read(&info->groups_sem);
2380 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
2381 if (!list_empty(&info->block_groups[c])) {
2382 get_block_group_info(&info->block_groups[c],
2383 &space);
2384 memcpy(dest, &space, sizeof(space));
2385 dest++;
2386 space_args.total_spaces++;
51788b1b 2387 slot_count--;
bf5fc093 2388 }
51788b1b
DR
2389 if (!slot_count)
2390 break;
bf5fc093
JB
2391 }
2392 up_read(&info->groups_sem);
1406e432 2393 }
1406e432 2394
7fde62bf
CM
2395 user_dest = (struct btrfs_ioctl_space_info *)
2396 (arg + sizeof(struct btrfs_ioctl_space_args));
2397
2398 if (copy_to_user(user_dest, dest_orig, alloc_size))
2399 ret = -EFAULT;
2400
2401 kfree(dest_orig);
2402out:
2403 if (ret == 0 && copy_to_user(arg, &space_args, sizeof(space_args)))
1406e432
JB
2404 ret = -EFAULT;
2405
2406 return ret;
2407}
2408
f46b5a66
CH
2409/*
2410 * there are many ways the trans_start and trans_end ioctls can lead
2411 * to deadlocks. They should only be used by applications that
2412 * basically own the machine, and have a very in depth understanding
2413 * of all the possible deadlocks and enospc problems.
2414 */
2415long btrfs_ioctl_trans_end(struct file *file)
2416{
2417 struct inode *inode = fdentry(file)->d_inode;
2418 struct btrfs_root *root = BTRFS_I(inode)->root;
2419 struct btrfs_trans_handle *trans;
f46b5a66 2420
f46b5a66 2421 trans = file->private_data;
1ab86aed
SW
2422 if (!trans)
2423 return -EINVAL;
b214107e 2424 file->private_data = NULL;
9ca9ee09 2425
1ab86aed
SW
2426 btrfs_end_transaction(trans, root);
2427
9ca9ee09
SW
2428 mutex_lock(&root->fs_info->trans_mutex);
2429 root->fs_info->open_ioctl_trans--;
2430 mutex_unlock(&root->fs_info->trans_mutex);
2431
cfc8ea87 2432 mnt_drop_write(file->f_path.mnt);
1ab86aed 2433 return 0;
f46b5a66
CH
2434}
2435
46204592
SW
2436static noinline long btrfs_ioctl_start_sync(struct file *file, void __user *argp)
2437{
2438 struct btrfs_root *root = BTRFS_I(file->f_dentry->d_inode)->root;
2439 struct btrfs_trans_handle *trans;
2440 u64 transid;
db5b493a 2441 int ret;
46204592
SW
2442
2443 trans = btrfs_start_transaction(root, 0);
98d5dc13
TI
2444 if (IS_ERR(trans))
2445 return PTR_ERR(trans);
46204592 2446 transid = trans->transid;
db5b493a 2447 ret = btrfs_commit_transaction_async(trans, root, 0);
8b2b2d3c
TI
2448 if (ret) {
2449 btrfs_end_transaction(trans, root);
db5b493a 2450 return ret;
8b2b2d3c 2451 }
46204592
SW
2452
2453 if (argp)
2454 if (copy_to_user(argp, &transid, sizeof(transid)))
2455 return -EFAULT;
2456 return 0;
2457}
2458
2459static noinline long btrfs_ioctl_wait_sync(struct file *file, void __user *argp)
2460{
2461 struct btrfs_root *root = BTRFS_I(file->f_dentry->d_inode)->root;
2462 u64 transid;
2463
2464 if (argp) {
2465 if (copy_from_user(&transid, argp, sizeof(transid)))
2466 return -EFAULT;
2467 } else {
2468 transid = 0; /* current trans */
2469 }
2470 return btrfs_wait_for_commit(root, transid);
2471}
2472
f46b5a66
CH
2473long btrfs_ioctl(struct file *file, unsigned int
2474 cmd, unsigned long arg)
2475{
2476 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
4bcabaa3 2477 void __user *argp = (void __user *)arg;
f46b5a66
CH
2478
2479 switch (cmd) {
6cbff00f
CH
2480 case FS_IOC_GETFLAGS:
2481 return btrfs_ioctl_getflags(file, argp);
2482 case FS_IOC_SETFLAGS:
2483 return btrfs_ioctl_setflags(file, argp);
2484 case FS_IOC_GETVERSION:
2485 return btrfs_ioctl_getversion(file, argp);
f7039b1d
LD
2486 case FITRIM:
2487 return btrfs_ioctl_fitrim(file, argp);
f46b5a66 2488 case BTRFS_IOC_SNAP_CREATE:
fa0d2b9b 2489 return btrfs_ioctl_snap_create(file, argp, 0);
fdfb1e4f 2490 case BTRFS_IOC_SNAP_CREATE_V2:
fa0d2b9b 2491 return btrfs_ioctl_snap_create_v2(file, argp, 0);
3de4586c 2492 case BTRFS_IOC_SUBVOL_CREATE:
fa0d2b9b 2493 return btrfs_ioctl_snap_create(file, argp, 1);
76dda93c
YZ
2494 case BTRFS_IOC_SNAP_DESTROY:
2495 return btrfs_ioctl_snap_destroy(file, argp);
0caa102d
LZ
2496 case BTRFS_IOC_SUBVOL_GETFLAGS:
2497 return btrfs_ioctl_subvol_getflags(file, argp);
2498 case BTRFS_IOC_SUBVOL_SETFLAGS:
2499 return btrfs_ioctl_subvol_setflags(file, argp);
6ef5ed0d
JB
2500 case BTRFS_IOC_DEFAULT_SUBVOL:
2501 return btrfs_ioctl_default_subvol(file, argp);
f46b5a66 2502 case BTRFS_IOC_DEFRAG:
1e701a32
CM
2503 return btrfs_ioctl_defrag(file, NULL);
2504 case BTRFS_IOC_DEFRAG_RANGE:
2505 return btrfs_ioctl_defrag(file, argp);
f46b5a66 2506 case BTRFS_IOC_RESIZE:
4bcabaa3 2507 return btrfs_ioctl_resize(root, argp);
f46b5a66 2508 case BTRFS_IOC_ADD_DEV:
4bcabaa3 2509 return btrfs_ioctl_add_dev(root, argp);
f46b5a66 2510 case BTRFS_IOC_RM_DEV:
4bcabaa3 2511 return btrfs_ioctl_rm_dev(root, argp);
f46b5a66
CH
2512 case BTRFS_IOC_BALANCE:
2513 return btrfs_balance(root->fs_info->dev_root);
2514 case BTRFS_IOC_CLONE:
c5c9cd4d
SW
2515 return btrfs_ioctl_clone(file, arg, 0, 0, 0);
2516 case BTRFS_IOC_CLONE_RANGE:
7a865e8a 2517 return btrfs_ioctl_clone_range(file, argp);
f46b5a66
CH
2518 case BTRFS_IOC_TRANS_START:
2519 return btrfs_ioctl_trans_start(file);
2520 case BTRFS_IOC_TRANS_END:
2521 return btrfs_ioctl_trans_end(file);
ac8e9819
CM
2522 case BTRFS_IOC_TREE_SEARCH:
2523 return btrfs_ioctl_tree_search(file, argp);
2524 case BTRFS_IOC_INO_LOOKUP:
2525 return btrfs_ioctl_ino_lookup(file, argp);
1406e432
JB
2526 case BTRFS_IOC_SPACE_INFO:
2527 return btrfs_ioctl_space_info(root, argp);
f46b5a66
CH
2528 case BTRFS_IOC_SYNC:
2529 btrfs_sync_fs(file->f_dentry->d_sb, 1);
2530 return 0;
46204592
SW
2531 case BTRFS_IOC_START_SYNC:
2532 return btrfs_ioctl_start_sync(file, argp);
2533 case BTRFS_IOC_WAIT_SYNC:
2534 return btrfs_ioctl_wait_sync(file, argp);
f46b5a66
CH
2535 }
2536
2537 return -ENOTTY;
2538}