blob: 7ed033a842121531c93f8b18c3e23f3eb8707817 [file] [log] [blame]
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001/*
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>
Christoph Hellwigcb8e7092008-10-09 13:39:39 -040024#include <linux/fsnotify.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040025#include <linux/pagemap.h>
26#include <linux/highmem.h>
27#include <linux/time.h>
28#include <linux/init.h>
29#include <linux/string.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040030#include <linux/backing-dev.h>
Christoph Hellwigcb8e7092008-10-09 13:39:39 -040031#include <linux/mount.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040032#include <linux/mpage.h>
Christoph Hellwigcb8e7092008-10-09 13:39:39 -040033#include <linux/namei.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040034#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>
Christoph Hellwigcb8e7092008-10-09 13:39:39 -040039#include <linux/security.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040040#include <linux/xattr.h>
Yan Zheng7ea394f2008-08-05 13:05:02 -040041#include <linux/vmalloc.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090042#include <linux/slab.h>
Li Dongyangf7039b12011-03-24 10:24:28 +000043#include <linux/blkdev.h>
Alexander Block8ea05e32012-07-25 17:35:53 +020044#include <linux/uuid.h>
Filipe Brandenburger55e301f2013-01-29 06:04:50 +000045#include <linux/btrfs.h>
Mark Fasheh416161d2013-08-06 11:42:51 -070046#include <linux/uaccess.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040047#include "ctree.h"
48#include "disk-io.h"
49#include "transaction.h"
50#include "btrfs_inode.h"
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040051#include "print-tree.h"
52#include "volumes.h"
Chris Mason925baed2008-06-25 16:01:30 -040053#include "locking.h"
Li Zefan581bb052011-04-20 10:06:11 +080054#include "inode-map.h"
Jan Schmidtd7728c92011-07-07 16:48:38 +020055#include "backref.h"
Josef Bacik606686e2012-06-04 14:03:51 -040056#include "rcu-string.h"
Alexander Block31db9f72012-07-25 23:19:24 +020057#include "send.h"
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +010058#include "dev-replace.h"
Filipe David Borba Manana63541922014-01-07 11:47:46 +000059#include "props.h"
Jeff Mahoney3b02a682013-11-01 13:07:02 -040060#include "sysfs.h"
Josef Bacikfcebe452014-05-13 17:30:47 -070061#include "qgroup.h"
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040062
Hugo Millsabccd002014-01-30 20:17:00 +000063#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 */
69struct btrfs_ioctl_timespec_32 {
70 __u64 sec;
71 __u32 nsec;
72} __attribute__ ((__packed__));
73
74struct 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
Mark Fasheh416161d2013-08-06 11:42:51 -070089static int btrfs_clone(struct inode *src, struct inode *inode,
Mark Fasheh1c919a52015-06-30 14:42:08 -070090 u64 off, u64 olen, u64 olen_aligned, u64 destoff,
91 int no_time_update);
Mark Fasheh416161d2013-08-06 11:42:51 -070092
Christoph Hellwig6cbff002009-04-17 10:37:41 +020093/* Mask out flags that are inappropriate for the given type of inode. */
94static 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}
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400103
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200104/*
105 * Export inode flags to the format expected by the FS_IOC_GETFLAGS ioctl.
106 */
107static 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;
Li Zefand0092bd2011-04-15 03:03:06 +0000123 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;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200130
131 return iflags;
132}
133
134/*
135 * Update inode->i_flags based on the btrfs internal flags.
136 */
137void btrfs_update_iflags(struct inode *inode)
138{
139 struct btrfs_inode *ip = BTRFS_I(inode);
Filipe Manana3cc79392014-06-25 22:36:02 +0100140 unsigned int new_fl = 0;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200141
142 if (ip->flags & BTRFS_INODE_SYNC)
Filipe Manana3cc79392014-06-25 22:36:02 +0100143 new_fl |= S_SYNC;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200144 if (ip->flags & BTRFS_INODE_IMMUTABLE)
Filipe Manana3cc79392014-06-25 22:36:02 +0100145 new_fl |= S_IMMUTABLE;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200146 if (ip->flags & BTRFS_INODE_APPEND)
Filipe Manana3cc79392014-06-25 22:36:02 +0100147 new_fl |= S_APPEND;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200148 if (ip->flags & BTRFS_INODE_NOATIME)
Filipe Manana3cc79392014-06-25 22:36:02 +0100149 new_fl |= S_NOATIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200150 if (ip->flags & BTRFS_INODE_DIRSYNC)
Filipe Manana3cc79392014-06-25 22:36:02 +0100151 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);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200156}
157
158/*
159 * Inherit flags from the parent inode.
160 *
Josef Bacike27425d2011-09-27 11:01:30 -0400161 * Currently only the compression flags and the cow flags are inherited.
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200162 */
163void btrfs_inherit_iflags(struct inode *inode, struct inode *dir)
164{
Chris Mason0b4dcea2009-06-11 11:13:35 -0400165 unsigned int flags;
166
167 if (!dir)
168 return;
169
170 flags = BTRFS_I(dir)->flags;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200171
Josef Bacike27425d2011-09-27 11:01:30 -0400172 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 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200179
Liu Bo213490b2012-09-11 08:33:50 -0600180 if (flags & BTRFS_INODE_NODATACOW) {
Josef Bacike27425d2011-09-27 11:01:30 -0400181 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW;
Liu Bo213490b2012-09-11 08:33:50 -0600182 if (S_ISREG(inode->i_mode))
183 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
184 }
Josef Bacike27425d2011-09-27 11:01:30 -0400185
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200186 btrfs_update_iflags(inode);
187}
188
189static int btrfs_ioctl_getflags(struct file *file, void __user *arg)
190{
Al Viro496ad9a2013-01-23 17:07:38 -0500191 struct btrfs_inode *ip = BTRFS_I(file_inode(file));
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200192 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
Liu Bo75e7cb72011-03-22 10:12:20 +0000199static 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 | \
Li Zefane1e8fb62011-04-15 03:02:49 +0000204 FS_NOCOMP_FL | FS_COMPR_FL |
205 FS_NOCOW_FL))
Liu Bo75e7cb72011-03-22 10:12:20 +0000206 return -EOPNOTSUPP;
207
208 if ((flags & FS_NOCOMP_FL) && (flags & FS_COMPR_FL))
209 return -EINVAL;
210
Liu Bo75e7cb72011-03-22 10:12:20 +0000211 return 0;
212}
213
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200214static int btrfs_ioctl_setflags(struct file *file, void __user *arg)
215{
Al Viro496ad9a2013-01-23 17:07:38 -0500216 struct inode *inode = file_inode(file);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200217 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;
Li Zefanf062abf02011-12-29 13:36:45 +0800222 u64 ip_oldflags;
223 unsigned int i_oldflags;
David Sterba7e97b8d2012-09-07 05:56:55 -0600224 umode_t mode;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200225
David Sterbabd60ea02014-01-16 15:50:22 +0100226 if (!inode_owner_or_capable(inode))
227 return -EPERM;
228
Li Zefanb83cc962010-12-20 16:04:08 +0800229 if (btrfs_root_readonly(root))
230 return -EROFS;
231
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200232 if (copy_from_user(&flags, arg, sizeof(flags)))
233 return -EFAULT;
234
Liu Bo75e7cb72011-03-22 10:12:20 +0000235 ret = check_flags(flags);
236 if (ret)
237 return ret;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200238
Jan Karae7848682012-06-12 16:20:32 +0200239 ret = mnt_want_write_file(file);
240 if (ret)
241 return ret;
242
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200243 mutex_lock(&inode->i_mutex);
244
Li Zefanf062abf02011-12-29 13:36:45 +0800245 ip_oldflags = ip->flags;
246 i_oldflags = inode->i_flags;
David Sterba7e97b8d2012-09-07 05:56:55 -0600247 mode = inode->i_mode;
Li Zefanf062abf02011-12-29 13:36:45 +0800248
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200249 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
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200258 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;
David Sterba7e97b8d2012-09-07 05:56:55 -0600282 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 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200307
Liu Bo75e7cb72011-03-22 10:12:20 +0000308 /*
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;
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000316
317 ret = btrfs_set_prop(inode, "btrfs.compression", NULL, 0, 0);
318 if (ret && ret != -ENODATA)
319 goto out_drop;
Liu Bo75e7cb72011-03-22 10:12:20 +0000320 } else if (flags & FS_COMPR_FL) {
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000321 const char *comp;
322
Liu Bo75e7cb72011-03-22 10:12:20 +0000323 ip->flags |= BTRFS_INODE_COMPRESS;
324 ip->flags &= ~BTRFS_INODE_NOCOMPRESS;
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000325
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
Li Zefanebcb9042011-04-15 03:03:17 +0000335 } else {
Filipe Manana78a017a2014-09-11 11:44:49 +0100336 ret = btrfs_set_prop(inode, "btrfs.compression", NULL, 0, 0);
337 if (ret && ret != -ENODATA)
338 goto out_drop;
Li Zefanebcb9042011-04-15 03:03:17 +0000339 ip->flags &= ~(BTRFS_INODE_COMPRESS | BTRFS_INODE_NOCOMPRESS);
Liu Bo75e7cb72011-03-22 10:12:20 +0000340 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200341
Li Zefan4da6f1a2011-12-29 13:39:50 +0800342 trans = btrfs_start_transaction(root, 1);
Li Zefanf062abf02011-12-29 13:36:45 +0800343 if (IS_ERR(trans)) {
344 ret = PTR_ERR(trans);
345 goto out_drop;
346 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200347
Li Zefan306424cc2011-12-14 20:12:02 -0500348 btrfs_update_iflags(inode);
Josef Bacik0c4d2d92012-04-05 15:03:02 -0400349 inode_inc_iversion(inode);
Li Zefan306424cc2011-12-14 20:12:02 -0500350 inode->i_ctime = CURRENT_TIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200351 ret = btrfs_update_inode(trans, root, inode);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200352
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200353 btrfs_end_transaction(trans, root);
Li Zefanf062abf02011-12-29 13:36:45 +0800354 out_drop:
355 if (ret) {
356 ip->flags = ip_oldflags;
357 inode->i_flags = i_oldflags;
358 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200359
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200360 out_unlock:
361 mutex_unlock(&inode->i_mutex);
Jan Karae7848682012-06-12 16:20:32 +0200362 mnt_drop_write_file(file);
liubo2d4e6f6ad2011-02-24 09:38:16 +0000363 return ret;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200364}
365
366static int btrfs_ioctl_getversion(struct file *file, int __user *arg)
367{
Al Viro496ad9a2013-01-23 17:07:38 -0500368 struct inode *inode = file_inode(file);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200369
370 return put_user(inode->i_generation, arg);
371}
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400372
Li Dongyangf7039b12011-03-24 10:24:28 +0000373static noinline int btrfs_ioctl_fitrim(struct file *file, void __user *arg)
374{
Al Viro54563d42013-09-01 15:57:51 -0400375 struct btrfs_fs_info *fs_info = btrfs_sb(file_inode(file)->i_sb);
Li Dongyangf7039b12011-03-24 10:24:28 +0000376 struct btrfs_device *device;
377 struct request_queue *q;
378 struct fstrim_range range;
379 u64 minlen = ULLONG_MAX;
380 u64 num_devices = 0;
Al Viro815745c2011-11-17 15:40:49 -0500381 u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy);
Li Dongyangf7039b12011-03-24 10:24:28 +0000382 int ret;
383
384 if (!capable(CAP_SYS_ADMIN))
385 return -EPERM;
386
Xiao Guangrong1f781602011-04-20 10:09:16 +0000387 rcu_read_lock();
388 list_for_each_entry_rcu(device, &fs_info->fs_devices->devices,
389 dev_list) {
Li Dongyangf7039b12011-03-24 10:24:28 +0000390 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 }
Xiao Guangrong1f781602011-04-20 10:09:16 +0000399 rcu_read_unlock();
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200400
Li Dongyangf7039b12011-03-24 10:24:28 +0000401 if (!num_devices)
402 return -EOPNOTSUPP;
Li Dongyangf7039b12011-03-24 10:24:28 +0000403 if (copy_from_user(&range, arg, sizeof(range)))
404 return -EFAULT;
Lukas Czernere515c182012-10-16 09:34:36 +0000405 if (range.start > total_bytes ||
406 range.len < fs_info->sb->s_blocksize)
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200407 return -EINVAL;
Li Dongyangf7039b12011-03-24 10:24:28 +0000408
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200409 range.len = min(range.len, total_bytes - range.start);
Li Dongyangf7039b12011-03-24 10:24:28 +0000410 range.minlen = max(range.minlen, minlen);
Al Viro815745c2011-11-17 15:40:49 -0500411 ret = btrfs_trim_fs(fs_info->tree_root, &range);
Li Dongyangf7039b12011-03-24 10:24:28 +0000412 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
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200421int btrfs_is_empty_uuid(u8 *uuid)
422{
Chris Mason46e0f662013-11-15 12:14:55 +0100423 int i;
424
425 for (i = 0; i < BTRFS_UUID_SIZE; i++) {
426 if (uuid[i])
427 return 0;
428 }
429 return 1;
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200430}
431
Miao Xied5c12072013-02-28 10:04:33 +0000432static noinline int create_subvol(struct inode *dir,
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400433 struct dentry *dentry,
Sage Weil72fd0322010-10-29 15:41:32 -0400434 char *name, int namelen,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200435 u64 *async_transid,
Miao Xie8696c532013-02-07 06:02:44 +0000436 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400437{
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;
Miao Xied5c12072013-02-28 10:04:33 +0000443 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -0400444 struct btrfs_root *new_root;
Miao Xied5c12072013-02-28 10:04:33 +0000445 struct btrfs_block_rsv block_rsv;
Alexander Block8ea05e32012-07-25 17:35:53 +0200446 struct timespec cur_time = CURRENT_TIME;
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900447 struct inode *inode;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400448 int ret;
449 int err;
450 u64 objectid;
451 u64 new_dirid = BTRFS_FIRST_FREE_OBJECTID;
Chris Mason3de45862008-11-17 21:02:50 -0500452 u64 index = 0;
Miao Xied5c12072013-02-28 10:04:33 +0000453 u64 qgroup_reserved;
Alexander Block8ea05e32012-07-25 17:35:53 +0200454 uuid_le new_uuid;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400455
Li Zefan581bb052011-04-20 10:06:11 +0800456 ret = btrfs_find_free_objectid(root->fs_info->tree_root, &objectid);
Al Viro2fbe8c82011-07-16 21:38:06 -0400457 if (ret)
Yan, Zhenga22285a2010-05-16 10:48:46 -0400458 return ret;
Josef Bacik6a912212010-11-20 09:48:00 +0000459
Qu Wenruoe09fe2d2015-02-27 16:24:23 +0800460 /*
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
Miao Xied5c12072013-02-28 10:04:33 +0000467 btrfs_init_block_rsv(&block_rsv, BTRFS_BLOCK_RSV_TEMP);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400468 /*
Miao Xied5c12072013-02-28 10:04:33 +0000469 * The same as the snapshot creation, please see the comment
470 * of create_snapshot().
Josef Bacik9ed74f22009-09-11 16:12:44 -0400471 */
Miao Xied5c12072013-02-28 10:04:33 +0000472 ret = btrfs_subvolume_reserve_metadata(root, &block_rsv,
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200473 8, &qgroup_reserved, false);
Miao Xied5c12072013-02-28 10:04:33 +0000474 if (ret)
475 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400476
Miao Xied5c12072013-02-28 10:04:33 +0000477 trans = btrfs_start_transaction(root, 0);
478 if (IS_ERR(trans)) {
479 ret = PTR_ERR(trans);
Liu Bode6e8202014-01-09 14:57:06 +0800480 btrfs_subvolume_release_metadata(root, &block_rsv,
481 qgroup_reserved);
482 return ret;
Miao Xied5c12072013-02-28 10:04:33 +0000483 }
484 trans->block_rsv = &block_rsv;
485 trans->bytes_reserved = block_rsv.size;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400486
Miao Xie8696c532013-02-07 06:02:44 +0000487 ret = btrfs_qgroup_inherit(trans, root->fs_info, 0, objectid, inherit);
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200488 if (ret)
489 goto fail;
490
David Sterba4d75f8a2014-06-15 01:54:12 +0200491 leaf = btrfs_alloc_tree_block(trans, root, 0, objectid, NULL, 0, 0, 0);
Josef Bacik8e8a1e32008-07-24 12:17:14 -0400492 if (IS_ERR(leaf)) {
493 ret = PTR_ERR(leaf);
494 goto fail;
495 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400496
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400497 memset_extent_buffer(leaf, 0, 0, sizeof(struct btrfs_header));
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400498 btrfs_set_header_bytenr(leaf, leaf->start);
499 btrfs_set_header_generation(leaf, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400500 btrfs_set_header_backref_rev(leaf, BTRFS_MIXED_BACKREF_REV);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400501 btrfs_set_header_owner(leaf, objectid);
502
Ross Kirk0a4e5582013-09-24 10:12:38 +0100503 write_extent_buffer(leaf, root->fs_info->fsid, btrfs_header_fsid(),
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400504 BTRFS_FSID_SIZE);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400505 write_extent_buffer(leaf, root->fs_info->chunk_tree_uuid,
Geert Uytterhoevenb308bc22013-08-20 13:20:15 +0200506 btrfs_header_chunk_tree_uuid(leaf),
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400507 BTRFS_UUID_SIZE);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400508 btrfs_mark_buffer_dirty(leaf);
509
Alexander Block8ea05e32012-07-25 17:35:53 +0200510 memset(&root_item, 0, sizeof(root_item));
511
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400512 inode_item = &root_item.inode;
Qu Wenruo3cae2102013-07-16 11:19:18 +0800513 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);
David Sterba707e8a02014-06-04 19:22:26 +0200516 btrfs_set_stack_inode_nbytes(inode_item, root->nodesize);
Qu Wenruo3cae2102013-07-16 11:19:18 +0800517 btrfs_set_stack_inode_mode(inode_item, S_IFDIR | 0755);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400518
Qu Wenruo3cae2102013-07-16 11:19:18 +0800519 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);
Li Zefan08fe4db2011-03-28 02:01:25 +0000522
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400523 btrfs_set_root_bytenr(&root_item, leaf->start);
Yan Zheng84234f32008-10-29 14:49:05 -0400524 btrfs_set_root_generation(&root_item, trans->transid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400525 btrfs_set_root_level(&root_item, 0);
526 btrfs_set_root_refs(&root_item, 1);
Yan, Zheng86b9f2e2009-11-12 09:36:50 +0000527 btrfs_set_root_used(&root_item, leaf->len);
Yan Zheng80ff3852008-10-30 14:20:02 -0400528 btrfs_set_root_last_snapshot(&root_item, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400529
Alexander Block8ea05e32012-07-25 17:35:53 +0200530 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);
Qu Wenruo3cae2102013-07-16 11:19:18 +0800534 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);
Alexander Block8ea05e32012-07-25 17:35:53 +0200536 root_item.ctime = root_item.otime;
537 btrfs_set_root_ctransid(&root_item, trans->transid);
538 btrfs_set_root_otransid(&root_item, trans->transid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400539
Chris Mason925baed2008-06-25 16:01:30 -0400540 btrfs_tree_unlock(leaf);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400541 free_extent_buffer(leaf);
542 leaf = NULL;
543
544 btrfs_set_root_dirid(&root_item, new_dirid);
545
546 key.objectid = objectid;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400547 key.offset = 0;
David Sterba962a2982014-06-04 18:41:45 +0200548 key.type = BTRFS_ROOT_ITEM_KEY;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400549 ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
550 &root_item);
551 if (ret)
552 goto fail;
553
Yan, Zheng76dda932009-09-21 16:00:26 -0400554 key.offset = (u64)-1;
555 new_root = btrfs_read_fs_root_no_name(root->fs_info, &key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100556 if (IS_ERR(new_root)) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100557 ret = PTR_ERR(new_root);
David Sterba6d13f542015-04-24 19:12:01 +0200558 btrfs_abort_transaction(trans, root, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100559 goto fail;
560 }
Yan, Zheng76dda932009-09-21 16:00:26 -0400561
562 btrfs_record_root_in_trans(trans, new_root);
563
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000564 ret = btrfs_create_subvol_root(trans, new_root, root, new_dirid);
Mark Fashehce598972011-07-26 11:32:23 -0700565 if (ret) {
566 /* We potentially lose an unused inode item here */
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100567 btrfs_abort_transaction(trans, root, ret);
Mark Fashehce598972011-07-26 11:32:23 -0700568 goto fail;
569 }
570
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400571 /*
572 * insert the directory item
573 */
Chris Mason3de45862008-11-17 21:02:50 -0500574 ret = btrfs_set_inode_index(dir, &index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100575 if (ret) {
576 btrfs_abort_transaction(trans, root, ret);
577 goto fail;
578 }
Chris Mason3de45862008-11-17 21:02:50 -0500579
580 ret = btrfs_insert_dir_item(trans, root,
Miao Xie16cdcec2011-04-22 18:12:22 +0800581 name, namelen, dir, &key,
Chris Mason3de45862008-11-17 21:02:50 -0500582 BTRFS_FT_DIR, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100583 if (ret) {
584 btrfs_abort_transaction(trans, root, ret);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400585 goto fail;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100586 }
Chris Mason0660b5a2008-11-17 20:37:39 -0500587
Yan Zheng52c26172009-01-05 15:43:43 -0500588 btrfs_i_size_write(dir, dir->i_size + namelen * 2);
589 ret = btrfs_update_inode(trans, root, dir);
590 BUG_ON(ret);
591
Chris Mason0660b5a2008-11-17 20:37:39 -0500592 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -0400593 objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +0800594 btrfs_ino(dir), index, name, namelen);
Chris Mason0660b5a2008-11-17 20:37:39 -0500595 BUG_ON(ret);
596
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200597 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
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400603fail:
Miao Xied5c12072013-02-28 10:04:33 +0000604 trans->block_rsv = NULL;
605 trans->bytes_reserved = 0;
Liu Bode6e8202014-01-09 14:57:06 +0800606 btrfs_subvolume_release_metadata(root, &block_rsv, qgroup_reserved);
607
Sage Weil72fd0322010-10-29 15:41:32 -0400608 if (async_transid) {
609 *async_transid = trans->transid;
610 err = btrfs_commit_transaction_async(trans, root, 1);
Miao Xie00d71c92013-03-04 09:45:06 +0000611 if (err)
612 err = btrfs_commit_transaction(trans, root);
Sage Weil72fd0322010-10-29 15:41:32 -0400613 } else {
614 err = btrfs_commit_transaction(trans, root);
615 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400616 if (err && !ret)
617 ret = err;
Chris Mason1a65e242013-02-06 12:06:02 -0500618
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900619 if (!ret) {
620 inode = btrfs_lookup_dentry(dir, dentry);
Liu Bode6e8202014-01-09 14:57:06 +0800621 if (IS_ERR(inode))
622 return PTR_ERR(inode);
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900623 d_instantiate(dentry, inode);
624 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400625 return ret;
626}
627
Filipe Manana9ea24bb2014-10-29 11:57:59 +0000628static void btrfs_wait_for_no_snapshoting_writes(struct btrfs_root *root)
Miao Xie8257b2d2014-03-06 13:38:19 +0800629{
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
Miao Xiee9662f72013-02-28 10:01:15 +0000645static 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)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400649{
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000650 struct inode *inode;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400651 struct btrfs_pending_snapshot *pending_snapshot;
652 struct btrfs_trans_handle *trans;
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000653 int ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400654
Miao Xie27cdeb72014-04-02 19:51:05 +0800655 if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400656 return -EINVAL;
657
Miao Xie8257b2d2014-03-06 13:38:19 +0800658 atomic_inc(&root->will_be_snapshoted);
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100659 smp_mb__after_atomic();
Filipe Manana9ea24bb2014-10-29 11:57:59 +0000660 btrfs_wait_for_no_snapshoting_writes(root);
Miao Xie8257b2d2014-03-06 13:38:19 +0800661
Miao Xie6a038432013-05-15 07:48:24 +0000662 ret = btrfs_start_delalloc_inodes(root, 0);
663 if (ret)
Miao Xie8257b2d2014-03-06 13:38:19 +0800664 goto out;
Miao Xie6a038432013-05-15 07:48:24 +0000665
Miao Xieb0244192013-11-04 23:13:25 +0800666 btrfs_wait_ordered_extents(root, -1);
Miao Xie6a038432013-05-15 07:48:24 +0000667
Yan, Zhenga22285a2010-05-16 10:48:46 -0400668 pending_snapshot = kzalloc(sizeof(*pending_snapshot), GFP_NOFS);
Miao Xie8257b2d2014-03-06 13:38:19 +0800669 if (!pending_snapshot) {
670 ret = -ENOMEM;
671 goto out;
672 }
Yan, Zhenga22285a2010-05-16 10:48:46 -0400673
Miao Xie66d8f3d2012-09-06 04:02:28 -0600674 btrfs_init_block_rsv(&pending_snapshot->block_rsv,
675 BTRFS_BLOCK_RSV_TEMP);
Miao Xied5c12072013-02-28 10:04:33 +0000676 /*
677 * 1 - parent dir inode
678 * 2 - dir entries
679 * 1 - root item
680 * 2 - root ref/backref
681 * 1 - root of snapshot
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200682 * 1 - UUID item
Miao Xied5c12072013-02-28 10:04:33 +0000683 */
684 ret = btrfs_subvolume_reserve_metadata(BTRFS_I(dir)->root,
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200685 &pending_snapshot->block_rsv, 8,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -0400686 &pending_snapshot->qgroup_reserved,
687 false);
Miao Xied5c12072013-02-28 10:04:33 +0000688 if (ret)
Miao Xie8257b2d2014-03-06 13:38:19 +0800689 goto free;
Miao Xied5c12072013-02-28 10:04:33 +0000690
Yan, Zhenga22285a2010-05-16 10:48:46 -0400691 pending_snapshot->dentry = dentry;
692 pending_snapshot->root = root;
Li Zefanb83cc962010-12-20 16:04:08 +0800693 pending_snapshot->readonly = readonly;
Miao Xiee9662f72013-02-28 10:01:15 +0000694 pending_snapshot->dir = dir;
Miao Xie8696c532013-02-07 06:02:44 +0000695 pending_snapshot->inherit = inherit;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400696
Miao Xied5c12072013-02-28 10:04:33 +0000697 trans = btrfs_start_transaction(root, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400698 if (IS_ERR(trans)) {
699 ret = PTR_ERR(trans);
700 goto fail;
701 }
702
Josef Bacik83515832011-06-14 15:16:14 -0400703 spin_lock(&root->fs_info->trans_lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400704 list_add(&pending_snapshot->list,
705 &trans->transaction->pending_snapshots);
Josef Bacik83515832011-06-14 15:16:14 -0400706 spin_unlock(&root->fs_info->trans_lock);
Sage Weil72fd0322010-10-29 15:41:32 -0400707 if (async_transid) {
708 *async_transid = trans->transid;
709 ret = btrfs_commit_transaction_async(trans,
710 root->fs_info->extent_root, 1);
Miao Xie00d71c92013-03-04 09:45:06 +0000711 if (ret)
712 ret = btrfs_commit_transaction(trans, root);
Sage Weil72fd0322010-10-29 15:41:32 -0400713 } else {
714 ret = btrfs_commit_transaction(trans,
715 root->fs_info->extent_root);
716 }
Miao Xieaec80302013-03-04 09:44:29 +0000717 if (ret)
Josef Bacikc37b2b62012-10-22 15:51:44 -0400718 goto fail;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400719
720 ret = pending_snapshot->error;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400721 if (ret)
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000722 goto fail;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400723
Chris Masond3797302014-10-15 13:50:56 -0700724 ret = btrfs_orphan_cleanup(pending_snapshot->snap);
725 if (ret)
726 goto fail;
727
David Howells2b0143b2015-03-17 22:25:59 +0000728 inode = btrfs_lookup_dentry(d_inode(dentry->d_parent), dentry);
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000729 if (IS_ERR(inode)) {
730 ret = PTR_ERR(inode);
731 goto fail;
732 }
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900733
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000734 d_instantiate(dentry, inode);
735 ret = 0;
736fail:
Miao Xied5c12072013-02-28 10:04:33 +0000737 btrfs_subvolume_release_metadata(BTRFS_I(dir)->root,
738 &pending_snapshot->block_rsv,
739 pending_snapshot->qgroup_reserved);
Miao Xie8257b2d2014-03-06 13:38:19 +0800740free:
Yan, Zhenga22285a2010-05-16 10:48:46 -0400741 kfree(pending_snapshot);
Miao Xie8257b2d2014-03-06 13:38:19 +0800742out:
Filipe Manana9ea24bb2014-10-29 11:57:59 +0000743 if (atomic_dec_and_test(&root->will_be_snapshoted))
744 wake_up_atomic_t(&root->will_be_snapshoted);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400745 return ret;
746}
747
Sage Weil4260f7c2010-10-29 15:46:43 -0400748/* 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
Dulshani Gunawardhana67871252013-10-31 10:33:04 +0530768static int btrfs_may_delete(struct inode *dir, struct dentry *victim, int isdir)
Sage Weil4260f7c2010-10-29 15:46:43 -0400769{
770 int error;
771
David Howells2b0143b2015-03-17 22:25:59 +0000772 if (d_really_is_negative(victim))
Sage Weil4260f7c2010-10-29 15:46:43 -0400773 return -ENOENT;
774
David Howells2b0143b2015-03-17 22:25:59 +0000775 BUG_ON(d_inode(victim->d_parent) != dir);
Jeff Layton4fa6b5e2012-10-10 15:25:25 -0400776 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
Sage Weil4260f7c2010-10-29 15:46:43 -0400777
778 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
779 if (error)
780 return error;
781 if (IS_APPEND(dir))
782 return -EPERM;
David Howells2b0143b2015-03-17 22:25:59 +0000783 if (check_sticky(dir, d_inode(victim)) || IS_APPEND(d_inode(victim)) ||
784 IS_IMMUTABLE(d_inode(victim)) || IS_SWAPFILE(d_inode(victim)))
Sage Weil4260f7c2010-10-29 15:46:43 -0400785 return -EPERM;
786 if (isdir) {
David Howellse36cb0b2015-01-29 12:02:35 +0000787 if (!d_is_dir(victim))
Sage Weil4260f7c2010-10-29 15:46:43 -0400788 return -ENOTDIR;
789 if (IS_ROOT(victim))
790 return -EBUSY;
David Howellse36cb0b2015-01-29 12:02:35 +0000791 } else if (d_is_dir(victim))
Sage Weil4260f7c2010-10-29 15:46:43 -0400792 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
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400800/* copy of may_create in fs/namei.c() */
801static inline int btrfs_may_create(struct inode *dir, struct dentry *child)
802{
David Howells2b0143b2015-03-17 22:25:59 +0000803 if (d_really_is_positive(child))
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400804 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 */
Yan, Zheng76dda932009-09-21 16:00:26 -0400815static noinline int btrfs_mksubvol(struct path *parent,
816 char *name, int namelen,
Sage Weil72fd0322010-10-29 15:41:32 -0400817 struct btrfs_root *snap_src,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200818 u64 *async_transid, bool readonly,
Miao Xie8696c532013-02-07 06:02:44 +0000819 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400820{
David Howells2b0143b2015-03-17 22:25:59 +0000821 struct inode *dir = d_inode(parent->dentry);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400822 struct dentry *dentry;
823 int error;
824
David Sterba5c50c9b2013-03-22 18:12:51 +0000825 error = mutex_lock_killable_nested(&dir->i_mutex, I_MUTEX_PARENT);
826 if (error == -EINTR)
827 return error;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400828
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;
David Howells2b0143b2015-03-17 22:25:59 +0000835 if (d_really_is_positive(dentry))
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400836 goto out_dput;
837
Yan, Zheng76dda932009-09-21 16:00:26 -0400838 error = btrfs_may_create(dir, dentry);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400839 if (error)
Liu Boa874a632012-06-29 03:58:46 -0600840 goto out_dput;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400841
Chris Mason9c520572012-12-17 14:26:57 -0500842 /*
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
Yan, Zheng76dda932009-09-21 16:00:26 -0400852 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
Chris Mason3de45862008-11-17 21:02:50 -0500857 if (snap_src) {
Miao Xiee9662f72013-02-28 10:01:15 +0000858 error = create_snapshot(snap_src, dir, dentry, name, namelen,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200859 async_transid, readonly, inherit);
Chris Mason3de45862008-11-17 21:02:50 -0500860 } else {
Miao Xied5c12072013-02-28 10:04:33 +0000861 error = create_subvol(dir, dentry, name, namelen,
862 async_transid, inherit);
Chris Mason3de45862008-11-17 21:02:50 -0500863 }
Yan, Zheng76dda932009-09-21 16:00:26 -0400864 if (!error)
865 fsnotify_mkdir(dir, dentry);
866out_up_read:
867 up_read(&BTRFS_I(dir)->root->fs_info->subvol_sem);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400868out_dput:
869 dput(dentry);
870out_unlock:
Yan, Zheng76dda932009-09-21 16:00:26 -0400871 mutex_unlock(&dir->i_mutex);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400872 return error;
873}
874
Chris Mason4cb53002011-05-24 15:35:30 -0400875/*
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 */
David Sterbaaab110a2014-07-29 17:32:10 +0200882static int check_defrag_in_cache(struct inode *inode, u64 offset, u32 thresh)
Chris Mason4cb53002011-05-24 15:35:30 -0400883{
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 */
915static int find_new_extents(struct btrfs_root *root,
916 struct inode *inode, u64 newer_than,
David Sterbaaab110a2014-07-29 17:32:10 +0200917 u64 *off, u32 thresh)
Chris Mason4cb53002011-05-24 15:35:30 -0400918{
919 struct btrfs_path *path;
920 struct btrfs_key min_key;
Chris Mason4cb53002011-05-24 15:35:30 -0400921 struct extent_buffer *leaf;
922 struct btrfs_file_extent_item *extent;
923 int type;
924 int ret;
David Sterbaa4689d22011-05-31 17:08:14 +0000925 u64 ino = btrfs_ino(inode);
Chris Mason4cb53002011-05-24 15:35:30 -0400926
927 path = btrfs_alloc_path();
928 if (!path)
929 return -ENOMEM;
930
David Sterbaa4689d22011-05-31 17:08:14 +0000931 min_key.objectid = ino;
Chris Mason4cb53002011-05-24 15:35:30 -0400932 min_key.type = BTRFS_EXTENT_DATA_KEY;
933 min_key.offset = *off;
934
Dulshani Gunawardhana67871252013-10-31 10:33:04 +0530935 while (1) {
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +0100936 ret = btrfs_search_forward(root, &min_key, path, newer_than);
Chris Mason4cb53002011-05-24 15:35:30 -0400937 if (ret != 0)
938 goto none;
Filipe Mananaf094c9bd2014-03-12 01:28:24 +0000939process_slot:
David Sterbaa4689d22011-05-31 17:08:14 +0000940 if (min_key.objectid != ino)
Chris Mason4cb53002011-05-24 15:35:30 -0400941 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
Filipe Mananaf094c9bd2014-03-12 01:28:24 +0000958 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
Chris Mason4cb53002011-05-24 15:35:30 -0400964 if (min_key.offset == (u64)-1)
965 goto none;
966
967 min_key.offset++;
968 btrfs_release_path(path);
969 }
970none:
971 btrfs_free_path(path);
972 return -ENOENT;
973}
974
Li Zefan6c282eb2012-06-11 16:03:35 +0800975static struct extent_map *defrag_lookup_extent(struct inode *inode, u64 start)
Liu Bo17ce6ef2012-03-29 09:57:45 -0400976{
977 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason940100a2010-03-10 10:52:59 -0500978 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Li Zefan6c282eb2012-06-11 16:03:35 +0800979 struct extent_map *em;
980 u64 len = PAGE_CACHE_SIZE;
Chris Mason940100a2010-03-10 10:52:59 -0500981
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) {
Filipe Manana308d9802014-03-11 13:56:15 +0000991 struct extent_state *cached = NULL;
992 u64 end = start + len - 1;
993
Chris Mason940100a2010-03-10 10:52:59 -0500994 /* get the big lock and read metadata off disk */
Filipe Manana308d9802014-03-11 13:56:15 +0000995 lock_extent_bits(io_tree, start, end, 0, &cached);
Chris Mason940100a2010-03-10 10:52:59 -0500996 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
Filipe Manana308d9802014-03-11 13:56:15 +0000997 unlock_extent_cached(io_tree, start, end, &cached, GFP_NOFS);
Chris Mason940100a2010-03-10 10:52:59 -0500998
Dan Carpenter6cf8bfb2010-03-20 11:22:10 +0000999 if (IS_ERR(em))
Li Zefan6c282eb2012-06-11 16:03:35 +08001000 return NULL;
Chris Mason940100a2010-03-10 10:52:59 -05001001 }
1002
Li Zefan6c282eb2012-06-11 16:03:35 +08001003 return em;
1004}
1005
1006static 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);
Chris Masone9512d72014-08-26 13:55:54 -07001016 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))
Li Zefan6c282eb2012-06-11 16:03:35 +08001020 ret = false;
1021
1022 free_extent_map(next);
1023 return ret;
1024}
1025
David Sterbaaab110a2014-07-29 17:32:10 +02001026static int should_defrag_range(struct inode *inode, u64 start, u32 thresh,
Andrew Mahonea43a2112012-06-19 21:08:32 -04001027 u64 *last_len, u64 *skip, u64 *defrag_end,
1028 int compress)
Li Zefan6c282eb2012-06-11 16:03:35 +08001029{
1030 struct extent_map *em;
1031 int ret = 1;
1032 bool next_mergeable = true;
Liu Bo4a3560c2015-08-07 16:48:41 +08001033 bool prev_mergeable = true;
Li Zefan6c282eb2012-06-11 16:03:35 +08001034
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
Chris Mason940100a2010-03-10 10:52:59 -05001048 /* this will cover holes, and inline extents */
Liu Bo17ce6ef2012-03-29 09:57:45 -04001049 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
Chris Mason940100a2010-03-10 10:52:59 -05001050 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -04001051 goto out;
1052 }
1053
Liu Bo4a3560c2015-08-07 16:48:41 +08001054 if (!*defrag_end)
1055 prev_mergeable = false;
1056
Li Zefan6c282eb2012-06-11 16:03:35 +08001057 next_mergeable = defrag_check_next_extent(inode, em);
Chris Mason940100a2010-03-10 10:52:59 -05001058 /*
Li Zefan6c282eb2012-06-11 16:03:35 +08001059 * we hit a real extent, if it is big or the next extent is not a
1060 * real extent, don't bother defragging it
Chris Mason940100a2010-03-10 10:52:59 -05001061 */
Andrew Mahonea43a2112012-06-19 21:08:32 -04001062 if (!compress && (*last_len == 0 || *last_len >= thresh) &&
Liu Bo4a3560c2015-08-07 16:48:41 +08001063 (em->len >= thresh || (!next_mergeable && !prev_mergeable)))
Chris Mason940100a2010-03-10 10:52:59 -05001064 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -04001065out:
Chris Mason940100a2010-03-10 10:52:59 -05001066 /*
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) {
Chris Mason940100a2010-03-10 10:52:59 -05001075 *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
Chris Mason4cb53002011-05-24 15:35:30 -04001086/*
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 */
1098static int cluster_pages_for_defrag(struct inode *inode,
1099 struct page **pages,
1100 unsigned long start_index,
Justin Maggardc41570c2014-01-21 11:18:29 -08001101 unsigned long num_pages)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001102{
Chris Mason4cb53002011-05-24 15:35:30 -04001103 unsigned long file_end;
1104 u64 isize = i_size_read(inode);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001105 u64 page_start;
1106 u64 page_end;
Liu Bo1f12bd02012-03-29 09:57:44 -04001107 u64 page_cnt;
Chris Mason4cb53002011-05-24 15:35:30 -04001108 int ret;
1109 int i;
1110 int i_done;
1111 struct btrfs_ordered_extent *ordered;
1112 struct extent_state *cached_state = NULL;
Miao Xie600a45e2012-02-16 15:01:24 +08001113 struct extent_io_tree *tree;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04001114 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
Chris Mason4cb53002011-05-24 15:35:30 -04001115
Chris Mason4cb53002011-05-24 15:35:30 -04001116 file_end = (isize - 1) >> PAGE_CACHE_SHIFT;
Liu Bo1f12bd02012-03-29 09:57:44 -04001117 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);
Chris Mason4cb53002011-05-24 15:35:30 -04001121
Qu Wenruo7cf5b972015-09-08 17:25:55 +08001122 ret = btrfs_delalloc_reserve_space(inode,
Qu Wenruodf480632015-09-08 17:25:54 +08001123 start_index << PAGE_CACHE_SHIFT,
1124 page_cnt << PAGE_CACHE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001125 if (ret)
1126 return ret;
Chris Mason4cb53002011-05-24 15:35:30 -04001127 i_done = 0;
Miao Xie600a45e2012-02-16 15:01:24 +08001128 tree = &BTRFS_I(inode)->io_tree;
Chris Mason4cb53002011-05-24 15:35:30 -04001129
1130 /* step one, lock all the pages */
Liu Bo1f12bd02012-03-29 09:57:44 -04001131 for (i = 0; i < page_cnt; i++) {
Chris Mason4cb53002011-05-24 15:35:30 -04001132 struct page *page;
Miao Xie600a45e2012-02-16 15:01:24 +08001133again:
Josef Bacika94733d2011-07-11 10:47:06 -04001134 page = find_or_create_page(inode->i_mapping,
Miao Xie600a45e2012-02-16 15:01:24 +08001135 start_index + i, mask);
Chris Mason4cb53002011-05-24 15:35:30 -04001136 if (!page)
1137 break;
1138
Miao Xie600a45e2012-02-16 15:01:24 +08001139 page_start = page_offset(page);
1140 page_end = page_start + PAGE_CACHE_SIZE - 1;
1141 while (1) {
Filipe Manana308d9802014-03-11 13:56:15 +00001142 lock_extent_bits(tree, page_start, page_end,
1143 0, &cached_state);
Miao Xie600a45e2012-02-16 15:01:24 +08001144 ordered = btrfs_lookup_ordered_extent(inode,
1145 page_start);
Filipe Manana308d9802014-03-11 13:56:15 +00001146 unlock_extent_cached(tree, page_start, page_end,
1147 &cached_state, GFP_NOFS);
Miao Xie600a45e2012-02-16 15:01:24 +08001148 if (!ordered)
1149 break;
1150
1151 unlock_page(page);
1152 btrfs_start_ordered_extent(inode, ordered, 1);
1153 btrfs_put_ordered_extent(ordered);
1154 lock_page(page);
Liu Bo1f12bd02012-03-29 09:57:44 -04001155 /*
1156 * we unlocked the page above, so we need check if
1157 * it was released or not.
1158 */
1159 if (page->mapping != inode->i_mapping) {
1160 unlock_page(page);
1161 page_cache_release(page);
1162 goto again;
1163 }
Miao Xie600a45e2012-02-16 15:01:24 +08001164 }
1165
Chris Mason4cb53002011-05-24 15:35:30 -04001166 if (!PageUptodate(page)) {
1167 btrfs_readpage(NULL, page);
1168 lock_page(page);
1169 if (!PageUptodate(page)) {
1170 unlock_page(page);
1171 page_cache_release(page);
1172 ret = -EIO;
1173 break;
1174 }
1175 }
Miao Xie600a45e2012-02-16 15:01:24 +08001176
Miao Xie600a45e2012-02-16 15:01:24 +08001177 if (page->mapping != inode->i_mapping) {
1178 unlock_page(page);
1179 page_cache_release(page);
1180 goto again;
1181 }
1182
Chris Mason4cb53002011-05-24 15:35:30 -04001183 pages[i] = page;
1184 i_done++;
1185 }
1186 if (!i_done || ret)
1187 goto out;
1188
1189 if (!(inode->i_sb->s_flags & MS_ACTIVE))
1190 goto out;
1191
1192 /*
1193 * so now we have a nice long stream of locked
1194 * and up to date pages, lets wait on them
1195 */
1196 for (i = 0; i < i_done; i++)
1197 wait_on_page_writeback(pages[i]);
1198
1199 page_start = page_offset(pages[0]);
1200 page_end = page_offset(pages[i_done - 1]) + PAGE_CACHE_SIZE;
1201
1202 lock_extent_bits(&BTRFS_I(inode)->io_tree,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001203 page_start, page_end - 1, 0, &cached_state);
Chris Mason4cb53002011-05-24 15:35:30 -04001204 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start,
1205 page_end - 1, EXTENT_DIRTY | EXTENT_DELALLOC |
Liu Bo9e8a4a82012-09-05 19:10:51 -06001206 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, 0, 0,
1207 &cached_state, GFP_NOFS);
Chris Mason4cb53002011-05-24 15:35:30 -04001208
Liu Bo1f12bd02012-03-29 09:57:44 -04001209 if (i_done != page_cnt) {
Josef Bacik9e0baf62011-07-15 15:16:44 +00001210 spin_lock(&BTRFS_I(inode)->lock);
1211 BTRFS_I(inode)->outstanding_extents++;
1212 spin_unlock(&BTRFS_I(inode)->lock);
Qu Wenruo7cf5b972015-09-08 17:25:55 +08001213 btrfs_delalloc_release_space(inode,
Qu Wenruodf480632015-09-08 17:25:54 +08001214 start_index << PAGE_CACHE_SHIFT,
1215 (page_cnt - i_done) << PAGE_CACHE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001216 }
1217
1218
Liu Bo9e8a4a82012-09-05 19:10:51 -06001219 set_extent_defrag(&BTRFS_I(inode)->io_tree, page_start, page_end - 1,
1220 &cached_state, GFP_NOFS);
Chris Mason4cb53002011-05-24 15:35:30 -04001221
1222 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
1223 page_start, page_end - 1, &cached_state,
1224 GFP_NOFS);
1225
1226 for (i = 0; i < i_done; i++) {
1227 clear_page_dirty_for_io(pages[i]);
1228 ClearPageChecked(pages[i]);
1229 set_page_extent_mapped(pages[i]);
1230 set_page_dirty(pages[i]);
1231 unlock_page(pages[i]);
1232 page_cache_release(pages[i]);
1233 }
1234 return i_done;
1235out:
1236 for (i = 0; i < i_done; i++) {
1237 unlock_page(pages[i]);
1238 page_cache_release(pages[i]);
1239 }
Qu Wenruo7cf5b972015-09-08 17:25:55 +08001240 btrfs_delalloc_release_space(inode,
Qu Wenruodf480632015-09-08 17:25:54 +08001241 start_index << PAGE_CACHE_SHIFT,
1242 page_cnt << PAGE_CACHE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001243 return ret;
1244
1245}
1246
1247int btrfs_defrag_file(struct inode *inode, struct file *file,
1248 struct btrfs_ioctl_defrag_range_args *range,
1249 u64 newer_than, unsigned long max_to_defrag)
1250{
1251 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason4cb53002011-05-24 15:35:30 -04001252 struct file_ra_state *ra = NULL;
1253 unsigned long last_index;
Li Zefan151a31b2011-09-02 15:56:39 +08001254 u64 isize = i_size_read(inode);
Chris Mason940100a2010-03-10 10:52:59 -05001255 u64 last_len = 0;
1256 u64 skip = 0;
1257 u64 defrag_end = 0;
Chris Mason4cb53002011-05-24 15:35:30 -04001258 u64 newer_off = range->start;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001259 unsigned long i;
Li Zefan008873e2011-09-02 15:57:07 +08001260 unsigned long ra_index = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001261 int ret;
Chris Mason4cb53002011-05-24 15:35:30 -04001262 int defrag_count = 0;
Li Zefan1a419d82010-10-25 15:12:50 +08001263 int compress_type = BTRFS_COMPRESS_ZLIB;
David Sterbaaab110a2014-07-29 17:32:10 +02001264 u32 extent_thresh = range->extent_thresh;
Justin Maggardc41570c2014-01-21 11:18:29 -08001265 unsigned long max_cluster = (256 * 1024) >> PAGE_CACHE_SHIFT;
1266 unsigned long cluster = max_cluster;
Chris Mason4cb53002011-05-24 15:35:30 -04001267 u64 new_align = ~((u64)128 * 1024 - 1);
1268 struct page **pages = NULL;
1269
Liu Bo0abd5b12013-04-16 09:20:28 +00001270 if (isize == 0)
1271 return 0;
1272
1273 if (range->start >= isize)
1274 return -EINVAL;
Li Zefan1a419d82010-10-25 15:12:50 +08001275
1276 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS) {
1277 if (range->compress_type > BTRFS_COMPRESS_TYPES)
1278 return -EINVAL;
1279 if (range->compress_type)
1280 compress_type = range->compress_type;
1281 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001282
Liu Bo0abd5b12013-04-16 09:20:28 +00001283 if (extent_thresh == 0)
1284 extent_thresh = 256 * 1024;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001285
Chris Mason4cb53002011-05-24 15:35:30 -04001286 /*
1287 * if we were not given a file, allocate a readahead
1288 * context
1289 */
1290 if (!file) {
1291 ra = kzalloc(sizeof(*ra), GFP_NOFS);
1292 if (!ra)
1293 return -ENOMEM;
1294 file_ra_state_init(ra, inode->i_mapping);
1295 } else {
1296 ra = &file->f_ra;
1297 }
1298
Dulshani Gunawardhanad9b0d9b2013-10-31 10:32:18 +05301299 pages = kmalloc_array(max_cluster, sizeof(struct page *),
Chris Mason4cb53002011-05-24 15:35:30 -04001300 GFP_NOFS);
1301 if (!pages) {
1302 ret = -ENOMEM;
1303 goto out_ra;
1304 }
1305
1306 /* find the last page to defrag */
Chris Mason1e701a32010-03-11 09:42:04 -05001307 if (range->start + range->len > range->start) {
Li Zefan151a31b2011-09-02 15:56:39 +08001308 last_index = min_t(u64, isize - 1,
Chris Mason1e701a32010-03-11 09:42:04 -05001309 range->start + range->len - 1) >> PAGE_CACHE_SHIFT;
1310 } else {
Li Zefan151a31b2011-09-02 15:56:39 +08001311 last_index = (isize - 1) >> PAGE_CACHE_SHIFT;
Chris Mason1e701a32010-03-11 09:42:04 -05001312 }
1313
Chris Mason4cb53002011-05-24 15:35:30 -04001314 if (newer_than) {
1315 ret = find_new_extents(root, inode, newer_than,
1316 &newer_off, 64 * 1024);
1317 if (!ret) {
1318 range->start = newer_off;
1319 /*
1320 * we always align our defrag to help keep
1321 * the extents in the file evenly spaced
1322 */
1323 i = (newer_off & new_align) >> PAGE_CACHE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001324 } else
1325 goto out_ra;
1326 } else {
1327 i = range->start >> PAGE_CACHE_SHIFT;
1328 }
1329 if (!max_to_defrag)
chandan070034b2015-06-09 10:35:11 +05301330 max_to_defrag = last_index - i + 1;
Chris Mason4cb53002011-05-24 15:35:30 -04001331
Li Zefan2a0f7f52011-10-10 15:43:34 -04001332 /*
1333 * make writeback starts from i, so the defrag range can be
1334 * written sequentially.
1335 */
1336 if (i < inode->i_mapping->writeback_index)
1337 inode->i_mapping->writeback_index = i;
1338
Chris Masonf7f43cc2011-10-11 11:41:40 -04001339 while (i <= last_index && defrag_count < max_to_defrag &&
David Sterbaed6078f2014-06-05 01:59:57 +02001340 (i < DIV_ROUND_UP(i_size_read(inode), PAGE_CACHE_SIZE))) {
Chris Mason4cb53002011-05-24 15:35:30 -04001341 /*
1342 * make sure we stop running if someone unmounts
1343 * the FS
1344 */
1345 if (!(inode->i_sb->s_flags & MS_ACTIVE))
1346 break;
1347
David Sterba210549e2013-02-09 23:38:06 +00001348 if (btrfs_defrag_cancelled(root->fs_info)) {
David Sterbaf14d1042015-10-08 11:37:06 +02001349 btrfs_debug(root->fs_info, "defrag_file cancelled");
David Sterba210549e2013-02-09 23:38:06 +00001350 ret = -EAGAIN;
1351 break;
1352 }
1353
Liu Bo66c26892012-03-29 09:57:45 -04001354 if (!should_defrag_range(inode, (u64)i << PAGE_CACHE_SHIFT,
Li Zefan6c282eb2012-06-11 16:03:35 +08001355 extent_thresh, &last_len, &skip,
Andrew Mahonea43a2112012-06-19 21:08:32 -04001356 &defrag_end, range->flags &
1357 BTRFS_DEFRAG_RANGE_COMPRESS)) {
Chris Mason940100a2010-03-10 10:52:59 -05001358 unsigned long next;
1359 /*
1360 * the should_defrag function tells us how much to skip
1361 * bump our counter by the suggested amount
1362 */
David Sterbaed6078f2014-06-05 01:59:57 +02001363 next = DIV_ROUND_UP(skip, PAGE_CACHE_SIZE);
Chris Mason940100a2010-03-10 10:52:59 -05001364 i = max(i + 1, next);
1365 continue;
1366 }
Li Zefan008873e2011-09-02 15:57:07 +08001367
1368 if (!newer_than) {
1369 cluster = (PAGE_CACHE_ALIGN(defrag_end) >>
1370 PAGE_CACHE_SHIFT) - i;
1371 cluster = min(cluster, max_cluster);
1372 } else {
1373 cluster = max_cluster;
1374 }
1375
Li Zefan008873e2011-09-02 15:57:07 +08001376 if (i + cluster > ra_index) {
1377 ra_index = max(i, ra_index);
1378 btrfs_force_ra(inode->i_mapping, ra, file, ra_index,
1379 cluster);
chandane4826a52015-06-09 17:38:32 +05301380 ra_index += cluster;
Li Zefan008873e2011-09-02 15:57:07 +08001381 }
Chris Mason940100a2010-03-10 10:52:59 -05001382
Liu Boecb8bea2012-03-29 09:57:44 -04001383 mutex_lock(&inode->i_mutex);
Filipe David Borba Manana633085c2013-08-16 15:23:33 +01001384 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)
1385 BTRFS_I(inode)->force_compress = compress_type;
Li Zefan008873e2011-09-02 15:57:07 +08001386 ret = cluster_pages_for_defrag(inode, pages, i, cluster);
Liu Boecb8bea2012-03-29 09:57:44 -04001387 if (ret < 0) {
1388 mutex_unlock(&inode->i_mutex);
Chris Mason4cb53002011-05-24 15:35:30 -04001389 goto out_ra;
Liu Boecb8bea2012-03-29 09:57:44 -04001390 }
Chris Mason940100a2010-03-10 10:52:59 -05001391
Chris Mason4cb53002011-05-24 15:35:30 -04001392 defrag_count += ret;
Namjae Jeond0e1d662012-12-11 16:00:21 -08001393 balance_dirty_pages_ratelimited(inode->i_mapping);
Liu Boecb8bea2012-03-29 09:57:44 -04001394 mutex_unlock(&inode->i_mutex);
Chris Mason4cb53002011-05-24 15:35:30 -04001395
1396 if (newer_than) {
1397 if (newer_off == (u64)-1)
1398 break;
1399
Liu Boe1f041e2012-03-29 09:57:45 -04001400 if (ret > 0)
1401 i += ret;
1402
Chris Mason4cb53002011-05-24 15:35:30 -04001403 newer_off = max(newer_off + 1,
1404 (u64)i << PAGE_CACHE_SHIFT);
1405
1406 ret = find_new_extents(root, inode,
1407 newer_than, &newer_off,
1408 64 * 1024);
1409 if (!ret) {
1410 range->start = newer_off;
1411 i = (newer_off & new_align) >> PAGE_CACHE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001412 } else {
1413 break;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001414 }
Chris Mason4cb53002011-05-24 15:35:30 -04001415 } else {
Li Zefan008873e2011-09-02 15:57:07 +08001416 if (ret > 0) {
Li Zefancbcc8322011-09-02 15:56:25 +08001417 i += ret;
Li Zefan008873e2011-09-02 15:57:07 +08001418 last_len += ret << PAGE_CACHE_SHIFT;
1419 } else {
Li Zefancbcc8322011-09-02 15:56:25 +08001420 i++;
Li Zefan008873e2011-09-02 15:57:07 +08001421 last_len = 0;
1422 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001423 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001424 }
1425
Filipe Mananadec8ef92014-03-01 10:55:54 +00001426 if ((range->flags & BTRFS_DEFRAG_RANGE_START_IO)) {
Chris Mason1e701a32010-03-11 09:42:04 -05001427 filemap_flush(inode->i_mapping);
Filipe Mananadec8ef92014-03-01 10:55:54 +00001428 if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
1429 &BTRFS_I(inode)->runtime_flags))
1430 filemap_flush(inode->i_mapping);
1431 }
Chris Mason1e701a32010-03-11 09:42:04 -05001432
1433 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
1434 /* the filemap_flush will queue IO into the worker threads, but
1435 * we have to make sure the IO is actually started and that
1436 * ordered extents get created before we return
1437 */
1438 atomic_inc(&root->fs_info->async_submit_draining);
1439 while (atomic_read(&root->fs_info->nr_async_submits) ||
1440 atomic_read(&root->fs_info->async_delalloc_pages)) {
1441 wait_event(root->fs_info->async_submit_wait,
1442 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
1443 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
1444 }
1445 atomic_dec(&root->fs_info->async_submit_draining);
Chris Mason1e701a32010-03-11 09:42:04 -05001446 }
1447
Li Zefan1a419d82010-10-25 15:12:50 +08001448 if (range->compress_type == BTRFS_COMPRESS_LZO) {
Mitch Harder2b0ce2c2012-07-24 11:58:43 -06001449 btrfs_set_fs_incompat(root->fs_info, COMPRESS_LZO);
Li Zefan1a419d82010-10-25 15:12:50 +08001450 }
1451
Diego Calleja60ccf822011-09-01 16:33:57 +02001452 ret = defrag_count;
Chris Mason940100a2010-03-10 10:52:59 -05001453
Chris Mason4cb53002011-05-24 15:35:30 -04001454out_ra:
Filipe David Borba Manana633085c2013-08-16 15:23:33 +01001455 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS) {
1456 mutex_lock(&inode->i_mutex);
1457 BTRFS_I(inode)->force_compress = BTRFS_COMPRESS_NONE;
1458 mutex_unlock(&inode->i_mutex);
1459 }
Chris Mason4cb53002011-05-24 15:35:30 -04001460 if (!file)
1461 kfree(ra);
1462 kfree(pages);
Chris Mason940100a2010-03-10 10:52:59 -05001463 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001464}
1465
Miao Xie198605a2012-11-26 08:43:45 +00001466static noinline int btrfs_ioctl_resize(struct file *file,
Yan, Zheng76dda932009-09-21 16:00:26 -04001467 void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001468{
1469 u64 new_size;
1470 u64 old_size;
1471 u64 devid = 1;
Al Viro496ad9a2013-01-23 17:07:38 -05001472 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001473 struct btrfs_ioctl_vol_args *vol_args;
1474 struct btrfs_trans_handle *trans;
1475 struct btrfs_device *device = NULL;
1476 char *sizestr;
Gui Hecheng9a40f122014-03-31 18:03:25 +08001477 char *retptr;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001478 char *devstr = NULL;
1479 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001480 int mod = 0;
1481
Chris Masone441d542009-01-05 16:57:23 -05001482 if (!capable(CAP_SYS_ADMIN))
1483 return -EPERM;
1484
Miao Xie198605a2012-11-26 08:43:45 +00001485 ret = mnt_want_write_file(file);
1486 if (ret)
1487 return ret;
1488
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01001489 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
1490 1)) {
Miao Xie97547672012-12-21 10:38:50 +00001491 mnt_drop_write_file(file);
Anand Jaine57138b2013-08-21 11:44:48 +08001492 return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001493 }
1494
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01001495 mutex_lock(&root->fs_info->volume_mutex);
Li Zefandae7b662009-04-08 15:06:54 +08001496 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001497 if (IS_ERR(vol_args)) {
1498 ret = PTR_ERR(vol_args);
1499 goto out;
1500 }
Mark Fasheh5516e592008-07-24 12:20:14 -04001501
1502 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001503
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001504 sizestr = vol_args->name;
1505 devstr = strchr(sizestr, ':');
1506 if (devstr) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001507 sizestr = devstr + 1;
1508 *devstr = '\0';
1509 devstr = vol_args->name;
ZhangZhen58dfae62014-05-13 16:36:08 +08001510 ret = kstrtoull(devstr, 10, &devid);
1511 if (ret)
1512 goto out_free;
Miao Xiedfd79822012-12-21 09:21:30 +00001513 if (!devid) {
1514 ret = -EINVAL;
1515 goto out_free;
1516 }
Frank Holtonefe120a2013-12-20 11:37:06 -05001517 btrfs_info(root->fs_info, "resizing devid %llu", devid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001518 }
Miao Xiedba60f32012-12-21 09:19:51 +00001519
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01001520 device = btrfs_find_device(root->fs_info, devid, NULL, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001521 if (!device) {
Frank Holtonefe120a2013-12-20 11:37:06 -05001522 btrfs_info(root->fs_info, "resizer unable to find device %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001523 devid);
Miao Xiedfd79822012-12-21 09:21:30 +00001524 ret = -ENODEV;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001525 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001526 }
Miao Xiedba60f32012-12-21 09:19:51 +00001527
1528 if (!device->writeable) {
Frank Holtonefe120a2013-12-20 11:37:06 -05001529 btrfs_info(root->fs_info,
1530 "resizer unable to apply on readonly device %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001531 devid);
Miao Xiedfd79822012-12-21 09:21:30 +00001532 ret = -EPERM;
Liu Bo4e42ae12012-06-14 02:23:19 -06001533 goto out_free;
1534 }
1535
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001536 if (!strcmp(sizestr, "max"))
1537 new_size = device->bdev->bd_inode->i_size;
1538 else {
1539 if (sizestr[0] == '-') {
1540 mod = -1;
1541 sizestr++;
1542 } else if (sizestr[0] == '+') {
1543 mod = 1;
1544 sizestr++;
1545 }
Gui Hecheng9a40f122014-03-31 18:03:25 +08001546 new_size = memparse(sizestr, &retptr);
1547 if (*retptr != '\0' || new_size == 0) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001548 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001549 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001550 }
1551 }
1552
Stefan Behrens63a212a2012-11-05 18:29:28 +01001553 if (device->is_tgtdev_for_dev_replace) {
Miao Xiedfd79822012-12-21 09:21:30 +00001554 ret = -EPERM;
Stefan Behrens63a212a2012-11-05 18:29:28 +01001555 goto out_free;
1556 }
1557
Miao Xie7cc8e582014-09-03 21:35:38 +08001558 old_size = btrfs_device_get_total_bytes(device);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001559
1560 if (mod < 0) {
1561 if (new_size > old_size) {
1562 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001563 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001564 }
1565 new_size = old_size - new_size;
1566 } else if (mod > 0) {
Wenliang Faneb8052e2013-12-20 15:28:56 +08001567 if (new_size > ULLONG_MAX - old_size) {
Gui Hecheng902c68a2014-05-29 09:19:58 +08001568 ret = -ERANGE;
Wenliang Faneb8052e2013-12-20 15:28:56 +08001569 goto out_free;
1570 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001571 new_size = old_size + new_size;
1572 }
1573
1574 if (new_size < 256 * 1024 * 1024) {
1575 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001576 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001577 }
1578 if (new_size > device->bdev->bd_inode->i_size) {
1579 ret = -EFBIG;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001580 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001581 }
1582
David Sterbab8b93ad2015-01-16 17:26:13 +01001583 new_size = div_u64(new_size, root->sectorsize);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001584 new_size *= root->sectorsize;
1585
David Sterbaecaeb142015-10-08 09:01:03 +02001586 btrfs_info_in_rcu(root->fs_info, "new size for %s is %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001587 rcu_str_deref(device->name), new_size);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001588
1589 if (new_size > old_size) {
Yan, Zhenga22285a2010-05-16 10:48:46 -04001590 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001591 if (IS_ERR(trans)) {
1592 ret = PTR_ERR(trans);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001593 goto out_free;
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001594 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001595 ret = btrfs_grow_device(trans, device, new_size);
1596 btrfs_commit_transaction(trans, root);
Mike Fleetwoodece7d202011-11-18 18:55:01 +00001597 } else if (new_size < old_size) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001598 ret = btrfs_shrink_device(device, new_size);
jeff.liu0253f402012-10-27 12:06:39 +00001599 } /* equal, nothing need to do */
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001600
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001601out_free:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001602 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001603out:
1604 mutex_unlock(&root->fs_info->volume_mutex);
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01001605 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
Ilya Dryomov18f39c42013-01-20 15:57:57 +02001606 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001607 return ret;
1608}
1609
Sage Weil72fd0322010-10-29 15:41:32 -04001610static noinline int btrfs_ioctl_snap_create_transid(struct file *file,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001611 char *name, unsigned long fd, int subvol,
1612 u64 *transid, bool readonly,
Miao Xie8696c532013-02-07 06:02:44 +00001613 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001614{
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001615 int namelen;
Chris Mason3de45862008-11-17 21:02:50 -05001616 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001617
Liu Boa874a632012-06-29 03:58:46 -06001618 ret = mnt_want_write_file(file);
1619 if (ret)
1620 goto out;
1621
Sage Weil72fd0322010-10-29 15:41:32 -04001622 namelen = strlen(name);
1623 if (strchr(name, '/')) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001624 ret = -EINVAL;
Liu Boa874a632012-06-29 03:58:46 -06001625 goto out_drop_write;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001626 }
1627
Chris Mason16780ca2012-02-20 22:14:55 -05001628 if (name[0] == '.' &&
1629 (namelen == 1 || (name[1] == '.' && namelen == 2))) {
1630 ret = -EEXIST;
Liu Boa874a632012-06-29 03:58:46 -06001631 goto out_drop_write;
Chris Mason16780ca2012-02-20 22:14:55 -05001632 }
1633
Chris Mason3de45862008-11-17 21:02:50 -05001634 if (subvol) {
Sage Weil72fd0322010-10-29 15:41:32 -04001635 ret = btrfs_mksubvol(&file->f_path, name, namelen,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001636 NULL, transid, readonly, inherit);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001637 } else {
Al Viro2903ff02012-08-28 12:52:22 -04001638 struct fd src = fdget(fd);
Chris Mason3de45862008-11-17 21:02:50 -05001639 struct inode *src_inode;
Al Viro2903ff02012-08-28 12:52:22 -04001640 if (!src.file) {
Chris Mason3de45862008-11-17 21:02:50 -05001641 ret = -EINVAL;
Liu Boa874a632012-06-29 03:58:46 -06001642 goto out_drop_write;
Chris Mason3de45862008-11-17 21:02:50 -05001643 }
1644
Al Viro496ad9a2013-01-23 17:07:38 -05001645 src_inode = file_inode(src.file);
1646 if (src_inode->i_sb != file_inode(file)->i_sb) {
Frank Holtonefe120a2013-12-20 11:37:06 -05001647 btrfs_info(BTRFS_I(src_inode)->root->fs_info,
1648 "Snapshot src from another FS");
Kusanagi Kouichi23ad5b12014-01-30 16:32:02 +09001649 ret = -EXDEV;
David Sterbad0242062014-01-15 18:15:52 +01001650 } else if (!inode_owner_or_capable(src_inode)) {
1651 /*
1652 * Subvolume creation is not restricted, but snapshots
1653 * are limited to own subvolumes only
1654 */
1655 ret = -EPERM;
Al Viroecd18812012-08-26 21:20:24 -04001656 } else {
1657 ret = btrfs_mksubvol(&file->f_path, name, namelen,
1658 BTRFS_I(src_inode)->root,
1659 transid, readonly, inherit);
Chris Mason3de45862008-11-17 21:02:50 -05001660 }
Al Viro2903ff02012-08-28 12:52:22 -04001661 fdput(src);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001662 }
Liu Boa874a632012-06-29 03:58:46 -06001663out_drop_write:
1664 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001665out:
Sage Weil72fd0322010-10-29 15:41:32 -04001666 return ret;
1667}
1668
1669static noinline int btrfs_ioctl_snap_create(struct file *file,
Li Zefanfa0d2b92010-12-20 15:53:28 +08001670 void __user *arg, int subvol)
Sage Weil72fd0322010-10-29 15:41:32 -04001671{
Li Zefanfa0d2b92010-12-20 15:53:28 +08001672 struct btrfs_ioctl_vol_args *vol_args;
Sage Weil72fd0322010-10-29 15:41:32 -04001673 int ret;
1674
Li Zefanfa0d2b92010-12-20 15:53:28 +08001675 vol_args = memdup_user(arg, sizeof(*vol_args));
1676 if (IS_ERR(vol_args))
1677 return PTR_ERR(vol_args);
1678 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Sage Weil72fd0322010-10-29 15:41:32 -04001679
Li Zefanfa0d2b92010-12-20 15:53:28 +08001680 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
Li Zefanb83cc962010-12-20 16:04:08 +08001681 vol_args->fd, subvol,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001682 NULL, false, NULL);
Li Zefanfdfb1e42010-12-10 06:41:56 +00001683
Li Zefanfa0d2b92010-12-20 15:53:28 +08001684 kfree(vol_args);
1685 return ret;
1686}
Li Zefanfdfb1e42010-12-10 06:41:56 +00001687
Li Zefanfa0d2b92010-12-20 15:53:28 +08001688static noinline int btrfs_ioctl_snap_create_v2(struct file *file,
1689 void __user *arg, int subvol)
1690{
1691 struct btrfs_ioctl_vol_args_v2 *vol_args;
1692 int ret;
1693 u64 transid = 0;
1694 u64 *ptr = NULL;
Li Zefanb83cc962010-12-20 16:04:08 +08001695 bool readonly = false;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001696 struct btrfs_qgroup_inherit *inherit = NULL;
Li Zefanfdfb1e42010-12-10 06:41:56 +00001697
Li Zefanfa0d2b92010-12-20 15:53:28 +08001698 vol_args = memdup_user(arg, sizeof(*vol_args));
1699 if (IS_ERR(vol_args))
1700 return PTR_ERR(vol_args);
1701 vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
Sage Weil75eaa0e2010-12-10 00:36:28 +00001702
Li Zefanb83cc962010-12-20 16:04:08 +08001703 if (vol_args->flags &
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001704 ~(BTRFS_SUBVOL_CREATE_ASYNC | BTRFS_SUBVOL_RDONLY |
1705 BTRFS_SUBVOL_QGROUP_INHERIT)) {
Li Zefanb83cc962010-12-20 16:04:08 +08001706 ret = -EOPNOTSUPP;
Dan Carpenterc47ca322014-09-04 14:09:15 +03001707 goto free_args;
Sage Weil72fd0322010-10-29 15:41:32 -04001708 }
Li Zefanfa0d2b92010-12-20 15:53:28 +08001709
1710 if (vol_args->flags & BTRFS_SUBVOL_CREATE_ASYNC)
1711 ptr = &transid;
Li Zefanb83cc962010-12-20 16:04:08 +08001712 if (vol_args->flags & BTRFS_SUBVOL_RDONLY)
1713 readonly = true;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001714 if (vol_args->flags & BTRFS_SUBVOL_QGROUP_INHERIT) {
1715 if (vol_args->size > PAGE_CACHE_SIZE) {
1716 ret = -EINVAL;
Dan Carpenterc47ca322014-09-04 14:09:15 +03001717 goto free_args;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001718 }
1719 inherit = memdup_user(vol_args->qgroup_inherit, vol_args->size);
1720 if (IS_ERR(inherit)) {
1721 ret = PTR_ERR(inherit);
Dan Carpenterc47ca322014-09-04 14:09:15 +03001722 goto free_args;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001723 }
1724 }
Li Zefanfa0d2b92010-12-20 15:53:28 +08001725
1726 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001727 vol_args->fd, subvol, ptr,
Miao Xie8696c532013-02-07 06:02:44 +00001728 readonly, inherit);
Dan Carpenterc47ca322014-09-04 14:09:15 +03001729 if (ret)
1730 goto free_inherit;
Li Zefanfa0d2b92010-12-20 15:53:28 +08001731
Dan Carpenterc47ca322014-09-04 14:09:15 +03001732 if (ptr && copy_to_user(arg +
1733 offsetof(struct btrfs_ioctl_vol_args_v2,
1734 transid),
1735 ptr, sizeof(*ptr)))
Li Zefanfa0d2b92010-12-20 15:53:28 +08001736 ret = -EFAULT;
Dan Carpenterc47ca322014-09-04 14:09:15 +03001737
1738free_inherit:
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001739 kfree(inherit);
Dan Carpenterc47ca322014-09-04 14:09:15 +03001740free_args:
1741 kfree(vol_args);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001742 return ret;
1743}
1744
Li Zefan0caa1022010-12-20 16:30:25 +08001745static noinline int btrfs_ioctl_subvol_getflags(struct file *file,
1746 void __user *arg)
1747{
Al Viro496ad9a2013-01-23 17:07:38 -05001748 struct inode *inode = file_inode(file);
Li Zefan0caa1022010-12-20 16:30:25 +08001749 struct btrfs_root *root = BTRFS_I(inode)->root;
1750 int ret = 0;
1751 u64 flags = 0;
1752
Li Zefan33345d012011-04-20 10:31:50 +08001753 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID)
Li Zefan0caa1022010-12-20 16:30:25 +08001754 return -EINVAL;
1755
1756 down_read(&root->fs_info->subvol_sem);
1757 if (btrfs_root_readonly(root))
1758 flags |= BTRFS_SUBVOL_RDONLY;
1759 up_read(&root->fs_info->subvol_sem);
1760
1761 if (copy_to_user(arg, &flags, sizeof(flags)))
1762 ret = -EFAULT;
1763
1764 return ret;
1765}
1766
1767static noinline int btrfs_ioctl_subvol_setflags(struct file *file,
1768 void __user *arg)
1769{
Al Viro496ad9a2013-01-23 17:07:38 -05001770 struct inode *inode = file_inode(file);
Li Zefan0caa1022010-12-20 16:30:25 +08001771 struct btrfs_root *root = BTRFS_I(inode)->root;
1772 struct btrfs_trans_handle *trans;
1773 u64 root_flags;
1774 u64 flags;
1775 int ret = 0;
1776
David Sterbabd60ea02014-01-16 15:50:22 +01001777 if (!inode_owner_or_capable(inode))
1778 return -EPERM;
1779
Liu Bob9ca0662012-06-29 03:58:49 -06001780 ret = mnt_want_write_file(file);
1781 if (ret)
1782 goto out;
Li Zefan0caa1022010-12-20 16:30:25 +08001783
Liu Bob9ca0662012-06-29 03:58:49 -06001784 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
1785 ret = -EINVAL;
1786 goto out_drop_write;
1787 }
Li Zefan0caa1022010-12-20 16:30:25 +08001788
Liu Bob9ca0662012-06-29 03:58:49 -06001789 if (copy_from_user(&flags, arg, sizeof(flags))) {
1790 ret = -EFAULT;
1791 goto out_drop_write;
1792 }
Li Zefan0caa1022010-12-20 16:30:25 +08001793
Liu Bob9ca0662012-06-29 03:58:49 -06001794 if (flags & BTRFS_SUBVOL_CREATE_ASYNC) {
1795 ret = -EINVAL;
1796 goto out_drop_write;
1797 }
Li Zefan0caa1022010-12-20 16:30:25 +08001798
Liu Bob9ca0662012-06-29 03:58:49 -06001799 if (flags & ~BTRFS_SUBVOL_RDONLY) {
1800 ret = -EOPNOTSUPP;
1801 goto out_drop_write;
1802 }
Li Zefan0caa1022010-12-20 16:30:25 +08001803
1804 down_write(&root->fs_info->subvol_sem);
1805
1806 /* nothing to do */
1807 if (!!(flags & BTRFS_SUBVOL_RDONLY) == btrfs_root_readonly(root))
Liu Bob9ca0662012-06-29 03:58:49 -06001808 goto out_drop_sem;
Li Zefan0caa1022010-12-20 16:30:25 +08001809
1810 root_flags = btrfs_root_flags(&root->root_item);
David Sterba2c686532013-12-16 17:34:17 +01001811 if (flags & BTRFS_SUBVOL_RDONLY) {
Li Zefan0caa1022010-12-20 16:30:25 +08001812 btrfs_set_root_flags(&root->root_item,
1813 root_flags | BTRFS_ROOT_SUBVOL_RDONLY);
David Sterba2c686532013-12-16 17:34:17 +01001814 } else {
1815 /*
1816 * Block RO -> RW transition if this subvolume is involved in
1817 * send
1818 */
1819 spin_lock(&root->root_item_lock);
1820 if (root->send_in_progress == 0) {
1821 btrfs_set_root_flags(&root->root_item,
Li Zefan0caa1022010-12-20 16:30:25 +08001822 root_flags & ~BTRFS_ROOT_SUBVOL_RDONLY);
David Sterba2c686532013-12-16 17:34:17 +01001823 spin_unlock(&root->root_item_lock);
1824 } else {
1825 spin_unlock(&root->root_item_lock);
1826 btrfs_warn(root->fs_info,
1827 "Attempt to set subvolume %llu read-write during send",
1828 root->root_key.objectid);
1829 ret = -EPERM;
1830 goto out_drop_sem;
1831 }
1832 }
Li Zefan0caa1022010-12-20 16:30:25 +08001833
1834 trans = btrfs_start_transaction(root, 1);
1835 if (IS_ERR(trans)) {
1836 ret = PTR_ERR(trans);
1837 goto out_reset;
1838 }
1839
Li Zefanb4dc2b82011-02-16 06:06:34 +00001840 ret = btrfs_update_root(trans, root->fs_info->tree_root,
Li Zefan0caa1022010-12-20 16:30:25 +08001841 &root->root_key, &root->root_item);
1842
1843 btrfs_commit_transaction(trans, root);
1844out_reset:
1845 if (ret)
1846 btrfs_set_root_flags(&root->root_item, root_flags);
Liu Bob9ca0662012-06-29 03:58:49 -06001847out_drop_sem:
Li Zefan0caa1022010-12-20 16:30:25 +08001848 up_write(&root->fs_info->subvol_sem);
Liu Bob9ca0662012-06-29 03:58:49 -06001849out_drop_write:
1850 mnt_drop_write_file(file);
1851out:
Li Zefan0caa1022010-12-20 16:30:25 +08001852 return ret;
1853}
1854
Yan, Zheng76dda932009-09-21 16:00:26 -04001855/*
1856 * helper to check if the subvolume references other subvolumes
1857 */
1858static noinline int may_destroy_subvol(struct btrfs_root *root)
1859{
1860 struct btrfs_path *path;
Josef Bacik175a2b82013-08-12 15:36:44 -04001861 struct btrfs_dir_item *di;
Yan, Zheng76dda932009-09-21 16:00:26 -04001862 struct btrfs_key key;
Josef Bacik175a2b82013-08-12 15:36:44 -04001863 u64 dir_id;
Yan, Zheng76dda932009-09-21 16:00:26 -04001864 int ret;
1865
1866 path = btrfs_alloc_path();
1867 if (!path)
1868 return -ENOMEM;
1869
Josef Bacik175a2b82013-08-12 15:36:44 -04001870 /* Make sure this root isn't set as the default subvol */
1871 dir_id = btrfs_super_root_dir(root->fs_info->super_copy);
1872 di = btrfs_lookup_dir_item(NULL, root->fs_info->tree_root, path,
1873 dir_id, "default", 7, 0);
1874 if (di && !IS_ERR(di)) {
1875 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &key);
1876 if (key.objectid == root->root_key.objectid) {
Guangyu Sun72de6b52014-03-11 11:24:18 -07001877 ret = -EPERM;
1878 btrfs_err(root->fs_info, "deleting default subvolume "
1879 "%llu is not allowed", key.objectid);
Josef Bacik175a2b82013-08-12 15:36:44 -04001880 goto out;
1881 }
1882 btrfs_release_path(path);
1883 }
1884
Yan, Zheng76dda932009-09-21 16:00:26 -04001885 key.objectid = root->root_key.objectid;
1886 key.type = BTRFS_ROOT_REF_KEY;
1887 key.offset = (u64)-1;
1888
1889 ret = btrfs_search_slot(NULL, root->fs_info->tree_root,
1890 &key, path, 0, 0);
1891 if (ret < 0)
1892 goto out;
1893 BUG_ON(ret == 0);
1894
1895 ret = 0;
1896 if (path->slots[0] > 0) {
1897 path->slots[0]--;
1898 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1899 if (key.objectid == root->root_key.objectid &&
1900 key.type == BTRFS_ROOT_REF_KEY)
1901 ret = -ENOTEMPTY;
1902 }
1903out:
1904 btrfs_free_path(path);
1905 return ret;
1906}
1907
Chris Masonac8e9812010-02-28 15:39:26 -05001908static noinline int key_in_sk(struct btrfs_key *key,
1909 struct btrfs_ioctl_search_key *sk)
1910{
Chris Masonabc6e132010-03-18 12:10:08 -04001911 struct btrfs_key test;
1912 int ret;
1913
1914 test.objectid = sk->min_objectid;
1915 test.type = sk->min_type;
1916 test.offset = sk->min_offset;
1917
1918 ret = btrfs_comp_cpu_keys(key, &test);
1919 if (ret < 0)
Chris Masonac8e9812010-02-28 15:39:26 -05001920 return 0;
Chris Masonabc6e132010-03-18 12:10:08 -04001921
1922 test.objectid = sk->max_objectid;
1923 test.type = sk->max_type;
1924 test.offset = sk->max_offset;
1925
1926 ret = btrfs_comp_cpu_keys(key, &test);
1927 if (ret > 0)
Chris Masonac8e9812010-02-28 15:39:26 -05001928 return 0;
1929 return 1;
1930}
1931
1932static noinline int copy_to_sk(struct btrfs_root *root,
1933 struct btrfs_path *path,
1934 struct btrfs_key *key,
1935 struct btrfs_ioctl_search_key *sk,
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001936 size_t *buf_size,
Gerhard Heiftba346b32014-01-30 16:24:02 +01001937 char __user *ubuf,
Chris Masonac8e9812010-02-28 15:39:26 -05001938 unsigned long *sk_offset,
1939 int *num_found)
1940{
1941 u64 found_transid;
1942 struct extent_buffer *leaf;
1943 struct btrfs_ioctl_search_header sh;
Naohiro Aotadd81d452015-06-30 11:25:43 +09001944 struct btrfs_key test;
Chris Masonac8e9812010-02-28 15:39:26 -05001945 unsigned long item_off;
1946 unsigned long item_len;
1947 int nritems;
1948 int i;
1949 int slot;
Chris Masonac8e9812010-02-28 15:39:26 -05001950 int ret = 0;
1951
1952 leaf = path->nodes[0];
1953 slot = path->slots[0];
1954 nritems = btrfs_header_nritems(leaf);
1955
1956 if (btrfs_header_generation(leaf) > sk->max_transid) {
1957 i = nritems;
1958 goto advance_key;
1959 }
1960 found_transid = btrfs_header_generation(leaf);
1961
1962 for (i = slot; i < nritems; i++) {
1963 item_off = btrfs_item_ptr_offset(leaf, i);
1964 item_len = btrfs_item_size_nr(leaf, i);
1965
Gabriel de Perthuis03b71c62013-05-06 17:40:18 +00001966 btrfs_item_key_to_cpu(leaf, key, i);
1967 if (!key_in_sk(key, sk))
1968 continue;
1969
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001970 if (sizeof(sh) + item_len > *buf_size) {
Gerhard Heift8f5f6172014-01-30 16:23:59 +01001971 if (*num_found) {
1972 ret = 1;
1973 goto out;
1974 }
Chris Masonac8e9812010-02-28 15:39:26 -05001975
Gerhard Heift8f5f6172014-01-30 16:23:59 +01001976 /*
1977 * return one empty item back for v1, which does not
1978 * handle -EOVERFLOW
1979 */
1980
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001981 *buf_size = sizeof(sh) + item_len;
Chris Masonac8e9812010-02-28 15:39:26 -05001982 item_len = 0;
Gerhard Heift8f5f6172014-01-30 16:23:59 +01001983 ret = -EOVERFLOW;
1984 }
Chris Masonac8e9812010-02-28 15:39:26 -05001985
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001986 if (sizeof(sh) + item_len + *sk_offset > *buf_size) {
Chris Masonac8e9812010-02-28 15:39:26 -05001987 ret = 1;
Gerhard Heift25c9bc22014-01-30 16:23:57 +01001988 goto out;
Chris Masonac8e9812010-02-28 15:39:26 -05001989 }
1990
Chris Masonac8e9812010-02-28 15:39:26 -05001991 sh.objectid = key->objectid;
1992 sh.offset = key->offset;
1993 sh.type = key->type;
1994 sh.len = item_len;
1995 sh.transid = found_transid;
1996
1997 /* copy search result header */
Gerhard Heiftba346b32014-01-30 16:24:02 +01001998 if (copy_to_user(ubuf + *sk_offset, &sh, sizeof(sh))) {
1999 ret = -EFAULT;
2000 goto out;
2001 }
2002
Chris Masonac8e9812010-02-28 15:39:26 -05002003 *sk_offset += sizeof(sh);
2004
2005 if (item_len) {
Gerhard Heiftba346b32014-01-30 16:24:02 +01002006 char __user *up = ubuf + *sk_offset;
Chris Masonac8e9812010-02-28 15:39:26 -05002007 /* copy the item */
Gerhard Heiftba346b32014-01-30 16:24:02 +01002008 if (read_extent_buffer_to_user(leaf, up,
2009 item_off, item_len)) {
2010 ret = -EFAULT;
2011 goto out;
2012 }
2013
Chris Masonac8e9812010-02-28 15:39:26 -05002014 *sk_offset += item_len;
Chris Masonac8e9812010-02-28 15:39:26 -05002015 }
Hugo Millse2156862011-05-14 17:43:41 +00002016 (*num_found)++;
Chris Masonac8e9812010-02-28 15:39:26 -05002017
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002018 if (ret) /* -EOVERFLOW from above */
2019 goto out;
2020
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002021 if (*num_found >= sk->nr_items) {
2022 ret = 1;
2023 goto out;
2024 }
Chris Masonac8e9812010-02-28 15:39:26 -05002025 }
2026advance_key:
Chris Masonac8e9812010-02-28 15:39:26 -05002027 ret = 0;
Naohiro Aotadd81d452015-06-30 11:25:43 +09002028 test.objectid = sk->max_objectid;
2029 test.type = sk->max_type;
2030 test.offset = sk->max_offset;
2031 if (btrfs_comp_cpu_keys(key, &test) >= 0)
2032 ret = 1;
2033 else if (key->offset < (u64)-1)
Chris Masonabc6e132010-03-18 12:10:08 -04002034 key->offset++;
Naohiro Aotadd81d452015-06-30 11:25:43 +09002035 else if (key->type < (u8)-1) {
Chris Masonabc6e132010-03-18 12:10:08 -04002036 key->offset = 0;
2037 key->type++;
Naohiro Aotadd81d452015-06-30 11:25:43 +09002038 } else if (key->objectid < (u64)-1) {
Chris Masonabc6e132010-03-18 12:10:08 -04002039 key->offset = 0;
2040 key->type = 0;
2041 key->objectid++;
2042 } else
2043 ret = 1;
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002044out:
Gerhard Heiftba346b32014-01-30 16:24:02 +01002045 /*
2046 * 0: all items from this leaf copied, continue with next
2047 * 1: * more items can be copied, but unused buffer is too small
2048 * * all items were found
2049 * Either way, it will stops the loop which iterates to the next
2050 * leaf
2051 * -EOVERFLOW: item was to large for buffer
2052 * -EFAULT: could not copy extent buffer back to userspace
2053 */
Chris Masonac8e9812010-02-28 15:39:26 -05002054 return ret;
2055}
2056
2057static noinline int search_ioctl(struct inode *inode,
Gerhard Heift12544442014-01-30 16:23:58 +01002058 struct btrfs_ioctl_search_key *sk,
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002059 size_t *buf_size,
Gerhard Heiftba346b32014-01-30 16:24:02 +01002060 char __user *ubuf)
Chris Masonac8e9812010-02-28 15:39:26 -05002061{
2062 struct btrfs_root *root;
2063 struct btrfs_key key;
Chris Masonac8e9812010-02-28 15:39:26 -05002064 struct btrfs_path *path;
Chris Masonac8e9812010-02-28 15:39:26 -05002065 struct btrfs_fs_info *info = BTRFS_I(inode)->root->fs_info;
2066 int ret;
2067 int num_found = 0;
2068 unsigned long sk_offset = 0;
2069
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002070 if (*buf_size < sizeof(struct btrfs_ioctl_search_header)) {
2071 *buf_size = sizeof(struct btrfs_ioctl_search_header);
Gerhard Heift12544442014-01-30 16:23:58 +01002072 return -EOVERFLOW;
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002073 }
Gerhard Heift12544442014-01-30 16:23:58 +01002074
Chris Masonac8e9812010-02-28 15:39:26 -05002075 path = btrfs_alloc_path();
2076 if (!path)
2077 return -ENOMEM;
2078
2079 if (sk->tree_id == 0) {
2080 /* search the root of the inode that was passed */
2081 root = BTRFS_I(inode)->root;
2082 } else {
2083 key.objectid = sk->tree_id;
2084 key.type = BTRFS_ROOT_ITEM_KEY;
2085 key.offset = (u64)-1;
2086 root = btrfs_read_fs_root_no_name(info, &key);
2087 if (IS_ERR(root)) {
David Sterbaf14d1042015-10-08 11:37:06 +02002088 btrfs_err(info, "could not find root %llu",
Chris Masonac8e9812010-02-28 15:39:26 -05002089 sk->tree_id);
2090 btrfs_free_path(path);
2091 return -ENOENT;
2092 }
2093 }
2094
2095 key.objectid = sk->min_objectid;
2096 key.type = sk->min_type;
2097 key.offset = sk->min_offset;
2098
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302099 while (1) {
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +01002100 ret = btrfs_search_forward(root, &key, path, sk->min_transid);
Chris Masonac8e9812010-02-28 15:39:26 -05002101 if (ret != 0) {
2102 if (ret > 0)
2103 ret = 0;
2104 goto err;
2105 }
Gerhard Heiftba346b32014-01-30 16:24:02 +01002106 ret = copy_to_sk(root, path, &key, sk, buf_size, ubuf,
Chris Masonac8e9812010-02-28 15:39:26 -05002107 &sk_offset, &num_found);
David Sterbab3b4aa72011-04-21 01:20:15 +02002108 btrfs_release_path(path);
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002109 if (ret)
Chris Masonac8e9812010-02-28 15:39:26 -05002110 break;
2111
2112 }
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002113 if (ret > 0)
2114 ret = 0;
Chris Masonac8e9812010-02-28 15:39:26 -05002115err:
2116 sk->nr_items = num_found;
2117 btrfs_free_path(path);
2118 return ret;
2119}
2120
2121static noinline int btrfs_ioctl_tree_search(struct file *file,
2122 void __user *argp)
2123{
Gerhard Heiftba346b32014-01-30 16:24:02 +01002124 struct btrfs_ioctl_search_args __user *uargs;
2125 struct btrfs_ioctl_search_key sk;
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002126 struct inode *inode;
2127 int ret;
2128 size_t buf_size;
Chris Masonac8e9812010-02-28 15:39:26 -05002129
2130 if (!capable(CAP_SYS_ADMIN))
2131 return -EPERM;
2132
Gerhard Heiftba346b32014-01-30 16:24:02 +01002133 uargs = (struct btrfs_ioctl_search_args __user *)argp;
Chris Masonac8e9812010-02-28 15:39:26 -05002134
Gerhard Heiftba346b32014-01-30 16:24:02 +01002135 if (copy_from_user(&sk, &uargs->key, sizeof(sk)))
2136 return -EFAULT;
2137
2138 buf_size = sizeof(uargs->buf);
Chris Masonac8e9812010-02-28 15:39:26 -05002139
Al Viro496ad9a2013-01-23 17:07:38 -05002140 inode = file_inode(file);
Gerhard Heiftba346b32014-01-30 16:24:02 +01002141 ret = search_ioctl(inode, &sk, &buf_size, uargs->buf);
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002142
2143 /*
2144 * In the origin implementation an overflow is handled by returning a
2145 * search header with a len of zero, so reset ret.
2146 */
2147 if (ret == -EOVERFLOW)
2148 ret = 0;
2149
Gerhard Heiftba346b32014-01-30 16:24:02 +01002150 if (ret == 0 && copy_to_user(&uargs->key, &sk, sizeof(sk)))
Chris Masonac8e9812010-02-28 15:39:26 -05002151 ret = -EFAULT;
Chris Masonac8e9812010-02-28 15:39:26 -05002152 return ret;
2153}
2154
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002155static noinline int btrfs_ioctl_tree_search_v2(struct file *file,
2156 void __user *argp)
2157{
2158 struct btrfs_ioctl_search_args_v2 __user *uarg;
2159 struct btrfs_ioctl_search_args_v2 args;
2160 struct inode *inode;
2161 int ret;
2162 size_t buf_size;
2163 const size_t buf_limit = 16 * 1024 * 1024;
2164
2165 if (!capable(CAP_SYS_ADMIN))
2166 return -EPERM;
2167
2168 /* copy search header and buffer size */
2169 uarg = (struct btrfs_ioctl_search_args_v2 __user *)argp;
2170 if (copy_from_user(&args, uarg, sizeof(args)))
2171 return -EFAULT;
2172
2173 buf_size = args.buf_size;
2174
2175 if (buf_size < sizeof(struct btrfs_ioctl_search_header))
2176 return -EOVERFLOW;
2177
2178 /* limit result size to 16MB */
2179 if (buf_size > buf_limit)
2180 buf_size = buf_limit;
2181
2182 inode = file_inode(file);
2183 ret = search_ioctl(inode, &args.key, &buf_size,
2184 (char *)(&uarg->buf[0]));
2185 if (ret == 0 && copy_to_user(&uarg->key, &args.key, sizeof(args.key)))
2186 ret = -EFAULT;
2187 else if (ret == -EOVERFLOW &&
2188 copy_to_user(&uarg->buf_size, &buf_size, sizeof(buf_size)))
2189 ret = -EFAULT;
2190
Yan, Zheng76dda932009-09-21 16:00:26 -04002191 return ret;
2192}
2193
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002194/*
Chris Masonac8e9812010-02-28 15:39:26 -05002195 * Search INODE_REFs to identify path name of 'dirid' directory
2196 * in a 'tree_id' tree. and sets path name to 'name'.
2197 */
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002198static noinline int btrfs_search_path_in_tree(struct btrfs_fs_info *info,
2199 u64 tree_id, u64 dirid, char *name)
2200{
2201 struct btrfs_root *root;
2202 struct btrfs_key key;
Chris Masonac8e9812010-02-28 15:39:26 -05002203 char *ptr;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002204 int ret = -1;
2205 int slot;
2206 int len;
2207 int total_len = 0;
2208 struct btrfs_inode_ref *iref;
2209 struct extent_buffer *l;
2210 struct btrfs_path *path;
2211
2212 if (dirid == BTRFS_FIRST_FREE_OBJECTID) {
2213 name[0]='\0';
2214 return 0;
2215 }
2216
2217 path = btrfs_alloc_path();
2218 if (!path)
2219 return -ENOMEM;
2220
Chris Masonac8e9812010-02-28 15:39:26 -05002221 ptr = &name[BTRFS_INO_LOOKUP_PATH_MAX];
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002222
2223 key.objectid = tree_id;
2224 key.type = BTRFS_ROOT_ITEM_KEY;
2225 key.offset = (u64)-1;
2226 root = btrfs_read_fs_root_no_name(info, &key);
2227 if (IS_ERR(root)) {
David Sterbaf14d1042015-10-08 11:37:06 +02002228 btrfs_err(info, "could not find root %llu", tree_id);
Chris Mason8ad6fca2010-03-18 12:23:10 -04002229 ret = -ENOENT;
2230 goto out;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002231 }
2232
2233 key.objectid = dirid;
2234 key.type = BTRFS_INODE_REF_KEY;
Chris Mason8ad6fca2010-03-18 12:23:10 -04002235 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002236
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302237 while (1) {
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002238 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2239 if (ret < 0)
2240 goto out;
Filipe David Borba Manana18674c62013-08-14 03:00:21 +01002241 else if (ret > 0) {
2242 ret = btrfs_previous_item(root, path, dirid,
2243 BTRFS_INODE_REF_KEY);
2244 if (ret < 0)
2245 goto out;
2246 else if (ret > 0) {
2247 ret = -ENOENT;
2248 goto out;
2249 }
2250 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002251
2252 l = path->nodes[0];
2253 slot = path->slots[0];
2254 btrfs_item_key_to_cpu(l, &key, slot);
2255
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002256 iref = btrfs_item_ptr(l, slot, struct btrfs_inode_ref);
2257 len = btrfs_inode_ref_name_len(l, iref);
2258 ptr -= len + 1;
2259 total_len += len + 1;
Filipe David Borba Mananaa696cf32013-08-14 03:00:20 +01002260 if (ptr < name) {
2261 ret = -ENAMETOOLONG;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002262 goto out;
Filipe David Borba Mananaa696cf32013-08-14 03:00:20 +01002263 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002264
2265 *(ptr + len) = '/';
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302266 read_extent_buffer(l, ptr, (unsigned long)(iref + 1), len);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002267
2268 if (key.offset == BTRFS_FIRST_FREE_OBJECTID)
2269 break;
2270
David Sterbab3b4aa72011-04-21 01:20:15 +02002271 btrfs_release_path(path);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002272 key.objectid = key.offset;
Chris Mason8ad6fca2010-03-18 12:23:10 -04002273 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002274 dirid = key.objectid;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002275 }
Li Zefan77906a502011-07-14 03:16:00 +00002276 memmove(name, ptr, total_len);
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302277 name[total_len] = '\0';
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002278 ret = 0;
2279out:
2280 btrfs_free_path(path);
Chris Masonac8e9812010-02-28 15:39:26 -05002281 return ret;
2282}
2283
2284static noinline int btrfs_ioctl_ino_lookup(struct file *file,
2285 void __user *argp)
2286{
2287 struct btrfs_ioctl_ino_lookup_args *args;
2288 struct inode *inode;
David Sterba01b810b2015-05-12 19:14:49 +02002289 int ret = 0;
Chris Masonac8e9812010-02-28 15:39:26 -05002290
Julia Lawall2354d082010-10-29 15:14:18 -04002291 args = memdup_user(argp, sizeof(*args));
2292 if (IS_ERR(args))
2293 return PTR_ERR(args);
Dan Carpenterc2b96922010-03-20 11:24:15 +00002294
Al Viro496ad9a2013-01-23 17:07:38 -05002295 inode = file_inode(file);
Chris Masonac8e9812010-02-28 15:39:26 -05002296
David Sterba01b810b2015-05-12 19:14:49 +02002297 /*
2298 * Unprivileged query to obtain the containing subvolume root id. The
2299 * path is reset so it's consistent with btrfs_search_path_in_tree.
2300 */
Chris Mason1b53ac42010-03-18 12:17:05 -04002301 if (args->treeid == 0)
2302 args->treeid = BTRFS_I(inode)->root->root_key.objectid;
2303
David Sterba01b810b2015-05-12 19:14:49 +02002304 if (args->objectid == BTRFS_FIRST_FREE_OBJECTID) {
2305 args->name[0] = 0;
2306 goto out;
2307 }
2308
2309 if (!capable(CAP_SYS_ADMIN)) {
2310 ret = -EPERM;
2311 goto out;
2312 }
2313
Chris Masonac8e9812010-02-28 15:39:26 -05002314 ret = btrfs_search_path_in_tree(BTRFS_I(inode)->root->fs_info,
2315 args->treeid, args->objectid,
2316 args->name);
2317
David Sterba01b810b2015-05-12 19:14:49 +02002318out:
Chris Masonac8e9812010-02-28 15:39:26 -05002319 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
2320 ret = -EFAULT;
2321
2322 kfree(args);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002323 return ret;
2324}
2325
Yan, Zheng76dda932009-09-21 16:00:26 -04002326static noinline int btrfs_ioctl_snap_destroy(struct file *file,
2327 void __user *arg)
2328{
Al Viro54563d42013-09-01 15:57:51 -04002329 struct dentry *parent = file->f_path.dentry;
Yan, Zheng76dda932009-09-21 16:00:26 -04002330 struct dentry *dentry;
David Howells2b0143b2015-03-17 22:25:59 +00002331 struct inode *dir = d_inode(parent);
Yan, Zheng76dda932009-09-21 16:00:26 -04002332 struct inode *inode;
2333 struct btrfs_root *root = BTRFS_I(dir)->root;
2334 struct btrfs_root *dest = NULL;
2335 struct btrfs_ioctl_vol_args *vol_args;
2336 struct btrfs_trans_handle *trans;
Miao Xiec58aaad2013-02-28 10:05:36 +00002337 struct btrfs_block_rsv block_rsv;
David Sterba521e0542014-04-15 16:41:44 +02002338 u64 root_flags;
Miao Xiec58aaad2013-02-28 10:05:36 +00002339 u64 qgroup_reserved;
Yan, Zheng76dda932009-09-21 16:00:26 -04002340 int namelen;
2341 int ret;
2342 int err = 0;
2343
Yan, Zheng76dda932009-09-21 16:00:26 -04002344 vol_args = memdup_user(arg, sizeof(*vol_args));
2345 if (IS_ERR(vol_args))
2346 return PTR_ERR(vol_args);
2347
2348 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
2349 namelen = strlen(vol_args->name);
2350 if (strchr(vol_args->name, '/') ||
2351 strncmp(vol_args->name, "..", namelen) == 0) {
2352 err = -EINVAL;
2353 goto out;
2354 }
2355
Al Viroa561be72011-11-23 11:57:51 -05002356 err = mnt_want_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04002357 if (err)
2358 goto out;
2359
David Sterba521e0542014-04-15 16:41:44 +02002360
David Sterba5c50c9b2013-03-22 18:12:51 +00002361 err = mutex_lock_killable_nested(&dir->i_mutex, I_MUTEX_PARENT);
2362 if (err == -EINTR)
David Sterbae43f9982013-12-06 17:51:32 +01002363 goto out_drop_write;
Yan, Zheng76dda932009-09-21 16:00:26 -04002364 dentry = lookup_one_len(vol_args->name, parent, namelen);
2365 if (IS_ERR(dentry)) {
2366 err = PTR_ERR(dentry);
2367 goto out_unlock_dir;
2368 }
2369
David Howells2b0143b2015-03-17 22:25:59 +00002370 if (d_really_is_negative(dentry)) {
Yan, Zheng76dda932009-09-21 16:00:26 -04002371 err = -ENOENT;
2372 goto out_dput;
2373 }
2374
David Howells2b0143b2015-03-17 22:25:59 +00002375 inode = d_inode(dentry);
Sage Weil4260f7c2010-10-29 15:46:43 -04002376 dest = BTRFS_I(inode)->root;
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302377 if (!capable(CAP_SYS_ADMIN)) {
Sage Weil4260f7c2010-10-29 15:46:43 -04002378 /*
2379 * Regular user. Only allow this with a special mount
2380 * option, when the user has write+exec access to the
2381 * subvol root, and when rmdir(2) would have been
2382 * allowed.
2383 *
2384 * Note that this is _not_ check that the subvol is
2385 * empty or doesn't contain data that we wouldn't
2386 * otherwise be able to delete.
2387 *
2388 * Users who want to delete empty subvols should try
2389 * rmdir(2).
2390 */
2391 err = -EPERM;
2392 if (!btrfs_test_opt(root, USER_SUBVOL_RM_ALLOWED))
2393 goto out_dput;
2394
2395 /*
2396 * Do not allow deletion if the parent dir is the same
2397 * as the dir to be deleted. That means the ioctl
2398 * must be called on the dentry referencing the root
2399 * of the subvol, not a random directory contained
2400 * within it.
2401 */
2402 err = -EINVAL;
2403 if (root == dest)
2404 goto out_dput;
2405
2406 err = inode_permission(inode, MAY_WRITE | MAY_EXEC);
2407 if (err)
2408 goto out_dput;
Sage Weil4260f7c2010-10-29 15:46:43 -04002409 }
2410
Miao Xie5c39da52012-10-22 11:39:53 +00002411 /* check if subvolume may be deleted by a user */
2412 err = btrfs_may_delete(dir, dentry, 1);
2413 if (err)
2414 goto out_dput;
2415
Li Zefan33345d012011-04-20 10:31:50 +08002416 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
Yan, Zheng76dda932009-09-21 16:00:26 -04002417 err = -EINVAL;
2418 goto out_dput;
2419 }
2420
Yan, Zheng76dda932009-09-21 16:00:26 -04002421 mutex_lock(&inode->i_mutex);
David Sterba521e0542014-04-15 16:41:44 +02002422
2423 /*
2424 * Don't allow to delete a subvolume with send in progress. This is
2425 * inside the i_mutex so the error handling that has to drop the bit
2426 * again is not run concurrently.
2427 */
2428 spin_lock(&dest->root_item_lock);
Filipe Mananac55bfa62014-05-25 03:55:44 +01002429 root_flags = btrfs_root_flags(&dest->root_item);
2430 if (dest->send_in_progress == 0) {
2431 btrfs_set_root_flags(&dest->root_item,
David Sterba521e0542014-04-15 16:41:44 +02002432 root_flags | BTRFS_ROOT_SUBVOL_DEAD);
2433 spin_unlock(&dest->root_item_lock);
2434 } else {
2435 spin_unlock(&dest->root_item_lock);
2436 btrfs_warn(root->fs_info,
2437 "Attempt to delete subvolume %llu during send",
Filipe Mananac55bfa62014-05-25 03:55:44 +01002438 dest->root_key.objectid);
David Sterba521e0542014-04-15 16:41:44 +02002439 err = -EPERM;
Omar Sandoval909e26d2015-04-10 14:20:40 -07002440 goto out_unlock_inode;
David Sterba521e0542014-04-15 16:41:44 +02002441 }
2442
Yan, Zheng76dda932009-09-21 16:00:26 -04002443 down_write(&root->fs_info->subvol_sem);
2444
2445 err = may_destroy_subvol(dest);
2446 if (err)
2447 goto out_up_write;
2448
Miao Xiec58aaad2013-02-28 10:05:36 +00002449 btrfs_init_block_rsv(&block_rsv, BTRFS_BLOCK_RSV_TEMP);
2450 /*
2451 * One for dir inode, two for dir entries, two for root
2452 * ref/backref.
2453 */
2454 err = btrfs_subvolume_reserve_metadata(root, &block_rsv,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04002455 5, &qgroup_reserved, true);
Miao Xiec58aaad2013-02-28 10:05:36 +00002456 if (err)
2457 goto out_up_write;
2458
Yan, Zhenga22285a2010-05-16 10:48:46 -04002459 trans = btrfs_start_transaction(root, 0);
2460 if (IS_ERR(trans)) {
2461 err = PTR_ERR(trans);
Miao Xiec58aaad2013-02-28 10:05:36 +00002462 goto out_release;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002463 }
Miao Xiec58aaad2013-02-28 10:05:36 +00002464 trans->block_rsv = &block_rsv;
2465 trans->bytes_reserved = block_rsv.size;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002466
Yan, Zheng76dda932009-09-21 16:00:26 -04002467 ret = btrfs_unlink_subvol(trans, root, dir,
2468 dest->root_key.objectid,
2469 dentry->d_name.name,
2470 dentry->d_name.len);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002471 if (ret) {
2472 err = ret;
2473 btrfs_abort_transaction(trans, root, ret);
2474 goto out_end_trans;
2475 }
Yan, Zheng76dda932009-09-21 16:00:26 -04002476
2477 btrfs_record_root_in_trans(trans, dest);
2478
2479 memset(&dest->root_item.drop_progress, 0,
2480 sizeof(dest->root_item.drop_progress));
2481 dest->root_item.drop_level = 0;
2482 btrfs_set_root_refs(&dest->root_item, 0);
2483
Miao Xie27cdeb72014-04-02 19:51:05 +08002484 if (!test_and_set_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &dest->state)) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04002485 ret = btrfs_insert_orphan_item(trans,
2486 root->fs_info->tree_root,
2487 dest->root_key.objectid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002488 if (ret) {
2489 btrfs_abort_transaction(trans, root, ret);
2490 err = ret;
2491 goto out_end_trans;
2492 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04002493 }
Stefan Behrensdd5f9612013-08-15 17:11:20 +02002494
2495 ret = btrfs_uuid_tree_rem(trans, root->fs_info->uuid_root,
2496 dest->root_item.uuid, BTRFS_UUID_KEY_SUBVOL,
2497 dest->root_key.objectid);
2498 if (ret && ret != -ENOENT) {
2499 btrfs_abort_transaction(trans, root, ret);
2500 err = ret;
2501 goto out_end_trans;
2502 }
2503 if (!btrfs_is_empty_uuid(dest->root_item.received_uuid)) {
2504 ret = btrfs_uuid_tree_rem(trans, root->fs_info->uuid_root,
2505 dest->root_item.received_uuid,
2506 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
2507 dest->root_key.objectid);
2508 if (ret && ret != -ENOENT) {
2509 btrfs_abort_transaction(trans, root, ret);
2510 err = ret;
2511 goto out_end_trans;
2512 }
2513 }
2514
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002515out_end_trans:
Miao Xiec58aaad2013-02-28 10:05:36 +00002516 trans->block_rsv = NULL;
2517 trans->bytes_reserved = 0;
Sage Weil531cb132010-10-29 15:41:32 -04002518 ret = btrfs_end_transaction(trans, root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002519 if (ret && !err)
2520 err = ret;
Yan, Zheng76dda932009-09-21 16:00:26 -04002521 inode->i_flags |= S_DEAD;
Miao Xiec58aaad2013-02-28 10:05:36 +00002522out_release:
2523 btrfs_subvolume_release_metadata(root, &block_rsv, qgroup_reserved);
Yan, Zheng76dda932009-09-21 16:00:26 -04002524out_up_write:
2525 up_write(&root->fs_info->subvol_sem);
David Sterba521e0542014-04-15 16:41:44 +02002526 if (err) {
2527 spin_lock(&dest->root_item_lock);
Filipe Mananac55bfa62014-05-25 03:55:44 +01002528 root_flags = btrfs_root_flags(&dest->root_item);
2529 btrfs_set_root_flags(&dest->root_item,
David Sterba521e0542014-04-15 16:41:44 +02002530 root_flags & ~BTRFS_ROOT_SUBVOL_DEAD);
2531 spin_unlock(&dest->root_item_lock);
2532 }
Omar Sandoval909e26d2015-04-10 14:20:40 -07002533out_unlock_inode:
Yan, Zheng76dda932009-09-21 16:00:26 -04002534 mutex_unlock(&inode->i_mutex);
2535 if (!err) {
Omar Sandoval64ad6c42015-06-02 17:31:00 -07002536 d_invalidate(dentry);
Yan, Zheng76dda932009-09-21 16:00:26 -04002537 btrfs_invalidate_inodes(dest);
2538 d_delete(dentry);
David Sterba61155aa2014-04-15 16:42:03 +02002539 ASSERT(dest->send_in_progress == 0);
Liu Bofa6ac872013-02-20 14:10:23 +00002540
2541 /* the last ref */
David Sterba57cdc8d2014-02-05 02:37:48 +01002542 if (dest->ino_cache_inode) {
2543 iput(dest->ino_cache_inode);
2544 dest->ino_cache_inode = NULL;
Liu Bofa6ac872013-02-20 14:10:23 +00002545 }
Yan, Zheng76dda932009-09-21 16:00:26 -04002546 }
2547out_dput:
2548 dput(dentry);
2549out_unlock_dir:
2550 mutex_unlock(&dir->i_mutex);
David Sterbae43f9982013-12-06 17:51:32 +01002551out_drop_write:
Al Viro2a79f172011-12-09 08:06:57 -05002552 mnt_drop_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04002553out:
2554 kfree(vol_args);
2555 return err;
2556}
2557
Chris Mason1e701a32010-03-11 09:42:04 -05002558static int btrfs_ioctl_defrag(struct file *file, void __user *argp)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002559{
Al Viro496ad9a2013-01-23 17:07:38 -05002560 struct inode *inode = file_inode(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002561 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason1e701a32010-03-11 09:42:04 -05002562 struct btrfs_ioctl_defrag_range_args *range;
Yan Zhengc146afa2008-11-12 14:34:12 -05002563 int ret;
2564
Ilya Dryomov25122d12013-01-20 15:57:57 +02002565 ret = mnt_want_write_file(file);
2566 if (ret)
2567 return ret;
Li Zefanb83cc962010-12-20 16:04:08 +08002568
Ilya Dryomov25122d12013-01-20 15:57:57 +02002569 if (btrfs_root_readonly(root)) {
2570 ret = -EROFS;
2571 goto out;
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002572 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002573
2574 switch (inode->i_mode & S_IFMT) {
2575 case S_IFDIR:
Chris Masone441d542009-01-05 16:57:23 -05002576 if (!capable(CAP_SYS_ADMIN)) {
2577 ret = -EPERM;
2578 goto out;
2579 }
Eric Sandeende78b512013-01-31 18:21:12 +00002580 ret = btrfs_defrag_root(root);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04002581 if (ret)
2582 goto out;
Eric Sandeende78b512013-01-31 18:21:12 +00002583 ret = btrfs_defrag_root(root->fs_info->extent_root);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002584 break;
2585 case S_IFREG:
Chris Masone441d542009-01-05 16:57:23 -05002586 if (!(file->f_mode & FMODE_WRITE)) {
2587 ret = -EINVAL;
2588 goto out;
2589 }
Chris Mason1e701a32010-03-11 09:42:04 -05002590
2591 range = kzalloc(sizeof(*range), GFP_KERNEL);
2592 if (!range) {
2593 ret = -ENOMEM;
2594 goto out;
2595 }
2596
2597 if (argp) {
2598 if (copy_from_user(range, argp,
2599 sizeof(*range))) {
2600 ret = -EFAULT;
2601 kfree(range);
Dan Carpenter683be162010-03-20 11:24:48 +00002602 goto out;
Chris Mason1e701a32010-03-11 09:42:04 -05002603 }
2604 /* compression requires us to start the IO */
2605 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
2606 range->flags |= BTRFS_DEFRAG_RANGE_START_IO;
2607 range->extent_thresh = (u32)-1;
2608 }
2609 } else {
2610 /* the rest are all set to zero by kzalloc */
2611 range->len = (u64)-1;
2612 }
Al Viro496ad9a2013-01-23 17:07:38 -05002613 ret = btrfs_defrag_file(file_inode(file), file,
Chris Mason4cb53002011-05-24 15:35:30 -04002614 range, 0, 0);
2615 if (ret > 0)
2616 ret = 0;
Chris Mason1e701a32010-03-11 09:42:04 -05002617 kfree(range);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002618 break;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04002619 default:
2620 ret = -EINVAL;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002621 }
Chris Masone441d542009-01-05 16:57:23 -05002622out:
Ilya Dryomov25122d12013-01-20 15:57:57 +02002623 mnt_drop_write_file(file);
Chris Masone441d542009-01-05 16:57:23 -05002624 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002625}
2626
Christoph Hellwigb2950862008-12-02 09:54:17 -05002627static long btrfs_ioctl_add_dev(struct btrfs_root *root, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002628{
2629 struct btrfs_ioctl_vol_args *vol_args;
2630 int ret;
2631
Chris Masone441d542009-01-05 16:57:23 -05002632 if (!capable(CAP_SYS_ADMIN))
2633 return -EPERM;
2634
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002635 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
2636 1)) {
Anand Jaine57138b2013-08-21 11:44:48 +08002637 return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002638 }
2639
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002640 mutex_lock(&root->fs_info->volume_mutex);
Li Zefandae7b662009-04-08 15:06:54 +08002641 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002642 if (IS_ERR(vol_args)) {
2643 ret = PTR_ERR(vol_args);
2644 goto out;
2645 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002646
Mark Fasheh5516e592008-07-24 12:20:14 -04002647 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002648 ret = btrfs_init_new_device(root, vol_args->name);
2649
Anand Jain43d20762014-07-01 00:58:56 +08002650 if (!ret)
2651 btrfs_info(root->fs_info, "disk added %s",vol_args->name);
2652
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002653 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002654out:
2655 mutex_unlock(&root->fs_info->volume_mutex);
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002656 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002657 return ret;
2658}
2659
Miao Xieda249272012-11-26 08:44:50 +00002660static long btrfs_ioctl_rm_dev(struct file *file, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002661{
Al Viro496ad9a2013-01-23 17:07:38 -05002662 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002663 struct btrfs_ioctl_vol_args *vol_args;
2664 int ret;
2665
Chris Masone441d542009-01-05 16:57:23 -05002666 if (!capable(CAP_SYS_ADMIN))
2667 return -EPERM;
2668
Miao Xieda249272012-11-26 08:44:50 +00002669 ret = mnt_want_write_file(file);
2670 if (ret)
2671 return ret;
Yan Zhengc146afa2008-11-12 14:34:12 -05002672
Li Zefandae7b662009-04-08 15:06:54 +08002673 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002674 if (IS_ERR(vol_args)) {
2675 ret = PTR_ERR(vol_args);
Dan Carpenterc47ca322014-09-04 14:09:15 +03002676 goto err_drop;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002677 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002678
Mark Fasheh5516e592008-07-24 12:20:14 -04002679 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002680
Anand Jain183860f2013-05-17 10:52:45 +00002681 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
2682 1)) {
2683 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
2684 goto out;
2685 }
2686
2687 mutex_lock(&root->fs_info->volume_mutex);
2688 ret = btrfs_rm_device(root, vol_args->name);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002689 mutex_unlock(&root->fs_info->volume_mutex);
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002690 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
Anand Jain183860f2013-05-17 10:52:45 +00002691
Anand Jainec95d492014-07-01 00:58:57 +08002692 if (!ret)
2693 btrfs_info(root->fs_info, "disk deleted %s",vol_args->name);
2694
Anand Jain183860f2013-05-17 10:52:45 +00002695out:
2696 kfree(vol_args);
Dan Carpenterc47ca322014-09-04 14:09:15 +03002697err_drop:
Ilya Dryomov4ac20c72013-01-20 15:57:57 +02002698 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002699 return ret;
2700}
2701
Jan Schmidt475f6382011-03-11 15:41:01 +01002702static long btrfs_ioctl_fs_info(struct btrfs_root *root, void __user *arg)
2703{
Li Zefan027ed2f2011-06-08 08:27:56 +00002704 struct btrfs_ioctl_fs_info_args *fi_args;
Jan Schmidt475f6382011-03-11 15:41:01 +01002705 struct btrfs_device *device;
Jan Schmidt475f6382011-03-11 15:41:01 +01002706 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
Li Zefan027ed2f2011-06-08 08:27:56 +00002707 int ret = 0;
Jan Schmidt475f6382011-03-11 15:41:01 +01002708
Li Zefan027ed2f2011-06-08 08:27:56 +00002709 fi_args = kzalloc(sizeof(*fi_args), GFP_KERNEL);
2710 if (!fi_args)
2711 return -ENOMEM;
2712
Filipe David Borba Mananaf7171752013-08-12 20:56:58 +01002713 mutex_lock(&fs_devices->device_list_mutex);
Li Zefan027ed2f2011-06-08 08:27:56 +00002714 fi_args->num_devices = fs_devices->num_devices;
2715 memcpy(&fi_args->fsid, root->fs_info->fsid, sizeof(fi_args->fsid));
Jan Schmidt475f6382011-03-11 15:41:01 +01002716
Byongho Leed7641a42015-09-01 23:10:57 +09002717 list_for_each_entry(device, &fs_devices->devices, dev_list) {
Li Zefan027ed2f2011-06-08 08:27:56 +00002718 if (device->devid > fi_args->max_id)
2719 fi_args->max_id = device->devid;
Jan Schmidt475f6382011-03-11 15:41:01 +01002720 }
2721 mutex_unlock(&fs_devices->device_list_mutex);
2722
David Sterba80a773f2014-05-07 18:17:06 +02002723 fi_args->nodesize = root->fs_info->super_copy->nodesize;
2724 fi_args->sectorsize = root->fs_info->super_copy->sectorsize;
2725 fi_args->clone_alignment = root->fs_info->super_copy->sectorsize;
2726
Li Zefan027ed2f2011-06-08 08:27:56 +00002727 if (copy_to_user(arg, fi_args, sizeof(*fi_args)))
2728 ret = -EFAULT;
Jan Schmidt475f6382011-03-11 15:41:01 +01002729
Li Zefan027ed2f2011-06-08 08:27:56 +00002730 kfree(fi_args);
2731 return ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01002732}
2733
2734static long btrfs_ioctl_dev_info(struct btrfs_root *root, void __user *arg)
2735{
2736 struct btrfs_ioctl_dev_info_args *di_args;
2737 struct btrfs_device *dev;
2738 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
2739 int ret = 0;
2740 char *s_uuid = NULL;
Jan Schmidt475f6382011-03-11 15:41:01 +01002741
Jan Schmidt475f6382011-03-11 15:41:01 +01002742 di_args = memdup_user(arg, sizeof(*di_args));
2743 if (IS_ERR(di_args))
2744 return PTR_ERR(di_args);
2745
Stefan Behrensdd5f9612013-08-15 17:11:20 +02002746 if (!btrfs_is_empty_uuid(di_args->uuid))
Jan Schmidt475f6382011-03-11 15:41:01 +01002747 s_uuid = di_args->uuid;
2748
2749 mutex_lock(&fs_devices->device_list_mutex);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01002750 dev = btrfs_find_device(root->fs_info, di_args->devid, s_uuid, NULL);
Jan Schmidt475f6382011-03-11 15:41:01 +01002751
2752 if (!dev) {
2753 ret = -ENODEV;
2754 goto out;
2755 }
2756
2757 di_args->devid = dev->devid;
Miao Xie7cc8e582014-09-03 21:35:38 +08002758 di_args->bytes_used = btrfs_device_get_bytes_used(dev);
2759 di_args->total_bytes = btrfs_device_get_total_bytes(dev);
Jan Schmidt475f6382011-03-11 15:41:01 +01002760 memcpy(di_args->uuid, dev->uuid, sizeof(di_args->uuid));
Jim Meyeringa27202f2012-04-26 18:36:56 +02002761 if (dev->name) {
Josef Bacik606686e2012-06-04 14:03:51 -04002762 struct rcu_string *name;
2763
2764 rcu_read_lock();
2765 name = rcu_dereference(dev->name);
2766 strncpy(di_args->path, name->str, sizeof(di_args->path));
2767 rcu_read_unlock();
Jim Meyeringa27202f2012-04-26 18:36:56 +02002768 di_args->path[sizeof(di_args->path) - 1] = 0;
2769 } else {
Stefan Behrens99ba55a2012-03-19 16:17:22 +01002770 di_args->path[0] = '\0';
Jim Meyeringa27202f2012-04-26 18:36:56 +02002771 }
Jan Schmidt475f6382011-03-11 15:41:01 +01002772
2773out:
David Sterba55793c02013-04-26 15:20:23 +00002774 mutex_unlock(&fs_devices->device_list_mutex);
Jan Schmidt475f6382011-03-11 15:41:01 +01002775 if (ret == 0 && copy_to_user(arg, di_args, sizeof(*di_args)))
2776 ret = -EFAULT;
2777
2778 kfree(di_args);
2779 return ret;
2780}
2781
Mark Fashehf4414602015-06-30 14:42:05 -07002782static struct page *extent_same_get_page(struct inode *inode, pgoff_t index)
Mark Fasheh416161d2013-08-06 11:42:51 -07002783{
2784 struct page *page;
Mark Fasheh416161d2013-08-06 11:42:51 -07002785 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2786
Mark Fasheh416161d2013-08-06 11:42:51 -07002787 page = grab_cache_page(inode->i_mapping, index);
2788 if (!page)
2789 return NULL;
2790
2791 if (!PageUptodate(page)) {
2792 if (extent_read_full_page_nolock(tree, page, btrfs_get_extent,
2793 0))
2794 return NULL;
2795 lock_page(page);
2796 if (!PageUptodate(page)) {
2797 unlock_page(page);
2798 page_cache_release(page);
2799 return NULL;
2800 }
2801 }
2802 unlock_page(page);
2803
2804 return page;
2805}
2806
Mark Fashehf4414602015-06-30 14:42:05 -07002807static int gather_extent_pages(struct inode *inode, struct page **pages,
2808 int num_pages, u64 off)
2809{
2810 int i;
2811 pgoff_t index = off >> PAGE_CACHE_SHIFT;
2812
2813 for (i = 0; i < num_pages; i++) {
2814 pages[i] = extent_same_get_page(inode, index + i);
2815 if (!pages[i])
2816 return -ENOMEM;
2817 }
2818 return 0;
2819}
2820
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002821static inline void lock_extent_range(struct inode *inode, u64 off, u64 len)
2822{
2823 /* do any pending delalloc/csum calc on src, one way or
2824 another, and lock file content */
2825 while (1) {
2826 struct btrfs_ordered_extent *ordered;
2827 lock_extent(&BTRFS_I(inode)->io_tree, off, off + len - 1);
2828 ordered = btrfs_lookup_first_ordered_extent(inode,
2829 off + len - 1);
Filipe Mananaff5df9b2014-05-30 17:56:24 +01002830 if ((!ordered ||
2831 ordered->file_offset + ordered->len <= off ||
2832 ordered->file_offset >= off + len) &&
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002833 !test_range_bit(&BTRFS_I(inode)->io_tree, off,
Filipe Mananaff5df9b2014-05-30 17:56:24 +01002834 off + len - 1, EXTENT_DELALLOC, 0, NULL)) {
2835 if (ordered)
2836 btrfs_put_ordered_extent(ordered);
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002837 break;
Filipe Mananaff5df9b2014-05-30 17:56:24 +01002838 }
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002839 unlock_extent(&BTRFS_I(inode)->io_tree, off, off + len - 1);
2840 if (ordered)
2841 btrfs_put_ordered_extent(ordered);
2842 btrfs_wait_ordered_range(inode, off, len);
2843 }
2844}
2845
Mark Fashehf4414602015-06-30 14:42:05 -07002846static void btrfs_double_inode_unlock(struct inode *inode1, struct inode *inode2)
Mark Fasheh416161d2013-08-06 11:42:51 -07002847{
Mark Fasheh416161d2013-08-06 11:42:51 -07002848 mutex_unlock(&inode1->i_mutex);
2849 mutex_unlock(&inode2->i_mutex);
2850}
2851
Mark Fashehf4414602015-06-30 14:42:05 -07002852static void btrfs_double_inode_lock(struct inode *inode1, struct inode *inode2)
2853{
2854 if (inode1 < inode2)
2855 swap(inode1, inode2);
2856
2857 mutex_lock_nested(&inode1->i_mutex, I_MUTEX_PARENT);
Mark Fasheh293a8482015-06-30 14:42:06 -07002858 mutex_lock_nested(&inode2->i_mutex, I_MUTEX_CHILD);
Mark Fashehf4414602015-06-30 14:42:05 -07002859}
2860
2861static void btrfs_double_extent_unlock(struct inode *inode1, u64 loff1,
2862 struct inode *inode2, u64 loff2, u64 len)
2863{
2864 unlock_extent(&BTRFS_I(inode1)->io_tree, loff1, loff1 + len - 1);
2865 unlock_extent(&BTRFS_I(inode2)->io_tree, loff2, loff2 + len - 1);
2866}
2867
2868static void btrfs_double_extent_lock(struct inode *inode1, u64 loff1,
2869 struct inode *inode2, u64 loff2, u64 len)
Mark Fasheh416161d2013-08-06 11:42:51 -07002870{
2871 if (inode1 < inode2) {
2872 swap(inode1, inode2);
2873 swap(loff1, loff2);
2874 }
Mark Fasheh416161d2013-08-06 11:42:51 -07002875 lock_extent_range(inode1, loff1, len);
Mark Fasheh293a8482015-06-30 14:42:06 -07002876 lock_extent_range(inode2, loff2, len);
Mark Fashehf4414602015-06-30 14:42:05 -07002877}
2878
2879struct cmp_pages {
2880 int num_pages;
2881 struct page **src_pages;
2882 struct page **dst_pages;
2883};
2884
2885static void btrfs_cmp_data_free(struct cmp_pages *cmp)
2886{
2887 int i;
2888 struct page *pg;
2889
2890 for (i = 0; i < cmp->num_pages; i++) {
2891 pg = cmp->src_pages[i];
2892 if (pg)
2893 page_cache_release(pg);
2894 pg = cmp->dst_pages[i];
2895 if (pg)
2896 page_cache_release(pg);
Mark Fasheh416161d2013-08-06 11:42:51 -07002897 }
Mark Fashehf4414602015-06-30 14:42:05 -07002898 kfree(cmp->src_pages);
2899 kfree(cmp->dst_pages);
2900}
2901
2902static int btrfs_cmp_data_prepare(struct inode *src, u64 loff,
2903 struct inode *dst, u64 dst_loff,
2904 u64 len, struct cmp_pages *cmp)
2905{
2906 int ret;
2907 int num_pages = PAGE_CACHE_ALIGN(len) >> PAGE_CACHE_SHIFT;
2908 struct page **src_pgarr, **dst_pgarr;
2909
2910 /*
2911 * We must gather up all the pages before we initiate our
2912 * extent locking. We use an array for the page pointers. Size
2913 * of the array is bounded by len, which is in turn bounded by
2914 * BTRFS_MAX_DEDUPE_LEN.
2915 */
2916 src_pgarr = kzalloc(num_pages * sizeof(struct page *), GFP_NOFS);
2917 dst_pgarr = kzalloc(num_pages * sizeof(struct page *), GFP_NOFS);
2918 if (!src_pgarr || !dst_pgarr) {
2919 kfree(src_pgarr);
2920 kfree(dst_pgarr);
2921 return -ENOMEM;
2922 }
2923 cmp->num_pages = num_pages;
2924 cmp->src_pages = src_pgarr;
2925 cmp->dst_pages = dst_pgarr;
2926
2927 ret = gather_extent_pages(src, cmp->src_pages, cmp->num_pages, loff);
2928 if (ret)
2929 goto out;
2930
2931 ret = gather_extent_pages(dst, cmp->dst_pages, cmp->num_pages, dst_loff);
2932
2933out:
2934 if (ret)
2935 btrfs_cmp_data_free(cmp);
2936 return 0;
Mark Fasheh416161d2013-08-06 11:42:51 -07002937}
2938
2939static int btrfs_cmp_data(struct inode *src, u64 loff, struct inode *dst,
Mark Fashehf4414602015-06-30 14:42:05 -07002940 u64 dst_loff, u64 len, struct cmp_pages *cmp)
Mark Fasheh416161d2013-08-06 11:42:51 -07002941{
2942 int ret = 0;
Mark Fashehf4414602015-06-30 14:42:05 -07002943 int i;
Mark Fasheh416161d2013-08-06 11:42:51 -07002944 struct page *src_page, *dst_page;
2945 unsigned int cmp_len = PAGE_CACHE_SIZE;
2946 void *addr, *dst_addr;
2947
Mark Fashehf4414602015-06-30 14:42:05 -07002948 i = 0;
Mark Fasheh416161d2013-08-06 11:42:51 -07002949 while (len) {
2950 if (len < PAGE_CACHE_SIZE)
2951 cmp_len = len;
2952
Mark Fashehf4414602015-06-30 14:42:05 -07002953 BUG_ON(i >= cmp->num_pages);
2954
2955 src_page = cmp->src_pages[i];
2956 dst_page = cmp->dst_pages[i];
2957
Mark Fasheh416161d2013-08-06 11:42:51 -07002958 addr = kmap_atomic(src_page);
2959 dst_addr = kmap_atomic(dst_page);
2960
2961 flush_dcache_page(src_page);
2962 flush_dcache_page(dst_page);
2963
2964 if (memcmp(addr, dst_addr, cmp_len))
2965 ret = BTRFS_SAME_DATA_DIFFERS;
2966
2967 kunmap_atomic(addr);
2968 kunmap_atomic(dst_addr);
Mark Fasheh416161d2013-08-06 11:42:51 -07002969
2970 if (ret)
2971 break;
2972
Mark Fasheh416161d2013-08-06 11:42:51 -07002973 len -= cmp_len;
Mark Fashehf4414602015-06-30 14:42:05 -07002974 i++;
Mark Fasheh416161d2013-08-06 11:42:51 -07002975 }
2976
2977 return ret;
2978}
2979
Mark Fashehe1d227a2015-06-08 15:05:25 -07002980static int extent_same_check_offsets(struct inode *inode, u64 off, u64 *plen,
2981 u64 olen)
Mark Fasheh416161d2013-08-06 11:42:51 -07002982{
Mark Fashehe1d227a2015-06-08 15:05:25 -07002983 u64 len = *plen;
Mark Fasheh416161d2013-08-06 11:42:51 -07002984 u64 bs = BTRFS_I(inode)->root->fs_info->sb->s_blocksize;
2985
Mark Fashehe1d227a2015-06-08 15:05:25 -07002986 if (off + olen > inode->i_size || off + olen < off)
Mark Fasheh416161d2013-08-06 11:42:51 -07002987 return -EINVAL;
Mark Fashehe1d227a2015-06-08 15:05:25 -07002988
2989 /* if we extend to eof, continue to block boundary */
2990 if (off + len == inode->i_size)
2991 *plen = len = ALIGN(inode->i_size, bs) - off;
2992
Mark Fasheh416161d2013-08-06 11:42:51 -07002993 /* Check that we are block aligned - btrfs_clone() requires this */
2994 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs))
2995 return -EINVAL;
2996
2997 return 0;
2998}
2999
Mark Fashehe1d227a2015-06-08 15:05:25 -07003000static int btrfs_extent_same(struct inode *src, u64 loff, u64 olen,
Mark Fasheh416161d2013-08-06 11:42:51 -07003001 struct inode *dst, u64 dst_loff)
3002{
3003 int ret;
Mark Fashehe1d227a2015-06-08 15:05:25 -07003004 u64 len = olen;
Mark Fashehf4414602015-06-30 14:42:05 -07003005 struct cmp_pages cmp;
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003006 int same_inode = 0;
3007 u64 same_lock_start = 0;
3008 u64 same_lock_len = 0;
Mark Fasheh416161d2013-08-06 11:42:51 -07003009
Mark Fasheh416161d2013-08-06 11:42:51 -07003010 if (src == dst)
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003011 same_inode = 1;
Mark Fasheh416161d2013-08-06 11:42:51 -07003012
Filipe Manana113e8282015-03-30 18:26:47 +01003013 if (len == 0)
3014 return 0;
3015
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003016 if (same_inode) {
3017 mutex_lock(&src->i_mutex);
Mark Fasheh416161d2013-08-06 11:42:51 -07003018
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003019 ret = extent_same_check_offsets(src, loff, &len, olen);
3020 if (ret)
3021 goto out_unlock;
Mark Fasheh416161d2013-08-06 11:42:51 -07003022
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003023 /*
3024 * Single inode case wants the same checks, except we
3025 * don't want our length pushed out past i_size as
3026 * comparing that data range makes no sense.
3027 *
3028 * extent_same_check_offsets() will do this for an
3029 * unaligned length at i_size, so catch it here and
3030 * reject the request.
3031 *
3032 * This effectively means we require aligned extents
3033 * for the single-inode case, whereas the other cases
3034 * allow an unaligned length so long as it ends at
3035 * i_size.
3036 */
3037 if (len != olen) {
3038 ret = -EINVAL;
3039 goto out_unlock;
3040 }
3041
3042 /* Check for overlapping ranges */
3043 if (dst_loff + len > loff && dst_loff < loff + len) {
3044 ret = -EINVAL;
3045 goto out_unlock;
3046 }
3047
3048 same_lock_start = min_t(u64, loff, dst_loff);
3049 same_lock_len = max_t(u64, loff, dst_loff) + len - same_lock_start;
3050 } else {
3051 btrfs_double_inode_lock(src, dst);
3052
3053 ret = extent_same_check_offsets(src, loff, &len, olen);
3054 if (ret)
3055 goto out_unlock;
3056
3057 ret = extent_same_check_offsets(dst, dst_loff, &len, olen);
3058 if (ret)
3059 goto out_unlock;
3060 }
Mark Fasheh416161d2013-08-06 11:42:51 -07003061
3062 /* don't make the dst file partly checksummed */
3063 if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
3064 (BTRFS_I(dst)->flags & BTRFS_INODE_NODATASUM)) {
3065 ret = -EINVAL;
3066 goto out_unlock;
3067 }
3068
Mark Fashehf4414602015-06-30 14:42:05 -07003069 ret = btrfs_cmp_data_prepare(src, loff, dst, dst_loff, olen, &cmp);
3070 if (ret)
3071 goto out_unlock;
3072
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003073 if (same_inode)
3074 lock_extent_range(src, same_lock_start, same_lock_len);
3075 else
3076 btrfs_double_extent_lock(src, loff, dst, dst_loff, len);
Mark Fashehf4414602015-06-30 14:42:05 -07003077
Mark Fasheh207910d2015-06-30 14:42:04 -07003078 /* pass original length for comparison so we stay within i_size */
Mark Fashehf4414602015-06-30 14:42:05 -07003079 ret = btrfs_cmp_data(src, loff, dst, dst_loff, olen, &cmp);
Mark Fasheh416161d2013-08-06 11:42:51 -07003080 if (ret == 0)
Mark Fasheh1c919a52015-06-30 14:42:08 -07003081 ret = btrfs_clone(src, dst, loff, olen, len, dst_loff, 1);
Mark Fasheh416161d2013-08-06 11:42:51 -07003082
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003083 if (same_inode)
3084 unlock_extent(&BTRFS_I(src)->io_tree, same_lock_start,
3085 same_lock_start + same_lock_len - 1);
3086 else
3087 btrfs_double_extent_unlock(src, loff, dst, dst_loff, len);
Mark Fashehf4414602015-06-30 14:42:05 -07003088
3089 btrfs_cmp_data_free(&cmp);
Mark Fasheh416161d2013-08-06 11:42:51 -07003090out_unlock:
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003091 if (same_inode)
3092 mutex_unlock(&src->i_mutex);
3093 else
3094 btrfs_double_inode_unlock(src, dst);
Mark Fasheh416161d2013-08-06 11:42:51 -07003095
3096 return ret;
3097}
3098
3099#define BTRFS_MAX_DEDUPE_LEN (16 * 1024 * 1024)
3100
3101static long btrfs_ioctl_file_extent_same(struct file *file,
Al Viro1c1c8742013-12-11 23:07:51 -05003102 struct btrfs_ioctl_same_args __user *argp)
Mark Fasheh416161d2013-08-06 11:42:51 -07003103{
Filipe Manana497b4052015-07-03 08:36:11 +01003104 struct btrfs_ioctl_same_args *same = NULL;
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003105 struct btrfs_ioctl_same_extent_info *info;
Al Viro1c1c8742013-12-11 23:07:51 -05003106 struct inode *src = file_inode(file);
Mark Fasheh416161d2013-08-06 11:42:51 -07003107 u64 off;
3108 u64 len;
3109 int i;
3110 int ret;
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003111 unsigned long size;
Mark Fasheh416161d2013-08-06 11:42:51 -07003112 u64 bs = BTRFS_I(src)->root->fs_info->sb->s_blocksize;
3113 bool is_admin = capable(CAP_SYS_ADMIN);
Al Viro1c1c8742013-12-11 23:07:51 -05003114 u16 count;
Mark Fasheh416161d2013-08-06 11:42:51 -07003115
3116 if (!(file->f_mode & FMODE_READ))
3117 return -EINVAL;
3118
3119 ret = mnt_want_write_file(file);
3120 if (ret)
3121 return ret;
3122
Al Viro1c1c8742013-12-11 23:07:51 -05003123 if (get_user(count, &argp->dest_count)) {
Mark Fasheh416161d2013-08-06 11:42:51 -07003124 ret = -EFAULT;
3125 goto out;
3126 }
3127
Al Viro1c1c8742013-12-11 23:07:51 -05003128 size = offsetof(struct btrfs_ioctl_same_args __user, info[count]);
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003129
Al Viro1c1c8742013-12-11 23:07:51 -05003130 same = memdup_user(argp, size);
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003131
Geyslan G. Bem229eed42013-10-14 12:18:25 -03003132 if (IS_ERR(same)) {
3133 ret = PTR_ERR(same);
Filipe Manana497b4052015-07-03 08:36:11 +01003134 same = NULL;
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003135 goto out;
3136 }
3137
3138 off = same->logical_offset;
3139 len = same->length;
Mark Fasheh416161d2013-08-06 11:42:51 -07003140
3141 /*
3142 * Limit the total length we will dedupe for each operation.
3143 * This is intended to bound the total time spent in this
3144 * ioctl to something sane.
3145 */
3146 if (len > BTRFS_MAX_DEDUPE_LEN)
3147 len = BTRFS_MAX_DEDUPE_LEN;
3148
3149 if (WARN_ON_ONCE(bs < PAGE_CACHE_SIZE)) {
3150 /*
3151 * Btrfs does not support blocksize < page_size. As a
3152 * result, btrfs_cmp_data() won't correctly handle
3153 * this situation without an update.
3154 */
3155 ret = -EINVAL;
3156 goto out;
3157 }
3158
3159 ret = -EISDIR;
3160 if (S_ISDIR(src->i_mode))
3161 goto out;
3162
3163 ret = -EACCES;
3164 if (!S_ISREG(src->i_mode))
3165 goto out;
3166
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003167 /* pre-format output fields to sane values */
Al Viro1c1c8742013-12-11 23:07:51 -05003168 for (i = 0; i < count; i++) {
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003169 same->info[i].bytes_deduped = 0ULL;
3170 same->info[i].status = 0;
3171 }
3172
Al Viro1c1c8742013-12-11 23:07:51 -05003173 for (i = 0, info = same->info; i < count; i++, info++) {
3174 struct inode *dst;
3175 struct fd dst_file = fdget(info->fd);
3176 if (!dst_file.file) {
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003177 info->status = -EBADF;
Al Viro1c1c8742013-12-11 23:07:51 -05003178 continue;
Mark Fasheh416161d2013-08-06 11:42:51 -07003179 }
Al Viro1c1c8742013-12-11 23:07:51 -05003180 dst = file_inode(dst_file.file);
Mark Fasheh416161d2013-08-06 11:42:51 -07003181
Al Viro1c1c8742013-12-11 23:07:51 -05003182 if (!(is_admin || (dst_file.file->f_mode & FMODE_WRITE))) {
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003183 info->status = -EINVAL;
Al Viro1c1c8742013-12-11 23:07:51 -05003184 } else if (file->f_path.mnt != dst_file.file->f_path.mnt) {
3185 info->status = -EXDEV;
3186 } else if (S_ISDIR(dst->i_mode)) {
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003187 info->status = -EISDIR;
Al Viro1c1c8742013-12-11 23:07:51 -05003188 } else if (!S_ISREG(dst->i_mode)) {
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003189 info->status = -EACCES;
Al Viro1c1c8742013-12-11 23:07:51 -05003190 } else {
3191 info->status = btrfs_extent_same(src, off, len, dst,
3192 info->logical_offset);
3193 if (info->status == 0)
3194 info->bytes_deduped += len;
Mark Fasheh416161d2013-08-06 11:42:51 -07003195 }
Al Viro1c1c8742013-12-11 23:07:51 -05003196 fdput(dst_file);
Mark Fasheh416161d2013-08-06 11:42:51 -07003197 }
3198
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003199 ret = copy_to_user(argp, same, size);
3200 if (ret)
3201 ret = -EFAULT;
3202
Mark Fasheh416161d2013-08-06 11:42:51 -07003203out:
3204 mnt_drop_write_file(file);
Filipe Manana497b4052015-07-03 08:36:11 +01003205 kfree(same);
Mark Fasheh416161d2013-08-06 11:42:51 -07003206 return ret;
3207}
3208
Josef Bacikfcebe452014-05-13 17:30:47 -07003209/* Helper to check and see if this root currently has a ref on the given disk
3210 * bytenr. If it does then we need to update the quota for this root. This
3211 * doesn't do anything if quotas aren't enabled.
3212 */
3213static int check_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
3214 u64 disko)
3215{
David Sterba3284da72015-02-25 15:47:32 +01003216 struct seq_list tree_mod_seq_elem = SEQ_LIST_INIT(tree_mod_seq_elem);
Josef Bacikfcebe452014-05-13 17:30:47 -07003217 struct ulist *roots;
3218 struct ulist_iterator uiter;
3219 struct ulist_node *root_node = NULL;
3220 int ret;
3221
3222 if (!root->fs_info->quota_enabled)
3223 return 1;
3224
3225 btrfs_get_tree_mod_seq(root->fs_info, &tree_mod_seq_elem);
3226 ret = btrfs_find_all_roots(trans, root->fs_info, disko,
3227 tree_mod_seq_elem.seq, &roots);
3228 if (ret < 0)
3229 goto out;
3230 ret = 0;
3231 ULIST_ITER_INIT(&uiter);
3232 while ((root_node = ulist_next(roots, &uiter))) {
3233 if (root_node->val == root->objectid) {
3234 ret = 1;
3235 break;
3236 }
3237 }
3238 ulist_free(roots);
3239out:
3240 btrfs_put_tree_mod_seq(root->fs_info, &tree_mod_seq_elem);
3241 return ret;
3242}
3243
Filipe Mananaf82a9902014-06-01 01:50:28 +01003244static int clone_finish_inode_update(struct btrfs_trans_handle *trans,
3245 struct inode *inode,
3246 u64 endoff,
3247 const u64 destoff,
Mark Fasheh1c919a52015-06-30 14:42:08 -07003248 const u64 olen,
3249 int no_time_update)
Filipe Mananaf82a9902014-06-01 01:50:28 +01003250{
3251 struct btrfs_root *root = BTRFS_I(inode)->root;
3252 int ret;
3253
3254 inode_inc_iversion(inode);
Mark Fasheh1c919a52015-06-30 14:42:08 -07003255 if (!no_time_update)
3256 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003257 /*
3258 * We round up to the block size at eof when determining which
3259 * extents to clone above, but shouldn't round up the file size.
3260 */
3261 if (endoff > destoff + olen)
3262 endoff = destoff + olen;
3263 if (endoff > inode->i_size)
3264 btrfs_i_size_write(inode, endoff);
3265
3266 ret = btrfs_update_inode(trans, root, inode);
3267 if (ret) {
3268 btrfs_abort_transaction(trans, root, ret);
3269 btrfs_end_transaction(trans, root);
3270 goto out;
3271 }
3272 ret = btrfs_end_transaction(trans, root);
3273out:
3274 return ret;
3275}
3276
Filipe Manana7ffbb592014-06-09 03:48:05 +01003277static void clone_update_extent_map(struct inode *inode,
3278 const struct btrfs_trans_handle *trans,
3279 const struct btrfs_path *path,
Filipe Manana7ffbb592014-06-09 03:48:05 +01003280 const u64 hole_offset,
3281 const u64 hole_len)
3282{
3283 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
3284 struct extent_map *em;
3285 int ret;
3286
3287 em = alloc_extent_map();
3288 if (!em) {
3289 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3290 &BTRFS_I(inode)->runtime_flags);
3291 return;
3292 }
3293
Filipe Manana14f59792014-06-29 21:45:40 +01003294 if (path) {
3295 struct btrfs_file_extent_item *fi;
3296
3297 fi = btrfs_item_ptr(path->nodes[0], path->slots[0],
3298 struct btrfs_file_extent_item);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003299 btrfs_extent_item_to_extent_map(inode, path, fi, false, em);
3300 em->generation = -1;
3301 if (btrfs_file_extent_type(path->nodes[0], fi) ==
3302 BTRFS_FILE_EXTENT_INLINE)
3303 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3304 &BTRFS_I(inode)->runtime_flags);
3305 } else {
3306 em->start = hole_offset;
3307 em->len = hole_len;
3308 em->ram_bytes = em->len;
3309 em->orig_start = hole_offset;
3310 em->block_start = EXTENT_MAP_HOLE;
3311 em->block_len = 0;
3312 em->orig_block_len = 0;
3313 em->compress_type = BTRFS_COMPRESS_NONE;
3314 em->generation = trans->transid;
3315 }
3316
3317 while (1) {
3318 write_lock(&em_tree->lock);
3319 ret = add_extent_mapping(em_tree, em, 1);
3320 write_unlock(&em_tree->lock);
3321 if (ret != -EEXIST) {
3322 free_extent_map(em);
3323 break;
3324 }
3325 btrfs_drop_extent_cache(inode, em->start,
3326 em->start + em->len - 1, 0);
3327 }
3328
David Sterbaee39b432014-09-30 01:33:33 +02003329 if (ret)
Filipe Manana7ffbb592014-06-09 03:48:05 +01003330 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3331 &BTRFS_I(inode)->runtime_flags);
3332}
3333
Filipe Manana8039d872015-10-13 15:15:00 +01003334/*
3335 * Make sure we do not end up inserting an inline extent into a file that has
3336 * already other (non-inline) extents. If a file has an inline extent it can
3337 * not have any other extents and the (single) inline extent must start at the
3338 * file offset 0. Failing to respect these rules will lead to file corruption,
3339 * resulting in EIO errors on read/write operations, hitting BUG_ON's in mm, etc
3340 *
3341 * We can have extents that have been already written to disk or we can have
3342 * dirty ranges still in delalloc, in which case the extent maps and items are
3343 * created only when we run delalloc, and the delalloc ranges might fall outside
3344 * the range we are currently locking in the inode's io tree. So we check the
3345 * inode's i_size because of that (i_size updates are done while holding the
3346 * i_mutex, which we are holding here).
3347 * We also check to see if the inode has a size not greater than "datal" but has
3348 * extents beyond it, due to an fallocate with FALLOC_FL_KEEP_SIZE (and we are
3349 * protected against such concurrent fallocate calls by the i_mutex).
3350 *
3351 * If the file has no extents but a size greater than datal, do not allow the
3352 * copy because we would need turn the inline extent into a non-inline one (even
3353 * with NO_HOLES enabled). If we find our destination inode only has one inline
3354 * extent, just overwrite it with the source inline extent if its size is less
3355 * than the source extent's size, or we could copy the source inline extent's
3356 * data into the destination inode's inline extent if the later is greater then
3357 * the former.
3358 */
3359static int clone_copy_inline_extent(struct inode *src,
3360 struct inode *dst,
3361 struct btrfs_trans_handle *trans,
3362 struct btrfs_path *path,
3363 struct btrfs_key *new_key,
3364 const u64 drop_start,
3365 const u64 datal,
3366 const u64 skip,
3367 const u64 size,
3368 char *inline_data)
3369{
3370 struct btrfs_root *root = BTRFS_I(dst)->root;
3371 const u64 aligned_end = ALIGN(new_key->offset + datal,
3372 root->sectorsize);
3373 int ret;
3374 struct btrfs_key key;
3375
3376 if (new_key->offset > 0)
3377 return -EOPNOTSUPP;
3378
3379 key.objectid = btrfs_ino(dst);
3380 key.type = BTRFS_EXTENT_DATA_KEY;
3381 key.offset = 0;
3382 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3383 if (ret < 0) {
3384 return ret;
3385 } else if (ret > 0) {
3386 if (path->slots[0] >= btrfs_header_nritems(path->nodes[0])) {
3387 ret = btrfs_next_leaf(root, path);
3388 if (ret < 0)
3389 return ret;
3390 else if (ret > 0)
3391 goto copy_inline_extent;
3392 }
3393 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
3394 if (key.objectid == btrfs_ino(dst) &&
3395 key.type == BTRFS_EXTENT_DATA_KEY) {
3396 ASSERT(key.offset > 0);
3397 return -EOPNOTSUPP;
3398 }
3399 } else if (i_size_read(dst) <= datal) {
3400 struct btrfs_file_extent_item *ei;
3401 u64 ext_len;
3402
3403 /*
3404 * If the file size is <= datal, make sure there are no other
3405 * extents following (can happen do to an fallocate call with
3406 * the flag FALLOC_FL_KEEP_SIZE).
3407 */
3408 ei = btrfs_item_ptr(path->nodes[0], path->slots[0],
3409 struct btrfs_file_extent_item);
3410 /*
3411 * If it's an inline extent, it can not have other extents
3412 * following it.
3413 */
3414 if (btrfs_file_extent_type(path->nodes[0], ei) ==
3415 BTRFS_FILE_EXTENT_INLINE)
3416 goto copy_inline_extent;
3417
3418 ext_len = btrfs_file_extent_num_bytes(path->nodes[0], ei);
3419 if (ext_len > aligned_end)
3420 return -EOPNOTSUPP;
3421
3422 ret = btrfs_next_item(root, path);
3423 if (ret < 0) {
3424 return ret;
3425 } else if (ret == 0) {
3426 btrfs_item_key_to_cpu(path->nodes[0], &key,
3427 path->slots[0]);
3428 if (key.objectid == btrfs_ino(dst) &&
3429 key.type == BTRFS_EXTENT_DATA_KEY)
3430 return -EOPNOTSUPP;
3431 }
3432 }
3433
3434copy_inline_extent:
3435 /*
3436 * We have no extent items, or we have an extent at offset 0 which may
3437 * or may not be inlined. All these cases are dealt the same way.
3438 */
3439 if (i_size_read(dst) > datal) {
3440 /*
3441 * If the destination inode has an inline extent...
3442 * This would require copying the data from the source inline
3443 * extent into the beginning of the destination's inline extent.
3444 * But this is really complex, both extents can be compressed
3445 * or just one of them, which would require decompressing and
3446 * re-compressing data (which could increase the new compressed
3447 * size, not allowing the compressed data to fit anymore in an
3448 * inline extent).
3449 * So just don't support this case for now (it should be rare,
3450 * we are not really saving space when cloning inline extents).
3451 */
3452 return -EOPNOTSUPP;
3453 }
3454
3455 btrfs_release_path(path);
3456 ret = btrfs_drop_extents(trans, root, dst, drop_start, aligned_end, 1);
3457 if (ret)
3458 return ret;
3459 ret = btrfs_insert_empty_item(trans, root, path, new_key, size);
3460 if (ret)
3461 return ret;
3462
3463 if (skip) {
3464 const u32 start = btrfs_file_extent_calc_inline_size(0);
3465
3466 memmove(inline_data + start, inline_data + start + skip, datal);
3467 }
3468
3469 write_extent_buffer(path->nodes[0], inline_data,
3470 btrfs_item_ptr_offset(path->nodes[0],
3471 path->slots[0]),
3472 size);
3473 inode_add_bytes(dst, datal);
3474
3475 return 0;
3476}
3477
Mark Fasheh32b7c682013-08-06 11:42:49 -07003478/**
3479 * btrfs_clone() - clone a range from inode file to another
3480 *
3481 * @src: Inode to clone from
3482 * @inode: Inode to clone to
3483 * @off: Offset within source to start clone from
3484 * @olen: Original length, passed by user, of range to clone
Mark Fasheh1c919a52015-06-30 14:42:08 -07003485 * @olen_aligned: Block-aligned value of olen
Mark Fasheh32b7c682013-08-06 11:42:49 -07003486 * @destoff: Offset within @inode to start clone
Mark Fasheh1c919a52015-06-30 14:42:08 -07003487 * @no_time_update: Whether to update mtime/ctime on the target inode
Mark Fasheh32b7c682013-08-06 11:42:49 -07003488 */
3489static int btrfs_clone(struct inode *src, struct inode *inode,
Filipe Mananaf82a9902014-06-01 01:50:28 +01003490 const u64 off, const u64 olen, const u64 olen_aligned,
Mark Fasheh1c919a52015-06-30 14:42:08 -07003491 const u64 destoff, int no_time_update)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003492{
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003493 struct btrfs_root *root = BTRFS_I(inode)->root;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003494 struct btrfs_path *path = NULL;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003495 struct extent_buffer *leaf;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003496 struct btrfs_trans_handle *trans;
3497 char *buf = NULL;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003498 struct btrfs_key key;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003499 u32 nritems;
3500 int slot;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003501 int ret;
Josef Bacikfcebe452014-05-13 17:30:47 -07003502 int no_quota;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003503 const u64 len = olen_aligned;
Josef Bacikfcebe452014-05-13 17:30:47 -07003504 u64 last_disko = 0;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003505 u64 last_dest_end = destoff;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003506
3507 ret = -ENOMEM;
David Sterba707e8a02014-06-04 19:22:26 +02003508 buf = vmalloc(root->nodesize);
Yan Zhengae01a0a2008-08-04 23:23:47 -04003509 if (!buf)
Mark Fasheh32b7c682013-08-06 11:42:49 -07003510 return ret;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003511
3512 path = btrfs_alloc_path();
3513 if (!path) {
3514 vfree(buf);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003515 return ret;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003516 }
Mark Fasheh32b7c682013-08-06 11:42:49 -07003517
Yan Zhengae01a0a2008-08-04 23:23:47 -04003518 path->reada = 2;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003519 /* clone data */
Li Zefan33345d012011-04-20 10:31:50 +08003520 key.objectid = btrfs_ino(src);
Yan Zhengae01a0a2008-08-04 23:23:47 -04003521 key.type = BTRFS_EXTENT_DATA_KEY;
Filipe Manana2c463822014-05-31 02:31:05 +01003522 key.offset = off;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003523
3524 while (1) {
Chris Masonde249e62015-04-11 05:09:06 -07003525 u64 next_key_min_offset = key.offset + 1;
Filipe Mananadf858e72015-03-31 14:56:46 +01003526
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003527 /*
3528 * note the key will change type as we walk through the
3529 * tree.
3530 */
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003531 path->leave_spinning = 1;
David Sterba362a20c2011-08-01 18:11:57 +02003532 ret = btrfs_search_slot(NULL, BTRFS_I(src)->root, &key, path,
3533 0, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003534 if (ret < 0)
3535 goto out;
Filipe Manana2c463822014-05-31 02:31:05 +01003536 /*
3537 * First search, if no extent item that starts at offset off was
3538 * found but the previous item is an extent item, it's possible
3539 * it might overlap our target range, therefore process it.
3540 */
3541 if (key.offset == off && ret > 0 && path->slots[0] > 0) {
3542 btrfs_item_key_to_cpu(path->nodes[0], &key,
3543 path->slots[0] - 1);
3544 if (key.type == BTRFS_EXTENT_DATA_KEY)
3545 path->slots[0]--;
3546 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003547
Yan Zhengae01a0a2008-08-04 23:23:47 -04003548 nritems = btrfs_header_nritems(path->nodes[0]);
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003549process_slot:
Josef Bacikfcebe452014-05-13 17:30:47 -07003550 no_quota = 1;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003551 if (path->slots[0] >= nritems) {
David Sterba362a20c2011-08-01 18:11:57 +02003552 ret = btrfs_next_leaf(BTRFS_I(src)->root, path);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003553 if (ret < 0)
3554 goto out;
3555 if (ret > 0)
3556 break;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003557 nritems = btrfs_header_nritems(path->nodes[0]);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003558 }
3559 leaf = path->nodes[0];
3560 slot = path->slots[0];
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003561
Yan Zhengae01a0a2008-08-04 23:23:47 -04003562 btrfs_item_key_to_cpu(leaf, &key, slot);
David Sterba962a2982014-06-04 18:41:45 +02003563 if (key.type > BTRFS_EXTENT_DATA_KEY ||
Li Zefan33345d012011-04-20 10:31:50 +08003564 key.objectid != btrfs_ino(src))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003565 break;
3566
David Sterba962a2982014-06-04 18:41:45 +02003567 if (key.type == BTRFS_EXTENT_DATA_KEY) {
Sage Weilc5c9cd42008-11-12 14:32:25 -05003568 struct btrfs_file_extent_item *extent;
3569 int type;
Zheng Yan31840ae2008-09-23 13:14:14 -04003570 u32 size;
3571 struct btrfs_key new_key;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003572 u64 disko = 0, diskl = 0;
3573 u64 datao = 0, datal = 0;
3574 u8 comp;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003575 u64 drop_start;
Zheng Yan31840ae2008-09-23 13:14:14 -04003576
Sage Weilc5c9cd42008-11-12 14:32:25 -05003577 extent = btrfs_item_ptr(leaf, slot,
3578 struct btrfs_file_extent_item);
3579 comp = btrfs_file_extent_compression(leaf, extent);
3580 type = btrfs_file_extent_type(leaf, extent);
Chris Masonc8a894d2009-06-27 21:07:03 -04003581 if (type == BTRFS_FILE_EXTENT_REG ||
3582 type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masond3977122009-01-05 21:25:51 -05003583 disko = btrfs_file_extent_disk_bytenr(leaf,
3584 extent);
3585 diskl = btrfs_file_extent_disk_num_bytes(leaf,
3586 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003587 datao = btrfs_file_extent_offset(leaf, extent);
Chris Masond3977122009-01-05 21:25:51 -05003588 datal = btrfs_file_extent_num_bytes(leaf,
3589 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003590 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
3591 /* take upper bound, may be compressed */
3592 datal = btrfs_file_extent_ram_bytes(leaf,
3593 extent);
3594 }
Zheng Yan31840ae2008-09-23 13:14:14 -04003595
Filipe Manana2c463822014-05-31 02:31:05 +01003596 /*
3597 * The first search might have left us at an extent
3598 * item that ends before our target range's start, can
3599 * happen if we have holes and NO_HOLES feature enabled.
3600 */
3601 if (key.offset + datal <= off) {
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003602 path->slots[0]++;
3603 goto process_slot;
Filipe Manana2c463822014-05-31 02:31:05 +01003604 } else if (key.offset >= off + len) {
3605 break;
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003606 }
Filipe Mananadf858e72015-03-31 14:56:46 +01003607 next_key_min_offset = key.offset + datal;
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003608 size = btrfs_item_size_nr(leaf, slot);
3609 read_extent_buffer(leaf, buf,
3610 btrfs_item_ptr_offset(leaf, slot),
3611 size);
3612
3613 btrfs_release_path(path);
3614 path->leave_spinning = 0;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003615
Zheng Yan31840ae2008-09-23 13:14:14 -04003616 memcpy(&new_key, &key, sizeof(new_key));
Li Zefan33345d012011-04-20 10:31:50 +08003617 new_key.objectid = btrfs_ino(inode);
Li Zefan4d728ec2011-01-26 14:10:43 +08003618 if (off <= key.offset)
3619 new_key.offset = key.offset + destoff - off;
3620 else
3621 new_key.offset = destoff;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003622
Sage Weilb6f34092011-09-20 14:48:51 -04003623 /*
Filipe Mananaf82a9902014-06-01 01:50:28 +01003624 * Deal with a hole that doesn't have an extent item
3625 * that represents it (NO_HOLES feature enabled).
3626 * This hole is either in the middle of the cloning
3627 * range or at the beginning (fully overlaps it or
3628 * partially overlaps it).
3629 */
3630 if (new_key.offset != last_dest_end)
3631 drop_start = last_dest_end;
3632 else
3633 drop_start = new_key.offset;
3634
3635 /*
Sage Weilb6f34092011-09-20 14:48:51 -04003636 * 1 - adjusting old extent (we may have to split it)
3637 * 1 - add new extent
3638 * 1 - inode update
3639 */
3640 trans = btrfs_start_transaction(root, 3);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003641 if (IS_ERR(trans)) {
3642 ret = PTR_ERR(trans);
3643 goto out;
3644 }
3645
Chris Masonc8a894d2009-06-27 21:07:03 -04003646 if (type == BTRFS_FILE_EXTENT_REG ||
3647 type == BTRFS_FILE_EXTENT_PREALLOC) {
Li Zefand72c0842011-09-11 10:52:25 -04003648 /*
3649 * a | --- range to clone ---| b
3650 * | ------------- extent ------------- |
3651 */
3652
Antonio Ospite93915582014-06-04 14:03:48 +02003653 /* subtract range b */
Li Zefand72c0842011-09-11 10:52:25 -04003654 if (key.offset + datal > off + len)
3655 datal = off + len - key.offset;
3656
Antonio Ospite93915582014-06-04 14:03:48 +02003657 /* subtract range a */
Yan, Zhenga22285a2010-05-16 10:48:46 -04003658 if (off > key.offset) {
3659 datao += off - key.offset;
3660 datal -= off - key.offset;
3661 }
3662
Josef Bacik5dc562c2012-08-17 13:14:17 -04003663 ret = btrfs_drop_extents(trans, root, inode,
Filipe Mananaf82a9902014-06-01 01:50:28 +01003664 drop_start,
Yan, Zhenga22285a2010-05-16 10:48:46 -04003665 new_key.offset + datal,
Josef Bacik26714852012-08-29 12:24:27 -04003666 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003667 if (ret) {
David Sterba3f9e3df2014-04-15 18:50:17 +02003668 if (ret != -EOPNOTSUPP)
Liu Bo00fdf132014-03-10 18:56:07 +08003669 btrfs_abort_transaction(trans,
3670 root, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003671 btrfs_end_transaction(trans, root);
3672 goto out;
3673 }
Yan, Zhenga22285a2010-05-16 10:48:46 -04003674
Sage Weilc5c9cd42008-11-12 14:32:25 -05003675 ret = btrfs_insert_empty_item(trans, root, path,
3676 &new_key, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003677 if (ret) {
3678 btrfs_abort_transaction(trans, root,
3679 ret);
3680 btrfs_end_transaction(trans, root);
3681 goto out;
3682 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05003683
3684 leaf = path->nodes[0];
3685 slot = path->slots[0];
3686 write_extent_buffer(leaf, buf,
3687 btrfs_item_ptr_offset(leaf, slot),
3688 size);
3689
3690 extent = btrfs_item_ptr(leaf, slot,
3691 struct btrfs_file_extent_item);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003692
Sage Weilc5c9cd42008-11-12 14:32:25 -05003693 /* disko == 0 means it's a hole */
3694 if (!disko)
3695 datao = 0;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003696
3697 btrfs_set_file_extent_offset(leaf, extent,
3698 datao);
3699 btrfs_set_file_extent_num_bytes(leaf, extent,
3700 datal);
Josef Bacikfcebe452014-05-13 17:30:47 -07003701
3702 /*
3703 * We need to look up the roots that point at
3704 * this bytenr and see if the new root does. If
3705 * it does not we need to make sure we update
3706 * quotas appropriately.
3707 */
3708 if (disko && root != BTRFS_I(src)->root &&
3709 disko != last_disko) {
3710 no_quota = check_ref(trans, root,
3711 disko);
3712 if (no_quota < 0) {
3713 btrfs_abort_transaction(trans,
3714 root,
3715 ret);
3716 btrfs_end_transaction(trans,
3717 root);
3718 ret = no_quota;
3719 goto out;
3720 }
3721 }
3722
Sage Weilc5c9cd42008-11-12 14:32:25 -05003723 if (disko) {
3724 inode_add_bytes(inode, datal);
3725 ret = btrfs_inc_extent_ref(trans, root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003726 disko, diskl, 0,
3727 root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08003728 btrfs_ino(inode),
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003729 new_key.offset - datao,
Josef Bacikfcebe452014-05-13 17:30:47 -07003730 no_quota);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003731 if (ret) {
3732 btrfs_abort_transaction(trans,
3733 root,
3734 ret);
3735 btrfs_end_transaction(trans,
3736 root);
3737 goto out;
3738
3739 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05003740 }
3741 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
3742 u64 skip = 0;
3743 u64 trim = 0;
Filipe Mananaed958762015-07-14 16:09:39 +01003744
Sage Weilc5c9cd42008-11-12 14:32:25 -05003745 if (off > key.offset) {
3746 skip = off - key.offset;
3747 new_key.offset += skip;
3748 }
Chris Masond3977122009-01-05 21:25:51 -05003749
Liu Boaa42ffd2012-09-18 03:52:23 -06003750 if (key.offset + datal > off + len)
3751 trim = key.offset + datal - (off + len);
Chris Masond3977122009-01-05 21:25:51 -05003752
Sage Weilc5c9cd42008-11-12 14:32:25 -05003753 if (comp && (skip || trim)) {
Sage Weilc5c9cd42008-11-12 14:32:25 -05003754 ret = -EINVAL;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003755 btrfs_end_transaction(trans, root);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003756 goto out;
3757 }
3758 size -= skip + trim;
3759 datal -= skip + trim;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003760
Filipe Manana8039d872015-10-13 15:15:00 +01003761 ret = clone_copy_inline_extent(src, inode,
3762 trans, path,
3763 &new_key,
3764 drop_start,
3765 datal,
3766 skip, size, buf);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003767 if (ret) {
David Sterba3f9e3df2014-04-15 18:50:17 +02003768 if (ret != -EOPNOTSUPP)
Chris Mason3a29bc02014-04-07 07:10:40 -07003769 btrfs_abort_transaction(trans,
Filipe Manana8039d872015-10-13 15:15:00 +01003770 root,
3771 ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003772 btrfs_end_transaction(trans, root);
3773 goto out;
3774 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05003775 leaf = path->nodes[0];
3776 slot = path->slots[0];
Sage Weilc5c9cd42008-11-12 14:32:25 -05003777 }
3778
Filipe Manana7ffbb592014-06-09 03:48:05 +01003779 /* If we have an implicit hole (NO_HOLES feature). */
3780 if (drop_start < new_key.offset)
3781 clone_update_extent_map(inode, trans,
Filipe Manana14f59792014-06-29 21:45:40 +01003782 NULL, drop_start,
Filipe Manana7ffbb592014-06-09 03:48:05 +01003783 new_key.offset - drop_start);
3784
Filipe Manana14f59792014-06-29 21:45:40 +01003785 clone_update_extent_map(inode, trans, path, 0, 0);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003786
Sage Weilc5c9cd42008-11-12 14:32:25 -05003787 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02003788 btrfs_release_path(path);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003789
Filipe Manana62e23902014-08-08 02:47:06 +01003790 last_dest_end = ALIGN(new_key.offset + datal,
3791 root->sectorsize);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003792 ret = clone_finish_inode_update(trans, inode,
3793 last_dest_end,
Mark Fasheh1c919a52015-06-30 14:42:08 -07003794 destoff, olen,
3795 no_time_update);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003796 if (ret)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003797 goto out;
Filipe Manana2c463822014-05-31 02:31:05 +01003798 if (new_key.offset + datal >= destoff + len)
3799 break;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003800 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003801 btrfs_release_path(path);
Filipe Mananadf858e72015-03-31 14:56:46 +01003802 key.offset = next_key_min_offset;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003803 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003804 ret = 0;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003805
Filipe Mananaf82a9902014-06-01 01:50:28 +01003806 if (last_dest_end < destoff + len) {
3807 /*
3808 * We have an implicit hole (NO_HOLES feature is enabled) that
3809 * fully or partially overlaps our cloning range at its end.
3810 */
3811 btrfs_release_path(path);
3812
3813 /*
3814 * 1 - remove extent(s)
3815 * 1 - inode update
3816 */
3817 trans = btrfs_start_transaction(root, 2);
3818 if (IS_ERR(trans)) {
3819 ret = PTR_ERR(trans);
3820 goto out;
3821 }
3822 ret = btrfs_drop_extents(trans, root, inode,
3823 last_dest_end, destoff + len, 1);
3824 if (ret) {
3825 if (ret != -EOPNOTSUPP)
3826 btrfs_abort_transaction(trans, root, ret);
3827 btrfs_end_transaction(trans, root);
3828 goto out;
3829 }
Filipe Manana14f59792014-06-29 21:45:40 +01003830 clone_update_extent_map(inode, trans, NULL, last_dest_end,
3831 destoff + len - last_dest_end);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003832 ret = clone_finish_inode_update(trans, inode, destoff + len,
Mark Fasheh1c919a52015-06-30 14:42:08 -07003833 destoff, olen, no_time_update);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003834 }
3835
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003836out:
Mark Fasheh32b7c682013-08-06 11:42:49 -07003837 btrfs_free_path(path);
3838 vfree(buf);
3839 return ret;
3840}
3841
3842static noinline long btrfs_ioctl_clone(struct file *file, unsigned long srcfd,
3843 u64 off, u64 olen, u64 destoff)
3844{
Al Viro54563d42013-09-01 15:57:51 -04003845 struct inode *inode = file_inode(file);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003846 struct btrfs_root *root = BTRFS_I(inode)->root;
3847 struct fd src_file;
3848 struct inode *src;
3849 int ret;
3850 u64 len = olen;
3851 u64 bs = root->fs_info->sb->s_blocksize;
3852 int same_inode = 0;
3853
3854 /*
3855 * TODO:
3856 * - split compressed inline extents. annoying: we need to
3857 * decompress into destination's address_space (the file offset
3858 * may change, so source mapping won't do), then recompress (or
3859 * otherwise reinsert) a subrange.
Liu Bo00fdf132014-03-10 18:56:07 +08003860 *
3861 * - split destination inode's inline extents. The inline extents can
3862 * be either compressed or non-compressed.
Mark Fasheh32b7c682013-08-06 11:42:49 -07003863 */
3864
3865 /* the destination must be opened for writing */
3866 if (!(file->f_mode & FMODE_WRITE) || (file->f_flags & O_APPEND))
3867 return -EINVAL;
3868
3869 if (btrfs_root_readonly(root))
3870 return -EROFS;
3871
3872 ret = mnt_want_write_file(file);
3873 if (ret)
3874 return ret;
3875
3876 src_file = fdget(srcfd);
3877 if (!src_file.file) {
3878 ret = -EBADF;
3879 goto out_drop_write;
3880 }
3881
3882 ret = -EXDEV;
3883 if (src_file.file->f_path.mnt != file->f_path.mnt)
3884 goto out_fput;
3885
3886 src = file_inode(src_file.file);
3887
3888 ret = -EINVAL;
3889 if (src == inode)
3890 same_inode = 1;
3891
3892 /* the src must be open for reading */
3893 if (!(src_file.file->f_mode & FMODE_READ))
3894 goto out_fput;
3895
3896 /* don't make the dst file partly checksummed */
3897 if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
3898 (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM))
3899 goto out_fput;
3900
3901 ret = -EISDIR;
3902 if (S_ISDIR(src->i_mode) || S_ISDIR(inode->i_mode))
3903 goto out_fput;
3904
3905 ret = -EXDEV;
3906 if (src->i_sb != inode->i_sb)
3907 goto out_fput;
3908
3909 if (!same_inode) {
Mark Fasheh293a8482015-06-30 14:42:06 -07003910 btrfs_double_inode_lock(src, inode);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003911 } else {
3912 mutex_lock(&src->i_mutex);
3913 }
3914
3915 /* determine range to clone */
3916 ret = -EINVAL;
3917 if (off + len > src->i_size || off + len < off)
3918 goto out_unlock;
3919 if (len == 0)
3920 olen = len = src->i_size - off;
3921 /* if we extend to eof, continue to block boundary */
3922 if (off + len == src->i_size)
3923 len = ALIGN(src->i_size, bs) - off;
3924
Filipe Mananaccccf3d62015-03-30 18:23:59 +01003925 if (len == 0) {
3926 ret = 0;
3927 goto out_unlock;
3928 }
3929
Mark Fasheh32b7c682013-08-06 11:42:49 -07003930 /* verify the end result is block aligned */
3931 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs) ||
3932 !IS_ALIGNED(destoff, bs))
3933 goto out_unlock;
3934
3935 /* verify if ranges are overlapped within the same file */
3936 if (same_inode) {
3937 if (destoff + len > off && destoff < off + len)
3938 goto out_unlock;
3939 }
3940
3941 if (destoff > inode->i_size) {
3942 ret = btrfs_cont_expand(inode, inode->i_size, destoff);
3943 if (ret)
3944 goto out_unlock;
3945 }
3946
Filipe Mananac125b8b2014-05-23 05:03:34 +01003947 /*
3948 * Lock the target range too. Right after we replace the file extent
3949 * items in the fs tree (which now point to the cloned data), we might
3950 * have a worker replace them with extent items relative to a write
3951 * operation that was issued before this clone operation (i.e. confront
3952 * with inode.c:btrfs_finish_ordered_io).
3953 */
3954 if (same_inode) {
3955 u64 lock_start = min_t(u64, off, destoff);
3956 u64 lock_len = max_t(u64, off, destoff) + len - lock_start;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003957
Filipe Mananac125b8b2014-05-23 05:03:34 +01003958 lock_extent_range(src, lock_start, lock_len);
3959 } else {
Mark Fasheh293a8482015-06-30 14:42:06 -07003960 btrfs_double_extent_lock(src, off, inode, destoff, len);
Filipe Mananac125b8b2014-05-23 05:03:34 +01003961 }
Mark Fasheh32b7c682013-08-06 11:42:49 -07003962
Mark Fasheh1c919a52015-06-30 14:42:08 -07003963 ret = btrfs_clone(src, inode, off, olen, len, destoff, 0);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003964
Filipe Mananac125b8b2014-05-23 05:03:34 +01003965 if (same_inode) {
3966 u64 lock_start = min_t(u64, off, destoff);
3967 u64 lock_end = max_t(u64, off, destoff) + len - 1;
3968
3969 unlock_extent(&BTRFS_I(src)->io_tree, lock_start, lock_end);
3970 } else {
Mark Fasheh293a8482015-06-30 14:42:06 -07003971 btrfs_double_extent_unlock(src, off, inode, destoff, len);
Filipe Mananac125b8b2014-05-23 05:03:34 +01003972 }
3973 /*
3974 * Truncate page cache pages so that future reads will see the cloned
3975 * data immediately and not the previous data.
3976 */
3977 truncate_inode_pages_range(&inode->i_data, destoff,
3978 PAGE_CACHE_ALIGN(destoff + len) - 1);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003979out_unlock:
Mark Fasheh293a8482015-06-30 14:42:06 -07003980 if (!same_inode)
3981 btrfs_double_inode_unlock(src, inode);
3982 else
Filipe David Borba Mananac57c2b32014-01-11 21:31:25 +00003983 mutex_unlock(&src->i_mutex);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003984out_fput:
Al Viro2903ff02012-08-28 12:52:22 -04003985 fdput(src_file);
Yan Zhengab67b7c2008-12-19 10:58:39 -05003986out_drop_write:
Al Viro2a79f172011-12-09 08:06:57 -05003987 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003988 return ret;
3989}
3990
Christoph Hellwig7a865e82008-12-02 09:52:24 -05003991static long btrfs_ioctl_clone_range(struct file *file, void __user *argp)
Sage Weilc5c9cd42008-11-12 14:32:25 -05003992{
3993 struct btrfs_ioctl_clone_range_args args;
3994
Christoph Hellwig7a865e82008-12-02 09:52:24 -05003995 if (copy_from_user(&args, argp, sizeof(args)))
Sage Weilc5c9cd42008-11-12 14:32:25 -05003996 return -EFAULT;
3997 return btrfs_ioctl_clone(file, args.src_fd, args.src_offset,
3998 args.src_length, args.dest_offset);
3999}
4000
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004001/*
4002 * there are many ways the trans_start and trans_end ioctls can lead
4003 * to deadlocks. They should only be used by applications that
4004 * basically own the machine, and have a very in depth understanding
4005 * of all the possible deadlocks and enospc problems.
4006 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05004007static long btrfs_ioctl_trans_start(struct file *file)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004008{
Al Viro496ad9a2013-01-23 17:07:38 -05004009 struct inode *inode = file_inode(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004010 struct btrfs_root *root = BTRFS_I(inode)->root;
4011 struct btrfs_trans_handle *trans;
Sage Weil1ab86ae2009-09-29 18:38:44 -04004012 int ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004013
Sage Weil1ab86ae2009-09-29 18:38:44 -04004014 ret = -EPERM;
Christoph Hellwigdf5b5522008-06-11 21:53:58 -04004015 if (!capable(CAP_SYS_ADMIN))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004016 goto out;
Sage Weil1ab86ae2009-09-29 18:38:44 -04004017
4018 ret = -EINPROGRESS;
4019 if (file->private_data)
4020 goto out;
Sage Weil9ca9ee02008-08-04 10:41:27 -04004021
Li Zefanb83cc962010-12-20 16:04:08 +08004022 ret = -EROFS;
4023 if (btrfs_root_readonly(root))
4024 goto out;
4025
Al Viroa561be72011-11-23 11:57:51 -05004026 ret = mnt_want_write_file(file);
Yan Zhengc146afa2008-11-12 14:34:12 -05004027 if (ret)
4028 goto out;
4029
Josef Bacika4abeea2011-04-11 17:25:13 -04004030 atomic_inc(&root->fs_info->open_ioctl_trans);
Sage Weil9ca9ee02008-08-04 10:41:27 -04004031
Sage Weil1ab86ae2009-09-29 18:38:44 -04004032 ret = -ENOMEM;
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004033 trans = btrfs_start_ioctl_transaction(root);
Tsutomu Itohabd30bb2011-01-24 00:57:10 +00004034 if (IS_ERR(trans))
Sage Weil1ab86ae2009-09-29 18:38:44 -04004035 goto out_drop;
4036
4037 file->private_data = trans;
4038 return 0;
4039
4040out_drop:
Josef Bacika4abeea2011-04-11 17:25:13 -04004041 atomic_dec(&root->fs_info->open_ioctl_trans);
Al Viro2a79f172011-12-09 08:06:57 -05004042 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004043out:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004044 return ret;
4045}
4046
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004047static long btrfs_ioctl_default_subvol(struct file *file, void __user *argp)
4048{
Al Viro496ad9a2013-01-23 17:07:38 -05004049 struct inode *inode = file_inode(file);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004050 struct btrfs_root *root = BTRFS_I(inode)->root;
4051 struct btrfs_root *new_root;
4052 struct btrfs_dir_item *di;
4053 struct btrfs_trans_handle *trans;
4054 struct btrfs_path *path;
4055 struct btrfs_key location;
4056 struct btrfs_disk_key disk_key;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004057 u64 objectid = 0;
4058 u64 dir_id;
Miao Xie3c04ce02012-11-26 08:43:07 +00004059 int ret;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004060
4061 if (!capable(CAP_SYS_ADMIN))
4062 return -EPERM;
4063
Miao Xie3c04ce02012-11-26 08:43:07 +00004064 ret = mnt_want_write_file(file);
4065 if (ret)
4066 return ret;
4067
4068 if (copy_from_user(&objectid, argp, sizeof(objectid))) {
4069 ret = -EFAULT;
4070 goto out;
4071 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004072
4073 if (!objectid)
chandan1cecf572013-09-13 19:34:10 +05304074 objectid = BTRFS_FS_TREE_OBJECTID;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004075
4076 location.objectid = objectid;
4077 location.type = BTRFS_ROOT_ITEM_KEY;
4078 location.offset = (u64)-1;
4079
4080 new_root = btrfs_read_fs_root_no_name(root->fs_info, &location);
Miao Xie3c04ce02012-11-26 08:43:07 +00004081 if (IS_ERR(new_root)) {
4082 ret = PTR_ERR(new_root);
4083 goto out;
4084 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004085
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004086 path = btrfs_alloc_path();
Miao Xie3c04ce02012-11-26 08:43:07 +00004087 if (!path) {
4088 ret = -ENOMEM;
4089 goto out;
4090 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004091 path->leave_spinning = 1;
4092
4093 trans = btrfs_start_transaction(root, 1);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00004094 if (IS_ERR(trans)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004095 btrfs_free_path(path);
Miao Xie3c04ce02012-11-26 08:43:07 +00004096 ret = PTR_ERR(trans);
4097 goto out;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004098 }
4099
David Sterba6c417612011-04-13 15:41:04 +02004100 dir_id = btrfs_super_root_dir(root->fs_info->super_copy);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004101 di = btrfs_lookup_dir_item(trans, root->fs_info->tree_root, path,
4102 dir_id, "default", 7, 1);
Dan Carpentercf1e99a2010-05-29 09:47:24 +00004103 if (IS_ERR_OR_NULL(di)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004104 btrfs_free_path(path);
4105 btrfs_end_transaction(trans, root);
Frank Holtonefe120a2013-12-20 11:37:06 -05004106 btrfs_err(new_root->fs_info, "Umm, you don't have the default dir"
4107 "item, this isn't going to work");
Miao Xie3c04ce02012-11-26 08:43:07 +00004108 ret = -ENOENT;
4109 goto out;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004110 }
4111
4112 btrfs_cpu_key_to_disk(&disk_key, &new_root->root_key);
4113 btrfs_set_dir_item_key(path->nodes[0], di, &disk_key);
4114 btrfs_mark_buffer_dirty(path->nodes[0]);
4115 btrfs_free_path(path);
4116
Mitch Harder2b0ce2c2012-07-24 11:58:43 -06004117 btrfs_set_fs_incompat(root->fs_info, DEFAULT_SUBVOL);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004118 btrfs_end_transaction(trans, root);
Miao Xie3c04ce02012-11-26 08:43:07 +00004119out:
4120 mnt_drop_write_file(file);
4121 return ret;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004122}
4123
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02004124void btrfs_get_block_group_info(struct list_head *groups_list,
4125 struct btrfs_ioctl_space_info *space)
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004126{
4127 struct btrfs_block_group_cache *block_group;
4128
4129 space->total_bytes = 0;
4130 space->used_bytes = 0;
4131 space->flags = 0;
4132 list_for_each_entry(block_group, groups_list, list) {
4133 space->flags = block_group->flags;
4134 space->total_bytes += block_group->key.offset;
4135 space->used_bytes +=
4136 btrfs_block_group_used(&block_group->item);
4137 }
4138}
4139
Eric Sandeen48a3b632013-04-25 20:41:01 +00004140static long btrfs_ioctl_space_info(struct btrfs_root *root, void __user *arg)
Josef Bacik1406e432010-01-13 18:19:06 +00004141{
4142 struct btrfs_ioctl_space_args space_args;
4143 struct btrfs_ioctl_space_info space;
4144 struct btrfs_ioctl_space_info *dest;
Chris Mason7fde62b2010-03-16 15:40:10 -04004145 struct btrfs_ioctl_space_info *dest_orig;
Daniel J Blueman13f26962011-04-11 15:56:31 +00004146 struct btrfs_ioctl_space_info __user *user_dest;
Josef Bacik1406e432010-01-13 18:19:06 +00004147 struct btrfs_space_info *info;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004148 u64 types[] = {BTRFS_BLOCK_GROUP_DATA,
4149 BTRFS_BLOCK_GROUP_SYSTEM,
4150 BTRFS_BLOCK_GROUP_METADATA,
4151 BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA};
4152 int num_types = 4;
Chris Mason7fde62b2010-03-16 15:40:10 -04004153 int alloc_size;
Josef Bacik1406e432010-01-13 18:19:06 +00004154 int ret = 0;
Dan Rosenberg51788b12011-02-14 16:04:23 -05004155 u64 slot_count = 0;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004156 int i, c;
Josef Bacik1406e432010-01-13 18:19:06 +00004157
4158 if (copy_from_user(&space_args,
4159 (struct btrfs_ioctl_space_args __user *)arg,
4160 sizeof(space_args)))
4161 return -EFAULT;
4162
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004163 for (i = 0; i < num_types; i++) {
4164 struct btrfs_space_info *tmp;
4165
4166 info = NULL;
4167 rcu_read_lock();
4168 list_for_each_entry_rcu(tmp, &root->fs_info->space_info,
4169 list) {
4170 if (tmp->flags == types[i]) {
4171 info = tmp;
4172 break;
4173 }
4174 }
4175 rcu_read_unlock();
4176
4177 if (!info)
4178 continue;
4179
4180 down_read(&info->groups_sem);
4181 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
4182 if (!list_empty(&info->block_groups[c]))
4183 slot_count++;
4184 }
4185 up_read(&info->groups_sem);
4186 }
Josef Bacik1406e432010-01-13 18:19:06 +00004187
David Sterba36523e952014-02-07 14:34:12 +01004188 /*
4189 * Global block reserve, exported as a space_info
4190 */
4191 slot_count++;
4192
Chris Mason7fde62b2010-03-16 15:40:10 -04004193 /* space_slots == 0 means they are asking for a count */
4194 if (space_args.space_slots == 0) {
4195 space_args.total_spaces = slot_count;
4196 goto out;
4197 }
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004198
Dan Rosenberg51788b12011-02-14 16:04:23 -05004199 slot_count = min_t(u64, space_args.space_slots, slot_count);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004200
Chris Mason7fde62b2010-03-16 15:40:10 -04004201 alloc_size = sizeof(*dest) * slot_count;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004202
Chris Mason7fde62b2010-03-16 15:40:10 -04004203 /* we generally have at most 6 or so space infos, one for each raid
4204 * level. So, a whole page should be more than enough for everyone
4205 */
4206 if (alloc_size > PAGE_CACHE_SIZE)
4207 return -ENOMEM;
4208
4209 space_args.total_spaces = 0;
4210 dest = kmalloc(alloc_size, GFP_NOFS);
4211 if (!dest)
4212 return -ENOMEM;
4213 dest_orig = dest;
4214
4215 /* now we have a buffer to copy into */
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004216 for (i = 0; i < num_types; i++) {
4217 struct btrfs_space_info *tmp;
Chris Mason7fde62b2010-03-16 15:40:10 -04004218
Dan Rosenberg51788b12011-02-14 16:04:23 -05004219 if (!slot_count)
4220 break;
4221
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004222 info = NULL;
4223 rcu_read_lock();
4224 list_for_each_entry_rcu(tmp, &root->fs_info->space_info,
4225 list) {
4226 if (tmp->flags == types[i]) {
4227 info = tmp;
4228 break;
4229 }
4230 }
4231 rcu_read_unlock();
Chris Mason7fde62b2010-03-16 15:40:10 -04004232
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004233 if (!info)
4234 continue;
4235 down_read(&info->groups_sem);
4236 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
4237 if (!list_empty(&info->block_groups[c])) {
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02004238 btrfs_get_block_group_info(
4239 &info->block_groups[c], &space);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004240 memcpy(dest, &space, sizeof(space));
4241 dest++;
4242 space_args.total_spaces++;
Dan Rosenberg51788b12011-02-14 16:04:23 -05004243 slot_count--;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004244 }
Dan Rosenberg51788b12011-02-14 16:04:23 -05004245 if (!slot_count)
4246 break;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004247 }
4248 up_read(&info->groups_sem);
Josef Bacik1406e432010-01-13 18:19:06 +00004249 }
Josef Bacik1406e432010-01-13 18:19:06 +00004250
David Sterba36523e952014-02-07 14:34:12 +01004251 /*
4252 * Add global block reserve
4253 */
4254 if (slot_count) {
4255 struct btrfs_block_rsv *block_rsv = &root->fs_info->global_block_rsv;
4256
4257 spin_lock(&block_rsv->lock);
4258 space.total_bytes = block_rsv->size;
4259 space.used_bytes = block_rsv->size - block_rsv->reserved;
4260 spin_unlock(&block_rsv->lock);
4261 space.flags = BTRFS_SPACE_INFO_GLOBAL_RSV;
4262 memcpy(dest, &space, sizeof(space));
4263 space_args.total_spaces++;
4264 }
4265
Daniel J Blueman2eec6c82012-04-26 00:37:14 +08004266 user_dest = (struct btrfs_ioctl_space_info __user *)
Chris Mason7fde62b2010-03-16 15:40:10 -04004267 (arg + sizeof(struct btrfs_ioctl_space_args));
4268
4269 if (copy_to_user(user_dest, dest_orig, alloc_size))
4270 ret = -EFAULT;
4271
4272 kfree(dest_orig);
4273out:
4274 if (ret == 0 && copy_to_user(arg, &space_args, sizeof(space_args)))
Josef Bacik1406e432010-01-13 18:19:06 +00004275 ret = -EFAULT;
4276
4277 return ret;
4278}
4279
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004280/*
4281 * there are many ways the trans_start and trans_end ioctls can lead
4282 * to deadlocks. They should only be used by applications that
4283 * basically own the machine, and have a very in depth understanding
4284 * of all the possible deadlocks and enospc problems.
4285 */
4286long btrfs_ioctl_trans_end(struct file *file)
4287{
Al Viro496ad9a2013-01-23 17:07:38 -05004288 struct inode *inode = file_inode(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004289 struct btrfs_root *root = BTRFS_I(inode)->root;
4290 struct btrfs_trans_handle *trans;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004291
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004292 trans = file->private_data;
Sage Weil1ab86ae2009-09-29 18:38:44 -04004293 if (!trans)
4294 return -EINVAL;
Christoph Hellwigb2141072008-09-05 16:43:31 -04004295 file->private_data = NULL;
Sage Weil9ca9ee02008-08-04 10:41:27 -04004296
Sage Weil1ab86ae2009-09-29 18:38:44 -04004297 btrfs_end_transaction(trans, root);
4298
Josef Bacika4abeea2011-04-11 17:25:13 -04004299 atomic_dec(&root->fs_info->open_ioctl_trans);
Sage Weil9ca9ee02008-08-04 10:41:27 -04004300
Al Viro2a79f172011-12-09 08:06:57 -05004301 mnt_drop_write_file(file);
Sage Weil1ab86ae2009-09-29 18:38:44 -04004302 return 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004303}
4304
Miao Xie9a8c28b2012-11-26 08:40:43 +00004305static noinline long btrfs_ioctl_start_sync(struct btrfs_root *root,
4306 void __user *argp)
Sage Weil46204592010-10-29 15:41:32 -04004307{
Sage Weil46204592010-10-29 15:41:32 -04004308 struct btrfs_trans_handle *trans;
4309 u64 transid;
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004310 int ret;
Sage Weil46204592010-10-29 15:41:32 -04004311
Miao Xied4edf392013-02-20 09:17:06 +00004312 trans = btrfs_attach_transaction_barrier(root);
Miao Xieff7c1d32012-11-26 08:41:29 +00004313 if (IS_ERR(trans)) {
4314 if (PTR_ERR(trans) != -ENOENT)
4315 return PTR_ERR(trans);
4316
4317 /* No running transaction, don't bother */
4318 transid = root->fs_info->last_trans_committed;
4319 goto out;
4320 }
Sage Weil46204592010-10-29 15:41:32 -04004321 transid = trans->transid;
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004322 ret = btrfs_commit_transaction_async(trans, root, 0);
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00004323 if (ret) {
4324 btrfs_end_transaction(trans, root);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004325 return ret;
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00004326 }
Miao Xieff7c1d32012-11-26 08:41:29 +00004327out:
Sage Weil46204592010-10-29 15:41:32 -04004328 if (argp)
4329 if (copy_to_user(argp, &transid, sizeof(transid)))
4330 return -EFAULT;
4331 return 0;
4332}
4333
Miao Xie9a8c28b2012-11-26 08:40:43 +00004334static noinline long btrfs_ioctl_wait_sync(struct btrfs_root *root,
4335 void __user *argp)
Sage Weil46204592010-10-29 15:41:32 -04004336{
Sage Weil46204592010-10-29 15:41:32 -04004337 u64 transid;
4338
4339 if (argp) {
4340 if (copy_from_user(&transid, argp, sizeof(transid)))
4341 return -EFAULT;
4342 } else {
4343 transid = 0; /* current trans */
4344 }
4345 return btrfs_wait_for_commit(root, transid);
4346}
4347
Miao Xieb8e95482012-11-26 08:48:01 +00004348static long btrfs_ioctl_scrub(struct file *file, void __user *arg)
Jan Schmidt475f6382011-03-11 15:41:01 +01004349{
Al Viro496ad9a2013-01-23 17:07:38 -05004350 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Jan Schmidt475f6382011-03-11 15:41:01 +01004351 struct btrfs_ioctl_scrub_args *sa;
Miao Xieb8e95482012-11-26 08:48:01 +00004352 int ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01004353
4354 if (!capable(CAP_SYS_ADMIN))
4355 return -EPERM;
4356
4357 sa = memdup_user(arg, sizeof(*sa));
4358 if (IS_ERR(sa))
4359 return PTR_ERR(sa);
4360
Miao Xieb8e95482012-11-26 08:48:01 +00004361 if (!(sa->flags & BTRFS_SCRUB_READONLY)) {
4362 ret = mnt_want_write_file(file);
4363 if (ret)
4364 goto out;
4365 }
4366
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01004367 ret = btrfs_scrub_dev(root->fs_info, sa->devid, sa->start, sa->end,
Stefan Behrens63a212a2012-11-05 18:29:28 +01004368 &sa->progress, sa->flags & BTRFS_SCRUB_READONLY,
4369 0);
Jan Schmidt475f6382011-03-11 15:41:01 +01004370
4371 if (copy_to_user(arg, sa, sizeof(*sa)))
4372 ret = -EFAULT;
4373
Miao Xieb8e95482012-11-26 08:48:01 +00004374 if (!(sa->flags & BTRFS_SCRUB_READONLY))
4375 mnt_drop_write_file(file);
4376out:
Jan Schmidt475f6382011-03-11 15:41:01 +01004377 kfree(sa);
4378 return ret;
4379}
4380
4381static long btrfs_ioctl_scrub_cancel(struct btrfs_root *root, void __user *arg)
4382{
4383 if (!capable(CAP_SYS_ADMIN))
4384 return -EPERM;
4385
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01004386 return btrfs_scrub_cancel(root->fs_info);
Jan Schmidt475f6382011-03-11 15:41:01 +01004387}
4388
4389static long btrfs_ioctl_scrub_progress(struct btrfs_root *root,
4390 void __user *arg)
4391{
4392 struct btrfs_ioctl_scrub_args *sa;
4393 int ret;
4394
4395 if (!capable(CAP_SYS_ADMIN))
4396 return -EPERM;
4397
4398 sa = memdup_user(arg, sizeof(*sa));
4399 if (IS_ERR(sa))
4400 return PTR_ERR(sa);
4401
4402 ret = btrfs_scrub_progress(root, sa->devid, &sa->progress);
4403
4404 if (copy_to_user(arg, sa, sizeof(*sa)))
4405 ret = -EFAULT;
4406
4407 kfree(sa);
4408 return ret;
4409}
4410
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004411static long btrfs_ioctl_get_dev_stats(struct btrfs_root *root,
David Sterbab27f7c02012-06-22 06:30:39 -06004412 void __user *arg)
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004413{
4414 struct btrfs_ioctl_get_dev_stats *sa;
4415 int ret;
4416
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004417 sa = memdup_user(arg, sizeof(*sa));
4418 if (IS_ERR(sa))
4419 return PTR_ERR(sa);
4420
David Sterbab27f7c02012-06-22 06:30:39 -06004421 if ((sa->flags & BTRFS_DEV_STATS_RESET) && !capable(CAP_SYS_ADMIN)) {
4422 kfree(sa);
4423 return -EPERM;
4424 }
4425
4426 ret = btrfs_get_dev_stats(root, sa);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004427
4428 if (copy_to_user(arg, sa, sizeof(*sa)))
4429 ret = -EFAULT;
4430
4431 kfree(sa);
4432 return ret;
4433}
4434
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004435static long btrfs_ioctl_dev_replace(struct btrfs_root *root, void __user *arg)
4436{
4437 struct btrfs_ioctl_dev_replace_args *p;
4438 int ret;
4439
4440 if (!capable(CAP_SYS_ADMIN))
4441 return -EPERM;
4442
4443 p = memdup_user(arg, sizeof(*p));
4444 if (IS_ERR(p))
4445 return PTR_ERR(p);
4446
4447 switch (p->cmd) {
4448 case BTRFS_IOCTL_DEV_REPLACE_CMD_START:
Ilya Dryomovadfa97c2013-10-10 20:39:28 +03004449 if (root->fs_info->sb->s_flags & MS_RDONLY) {
4450 ret = -EROFS;
4451 goto out;
4452 }
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004453 if (atomic_xchg(
4454 &root->fs_info->mutually_exclusive_operation_running,
4455 1)) {
Anand Jaine57138b2013-08-21 11:44:48 +08004456 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004457 } else {
4458 ret = btrfs_dev_replace_start(root, p);
4459 atomic_set(
4460 &root->fs_info->mutually_exclusive_operation_running,
4461 0);
4462 }
4463 break;
4464 case BTRFS_IOCTL_DEV_REPLACE_CMD_STATUS:
4465 btrfs_dev_replace_status(root->fs_info, p);
4466 ret = 0;
4467 break;
4468 case BTRFS_IOCTL_DEV_REPLACE_CMD_CANCEL:
4469 ret = btrfs_dev_replace_cancel(root->fs_info, p);
4470 break;
4471 default:
4472 ret = -EINVAL;
4473 break;
4474 }
4475
4476 if (copy_to_user(arg, p, sizeof(*p)))
4477 ret = -EFAULT;
Ilya Dryomovadfa97c2013-10-10 20:39:28 +03004478out:
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004479 kfree(p);
4480 return ret;
4481}
4482
Jan Schmidtd7728c92011-07-07 16:48:38 +02004483static long btrfs_ioctl_ino_to_path(struct btrfs_root *root, void __user *arg)
4484{
4485 int ret = 0;
4486 int i;
Chris Mason740c3d22011-11-02 15:48:34 -04004487 u64 rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004488 int size;
Chris Mason806468f2011-11-06 03:07:10 -05004489 struct btrfs_ioctl_ino_path_args *ipa = NULL;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004490 struct inode_fs_paths *ipath = NULL;
4491 struct btrfs_path *path;
4492
Kusanagi Kouichi82b22ac2013-01-28 11:33:31 +00004493 if (!capable(CAP_DAC_READ_SEARCH))
Jan Schmidtd7728c92011-07-07 16:48:38 +02004494 return -EPERM;
4495
4496 path = btrfs_alloc_path();
4497 if (!path) {
4498 ret = -ENOMEM;
4499 goto out;
4500 }
4501
4502 ipa = memdup_user(arg, sizeof(*ipa));
4503 if (IS_ERR(ipa)) {
4504 ret = PTR_ERR(ipa);
4505 ipa = NULL;
4506 goto out;
4507 }
4508
4509 size = min_t(u32, ipa->size, 4096);
4510 ipath = init_ipath(size, root, path);
4511 if (IS_ERR(ipath)) {
4512 ret = PTR_ERR(ipath);
4513 ipath = NULL;
4514 goto out;
4515 }
4516
4517 ret = paths_from_inode(ipa->inum, ipath);
4518 if (ret < 0)
4519 goto out;
4520
4521 for (i = 0; i < ipath->fspath->elem_cnt; ++i) {
Jeff Mahoney745c4d82011-11-20 07:31:57 -05004522 rel_ptr = ipath->fspath->val[i] -
4523 (u64)(unsigned long)ipath->fspath->val;
Chris Mason740c3d22011-11-02 15:48:34 -04004524 ipath->fspath->val[i] = rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004525 }
4526
Jeff Mahoney745c4d82011-11-20 07:31:57 -05004527 ret = copy_to_user((void *)(unsigned long)ipa->fspath,
4528 (void *)(unsigned long)ipath->fspath, size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004529 if (ret) {
4530 ret = -EFAULT;
4531 goto out;
4532 }
4533
4534out:
4535 btrfs_free_path(path);
4536 free_ipath(ipath);
4537 kfree(ipa);
4538
4539 return ret;
4540}
4541
4542static int build_ino_list(u64 inum, u64 offset, u64 root, void *ctx)
4543{
4544 struct btrfs_data_container *inodes = ctx;
4545 const size_t c = 3 * sizeof(u64);
4546
4547 if (inodes->bytes_left >= c) {
4548 inodes->bytes_left -= c;
4549 inodes->val[inodes->elem_cnt] = inum;
4550 inodes->val[inodes->elem_cnt + 1] = offset;
4551 inodes->val[inodes->elem_cnt + 2] = root;
4552 inodes->elem_cnt += 3;
4553 } else {
4554 inodes->bytes_missing += c - inodes->bytes_left;
4555 inodes->bytes_left = 0;
4556 inodes->elem_missed += 3;
4557 }
4558
4559 return 0;
4560}
4561
4562static long btrfs_ioctl_logical_to_ino(struct btrfs_root *root,
4563 void __user *arg)
4564{
4565 int ret = 0;
4566 int size;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004567 struct btrfs_ioctl_logical_ino_args *loi;
4568 struct btrfs_data_container *inodes = NULL;
4569 struct btrfs_path *path = NULL;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004570
4571 if (!capable(CAP_SYS_ADMIN))
4572 return -EPERM;
4573
4574 loi = memdup_user(arg, sizeof(*loi));
4575 if (IS_ERR(loi)) {
4576 ret = PTR_ERR(loi);
4577 loi = NULL;
4578 goto out;
4579 }
4580
4581 path = btrfs_alloc_path();
4582 if (!path) {
4583 ret = -ENOMEM;
4584 goto out;
4585 }
4586
Liu Bo425d17a2012-09-07 20:01:30 -06004587 size = min_t(u32, loi->size, 64 * 1024);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004588 inodes = init_data_container(size);
4589 if (IS_ERR(inodes)) {
4590 ret = PTR_ERR(inodes);
4591 inodes = NULL;
4592 goto out;
4593 }
4594
Liu Bodf031f02012-09-07 20:01:29 -06004595 ret = iterate_inodes_from_logical(loi->logical, root->fs_info, path,
4596 build_ino_list, inodes);
4597 if (ret == -EINVAL)
Jan Schmidtd7728c92011-07-07 16:48:38 +02004598 ret = -ENOENT;
4599 if (ret < 0)
4600 goto out;
4601
Jeff Mahoney745c4d82011-11-20 07:31:57 -05004602 ret = copy_to_user((void *)(unsigned long)loi->inodes,
4603 (void *)(unsigned long)inodes, size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004604 if (ret)
4605 ret = -EFAULT;
4606
4607out:
4608 btrfs_free_path(path);
Liu Bo425d17a2012-09-07 20:01:30 -06004609 vfree(inodes);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004610 kfree(loi);
4611
4612 return ret;
4613}
4614
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004615void update_ioctl_balance_args(struct btrfs_fs_info *fs_info, int lock,
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004616 struct btrfs_ioctl_balance_args *bargs)
4617{
4618 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
4619
4620 bargs->flags = bctl->flags;
4621
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004622 if (atomic_read(&fs_info->balance_running))
4623 bargs->state |= BTRFS_BALANCE_STATE_RUNNING;
4624 if (atomic_read(&fs_info->balance_pause_req))
4625 bargs->state |= BTRFS_BALANCE_STATE_PAUSE_REQ;
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004626 if (atomic_read(&fs_info->balance_cancel_req))
4627 bargs->state |= BTRFS_BALANCE_STATE_CANCEL_REQ;
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004628
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004629 memcpy(&bargs->data, &bctl->data, sizeof(bargs->data));
4630 memcpy(&bargs->meta, &bctl->meta, sizeof(bargs->meta));
4631 memcpy(&bargs->sys, &bctl->sys, sizeof(bargs->sys));
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004632
4633 if (lock) {
4634 spin_lock(&fs_info->balance_lock);
4635 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
4636 spin_unlock(&fs_info->balance_lock);
4637 } else {
4638 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
4639 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004640}
4641
Liu Bo9ba1f6e2012-05-11 18:11:26 +08004642static long btrfs_ioctl_balance(struct file *file, void __user *arg)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004643{
Al Viro496ad9a2013-01-23 17:07:38 -05004644 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004645 struct btrfs_fs_info *fs_info = root->fs_info;
4646 struct btrfs_ioctl_balance_args *bargs;
4647 struct btrfs_balance_control *bctl;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004648 bool need_unlock; /* for mut. excl. ops lock */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004649 int ret;
4650
4651 if (!capable(CAP_SYS_ADMIN))
4652 return -EPERM;
4653
Liu Boe54bfa312012-06-29 03:58:48 -06004654 ret = mnt_want_write_file(file);
Liu Bo9ba1f6e2012-05-11 18:11:26 +08004655 if (ret)
4656 return ret;
4657
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004658again:
4659 if (!atomic_xchg(&fs_info->mutually_exclusive_operation_running, 1)) {
4660 mutex_lock(&fs_info->volume_mutex);
4661 mutex_lock(&fs_info->balance_mutex);
4662 need_unlock = true;
4663 goto locked;
4664 }
4665
4666 /*
4667 * mut. excl. ops lock is locked. Three possibilites:
4668 * (1) some other op is running
4669 * (2) balance is running
4670 * (3) balance is paused -- special case (think resume)
4671 */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004672 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004673 if (fs_info->balance_ctl) {
4674 /* this is either (2) or (3) */
4675 if (!atomic_read(&fs_info->balance_running)) {
4676 mutex_unlock(&fs_info->balance_mutex);
4677 if (!mutex_trylock(&fs_info->volume_mutex))
4678 goto again;
4679 mutex_lock(&fs_info->balance_mutex);
4680
4681 if (fs_info->balance_ctl &&
4682 !atomic_read(&fs_info->balance_running)) {
4683 /* this is (3) */
4684 need_unlock = false;
4685 goto locked;
4686 }
4687
4688 mutex_unlock(&fs_info->balance_mutex);
4689 mutex_unlock(&fs_info->volume_mutex);
4690 goto again;
4691 } else {
4692 /* this is (2) */
4693 mutex_unlock(&fs_info->balance_mutex);
4694 ret = -EINPROGRESS;
4695 goto out;
4696 }
4697 } else {
4698 /* this is (1) */
4699 mutex_unlock(&fs_info->balance_mutex);
Anand Jaine57138b2013-08-21 11:44:48 +08004700 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004701 goto out;
4702 }
4703
4704locked:
4705 BUG_ON(!atomic_read(&fs_info->mutually_exclusive_operation_running));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004706
4707 if (arg) {
4708 bargs = memdup_user(arg, sizeof(*bargs));
4709 if (IS_ERR(bargs)) {
4710 ret = PTR_ERR(bargs);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004711 goto out_unlock;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004712 }
Ilya Dryomovde322262012-01-16 22:04:49 +02004713
4714 if (bargs->flags & BTRFS_BALANCE_RESUME) {
4715 if (!fs_info->balance_ctl) {
4716 ret = -ENOTCONN;
4717 goto out_bargs;
4718 }
4719
4720 bctl = fs_info->balance_ctl;
4721 spin_lock(&fs_info->balance_lock);
4722 bctl->flags |= BTRFS_BALANCE_RESUME;
4723 spin_unlock(&fs_info->balance_lock);
4724
4725 goto do_balance;
4726 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004727 } else {
4728 bargs = NULL;
4729 }
4730
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004731 if (fs_info->balance_ctl) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004732 ret = -EINPROGRESS;
4733 goto out_bargs;
4734 }
4735
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004736 bctl = kzalloc(sizeof(*bctl), GFP_NOFS);
4737 if (!bctl) {
4738 ret = -ENOMEM;
4739 goto out_bargs;
4740 }
4741
4742 bctl->fs_info = fs_info;
4743 if (arg) {
4744 memcpy(&bctl->data, &bargs->data, sizeof(bctl->data));
4745 memcpy(&bctl->meta, &bargs->meta, sizeof(bctl->meta));
4746 memcpy(&bctl->sys, &bargs->sys, sizeof(bctl->sys));
4747
4748 bctl->flags = bargs->flags;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02004749 } else {
4750 /* balance everything - no filters */
4751 bctl->flags |= BTRFS_BALANCE_TYPE_MASK;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004752 }
4753
Ilya Dryomovde322262012-01-16 22:04:49 +02004754do_balance:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004755 /*
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004756 * Ownership of bctl and mutually_exclusive_operation_running
4757 * goes to to btrfs_balance. bctl is freed in __cancel_balance,
4758 * or, if restriper was paused all the way until unmount, in
4759 * free_fs_info. mutually_exclusive_operation_running is
4760 * cleared in __cancel_balance.
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004761 */
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004762 need_unlock = false;
4763
4764 ret = btrfs_balance(bctl, bargs);
4765
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004766 if (arg) {
4767 if (copy_to_user(arg, bargs, sizeof(*bargs)))
4768 ret = -EFAULT;
4769 }
4770
4771out_bargs:
4772 kfree(bargs);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004773out_unlock:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004774 mutex_unlock(&fs_info->balance_mutex);
4775 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004776 if (need_unlock)
4777 atomic_set(&fs_info->mutually_exclusive_operation_running, 0);
4778out:
Liu Boe54bfa312012-06-29 03:58:48 -06004779 mnt_drop_write_file(file);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004780 return ret;
4781}
4782
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004783static long btrfs_ioctl_balance_ctl(struct btrfs_root *root, int cmd)
4784{
4785 if (!capable(CAP_SYS_ADMIN))
4786 return -EPERM;
4787
4788 switch (cmd) {
4789 case BTRFS_BALANCE_CTL_PAUSE:
4790 return btrfs_pause_balance(root->fs_info);
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004791 case BTRFS_BALANCE_CTL_CANCEL:
4792 return btrfs_cancel_balance(root->fs_info);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004793 }
4794
4795 return -EINVAL;
4796}
4797
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004798static long btrfs_ioctl_balance_progress(struct btrfs_root *root,
4799 void __user *arg)
4800{
4801 struct btrfs_fs_info *fs_info = root->fs_info;
4802 struct btrfs_ioctl_balance_args *bargs;
4803 int ret = 0;
4804
4805 if (!capable(CAP_SYS_ADMIN))
4806 return -EPERM;
4807
4808 mutex_lock(&fs_info->balance_mutex);
4809 if (!fs_info->balance_ctl) {
4810 ret = -ENOTCONN;
4811 goto out;
4812 }
4813
4814 bargs = kzalloc(sizeof(*bargs), GFP_NOFS);
4815 if (!bargs) {
4816 ret = -ENOMEM;
4817 goto out;
4818 }
4819
4820 update_ioctl_balance_args(fs_info, 1, bargs);
4821
4822 if (copy_to_user(arg, bargs, sizeof(*bargs)))
4823 ret = -EFAULT;
4824
4825 kfree(bargs);
4826out:
4827 mutex_unlock(&fs_info->balance_mutex);
4828 return ret;
4829}
4830
Miao Xie905b0dd2012-11-26 08:50:11 +00004831static long btrfs_ioctl_quota_ctl(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004832{
Al Viro496ad9a2013-01-23 17:07:38 -05004833 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004834 struct btrfs_ioctl_quota_ctl_args *sa;
4835 struct btrfs_trans_handle *trans = NULL;
4836 int ret;
4837 int err;
4838
4839 if (!capable(CAP_SYS_ADMIN))
4840 return -EPERM;
4841
Miao Xie905b0dd2012-11-26 08:50:11 +00004842 ret = mnt_want_write_file(file);
4843 if (ret)
4844 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004845
4846 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004847 if (IS_ERR(sa)) {
4848 ret = PTR_ERR(sa);
4849 goto drop_write;
4850 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004851
Wang Shilong7708f022013-04-07 10:24:57 +00004852 down_write(&root->fs_info->subvol_sem);
Jan Schmidt2f232032013-04-25 16:04:51 +00004853 trans = btrfs_start_transaction(root->fs_info->tree_root, 2);
4854 if (IS_ERR(trans)) {
4855 ret = PTR_ERR(trans);
4856 goto out;
Arne Jansen5d13a372011-09-14 15:53:51 +02004857 }
4858
4859 switch (sa->cmd) {
4860 case BTRFS_QUOTA_CTL_ENABLE:
4861 ret = btrfs_quota_enable(trans, root->fs_info);
4862 break;
4863 case BTRFS_QUOTA_CTL_DISABLE:
4864 ret = btrfs_quota_disable(trans, root->fs_info);
4865 break;
Arne Jansen5d13a372011-09-14 15:53:51 +02004866 default:
4867 ret = -EINVAL;
4868 break;
4869 }
4870
Jan Schmidt2f232032013-04-25 16:04:51 +00004871 err = btrfs_commit_transaction(trans, root->fs_info->tree_root);
4872 if (err && !ret)
4873 ret = err;
Arne Jansen5d13a372011-09-14 15:53:51 +02004874out:
4875 kfree(sa);
Wang Shilong7708f022013-04-07 10:24:57 +00004876 up_write(&root->fs_info->subvol_sem);
Miao Xie905b0dd2012-11-26 08:50:11 +00004877drop_write:
4878 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004879 return ret;
4880}
4881
Miao Xie905b0dd2012-11-26 08:50:11 +00004882static long btrfs_ioctl_qgroup_assign(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004883{
Al Viro496ad9a2013-01-23 17:07:38 -05004884 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004885 struct btrfs_ioctl_qgroup_assign_args *sa;
4886 struct btrfs_trans_handle *trans;
4887 int ret;
4888 int err;
4889
4890 if (!capable(CAP_SYS_ADMIN))
4891 return -EPERM;
4892
Miao Xie905b0dd2012-11-26 08:50:11 +00004893 ret = mnt_want_write_file(file);
4894 if (ret)
4895 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004896
4897 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004898 if (IS_ERR(sa)) {
4899 ret = PTR_ERR(sa);
4900 goto drop_write;
4901 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004902
4903 trans = btrfs_join_transaction(root);
4904 if (IS_ERR(trans)) {
4905 ret = PTR_ERR(trans);
4906 goto out;
4907 }
4908
4909 /* FIXME: check if the IDs really exist */
4910 if (sa->assign) {
4911 ret = btrfs_add_qgroup_relation(trans, root->fs_info,
4912 sa->src, sa->dst);
4913 } else {
4914 ret = btrfs_del_qgroup_relation(trans, root->fs_info,
4915 sa->src, sa->dst);
4916 }
4917
Qu Wenruoe082f562015-02-27 16:24:28 +08004918 /* update qgroup status and info */
4919 err = btrfs_run_qgroups(trans, root->fs_info);
4920 if (err < 0)
Anand Jaina4553fe2015-09-25 14:43:01 +08004921 btrfs_std_error(root->fs_info, ret,
Qu Wenruoe082f562015-02-27 16:24:28 +08004922 "failed to update qgroup status and info\n");
Arne Jansen5d13a372011-09-14 15:53:51 +02004923 err = btrfs_end_transaction(trans, root);
4924 if (err && !ret)
4925 ret = err;
4926
4927out:
4928 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004929drop_write:
4930 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004931 return ret;
4932}
4933
Miao Xie905b0dd2012-11-26 08:50:11 +00004934static long btrfs_ioctl_qgroup_create(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004935{
Al Viro496ad9a2013-01-23 17:07:38 -05004936 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004937 struct btrfs_ioctl_qgroup_create_args *sa;
4938 struct btrfs_trans_handle *trans;
4939 int ret;
4940 int err;
4941
4942 if (!capable(CAP_SYS_ADMIN))
4943 return -EPERM;
4944
Miao Xie905b0dd2012-11-26 08:50:11 +00004945 ret = mnt_want_write_file(file);
4946 if (ret)
4947 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004948
4949 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004950 if (IS_ERR(sa)) {
4951 ret = PTR_ERR(sa);
4952 goto drop_write;
4953 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004954
Miao Xied86e56c2012-11-15 11:35:41 +00004955 if (!sa->qgroupid) {
4956 ret = -EINVAL;
4957 goto out;
4958 }
4959
Arne Jansen5d13a372011-09-14 15:53:51 +02004960 trans = btrfs_join_transaction(root);
4961 if (IS_ERR(trans)) {
4962 ret = PTR_ERR(trans);
4963 goto out;
4964 }
4965
4966 /* FIXME: check if the IDs really exist */
4967 if (sa->create) {
Dongsheng Yang4087cf22015-01-18 10:59:23 -05004968 ret = btrfs_create_qgroup(trans, root->fs_info, sa->qgroupid);
Arne Jansen5d13a372011-09-14 15:53:51 +02004969 } else {
4970 ret = btrfs_remove_qgroup(trans, root->fs_info, sa->qgroupid);
4971 }
4972
4973 err = btrfs_end_transaction(trans, root);
4974 if (err && !ret)
4975 ret = err;
4976
4977out:
4978 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004979drop_write:
4980 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004981 return ret;
4982}
4983
Miao Xie905b0dd2012-11-26 08:50:11 +00004984static long btrfs_ioctl_qgroup_limit(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004985{
Al Viro496ad9a2013-01-23 17:07:38 -05004986 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004987 struct btrfs_ioctl_qgroup_limit_args *sa;
4988 struct btrfs_trans_handle *trans;
4989 int ret;
4990 int err;
4991 u64 qgroupid;
4992
4993 if (!capable(CAP_SYS_ADMIN))
4994 return -EPERM;
4995
Miao Xie905b0dd2012-11-26 08:50:11 +00004996 ret = mnt_want_write_file(file);
4997 if (ret)
4998 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004999
5000 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00005001 if (IS_ERR(sa)) {
5002 ret = PTR_ERR(sa);
5003 goto drop_write;
5004 }
Arne Jansen5d13a372011-09-14 15:53:51 +02005005
5006 trans = btrfs_join_transaction(root);
5007 if (IS_ERR(trans)) {
5008 ret = PTR_ERR(trans);
5009 goto out;
5010 }
5011
5012 qgroupid = sa->qgroupid;
5013 if (!qgroupid) {
5014 /* take the current subvol as qgroup */
5015 qgroupid = root->root_key.objectid;
5016 }
5017
5018 /* FIXME: check if the IDs really exist */
5019 ret = btrfs_limit_qgroup(trans, root->fs_info, qgroupid, &sa->lim);
5020
5021 err = btrfs_end_transaction(trans, root);
5022 if (err && !ret)
5023 ret = err;
5024
5025out:
5026 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00005027drop_write:
5028 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02005029 return ret;
5030}
5031
Jan Schmidt2f232032013-04-25 16:04:51 +00005032static long btrfs_ioctl_quota_rescan(struct file *file, void __user *arg)
5033{
Al Viro6d0379e2013-06-16 19:32:35 +04005034 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Jan Schmidt2f232032013-04-25 16:04:51 +00005035 struct btrfs_ioctl_quota_rescan_args *qsa;
5036 int ret;
5037
5038 if (!capable(CAP_SYS_ADMIN))
5039 return -EPERM;
5040
5041 ret = mnt_want_write_file(file);
5042 if (ret)
5043 return ret;
5044
5045 qsa = memdup_user(arg, sizeof(*qsa));
5046 if (IS_ERR(qsa)) {
5047 ret = PTR_ERR(qsa);
5048 goto drop_write;
5049 }
5050
5051 if (qsa->flags) {
5052 ret = -EINVAL;
5053 goto out;
5054 }
5055
5056 ret = btrfs_qgroup_rescan(root->fs_info);
5057
5058out:
5059 kfree(qsa);
5060drop_write:
5061 mnt_drop_write_file(file);
5062 return ret;
5063}
5064
5065static long btrfs_ioctl_quota_rescan_status(struct file *file, void __user *arg)
5066{
Al Viro6d0379e2013-06-16 19:32:35 +04005067 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Jan Schmidt2f232032013-04-25 16:04:51 +00005068 struct btrfs_ioctl_quota_rescan_args *qsa;
5069 int ret = 0;
5070
5071 if (!capable(CAP_SYS_ADMIN))
5072 return -EPERM;
5073
5074 qsa = kzalloc(sizeof(*qsa), GFP_NOFS);
5075 if (!qsa)
5076 return -ENOMEM;
5077
5078 if (root->fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_RESCAN) {
5079 qsa->flags = 1;
5080 qsa->progress = root->fs_info->qgroup_rescan_progress.objectid;
5081 }
5082
5083 if (copy_to_user(arg, qsa, sizeof(*qsa)))
5084 ret = -EFAULT;
5085
5086 kfree(qsa);
5087 return ret;
5088}
5089
Jan Schmidt57254b6e2013-05-06 19:14:17 +00005090static long btrfs_ioctl_quota_rescan_wait(struct file *file, void __user *arg)
5091{
Al Viro54563d42013-09-01 15:57:51 -04005092 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Jan Schmidt57254b6e2013-05-06 19:14:17 +00005093
5094 if (!capable(CAP_SYS_ADMIN))
5095 return -EPERM;
5096
5097 return btrfs_qgroup_wait_for_completion(root->fs_info);
5098}
5099
Hugo Millsabccd002014-01-30 20:17:00 +00005100static long _btrfs_ioctl_set_received_subvol(struct file *file,
5101 struct btrfs_ioctl_received_subvol_args *sa)
Alexander Block8ea05e32012-07-25 17:35:53 +02005102{
Al Viro496ad9a2013-01-23 17:07:38 -05005103 struct inode *inode = file_inode(file);
Alexander Block8ea05e32012-07-25 17:35:53 +02005104 struct btrfs_root *root = BTRFS_I(inode)->root;
5105 struct btrfs_root_item *root_item = &root->root_item;
5106 struct btrfs_trans_handle *trans;
5107 struct timespec ct = CURRENT_TIME;
5108 int ret = 0;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005109 int received_uuid_changed;
Alexander Block8ea05e32012-07-25 17:35:53 +02005110
David Sterbabd60ea02014-01-16 15:50:22 +01005111 if (!inode_owner_or_capable(inode))
5112 return -EPERM;
5113
Alexander Block8ea05e32012-07-25 17:35:53 +02005114 ret = mnt_want_write_file(file);
5115 if (ret < 0)
5116 return ret;
5117
5118 down_write(&root->fs_info->subvol_sem);
5119
5120 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
5121 ret = -EINVAL;
5122 goto out;
5123 }
5124
5125 if (btrfs_root_readonly(root)) {
5126 ret = -EROFS;
5127 goto out;
5128 }
5129
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005130 /*
5131 * 1 - root item
5132 * 2 - uuid items (received uuid + subvol uuid)
5133 */
5134 trans = btrfs_start_transaction(root, 3);
Alexander Block8ea05e32012-07-25 17:35:53 +02005135 if (IS_ERR(trans)) {
5136 ret = PTR_ERR(trans);
5137 trans = NULL;
5138 goto out;
5139 }
5140
5141 sa->rtransid = trans->transid;
5142 sa->rtime.sec = ct.tv_sec;
5143 sa->rtime.nsec = ct.tv_nsec;
5144
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005145 received_uuid_changed = memcmp(root_item->received_uuid, sa->uuid,
5146 BTRFS_UUID_SIZE);
5147 if (received_uuid_changed &&
5148 !btrfs_is_empty_uuid(root_item->received_uuid))
5149 btrfs_uuid_tree_rem(trans, root->fs_info->uuid_root,
5150 root_item->received_uuid,
5151 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
5152 root->root_key.objectid);
Alexander Block8ea05e32012-07-25 17:35:53 +02005153 memcpy(root_item->received_uuid, sa->uuid, BTRFS_UUID_SIZE);
5154 btrfs_set_root_stransid(root_item, sa->stransid);
5155 btrfs_set_root_rtransid(root_item, sa->rtransid);
Qu Wenruo3cae2102013-07-16 11:19:18 +08005156 btrfs_set_stack_timespec_sec(&root_item->stime, sa->stime.sec);
5157 btrfs_set_stack_timespec_nsec(&root_item->stime, sa->stime.nsec);
5158 btrfs_set_stack_timespec_sec(&root_item->rtime, sa->rtime.sec);
5159 btrfs_set_stack_timespec_nsec(&root_item->rtime, sa->rtime.nsec);
Alexander Block8ea05e32012-07-25 17:35:53 +02005160
5161 ret = btrfs_update_root(trans, root->fs_info->tree_root,
5162 &root->root_key, &root->root_item);
5163 if (ret < 0) {
5164 btrfs_end_transaction(trans, root);
Alexander Block8ea05e32012-07-25 17:35:53 +02005165 goto out;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005166 }
5167 if (received_uuid_changed && !btrfs_is_empty_uuid(sa->uuid)) {
5168 ret = btrfs_uuid_tree_add(trans, root->fs_info->uuid_root,
5169 sa->uuid,
5170 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
5171 root->root_key.objectid);
5172 if (ret < 0 && ret != -EEXIST) {
5173 btrfs_abort_transaction(trans, root, ret);
Alexander Block8ea05e32012-07-25 17:35:53 +02005174 goto out;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005175 }
5176 }
5177 ret = btrfs_commit_transaction(trans, root);
5178 if (ret < 0) {
5179 btrfs_abort_transaction(trans, root, ret);
5180 goto out;
Alexander Block8ea05e32012-07-25 17:35:53 +02005181 }
5182
Hugo Millsabccd002014-01-30 20:17:00 +00005183out:
5184 up_write(&root->fs_info->subvol_sem);
5185 mnt_drop_write_file(file);
5186 return ret;
5187}
5188
5189#ifdef CONFIG_64BIT
5190static long btrfs_ioctl_set_received_subvol_32(struct file *file,
5191 void __user *arg)
5192{
5193 struct btrfs_ioctl_received_subvol_args_32 *args32 = NULL;
5194 struct btrfs_ioctl_received_subvol_args *args64 = NULL;
5195 int ret = 0;
5196
5197 args32 = memdup_user(arg, sizeof(*args32));
5198 if (IS_ERR(args32)) {
5199 ret = PTR_ERR(args32);
5200 args32 = NULL;
5201 goto out;
5202 }
5203
5204 args64 = kmalloc(sizeof(*args64), GFP_NOFS);
Dan Carpenter84dbeb82014-03-28 11:06:00 +03005205 if (!args64) {
5206 ret = -ENOMEM;
Hugo Millsabccd002014-01-30 20:17:00 +00005207 goto out;
5208 }
5209
5210 memcpy(args64->uuid, args32->uuid, BTRFS_UUID_SIZE);
5211 args64->stransid = args32->stransid;
5212 args64->rtransid = args32->rtransid;
5213 args64->stime.sec = args32->stime.sec;
5214 args64->stime.nsec = args32->stime.nsec;
5215 args64->rtime.sec = args32->rtime.sec;
5216 args64->rtime.nsec = args32->rtime.nsec;
5217 args64->flags = args32->flags;
5218
5219 ret = _btrfs_ioctl_set_received_subvol(file, args64);
5220 if (ret)
5221 goto out;
5222
5223 memcpy(args32->uuid, args64->uuid, BTRFS_UUID_SIZE);
5224 args32->stransid = args64->stransid;
5225 args32->rtransid = args64->rtransid;
5226 args32->stime.sec = args64->stime.sec;
5227 args32->stime.nsec = args64->stime.nsec;
5228 args32->rtime.sec = args64->rtime.sec;
5229 args32->rtime.nsec = args64->rtime.nsec;
5230 args32->flags = args64->flags;
5231
5232 ret = copy_to_user(arg, args32, sizeof(*args32));
5233 if (ret)
5234 ret = -EFAULT;
5235
5236out:
5237 kfree(args32);
5238 kfree(args64);
5239 return ret;
5240}
5241#endif
5242
5243static long btrfs_ioctl_set_received_subvol(struct file *file,
5244 void __user *arg)
5245{
5246 struct btrfs_ioctl_received_subvol_args *sa = NULL;
5247 int ret = 0;
5248
5249 sa = memdup_user(arg, sizeof(*sa));
5250 if (IS_ERR(sa)) {
5251 ret = PTR_ERR(sa);
5252 sa = NULL;
5253 goto out;
5254 }
5255
5256 ret = _btrfs_ioctl_set_received_subvol(file, sa);
5257
5258 if (ret)
5259 goto out;
5260
Alexander Block8ea05e32012-07-25 17:35:53 +02005261 ret = copy_to_user(arg, sa, sizeof(*sa));
5262 if (ret)
5263 ret = -EFAULT;
5264
5265out:
5266 kfree(sa);
Alexander Block8ea05e32012-07-25 17:35:53 +02005267 return ret;
5268}
5269
jeff.liu867ab662013-01-05 02:48:01 +00005270static int btrfs_ioctl_get_fslabel(struct file *file, void __user *arg)
5271{
Al Viro6d0379e2013-06-16 19:32:35 +04005272 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Anand Jaina1b83ac2013-07-19 17:39:32 +08005273 size_t len;
jeff.liu867ab662013-01-05 02:48:01 +00005274 int ret;
Anand Jaina1b83ac2013-07-19 17:39:32 +08005275 char label[BTRFS_LABEL_SIZE];
5276
5277 spin_lock(&root->fs_info->super_lock);
5278 memcpy(label, root->fs_info->super_copy->label, BTRFS_LABEL_SIZE);
5279 spin_unlock(&root->fs_info->super_lock);
5280
5281 len = strnlen(label, BTRFS_LABEL_SIZE);
jeff.liu867ab662013-01-05 02:48:01 +00005282
5283 if (len == BTRFS_LABEL_SIZE) {
Frank Holtonefe120a2013-12-20 11:37:06 -05005284 btrfs_warn(root->fs_info,
5285 "label is too long, return the first %zu bytes", --len);
jeff.liu867ab662013-01-05 02:48:01 +00005286 }
5287
jeff.liu867ab662013-01-05 02:48:01 +00005288 ret = copy_to_user(arg, label, len);
jeff.liu867ab662013-01-05 02:48:01 +00005289
5290 return ret ? -EFAULT : 0;
5291}
5292
jeff.liua8bfd4a2013-01-05 02:48:08 +00005293static int btrfs_ioctl_set_fslabel(struct file *file, void __user *arg)
5294{
Al Viro6d0379e2013-06-16 19:32:35 +04005295 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
jeff.liua8bfd4a2013-01-05 02:48:08 +00005296 struct btrfs_super_block *super_block = root->fs_info->super_copy;
5297 struct btrfs_trans_handle *trans;
5298 char label[BTRFS_LABEL_SIZE];
5299 int ret;
5300
5301 if (!capable(CAP_SYS_ADMIN))
5302 return -EPERM;
5303
5304 if (copy_from_user(label, arg, sizeof(label)))
5305 return -EFAULT;
5306
5307 if (strnlen(label, BTRFS_LABEL_SIZE) == BTRFS_LABEL_SIZE) {
Frank Holtonefe120a2013-12-20 11:37:06 -05005308 btrfs_err(root->fs_info, "unable to set label with more than %d bytes",
jeff.liua8bfd4a2013-01-05 02:48:08 +00005309 BTRFS_LABEL_SIZE - 1);
5310 return -EINVAL;
5311 }
5312
5313 ret = mnt_want_write_file(file);
5314 if (ret)
5315 return ret;
5316
jeff.liua8bfd4a2013-01-05 02:48:08 +00005317 trans = btrfs_start_transaction(root, 0);
5318 if (IS_ERR(trans)) {
5319 ret = PTR_ERR(trans);
5320 goto out_unlock;
5321 }
5322
Anand Jaina1b83ac2013-07-19 17:39:32 +08005323 spin_lock(&root->fs_info->super_lock);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005324 strcpy(super_block->label, label);
Anand Jaina1b83ac2013-07-19 17:39:32 +08005325 spin_unlock(&root->fs_info->super_lock);
Jeff Mahoneyd0270ac2014-02-07 14:33:57 +01005326 ret = btrfs_commit_transaction(trans, root);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005327
5328out_unlock:
jeff.liua8bfd4a2013-01-05 02:48:08 +00005329 mnt_drop_write_file(file);
5330 return ret;
5331}
5332
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005333#define INIT_FEATURE_FLAGS(suffix) \
5334 { .compat_flags = BTRFS_FEATURE_COMPAT_##suffix, \
5335 .compat_ro_flags = BTRFS_FEATURE_COMPAT_RO_##suffix, \
5336 .incompat_flags = BTRFS_FEATURE_INCOMPAT_##suffix }
5337
5338static int btrfs_ioctl_get_supported_features(struct file *file,
5339 void __user *arg)
5340{
5341 static struct btrfs_ioctl_feature_flags features[3] = {
5342 INIT_FEATURE_FLAGS(SUPP),
5343 INIT_FEATURE_FLAGS(SAFE_SET),
5344 INIT_FEATURE_FLAGS(SAFE_CLEAR)
5345 };
5346
5347 if (copy_to_user(arg, &features, sizeof(features)))
5348 return -EFAULT;
5349
5350 return 0;
5351}
5352
5353static int btrfs_ioctl_get_features(struct file *file, void __user *arg)
5354{
5355 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
5356 struct btrfs_super_block *super_block = root->fs_info->super_copy;
5357 struct btrfs_ioctl_feature_flags features;
5358
5359 features.compat_flags = btrfs_super_compat_flags(super_block);
5360 features.compat_ro_flags = btrfs_super_compat_ro_flags(super_block);
5361 features.incompat_flags = btrfs_super_incompat_flags(super_block);
5362
5363 if (copy_to_user(arg, &features, sizeof(features)))
5364 return -EFAULT;
5365
5366 return 0;
5367}
5368
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005369static int check_feature_bits(struct btrfs_root *root,
5370 enum btrfs_feature_set set,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005371 u64 change_mask, u64 flags, u64 supported_flags,
5372 u64 safe_set, u64 safe_clear)
5373{
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005374 const char *type = btrfs_feature_set_names[set];
5375 char *names;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005376 u64 disallowed, unsupported;
5377 u64 set_mask = flags & change_mask;
5378 u64 clear_mask = ~flags & change_mask;
5379
5380 unsupported = set_mask & ~supported_flags;
5381 if (unsupported) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005382 names = btrfs_printable_features(set, unsupported);
5383 if (names) {
5384 btrfs_warn(root->fs_info,
5385 "this kernel does not support the %s feature bit%s",
5386 names, strchr(names, ',') ? "s" : "");
5387 kfree(names);
5388 } else
5389 btrfs_warn(root->fs_info,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005390 "this kernel does not support %s bits 0x%llx",
5391 type, unsupported);
5392 return -EOPNOTSUPP;
5393 }
5394
5395 disallowed = set_mask & ~safe_set;
5396 if (disallowed) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005397 names = btrfs_printable_features(set, disallowed);
5398 if (names) {
5399 btrfs_warn(root->fs_info,
5400 "can't set the %s feature bit%s while mounted",
5401 names, strchr(names, ',') ? "s" : "");
5402 kfree(names);
5403 } else
5404 btrfs_warn(root->fs_info,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005405 "can't set %s bits 0x%llx while mounted",
5406 type, disallowed);
5407 return -EPERM;
5408 }
5409
5410 disallowed = clear_mask & ~safe_clear;
5411 if (disallowed) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005412 names = btrfs_printable_features(set, disallowed);
5413 if (names) {
5414 btrfs_warn(root->fs_info,
5415 "can't clear the %s feature bit%s while mounted",
5416 names, strchr(names, ',') ? "s" : "");
5417 kfree(names);
5418 } else
5419 btrfs_warn(root->fs_info,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005420 "can't clear %s bits 0x%llx while mounted",
5421 type, disallowed);
5422 return -EPERM;
5423 }
5424
5425 return 0;
5426}
5427
5428#define check_feature(root, change_mask, flags, mask_base) \
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005429check_feature_bits(root, FEAT_##mask_base, change_mask, flags, \
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005430 BTRFS_FEATURE_ ## mask_base ## _SUPP, \
5431 BTRFS_FEATURE_ ## mask_base ## _SAFE_SET, \
5432 BTRFS_FEATURE_ ## mask_base ## _SAFE_CLEAR)
5433
5434static int btrfs_ioctl_set_features(struct file *file, void __user *arg)
5435{
5436 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
5437 struct btrfs_super_block *super_block = root->fs_info->super_copy;
5438 struct btrfs_ioctl_feature_flags flags[2];
5439 struct btrfs_trans_handle *trans;
5440 u64 newflags;
5441 int ret;
5442
5443 if (!capable(CAP_SYS_ADMIN))
5444 return -EPERM;
5445
5446 if (copy_from_user(flags, arg, sizeof(flags)))
5447 return -EFAULT;
5448
5449 /* Nothing to do */
5450 if (!flags[0].compat_flags && !flags[0].compat_ro_flags &&
5451 !flags[0].incompat_flags)
5452 return 0;
5453
5454 ret = check_feature(root, flags[0].compat_flags,
5455 flags[1].compat_flags, COMPAT);
5456 if (ret)
5457 return ret;
5458
5459 ret = check_feature(root, flags[0].compat_ro_flags,
5460 flags[1].compat_ro_flags, COMPAT_RO);
5461 if (ret)
5462 return ret;
5463
5464 ret = check_feature(root, flags[0].incompat_flags,
5465 flags[1].incompat_flags, INCOMPAT);
5466 if (ret)
5467 return ret;
5468
David Sterba8051aa12014-02-07 14:34:04 +01005469 trans = btrfs_start_transaction(root, 0);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005470 if (IS_ERR(trans))
5471 return PTR_ERR(trans);
5472
5473 spin_lock(&root->fs_info->super_lock);
5474 newflags = btrfs_super_compat_flags(super_block);
5475 newflags |= flags[0].compat_flags & flags[1].compat_flags;
5476 newflags &= ~(flags[0].compat_flags & ~flags[1].compat_flags);
5477 btrfs_set_super_compat_flags(super_block, newflags);
5478
5479 newflags = btrfs_super_compat_ro_flags(super_block);
5480 newflags |= flags[0].compat_ro_flags & flags[1].compat_ro_flags;
5481 newflags &= ~(flags[0].compat_ro_flags & ~flags[1].compat_ro_flags);
5482 btrfs_set_super_compat_ro_flags(super_block, newflags);
5483
5484 newflags = btrfs_super_incompat_flags(super_block);
5485 newflags |= flags[0].incompat_flags & flags[1].incompat_flags;
5486 newflags &= ~(flags[0].incompat_flags & ~flags[1].incompat_flags);
5487 btrfs_set_super_incompat_flags(super_block, newflags);
5488 spin_unlock(&root->fs_info->super_lock);
5489
Jeff Mahoneyd0270ac2014-02-07 14:33:57 +01005490 return btrfs_commit_transaction(trans, root);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005491}
5492
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005493long btrfs_ioctl(struct file *file, unsigned int
5494 cmd, unsigned long arg)
5495{
Al Viro496ad9a2013-01-23 17:07:38 -05005496 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05005497 void __user *argp = (void __user *)arg;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005498
5499 switch (cmd) {
Christoph Hellwig6cbff002009-04-17 10:37:41 +02005500 case FS_IOC_GETFLAGS:
5501 return btrfs_ioctl_getflags(file, argp);
5502 case FS_IOC_SETFLAGS:
5503 return btrfs_ioctl_setflags(file, argp);
5504 case FS_IOC_GETVERSION:
5505 return btrfs_ioctl_getversion(file, argp);
Li Dongyangf7039b12011-03-24 10:24:28 +00005506 case FITRIM:
5507 return btrfs_ioctl_fitrim(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005508 case BTRFS_IOC_SNAP_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005509 return btrfs_ioctl_snap_create(file, argp, 0);
Li Zefanfdfb1e42010-12-10 06:41:56 +00005510 case BTRFS_IOC_SNAP_CREATE_V2:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005511 return btrfs_ioctl_snap_create_v2(file, argp, 0);
Chris Mason3de45862008-11-17 21:02:50 -05005512 case BTRFS_IOC_SUBVOL_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005513 return btrfs_ioctl_snap_create(file, argp, 1);
Arne Jansen6f72c7e2011-09-14 15:58:21 +02005514 case BTRFS_IOC_SUBVOL_CREATE_V2:
5515 return btrfs_ioctl_snap_create_v2(file, argp, 1);
Yan, Zheng76dda932009-09-21 16:00:26 -04005516 case BTRFS_IOC_SNAP_DESTROY:
5517 return btrfs_ioctl_snap_destroy(file, argp);
Li Zefan0caa1022010-12-20 16:30:25 +08005518 case BTRFS_IOC_SUBVOL_GETFLAGS:
5519 return btrfs_ioctl_subvol_getflags(file, argp);
5520 case BTRFS_IOC_SUBVOL_SETFLAGS:
5521 return btrfs_ioctl_subvol_setflags(file, argp);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00005522 case BTRFS_IOC_DEFAULT_SUBVOL:
5523 return btrfs_ioctl_default_subvol(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005524 case BTRFS_IOC_DEFRAG:
Chris Mason1e701a32010-03-11 09:42:04 -05005525 return btrfs_ioctl_defrag(file, NULL);
5526 case BTRFS_IOC_DEFRAG_RANGE:
5527 return btrfs_ioctl_defrag(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005528 case BTRFS_IOC_RESIZE:
Miao Xie198605a2012-11-26 08:43:45 +00005529 return btrfs_ioctl_resize(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005530 case BTRFS_IOC_ADD_DEV:
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05005531 return btrfs_ioctl_add_dev(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005532 case BTRFS_IOC_RM_DEV:
Miao Xieda249272012-11-26 08:44:50 +00005533 return btrfs_ioctl_rm_dev(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005534 case BTRFS_IOC_FS_INFO:
5535 return btrfs_ioctl_fs_info(root, argp);
5536 case BTRFS_IOC_DEV_INFO:
5537 return btrfs_ioctl_dev_info(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005538 case BTRFS_IOC_BALANCE:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08005539 return btrfs_ioctl_balance(file, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005540 case BTRFS_IOC_CLONE:
Sage Weilc5c9cd42008-11-12 14:32:25 -05005541 return btrfs_ioctl_clone(file, arg, 0, 0, 0);
5542 case BTRFS_IOC_CLONE_RANGE:
Christoph Hellwig7a865e82008-12-02 09:52:24 -05005543 return btrfs_ioctl_clone_range(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005544 case BTRFS_IOC_TRANS_START:
5545 return btrfs_ioctl_trans_start(file);
5546 case BTRFS_IOC_TRANS_END:
5547 return btrfs_ioctl_trans_end(file);
Chris Masonac8e9812010-02-28 15:39:26 -05005548 case BTRFS_IOC_TREE_SEARCH:
5549 return btrfs_ioctl_tree_search(file, argp);
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01005550 case BTRFS_IOC_TREE_SEARCH_V2:
5551 return btrfs_ioctl_tree_search_v2(file, argp);
Chris Masonac8e9812010-02-28 15:39:26 -05005552 case BTRFS_IOC_INO_LOOKUP:
5553 return btrfs_ioctl_ino_lookup(file, argp);
Jan Schmidtd7728c92011-07-07 16:48:38 +02005554 case BTRFS_IOC_INO_PATHS:
5555 return btrfs_ioctl_ino_to_path(root, argp);
5556 case BTRFS_IOC_LOGICAL_INO:
5557 return btrfs_ioctl_logical_to_ino(root, argp);
Josef Bacik1406e432010-01-13 18:19:06 +00005558 case BTRFS_IOC_SPACE_INFO:
5559 return btrfs_ioctl_space_info(root, argp);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005560 case BTRFS_IOC_SYNC: {
5561 int ret;
5562
Miao Xie6c255e62014-03-06 13:55:01 +08005563 ret = btrfs_start_delalloc_roots(root->fs_info, 0, -1);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005564 if (ret)
5565 return ret;
Al Viroddb52f42014-10-21 20:21:18 -04005566 ret = btrfs_sync_fs(file_inode(file)->i_sb, 1);
David Sterba2fad4e82014-07-23 14:39:35 +02005567 /*
5568 * The transaction thread may want to do more work,
5569 * namely it pokes the cleaner ktread that will start
5570 * processing uncleaned subvols.
5571 */
5572 wake_up_process(root->fs_info->transaction_kthread);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005573 return ret;
5574 }
Sage Weil46204592010-10-29 15:41:32 -04005575 case BTRFS_IOC_START_SYNC:
Miao Xie9a8c28b2012-11-26 08:40:43 +00005576 return btrfs_ioctl_start_sync(root, argp);
Sage Weil46204592010-10-29 15:41:32 -04005577 case BTRFS_IOC_WAIT_SYNC:
Miao Xie9a8c28b2012-11-26 08:40:43 +00005578 return btrfs_ioctl_wait_sync(root, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005579 case BTRFS_IOC_SCRUB:
Miao Xieb8e95482012-11-26 08:48:01 +00005580 return btrfs_ioctl_scrub(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005581 case BTRFS_IOC_SCRUB_CANCEL:
5582 return btrfs_ioctl_scrub_cancel(root, argp);
5583 case BTRFS_IOC_SCRUB_PROGRESS:
5584 return btrfs_ioctl_scrub_progress(root, argp);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02005585 case BTRFS_IOC_BALANCE_V2:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08005586 return btrfs_ioctl_balance(file, argp);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02005587 case BTRFS_IOC_BALANCE_CTL:
5588 return btrfs_ioctl_balance_ctl(root, arg);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02005589 case BTRFS_IOC_BALANCE_PROGRESS:
5590 return btrfs_ioctl_balance_progress(root, argp);
Alexander Block8ea05e32012-07-25 17:35:53 +02005591 case BTRFS_IOC_SET_RECEIVED_SUBVOL:
5592 return btrfs_ioctl_set_received_subvol(file, argp);
Hugo Millsabccd002014-01-30 20:17:00 +00005593#ifdef CONFIG_64BIT
5594 case BTRFS_IOC_SET_RECEIVED_SUBVOL_32:
5595 return btrfs_ioctl_set_received_subvol_32(file, argp);
5596#endif
Alexander Block31db9f72012-07-25 23:19:24 +02005597 case BTRFS_IOC_SEND:
5598 return btrfs_ioctl_send(file, argp);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02005599 case BTRFS_IOC_GET_DEV_STATS:
David Sterbab27f7c02012-06-22 06:30:39 -06005600 return btrfs_ioctl_get_dev_stats(root, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005601 case BTRFS_IOC_QUOTA_CTL:
Miao Xie905b0dd2012-11-26 08:50:11 +00005602 return btrfs_ioctl_quota_ctl(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005603 case BTRFS_IOC_QGROUP_ASSIGN:
Miao Xie905b0dd2012-11-26 08:50:11 +00005604 return btrfs_ioctl_qgroup_assign(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005605 case BTRFS_IOC_QGROUP_CREATE:
Miao Xie905b0dd2012-11-26 08:50:11 +00005606 return btrfs_ioctl_qgroup_create(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005607 case BTRFS_IOC_QGROUP_LIMIT:
Miao Xie905b0dd2012-11-26 08:50:11 +00005608 return btrfs_ioctl_qgroup_limit(file, argp);
Jan Schmidt2f232032013-04-25 16:04:51 +00005609 case BTRFS_IOC_QUOTA_RESCAN:
5610 return btrfs_ioctl_quota_rescan(file, argp);
5611 case BTRFS_IOC_QUOTA_RESCAN_STATUS:
5612 return btrfs_ioctl_quota_rescan_status(file, argp);
Jan Schmidt57254b6e2013-05-06 19:14:17 +00005613 case BTRFS_IOC_QUOTA_RESCAN_WAIT:
5614 return btrfs_ioctl_quota_rescan_wait(file, argp);
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01005615 case BTRFS_IOC_DEV_REPLACE:
5616 return btrfs_ioctl_dev_replace(root, argp);
jeff.liu867ab662013-01-05 02:48:01 +00005617 case BTRFS_IOC_GET_FSLABEL:
5618 return btrfs_ioctl_get_fslabel(file, argp);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005619 case BTRFS_IOC_SET_FSLABEL:
5620 return btrfs_ioctl_set_fslabel(file, argp);
Mark Fasheh416161d2013-08-06 11:42:51 -07005621 case BTRFS_IOC_FILE_EXTENT_SAME:
5622 return btrfs_ioctl_file_extent_same(file, argp);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005623 case BTRFS_IOC_GET_SUPPORTED_FEATURES:
5624 return btrfs_ioctl_get_supported_features(file, argp);
5625 case BTRFS_IOC_GET_FEATURES:
5626 return btrfs_ioctl_get_features(file, argp);
5627 case BTRFS_IOC_SET_FEATURES:
5628 return btrfs_ioctl_set_features(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005629 }
5630
5631 return -ENOTTY;
5632}