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