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