Merge branch 'cleanups/for-4.4' of git://git.kernel.org/pub/scm/linux/kernel/git...
[cascardo/linux.git] / fs / btrfs / ioctl.c
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>
24 #include <linux/fsnotify.h>
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>
30 #include <linux/backing-dev.h>
31 #include <linux/mount.h>
32 #include <linux/mpage.h>
33 #include <linux/namei.h>
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>
39 #include <linux/security.h>
40 #include <linux/xattr.h>
41 #include <linux/vmalloc.h>
42 #include <linux/slab.h>
43 #include <linux/blkdev.h>
44 #include <linux/uuid.h>
45 #include <linux/btrfs.h>
46 #include <linux/uaccess.h>
47 #include "ctree.h"
48 #include "disk-io.h"
49 #include "transaction.h"
50 #include "btrfs_inode.h"
51 #include "print-tree.h"
52 #include "volumes.h"
53 #include "locking.h"
54 #include "inode-map.h"
55 #include "backref.h"
56 #include "rcu-string.h"
57 #include "send.h"
58 #include "dev-replace.h"
59 #include "props.h"
60 #include "sysfs.h"
61 #include "qgroup.h"
62
63 #ifdef CONFIG_64BIT
64 /* If we have a 32-bit userspace and 64-bit kernel, then the UAPI
65  * structures are incorrect, as the timespec structure from userspace
66  * is 4 bytes too small. We define these alternatives here to teach
67  * the kernel about the 32-bit struct packing.
68  */
69 struct btrfs_ioctl_timespec_32 {
70         __u64 sec;
71         __u32 nsec;
72 } __attribute__ ((__packed__));
73
74 struct btrfs_ioctl_received_subvol_args_32 {
75         char    uuid[BTRFS_UUID_SIZE];  /* in */
76         __u64   stransid;               /* in */
77         __u64   rtransid;               /* out */
78         struct btrfs_ioctl_timespec_32 stime; /* in */
79         struct btrfs_ioctl_timespec_32 rtime; /* out */
80         __u64   flags;                  /* in */
81         __u64   reserved[16];           /* in */
82 } __attribute__ ((__packed__));
83
84 #define BTRFS_IOC_SET_RECEIVED_SUBVOL_32 _IOWR(BTRFS_IOCTL_MAGIC, 37, \
85                                 struct btrfs_ioctl_received_subvol_args_32)
86 #endif
87
88
89 static int btrfs_clone(struct inode *src, struct inode *inode,
90                        u64 off, u64 olen, u64 olen_aligned, u64 destoff,
91                        int no_time_update);
92
93 /* Mask out flags that are inappropriate for the given type of inode. */
94 static inline __u32 btrfs_mask_flags(umode_t mode, __u32 flags)
95 {
96         if (S_ISDIR(mode))
97                 return flags;
98         else if (S_ISREG(mode))
99                 return flags & ~FS_DIRSYNC_FL;
100         else
101                 return flags & (FS_NODUMP_FL | FS_NOATIME_FL);
102 }
103
104 /*
105  * Export inode flags to the format expected by the FS_IOC_GETFLAGS ioctl.
106  */
107 static unsigned int btrfs_flags_to_ioctl(unsigned int flags)
108 {
109         unsigned int iflags = 0;
110
111         if (flags & BTRFS_INODE_SYNC)
112                 iflags |= FS_SYNC_FL;
113         if (flags & BTRFS_INODE_IMMUTABLE)
114                 iflags |= FS_IMMUTABLE_FL;
115         if (flags & BTRFS_INODE_APPEND)
116                 iflags |= FS_APPEND_FL;
117         if (flags & BTRFS_INODE_NODUMP)
118                 iflags |= FS_NODUMP_FL;
119         if (flags & BTRFS_INODE_NOATIME)
120                 iflags |= FS_NOATIME_FL;
121         if (flags & BTRFS_INODE_DIRSYNC)
122                 iflags |= FS_DIRSYNC_FL;
123         if (flags & BTRFS_INODE_NODATACOW)
124                 iflags |= FS_NOCOW_FL;
125
126         if ((flags & BTRFS_INODE_COMPRESS) && !(flags & BTRFS_INODE_NOCOMPRESS))
127                 iflags |= FS_COMPR_FL;
128         else if (flags & BTRFS_INODE_NOCOMPRESS)
129                 iflags |= FS_NOCOMP_FL;
130
131         return iflags;
132 }
133
134 /*
135  * Update inode->i_flags based on the btrfs internal flags.
136  */
137 void btrfs_update_iflags(struct inode *inode)
138 {
139         struct btrfs_inode *ip = BTRFS_I(inode);
140         unsigned int new_fl = 0;
141
142         if (ip->flags & BTRFS_INODE_SYNC)
143                 new_fl |= S_SYNC;
144         if (ip->flags & BTRFS_INODE_IMMUTABLE)
145                 new_fl |= S_IMMUTABLE;
146         if (ip->flags & BTRFS_INODE_APPEND)
147                 new_fl |= S_APPEND;
148         if (ip->flags & BTRFS_INODE_NOATIME)
149                 new_fl |= S_NOATIME;
150         if (ip->flags & BTRFS_INODE_DIRSYNC)
151                 new_fl |= S_DIRSYNC;
152
153         set_mask_bits(&inode->i_flags,
154                       S_SYNC | S_APPEND | S_IMMUTABLE | S_NOATIME | S_DIRSYNC,
155                       new_fl);
156 }
157
158 /*
159  * Inherit flags from the parent inode.
160  *
161  * Currently only the compression flags and the cow flags are inherited.
162  */
163 void btrfs_inherit_iflags(struct inode *inode, struct inode *dir)
164 {
165         unsigned int flags;
166
167         if (!dir)
168                 return;
169
170         flags = BTRFS_I(dir)->flags;
171
172         if (flags & BTRFS_INODE_NOCOMPRESS) {
173                 BTRFS_I(inode)->flags &= ~BTRFS_INODE_COMPRESS;
174                 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
175         } else if (flags & BTRFS_INODE_COMPRESS) {
176                 BTRFS_I(inode)->flags &= ~BTRFS_INODE_NOCOMPRESS;
177                 BTRFS_I(inode)->flags |= BTRFS_INODE_COMPRESS;
178         }
179
180         if (flags & BTRFS_INODE_NODATACOW) {
181                 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW;
182                 if (S_ISREG(inode->i_mode))
183                         BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
184         }
185
186         btrfs_update_iflags(inode);
187 }
188
189 static int btrfs_ioctl_getflags(struct file *file, void __user *arg)
190 {
191         struct btrfs_inode *ip = BTRFS_I(file_inode(file));
192         unsigned int flags = btrfs_flags_to_ioctl(ip->flags);
193
194         if (copy_to_user(arg, &flags, sizeof(flags)))
195                 return -EFAULT;
196         return 0;
197 }
198
199 static int check_flags(unsigned int flags)
200 {
201         if (flags & ~(FS_IMMUTABLE_FL | FS_APPEND_FL | \
202                       FS_NOATIME_FL | FS_NODUMP_FL | \
203                       FS_SYNC_FL | FS_DIRSYNC_FL | \
204                       FS_NOCOMP_FL | FS_COMPR_FL |
205                       FS_NOCOW_FL))
206                 return -EOPNOTSUPP;
207
208         if ((flags & FS_NOCOMP_FL) && (flags & FS_COMPR_FL))
209                 return -EINVAL;
210
211         return 0;
212 }
213
214 static int btrfs_ioctl_setflags(struct file *file, void __user *arg)
215 {
216         struct inode *inode = file_inode(file);
217         struct btrfs_inode *ip = BTRFS_I(inode);
218         struct btrfs_root *root = ip->root;
219         struct btrfs_trans_handle *trans;
220         unsigned int flags, oldflags;
221         int ret;
222         u64 ip_oldflags;
223         unsigned int i_oldflags;
224         umode_t mode;
225
226         if (!inode_owner_or_capable(inode))
227                 return -EPERM;
228
229         if (btrfs_root_readonly(root))
230                 return -EROFS;
231
232         if (copy_from_user(&flags, arg, sizeof(flags)))
233                 return -EFAULT;
234
235         ret = check_flags(flags);
236         if (ret)
237                 return ret;
238
239         ret = mnt_want_write_file(file);
240         if (ret)
241                 return ret;
242
243         mutex_lock(&inode->i_mutex);
244
245         ip_oldflags = ip->flags;
246         i_oldflags = inode->i_flags;
247         mode = inode->i_mode;
248
249         flags = btrfs_mask_flags(inode->i_mode, flags);
250         oldflags = btrfs_flags_to_ioctl(ip->flags);
251         if ((flags ^ oldflags) & (FS_APPEND_FL | FS_IMMUTABLE_FL)) {
252                 if (!capable(CAP_LINUX_IMMUTABLE)) {
253                         ret = -EPERM;
254                         goto out_unlock;
255                 }
256         }
257
258         if (flags & FS_SYNC_FL)
259                 ip->flags |= BTRFS_INODE_SYNC;
260         else
261                 ip->flags &= ~BTRFS_INODE_SYNC;
262         if (flags & FS_IMMUTABLE_FL)
263                 ip->flags |= BTRFS_INODE_IMMUTABLE;
264         else
265                 ip->flags &= ~BTRFS_INODE_IMMUTABLE;
266         if (flags & FS_APPEND_FL)
267                 ip->flags |= BTRFS_INODE_APPEND;
268         else
269                 ip->flags &= ~BTRFS_INODE_APPEND;
270         if (flags & FS_NODUMP_FL)
271                 ip->flags |= BTRFS_INODE_NODUMP;
272         else
273                 ip->flags &= ~BTRFS_INODE_NODUMP;
274         if (flags & FS_NOATIME_FL)
275                 ip->flags |= BTRFS_INODE_NOATIME;
276         else
277                 ip->flags &= ~BTRFS_INODE_NOATIME;
278         if (flags & FS_DIRSYNC_FL)
279                 ip->flags |= BTRFS_INODE_DIRSYNC;
280         else
281                 ip->flags &= ~BTRFS_INODE_DIRSYNC;
282         if (flags & FS_NOCOW_FL) {
283                 if (S_ISREG(mode)) {
284                         /*
285                          * It's safe to turn csums off here, no extents exist.
286                          * Otherwise we want the flag to reflect the real COW
287                          * status of the file and will not set it.
288                          */
289                         if (inode->i_size == 0)
290                                 ip->flags |= BTRFS_INODE_NODATACOW
291                                            | BTRFS_INODE_NODATASUM;
292                 } else {
293                         ip->flags |= BTRFS_INODE_NODATACOW;
294                 }
295         } else {
296                 /*
297                  * Revert back under same assuptions as above
298                  */
299                 if (S_ISREG(mode)) {
300                         if (inode->i_size == 0)
301                                 ip->flags &= ~(BTRFS_INODE_NODATACOW
302                                              | BTRFS_INODE_NODATASUM);
303                 } else {
304                         ip->flags &= ~BTRFS_INODE_NODATACOW;
305                 }
306         }
307
308         /*
309          * The COMPRESS flag can only be changed by users, while the NOCOMPRESS
310          * flag may be changed automatically if compression code won't make
311          * things smaller.
312          */
313         if (flags & FS_NOCOMP_FL) {
314                 ip->flags &= ~BTRFS_INODE_COMPRESS;
315                 ip->flags |= BTRFS_INODE_NOCOMPRESS;
316
317                 ret = btrfs_set_prop(inode, "btrfs.compression", NULL, 0, 0);
318                 if (ret && ret != -ENODATA)
319                         goto out_drop;
320         } else if (flags & FS_COMPR_FL) {
321                 const char *comp;
322
323                 ip->flags |= BTRFS_INODE_COMPRESS;
324                 ip->flags &= ~BTRFS_INODE_NOCOMPRESS;
325
326                 if (root->fs_info->compress_type == BTRFS_COMPRESS_LZO)
327                         comp = "lzo";
328                 else
329                         comp = "zlib";
330                 ret = btrfs_set_prop(inode, "btrfs.compression",
331                                      comp, strlen(comp), 0);
332                 if (ret)
333                         goto out_drop;
334
335         } else {
336                 ret = btrfs_set_prop(inode, "btrfs.compression", NULL, 0, 0);
337                 if (ret && ret != -ENODATA)
338                         goto out_drop;
339                 ip->flags &= ~(BTRFS_INODE_COMPRESS | BTRFS_INODE_NOCOMPRESS);
340         }
341
342         trans = btrfs_start_transaction(root, 1);
343         if (IS_ERR(trans)) {
344                 ret = PTR_ERR(trans);
345                 goto out_drop;
346         }
347
348         btrfs_update_iflags(inode);
349         inode_inc_iversion(inode);
350         inode->i_ctime = CURRENT_TIME;
351         ret = btrfs_update_inode(trans, root, inode);
352
353         btrfs_end_transaction(trans, root);
354  out_drop:
355         if (ret) {
356                 ip->flags = ip_oldflags;
357                 inode->i_flags = i_oldflags;
358         }
359
360  out_unlock:
361         mutex_unlock(&inode->i_mutex);
362         mnt_drop_write_file(file);
363         return ret;
364 }
365
366 static int btrfs_ioctl_getversion(struct file *file, int __user *arg)
367 {
368         struct inode *inode = file_inode(file);
369
370         return put_user(inode->i_generation, arg);
371 }
372
373 static noinline int btrfs_ioctl_fitrim(struct file *file, void __user *arg)
374 {
375         struct btrfs_fs_info *fs_info = btrfs_sb(file_inode(file)->i_sb);
376         struct btrfs_device *device;
377         struct request_queue *q;
378         struct fstrim_range range;
379         u64 minlen = ULLONG_MAX;
380         u64 num_devices = 0;
381         u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy);
382         int ret;
383
384         if (!capable(CAP_SYS_ADMIN))
385                 return -EPERM;
386
387         rcu_read_lock();
388         list_for_each_entry_rcu(device, &fs_info->fs_devices->devices,
389                                 dev_list) {
390                 if (!device->bdev)
391                         continue;
392                 q = bdev_get_queue(device->bdev);
393                 if (blk_queue_discard(q)) {
394                         num_devices++;
395                         minlen = min((u64)q->limits.discard_granularity,
396                                      minlen);
397                 }
398         }
399         rcu_read_unlock();
400
401         if (!num_devices)
402                 return -EOPNOTSUPP;
403         if (copy_from_user(&range, arg, sizeof(range)))
404                 return -EFAULT;
405         if (range.start > total_bytes ||
406             range.len < fs_info->sb->s_blocksize)
407                 return -EINVAL;
408
409         range.len = min(range.len, total_bytes - range.start);
410         range.minlen = max(range.minlen, minlen);
411         ret = btrfs_trim_fs(fs_info->tree_root, &range);
412         if (ret < 0)
413                 return ret;
414
415         if (copy_to_user(arg, &range, sizeof(range)))
416                 return -EFAULT;
417
418         return 0;
419 }
420
421 int btrfs_is_empty_uuid(u8 *uuid)
422 {
423         int i;
424
425         for (i = 0; i < BTRFS_UUID_SIZE; i++) {
426                 if (uuid[i])
427                         return 0;
428         }
429         return 1;
430 }
431
432 static noinline int create_subvol(struct inode *dir,
433                                   struct dentry *dentry,
434                                   char *name, int namelen,
435                                   u64 *async_transid,
436                                   struct btrfs_qgroup_inherit *inherit)
437 {
438         struct btrfs_trans_handle *trans;
439         struct btrfs_key key;
440         struct btrfs_root_item root_item;
441         struct btrfs_inode_item *inode_item;
442         struct extent_buffer *leaf;
443         struct btrfs_root *root = BTRFS_I(dir)->root;
444         struct btrfs_root *new_root;
445         struct btrfs_block_rsv block_rsv;
446         struct timespec cur_time = CURRENT_TIME;
447         struct inode *inode;
448         int ret;
449         int err;
450         u64 objectid;
451         u64 new_dirid = BTRFS_FIRST_FREE_OBJECTID;
452         u64 index = 0;
453         u64 qgroup_reserved;
454         uuid_le new_uuid;
455
456         ret = btrfs_find_free_objectid(root->fs_info->tree_root, &objectid);
457         if (ret)
458                 return ret;
459
460         /*
461          * Don't create subvolume whose level is not zero. Or qgroup will be
462          * screwed up since it assume subvolme qgroup's level to be 0.
463          */
464         if (btrfs_qgroup_level(objectid))
465                 return -ENOSPC;
466
467         btrfs_init_block_rsv(&block_rsv, BTRFS_BLOCK_RSV_TEMP);
468         /*
469          * The same as the snapshot creation, please see the comment
470          * of create_snapshot().
471          */
472         ret = btrfs_subvolume_reserve_metadata(root, &block_rsv,
473                                                8, &qgroup_reserved, false);
474         if (ret)
475                 return ret;
476
477         trans = btrfs_start_transaction(root, 0);
478         if (IS_ERR(trans)) {
479                 ret = PTR_ERR(trans);
480                 btrfs_subvolume_release_metadata(root, &block_rsv,
481                                                  qgroup_reserved);
482                 return ret;
483         }
484         trans->block_rsv = &block_rsv;
485         trans->bytes_reserved = block_rsv.size;
486
487         ret = btrfs_qgroup_inherit(trans, root->fs_info, 0, objectid, inherit);
488         if (ret)
489                 goto fail;
490
491         leaf = btrfs_alloc_tree_block(trans, root, 0, objectid, NULL, 0, 0, 0);
492         if (IS_ERR(leaf)) {
493                 ret = PTR_ERR(leaf);
494                 goto fail;
495         }
496
497         memset_extent_buffer(leaf, 0, 0, sizeof(struct btrfs_header));
498         btrfs_set_header_bytenr(leaf, leaf->start);
499         btrfs_set_header_generation(leaf, trans->transid);
500         btrfs_set_header_backref_rev(leaf, BTRFS_MIXED_BACKREF_REV);
501         btrfs_set_header_owner(leaf, objectid);
502
503         write_extent_buffer(leaf, root->fs_info->fsid, btrfs_header_fsid(),
504                             BTRFS_FSID_SIZE);
505         write_extent_buffer(leaf, root->fs_info->chunk_tree_uuid,
506                             btrfs_header_chunk_tree_uuid(leaf),
507                             BTRFS_UUID_SIZE);
508         btrfs_mark_buffer_dirty(leaf);
509
510         memset(&root_item, 0, sizeof(root_item));
511
512         inode_item = &root_item.inode;
513         btrfs_set_stack_inode_generation(inode_item, 1);
514         btrfs_set_stack_inode_size(inode_item, 3);
515         btrfs_set_stack_inode_nlink(inode_item, 1);
516         btrfs_set_stack_inode_nbytes(inode_item, root->nodesize);
517         btrfs_set_stack_inode_mode(inode_item, S_IFDIR | 0755);
518
519         btrfs_set_root_flags(&root_item, 0);
520         btrfs_set_root_limit(&root_item, 0);
521         btrfs_set_stack_inode_flags(inode_item, BTRFS_INODE_ROOT_ITEM_INIT);
522
523         btrfs_set_root_bytenr(&root_item, leaf->start);
524         btrfs_set_root_generation(&root_item, trans->transid);
525         btrfs_set_root_level(&root_item, 0);
526         btrfs_set_root_refs(&root_item, 1);
527         btrfs_set_root_used(&root_item, leaf->len);
528         btrfs_set_root_last_snapshot(&root_item, 0);
529
530         btrfs_set_root_generation_v2(&root_item,
531                         btrfs_root_generation(&root_item));
532         uuid_le_gen(&new_uuid);
533         memcpy(root_item.uuid, new_uuid.b, BTRFS_UUID_SIZE);
534         btrfs_set_stack_timespec_sec(&root_item.otime, cur_time.tv_sec);
535         btrfs_set_stack_timespec_nsec(&root_item.otime, cur_time.tv_nsec);
536         root_item.ctime = root_item.otime;
537         btrfs_set_root_ctransid(&root_item, trans->transid);
538         btrfs_set_root_otransid(&root_item, trans->transid);
539
540         btrfs_tree_unlock(leaf);
541         free_extent_buffer(leaf);
542         leaf = NULL;
543
544         btrfs_set_root_dirid(&root_item, new_dirid);
545
546         key.objectid = objectid;
547         key.offset = 0;
548         key.type = BTRFS_ROOT_ITEM_KEY;
549         ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
550                                 &root_item);
551         if (ret)
552                 goto fail;
553
554         key.offset = (u64)-1;
555         new_root = btrfs_read_fs_root_no_name(root->fs_info, &key);
556         if (IS_ERR(new_root)) {
557                 ret = PTR_ERR(new_root);
558                 btrfs_abort_transaction(trans, root, ret);
559                 goto fail;
560         }
561
562         btrfs_record_root_in_trans(trans, new_root);
563
564         ret = btrfs_create_subvol_root(trans, new_root, root, new_dirid);
565         if (ret) {
566                 /* We potentially lose an unused inode item here */
567                 btrfs_abort_transaction(trans, root, ret);
568                 goto fail;
569         }
570
571         /*
572          * insert the directory item
573          */
574         ret = btrfs_set_inode_index(dir, &index);
575         if (ret) {
576                 btrfs_abort_transaction(trans, root, ret);
577                 goto fail;
578         }
579
580         ret = btrfs_insert_dir_item(trans, root,
581                                     name, namelen, dir, &key,
582                                     BTRFS_FT_DIR, index);
583         if (ret) {
584                 btrfs_abort_transaction(trans, root, ret);
585                 goto fail;
586         }
587
588         btrfs_i_size_write(dir, dir->i_size + namelen * 2);
589         ret = btrfs_update_inode(trans, root, dir);
590         BUG_ON(ret);
591
592         ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
593                                  objectid, root->root_key.objectid,
594                                  btrfs_ino(dir), index, name, namelen);
595         BUG_ON(ret);
596
597         ret = btrfs_uuid_tree_add(trans, root->fs_info->uuid_root,
598                                   root_item.uuid, BTRFS_UUID_KEY_SUBVOL,
599                                   objectid);
600         if (ret)
601                 btrfs_abort_transaction(trans, root, ret);
602
603 fail:
604         trans->block_rsv = NULL;
605         trans->bytes_reserved = 0;
606         btrfs_subvolume_release_metadata(root, &block_rsv, qgroup_reserved);
607
608         if (async_transid) {
609                 *async_transid = trans->transid;
610                 err = btrfs_commit_transaction_async(trans, root, 1);
611                 if (err)
612                         err = btrfs_commit_transaction(trans, root);
613         } else {
614                 err = btrfs_commit_transaction(trans, root);
615         }
616         if (err && !ret)
617                 ret = err;
618
619         if (!ret) {
620                 inode = btrfs_lookup_dentry(dir, dentry);
621                 if (IS_ERR(inode))
622                         return PTR_ERR(inode);
623                 d_instantiate(dentry, inode);
624         }
625         return ret;
626 }
627
628 static void btrfs_wait_for_no_snapshoting_writes(struct btrfs_root *root)
629 {
630         s64 writers;
631         DEFINE_WAIT(wait);
632
633         do {
634                 prepare_to_wait(&root->subv_writers->wait, &wait,
635                                 TASK_UNINTERRUPTIBLE);
636
637                 writers = percpu_counter_sum(&root->subv_writers->counter);
638                 if (writers)
639                         schedule();
640
641                 finish_wait(&root->subv_writers->wait, &wait);
642         } while (writers);
643 }
644
645 static int create_snapshot(struct btrfs_root *root, struct inode *dir,
646                            struct dentry *dentry, char *name, int namelen,
647                            u64 *async_transid, bool readonly,
648                            struct btrfs_qgroup_inherit *inherit)
649 {
650         struct inode *inode;
651         struct btrfs_pending_snapshot *pending_snapshot;
652         struct btrfs_trans_handle *trans;
653         int ret;
654
655         if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state))
656                 return -EINVAL;
657
658         atomic_inc(&root->will_be_snapshoted);
659         smp_mb__after_atomic();
660         btrfs_wait_for_no_snapshoting_writes(root);
661
662         ret = btrfs_start_delalloc_inodes(root, 0);
663         if (ret)
664                 goto out;
665
666         btrfs_wait_ordered_extents(root, -1);
667
668         pending_snapshot = kzalloc(sizeof(*pending_snapshot), GFP_NOFS);
669         if (!pending_snapshot) {
670                 ret = -ENOMEM;
671                 goto out;
672         }
673
674         btrfs_init_block_rsv(&pending_snapshot->block_rsv,
675                              BTRFS_BLOCK_RSV_TEMP);
676         /*
677          * 1 - parent dir inode
678          * 2 - dir entries
679          * 1 - root item
680          * 2 - root ref/backref
681          * 1 - root of snapshot
682          * 1 - UUID item
683          */
684         ret = btrfs_subvolume_reserve_metadata(BTRFS_I(dir)->root,
685                                         &pending_snapshot->block_rsv, 8,
686                                         &pending_snapshot->qgroup_reserved,
687                                         false);
688         if (ret)
689                 goto free;
690
691         pending_snapshot->dentry = dentry;
692         pending_snapshot->root = root;
693         pending_snapshot->readonly = readonly;
694         pending_snapshot->dir = dir;
695         pending_snapshot->inherit = inherit;
696
697         trans = btrfs_start_transaction(root, 0);
698         if (IS_ERR(trans)) {
699                 ret = PTR_ERR(trans);
700                 goto fail;
701         }
702
703         spin_lock(&root->fs_info->trans_lock);
704         list_add(&pending_snapshot->list,
705                  &trans->transaction->pending_snapshots);
706         spin_unlock(&root->fs_info->trans_lock);
707         if (async_transid) {
708                 *async_transid = trans->transid;
709                 ret = btrfs_commit_transaction_async(trans,
710                                      root->fs_info->extent_root, 1);
711                 if (ret)
712                         ret = btrfs_commit_transaction(trans, root);
713         } else {
714                 ret = btrfs_commit_transaction(trans,
715                                                root->fs_info->extent_root);
716         }
717         if (ret)
718                 goto fail;
719
720         ret = pending_snapshot->error;
721         if (ret)
722                 goto fail;
723
724         ret = btrfs_orphan_cleanup(pending_snapshot->snap);
725         if (ret)
726                 goto fail;
727
728         inode = btrfs_lookup_dentry(d_inode(dentry->d_parent), dentry);
729         if (IS_ERR(inode)) {
730                 ret = PTR_ERR(inode);
731                 goto fail;
732         }
733
734         d_instantiate(dentry, inode);
735         ret = 0;
736 fail:
737         btrfs_subvolume_release_metadata(BTRFS_I(dir)->root,
738                                          &pending_snapshot->block_rsv,
739                                          pending_snapshot->qgroup_reserved);
740 free:
741         kfree(pending_snapshot);
742 out:
743         if (atomic_dec_and_test(&root->will_be_snapshoted))
744                 wake_up_atomic_t(&root->will_be_snapshoted);
745         return ret;
746 }
747
748 /*  copy of may_delete in fs/namei.c()
749  *      Check whether we can remove a link victim from directory dir, check
750  *  whether the type of victim is right.
751  *  1. We can't do it if dir is read-only (done in permission())
752  *  2. We should have write and exec permissions on dir
753  *  3. We can't remove anything from append-only dir
754  *  4. We can't do anything with immutable dir (done in permission())
755  *  5. If the sticky bit on dir is set we should either
756  *      a. be owner of dir, or
757  *      b. be owner of victim, or
758  *      c. have CAP_FOWNER capability
759  *  6. If the victim is append-only or immutable we can't do antyhing with
760  *     links pointing to it.
761  *  7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
762  *  8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
763  *  9. We can't remove a root or mountpoint.
764  * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
765  *     nfs_async_unlink().
766  */
767
768 static int btrfs_may_delete(struct inode *dir, struct dentry *victim, int isdir)
769 {
770         int error;
771
772         if (d_really_is_negative(victim))
773                 return -ENOENT;
774
775         BUG_ON(d_inode(victim->d_parent) != dir);
776         audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
777
778         error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
779         if (error)
780                 return error;
781         if (IS_APPEND(dir))
782                 return -EPERM;
783         if (check_sticky(dir, d_inode(victim)) || IS_APPEND(d_inode(victim)) ||
784             IS_IMMUTABLE(d_inode(victim)) || IS_SWAPFILE(d_inode(victim)))
785                 return -EPERM;
786         if (isdir) {
787                 if (!d_is_dir(victim))
788                         return -ENOTDIR;
789                 if (IS_ROOT(victim))
790                         return -EBUSY;
791         } else if (d_is_dir(victim))
792                 return -EISDIR;
793         if (IS_DEADDIR(dir))
794                 return -ENOENT;
795         if (victim->d_flags & DCACHE_NFSFS_RENAMED)
796                 return -EBUSY;
797         return 0;
798 }
799
800 /* copy of may_create in fs/namei.c() */
801 static inline int btrfs_may_create(struct inode *dir, struct dentry *child)
802 {
803         if (d_really_is_positive(child))
804                 return -EEXIST;
805         if (IS_DEADDIR(dir))
806                 return -ENOENT;
807         return inode_permission(dir, MAY_WRITE | MAY_EXEC);
808 }
809
810 /*
811  * Create a new subvolume below @parent.  This is largely modeled after
812  * sys_mkdirat and vfs_mkdir, but we only do a single component lookup
813  * inside this filesystem so it's quite a bit simpler.
814  */
815 static noinline int btrfs_mksubvol(struct path *parent,
816                                    char *name, int namelen,
817                                    struct btrfs_root *snap_src,
818                                    u64 *async_transid, bool readonly,
819                                    struct btrfs_qgroup_inherit *inherit)
820 {
821         struct inode *dir  = d_inode(parent->dentry);
822         struct dentry *dentry;
823         int error;
824
825         error = mutex_lock_killable_nested(&dir->i_mutex, I_MUTEX_PARENT);
826         if (error == -EINTR)
827                 return error;
828
829         dentry = lookup_one_len(name, parent->dentry, namelen);
830         error = PTR_ERR(dentry);
831         if (IS_ERR(dentry))
832                 goto out_unlock;
833
834         error = -EEXIST;
835         if (d_really_is_positive(dentry))
836                 goto out_dput;
837
838         error = btrfs_may_create(dir, dentry);
839         if (error)
840                 goto out_dput;
841
842         /*
843          * even if this name doesn't exist, we may get hash collisions.
844          * check for them now when we can safely fail
845          */
846         error = btrfs_check_dir_item_collision(BTRFS_I(dir)->root,
847                                                dir->i_ino, name,
848                                                namelen);
849         if (error)
850                 goto out_dput;
851
852         down_read(&BTRFS_I(dir)->root->fs_info->subvol_sem);
853
854         if (btrfs_root_refs(&BTRFS_I(dir)->root->root_item) == 0)
855                 goto out_up_read;
856
857         if (snap_src) {
858                 error = create_snapshot(snap_src, dir, dentry, name, namelen,
859                                         async_transid, readonly, inherit);
860         } else {
861                 error = create_subvol(dir, dentry, name, namelen,
862                                       async_transid, inherit);
863         }
864         if (!error)
865                 fsnotify_mkdir(dir, dentry);
866 out_up_read:
867         up_read(&BTRFS_I(dir)->root->fs_info->subvol_sem);
868 out_dput:
869         dput(dentry);
870 out_unlock:
871         mutex_unlock(&dir->i_mutex);
872         return error;
873 }
874
875 /*
876  * When we're defragging a range, we don't want to kick it off again
877  * if it is really just waiting for delalloc to send it down.
878  * If we find a nice big extent or delalloc range for the bytes in the
879  * file you want to defrag, we return 0 to let you know to skip this
880  * part of the file
881  */
882 static int check_defrag_in_cache(struct inode *inode, u64 offset, u32 thresh)
883 {
884         struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
885         struct extent_map *em = NULL;
886         struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
887         u64 end;
888
889         read_lock(&em_tree->lock);
890         em = lookup_extent_mapping(em_tree, offset, PAGE_CACHE_SIZE);
891         read_unlock(&em_tree->lock);
892
893         if (em) {
894                 end = extent_map_end(em);
895                 free_extent_map(em);
896                 if (end - offset > thresh)
897                         return 0;
898         }
899         /* if we already have a nice delalloc here, just stop */
900         thresh /= 2;
901         end = count_range_bits(io_tree, &offset, offset + thresh,
902                                thresh, EXTENT_DELALLOC, 1);
903         if (end >= thresh)
904                 return 0;
905         return 1;
906 }
907
908 /*
909  * helper function to walk through a file and find extents
910  * newer than a specific transid, and smaller than thresh.
911  *
912  * This is used by the defragging code to find new and small
913  * extents
914  */
915 static int find_new_extents(struct btrfs_root *root,
916                             struct inode *inode, u64 newer_than,
917                             u64 *off, u32 thresh)
918 {
919         struct btrfs_path *path;
920         struct btrfs_key min_key;
921         struct extent_buffer *leaf;
922         struct btrfs_file_extent_item *extent;
923         int type;
924         int ret;
925         u64 ino = btrfs_ino(inode);
926
927         path = btrfs_alloc_path();
928         if (!path)
929                 return -ENOMEM;
930
931         min_key.objectid = ino;
932         min_key.type = BTRFS_EXTENT_DATA_KEY;
933         min_key.offset = *off;
934
935         while (1) {
936                 ret = btrfs_search_forward(root, &min_key, path, newer_than);
937                 if (ret != 0)
938                         goto none;
939 process_slot:
940                 if (min_key.objectid != ino)
941                         goto none;
942                 if (min_key.type != BTRFS_EXTENT_DATA_KEY)
943                         goto none;
944
945                 leaf = path->nodes[0];
946                 extent = btrfs_item_ptr(leaf, path->slots[0],
947                                         struct btrfs_file_extent_item);
948
949                 type = btrfs_file_extent_type(leaf, extent);
950                 if (type == BTRFS_FILE_EXTENT_REG &&
951                     btrfs_file_extent_num_bytes(leaf, extent) < thresh &&
952                     check_defrag_in_cache(inode, min_key.offset, thresh)) {
953                         *off = min_key.offset;
954                         btrfs_free_path(path);
955                         return 0;
956                 }
957
958                 path->slots[0]++;
959                 if (path->slots[0] < btrfs_header_nritems(leaf)) {
960                         btrfs_item_key_to_cpu(leaf, &min_key, path->slots[0]);
961                         goto process_slot;
962                 }
963
964                 if (min_key.offset == (u64)-1)
965                         goto none;
966
967                 min_key.offset++;
968                 btrfs_release_path(path);
969         }
970 none:
971         btrfs_free_path(path);
972         return -ENOENT;
973 }
974
975 static struct extent_map *defrag_lookup_extent(struct inode *inode, u64 start)
976 {
977         struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
978         struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
979         struct extent_map *em;
980         u64 len = PAGE_CACHE_SIZE;
981
982         /*
983          * hopefully we have this extent in the tree already, try without
984          * the full extent lock
985          */
986         read_lock(&em_tree->lock);
987         em = lookup_extent_mapping(em_tree, start, len);
988         read_unlock(&em_tree->lock);
989
990         if (!em) {
991                 struct extent_state *cached = NULL;
992                 u64 end = start + len - 1;
993
994                 /* get the big lock and read metadata off disk */
995                 lock_extent_bits(io_tree, start, end, 0, &cached);
996                 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
997                 unlock_extent_cached(io_tree, start, end, &cached, GFP_NOFS);
998
999                 if (IS_ERR(em))
1000                         return NULL;
1001         }
1002
1003         return em;
1004 }
1005
1006 static bool defrag_check_next_extent(struct inode *inode, struct extent_map *em)
1007 {
1008         struct extent_map *next;
1009         bool ret = true;
1010
1011         /* this is the last extent */
1012         if (em->start + em->len >= i_size_read(inode))
1013                 return false;
1014
1015         next = defrag_lookup_extent(inode, em->start + em->len);
1016         if (!next || next->block_start >= EXTENT_MAP_LAST_BYTE)
1017                 ret = false;
1018         else if ((em->block_start + em->block_len == next->block_start) &&
1019                  (em->block_len > 128 * 1024 && next->block_len > 128 * 1024))
1020                 ret = false;
1021
1022         free_extent_map(next);
1023         return ret;
1024 }
1025
1026 static int should_defrag_range(struct inode *inode, u64 start, u32 thresh,
1027                                u64 *last_len, u64 *skip, u64 *defrag_end,
1028                                int compress)
1029 {
1030         struct extent_map *em;
1031         int ret = 1;
1032         bool next_mergeable = true;
1033         bool prev_mergeable = true;
1034
1035         /*
1036          * make sure that once we start defragging an extent, we keep on
1037          * defragging it
1038          */
1039         if (start < *defrag_end)
1040                 return 1;
1041
1042         *skip = 0;
1043
1044         em = defrag_lookup_extent(inode, start);
1045         if (!em)
1046                 return 0;
1047
1048         /* this will cover holes, and inline extents */
1049         if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
1050                 ret = 0;
1051                 goto out;
1052         }
1053
1054         if (!*defrag_end)
1055                 prev_mergeable = false;
1056
1057         next_mergeable = defrag_check_next_extent(inode, em);
1058         /*
1059          * we hit a real extent, if it is big or the next extent is not a
1060          * real extent, don't bother defragging it
1061          */
1062         if (!compress && (*last_len == 0 || *last_len >= thresh) &&
1063             (em->len >= thresh || (!next_mergeable && !prev_mergeable)))
1064                 ret = 0;
1065 out:
1066         /*
1067          * last_len ends up being a counter of how many bytes we've defragged.
1068          * every time we choose not to defrag an extent, we reset *last_len
1069          * so that the next tiny extent will force a defrag.
1070          *
1071          * The end result of this is that tiny extents before a single big
1072          * extent will force at least part of that big extent to be defragged.
1073          */
1074         if (ret) {
1075                 *defrag_end = extent_map_end(em);
1076         } else {
1077                 *last_len = 0;
1078                 *skip = extent_map_end(em);
1079                 *defrag_end = 0;
1080         }
1081
1082         free_extent_map(em);
1083         return ret;
1084 }
1085
1086 /*
1087  * it doesn't do much good to defrag one or two pages
1088  * at a time.  This pulls in a nice chunk of pages
1089  * to COW and defrag.
1090  *
1091  * It also makes sure the delalloc code has enough
1092  * dirty data to avoid making new small extents as part
1093  * of the defrag
1094  *
1095  * It's a good idea to start RA on this range
1096  * before calling this.
1097  */
1098 static int cluster_pages_for_defrag(struct inode *inode,
1099                                     struct page **pages,
1100                                     unsigned long start_index,
1101                                     unsigned long num_pages)
1102 {
1103         unsigned long file_end;
1104         u64 isize = i_size_read(inode);
1105         u64 page_start;
1106         u64 page_end;
1107         u64 page_cnt;
1108         int ret;
1109         int i;
1110         int i_done;
1111         struct btrfs_ordered_extent *ordered;
1112         struct extent_state *cached_state = NULL;
1113         struct extent_io_tree *tree;
1114         gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
1115
1116         file_end = (isize - 1) >> PAGE_CACHE_SHIFT;
1117         if (!isize || start_index > file_end)
1118                 return 0;
1119
1120         page_cnt = min_t(u64, (u64)num_pages, (u64)file_end - start_index + 1);
1121
1122         ret = btrfs_delalloc_reserve_space(inode,
1123                                            page_cnt << PAGE_CACHE_SHIFT);
1124         if (ret)
1125                 return ret;
1126         i_done = 0;
1127         tree = &BTRFS_I(inode)->io_tree;
1128
1129         /* step one, lock all the pages */
1130         for (i = 0; i < page_cnt; i++) {
1131                 struct page *page;
1132 again:
1133                 page = find_or_create_page(inode->i_mapping,
1134                                            start_index + i, mask);
1135                 if (!page)
1136                         break;
1137
1138                 page_start = page_offset(page);
1139                 page_end = page_start + PAGE_CACHE_SIZE - 1;
1140                 while (1) {
1141                         lock_extent_bits(tree, page_start, page_end,
1142                                          0, &cached_state);
1143                         ordered = btrfs_lookup_ordered_extent(inode,
1144                                                               page_start);
1145                         unlock_extent_cached(tree, page_start, page_end,
1146                                              &cached_state, GFP_NOFS);
1147                         if (!ordered)
1148                                 break;
1149
1150                         unlock_page(page);
1151                         btrfs_start_ordered_extent(inode, ordered, 1);
1152                         btrfs_put_ordered_extent(ordered);
1153                         lock_page(page);
1154                         /*
1155                          * we unlocked the page above, so we need check if
1156                          * it was released or not.
1157                          */
1158                         if (page->mapping != inode->i_mapping) {
1159                                 unlock_page(page);
1160                                 page_cache_release(page);
1161                                 goto again;
1162                         }
1163                 }
1164
1165                 if (!PageUptodate(page)) {
1166                         btrfs_readpage(NULL, page);
1167                         lock_page(page);
1168                         if (!PageUptodate(page)) {
1169                                 unlock_page(page);
1170                                 page_cache_release(page);
1171                                 ret = -EIO;
1172                                 break;
1173                         }
1174                 }
1175
1176                 if (page->mapping != inode->i_mapping) {
1177                         unlock_page(page);
1178                         page_cache_release(page);
1179                         goto again;
1180                 }
1181
1182                 pages[i] = page;
1183                 i_done++;
1184         }
1185         if (!i_done || ret)
1186                 goto out;
1187
1188         if (!(inode->i_sb->s_flags & MS_ACTIVE))
1189                 goto out;
1190
1191         /*
1192          * so now we have a nice long stream of locked
1193          * and up to date pages, lets wait on them
1194          */
1195         for (i = 0; i < i_done; i++)
1196                 wait_on_page_writeback(pages[i]);
1197
1198         page_start = page_offset(pages[0]);
1199         page_end = page_offset(pages[i_done - 1]) + PAGE_CACHE_SIZE;
1200
1201         lock_extent_bits(&BTRFS_I(inode)->io_tree,
1202                          page_start, page_end - 1, 0, &cached_state);
1203         clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start,
1204                           page_end - 1, EXTENT_DIRTY | EXTENT_DELALLOC |
1205                           EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, 0, 0,
1206                           &cached_state, GFP_NOFS);
1207
1208         if (i_done != page_cnt) {
1209                 spin_lock(&BTRFS_I(inode)->lock);
1210                 BTRFS_I(inode)->outstanding_extents++;
1211                 spin_unlock(&BTRFS_I(inode)->lock);
1212                 btrfs_delalloc_release_space(inode,
1213                                      (page_cnt - i_done) << PAGE_CACHE_SHIFT);
1214         }
1215
1216
1217         set_extent_defrag(&BTRFS_I(inode)->io_tree, page_start, page_end - 1,
1218                           &cached_state, GFP_NOFS);
1219
1220         unlock_extent_cached(&BTRFS_I(inode)->io_tree,
1221                              page_start, page_end - 1, &cached_state,
1222                              GFP_NOFS);
1223
1224         for (i = 0; i < i_done; i++) {
1225                 clear_page_dirty_for_io(pages[i]);
1226                 ClearPageChecked(pages[i]);
1227                 set_page_extent_mapped(pages[i]);
1228                 set_page_dirty(pages[i]);
1229                 unlock_page(pages[i]);
1230                 page_cache_release(pages[i]);
1231         }
1232         return i_done;
1233 out:
1234         for (i = 0; i < i_done; i++) {
1235                 unlock_page(pages[i]);
1236                 page_cache_release(pages[i]);
1237         }
1238         btrfs_delalloc_release_space(inode, page_cnt << PAGE_CACHE_SHIFT);
1239         return ret;
1240
1241 }
1242
1243 int btrfs_defrag_file(struct inode *inode, struct file *file,
1244                       struct btrfs_ioctl_defrag_range_args *range,
1245                       u64 newer_than, unsigned long max_to_defrag)
1246 {
1247         struct btrfs_root *root = BTRFS_I(inode)->root;
1248         struct file_ra_state *ra = NULL;
1249         unsigned long last_index;
1250         u64 isize = i_size_read(inode);
1251         u64 last_len = 0;
1252         u64 skip = 0;
1253         u64 defrag_end = 0;
1254         u64 newer_off = range->start;
1255         unsigned long i;
1256         unsigned long ra_index = 0;
1257         int ret;
1258         int defrag_count = 0;
1259         int compress_type = BTRFS_COMPRESS_ZLIB;
1260         u32 extent_thresh = range->extent_thresh;
1261         unsigned long max_cluster = (256 * 1024) >> PAGE_CACHE_SHIFT;
1262         unsigned long cluster = max_cluster;
1263         u64 new_align = ~((u64)128 * 1024 - 1);
1264         struct page **pages = NULL;
1265
1266         if (isize == 0)
1267                 return 0;
1268
1269         if (range->start >= isize)
1270                 return -EINVAL;
1271
1272         if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS) {
1273                 if (range->compress_type > BTRFS_COMPRESS_TYPES)
1274                         return -EINVAL;
1275                 if (range->compress_type)
1276                         compress_type = range->compress_type;
1277         }
1278
1279         if (extent_thresh == 0)
1280                 extent_thresh = 256 * 1024;
1281
1282         /*
1283          * if we were not given a file, allocate a readahead
1284          * context
1285          */
1286         if (!file) {
1287                 ra = kzalloc(sizeof(*ra), GFP_NOFS);
1288                 if (!ra)
1289                         return -ENOMEM;
1290                 file_ra_state_init(ra, inode->i_mapping);
1291         } else {
1292                 ra = &file->f_ra;
1293         }
1294
1295         pages = kmalloc_array(max_cluster, sizeof(struct page *),
1296                         GFP_NOFS);
1297         if (!pages) {
1298                 ret = -ENOMEM;
1299                 goto out_ra;
1300         }
1301
1302         /* find the last page to defrag */
1303         if (range->start + range->len > range->start) {
1304                 last_index = min_t(u64, isize - 1,
1305                          range->start + range->len - 1) >> PAGE_CACHE_SHIFT;
1306         } else {
1307                 last_index = (isize - 1) >> PAGE_CACHE_SHIFT;
1308         }
1309
1310         if (newer_than) {
1311                 ret = find_new_extents(root, inode, newer_than,
1312                                        &newer_off, 64 * 1024);
1313                 if (!ret) {
1314                         range->start = newer_off;
1315                         /*
1316                          * we always align our defrag to help keep
1317                          * the extents in the file evenly spaced
1318                          */
1319                         i = (newer_off & new_align) >> PAGE_CACHE_SHIFT;
1320                 } else
1321                         goto out_ra;
1322         } else {
1323                 i = range->start >> PAGE_CACHE_SHIFT;
1324         }
1325         if (!max_to_defrag)
1326                 max_to_defrag = last_index - i + 1;
1327
1328         /*
1329          * make writeback starts from i, so the defrag range can be
1330          * written sequentially.
1331          */
1332         if (i < inode->i_mapping->writeback_index)
1333                 inode->i_mapping->writeback_index = i;
1334
1335         while (i <= last_index && defrag_count < max_to_defrag &&
1336                (i < DIV_ROUND_UP(i_size_read(inode), PAGE_CACHE_SIZE))) {
1337                 /*
1338                  * make sure we stop running if someone unmounts
1339                  * the FS
1340                  */
1341                 if (!(inode->i_sb->s_flags & MS_ACTIVE))
1342                         break;
1343
1344                 if (btrfs_defrag_cancelled(root->fs_info)) {
1345                         btrfs_debug(root->fs_info, "defrag_file cancelled");
1346                         ret = -EAGAIN;
1347                         break;
1348                 }
1349
1350                 if (!should_defrag_range(inode, (u64)i << PAGE_CACHE_SHIFT,
1351                                          extent_thresh, &last_len, &skip,
1352                                          &defrag_end, range->flags &
1353                                          BTRFS_DEFRAG_RANGE_COMPRESS)) {
1354                         unsigned long next;
1355                         /*
1356                          * the should_defrag function tells us how much to skip
1357                          * bump our counter by the suggested amount
1358                          */
1359                         next = DIV_ROUND_UP(skip, PAGE_CACHE_SIZE);
1360                         i = max(i + 1, next);
1361                         continue;
1362                 }
1363
1364                 if (!newer_than) {
1365                         cluster = (PAGE_CACHE_ALIGN(defrag_end) >>
1366                                    PAGE_CACHE_SHIFT) - i;
1367                         cluster = min(cluster, max_cluster);
1368                 } else {
1369                         cluster = max_cluster;
1370                 }
1371
1372                 if (i + cluster > ra_index) {
1373                         ra_index = max(i, ra_index);
1374                         btrfs_force_ra(inode->i_mapping, ra, file, ra_index,
1375                                        cluster);
1376                         ra_index += cluster;
1377                 }
1378
1379                 mutex_lock(&inode->i_mutex);
1380                 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)
1381                         BTRFS_I(inode)->force_compress = compress_type;
1382                 ret = cluster_pages_for_defrag(inode, pages, i, cluster);
1383                 if (ret < 0) {
1384                         mutex_unlock(&inode->i_mutex);
1385                         goto out_ra;
1386                 }
1387
1388                 defrag_count += ret;
1389                 balance_dirty_pages_ratelimited(inode->i_mapping);
1390                 mutex_unlock(&inode->i_mutex);
1391
1392                 if (newer_than) {
1393                         if (newer_off == (u64)-1)
1394                                 break;
1395
1396                         if (ret > 0)
1397                                 i += ret;
1398
1399                         newer_off = max(newer_off + 1,
1400                                         (u64)i << PAGE_CACHE_SHIFT);
1401
1402                         ret = find_new_extents(root, inode,
1403                                                newer_than, &newer_off,
1404                                                64 * 1024);
1405                         if (!ret) {
1406                                 range->start = newer_off;
1407                                 i = (newer_off & new_align) >> PAGE_CACHE_SHIFT;
1408                         } else {
1409                                 break;
1410                         }
1411                 } else {
1412                         if (ret > 0) {
1413                                 i += ret;
1414                                 last_len += ret << PAGE_CACHE_SHIFT;
1415                         } else {
1416                                 i++;
1417                                 last_len = 0;
1418                         }
1419                 }
1420         }
1421
1422         if ((range->flags & BTRFS_DEFRAG_RANGE_START_IO)) {
1423                 filemap_flush(inode->i_mapping);
1424                 if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
1425                              &BTRFS_I(inode)->runtime_flags))
1426                         filemap_flush(inode->i_mapping);
1427         }
1428
1429         if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
1430                 /* the filemap_flush will queue IO into the worker threads, but
1431                  * we have to make sure the IO is actually started and that
1432                  * ordered extents get created before we return
1433                  */
1434                 atomic_inc(&root->fs_info->async_submit_draining);
1435                 while (atomic_read(&root->fs_info->nr_async_submits) ||
1436                       atomic_read(&root->fs_info->async_delalloc_pages)) {
1437                         wait_event(root->fs_info->async_submit_wait,
1438                            (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
1439                             atomic_read(&root->fs_info->async_delalloc_pages) == 0));
1440                 }
1441                 atomic_dec(&root->fs_info->async_submit_draining);
1442         }
1443
1444         if (range->compress_type == BTRFS_COMPRESS_LZO) {
1445                 btrfs_set_fs_incompat(root->fs_info, COMPRESS_LZO);
1446         }
1447
1448         ret = defrag_count;
1449
1450 out_ra:
1451         if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS) {
1452                 mutex_lock(&inode->i_mutex);
1453                 BTRFS_I(inode)->force_compress = BTRFS_COMPRESS_NONE;
1454                 mutex_unlock(&inode->i_mutex);
1455         }
1456         if (!file)
1457                 kfree(ra);
1458         kfree(pages);
1459         return ret;
1460 }
1461
1462 static noinline int btrfs_ioctl_resize(struct file *file,
1463                                         void __user *arg)
1464 {
1465         u64 new_size;
1466         u64 old_size;
1467         u64 devid = 1;
1468         struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
1469         struct btrfs_ioctl_vol_args *vol_args;
1470         struct btrfs_trans_handle *trans;
1471         struct btrfs_device *device = NULL;
1472         char *sizestr;
1473         char *retptr;
1474         char *devstr = NULL;
1475         int ret = 0;
1476         int mod = 0;
1477
1478         if (!capable(CAP_SYS_ADMIN))
1479                 return -EPERM;
1480
1481         ret = mnt_want_write_file(file);
1482         if (ret)
1483                 return ret;
1484
1485         if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
1486                         1)) {
1487                 mnt_drop_write_file(file);
1488                 return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
1489         }
1490
1491         mutex_lock(&root->fs_info->volume_mutex);
1492         vol_args = memdup_user(arg, sizeof(*vol_args));
1493         if (IS_ERR(vol_args)) {
1494                 ret = PTR_ERR(vol_args);
1495                 goto out;
1496         }
1497
1498         vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
1499
1500         sizestr = vol_args->name;
1501         devstr = strchr(sizestr, ':');
1502         if (devstr) {
1503                 sizestr = devstr + 1;
1504                 *devstr = '\0';
1505                 devstr = vol_args->name;
1506                 ret = kstrtoull(devstr, 10, &devid);
1507                 if (ret)
1508                         goto out_free;
1509                 if (!devid) {
1510                         ret = -EINVAL;
1511                         goto out_free;
1512                 }
1513                 btrfs_info(root->fs_info, "resizing devid %llu", devid);
1514         }
1515
1516         device = btrfs_find_device(root->fs_info, devid, NULL, NULL);
1517         if (!device) {
1518                 btrfs_info(root->fs_info, "resizer unable to find device %llu",
1519                        devid);
1520                 ret = -ENODEV;
1521                 goto out_free;
1522         }
1523
1524         if (!device->writeable) {
1525                 btrfs_info(root->fs_info,
1526                            "resizer unable to apply on readonly device %llu",
1527                        devid);
1528                 ret = -EPERM;
1529                 goto out_free;
1530         }
1531
1532         if (!strcmp(sizestr, "max"))
1533                 new_size = device->bdev->bd_inode->i_size;
1534         else {
1535                 if (sizestr[0] == '-') {
1536                         mod = -1;
1537                         sizestr++;
1538                 } else if (sizestr[0] == '+') {
1539                         mod = 1;
1540                         sizestr++;
1541                 }
1542                 new_size = memparse(sizestr, &retptr);
1543                 if (*retptr != '\0' || new_size == 0) {
1544                         ret = -EINVAL;
1545                         goto out_free;
1546                 }
1547         }
1548
1549         if (device->is_tgtdev_for_dev_replace) {
1550                 ret = -EPERM;
1551                 goto out_free;
1552         }
1553
1554         old_size = btrfs_device_get_total_bytes(device);
1555
1556         if (mod < 0) {
1557                 if (new_size > old_size) {
1558                         ret = -EINVAL;
1559                         goto out_free;
1560                 }
1561                 new_size = old_size - new_size;
1562         } else if (mod > 0) {
1563                 if (new_size > ULLONG_MAX - old_size) {
1564                         ret = -ERANGE;
1565                         goto out_free;
1566                 }
1567                 new_size = old_size + new_size;
1568         }
1569
1570         if (new_size < 256 * 1024 * 1024) {
1571                 ret = -EINVAL;
1572                 goto out_free;
1573         }
1574         if (new_size > device->bdev->bd_inode->i_size) {
1575                 ret = -EFBIG;
1576                 goto out_free;
1577         }
1578
1579         new_size = div_u64(new_size, root->sectorsize);
1580         new_size *= root->sectorsize;
1581
1582         btrfs_info_in_rcu(root->fs_info, "new size for %s is %llu",
1583                       rcu_str_deref(device->name), new_size);
1584
1585         if (new_size > old_size) {
1586                 trans = btrfs_start_transaction(root, 0);
1587                 if (IS_ERR(trans)) {
1588                         ret = PTR_ERR(trans);
1589                         goto out_free;
1590                 }
1591                 ret = btrfs_grow_device(trans, device, new_size);
1592                 btrfs_commit_transaction(trans, root);
1593         } else if (new_size < old_size) {
1594                 ret = btrfs_shrink_device(device, new_size);
1595         } /* equal, nothing need to do */
1596
1597 out_free:
1598         kfree(vol_args);
1599 out:
1600         mutex_unlock(&root->fs_info->volume_mutex);
1601         atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
1602         mnt_drop_write_file(file);
1603         return ret;
1604 }
1605
1606 static noinline int btrfs_ioctl_snap_create_transid(struct file *file,
1607                                 char *name, unsigned long fd, int subvol,
1608                                 u64 *transid, bool readonly,
1609                                 struct btrfs_qgroup_inherit *inherit)
1610 {
1611         int namelen;
1612         int ret = 0;
1613
1614         ret = mnt_want_write_file(file);
1615         if (ret)
1616                 goto out;
1617
1618         namelen = strlen(name);
1619         if (strchr(name, '/')) {
1620                 ret = -EINVAL;
1621                 goto out_drop_write;
1622         }
1623
1624         if (name[0] == '.' &&
1625            (namelen == 1 || (name[1] == '.' && namelen == 2))) {
1626                 ret = -EEXIST;
1627                 goto out_drop_write;
1628         }
1629
1630         if (subvol) {
1631                 ret = btrfs_mksubvol(&file->f_path, name, namelen,
1632                                      NULL, transid, readonly, inherit);
1633         } else {
1634                 struct fd src = fdget(fd);
1635                 struct inode *src_inode;
1636                 if (!src.file) {
1637                         ret = -EINVAL;
1638                         goto out_drop_write;
1639                 }
1640
1641                 src_inode = file_inode(src.file);
1642                 if (src_inode->i_sb != file_inode(file)->i_sb) {
1643                         btrfs_info(BTRFS_I(src_inode)->root->fs_info,
1644                                    "Snapshot src from another FS");
1645                         ret = -EXDEV;
1646                 } else if (!inode_owner_or_capable(src_inode)) {
1647                         /*
1648                          * Subvolume creation is not restricted, but snapshots
1649                          * are limited to own subvolumes only
1650                          */
1651                         ret = -EPERM;
1652                 } else {
1653                         ret = btrfs_mksubvol(&file->f_path, name, namelen,
1654                                              BTRFS_I(src_inode)->root,
1655                                              transid, readonly, inherit);
1656                 }
1657                 fdput(src);
1658         }
1659 out_drop_write:
1660         mnt_drop_write_file(file);
1661 out:
1662         return ret;
1663 }
1664
1665 static noinline int btrfs_ioctl_snap_create(struct file *file,
1666                                             void __user *arg, int subvol)
1667 {
1668         struct btrfs_ioctl_vol_args *vol_args;
1669         int ret;
1670
1671         vol_args = memdup_user(arg, sizeof(*vol_args));
1672         if (IS_ERR(vol_args))
1673                 return PTR_ERR(vol_args);
1674         vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
1675
1676         ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
1677                                               vol_args->fd, subvol,
1678                                               NULL, false, NULL);
1679
1680         kfree(vol_args);
1681         return ret;
1682 }
1683
1684 static noinline int btrfs_ioctl_snap_create_v2(struct file *file,
1685                                                void __user *arg, int subvol)
1686 {
1687         struct btrfs_ioctl_vol_args_v2 *vol_args;
1688         int ret;
1689         u64 transid = 0;
1690         u64 *ptr = NULL;
1691         bool readonly = false;
1692         struct btrfs_qgroup_inherit *inherit = NULL;
1693
1694         vol_args = memdup_user(arg, sizeof(*vol_args));
1695         if (IS_ERR(vol_args))
1696                 return PTR_ERR(vol_args);
1697         vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
1698
1699         if (vol_args->flags &
1700             ~(BTRFS_SUBVOL_CREATE_ASYNC | BTRFS_SUBVOL_RDONLY |
1701               BTRFS_SUBVOL_QGROUP_INHERIT)) {
1702                 ret = -EOPNOTSUPP;
1703                 goto free_args;
1704         }
1705
1706         if (vol_args->flags & BTRFS_SUBVOL_CREATE_ASYNC)
1707                 ptr = &transid;
1708         if (vol_args->flags & BTRFS_SUBVOL_RDONLY)
1709                 readonly = true;
1710         if (vol_args->flags & BTRFS_SUBVOL_QGROUP_INHERIT) {
1711                 if (vol_args->size > PAGE_CACHE_SIZE) {
1712                         ret = -EINVAL;
1713                         goto free_args;
1714                 }
1715                 inherit = memdup_user(vol_args->qgroup_inherit, vol_args->size);
1716                 if (IS_ERR(inherit)) {
1717                         ret = PTR_ERR(inherit);
1718                         goto free_args;
1719                 }
1720         }
1721
1722         ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
1723                                               vol_args->fd, subvol, ptr,
1724                                               readonly, inherit);
1725         if (ret)
1726                 goto free_inherit;
1727
1728         if (ptr && copy_to_user(arg +
1729                                 offsetof(struct btrfs_ioctl_vol_args_v2,
1730                                         transid),
1731                                 ptr, sizeof(*ptr)))
1732                 ret = -EFAULT;
1733
1734 free_inherit:
1735         kfree(inherit);
1736 free_args:
1737         kfree(vol_args);
1738         return ret;
1739 }
1740
1741 static noinline int btrfs_ioctl_subvol_getflags(struct file *file,
1742                                                 void __user *arg)
1743 {
1744         struct inode *inode = file_inode(file);
1745         struct btrfs_root *root = BTRFS_I(inode)->root;
1746         int ret = 0;
1747         u64 flags = 0;
1748
1749         if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID)
1750                 return -EINVAL;
1751
1752         down_read(&root->fs_info->subvol_sem);
1753         if (btrfs_root_readonly(root))
1754                 flags |= BTRFS_SUBVOL_RDONLY;
1755         up_read(&root->fs_info->subvol_sem);
1756
1757         if (copy_to_user(arg, &flags, sizeof(flags)))
1758                 ret = -EFAULT;
1759
1760         return ret;
1761 }
1762
1763 static noinline int btrfs_ioctl_subvol_setflags(struct file *file,
1764                                               void __user *arg)
1765 {
1766         struct inode *inode = file_inode(file);
1767         struct btrfs_root *root = BTRFS_I(inode)->root;
1768         struct btrfs_trans_handle *trans;
1769         u64 root_flags;
1770         u64 flags;
1771         int ret = 0;
1772
1773         if (!inode_owner_or_capable(inode))
1774                 return -EPERM;
1775
1776         ret = mnt_want_write_file(file);
1777         if (ret)
1778                 goto out;
1779
1780         if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
1781                 ret = -EINVAL;
1782                 goto out_drop_write;
1783         }
1784
1785         if (copy_from_user(&flags, arg, sizeof(flags))) {
1786                 ret = -EFAULT;
1787                 goto out_drop_write;
1788         }
1789
1790         if (flags & BTRFS_SUBVOL_CREATE_ASYNC) {
1791                 ret = -EINVAL;
1792                 goto out_drop_write;
1793         }
1794
1795         if (flags & ~BTRFS_SUBVOL_RDONLY) {
1796                 ret = -EOPNOTSUPP;
1797                 goto out_drop_write;
1798         }
1799
1800         down_write(&root->fs_info->subvol_sem);
1801
1802         /* nothing to do */
1803         if (!!(flags & BTRFS_SUBVOL_RDONLY) == btrfs_root_readonly(root))
1804                 goto out_drop_sem;
1805
1806         root_flags = btrfs_root_flags(&root->root_item);
1807         if (flags & BTRFS_SUBVOL_RDONLY) {
1808                 btrfs_set_root_flags(&root->root_item,
1809                                      root_flags | BTRFS_ROOT_SUBVOL_RDONLY);
1810         } else {
1811                 /*
1812                  * Block RO -> RW transition if this subvolume is involved in
1813                  * send
1814                  */
1815                 spin_lock(&root->root_item_lock);
1816                 if (root->send_in_progress == 0) {
1817                         btrfs_set_root_flags(&root->root_item,
1818                                      root_flags & ~BTRFS_ROOT_SUBVOL_RDONLY);
1819                         spin_unlock(&root->root_item_lock);
1820                 } else {
1821                         spin_unlock(&root->root_item_lock);
1822                         btrfs_warn(root->fs_info,
1823                         "Attempt to set subvolume %llu read-write during send",
1824                                         root->root_key.objectid);
1825                         ret = -EPERM;
1826                         goto out_drop_sem;
1827                 }
1828         }
1829
1830         trans = btrfs_start_transaction(root, 1);
1831         if (IS_ERR(trans)) {
1832                 ret = PTR_ERR(trans);
1833                 goto out_reset;
1834         }
1835
1836         ret = btrfs_update_root(trans, root->fs_info->tree_root,
1837                                 &root->root_key, &root->root_item);
1838
1839         btrfs_commit_transaction(trans, root);
1840 out_reset:
1841         if (ret)
1842                 btrfs_set_root_flags(&root->root_item, root_flags);
1843 out_drop_sem:
1844         up_write(&root->fs_info->subvol_sem);
1845 out_drop_write:
1846         mnt_drop_write_file(file);
1847 out:
1848         return ret;
1849 }
1850
1851 /*
1852  * helper to check if the subvolume references other subvolumes
1853  */
1854 static noinline int may_destroy_subvol(struct btrfs_root *root)
1855 {
1856         struct btrfs_path *path;
1857         struct btrfs_dir_item *di;
1858         struct btrfs_key key;
1859         u64 dir_id;
1860         int ret;
1861
1862         path = btrfs_alloc_path();
1863         if (!path)
1864                 return -ENOMEM;
1865
1866         /* Make sure this root isn't set as the default subvol */
1867         dir_id = btrfs_super_root_dir(root->fs_info->super_copy);
1868         di = btrfs_lookup_dir_item(NULL, root->fs_info->tree_root, path,
1869                                    dir_id, "default", 7, 0);
1870         if (di && !IS_ERR(di)) {
1871                 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &key);
1872                 if (key.objectid == root->root_key.objectid) {
1873                         ret = -EPERM;
1874                         btrfs_err(root->fs_info, "deleting default subvolume "
1875                                   "%llu is not allowed", key.objectid);
1876                         goto out;
1877                 }
1878                 btrfs_release_path(path);
1879         }
1880
1881         key.objectid = root->root_key.objectid;
1882         key.type = BTRFS_ROOT_REF_KEY;
1883         key.offset = (u64)-1;
1884
1885         ret = btrfs_search_slot(NULL, root->fs_info->tree_root,
1886                                 &key, path, 0, 0);
1887         if (ret < 0)
1888                 goto out;
1889         BUG_ON(ret == 0);
1890
1891         ret = 0;
1892         if (path->slots[0] > 0) {
1893                 path->slots[0]--;
1894                 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1895                 if (key.objectid == root->root_key.objectid &&
1896                     key.type == BTRFS_ROOT_REF_KEY)
1897                         ret = -ENOTEMPTY;
1898         }
1899 out:
1900         btrfs_free_path(path);
1901         return ret;
1902 }
1903
1904 static noinline int key_in_sk(struct btrfs_key *key,
1905                               struct btrfs_ioctl_search_key *sk)
1906 {
1907         struct btrfs_key test;
1908         int ret;
1909
1910         test.objectid = sk->min_objectid;
1911         test.type = sk->min_type;
1912         test.offset = sk->min_offset;
1913
1914         ret = btrfs_comp_cpu_keys(key, &test);
1915         if (ret < 0)
1916                 return 0;
1917
1918         test.objectid = sk->max_objectid;
1919         test.type = sk->max_type;
1920         test.offset = sk->max_offset;
1921
1922         ret = btrfs_comp_cpu_keys(key, &test);
1923         if (ret > 0)
1924                 return 0;
1925         return 1;
1926 }
1927
1928 static noinline int copy_to_sk(struct btrfs_root *root,
1929                                struct btrfs_path *path,
1930                                struct btrfs_key *key,
1931                                struct btrfs_ioctl_search_key *sk,
1932                                size_t *buf_size,
1933                                char __user *ubuf,
1934                                unsigned long *sk_offset,
1935                                int *num_found)
1936 {
1937         u64 found_transid;
1938         struct extent_buffer *leaf;
1939         struct btrfs_ioctl_search_header sh;
1940         struct btrfs_key test;
1941         unsigned long item_off;
1942         unsigned long item_len;
1943         int nritems;
1944         int i;
1945         int slot;
1946         int ret = 0;
1947
1948         leaf = path->nodes[0];
1949         slot = path->slots[0];
1950         nritems = btrfs_header_nritems(leaf);
1951
1952         if (btrfs_header_generation(leaf) > sk->max_transid) {
1953                 i = nritems;
1954                 goto advance_key;
1955         }
1956         found_transid = btrfs_header_generation(leaf);
1957
1958         for (i = slot; i < nritems; i++) {
1959                 item_off = btrfs_item_ptr_offset(leaf, i);
1960                 item_len = btrfs_item_size_nr(leaf, i);
1961
1962                 btrfs_item_key_to_cpu(leaf, key, i);
1963                 if (!key_in_sk(key, sk))
1964                         continue;
1965
1966                 if (sizeof(sh) + item_len > *buf_size) {
1967                         if (*num_found) {
1968                                 ret = 1;
1969                                 goto out;
1970                         }
1971
1972                         /*
1973                          * return one empty item back for v1, which does not
1974                          * handle -EOVERFLOW
1975                          */
1976
1977                         *buf_size = sizeof(sh) + item_len;
1978                         item_len = 0;
1979                         ret = -EOVERFLOW;
1980                 }
1981
1982                 if (sizeof(sh) + item_len + *sk_offset > *buf_size) {
1983                         ret = 1;
1984                         goto out;
1985                 }
1986
1987                 sh.objectid = key->objectid;
1988                 sh.offset = key->offset;
1989                 sh.type = key->type;
1990                 sh.len = item_len;
1991                 sh.transid = found_transid;
1992
1993                 /* copy search result header */
1994                 if (copy_to_user(ubuf + *sk_offset, &sh, sizeof(sh))) {
1995                         ret = -EFAULT;
1996                         goto out;
1997                 }
1998
1999                 *sk_offset += sizeof(sh);
2000
2001                 if (item_len) {
2002                         char __user *up = ubuf + *sk_offset;
2003                         /* copy the item */
2004                         if (read_extent_buffer_to_user(leaf, up,
2005                                                        item_off, item_len)) {
2006                                 ret = -EFAULT;
2007                                 goto out;
2008                         }
2009
2010                         *sk_offset += item_len;
2011                 }
2012                 (*num_found)++;
2013
2014                 if (ret) /* -EOVERFLOW from above */
2015                         goto out;
2016
2017                 if (*num_found >= sk->nr_items) {
2018                         ret = 1;
2019                         goto out;
2020                 }
2021         }
2022 advance_key:
2023         ret = 0;
2024         test.objectid = sk->max_objectid;
2025         test.type = sk->max_type;
2026         test.offset = sk->max_offset;
2027         if (btrfs_comp_cpu_keys(key, &test) >= 0)
2028                 ret = 1;
2029         else if (key->offset < (u64)-1)
2030                 key->offset++;
2031         else if (key->type < (u8)-1) {
2032                 key->offset = 0;
2033                 key->type++;
2034         } else if (key->objectid < (u64)-1) {
2035                 key->offset = 0;
2036                 key->type = 0;
2037                 key->objectid++;
2038         } else
2039                 ret = 1;
2040 out:
2041         /*
2042          *  0: all items from this leaf copied, continue with next
2043          *  1: * more items can be copied, but unused buffer is too small
2044          *     * all items were found
2045          *     Either way, it will stops the loop which iterates to the next
2046          *     leaf
2047          *  -EOVERFLOW: item was to large for buffer
2048          *  -EFAULT: could not copy extent buffer back to userspace
2049          */
2050         return ret;
2051 }
2052
2053 static noinline int search_ioctl(struct inode *inode,
2054                                  struct btrfs_ioctl_search_key *sk,
2055                                  size_t *buf_size,
2056                                  char __user *ubuf)
2057 {
2058         struct btrfs_root *root;
2059         struct btrfs_key key;
2060         struct btrfs_path *path;
2061         struct btrfs_fs_info *info = BTRFS_I(inode)->root->fs_info;
2062         int ret;
2063         int num_found = 0;
2064         unsigned long sk_offset = 0;
2065
2066         if (*buf_size < sizeof(struct btrfs_ioctl_search_header)) {
2067                 *buf_size = sizeof(struct btrfs_ioctl_search_header);
2068                 return -EOVERFLOW;
2069         }
2070
2071         path = btrfs_alloc_path();
2072         if (!path)
2073                 return -ENOMEM;
2074
2075         if (sk->tree_id == 0) {
2076                 /* search the root of the inode that was passed */
2077                 root = BTRFS_I(inode)->root;
2078         } else {
2079                 key.objectid = sk->tree_id;
2080                 key.type = BTRFS_ROOT_ITEM_KEY;
2081                 key.offset = (u64)-1;
2082                 root = btrfs_read_fs_root_no_name(info, &key);
2083                 if (IS_ERR(root)) {
2084                         btrfs_err(info, "could not find root %llu",
2085                                sk->tree_id);
2086                         btrfs_free_path(path);
2087                         return -ENOENT;
2088                 }
2089         }
2090
2091         key.objectid = sk->min_objectid;
2092         key.type = sk->min_type;
2093         key.offset = sk->min_offset;
2094
2095         while (1) {
2096                 ret = btrfs_search_forward(root, &key, path, sk->min_transid);
2097                 if (ret != 0) {
2098                         if (ret > 0)
2099                                 ret = 0;
2100                         goto err;
2101                 }
2102                 ret = copy_to_sk(root, path, &key, sk, buf_size, ubuf,
2103                                  &sk_offset, &num_found);
2104                 btrfs_release_path(path);
2105                 if (ret)
2106                         break;
2107
2108         }
2109         if (ret > 0)
2110                 ret = 0;
2111 err:
2112         sk->nr_items = num_found;
2113         btrfs_free_path(path);
2114         return ret;
2115 }
2116
2117 static noinline int btrfs_ioctl_tree_search(struct file *file,
2118                                            void __user *argp)
2119 {
2120         struct btrfs_ioctl_search_args __user *uargs;
2121         struct btrfs_ioctl_search_key sk;
2122         struct inode *inode;
2123         int ret;
2124         size_t buf_size;
2125
2126         if (!capable(CAP_SYS_ADMIN))
2127                 return -EPERM;
2128
2129         uargs = (struct btrfs_ioctl_search_args __user *)argp;
2130
2131         if (copy_from_user(&sk, &uargs->key, sizeof(sk)))
2132                 return -EFAULT;
2133
2134         buf_size = sizeof(uargs->buf);
2135
2136         inode = file_inode(file);
2137         ret = search_ioctl(inode, &sk, &buf_size, uargs->buf);
2138
2139         /*
2140          * In the origin implementation an overflow is handled by returning a
2141          * search header with a len of zero, so reset ret.
2142          */
2143         if (ret == -EOVERFLOW)
2144                 ret = 0;
2145
2146         if (ret == 0 && copy_to_user(&uargs->key, &sk, sizeof(sk)))
2147                 ret = -EFAULT;
2148         return ret;
2149 }
2150
2151 static noinline int btrfs_ioctl_tree_search_v2(struct file *file,
2152                                                void __user *argp)
2153 {
2154         struct btrfs_ioctl_search_args_v2 __user *uarg;
2155         struct btrfs_ioctl_search_args_v2 args;
2156         struct inode *inode;
2157         int ret;
2158         size_t buf_size;
2159         const size_t buf_limit = 16 * 1024 * 1024;
2160
2161         if (!capable(CAP_SYS_ADMIN))
2162                 return -EPERM;
2163
2164         /* copy search header and buffer size */
2165         uarg = (struct btrfs_ioctl_search_args_v2 __user *)argp;
2166         if (copy_from_user(&args, uarg, sizeof(args)))
2167                 return -EFAULT;
2168
2169         buf_size = args.buf_size;
2170
2171         if (buf_size < sizeof(struct btrfs_ioctl_search_header))
2172                 return -EOVERFLOW;
2173
2174         /* limit result size to 16MB */
2175         if (buf_size > buf_limit)
2176                 buf_size = buf_limit;
2177
2178         inode = file_inode(file);
2179         ret = search_ioctl(inode, &args.key, &buf_size,
2180                            (char *)(&uarg->buf[0]));
2181         if (ret == 0 && copy_to_user(&uarg->key, &args.key, sizeof(args.key)))
2182                 ret = -EFAULT;
2183         else if (ret == -EOVERFLOW &&
2184                 copy_to_user(&uarg->buf_size, &buf_size, sizeof(buf_size)))
2185                 ret = -EFAULT;
2186
2187         return ret;
2188 }
2189
2190 /*
2191  * Search INODE_REFs to identify path name of 'dirid' directory
2192  * in a 'tree_id' tree. and sets path name to 'name'.
2193  */
2194 static noinline int btrfs_search_path_in_tree(struct btrfs_fs_info *info,
2195                                 u64 tree_id, u64 dirid, char *name)
2196 {
2197         struct btrfs_root *root;
2198         struct btrfs_key key;
2199         char *ptr;
2200         int ret = -1;
2201         int slot;
2202         int len;
2203         int total_len = 0;
2204         struct btrfs_inode_ref *iref;
2205         struct extent_buffer *l;
2206         struct btrfs_path *path;
2207
2208         if (dirid == BTRFS_FIRST_FREE_OBJECTID) {
2209                 name[0]='\0';
2210                 return 0;
2211         }
2212
2213         path = btrfs_alloc_path();
2214         if (!path)
2215                 return -ENOMEM;
2216
2217         ptr = &name[BTRFS_INO_LOOKUP_PATH_MAX];
2218
2219         key.objectid = tree_id;
2220         key.type = BTRFS_ROOT_ITEM_KEY;
2221         key.offset = (u64)-1;
2222         root = btrfs_read_fs_root_no_name(info, &key);
2223         if (IS_ERR(root)) {
2224                 btrfs_err(info, "could not find root %llu", tree_id);
2225                 ret = -ENOENT;
2226                 goto out;
2227         }
2228
2229         key.objectid = dirid;
2230         key.type = BTRFS_INODE_REF_KEY;
2231         key.offset = (u64)-1;
2232
2233         while (1) {
2234                 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2235                 if (ret < 0)
2236                         goto out;
2237                 else if (ret > 0) {
2238                         ret = btrfs_previous_item(root, path, dirid,
2239                                                   BTRFS_INODE_REF_KEY);
2240                         if (ret < 0)
2241                                 goto out;
2242                         else if (ret > 0) {
2243                                 ret = -ENOENT;
2244                                 goto out;
2245                         }
2246                 }
2247
2248                 l = path->nodes[0];
2249                 slot = path->slots[0];
2250                 btrfs_item_key_to_cpu(l, &key, slot);
2251
2252                 iref = btrfs_item_ptr(l, slot, struct btrfs_inode_ref);
2253                 len = btrfs_inode_ref_name_len(l, iref);
2254                 ptr -= len + 1;
2255                 total_len += len + 1;
2256                 if (ptr < name) {
2257                         ret = -ENAMETOOLONG;
2258                         goto out;
2259                 }
2260
2261                 *(ptr + len) = '/';
2262                 read_extent_buffer(l, ptr, (unsigned long)(iref + 1), len);
2263
2264                 if (key.offset == BTRFS_FIRST_FREE_OBJECTID)
2265                         break;
2266
2267                 btrfs_release_path(path);
2268                 key.objectid = key.offset;
2269                 key.offset = (u64)-1;
2270                 dirid = key.objectid;
2271         }
2272         memmove(name, ptr, total_len);
2273         name[total_len] = '\0';
2274         ret = 0;
2275 out:
2276         btrfs_free_path(path);
2277         return ret;
2278 }
2279
2280 static noinline int btrfs_ioctl_ino_lookup(struct file *file,
2281                                            void __user *argp)
2282 {
2283          struct btrfs_ioctl_ino_lookup_args *args;
2284          struct inode *inode;
2285         int ret = 0;
2286
2287         args = memdup_user(argp, sizeof(*args));
2288         if (IS_ERR(args))
2289                 return PTR_ERR(args);
2290
2291         inode = file_inode(file);
2292
2293         /*
2294          * Unprivileged query to obtain the containing subvolume root id. The
2295          * path is reset so it's consistent with btrfs_search_path_in_tree.
2296          */
2297         if (args->treeid == 0)
2298                 args->treeid = BTRFS_I(inode)->root->root_key.objectid;
2299
2300         if (args->objectid == BTRFS_FIRST_FREE_OBJECTID) {
2301                 args->name[0] = 0;
2302                 goto out;
2303         }
2304
2305         if (!capable(CAP_SYS_ADMIN)) {
2306                 ret = -EPERM;
2307                 goto out;
2308         }
2309
2310         ret = btrfs_search_path_in_tree(BTRFS_I(inode)->root->fs_info,
2311                                         args->treeid, args->objectid,
2312                                         args->name);
2313
2314 out:
2315         if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
2316                 ret = -EFAULT;
2317
2318         kfree(args);
2319         return ret;
2320 }
2321
2322 static noinline int btrfs_ioctl_snap_destroy(struct file *file,
2323                                              void __user *arg)
2324 {
2325         struct dentry *parent = file->f_path.dentry;
2326         struct dentry *dentry;
2327         struct inode *dir = d_inode(parent);
2328         struct inode *inode;
2329         struct btrfs_root *root = BTRFS_I(dir)->root;
2330         struct btrfs_root *dest = NULL;
2331         struct btrfs_ioctl_vol_args *vol_args;
2332         struct btrfs_trans_handle *trans;
2333         struct btrfs_block_rsv block_rsv;
2334         u64 root_flags;
2335         u64 qgroup_reserved;
2336         int namelen;
2337         int ret;
2338         int err = 0;
2339
2340         vol_args = memdup_user(arg, sizeof(*vol_args));
2341         if (IS_ERR(vol_args))
2342                 return PTR_ERR(vol_args);
2343
2344         vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
2345         namelen = strlen(vol_args->name);
2346         if (strchr(vol_args->name, '/') ||
2347             strncmp(vol_args->name, "..", namelen) == 0) {
2348                 err = -EINVAL;
2349                 goto out;
2350         }
2351
2352         err = mnt_want_write_file(file);
2353         if (err)
2354                 goto out;
2355
2356
2357         err = mutex_lock_killable_nested(&dir->i_mutex, I_MUTEX_PARENT);
2358         if (err == -EINTR)
2359                 goto out_drop_write;
2360         dentry = lookup_one_len(vol_args->name, parent, namelen);
2361         if (IS_ERR(dentry)) {
2362                 err = PTR_ERR(dentry);
2363                 goto out_unlock_dir;
2364         }
2365
2366         if (d_really_is_negative(dentry)) {
2367                 err = -ENOENT;
2368                 goto out_dput;
2369         }
2370
2371         inode = d_inode(dentry);
2372         dest = BTRFS_I(inode)->root;
2373         if (!capable(CAP_SYS_ADMIN)) {
2374                 /*
2375                  * Regular user.  Only allow this with a special mount
2376                  * option, when the user has write+exec access to the
2377                  * subvol root, and when rmdir(2) would have been
2378                  * allowed.
2379                  *
2380                  * Note that this is _not_ check that the subvol is
2381                  * empty or doesn't contain data that we wouldn't
2382                  * otherwise be able to delete.
2383                  *
2384                  * Users who want to delete empty subvols should try
2385                  * rmdir(2).
2386                  */
2387                 err = -EPERM;
2388                 if (!btrfs_test_opt(root, USER_SUBVOL_RM_ALLOWED))
2389                         goto out_dput;
2390
2391                 /*
2392                  * Do not allow deletion if the parent dir is the same
2393                  * as the dir to be deleted.  That means the ioctl
2394                  * must be called on the dentry referencing the root
2395                  * of the subvol, not a random directory contained
2396                  * within it.
2397                  */
2398                 err = -EINVAL;
2399                 if (root == dest)
2400                         goto out_dput;
2401
2402                 err = inode_permission(inode, MAY_WRITE | MAY_EXEC);
2403                 if (err)
2404                         goto out_dput;
2405         }
2406
2407         /* check if subvolume may be deleted by a user */
2408         err = btrfs_may_delete(dir, dentry, 1);
2409         if (err)
2410                 goto out_dput;
2411
2412         if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
2413                 err = -EINVAL;
2414                 goto out_dput;
2415         }
2416
2417         mutex_lock(&inode->i_mutex);
2418
2419         /*
2420          * Don't allow to delete a subvolume with send in progress. This is
2421          * inside the i_mutex so the error handling that has to drop the bit
2422          * again is not run concurrently.
2423          */
2424         spin_lock(&dest->root_item_lock);
2425         root_flags = btrfs_root_flags(&dest->root_item);
2426         if (dest->send_in_progress == 0) {
2427                 btrfs_set_root_flags(&dest->root_item,
2428                                 root_flags | BTRFS_ROOT_SUBVOL_DEAD);
2429                 spin_unlock(&dest->root_item_lock);
2430         } else {
2431                 spin_unlock(&dest->root_item_lock);
2432                 btrfs_warn(root->fs_info,
2433                         "Attempt to delete subvolume %llu during send",
2434                         dest->root_key.objectid);
2435                 err = -EPERM;
2436                 goto out_unlock_inode;
2437         }
2438
2439         down_write(&root->fs_info->subvol_sem);
2440
2441         err = may_destroy_subvol(dest);
2442         if (err)
2443                 goto out_up_write;
2444
2445         btrfs_init_block_rsv(&block_rsv, BTRFS_BLOCK_RSV_TEMP);
2446         /*
2447          * One for dir inode, two for dir entries, two for root
2448          * ref/backref.
2449          */
2450         err = btrfs_subvolume_reserve_metadata(root, &block_rsv,
2451                                                5, &qgroup_reserved, true);
2452         if (err)
2453                 goto out_up_write;
2454
2455         trans = btrfs_start_transaction(root, 0);
2456         if (IS_ERR(trans)) {
2457                 err = PTR_ERR(trans);
2458                 goto out_release;
2459         }
2460         trans->block_rsv = &block_rsv;
2461         trans->bytes_reserved = block_rsv.size;
2462
2463         ret = btrfs_unlink_subvol(trans, root, dir,
2464                                 dest->root_key.objectid,
2465                                 dentry->d_name.name,
2466                                 dentry->d_name.len);
2467         if (ret) {
2468                 err = ret;
2469                 btrfs_abort_transaction(trans, root, ret);
2470                 goto out_end_trans;
2471         }
2472
2473         btrfs_record_root_in_trans(trans, dest);
2474
2475         memset(&dest->root_item.drop_progress, 0,
2476                 sizeof(dest->root_item.drop_progress));
2477         dest->root_item.drop_level = 0;
2478         btrfs_set_root_refs(&dest->root_item, 0);
2479
2480         if (!test_and_set_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &dest->state)) {
2481                 ret = btrfs_insert_orphan_item(trans,
2482                                         root->fs_info->tree_root,
2483                                         dest->root_key.objectid);
2484                 if (ret) {
2485                         btrfs_abort_transaction(trans, root, ret);
2486                         err = ret;
2487                         goto out_end_trans;
2488                 }
2489         }
2490
2491         ret = btrfs_uuid_tree_rem(trans, root->fs_info->uuid_root,
2492                                   dest->root_item.uuid, BTRFS_UUID_KEY_SUBVOL,
2493                                   dest->root_key.objectid);
2494         if (ret && ret != -ENOENT) {
2495                 btrfs_abort_transaction(trans, root, ret);
2496                 err = ret;
2497                 goto out_end_trans;
2498         }
2499         if (!btrfs_is_empty_uuid(dest->root_item.received_uuid)) {
2500                 ret = btrfs_uuid_tree_rem(trans, root->fs_info->uuid_root,
2501                                           dest->root_item.received_uuid,
2502                                           BTRFS_UUID_KEY_RECEIVED_SUBVOL,
2503                                           dest->root_key.objectid);
2504                 if (ret && ret != -ENOENT) {
2505                         btrfs_abort_transaction(trans, root, ret);
2506                         err = ret;
2507                         goto out_end_trans;
2508                 }
2509         }
2510
2511 out_end_trans:
2512         trans->block_rsv = NULL;
2513         trans->bytes_reserved = 0;
2514         ret = btrfs_end_transaction(trans, root);
2515         if (ret && !err)
2516                 err = ret;
2517         inode->i_flags |= S_DEAD;
2518 out_release:
2519         btrfs_subvolume_release_metadata(root, &block_rsv, qgroup_reserved);
2520 out_up_write:
2521         up_write(&root->fs_info->subvol_sem);
2522         if (err) {
2523                 spin_lock(&dest->root_item_lock);
2524                 root_flags = btrfs_root_flags(&dest->root_item);
2525                 btrfs_set_root_flags(&dest->root_item,
2526                                 root_flags & ~BTRFS_ROOT_SUBVOL_DEAD);
2527                 spin_unlock(&dest->root_item_lock);
2528         }
2529 out_unlock_inode:
2530         mutex_unlock(&inode->i_mutex);
2531         if (!err) {
2532                 d_invalidate(dentry);
2533                 btrfs_invalidate_inodes(dest);
2534                 d_delete(dentry);
2535                 ASSERT(dest->send_in_progress == 0);
2536
2537                 /* the last ref */
2538                 if (dest->ino_cache_inode) {
2539                         iput(dest->ino_cache_inode);
2540                         dest->ino_cache_inode = NULL;
2541                 }
2542         }
2543 out_dput:
2544         dput(dentry);
2545 out_unlock_dir:
2546         mutex_unlock(&dir->i_mutex);
2547 out_drop_write:
2548         mnt_drop_write_file(file);
2549 out:
2550         kfree(vol_args);
2551         return err;
2552 }
2553
2554 static int btrfs_ioctl_defrag(struct file *file, void __user *argp)
2555 {
2556         struct inode *inode = file_inode(file);
2557         struct btrfs_root *root = BTRFS_I(inode)->root;
2558         struct btrfs_ioctl_defrag_range_args *range;
2559         int ret;
2560
2561         ret = mnt_want_write_file(file);
2562         if (ret)
2563                 return ret;
2564
2565         if (btrfs_root_readonly(root)) {
2566                 ret = -EROFS;
2567                 goto out;
2568         }
2569
2570         switch (inode->i_mode & S_IFMT) {
2571         case S_IFDIR:
2572                 if (!capable(CAP_SYS_ADMIN)) {
2573                         ret = -EPERM;
2574                         goto out;
2575                 }
2576                 ret = btrfs_defrag_root(root);
2577                 if (ret)
2578                         goto out;
2579                 ret = btrfs_defrag_root(root->fs_info->extent_root);
2580                 break;
2581         case S_IFREG:
2582                 if (!(file->f_mode & FMODE_WRITE)) {
2583                         ret = -EINVAL;
2584                         goto out;
2585                 }
2586
2587                 range = kzalloc(sizeof(*range), GFP_KERNEL);
2588                 if (!range) {
2589                         ret = -ENOMEM;
2590                         goto out;
2591                 }
2592
2593                 if (argp) {
2594                         if (copy_from_user(range, argp,
2595                                            sizeof(*range))) {
2596                                 ret = -EFAULT;
2597                                 kfree(range);
2598                                 goto out;
2599                         }
2600                         /* compression requires us to start the IO */
2601                         if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
2602                                 range->flags |= BTRFS_DEFRAG_RANGE_START_IO;
2603                                 range->extent_thresh = (u32)-1;
2604                         }
2605                 } else {
2606                         /* the rest are all set to zero by kzalloc */
2607                         range->len = (u64)-1;
2608                 }
2609                 ret = btrfs_defrag_file(file_inode(file), file,
2610                                         range, 0, 0);
2611                 if (ret > 0)
2612                         ret = 0;
2613                 kfree(range);
2614                 break;
2615         default:
2616                 ret = -EINVAL;
2617         }
2618 out:
2619         mnt_drop_write_file(file);
2620         return ret;
2621 }
2622
2623 static long btrfs_ioctl_add_dev(struct btrfs_root *root, void __user *arg)
2624 {
2625         struct btrfs_ioctl_vol_args *vol_args;
2626         int ret;
2627
2628         if (!capable(CAP_SYS_ADMIN))
2629                 return -EPERM;
2630
2631         if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
2632                         1)) {
2633                 return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
2634         }
2635
2636         mutex_lock(&root->fs_info->volume_mutex);
2637         vol_args = memdup_user(arg, sizeof(*vol_args));
2638         if (IS_ERR(vol_args)) {
2639                 ret = PTR_ERR(vol_args);
2640                 goto out;
2641         }
2642
2643         vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
2644         ret = btrfs_init_new_device(root, vol_args->name);
2645
2646         if (!ret)
2647                 btrfs_info(root->fs_info, "disk added %s",vol_args->name);
2648
2649         kfree(vol_args);
2650 out:
2651         mutex_unlock(&root->fs_info->volume_mutex);
2652         atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
2653         return ret;
2654 }
2655
2656 static long btrfs_ioctl_rm_dev(struct file *file, void __user *arg)
2657 {
2658         struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
2659         struct btrfs_ioctl_vol_args *vol_args;
2660         int ret;
2661
2662         if (!capable(CAP_SYS_ADMIN))
2663                 return -EPERM;
2664
2665         ret = mnt_want_write_file(file);
2666         if (ret)
2667                 return ret;
2668
2669         vol_args = memdup_user(arg, sizeof(*vol_args));
2670         if (IS_ERR(vol_args)) {
2671                 ret = PTR_ERR(vol_args);
2672                 goto err_drop;
2673         }
2674
2675         vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
2676
2677         if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
2678                         1)) {
2679                 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
2680                 goto out;
2681         }
2682
2683         mutex_lock(&root->fs_info->volume_mutex);
2684         ret = btrfs_rm_device(root, vol_args->name);
2685         mutex_unlock(&root->fs_info->volume_mutex);
2686         atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
2687
2688         if (!ret)
2689                 btrfs_info(root->fs_info, "disk deleted %s",vol_args->name);
2690
2691 out:
2692         kfree(vol_args);
2693 err_drop:
2694         mnt_drop_write_file(file);
2695         return ret;
2696 }
2697
2698 static long btrfs_ioctl_fs_info(struct btrfs_root *root, void __user *arg)
2699 {
2700         struct btrfs_ioctl_fs_info_args *fi_args;
2701         struct btrfs_device *device;
2702         struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
2703         int ret = 0;
2704
2705         fi_args = kzalloc(sizeof(*fi_args), GFP_KERNEL);
2706         if (!fi_args)
2707                 return -ENOMEM;
2708
2709         mutex_lock(&fs_devices->device_list_mutex);
2710         fi_args->num_devices = fs_devices->num_devices;
2711         memcpy(&fi_args->fsid, root->fs_info->fsid, sizeof(fi_args->fsid));
2712
2713         list_for_each_entry(device, &fs_devices->devices, dev_list) {
2714                 if (device->devid > fi_args->max_id)
2715                         fi_args->max_id = device->devid;
2716         }
2717         mutex_unlock(&fs_devices->device_list_mutex);
2718
2719         fi_args->nodesize = root->fs_info->super_copy->nodesize;
2720         fi_args->sectorsize = root->fs_info->super_copy->sectorsize;
2721         fi_args->clone_alignment = root->fs_info->super_copy->sectorsize;
2722
2723         if (copy_to_user(arg, fi_args, sizeof(*fi_args)))
2724                 ret = -EFAULT;
2725
2726         kfree(fi_args);
2727         return ret;
2728 }
2729
2730 static long btrfs_ioctl_dev_info(struct btrfs_root *root, void __user *arg)
2731 {
2732         struct btrfs_ioctl_dev_info_args *di_args;
2733         struct btrfs_device *dev;
2734         struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
2735         int ret = 0;
2736         char *s_uuid = NULL;
2737
2738         di_args = memdup_user(arg, sizeof(*di_args));
2739         if (IS_ERR(di_args))
2740                 return PTR_ERR(di_args);
2741
2742         if (!btrfs_is_empty_uuid(di_args->uuid))
2743                 s_uuid = di_args->uuid;
2744
2745         mutex_lock(&fs_devices->device_list_mutex);
2746         dev = btrfs_find_device(root->fs_info, di_args->devid, s_uuid, NULL);
2747
2748         if (!dev) {
2749                 ret = -ENODEV;
2750                 goto out;
2751         }
2752
2753         di_args->devid = dev->devid;
2754         di_args->bytes_used = btrfs_device_get_bytes_used(dev);
2755         di_args->total_bytes = btrfs_device_get_total_bytes(dev);
2756         memcpy(di_args->uuid, dev->uuid, sizeof(di_args->uuid));
2757         if (dev->name) {
2758                 struct rcu_string *name;
2759
2760                 rcu_read_lock();
2761                 name = rcu_dereference(dev->name);
2762                 strncpy(di_args->path, name->str, sizeof(di_args->path));
2763                 rcu_read_unlock();
2764                 di_args->path[sizeof(di_args->path) - 1] = 0;
2765         } else {
2766                 di_args->path[0] = '\0';
2767         }
2768
2769 out:
2770         mutex_unlock(&fs_devices->device_list_mutex);
2771         if (ret == 0 && copy_to_user(arg, di_args, sizeof(*di_args)))
2772                 ret = -EFAULT;
2773
2774         kfree(di_args);
2775         return ret;
2776 }
2777
2778 static struct page *extent_same_get_page(struct inode *inode, pgoff_t index)
2779 {
2780         struct page *page;
2781         struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2782
2783         page = grab_cache_page(inode->i_mapping, index);
2784         if (!page)
2785                 return NULL;
2786
2787         if (!PageUptodate(page)) {
2788                 if (extent_read_full_page_nolock(tree, page, btrfs_get_extent,
2789                                                  0))
2790                         return NULL;
2791                 lock_page(page);
2792                 if (!PageUptodate(page)) {
2793                         unlock_page(page);
2794                         page_cache_release(page);
2795                         return NULL;
2796                 }
2797         }
2798         unlock_page(page);
2799
2800         return page;
2801 }
2802
2803 static int gather_extent_pages(struct inode *inode, struct page **pages,
2804                                int num_pages, u64 off)
2805 {
2806         int i;
2807         pgoff_t index = off >> PAGE_CACHE_SHIFT;
2808
2809         for (i = 0; i < num_pages; i++) {
2810                 pages[i] = extent_same_get_page(inode, index + i);
2811                 if (!pages[i])
2812                         return -ENOMEM;
2813         }
2814         return 0;
2815 }
2816
2817 static inline void lock_extent_range(struct inode *inode, u64 off, u64 len)
2818 {
2819         /* do any pending delalloc/csum calc on src, one way or
2820            another, and lock file content */
2821         while (1) {
2822                 struct btrfs_ordered_extent *ordered;
2823                 lock_extent(&BTRFS_I(inode)->io_tree, off, off + len - 1);
2824                 ordered = btrfs_lookup_first_ordered_extent(inode,
2825                                                             off + len - 1);
2826                 if ((!ordered ||
2827                      ordered->file_offset + ordered->len <= off ||
2828                      ordered->file_offset >= off + len) &&
2829                     !test_range_bit(&BTRFS_I(inode)->io_tree, off,
2830                                     off + len - 1, EXTENT_DELALLOC, 0, NULL)) {
2831                         if (ordered)
2832                                 btrfs_put_ordered_extent(ordered);
2833                         break;
2834                 }
2835                 unlock_extent(&BTRFS_I(inode)->io_tree, off, off + len - 1);
2836                 if (ordered)
2837                         btrfs_put_ordered_extent(ordered);
2838                 btrfs_wait_ordered_range(inode, off, len);
2839         }
2840 }
2841
2842 static void btrfs_double_inode_unlock(struct inode *inode1, struct inode *inode2)
2843 {
2844         mutex_unlock(&inode1->i_mutex);
2845         mutex_unlock(&inode2->i_mutex);
2846 }
2847
2848 static void btrfs_double_inode_lock(struct inode *inode1, struct inode *inode2)
2849 {
2850         if (inode1 < inode2)
2851                 swap(inode1, inode2);
2852
2853         mutex_lock_nested(&inode1->i_mutex, I_MUTEX_PARENT);
2854         mutex_lock_nested(&inode2->i_mutex, I_MUTEX_CHILD);
2855 }
2856
2857 static void btrfs_double_extent_unlock(struct inode *inode1, u64 loff1,
2858                                       struct inode *inode2, u64 loff2, u64 len)
2859 {
2860         unlock_extent(&BTRFS_I(inode1)->io_tree, loff1, loff1 + len - 1);
2861         unlock_extent(&BTRFS_I(inode2)->io_tree, loff2, loff2 + len - 1);
2862 }
2863
2864 static void btrfs_double_extent_lock(struct inode *inode1, u64 loff1,
2865                                      struct inode *inode2, u64 loff2, u64 len)
2866 {
2867         if (inode1 < inode2) {
2868                 swap(inode1, inode2);
2869                 swap(loff1, loff2);
2870         }
2871         lock_extent_range(inode1, loff1, len);
2872         lock_extent_range(inode2, loff2, len);
2873 }
2874
2875 struct cmp_pages {
2876         int             num_pages;
2877         struct page     **src_pages;
2878         struct page     **dst_pages;
2879 };
2880
2881 static void btrfs_cmp_data_free(struct cmp_pages *cmp)
2882 {
2883         int i;
2884         struct page *pg;
2885
2886         for (i = 0; i < cmp->num_pages; i++) {
2887                 pg = cmp->src_pages[i];
2888                 if (pg)
2889                         page_cache_release(pg);
2890                 pg = cmp->dst_pages[i];
2891                 if (pg)
2892                         page_cache_release(pg);
2893         }
2894         kfree(cmp->src_pages);
2895         kfree(cmp->dst_pages);
2896 }
2897
2898 static int btrfs_cmp_data_prepare(struct inode *src, u64 loff,
2899                                   struct inode *dst, u64 dst_loff,
2900                                   u64 len, struct cmp_pages *cmp)
2901 {
2902         int ret;
2903         int num_pages = PAGE_CACHE_ALIGN(len) >> PAGE_CACHE_SHIFT;
2904         struct page **src_pgarr, **dst_pgarr;
2905
2906         /*
2907          * We must gather up all the pages before we initiate our
2908          * extent locking. We use an array for the page pointers. Size
2909          * of the array is bounded by len, which is in turn bounded by
2910          * BTRFS_MAX_DEDUPE_LEN.
2911          */
2912         src_pgarr = kzalloc(num_pages * sizeof(struct page *), GFP_NOFS);
2913         dst_pgarr = kzalloc(num_pages * sizeof(struct page *), GFP_NOFS);
2914         if (!src_pgarr || !dst_pgarr) {
2915                 kfree(src_pgarr);
2916                 kfree(dst_pgarr);
2917                 return -ENOMEM;
2918         }
2919         cmp->num_pages = num_pages;
2920         cmp->src_pages = src_pgarr;
2921         cmp->dst_pages = dst_pgarr;
2922
2923         ret = gather_extent_pages(src, cmp->src_pages, cmp->num_pages, loff);
2924         if (ret)
2925                 goto out;
2926
2927         ret = gather_extent_pages(dst, cmp->dst_pages, cmp->num_pages, dst_loff);
2928
2929 out:
2930         if (ret)
2931                 btrfs_cmp_data_free(cmp);
2932         return 0;
2933 }
2934
2935 static int btrfs_cmp_data(struct inode *src, u64 loff, struct inode *dst,
2936                           u64 dst_loff, u64 len, struct cmp_pages *cmp)
2937 {
2938         int ret = 0;
2939         int i;
2940         struct page *src_page, *dst_page;
2941         unsigned int cmp_len = PAGE_CACHE_SIZE;
2942         void *addr, *dst_addr;
2943
2944         i = 0;
2945         while (len) {
2946                 if (len < PAGE_CACHE_SIZE)
2947                         cmp_len = len;
2948
2949                 BUG_ON(i >= cmp->num_pages);
2950
2951                 src_page = cmp->src_pages[i];
2952                 dst_page = cmp->dst_pages[i];
2953
2954                 addr = kmap_atomic(src_page);
2955                 dst_addr = kmap_atomic(dst_page);
2956
2957                 flush_dcache_page(src_page);
2958                 flush_dcache_page(dst_page);
2959
2960                 if (memcmp(addr, dst_addr, cmp_len))
2961                         ret = BTRFS_SAME_DATA_DIFFERS;
2962
2963                 kunmap_atomic(addr);
2964                 kunmap_atomic(dst_addr);
2965
2966                 if (ret)
2967                         break;
2968
2969                 len -= cmp_len;
2970                 i++;
2971         }
2972
2973         return ret;
2974 }
2975
2976 static int extent_same_check_offsets(struct inode *inode, u64 off, u64 *plen,
2977                                      u64 olen)
2978 {
2979         u64 len = *plen;
2980         u64 bs = BTRFS_I(inode)->root->fs_info->sb->s_blocksize;
2981
2982         if (off + olen > inode->i_size || off + olen < off)
2983                 return -EINVAL;
2984
2985         /* if we extend to eof, continue to block boundary */
2986         if (off + len == inode->i_size)
2987                 *plen = len = ALIGN(inode->i_size, bs) - off;
2988
2989         /* Check that we are block aligned - btrfs_clone() requires this */
2990         if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs))
2991                 return -EINVAL;
2992
2993         return 0;
2994 }
2995
2996 static int btrfs_extent_same(struct inode *src, u64 loff, u64 olen,
2997                              struct inode *dst, u64 dst_loff)
2998 {
2999         int ret;
3000         u64 len = olen;
3001         struct cmp_pages cmp;
3002         int same_inode = 0;
3003         u64 same_lock_start = 0;
3004         u64 same_lock_len = 0;
3005
3006         if (src == dst)
3007                 same_inode = 1;
3008
3009         if (len == 0)
3010                 return 0;
3011
3012         if (same_inode) {
3013                 mutex_lock(&src->i_mutex);
3014
3015                 ret = extent_same_check_offsets(src, loff, &len, olen);
3016                 if (ret)
3017                         goto out_unlock;
3018
3019                 /*
3020                  * Single inode case wants the same checks, except we
3021                  * don't want our length pushed out past i_size as
3022                  * comparing that data range makes no sense.
3023                  *
3024                  * extent_same_check_offsets() will do this for an
3025                  * unaligned length at i_size, so catch it here and
3026                  * reject the request.
3027                  *
3028                  * This effectively means we require aligned extents
3029                  * for the single-inode case, whereas the other cases
3030                  * allow an unaligned length so long as it ends at
3031                  * i_size.
3032                  */
3033                 if (len != olen) {
3034                         ret = -EINVAL;
3035                         goto out_unlock;
3036                 }
3037
3038                 /* Check for overlapping ranges */
3039                 if (dst_loff + len > loff && dst_loff < loff + len) {
3040                         ret = -EINVAL;
3041                         goto out_unlock;
3042                 }
3043
3044                 same_lock_start = min_t(u64, loff, dst_loff);
3045                 same_lock_len = max_t(u64, loff, dst_loff) + len - same_lock_start;
3046         } else {
3047                 btrfs_double_inode_lock(src, dst);
3048
3049                 ret = extent_same_check_offsets(src, loff, &len, olen);
3050                 if (ret)
3051                         goto out_unlock;
3052
3053                 ret = extent_same_check_offsets(dst, dst_loff, &len, olen);
3054                 if (ret)
3055                         goto out_unlock;
3056         }
3057
3058         /* don't make the dst file partly checksummed */
3059         if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
3060             (BTRFS_I(dst)->flags & BTRFS_INODE_NODATASUM)) {
3061                 ret = -EINVAL;
3062                 goto out_unlock;
3063         }
3064
3065         ret = btrfs_cmp_data_prepare(src, loff, dst, dst_loff, olen, &cmp);
3066         if (ret)
3067                 goto out_unlock;
3068
3069         if (same_inode)
3070                 lock_extent_range(src, same_lock_start, same_lock_len);
3071         else
3072                 btrfs_double_extent_lock(src, loff, dst, dst_loff, len);
3073
3074         /* pass original length for comparison so we stay within i_size */
3075         ret = btrfs_cmp_data(src, loff, dst, dst_loff, olen, &cmp);
3076         if (ret == 0)
3077                 ret = btrfs_clone(src, dst, loff, olen, len, dst_loff, 1);
3078
3079         if (same_inode)
3080                 unlock_extent(&BTRFS_I(src)->io_tree, same_lock_start,
3081                               same_lock_start + same_lock_len - 1);
3082         else
3083                 btrfs_double_extent_unlock(src, loff, dst, dst_loff, len);
3084
3085         btrfs_cmp_data_free(&cmp);
3086 out_unlock:
3087         if (same_inode)
3088                 mutex_unlock(&src->i_mutex);
3089         else
3090                 btrfs_double_inode_unlock(src, dst);
3091
3092         return ret;
3093 }
3094
3095 #define BTRFS_MAX_DEDUPE_LEN    (16 * 1024 * 1024)
3096
3097 static long btrfs_ioctl_file_extent_same(struct file *file,
3098                         struct btrfs_ioctl_same_args __user *argp)
3099 {
3100         struct btrfs_ioctl_same_args *same = NULL;
3101         struct btrfs_ioctl_same_extent_info *info;
3102         struct inode *src = file_inode(file);
3103         u64 off;
3104         u64 len;
3105         int i;
3106         int ret;
3107         unsigned long size;
3108         u64 bs = BTRFS_I(src)->root->fs_info->sb->s_blocksize;
3109         bool is_admin = capable(CAP_SYS_ADMIN);
3110         u16 count;
3111
3112         if (!(file->f_mode & FMODE_READ))
3113                 return -EINVAL;
3114
3115         ret = mnt_want_write_file(file);
3116         if (ret)
3117                 return ret;
3118
3119         if (get_user(count, &argp->dest_count)) {
3120                 ret = -EFAULT;
3121                 goto out;
3122         }
3123
3124         size = offsetof(struct btrfs_ioctl_same_args __user, info[count]);
3125
3126         same = memdup_user(argp, size);
3127
3128         if (IS_ERR(same)) {
3129                 ret = PTR_ERR(same);
3130                 same = NULL;
3131                 goto out;
3132         }
3133
3134         off = same->logical_offset;
3135         len = same->length;
3136
3137         /*
3138          * Limit the total length we will dedupe for each operation.
3139          * This is intended to bound the total time spent in this
3140          * ioctl to something sane.
3141          */
3142         if (len > BTRFS_MAX_DEDUPE_LEN)
3143                 len = BTRFS_MAX_DEDUPE_LEN;
3144
3145         if (WARN_ON_ONCE(bs < PAGE_CACHE_SIZE)) {
3146                 /*
3147                  * Btrfs does not support blocksize < page_size. As a
3148                  * result, btrfs_cmp_data() won't correctly handle
3149                  * this situation without an update.
3150                  */
3151                 ret = -EINVAL;
3152                 goto out;
3153         }
3154
3155         ret = -EISDIR;
3156         if (S_ISDIR(src->i_mode))
3157                 goto out;
3158
3159         ret = -EACCES;
3160         if (!S_ISREG(src->i_mode))
3161                 goto out;
3162
3163         /* pre-format output fields to sane values */
3164         for (i = 0; i < count; i++) {
3165                 same->info[i].bytes_deduped = 0ULL;
3166                 same->info[i].status = 0;
3167         }
3168
3169         for (i = 0, info = same->info; i < count; i++, info++) {
3170                 struct inode *dst;
3171                 struct fd dst_file = fdget(info->fd);
3172                 if (!dst_file.file) {
3173                         info->status = -EBADF;
3174                         continue;
3175                 }
3176                 dst = file_inode(dst_file.file);
3177
3178                 if (!(is_admin || (dst_file.file->f_mode & FMODE_WRITE))) {
3179                         info->status = -EINVAL;
3180                 } else if (file->f_path.mnt != dst_file.file->f_path.mnt) {
3181                         info->status = -EXDEV;
3182                 } else if (S_ISDIR(dst->i_mode)) {
3183                         info->status = -EISDIR;
3184                 } else if (!S_ISREG(dst->i_mode)) {
3185                         info->status = -EACCES;
3186                 } else {
3187                         info->status = btrfs_extent_same(src, off, len, dst,
3188                                                         info->logical_offset);
3189                         if (info->status == 0)
3190                                 info->bytes_deduped += len;
3191                 }
3192                 fdput(dst_file);
3193         }
3194
3195         ret = copy_to_user(argp, same, size);
3196         if (ret)
3197                 ret = -EFAULT;
3198
3199 out:
3200         mnt_drop_write_file(file);
3201         kfree(same);
3202         return ret;
3203 }
3204
3205 /* Helper to check and see if this root currently has a ref on the given disk
3206  * bytenr.  If it does then we need to update the quota for this root.  This
3207  * doesn't do anything if quotas aren't enabled.
3208  */
3209 static int check_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
3210                      u64 disko)
3211 {
3212         struct seq_list tree_mod_seq_elem = SEQ_LIST_INIT(tree_mod_seq_elem);
3213         struct ulist *roots;
3214         struct ulist_iterator uiter;
3215         struct ulist_node *root_node = NULL;
3216         int ret;
3217
3218         if (!root->fs_info->quota_enabled)
3219                 return 1;
3220
3221         btrfs_get_tree_mod_seq(root->fs_info, &tree_mod_seq_elem);
3222         ret = btrfs_find_all_roots(trans, root->fs_info, disko,
3223                                    tree_mod_seq_elem.seq, &roots);
3224         if (ret < 0)
3225                 goto out;
3226         ret = 0;
3227         ULIST_ITER_INIT(&uiter);
3228         while ((root_node = ulist_next(roots, &uiter))) {
3229                 if (root_node->val == root->objectid) {
3230                         ret = 1;
3231                         break;
3232                 }
3233         }
3234         ulist_free(roots);
3235 out:
3236         btrfs_put_tree_mod_seq(root->fs_info, &tree_mod_seq_elem);
3237         return ret;
3238 }
3239
3240 static int clone_finish_inode_update(struct btrfs_trans_handle *trans,
3241                                      struct inode *inode,
3242                                      u64 endoff,
3243                                      const u64 destoff,
3244                                      const u64 olen,
3245                                      int no_time_update)
3246 {
3247         struct btrfs_root *root = BTRFS_I(inode)->root;
3248         int ret;
3249
3250         inode_inc_iversion(inode);
3251         if (!no_time_update)
3252                 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
3253         /*
3254          * We round up to the block size at eof when determining which
3255          * extents to clone above, but shouldn't round up the file size.
3256          */
3257         if (endoff > destoff + olen)
3258                 endoff = destoff + olen;
3259         if (endoff > inode->i_size)
3260                 btrfs_i_size_write(inode, endoff);
3261
3262         ret = btrfs_update_inode(trans, root, inode);
3263         if (ret) {
3264                 btrfs_abort_transaction(trans, root, ret);
3265                 btrfs_end_transaction(trans, root);
3266                 goto out;
3267         }
3268         ret = btrfs_end_transaction(trans, root);
3269 out:
3270         return ret;
3271 }
3272
3273 static void clone_update_extent_map(struct inode *inode,
3274                                     const struct btrfs_trans_handle *trans,
3275                                     const struct btrfs_path *path,
3276                                     const u64 hole_offset,
3277                                     const u64 hole_len)
3278 {
3279         struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
3280         struct extent_map *em;
3281         int ret;
3282
3283         em = alloc_extent_map();
3284         if (!em) {
3285                 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3286                         &BTRFS_I(inode)->runtime_flags);
3287                 return;
3288         }
3289
3290         if (path) {
3291                 struct btrfs_file_extent_item *fi;
3292
3293                 fi = btrfs_item_ptr(path->nodes[0], path->slots[0],
3294                                     struct btrfs_file_extent_item);
3295                 btrfs_extent_item_to_extent_map(inode, path, fi, false, em);
3296                 em->generation = -1;
3297                 if (btrfs_file_extent_type(path->nodes[0], fi) ==
3298                     BTRFS_FILE_EXTENT_INLINE)
3299                         set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3300                                 &BTRFS_I(inode)->runtime_flags);
3301         } else {
3302                 em->start = hole_offset;
3303                 em->len = hole_len;
3304                 em->ram_bytes = em->len;
3305                 em->orig_start = hole_offset;
3306                 em->block_start = EXTENT_MAP_HOLE;
3307                 em->block_len = 0;
3308                 em->orig_block_len = 0;
3309                 em->compress_type = BTRFS_COMPRESS_NONE;
3310                 em->generation = trans->transid;
3311         }
3312
3313         while (1) {
3314                 write_lock(&em_tree->lock);
3315                 ret = add_extent_mapping(em_tree, em, 1);
3316                 write_unlock(&em_tree->lock);
3317                 if (ret != -EEXIST) {
3318                         free_extent_map(em);
3319                         break;
3320                 }
3321                 btrfs_drop_extent_cache(inode, em->start,
3322                                         em->start + em->len - 1, 0);
3323         }
3324
3325         if (ret)
3326                 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3327                         &BTRFS_I(inode)->runtime_flags);
3328 }
3329
3330 /**
3331  * btrfs_clone() - clone a range from inode file to another
3332  *
3333  * @src: Inode to clone from
3334  * @inode: Inode to clone to
3335  * @off: Offset within source to start clone from
3336  * @olen: Original length, passed by user, of range to clone
3337  * @olen_aligned: Block-aligned value of olen
3338  * @destoff: Offset within @inode to start clone
3339  * @no_time_update: Whether to update mtime/ctime on the target inode
3340  */
3341 static int btrfs_clone(struct inode *src, struct inode *inode,
3342                        const u64 off, const u64 olen, const u64 olen_aligned,
3343                        const u64 destoff, int no_time_update)
3344 {
3345         struct btrfs_root *root = BTRFS_I(inode)->root;
3346         struct btrfs_path *path = NULL;
3347         struct extent_buffer *leaf;
3348         struct btrfs_trans_handle *trans;
3349         char *buf = NULL;
3350         struct btrfs_key key;
3351         u32 nritems;
3352         int slot;
3353         int ret;
3354         int no_quota;
3355         const u64 len = olen_aligned;
3356         u64 last_disko = 0;
3357         u64 last_dest_end = destoff;
3358
3359         ret = -ENOMEM;
3360         buf = vmalloc(root->nodesize);
3361         if (!buf)
3362                 return ret;
3363
3364         path = btrfs_alloc_path();
3365         if (!path) {
3366                 vfree(buf);
3367                 return ret;
3368         }
3369
3370         path->reada = 2;
3371         /* clone data */
3372         key.objectid = btrfs_ino(src);
3373         key.type = BTRFS_EXTENT_DATA_KEY;
3374         key.offset = off;
3375
3376         while (1) {
3377                 u64 next_key_min_offset = key.offset + 1;
3378
3379                 /*
3380                  * note the key will change type as we walk through the
3381                  * tree.
3382                  */
3383                 path->leave_spinning = 1;
3384                 ret = btrfs_search_slot(NULL, BTRFS_I(src)->root, &key, path,
3385                                 0, 0);
3386                 if (ret < 0)
3387                         goto out;
3388                 /*
3389                  * First search, if no extent item that starts at offset off was
3390                  * found but the previous item is an extent item, it's possible
3391                  * it might overlap our target range, therefore process it.
3392                  */
3393                 if (key.offset == off && ret > 0 && path->slots[0] > 0) {
3394                         btrfs_item_key_to_cpu(path->nodes[0], &key,
3395                                               path->slots[0] - 1);
3396                         if (key.type == BTRFS_EXTENT_DATA_KEY)
3397                                 path->slots[0]--;
3398                 }
3399
3400                 nritems = btrfs_header_nritems(path->nodes[0]);
3401 process_slot:
3402                 no_quota = 1;
3403                 if (path->slots[0] >= nritems) {
3404                         ret = btrfs_next_leaf(BTRFS_I(src)->root, path);
3405                         if (ret < 0)
3406                                 goto out;
3407                         if (ret > 0)
3408                                 break;
3409                         nritems = btrfs_header_nritems(path->nodes[0]);
3410                 }
3411                 leaf = path->nodes[0];
3412                 slot = path->slots[0];
3413
3414                 btrfs_item_key_to_cpu(leaf, &key, slot);
3415                 if (key.type > BTRFS_EXTENT_DATA_KEY ||
3416                     key.objectid != btrfs_ino(src))
3417                         break;
3418
3419                 if (key.type == BTRFS_EXTENT_DATA_KEY) {
3420                         struct btrfs_file_extent_item *extent;
3421                         int type;
3422                         u32 size;
3423                         struct btrfs_key new_key;
3424                         u64 disko = 0, diskl = 0;
3425                         u64 datao = 0, datal = 0;
3426                         u8 comp;
3427                         u64 drop_start;
3428
3429                         extent = btrfs_item_ptr(leaf, slot,
3430                                                 struct btrfs_file_extent_item);
3431                         comp = btrfs_file_extent_compression(leaf, extent);
3432                         type = btrfs_file_extent_type(leaf, extent);
3433                         if (type == BTRFS_FILE_EXTENT_REG ||
3434                             type == BTRFS_FILE_EXTENT_PREALLOC) {
3435                                 disko = btrfs_file_extent_disk_bytenr(leaf,
3436                                                                       extent);
3437                                 diskl = btrfs_file_extent_disk_num_bytes(leaf,
3438                                                                  extent);
3439                                 datao = btrfs_file_extent_offset(leaf, extent);
3440                                 datal = btrfs_file_extent_num_bytes(leaf,
3441                                                                     extent);
3442                         } else if (type == BTRFS_FILE_EXTENT_INLINE) {
3443                                 /* take upper bound, may be compressed */
3444                                 datal = btrfs_file_extent_ram_bytes(leaf,
3445                                                                     extent);
3446                         }
3447
3448                         /*
3449                          * The first search might have left us at an extent
3450                          * item that ends before our target range's start, can
3451                          * happen if we have holes and NO_HOLES feature enabled.
3452                          */
3453                         if (key.offset + datal <= off) {
3454                                 path->slots[0]++;
3455                                 goto process_slot;
3456                         } else if (key.offset >= off + len) {
3457                                 break;
3458                         }
3459                         next_key_min_offset = key.offset + datal;
3460                         size = btrfs_item_size_nr(leaf, slot);
3461                         read_extent_buffer(leaf, buf,
3462                                            btrfs_item_ptr_offset(leaf, slot),
3463                                            size);
3464
3465                         btrfs_release_path(path);
3466                         path->leave_spinning = 0;
3467
3468                         memcpy(&new_key, &key, sizeof(new_key));
3469                         new_key.objectid = btrfs_ino(inode);
3470                         if (off <= key.offset)
3471                                 new_key.offset = key.offset + destoff - off;
3472                         else
3473                                 new_key.offset = destoff;
3474
3475                         /*
3476                          * Deal with a hole that doesn't have an extent item
3477                          * that represents it (NO_HOLES feature enabled).
3478                          * This hole is either in the middle of the cloning
3479                          * range or at the beginning (fully overlaps it or
3480                          * partially overlaps it).
3481                          */
3482                         if (new_key.offset != last_dest_end)
3483                                 drop_start = last_dest_end;
3484                         else
3485                                 drop_start = new_key.offset;
3486
3487                         /*
3488                          * 1 - adjusting old extent (we may have to split it)
3489                          * 1 - add new extent
3490                          * 1 - inode update
3491                          */
3492                         trans = btrfs_start_transaction(root, 3);
3493                         if (IS_ERR(trans)) {
3494                                 ret = PTR_ERR(trans);
3495                                 goto out;
3496                         }
3497
3498                         if (type == BTRFS_FILE_EXTENT_REG ||
3499                             type == BTRFS_FILE_EXTENT_PREALLOC) {
3500                                 /*
3501                                  *    a  | --- range to clone ---|  b
3502                                  * | ------------- extent ------------- |
3503                                  */
3504
3505                                 /* subtract range b */
3506                                 if (key.offset + datal > off + len)
3507                                         datal = off + len - key.offset;
3508
3509                                 /* subtract range a */
3510                                 if (off > key.offset) {
3511                                         datao += off - key.offset;
3512                                         datal -= off - key.offset;
3513                                 }
3514
3515                                 ret = btrfs_drop_extents(trans, root, inode,
3516                                                          drop_start,
3517                                                          new_key.offset + datal,
3518                                                          1);
3519                                 if (ret) {
3520                                         if (ret != -EOPNOTSUPP)
3521                                                 btrfs_abort_transaction(trans,
3522                                                                 root, ret);
3523                                         btrfs_end_transaction(trans, root);
3524                                         goto out;
3525                                 }
3526
3527                                 ret = btrfs_insert_empty_item(trans, root, path,
3528                                                               &new_key, size);
3529                                 if (ret) {
3530                                         btrfs_abort_transaction(trans, root,
3531                                                                 ret);
3532                                         btrfs_end_transaction(trans, root);
3533                                         goto out;
3534                                 }
3535
3536                                 leaf = path->nodes[0];
3537                                 slot = path->slots[0];
3538                                 write_extent_buffer(leaf, buf,
3539                                             btrfs_item_ptr_offset(leaf, slot),
3540                                             size);
3541
3542                                 extent = btrfs_item_ptr(leaf, slot,
3543                                                 struct btrfs_file_extent_item);
3544
3545                                 /* disko == 0 means it's a hole */
3546                                 if (!disko)
3547                                         datao = 0;
3548
3549                                 btrfs_set_file_extent_offset(leaf, extent,
3550                                                              datao);
3551                                 btrfs_set_file_extent_num_bytes(leaf, extent,
3552                                                                 datal);
3553
3554                                 /*
3555                                  * We need to look up the roots that point at
3556                                  * this bytenr and see if the new root does.  If
3557                                  * it does not we need to make sure we update
3558                                  * quotas appropriately.
3559                                  */
3560                                 if (disko && root != BTRFS_I(src)->root &&
3561                                     disko != last_disko) {
3562                                         no_quota = check_ref(trans, root,
3563                                                              disko);
3564                                         if (no_quota < 0) {
3565                                                 btrfs_abort_transaction(trans,
3566                                                                         root,
3567                                                                         ret);
3568                                                 btrfs_end_transaction(trans,
3569                                                                       root);
3570                                                 ret = no_quota;
3571                                                 goto out;
3572                                         }
3573                                 }
3574
3575                                 if (disko) {
3576                                         inode_add_bytes(inode, datal);
3577                                         ret = btrfs_inc_extent_ref(trans, root,
3578                                                         disko, diskl, 0,
3579                                                         root->root_key.objectid,
3580                                                         btrfs_ino(inode),
3581                                                         new_key.offset - datao,
3582                                                         no_quota);
3583                                         if (ret) {
3584                                                 btrfs_abort_transaction(trans,
3585                                                                         root,
3586                                                                         ret);
3587                                                 btrfs_end_transaction(trans,
3588                                                                       root);
3589                                                 goto out;
3590
3591                                         }
3592                                 }
3593                         } else if (type == BTRFS_FILE_EXTENT_INLINE) {
3594                                 u64 skip = 0;
3595                                 u64 trim = 0;
3596                                 u64 aligned_end = 0;
3597
3598                                 /*
3599                                  * Don't copy an inline extent into an offset
3600                                  * greater than zero. Having an inline extent
3601                                  * at such an offset results in chaos as btrfs
3602                                  * isn't prepared for such cases. Just skip
3603                                  * this case for the same reasons as commented
3604                                  * at btrfs_ioctl_clone().
3605                                  */
3606                                 if (last_dest_end > 0) {
3607                                         ret = -EOPNOTSUPP;
3608                                         btrfs_end_transaction(trans, root);
3609                                         goto out;
3610                                 }
3611
3612                                 if (off > key.offset) {
3613                                         skip = off - key.offset;
3614                                         new_key.offset += skip;
3615                                 }
3616
3617                                 if (key.offset + datal > off + len)
3618                                         trim = key.offset + datal - (off + len);
3619
3620                                 if (comp && (skip || trim)) {
3621                                         ret = -EINVAL;
3622                                         btrfs_end_transaction(trans, root);
3623                                         goto out;
3624                                 }
3625                                 size -= skip + trim;
3626                                 datal -= skip + trim;
3627
3628                                 aligned_end = ALIGN(new_key.offset + datal,
3629                                                     root->sectorsize);
3630                                 ret = btrfs_drop_extents(trans, root, inode,
3631                                                          drop_start,
3632                                                          aligned_end,
3633                                                          1);
3634                                 if (ret) {
3635                                         if (ret != -EOPNOTSUPP)
3636                                                 btrfs_abort_transaction(trans,
3637                                                         root, ret);
3638                                         btrfs_end_transaction(trans, root);
3639                                         goto out;
3640                                 }
3641
3642                                 ret = btrfs_insert_empty_item(trans, root, path,
3643                                                               &new_key, size);
3644                                 if (ret) {
3645                                         btrfs_abort_transaction(trans, root,
3646                                                                 ret);
3647                                         btrfs_end_transaction(trans, root);
3648                                         goto out;
3649                                 }
3650
3651                                 if (skip) {
3652                                         u32 start =
3653                                           btrfs_file_extent_calc_inline_size(0);
3654                                         memmove(buf+start, buf+start+skip,
3655                                                 datal);
3656                                 }
3657
3658                                 leaf = path->nodes[0];
3659                                 slot = path->slots[0];
3660                                 write_extent_buffer(leaf, buf,
3661                                             btrfs_item_ptr_offset(leaf, slot),
3662                                             size);
3663                                 inode_add_bytes(inode, datal);
3664                         }
3665
3666                         /* If we have an implicit hole (NO_HOLES feature). */
3667                         if (drop_start < new_key.offset)
3668                                 clone_update_extent_map(inode, trans,
3669                                                 NULL, drop_start,
3670                                                 new_key.offset - drop_start);
3671
3672                         clone_update_extent_map(inode, trans, path, 0, 0);
3673
3674                         btrfs_mark_buffer_dirty(leaf);
3675                         btrfs_release_path(path);
3676
3677                         last_dest_end = ALIGN(new_key.offset + datal,
3678                                               root->sectorsize);
3679                         ret = clone_finish_inode_update(trans, inode,
3680                                                         last_dest_end,
3681                                                         destoff, olen,
3682                                                         no_time_update);
3683                         if (ret)
3684                                 goto out;
3685                         if (new_key.offset + datal >= destoff + len)
3686                                 break;
3687                 }
3688                 btrfs_release_path(path);
3689                 key.offset = next_key_min_offset;
3690         }
3691         ret = 0;
3692
3693         if (last_dest_end < destoff + len) {
3694                 /*
3695                  * We have an implicit hole (NO_HOLES feature is enabled) that
3696                  * fully or partially overlaps our cloning range at its end.
3697                  */
3698                 btrfs_release_path(path);
3699
3700                 /*
3701                  * 1 - remove extent(s)
3702                  * 1 - inode update
3703                  */
3704                 trans = btrfs_start_transaction(root, 2);
3705                 if (IS_ERR(trans)) {
3706                         ret = PTR_ERR(trans);
3707                         goto out;
3708                 }
3709                 ret = btrfs_drop_extents(trans, root, inode,
3710                                          last_dest_end, destoff + len, 1);
3711                 if (ret) {
3712                         if (ret != -EOPNOTSUPP)
3713                                 btrfs_abort_transaction(trans, root, ret);
3714                         btrfs_end_transaction(trans, root);
3715                         goto out;
3716                 }
3717                 clone_update_extent_map(inode, trans, NULL, last_dest_end,
3718                                         destoff + len - last_dest_end);
3719                 ret = clone_finish_inode_update(trans, inode, destoff + len,
3720                                                 destoff, olen, no_time_update);
3721         }
3722
3723 out:
3724         btrfs_free_path(path);
3725         vfree(buf);
3726         return ret;
3727 }
3728
3729 static noinline long btrfs_ioctl_clone(struct file *file, unsigned long srcfd,
3730                                        u64 off, u64 olen, u64 destoff)
3731 {
3732         struct inode *inode = file_inode(file);
3733         struct btrfs_root *root = BTRFS_I(inode)->root;
3734         struct fd src_file;
3735         struct inode *src;
3736         int ret;
3737         u64 len = olen;
3738         u64 bs = root->fs_info->sb->s_blocksize;
3739         int same_inode = 0;
3740
3741         /*
3742          * TODO:
3743          * - split compressed inline extents.  annoying: we need to
3744          *   decompress into destination's address_space (the file offset
3745          *   may change, so source mapping won't do), then recompress (or
3746          *   otherwise reinsert) a subrange.
3747          *
3748          * - split destination inode's inline extents.  The inline extents can
3749          *   be either compressed or non-compressed.
3750          */
3751
3752         /* the destination must be opened for writing */
3753         if (!(file->f_mode & FMODE_WRITE) || (file->f_flags & O_APPEND))
3754                 return -EINVAL;
3755
3756         if (btrfs_root_readonly(root))
3757                 return -EROFS;
3758
3759         ret = mnt_want_write_file(file);
3760         if (ret)
3761                 return ret;
3762
3763         src_file = fdget(srcfd);
3764         if (!src_file.file) {
3765                 ret = -EBADF;
3766                 goto out_drop_write;
3767         }
3768
3769         ret = -EXDEV;
3770         if (src_file.file->f_path.mnt != file->f_path.mnt)
3771                 goto out_fput;
3772
3773         src = file_inode(src_file.file);
3774
3775         ret = -EINVAL;
3776         if (src == inode)
3777                 same_inode = 1;
3778
3779         /* the src must be open for reading */
3780         if (!(src_file.file->f_mode & FMODE_READ))
3781                 goto out_fput;
3782
3783         /* don't make the dst file partly checksummed */
3784         if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
3785             (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM))
3786                 goto out_fput;
3787
3788         ret = -EISDIR;
3789         if (S_ISDIR(src->i_mode) || S_ISDIR(inode->i_mode))
3790                 goto out_fput;
3791
3792         ret = -EXDEV;
3793         if (src->i_sb != inode->i_sb)
3794                 goto out_fput;
3795
3796         if (!same_inode) {
3797                 btrfs_double_inode_lock(src, inode);
3798         } else {
3799                 mutex_lock(&src->i_mutex);
3800         }
3801
3802         /* determine range to clone */
3803         ret = -EINVAL;
3804         if (off + len > src->i_size || off + len < off)
3805                 goto out_unlock;
3806         if (len == 0)
3807                 olen = len = src->i_size - off;
3808         /* if we extend to eof, continue to block boundary */
3809         if (off + len == src->i_size)
3810                 len = ALIGN(src->i_size, bs) - off;
3811
3812         if (len == 0) {
3813                 ret = 0;
3814                 goto out_unlock;
3815         }
3816
3817         /* verify the end result is block aligned */
3818         if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs) ||
3819             !IS_ALIGNED(destoff, bs))
3820                 goto out_unlock;
3821
3822         /* verify if ranges are overlapped within the same file */
3823         if (same_inode) {
3824                 if (destoff + len > off && destoff < off + len)
3825                         goto out_unlock;
3826         }
3827
3828         if (destoff > inode->i_size) {
3829                 ret = btrfs_cont_expand(inode, inode->i_size, destoff);
3830                 if (ret)
3831                         goto out_unlock;
3832         }
3833
3834         /*
3835          * Lock the target range too. Right after we replace the file extent
3836          * items in the fs tree (which now point to the cloned data), we might
3837          * have a worker replace them with extent items relative to a write
3838          * operation that was issued before this clone operation (i.e. confront
3839          * with inode.c:btrfs_finish_ordered_io).
3840          */
3841         if (same_inode) {
3842                 u64 lock_start = min_t(u64, off, destoff);
3843                 u64 lock_len = max_t(u64, off, destoff) + len - lock_start;
3844
3845                 lock_extent_range(src, lock_start, lock_len);
3846         } else {
3847                 btrfs_double_extent_lock(src, off, inode, destoff, len);
3848         }
3849
3850         ret = btrfs_clone(src, inode, off, olen, len, destoff, 0);
3851
3852         if (same_inode) {
3853                 u64 lock_start = min_t(u64, off, destoff);
3854                 u64 lock_end = max_t(u64, off, destoff) + len - 1;
3855
3856                 unlock_extent(&BTRFS_I(src)->io_tree, lock_start, lock_end);
3857         } else {
3858                 btrfs_double_extent_unlock(src, off, inode, destoff, len);
3859         }
3860         /*
3861          * Truncate page cache pages so that future reads will see the cloned
3862          * data immediately and not the previous data.
3863          */
3864         truncate_inode_pages_range(&inode->i_data, destoff,
3865                                    PAGE_CACHE_ALIGN(destoff + len) - 1);
3866 out_unlock:
3867         if (!same_inode)
3868                 btrfs_double_inode_unlock(src, inode);
3869         else
3870                 mutex_unlock(&src->i_mutex);
3871 out_fput:
3872         fdput(src_file);
3873 out_drop_write:
3874         mnt_drop_write_file(file);
3875         return ret;
3876 }
3877
3878 static long btrfs_ioctl_clone_range(struct file *file, void __user *argp)
3879 {
3880         struct btrfs_ioctl_clone_range_args args;
3881
3882         if (copy_from_user(&args, argp, sizeof(args)))
3883                 return -EFAULT;
3884         return btrfs_ioctl_clone(file, args.src_fd, args.src_offset,
3885                                  args.src_length, args.dest_offset);
3886 }
3887
3888 /*
3889  * there are many ways the trans_start and trans_end ioctls can lead
3890  * to deadlocks.  They should only be used by applications that
3891  * basically own the machine, and have a very in depth understanding
3892  * of all the possible deadlocks and enospc problems.
3893  */
3894 static long btrfs_ioctl_trans_start(struct file *file)
3895 {
3896         struct inode *inode = file_inode(file);
3897         struct btrfs_root *root = BTRFS_I(inode)->root;
3898         struct btrfs_trans_handle *trans;
3899         int ret;
3900
3901         ret = -EPERM;
3902         if (!capable(CAP_SYS_ADMIN))
3903                 goto out;
3904
3905         ret = -EINPROGRESS;
3906         if (file->private_data)
3907                 goto out;
3908
3909         ret = -EROFS;
3910         if (btrfs_root_readonly(root))
3911                 goto out;
3912
3913         ret = mnt_want_write_file(file);
3914         if (ret)
3915                 goto out;
3916
3917         atomic_inc(&root->fs_info->open_ioctl_trans);
3918
3919         ret = -ENOMEM;
3920         trans = btrfs_start_ioctl_transaction(root);
3921         if (IS_ERR(trans))
3922                 goto out_drop;
3923
3924         file->private_data = trans;
3925         return 0;
3926
3927 out_drop:
3928         atomic_dec(&root->fs_info->open_ioctl_trans);
3929         mnt_drop_write_file(file);
3930 out:
3931         return ret;
3932 }
3933
3934 static long btrfs_ioctl_default_subvol(struct file *file, void __user *argp)
3935 {
3936         struct inode *inode = file_inode(file);
3937         struct btrfs_root *root = BTRFS_I(inode)->root;
3938         struct btrfs_root *new_root;
3939         struct btrfs_dir_item *di;
3940         struct btrfs_trans_handle *trans;
3941         struct btrfs_path *path;
3942         struct btrfs_key location;
3943         struct btrfs_disk_key disk_key;
3944         u64 objectid = 0;
3945         u64 dir_id;
3946         int ret;
3947
3948         if (!capable(CAP_SYS_ADMIN))
3949                 return -EPERM;
3950
3951         ret = mnt_want_write_file(file);
3952         if (ret)
3953                 return ret;
3954
3955         if (copy_from_user(&objectid, argp, sizeof(objectid))) {
3956                 ret = -EFAULT;
3957                 goto out;
3958         }
3959
3960         if (!objectid)
3961                 objectid = BTRFS_FS_TREE_OBJECTID;
3962
3963         location.objectid = objectid;
3964         location.type = BTRFS_ROOT_ITEM_KEY;
3965         location.offset = (u64)-1;
3966
3967         new_root = btrfs_read_fs_root_no_name(root->fs_info, &location);
3968         if (IS_ERR(new_root)) {
3969                 ret = PTR_ERR(new_root);
3970                 goto out;
3971         }
3972
3973         path = btrfs_alloc_path();
3974         if (!path) {
3975                 ret = -ENOMEM;
3976                 goto out;
3977         }
3978         path->leave_spinning = 1;
3979
3980         trans = btrfs_start_transaction(root, 1);
3981         if (IS_ERR(trans)) {
3982                 btrfs_free_path(path);
3983                 ret = PTR_ERR(trans);
3984                 goto out;
3985         }
3986
3987         dir_id = btrfs_super_root_dir(root->fs_info->super_copy);
3988         di = btrfs_lookup_dir_item(trans, root->fs_info->tree_root, path,
3989                                    dir_id, "default", 7, 1);
3990         if (IS_ERR_OR_NULL(di)) {
3991                 btrfs_free_path(path);
3992                 btrfs_end_transaction(trans, root);
3993                 btrfs_err(new_root->fs_info, "Umm, you don't have the default dir"
3994                            "item, this isn't going to work");
3995                 ret = -ENOENT;
3996                 goto out;
3997         }
3998
3999         btrfs_cpu_key_to_disk(&disk_key, &new_root->root_key);
4000         btrfs_set_dir_item_key(path->nodes[0], di, &disk_key);
4001         btrfs_mark_buffer_dirty(path->nodes[0]);
4002         btrfs_free_path(path);
4003
4004         btrfs_set_fs_incompat(root->fs_info, DEFAULT_SUBVOL);
4005         btrfs_end_transaction(trans, root);
4006 out:
4007         mnt_drop_write_file(file);
4008         return ret;
4009 }
4010
4011 void btrfs_get_block_group_info(struct list_head *groups_list,
4012                                 struct btrfs_ioctl_space_info *space)
4013 {
4014         struct btrfs_block_group_cache *block_group;
4015
4016         space->total_bytes = 0;
4017         space->used_bytes = 0;
4018         space->flags = 0;
4019         list_for_each_entry(block_group, groups_list, list) {
4020                 space->flags = block_group->flags;
4021                 space->total_bytes += block_group->key.offset;
4022                 space->used_bytes +=
4023                         btrfs_block_group_used(&block_group->item);
4024         }
4025 }
4026
4027 static long btrfs_ioctl_space_info(struct btrfs_root *root, void __user *arg)
4028 {
4029         struct btrfs_ioctl_space_args space_args;
4030         struct btrfs_ioctl_space_info space;
4031         struct btrfs_ioctl_space_info *dest;
4032         struct btrfs_ioctl_space_info *dest_orig;
4033         struct btrfs_ioctl_space_info __user *user_dest;
4034         struct btrfs_space_info *info;
4035         u64 types[] = {BTRFS_BLOCK_GROUP_DATA,
4036                        BTRFS_BLOCK_GROUP_SYSTEM,
4037                        BTRFS_BLOCK_GROUP_METADATA,
4038                        BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA};
4039         int num_types = 4;
4040         int alloc_size;
4041         int ret = 0;
4042         u64 slot_count = 0;
4043         int i, c;
4044
4045         if (copy_from_user(&space_args,
4046                            (struct btrfs_ioctl_space_args __user *)arg,
4047                            sizeof(space_args)))
4048                 return -EFAULT;
4049
4050         for (i = 0; i < num_types; i++) {
4051                 struct btrfs_space_info *tmp;
4052
4053                 info = NULL;
4054                 rcu_read_lock();
4055                 list_for_each_entry_rcu(tmp, &root->fs_info->space_info,
4056                                         list) {
4057                         if (tmp->flags == types[i]) {
4058                                 info = tmp;
4059                                 break;
4060                         }
4061                 }
4062                 rcu_read_unlock();
4063
4064                 if (!info)
4065                         continue;
4066
4067                 down_read(&info->groups_sem);
4068                 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
4069                         if (!list_empty(&info->block_groups[c]))
4070                                 slot_count++;
4071                 }
4072                 up_read(&info->groups_sem);
4073         }
4074
4075         /*
4076          * Global block reserve, exported as a space_info
4077          */
4078         slot_count++;
4079
4080         /* space_slots == 0 means they are asking for a count */
4081         if (space_args.space_slots == 0) {
4082                 space_args.total_spaces = slot_count;
4083                 goto out;
4084         }
4085
4086         slot_count = min_t(u64, space_args.space_slots, slot_count);
4087
4088         alloc_size = sizeof(*dest) * slot_count;
4089
4090         /* we generally have at most 6 or so space infos, one for each raid
4091          * level.  So, a whole page should be more than enough for everyone
4092          */
4093         if (alloc_size > PAGE_CACHE_SIZE)
4094                 return -ENOMEM;
4095
4096         space_args.total_spaces = 0;
4097         dest = kmalloc(alloc_size, GFP_NOFS);
4098         if (!dest)
4099                 return -ENOMEM;
4100         dest_orig = dest;
4101
4102         /* now we have a buffer to copy into */
4103         for (i = 0; i < num_types; i++) {
4104                 struct btrfs_space_info *tmp;
4105
4106                 if (!slot_count)
4107                         break;
4108
4109                 info = NULL;
4110                 rcu_read_lock();
4111                 list_for_each_entry_rcu(tmp, &root->fs_info->space_info,
4112                                         list) {
4113                         if (tmp->flags == types[i]) {
4114                                 info = tmp;
4115                                 break;
4116                         }
4117                 }
4118                 rcu_read_unlock();
4119
4120                 if (!info)
4121                         continue;
4122                 down_read(&info->groups_sem);
4123                 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
4124                         if (!list_empty(&info->block_groups[c])) {
4125                                 btrfs_get_block_group_info(
4126                                         &info->block_groups[c], &space);
4127                                 memcpy(dest, &space, sizeof(space));
4128                                 dest++;
4129                                 space_args.total_spaces++;
4130                                 slot_count--;
4131                         }
4132                         if (!slot_count)
4133                                 break;
4134                 }
4135                 up_read(&info->groups_sem);
4136         }
4137
4138         /*
4139          * Add global block reserve
4140          */
4141         if (slot_count) {
4142                 struct btrfs_block_rsv *block_rsv = &root->fs_info->global_block_rsv;
4143
4144                 spin_lock(&block_rsv->lock);
4145                 space.total_bytes = block_rsv->size;
4146                 space.used_bytes = block_rsv->size - block_rsv->reserved;
4147                 spin_unlock(&block_rsv->lock);
4148                 space.flags = BTRFS_SPACE_INFO_GLOBAL_RSV;
4149                 memcpy(dest, &space, sizeof(space));
4150                 space_args.total_spaces++;
4151         }
4152
4153         user_dest = (struct btrfs_ioctl_space_info __user *)
4154                 (arg + sizeof(struct btrfs_ioctl_space_args));
4155
4156         if (copy_to_user(user_dest, dest_orig, alloc_size))
4157                 ret = -EFAULT;
4158
4159         kfree(dest_orig);
4160 out:
4161         if (ret == 0 && copy_to_user(arg, &space_args, sizeof(space_args)))
4162                 ret = -EFAULT;
4163
4164         return ret;
4165 }
4166
4167 /*
4168  * there are many ways the trans_start and trans_end ioctls can lead
4169  * to deadlocks.  They should only be used by applications that
4170  * basically own the machine, and have a very in depth understanding
4171  * of all the possible deadlocks and enospc problems.
4172  */
4173 long btrfs_ioctl_trans_end(struct file *file)
4174 {
4175         struct inode *inode = file_inode(file);
4176         struct btrfs_root *root = BTRFS_I(inode)->root;
4177         struct btrfs_trans_handle *trans;
4178
4179         trans = file->private_data;
4180         if (!trans)
4181                 return -EINVAL;
4182         file->private_data = NULL;
4183
4184         btrfs_end_transaction(trans, root);
4185
4186         atomic_dec(&root->fs_info->open_ioctl_trans);
4187
4188         mnt_drop_write_file(file);
4189         return 0;
4190 }
4191
4192 static noinline long btrfs_ioctl_start_sync(struct btrfs_root *root,
4193                                             void __user *argp)
4194 {
4195         struct btrfs_trans_handle *trans;
4196         u64 transid;
4197         int ret;
4198
4199         trans = btrfs_attach_transaction_barrier(root);
4200         if (IS_ERR(trans)) {
4201                 if (PTR_ERR(trans) != -ENOENT)
4202                         return PTR_ERR(trans);
4203
4204                 /* No running transaction, don't bother */
4205                 transid = root->fs_info->last_trans_committed;
4206                 goto out;
4207         }
4208         transid = trans->transid;
4209         ret = btrfs_commit_transaction_async(trans, root, 0);
4210         if (ret) {
4211                 btrfs_end_transaction(trans, root);
4212                 return ret;
4213         }
4214 out:
4215         if (argp)
4216                 if (copy_to_user(argp, &transid, sizeof(transid)))
4217                         return -EFAULT;
4218         return 0;
4219 }
4220
4221 static noinline long btrfs_ioctl_wait_sync(struct btrfs_root *root,
4222                                            void __user *argp)
4223 {
4224         u64 transid;
4225
4226         if (argp) {
4227                 if (copy_from_user(&transid, argp, sizeof(transid)))
4228                         return -EFAULT;
4229         } else {
4230                 transid = 0;  /* current trans */
4231         }
4232         return btrfs_wait_for_commit(root, transid);
4233 }
4234
4235 static long btrfs_ioctl_scrub(struct file *file, void __user *arg)
4236 {
4237         struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
4238         struct btrfs_ioctl_scrub_args *sa;
4239         int ret;
4240
4241         if (!capable(CAP_SYS_ADMIN))
4242                 return -EPERM;
4243
4244         sa = memdup_user(arg, sizeof(*sa));
4245         if (IS_ERR(sa))
4246                 return PTR_ERR(sa);
4247
4248         if (!(sa->flags & BTRFS_SCRUB_READONLY)) {
4249                 ret = mnt_want_write_file(file);
4250                 if (ret)
4251                         goto out;
4252         }
4253
4254         ret = btrfs_scrub_dev(root->fs_info, sa->devid, sa->start, sa->end,
4255                               &sa->progress, sa->flags & BTRFS_SCRUB_READONLY,
4256                               0);
4257
4258         if (copy_to_user(arg, sa, sizeof(*sa)))
4259                 ret = -EFAULT;
4260
4261         if (!(sa->flags & BTRFS_SCRUB_READONLY))
4262                 mnt_drop_write_file(file);
4263 out:
4264         kfree(sa);
4265         return ret;
4266 }
4267
4268 static long btrfs_ioctl_scrub_cancel(struct btrfs_root *root, void __user *arg)
4269 {
4270         if (!capable(CAP_SYS_ADMIN))
4271                 return -EPERM;
4272
4273         return btrfs_scrub_cancel(root->fs_info);
4274 }
4275
4276 static long btrfs_ioctl_scrub_progress(struct btrfs_root *root,
4277                                        void __user *arg)
4278 {
4279         struct btrfs_ioctl_scrub_args *sa;
4280         int ret;
4281
4282         if (!capable(CAP_SYS_ADMIN))
4283                 return -EPERM;
4284
4285         sa = memdup_user(arg, sizeof(*sa));
4286         if (IS_ERR(sa))
4287                 return PTR_ERR(sa);
4288
4289         ret = btrfs_scrub_progress(root, sa->devid, &sa->progress);
4290
4291         if (copy_to_user(arg, sa, sizeof(*sa)))
4292                 ret = -EFAULT;
4293
4294         kfree(sa);
4295         return ret;
4296 }
4297
4298 static long btrfs_ioctl_get_dev_stats(struct btrfs_root *root,
4299                                       void __user *arg)
4300 {
4301         struct btrfs_ioctl_get_dev_stats *sa;
4302         int ret;
4303
4304         sa = memdup_user(arg, sizeof(*sa));
4305         if (IS_ERR(sa))
4306                 return PTR_ERR(sa);
4307
4308         if ((sa->flags & BTRFS_DEV_STATS_RESET) && !capable(CAP_SYS_ADMIN)) {
4309                 kfree(sa);
4310                 return -EPERM;
4311         }
4312
4313         ret = btrfs_get_dev_stats(root, sa);
4314
4315         if (copy_to_user(arg, sa, sizeof(*sa)))
4316                 ret = -EFAULT;
4317
4318         kfree(sa);
4319         return ret;
4320 }
4321
4322 static long btrfs_ioctl_dev_replace(struct btrfs_root *root, void __user *arg)
4323 {
4324         struct btrfs_ioctl_dev_replace_args *p;
4325         int ret;
4326
4327         if (!capable(CAP_SYS_ADMIN))
4328                 return -EPERM;
4329
4330         p = memdup_user(arg, sizeof(*p));
4331         if (IS_ERR(p))
4332                 return PTR_ERR(p);
4333
4334         switch (p->cmd) {
4335         case BTRFS_IOCTL_DEV_REPLACE_CMD_START:
4336                 if (root->fs_info->sb->s_flags & MS_RDONLY) {
4337                         ret = -EROFS;
4338                         goto out;
4339                 }
4340                 if (atomic_xchg(
4341                         &root->fs_info->mutually_exclusive_operation_running,
4342                         1)) {
4343                         ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
4344                 } else {
4345                         ret = btrfs_dev_replace_start(root, p);
4346                         atomic_set(
4347                          &root->fs_info->mutually_exclusive_operation_running,
4348                          0);
4349                 }
4350                 break;
4351         case BTRFS_IOCTL_DEV_REPLACE_CMD_STATUS:
4352                 btrfs_dev_replace_status(root->fs_info, p);
4353                 ret = 0;
4354                 break;
4355         case BTRFS_IOCTL_DEV_REPLACE_CMD_CANCEL:
4356                 ret = btrfs_dev_replace_cancel(root->fs_info, p);
4357                 break;
4358         default:
4359                 ret = -EINVAL;
4360                 break;
4361         }
4362
4363         if (copy_to_user(arg, p, sizeof(*p)))
4364                 ret = -EFAULT;
4365 out:
4366         kfree(p);
4367         return ret;
4368 }
4369
4370 static long btrfs_ioctl_ino_to_path(struct btrfs_root *root, void __user *arg)
4371 {
4372         int ret = 0;
4373         int i;
4374         u64 rel_ptr;
4375         int size;
4376         struct btrfs_ioctl_ino_path_args *ipa = NULL;
4377         struct inode_fs_paths *ipath = NULL;
4378         struct btrfs_path *path;
4379
4380         if (!capable(CAP_DAC_READ_SEARCH))
4381                 return -EPERM;
4382
4383         path = btrfs_alloc_path();
4384         if (!path) {
4385                 ret = -ENOMEM;
4386                 goto out;
4387         }
4388
4389         ipa = memdup_user(arg, sizeof(*ipa));
4390         if (IS_ERR(ipa)) {
4391                 ret = PTR_ERR(ipa);
4392                 ipa = NULL;
4393                 goto out;
4394         }
4395
4396         size = min_t(u32, ipa->size, 4096);
4397         ipath = init_ipath(size, root, path);
4398         if (IS_ERR(ipath)) {
4399                 ret = PTR_ERR(ipath);
4400                 ipath = NULL;
4401                 goto out;
4402         }
4403
4404         ret = paths_from_inode(ipa->inum, ipath);
4405         if (ret < 0)
4406                 goto out;
4407
4408         for (i = 0; i < ipath->fspath->elem_cnt; ++i) {
4409                 rel_ptr = ipath->fspath->val[i] -
4410                           (u64)(unsigned long)ipath->fspath->val;
4411                 ipath->fspath->val[i] = rel_ptr;
4412         }
4413
4414         ret = copy_to_user((void *)(unsigned long)ipa->fspath,
4415                            (void *)(unsigned long)ipath->fspath, size);
4416         if (ret) {
4417                 ret = -EFAULT;
4418                 goto out;
4419         }
4420
4421 out:
4422         btrfs_free_path(path);
4423         free_ipath(ipath);
4424         kfree(ipa);
4425
4426         return ret;
4427 }
4428
4429 static int build_ino_list(u64 inum, u64 offset, u64 root, void *ctx)
4430 {
4431         struct btrfs_data_container *inodes = ctx;
4432         const size_t c = 3 * sizeof(u64);
4433
4434         if (inodes->bytes_left >= c) {
4435                 inodes->bytes_left -= c;
4436                 inodes->val[inodes->elem_cnt] = inum;
4437                 inodes->val[inodes->elem_cnt + 1] = offset;
4438                 inodes->val[inodes->elem_cnt + 2] = root;
4439                 inodes->elem_cnt += 3;
4440         } else {
4441                 inodes->bytes_missing += c - inodes->bytes_left;
4442                 inodes->bytes_left = 0;
4443                 inodes->elem_missed += 3;
4444         }
4445
4446         return 0;
4447 }
4448
4449 static long btrfs_ioctl_logical_to_ino(struct btrfs_root *root,
4450                                         void __user *arg)
4451 {
4452         int ret = 0;
4453         int size;
4454         struct btrfs_ioctl_logical_ino_args *loi;
4455         struct btrfs_data_container *inodes = NULL;
4456         struct btrfs_path *path = NULL;
4457
4458         if (!capable(CAP_SYS_ADMIN))
4459                 return -EPERM;
4460
4461         loi = memdup_user(arg, sizeof(*loi));
4462         if (IS_ERR(loi)) {
4463                 ret = PTR_ERR(loi);
4464                 loi = NULL;
4465                 goto out;
4466         }
4467
4468         path = btrfs_alloc_path();
4469         if (!path) {
4470                 ret = -ENOMEM;
4471                 goto out;
4472         }
4473
4474         size = min_t(u32, loi->size, 64 * 1024);
4475         inodes = init_data_container(size);
4476         if (IS_ERR(inodes)) {
4477                 ret = PTR_ERR(inodes);
4478                 inodes = NULL;
4479                 goto out;
4480         }
4481
4482         ret = iterate_inodes_from_logical(loi->logical, root->fs_info, path,
4483                                           build_ino_list, inodes);
4484         if (ret == -EINVAL)
4485                 ret = -ENOENT;
4486         if (ret < 0)
4487                 goto out;
4488
4489         ret = copy_to_user((void *)(unsigned long)loi->inodes,
4490                            (void *)(unsigned long)inodes, size);
4491         if (ret)
4492                 ret = -EFAULT;
4493
4494 out:
4495         btrfs_free_path(path);
4496         vfree(inodes);
4497         kfree(loi);
4498
4499         return ret;
4500 }
4501
4502 void update_ioctl_balance_args(struct btrfs_fs_info *fs_info, int lock,
4503                                struct btrfs_ioctl_balance_args *bargs)
4504 {
4505         struct btrfs_balance_control *bctl = fs_info->balance_ctl;
4506
4507         bargs->flags = bctl->flags;
4508
4509         if (atomic_read(&fs_info->balance_running))
4510                 bargs->state |= BTRFS_BALANCE_STATE_RUNNING;
4511         if (atomic_read(&fs_info->balance_pause_req))
4512                 bargs->state |= BTRFS_BALANCE_STATE_PAUSE_REQ;
4513         if (atomic_read(&fs_info->balance_cancel_req))
4514                 bargs->state |= BTRFS_BALANCE_STATE_CANCEL_REQ;
4515
4516         memcpy(&bargs->data, &bctl->data, sizeof(bargs->data));
4517         memcpy(&bargs->meta, &bctl->meta, sizeof(bargs->meta));
4518         memcpy(&bargs->sys, &bctl->sys, sizeof(bargs->sys));
4519
4520         if (lock) {
4521                 spin_lock(&fs_info->balance_lock);
4522                 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
4523                 spin_unlock(&fs_info->balance_lock);
4524         } else {
4525                 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
4526         }
4527 }
4528
4529 static long btrfs_ioctl_balance(struct file *file, void __user *arg)
4530 {
4531         struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
4532         struct btrfs_fs_info *fs_info = root->fs_info;
4533         struct btrfs_ioctl_balance_args *bargs;
4534         struct btrfs_balance_control *bctl;
4535         bool need_unlock; /* for mut. excl. ops lock */
4536         int ret;
4537
4538         if (!capable(CAP_SYS_ADMIN))
4539                 return -EPERM;
4540
4541         ret = mnt_want_write_file(file);
4542         if (ret)
4543                 return ret;
4544
4545 again:
4546         if (!atomic_xchg(&fs_info->mutually_exclusive_operation_running, 1)) {
4547                 mutex_lock(&fs_info->volume_mutex);
4548                 mutex_lock(&fs_info->balance_mutex);
4549                 need_unlock = true;
4550                 goto locked;
4551         }
4552
4553         /*
4554          * mut. excl. ops lock is locked.  Three possibilites:
4555          *   (1) some other op is running
4556          *   (2) balance is running
4557          *   (3) balance is paused -- special case (think resume)
4558          */
4559         mutex_lock(&fs_info->balance_mutex);
4560         if (fs_info->balance_ctl) {
4561                 /* this is either (2) or (3) */
4562                 if (!atomic_read(&fs_info->balance_running)) {
4563                         mutex_unlock(&fs_info->balance_mutex);
4564                         if (!mutex_trylock(&fs_info->volume_mutex))
4565                                 goto again;
4566                         mutex_lock(&fs_info->balance_mutex);
4567
4568                         if (fs_info->balance_ctl &&
4569                             !atomic_read(&fs_info->balance_running)) {
4570                                 /* this is (3) */
4571                                 need_unlock = false;
4572                                 goto locked;
4573                         }
4574
4575                         mutex_unlock(&fs_info->balance_mutex);
4576                         mutex_unlock(&fs_info->volume_mutex);
4577                         goto again;
4578                 } else {
4579                         /* this is (2) */
4580                         mutex_unlock(&fs_info->balance_mutex);
4581                         ret = -EINPROGRESS;
4582                         goto out;
4583                 }
4584         } else {
4585                 /* this is (1) */
4586                 mutex_unlock(&fs_info->balance_mutex);
4587                 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
4588                 goto out;
4589         }
4590
4591 locked:
4592         BUG_ON(!atomic_read(&fs_info->mutually_exclusive_operation_running));
4593
4594         if (arg) {
4595                 bargs = memdup_user(arg, sizeof(*bargs));
4596                 if (IS_ERR(bargs)) {
4597                         ret = PTR_ERR(bargs);
4598                         goto out_unlock;
4599                 }
4600
4601                 if (bargs->flags & BTRFS_BALANCE_RESUME) {
4602                         if (!fs_info->balance_ctl) {
4603                                 ret = -ENOTCONN;
4604                                 goto out_bargs;
4605                         }
4606
4607                         bctl = fs_info->balance_ctl;
4608                         spin_lock(&fs_info->balance_lock);
4609                         bctl->flags |= BTRFS_BALANCE_RESUME;
4610                         spin_unlock(&fs_info->balance_lock);
4611
4612                         goto do_balance;
4613                 }
4614         } else {
4615                 bargs = NULL;
4616         }
4617
4618         if (fs_info->balance_ctl) {
4619                 ret = -EINPROGRESS;
4620                 goto out_bargs;
4621         }
4622
4623         bctl = kzalloc(sizeof(*bctl), GFP_NOFS);
4624         if (!bctl) {
4625                 ret = -ENOMEM;
4626                 goto out_bargs;
4627         }
4628
4629         bctl->fs_info = fs_info;
4630         if (arg) {
4631                 memcpy(&bctl->data, &bargs->data, sizeof(bctl->data));
4632                 memcpy(&bctl->meta, &bargs->meta, sizeof(bctl->meta));
4633                 memcpy(&bctl->sys, &bargs->sys, sizeof(bctl->sys));
4634
4635                 bctl->flags = bargs->flags;
4636         } else {
4637                 /* balance everything - no filters */
4638                 bctl->flags |= BTRFS_BALANCE_TYPE_MASK;
4639         }
4640
4641 do_balance:
4642         /*
4643          * Ownership of bctl and mutually_exclusive_operation_running
4644          * goes to to btrfs_balance.  bctl is freed in __cancel_balance,
4645          * or, if restriper was paused all the way until unmount, in
4646          * free_fs_info.  mutually_exclusive_operation_running is
4647          * cleared in __cancel_balance.
4648          */
4649         need_unlock = false;
4650
4651         ret = btrfs_balance(bctl, bargs);
4652
4653         if (arg) {
4654                 if (copy_to_user(arg, bargs, sizeof(*bargs)))
4655                         ret = -EFAULT;
4656         }
4657
4658 out_bargs:
4659         kfree(bargs);
4660 out_unlock:
4661         mutex_unlock(&fs_info->balance_mutex);
4662         mutex_unlock(&fs_info->volume_mutex);
4663         if (need_unlock)
4664                 atomic_set(&fs_info->mutually_exclusive_operation_running, 0);
4665 out:
4666         mnt_drop_write_file(file);
4667         return ret;
4668 }
4669
4670 static long btrfs_ioctl_balance_ctl(struct btrfs_root *root, int cmd)
4671 {
4672         if (!capable(CAP_SYS_ADMIN))
4673                 return -EPERM;
4674
4675         switch (cmd) {
4676         case BTRFS_BALANCE_CTL_PAUSE:
4677                 return btrfs_pause_balance(root->fs_info);
4678         case BTRFS_BALANCE_CTL_CANCEL:
4679                 return btrfs_cancel_balance(root->fs_info);
4680         }
4681
4682         return -EINVAL;
4683 }
4684
4685 static long btrfs_ioctl_balance_progress(struct btrfs_root *root,
4686                                          void __user *arg)
4687 {
4688         struct btrfs_fs_info *fs_info = root->fs_info;
4689         struct btrfs_ioctl_balance_args *bargs;
4690         int ret = 0;
4691
4692         if (!capable(CAP_SYS_ADMIN))
4693                 return -EPERM;
4694
4695         mutex_lock(&fs_info->balance_mutex);
4696         if (!fs_info->balance_ctl) {
4697                 ret = -ENOTCONN;
4698                 goto out;
4699         }
4700
4701         bargs = kzalloc(sizeof(*bargs), GFP_NOFS);
4702         if (!bargs) {
4703                 ret = -ENOMEM;
4704                 goto out;
4705         }
4706
4707         update_ioctl_balance_args(fs_info, 1, bargs);
4708
4709         if (copy_to_user(arg, bargs, sizeof(*bargs)))
4710                 ret = -EFAULT;
4711
4712         kfree(bargs);
4713 out:
4714         mutex_unlock(&fs_info->balance_mutex);
4715         return ret;
4716 }
4717
4718 static long btrfs_ioctl_quota_ctl(struct file *file, void __user *arg)
4719 {
4720         struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
4721         struct btrfs_ioctl_quota_ctl_args *sa;
4722         struct btrfs_trans_handle *trans = NULL;
4723         int ret;
4724         int err;
4725
4726         if (!capable(CAP_SYS_ADMIN))
4727                 return -EPERM;
4728
4729         ret = mnt_want_write_file(file);
4730         if (ret)
4731                 return ret;
4732
4733         sa = memdup_user(arg, sizeof(*sa));
4734         if (IS_ERR(sa)) {
4735                 ret = PTR_ERR(sa);
4736                 goto drop_write;
4737         }
4738
4739         down_write(&root->fs_info->subvol_sem);
4740         trans = btrfs_start_transaction(root->fs_info->tree_root, 2);
4741         if (IS_ERR(trans)) {
4742                 ret = PTR_ERR(trans);
4743                 goto out;
4744         }
4745
4746         switch (sa->cmd) {
4747         case BTRFS_QUOTA_CTL_ENABLE:
4748                 ret = btrfs_quota_enable(trans, root->fs_info);
4749                 break;
4750         case BTRFS_QUOTA_CTL_DISABLE:
4751                 ret = btrfs_quota_disable(trans, root->fs_info);
4752                 break;
4753         default:
4754                 ret = -EINVAL;
4755                 break;
4756         }
4757
4758         err = btrfs_commit_transaction(trans, root->fs_info->tree_root);
4759         if (err && !ret)
4760                 ret = err;
4761 out:
4762         kfree(sa);
4763         up_write(&root->fs_info->subvol_sem);
4764 drop_write:
4765         mnt_drop_write_file(file);
4766         return ret;
4767 }
4768
4769 static long btrfs_ioctl_qgroup_assign(struct file *file, void __user *arg)
4770 {
4771         struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
4772         struct btrfs_ioctl_qgroup_assign_args *sa;
4773         struct btrfs_trans_handle *trans;
4774         int ret;
4775         int err;
4776
4777         if (!capable(CAP_SYS_ADMIN))
4778                 return -EPERM;
4779
4780         ret = mnt_want_write_file(file);
4781         if (ret)
4782                 return ret;
4783
4784         sa = memdup_user(arg, sizeof(*sa));
4785         if (IS_ERR(sa)) {
4786                 ret = PTR_ERR(sa);
4787                 goto drop_write;
4788         }
4789
4790         trans = btrfs_join_transaction(root);
4791         if (IS_ERR(trans)) {
4792                 ret = PTR_ERR(trans);
4793                 goto out;
4794         }
4795
4796         /* FIXME: check if the IDs really exist */
4797         if (sa->assign) {
4798                 ret = btrfs_add_qgroup_relation(trans, root->fs_info,
4799                                                 sa->src, sa->dst);
4800         } else {
4801                 ret = btrfs_del_qgroup_relation(trans, root->fs_info,
4802                                                 sa->src, sa->dst);
4803         }
4804
4805         /* update qgroup status and info */
4806         err = btrfs_run_qgroups(trans, root->fs_info);
4807         if (err < 0)
4808                 btrfs_std_error(root->fs_info, ret,
4809                             "failed to update qgroup status and info\n");
4810         err = btrfs_end_transaction(trans, root);
4811         if (err && !ret)
4812                 ret = err;
4813
4814 out:
4815         kfree(sa);
4816 drop_write:
4817         mnt_drop_write_file(file);
4818         return ret;
4819 }
4820
4821 static long btrfs_ioctl_qgroup_create(struct file *file, void __user *arg)
4822 {
4823         struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
4824         struct btrfs_ioctl_qgroup_create_args *sa;
4825         struct btrfs_trans_handle *trans;
4826         int ret;
4827         int err;
4828
4829         if (!capable(CAP_SYS_ADMIN))
4830                 return -EPERM;
4831
4832         ret = mnt_want_write_file(file);
4833         if (ret)
4834                 return ret;
4835
4836         sa = memdup_user(arg, sizeof(*sa));
4837         if (IS_ERR(sa)) {
4838                 ret = PTR_ERR(sa);
4839                 goto drop_write;
4840         }
4841
4842         if (!sa->qgroupid) {
4843                 ret = -EINVAL;
4844                 goto out;
4845         }
4846
4847         trans = btrfs_join_transaction(root);
4848         if (IS_ERR(trans)) {
4849                 ret = PTR_ERR(trans);
4850                 goto out;
4851         }
4852
4853         /* FIXME: check if the IDs really exist */
4854         if (sa->create) {
4855                 ret = btrfs_create_qgroup(trans, root->fs_info, sa->qgroupid);
4856         } else {
4857                 ret = btrfs_remove_qgroup(trans, root->fs_info, sa->qgroupid);
4858         }
4859
4860         err = btrfs_end_transaction(trans, root);
4861         if (err && !ret)
4862                 ret = err;
4863
4864 out:
4865         kfree(sa);
4866 drop_write:
4867         mnt_drop_write_file(file);
4868         return ret;
4869 }
4870
4871 static long btrfs_ioctl_qgroup_limit(struct file *file, void __user *arg)
4872 {
4873         struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
4874         struct btrfs_ioctl_qgroup_limit_args *sa;
4875         struct btrfs_trans_handle *trans;
4876         int ret;
4877         int err;
4878         u64 qgroupid;
4879
4880         if (!capable(CAP_SYS_ADMIN))
4881                 return -EPERM;
4882
4883         ret = mnt_want_write_file(file);
4884         if (ret)
4885                 return ret;
4886
4887         sa = memdup_user(arg, sizeof(*sa));
4888         if (IS_ERR(sa)) {
4889                 ret = PTR_ERR(sa);
4890                 goto drop_write;
4891         }
4892
4893         trans = btrfs_join_transaction(root);
4894         if (IS_ERR(trans)) {
4895                 ret = PTR_ERR(trans);
4896                 goto out;
4897         }
4898
4899         qgroupid = sa->qgroupid;
4900         if (!qgroupid) {
4901                 /* take the current subvol as qgroup */
4902                 qgroupid = root->root_key.objectid;
4903         }
4904
4905         /* FIXME: check if the IDs really exist */
4906         ret = btrfs_limit_qgroup(trans, root->fs_info, qgroupid, &sa->lim);
4907
4908         err = btrfs_end_transaction(trans, root);
4909         if (err && !ret)
4910                 ret = err;
4911
4912 out:
4913         kfree(sa);
4914 drop_write:
4915         mnt_drop_write_file(file);
4916         return ret;
4917 }
4918
4919 static long btrfs_ioctl_quota_rescan(struct file *file, void __user *arg)
4920 {
4921         struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
4922         struct btrfs_ioctl_quota_rescan_args *qsa;
4923         int ret;
4924
4925         if (!capable(CAP_SYS_ADMIN))
4926                 return -EPERM;
4927
4928         ret = mnt_want_write_file(file);
4929         if (ret)
4930                 return ret;
4931
4932         qsa = memdup_user(arg, sizeof(*qsa));
4933         if (IS_ERR(qsa)) {
4934                 ret = PTR_ERR(qsa);
4935                 goto drop_write;
4936         }
4937
4938         if (qsa->flags) {
4939                 ret = -EINVAL;
4940                 goto out;
4941         }
4942
4943         ret = btrfs_qgroup_rescan(root->fs_info);
4944
4945 out:
4946         kfree(qsa);
4947 drop_write:
4948         mnt_drop_write_file(file);
4949         return ret;
4950 }
4951
4952 static long btrfs_ioctl_quota_rescan_status(struct file *file, void __user *arg)
4953 {
4954         struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
4955         struct btrfs_ioctl_quota_rescan_args *qsa;
4956         int ret = 0;
4957
4958         if (!capable(CAP_SYS_ADMIN))
4959                 return -EPERM;
4960
4961         qsa = kzalloc(sizeof(*qsa), GFP_NOFS);
4962         if (!qsa)
4963                 return -ENOMEM;
4964
4965         if (root->fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_RESCAN) {
4966                 qsa->flags = 1;
4967                 qsa->progress = root->fs_info->qgroup_rescan_progress.objectid;
4968         }
4969
4970         if (copy_to_user(arg, qsa, sizeof(*qsa)))
4971                 ret = -EFAULT;
4972
4973         kfree(qsa);
4974         return ret;
4975 }
4976
4977 static long btrfs_ioctl_quota_rescan_wait(struct file *file, void __user *arg)
4978 {
4979         struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
4980
4981         if (!capable(CAP_SYS_ADMIN))
4982                 return -EPERM;
4983
4984         return btrfs_qgroup_wait_for_completion(root->fs_info);
4985 }
4986
4987 static long _btrfs_ioctl_set_received_subvol(struct file *file,
4988                                             struct btrfs_ioctl_received_subvol_args *sa)
4989 {
4990         struct inode *inode = file_inode(file);
4991         struct btrfs_root *root = BTRFS_I(inode)->root;
4992         struct btrfs_root_item *root_item = &root->root_item;
4993         struct btrfs_trans_handle *trans;
4994         struct timespec ct = CURRENT_TIME;
4995         int ret = 0;
4996         int received_uuid_changed;
4997
4998         if (!inode_owner_or_capable(inode))
4999                 return -EPERM;
5000
5001         ret = mnt_want_write_file(file);
5002         if (ret < 0)
5003                 return ret;
5004
5005         down_write(&root->fs_info->subvol_sem);
5006
5007         if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
5008                 ret = -EINVAL;
5009                 goto out;
5010         }
5011
5012         if (btrfs_root_readonly(root)) {
5013                 ret = -EROFS;
5014                 goto out;
5015         }
5016
5017         /*
5018          * 1 - root item
5019          * 2 - uuid items (received uuid + subvol uuid)
5020          */
5021         trans = btrfs_start_transaction(root, 3);
5022         if (IS_ERR(trans)) {
5023                 ret = PTR_ERR(trans);
5024                 trans = NULL;
5025                 goto out;
5026         }
5027
5028         sa->rtransid = trans->transid;
5029         sa->rtime.sec = ct.tv_sec;
5030         sa->rtime.nsec = ct.tv_nsec;
5031
5032         received_uuid_changed = memcmp(root_item->received_uuid, sa->uuid,
5033                                        BTRFS_UUID_SIZE);
5034         if (received_uuid_changed &&
5035             !btrfs_is_empty_uuid(root_item->received_uuid))
5036                 btrfs_uuid_tree_rem(trans, root->fs_info->uuid_root,
5037                                     root_item->received_uuid,
5038                                     BTRFS_UUID_KEY_RECEIVED_SUBVOL,
5039                                     root->root_key.objectid);
5040         memcpy(root_item->received_uuid, sa->uuid, BTRFS_UUID_SIZE);
5041         btrfs_set_root_stransid(root_item, sa->stransid);
5042         btrfs_set_root_rtransid(root_item, sa->rtransid);
5043         btrfs_set_stack_timespec_sec(&root_item->stime, sa->stime.sec);
5044         btrfs_set_stack_timespec_nsec(&root_item->stime, sa->stime.nsec);
5045         btrfs_set_stack_timespec_sec(&root_item->rtime, sa->rtime.sec);
5046         btrfs_set_stack_timespec_nsec(&root_item->rtime, sa->rtime.nsec);
5047
5048         ret = btrfs_update_root(trans, root->fs_info->tree_root,
5049                                 &root->root_key, &root->root_item);
5050         if (ret < 0) {
5051                 btrfs_end_transaction(trans, root);
5052                 goto out;
5053         }
5054         if (received_uuid_changed && !btrfs_is_empty_uuid(sa->uuid)) {
5055                 ret = btrfs_uuid_tree_add(trans, root->fs_info->uuid_root,
5056                                           sa->uuid,
5057                                           BTRFS_UUID_KEY_RECEIVED_SUBVOL,
5058                                           root->root_key.objectid);
5059                 if (ret < 0 && ret != -EEXIST) {
5060                         btrfs_abort_transaction(trans, root, ret);
5061                         goto out;
5062                 }
5063         }
5064         ret = btrfs_commit_transaction(trans, root);
5065         if (ret < 0) {
5066                 btrfs_abort_transaction(trans, root, ret);
5067                 goto out;
5068         }
5069
5070 out:
5071         up_write(&root->fs_info->subvol_sem);
5072         mnt_drop_write_file(file);
5073         return ret;
5074 }
5075
5076 #ifdef CONFIG_64BIT
5077 static long btrfs_ioctl_set_received_subvol_32(struct file *file,
5078                                                 void __user *arg)
5079 {
5080         struct btrfs_ioctl_received_subvol_args_32 *args32 = NULL;
5081         struct btrfs_ioctl_received_subvol_args *args64 = NULL;
5082         int ret = 0;
5083
5084         args32 = memdup_user(arg, sizeof(*args32));
5085         if (IS_ERR(args32)) {
5086                 ret = PTR_ERR(args32);
5087                 args32 = NULL;
5088                 goto out;
5089         }
5090
5091         args64 = kmalloc(sizeof(*args64), GFP_NOFS);
5092         if (!args64) {
5093                 ret = -ENOMEM;
5094                 goto out;
5095         }
5096
5097         memcpy(args64->uuid, args32->uuid, BTRFS_UUID_SIZE);
5098         args64->stransid = args32->stransid;
5099         args64->rtransid = args32->rtransid;
5100         args64->stime.sec = args32->stime.sec;
5101         args64->stime.nsec = args32->stime.nsec;
5102         args64->rtime.sec = args32->rtime.sec;
5103         args64->rtime.nsec = args32->rtime.nsec;
5104         args64->flags = args32->flags;
5105
5106         ret = _btrfs_ioctl_set_received_subvol(file, args64);
5107         if (ret)
5108                 goto out;
5109
5110         memcpy(args32->uuid, args64->uuid, BTRFS_UUID_SIZE);
5111         args32->stransid = args64->stransid;
5112         args32->rtransid = args64->rtransid;
5113         args32->stime.sec = args64->stime.sec;
5114         args32->stime.nsec = args64->stime.nsec;
5115         args32->rtime.sec = args64->rtime.sec;
5116         args32->rtime.nsec = args64->rtime.nsec;
5117         args32->flags = args64->flags;
5118
5119         ret = copy_to_user(arg, args32, sizeof(*args32));
5120         if (ret)
5121                 ret = -EFAULT;
5122
5123 out:
5124         kfree(args32);
5125         kfree(args64);
5126         return ret;
5127 }
5128 #endif
5129
5130 static long btrfs_ioctl_set_received_subvol(struct file *file,
5131                                             void __user *arg)
5132 {
5133         struct btrfs_ioctl_received_subvol_args *sa = NULL;
5134         int ret = 0;
5135
5136         sa = memdup_user(arg, sizeof(*sa));
5137         if (IS_ERR(sa)) {
5138                 ret = PTR_ERR(sa);
5139                 sa = NULL;
5140                 goto out;
5141         }
5142
5143         ret = _btrfs_ioctl_set_received_subvol(file, sa);
5144
5145         if (ret)
5146                 goto out;
5147
5148         ret = copy_to_user(arg, sa, sizeof(*sa));
5149         if (ret)
5150                 ret = -EFAULT;
5151
5152 out:
5153         kfree(sa);
5154         return ret;
5155 }
5156
5157 static int btrfs_ioctl_get_fslabel(struct file *file, void __user *arg)
5158 {
5159         struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
5160         size_t len;
5161         int ret;
5162         char label[BTRFS_LABEL_SIZE];
5163
5164         spin_lock(&root->fs_info->super_lock);
5165         memcpy(label, root->fs_info->super_copy->label, BTRFS_LABEL_SIZE);
5166         spin_unlock(&root->fs_info->super_lock);
5167
5168         len = strnlen(label, BTRFS_LABEL_SIZE);
5169
5170         if (len == BTRFS_LABEL_SIZE) {
5171                 btrfs_warn(root->fs_info,
5172                         "label is too long, return the first %zu bytes", --len);
5173         }
5174
5175         ret = copy_to_user(arg, label, len);
5176
5177         return ret ? -EFAULT : 0;
5178 }
5179
5180 static int btrfs_ioctl_set_fslabel(struct file *file, void __user *arg)
5181 {
5182         struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
5183         struct btrfs_super_block *super_block = root->fs_info->super_copy;
5184         struct btrfs_trans_handle *trans;
5185         char label[BTRFS_LABEL_SIZE];
5186         int ret;
5187
5188         if (!capable(CAP_SYS_ADMIN))
5189                 return -EPERM;
5190
5191         if (copy_from_user(label, arg, sizeof(label)))
5192                 return -EFAULT;
5193
5194         if (strnlen(label, BTRFS_LABEL_SIZE) == BTRFS_LABEL_SIZE) {
5195                 btrfs_err(root->fs_info, "unable to set label with more than %d bytes",
5196                        BTRFS_LABEL_SIZE - 1);
5197                 return -EINVAL;
5198         }
5199
5200         ret = mnt_want_write_file(file);
5201         if (ret)
5202                 return ret;
5203
5204         trans = btrfs_start_transaction(root, 0);
5205         if (IS_ERR(trans)) {
5206                 ret = PTR_ERR(trans);
5207                 goto out_unlock;
5208         }
5209
5210         spin_lock(&root->fs_info->super_lock);
5211         strcpy(super_block->label, label);
5212         spin_unlock(&root->fs_info->super_lock);
5213         ret = btrfs_commit_transaction(trans, root);
5214
5215 out_unlock:
5216         mnt_drop_write_file(file);
5217         return ret;
5218 }
5219
5220 #define INIT_FEATURE_FLAGS(suffix) \
5221         { .compat_flags = BTRFS_FEATURE_COMPAT_##suffix, \
5222           .compat_ro_flags = BTRFS_FEATURE_COMPAT_RO_##suffix, \
5223           .incompat_flags = BTRFS_FEATURE_INCOMPAT_##suffix }
5224
5225 static int btrfs_ioctl_get_supported_features(struct file *file,
5226                                               void __user *arg)
5227 {
5228         static struct btrfs_ioctl_feature_flags features[3] = {
5229                 INIT_FEATURE_FLAGS(SUPP),
5230                 INIT_FEATURE_FLAGS(SAFE_SET),
5231                 INIT_FEATURE_FLAGS(SAFE_CLEAR)
5232         };
5233
5234         if (copy_to_user(arg, &features, sizeof(features)))
5235                 return -EFAULT;
5236
5237         return 0;
5238 }
5239
5240 static int btrfs_ioctl_get_features(struct file *file, void __user *arg)
5241 {
5242         struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
5243         struct btrfs_super_block *super_block = root->fs_info->super_copy;
5244         struct btrfs_ioctl_feature_flags features;
5245
5246         features.compat_flags = btrfs_super_compat_flags(super_block);
5247         features.compat_ro_flags = btrfs_super_compat_ro_flags(super_block);
5248         features.incompat_flags = btrfs_super_incompat_flags(super_block);
5249
5250         if (copy_to_user(arg, &features, sizeof(features)))
5251                 return -EFAULT;
5252
5253         return 0;
5254 }
5255
5256 static int check_feature_bits(struct btrfs_root *root,
5257                               enum btrfs_feature_set set,
5258                               u64 change_mask, u64 flags, u64 supported_flags,
5259                               u64 safe_set, u64 safe_clear)
5260 {
5261         const char *type = btrfs_feature_set_names[set];
5262         char *names;
5263         u64 disallowed, unsupported;
5264         u64 set_mask = flags & change_mask;
5265         u64 clear_mask = ~flags & change_mask;
5266
5267         unsupported = set_mask & ~supported_flags;
5268         if (unsupported) {
5269                 names = btrfs_printable_features(set, unsupported);
5270                 if (names) {
5271                         btrfs_warn(root->fs_info,
5272                            "this kernel does not support the %s feature bit%s",
5273                            names, strchr(names, ',') ? "s" : "");
5274                         kfree(names);
5275                 } else
5276                         btrfs_warn(root->fs_info,
5277                            "this kernel does not support %s bits 0x%llx",
5278                            type, unsupported);
5279                 return -EOPNOTSUPP;
5280         }
5281
5282         disallowed = set_mask & ~safe_set;
5283         if (disallowed) {
5284                 names = btrfs_printable_features(set, disallowed);
5285                 if (names) {
5286                         btrfs_warn(root->fs_info,
5287                            "can't set the %s feature bit%s while mounted",
5288                            names, strchr(names, ',') ? "s" : "");
5289                         kfree(names);
5290                 } else
5291                         btrfs_warn(root->fs_info,
5292                            "can't set %s bits 0x%llx while mounted",
5293                            type, disallowed);
5294                 return -EPERM;
5295         }
5296
5297         disallowed = clear_mask & ~safe_clear;
5298         if (disallowed) {
5299                 names = btrfs_printable_features(set, disallowed);
5300                 if (names) {
5301                         btrfs_warn(root->fs_info,
5302                            "can't clear the %s feature bit%s while mounted",
5303                            names, strchr(names, ',') ? "s" : "");
5304                         kfree(names);
5305                 } else
5306                         btrfs_warn(root->fs_info,
5307                            "can't clear %s bits 0x%llx while mounted",
5308                            type, disallowed);
5309                 return -EPERM;
5310         }
5311
5312         return 0;
5313 }
5314
5315 #define check_feature(root, change_mask, flags, mask_base)      \
5316 check_feature_bits(root, FEAT_##mask_base, change_mask, flags,  \
5317                    BTRFS_FEATURE_ ## mask_base ## _SUPP,        \
5318                    BTRFS_FEATURE_ ## mask_base ## _SAFE_SET,    \
5319                    BTRFS_FEATURE_ ## mask_base ## _SAFE_CLEAR)
5320
5321 static int btrfs_ioctl_set_features(struct file *file, void __user *arg)
5322 {
5323         struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
5324         struct btrfs_super_block *super_block = root->fs_info->super_copy;
5325         struct btrfs_ioctl_feature_flags flags[2];
5326         struct btrfs_trans_handle *trans;
5327         u64 newflags;
5328         int ret;
5329
5330         if (!capable(CAP_SYS_ADMIN))
5331                 return -EPERM;
5332
5333         if (copy_from_user(flags, arg, sizeof(flags)))
5334                 return -EFAULT;
5335
5336         /* Nothing to do */
5337         if (!flags[0].compat_flags && !flags[0].compat_ro_flags &&
5338             !flags[0].incompat_flags)
5339                 return 0;
5340
5341         ret = check_feature(root, flags[0].compat_flags,
5342                             flags[1].compat_flags, COMPAT);
5343         if (ret)
5344                 return ret;
5345
5346         ret = check_feature(root, flags[0].compat_ro_flags,
5347                             flags[1].compat_ro_flags, COMPAT_RO);
5348         if (ret)
5349                 return ret;
5350
5351         ret = check_feature(root, flags[0].incompat_flags,
5352                             flags[1].incompat_flags, INCOMPAT);
5353         if (ret)
5354                 return ret;
5355
5356         trans = btrfs_start_transaction(root, 0);
5357         if (IS_ERR(trans))
5358                 return PTR_ERR(trans);
5359
5360         spin_lock(&root->fs_info->super_lock);
5361         newflags = btrfs_super_compat_flags(super_block);
5362         newflags |= flags[0].compat_flags & flags[1].compat_flags;
5363         newflags &= ~(flags[0].compat_flags & ~flags[1].compat_flags);
5364         btrfs_set_super_compat_flags(super_block, newflags);
5365
5366         newflags = btrfs_super_compat_ro_flags(super_block);
5367         newflags |= flags[0].compat_ro_flags & flags[1].compat_ro_flags;
5368         newflags &= ~(flags[0].compat_ro_flags & ~flags[1].compat_ro_flags);
5369         btrfs_set_super_compat_ro_flags(super_block, newflags);
5370
5371         newflags = btrfs_super_incompat_flags(super_block);
5372         newflags |= flags[0].incompat_flags & flags[1].incompat_flags;
5373         newflags &= ~(flags[0].incompat_flags & ~flags[1].incompat_flags);
5374         btrfs_set_super_incompat_flags(super_block, newflags);
5375         spin_unlock(&root->fs_info->super_lock);
5376
5377         return btrfs_commit_transaction(trans, root);
5378 }
5379
5380 long btrfs_ioctl(struct file *file, unsigned int
5381                 cmd, unsigned long arg)
5382 {
5383         struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
5384         void __user *argp = (void __user *)arg;
5385
5386         switch (cmd) {
5387         case FS_IOC_GETFLAGS:
5388                 return btrfs_ioctl_getflags(file, argp);
5389         case FS_IOC_SETFLAGS:
5390                 return btrfs_ioctl_setflags(file, argp);
5391         case FS_IOC_GETVERSION:
5392                 return btrfs_ioctl_getversion(file, argp);
5393         case FITRIM:
5394                 return btrfs_ioctl_fitrim(file, argp);
5395         case BTRFS_IOC_SNAP_CREATE:
5396                 return btrfs_ioctl_snap_create(file, argp, 0);
5397         case BTRFS_IOC_SNAP_CREATE_V2:
5398                 return btrfs_ioctl_snap_create_v2(file, argp, 0);
5399         case BTRFS_IOC_SUBVOL_CREATE:
5400                 return btrfs_ioctl_snap_create(file, argp, 1);
5401         case BTRFS_IOC_SUBVOL_CREATE_V2:
5402                 return btrfs_ioctl_snap_create_v2(file, argp, 1);
5403         case BTRFS_IOC_SNAP_DESTROY:
5404                 return btrfs_ioctl_snap_destroy(file, argp);
5405         case BTRFS_IOC_SUBVOL_GETFLAGS:
5406                 return btrfs_ioctl_subvol_getflags(file, argp);
5407         case BTRFS_IOC_SUBVOL_SETFLAGS:
5408                 return btrfs_ioctl_subvol_setflags(file, argp);
5409         case BTRFS_IOC_DEFAULT_SUBVOL:
5410                 return btrfs_ioctl_default_subvol(file, argp);
5411         case BTRFS_IOC_DEFRAG:
5412                 return btrfs_ioctl_defrag(file, NULL);
5413         case BTRFS_IOC_DEFRAG_RANGE:
5414                 return btrfs_ioctl_defrag(file, argp);
5415         case BTRFS_IOC_RESIZE:
5416                 return btrfs_ioctl_resize(file, argp);
5417         case BTRFS_IOC_ADD_DEV:
5418                 return btrfs_ioctl_add_dev(root, argp);
5419         case BTRFS_IOC_RM_DEV:
5420                 return btrfs_ioctl_rm_dev(file, argp);
5421         case BTRFS_IOC_FS_INFO:
5422                 return btrfs_ioctl_fs_info(root, argp);
5423         case BTRFS_IOC_DEV_INFO:
5424                 return btrfs_ioctl_dev_info(root, argp);
5425         case BTRFS_IOC_BALANCE:
5426                 return btrfs_ioctl_balance(file, NULL);
5427         case BTRFS_IOC_CLONE:
5428                 return btrfs_ioctl_clone(file, arg, 0, 0, 0);
5429         case BTRFS_IOC_CLONE_RANGE:
5430                 return btrfs_ioctl_clone_range(file, argp);
5431         case BTRFS_IOC_TRANS_START:
5432                 return btrfs_ioctl_trans_start(file);
5433         case BTRFS_IOC_TRANS_END:
5434                 return btrfs_ioctl_trans_end(file);
5435         case BTRFS_IOC_TREE_SEARCH:
5436                 return btrfs_ioctl_tree_search(file, argp);
5437         case BTRFS_IOC_TREE_SEARCH_V2:
5438                 return btrfs_ioctl_tree_search_v2(file, argp);
5439         case BTRFS_IOC_INO_LOOKUP:
5440                 return btrfs_ioctl_ino_lookup(file, argp);
5441         case BTRFS_IOC_INO_PATHS:
5442                 return btrfs_ioctl_ino_to_path(root, argp);
5443         case BTRFS_IOC_LOGICAL_INO:
5444                 return btrfs_ioctl_logical_to_ino(root, argp);
5445         case BTRFS_IOC_SPACE_INFO:
5446                 return btrfs_ioctl_space_info(root, argp);
5447         case BTRFS_IOC_SYNC: {
5448                 int ret;
5449
5450                 ret = btrfs_start_delalloc_roots(root->fs_info, 0, -1);
5451                 if (ret)
5452                         return ret;
5453                 ret = btrfs_sync_fs(file_inode(file)->i_sb, 1);
5454                 /*
5455                  * The transaction thread may want to do more work,
5456                  * namely it pokes the cleaner ktread that will start
5457                  * processing uncleaned subvols.
5458                  */
5459                 wake_up_process(root->fs_info->transaction_kthread);
5460                 return ret;
5461         }
5462         case BTRFS_IOC_START_SYNC:
5463                 return btrfs_ioctl_start_sync(root, argp);
5464         case BTRFS_IOC_WAIT_SYNC:
5465                 return btrfs_ioctl_wait_sync(root, argp);
5466         case BTRFS_IOC_SCRUB:
5467                 return btrfs_ioctl_scrub(file, argp);
5468         case BTRFS_IOC_SCRUB_CANCEL:
5469                 return btrfs_ioctl_scrub_cancel(root, argp);
5470         case BTRFS_IOC_SCRUB_PROGRESS:
5471                 return btrfs_ioctl_scrub_progress(root, argp);
5472         case BTRFS_IOC_BALANCE_V2:
5473                 return btrfs_ioctl_balance(file, argp);
5474         case BTRFS_IOC_BALANCE_CTL:
5475                 return btrfs_ioctl_balance_ctl(root, arg);
5476         case BTRFS_IOC_BALANCE_PROGRESS:
5477                 return btrfs_ioctl_balance_progress(root, argp);
5478         case BTRFS_IOC_SET_RECEIVED_SUBVOL:
5479                 return btrfs_ioctl_set_received_subvol(file, argp);
5480 #ifdef CONFIG_64BIT
5481         case BTRFS_IOC_SET_RECEIVED_SUBVOL_32:
5482                 return btrfs_ioctl_set_received_subvol_32(file, argp);
5483 #endif
5484         case BTRFS_IOC_SEND:
5485                 return btrfs_ioctl_send(file, argp);
5486         case BTRFS_IOC_GET_DEV_STATS:
5487                 return btrfs_ioctl_get_dev_stats(root, argp);
5488         case BTRFS_IOC_QUOTA_CTL:
5489                 return btrfs_ioctl_quota_ctl(file, argp);
5490         case BTRFS_IOC_QGROUP_ASSIGN:
5491                 return btrfs_ioctl_qgroup_assign(file, argp);
5492         case BTRFS_IOC_QGROUP_CREATE:
5493                 return btrfs_ioctl_qgroup_create(file, argp);
5494         case BTRFS_IOC_QGROUP_LIMIT:
5495                 return btrfs_ioctl_qgroup_limit(file, argp);
5496         case BTRFS_IOC_QUOTA_RESCAN:
5497                 return btrfs_ioctl_quota_rescan(file, argp);
5498         case BTRFS_IOC_QUOTA_RESCAN_STATUS:
5499                 return btrfs_ioctl_quota_rescan_status(file, argp);
5500         case BTRFS_IOC_QUOTA_RESCAN_WAIT:
5501                 return btrfs_ioctl_quota_rescan_wait(file, argp);
5502         case BTRFS_IOC_DEV_REPLACE:
5503                 return btrfs_ioctl_dev_replace(root, argp);
5504         case BTRFS_IOC_GET_FSLABEL:
5505                 return btrfs_ioctl_get_fslabel(file, argp);
5506         case BTRFS_IOC_SET_FSLABEL:
5507                 return btrfs_ioctl_set_fslabel(file, argp);
5508         case BTRFS_IOC_FILE_EXTENT_SAME:
5509                 return btrfs_ioctl_file_extent_same(file, argp);
5510         case BTRFS_IOC_GET_SUPPORTED_FEATURES:
5511                 return btrfs_ioctl_get_supported_features(file, argp);
5512         case BTRFS_IOC_GET_FEATURES:
5513                 return btrfs_ioctl_get_features(file, argp);
5514         case BTRFS_IOC_SET_FEATURES:
5515                 return btrfs_ioctl_set_features(file, argp);
5516         }
5517
5518         return -ENOTTY;
5519 }