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