Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 2 | * Copyright (c) 2000-2005 Silicon Graphics, Inc. |
| 3 | * All Rights Reserved. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 5 | * This program is free software; you can redistribute it and/or |
| 6 | * modify it under the terms of the GNU General Public License as |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * published by the Free Software Foundation. |
| 8 | * |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 9 | * This program is distributed in the hope that it would be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | * GNU General Public License for more details. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | * |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 14 | * You should have received a copy of the GNU General Public License |
| 15 | * along with this program; if not, write the Free Software Foundation, |
| 16 | * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include "xfs.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include "xfs_fs.h" |
Dave Chinner | 6ca1c90 | 2013-08-12 20:49:26 +1000 | [diff] [blame] | 20 | #include "xfs_format.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include "xfs_log.h" |
| 22 | #include "xfs_trans.h" |
| 23 | #include "xfs_sb.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 24 | #include "xfs_ag.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include "xfs_alloc.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include "xfs_mount.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #include "xfs_bmap_btree.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include "xfs_dinode.h" |
| 29 | #include "xfs_inode.h" |
Hannes Eder | 7bf446f | 2009-03-05 15:20:25 +0100 | [diff] [blame] | 30 | #include "xfs_ioctl.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #include "xfs_rtalloc.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #include "xfs_itable.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 33 | #include "xfs_error.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | #include "xfs_attr.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 35 | #include "xfs_bmap.h" |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 36 | #include "xfs_bmap_util.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | #include "xfs_buf_item.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #include "xfs_fsops.h" |
Christoph Hellwig | a46db60 | 2011-01-07 13:02:04 +0000 | [diff] [blame] | 39 | #include "xfs_discard.h" |
Christoph Hellwig | 25fe55e | 2008-07-18 17:13:20 +1000 | [diff] [blame] | 40 | #include "xfs_quota.h" |
| 41 | #include "xfs_inode_item.h" |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 42 | #include "xfs_export.h" |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 43 | #include "xfs_trace.h" |
Brian Foster | 8ca149d | 2012-11-07 12:21:12 -0500 | [diff] [blame] | 44 | #include "xfs_icache.h" |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 45 | #include "xfs_symlink.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | |
Randy Dunlap | 16f7e0f | 2006-01-11 12:17:46 -0800 | [diff] [blame] | 47 | #include <linux/capability.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | #include <linux/dcache.h> |
| 49 | #include <linux/mount.h> |
| 50 | #include <linux/namei.h> |
| 51 | #include <linux/pagemap.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 52 | #include <linux/slab.h> |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 53 | #include <linux/exportfs.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | |
| 55 | /* |
| 56 | * xfs_find_handle maps from userspace xfs_fsop_handlereq structure to |
| 57 | * a file or fs handle. |
| 58 | * |
| 59 | * XFS_IOC_PATH_TO_FSHANDLE |
| 60 | * returns fs handle for a mount point or path within that mount point |
| 61 | * XFS_IOC_FD_TO_HANDLE |
| 62 | * returns full handle for a FD opened in user space |
| 63 | * XFS_IOC_PATH_TO_HANDLE |
| 64 | * returns full handle for a path |
| 65 | */ |
sandeen@sandeen.net | d5547f9 | 2008-11-25 21:20:08 -0600 | [diff] [blame] | 66 | int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | xfs_find_handle( |
| 68 | unsigned int cmd, |
sandeen@sandeen.net | 743bb465 | 2008-11-25 21:20:06 -0600 | [diff] [blame] | 69 | xfs_fsop_handlereq_t *hreq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | { |
| 71 | int hsize; |
| 72 | xfs_handle_t handle; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | struct inode *inode; |
Dave Chinner | 531c3bd | 2012-10-25 17:22:30 +1100 | [diff] [blame] | 74 | struct fd f = {0}; |
Christoph Hellwig | 4346cdd | 2009-02-08 21:51:14 +0100 | [diff] [blame] | 75 | struct path path; |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 76 | int error; |
Christoph Hellwig | 4346cdd | 2009-02-08 21:51:14 +0100 | [diff] [blame] | 77 | struct xfs_inode *ip; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | |
Christoph Hellwig | 4346cdd | 2009-02-08 21:51:14 +0100 | [diff] [blame] | 79 | if (cmd == XFS_IOC_FD_TO_HANDLE) { |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 80 | f = fdget(hreq->fd); |
| 81 | if (!f.file) |
Christoph Hellwig | 4346cdd | 2009-02-08 21:51:14 +0100 | [diff] [blame] | 82 | return -EBADF; |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 83 | inode = file_inode(f.file); |
Christoph Hellwig | 4346cdd | 2009-02-08 21:51:14 +0100 | [diff] [blame] | 84 | } else { |
| 85 | error = user_lpath((const char __user *)hreq->path, &path); |
| 86 | if (error) |
| 87 | return error; |
| 88 | inode = path.dentry->d_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | } |
Christoph Hellwig | 4346cdd | 2009-02-08 21:51:14 +0100 | [diff] [blame] | 90 | ip = XFS_I(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | |
Christoph Hellwig | 4346cdd | 2009-02-08 21:51:14 +0100 | [diff] [blame] | 92 | /* |
| 93 | * We can only generate handles for inodes residing on a XFS filesystem, |
| 94 | * and only for regular files, directories or symbolic links. |
| 95 | */ |
| 96 | error = -EINVAL; |
| 97 | if (inode->i_sb->s_magic != XFS_SB_MAGIC) |
| 98 | goto out_put; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | |
Christoph Hellwig | 4346cdd | 2009-02-08 21:51:14 +0100 | [diff] [blame] | 100 | error = -EBADF; |
| 101 | if (!S_ISREG(inode->i_mode) && |
| 102 | !S_ISDIR(inode->i_mode) && |
| 103 | !S_ISLNK(inode->i_mode)) |
| 104 | goto out_put; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | |
Christoph Hellwig | 4346cdd | 2009-02-08 21:51:14 +0100 | [diff] [blame] | 107 | memcpy(&handle.ha_fsid, ip->i_mount->m_fixedfsid, sizeof(xfs_fsid_t)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | |
Christoph Hellwig | 4346cdd | 2009-02-08 21:51:14 +0100 | [diff] [blame] | 109 | if (cmd == XFS_IOC_PATH_TO_FSHANDLE) { |
| 110 | /* |
| 111 | * This handle only contains an fsid, zero the rest. |
| 112 | */ |
| 113 | memset(&handle.ha_fid, 0, sizeof(handle.ha_fid)); |
| 114 | hsize = sizeof(xfs_fsid_t); |
| 115 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | int lock_mode; |
| 117 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | lock_mode = xfs_ilock_map_shared(ip); |
Christoph Hellwig | c614391 | 2007-09-14 15:22:37 +1000 | [diff] [blame] | 119 | handle.ha_fid.fid_len = sizeof(xfs_fid_t) - |
| 120 | sizeof(handle.ha_fid.fid_len); |
| 121 | handle.ha_fid.fid_pad = 0; |
| 122 | handle.ha_fid.fid_gen = ip->i_d.di_gen; |
| 123 | handle.ha_fid.fid_ino = ip->i_ino; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | xfs_iunlock_map_shared(ip, lock_mode); |
| 125 | |
| 126 | hsize = XFS_HSIZE(handle); |
| 127 | } |
| 128 | |
Christoph Hellwig | 4346cdd | 2009-02-08 21:51:14 +0100 | [diff] [blame] | 129 | error = -EFAULT; |
sandeen@sandeen.net | 743bb465 | 2008-11-25 21:20:06 -0600 | [diff] [blame] | 130 | if (copy_to_user(hreq->ohandle, &handle, hsize) || |
Christoph Hellwig | 4346cdd | 2009-02-08 21:51:14 +0100 | [diff] [blame] | 131 | copy_to_user(hreq->ohandlen, &hsize, sizeof(__s32))) |
| 132 | goto out_put; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | |
Christoph Hellwig | 4346cdd | 2009-02-08 21:51:14 +0100 | [diff] [blame] | 134 | error = 0; |
| 135 | |
| 136 | out_put: |
| 137 | if (cmd == XFS_IOC_FD_TO_HANDLE) |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 138 | fdput(f); |
Christoph Hellwig | 4346cdd | 2009-02-08 21:51:14 +0100 | [diff] [blame] | 139 | else |
| 140 | path_put(&path); |
| 141 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | } |
| 143 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | /* |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 145 | * No need to do permission checks on the various pathname components |
| 146 | * as the handle operations are privileged. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | */ |
| 148 | STATIC int |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 149 | xfs_handle_acceptable( |
| 150 | void *context, |
| 151 | struct dentry *dentry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | { |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 153 | return 1; |
| 154 | } |
| 155 | |
| 156 | /* |
| 157 | * Convert userspace handle data into a dentry. |
| 158 | */ |
| 159 | struct dentry * |
| 160 | xfs_handle_to_dentry( |
| 161 | struct file *parfilp, |
| 162 | void __user *uhandle, |
| 163 | u32 hlen) |
| 164 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | xfs_handle_t handle; |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 166 | struct xfs_fid64 fid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | |
| 168 | /* |
| 169 | * Only allow handle opens under a directory. |
| 170 | */ |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 171 | if (!S_ISDIR(file_inode(parfilp)->i_mode)) |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 172 | return ERR_PTR(-ENOTDIR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 174 | if (hlen != sizeof(xfs_handle_t)) |
| 175 | return ERR_PTR(-EINVAL); |
| 176 | if (copy_from_user(&handle, uhandle, hlen)) |
| 177 | return ERR_PTR(-EFAULT); |
| 178 | if (handle.ha_fid.fid_len != |
| 179 | sizeof(handle.ha_fid) - sizeof(handle.ha_fid.fid_len)) |
| 180 | return ERR_PTR(-EINVAL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 182 | memset(&fid, 0, sizeof(struct fid)); |
| 183 | fid.ino = handle.ha_fid.fid_ino; |
| 184 | fid.gen = handle.ha_fid.fid_gen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 186 | return exportfs_decode_fh(parfilp->f_path.mnt, (struct fid *)&fid, 3, |
| 187 | FILEID_INO32_GEN | XFS_FILEID_TYPE_64FLAG, |
| 188 | xfs_handle_acceptable, NULL); |
| 189 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 191 | STATIC struct dentry * |
| 192 | xfs_handlereq_to_dentry( |
| 193 | struct file *parfilp, |
| 194 | xfs_fsop_handlereq_t *hreq) |
| 195 | { |
| 196 | return xfs_handle_to_dentry(parfilp, hreq->ihandle, hreq->ihandlen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | } |
| 198 | |
sandeen@sandeen.net | d5547f9 | 2008-11-25 21:20:08 -0600 | [diff] [blame] | 199 | int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | xfs_open_by_handle( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | struct file *parfilp, |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 202 | xfs_fsop_handlereq_t *hreq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | { |
David Howells | 745ca24 | 2008-11-14 10:39:22 +1100 | [diff] [blame] | 204 | const struct cred *cred = current_cred(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | int error; |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 206 | int fd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | int permflag; |
| 208 | struct file *filp; |
| 209 | struct inode *inode; |
| 210 | struct dentry *dentry; |
Dave Chinner | 1a1d772 | 2012-03-22 05:15:06 +0000 | [diff] [blame] | 211 | fmode_t fmode; |
Al Viro | 765927b | 2012-06-26 21:58:53 +0400 | [diff] [blame] | 212 | struct path path; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | |
| 214 | if (!capable(CAP_SYS_ADMIN)) |
| 215 | return -XFS_ERROR(EPERM); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 217 | dentry = xfs_handlereq_to_dentry(parfilp, hreq); |
| 218 | if (IS_ERR(dentry)) |
| 219 | return PTR_ERR(dentry); |
| 220 | inode = dentry->d_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | |
| 222 | /* Restrict xfs_open_by_handle to directories & regular files. */ |
| 223 | if (!(S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode))) { |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 224 | error = -XFS_ERROR(EPERM); |
| 225 | goto out_dput; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | } |
| 227 | |
| 228 | #if BITS_PER_LONG != 32 |
sandeen@sandeen.net | 743bb465 | 2008-11-25 21:20:06 -0600 | [diff] [blame] | 229 | hreq->oflags |= O_LARGEFILE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | #endif |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 231 | |
sandeen@sandeen.net | 743bb465 | 2008-11-25 21:20:06 -0600 | [diff] [blame] | 232 | permflag = hreq->oflags; |
Dave Chinner | 1a1d772 | 2012-03-22 05:15:06 +0000 | [diff] [blame] | 233 | fmode = OPEN_FMODE(permflag); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | if ((!(permflag & O_APPEND) || (permflag & O_TRUNC)) && |
Dave Chinner | 1a1d772 | 2012-03-22 05:15:06 +0000 | [diff] [blame] | 235 | (fmode & FMODE_WRITE) && IS_APPEND(inode)) { |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 236 | error = -XFS_ERROR(EPERM); |
| 237 | goto out_dput; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | } |
| 239 | |
Dave Chinner | 1a1d772 | 2012-03-22 05:15:06 +0000 | [diff] [blame] | 240 | if ((fmode & FMODE_WRITE) && IS_IMMUTABLE(inode)) { |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 241 | error = -XFS_ERROR(EACCES); |
| 242 | goto out_dput; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | } |
| 244 | |
| 245 | /* Can't write directories. */ |
Dave Chinner | 1a1d772 | 2012-03-22 05:15:06 +0000 | [diff] [blame] | 246 | if (S_ISDIR(inode->i_mode) && (fmode & FMODE_WRITE)) { |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 247 | error = -XFS_ERROR(EISDIR); |
| 248 | goto out_dput; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | } |
| 250 | |
Yann Droneaud | 862a629 | 2013-07-02 18:39:34 +0200 | [diff] [blame] | 251 | fd = get_unused_fd_flags(0); |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 252 | if (fd < 0) { |
| 253 | error = fd; |
| 254 | goto out_dput; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | } |
| 256 | |
Al Viro | 765927b | 2012-06-26 21:58:53 +0400 | [diff] [blame] | 257 | path.mnt = parfilp->f_path.mnt; |
| 258 | path.dentry = dentry; |
| 259 | filp = dentry_open(&path, hreq->oflags, cred); |
| 260 | dput(dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | if (IS_ERR(filp)) { |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 262 | put_unused_fd(fd); |
| 263 | return PTR_ERR(filp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | } |
Christoph Hellwig | 4d4be48 | 2008-12-09 04:47:33 -0500 | [diff] [blame] | 265 | |
Al Viro | 0320937 | 2011-07-25 20:54:24 -0400 | [diff] [blame] | 266 | if (S_ISREG(inode->i_mode)) { |
Vlad Apostolov | 2e2e7bb | 2006-11-11 18:04:47 +1100 | [diff] [blame] | 267 | filp->f_flags |= O_NOATIME; |
Christoph Hellwig | 4d4be48 | 2008-12-09 04:47:33 -0500 | [diff] [blame] | 268 | filp->f_mode |= FMODE_NOCMTIME; |
Vlad Apostolov | 2e2e7bb | 2006-11-11 18:04:47 +1100 | [diff] [blame] | 269 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 271 | fd_install(fd, filp); |
| 272 | return fd; |
| 273 | |
| 274 | out_dput: |
| 275 | dput(dentry); |
| 276 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | } |
| 278 | |
Christoph Hellwig | 804c83c | 2007-08-28 13:59:03 +1000 | [diff] [blame] | 279 | /* |
| 280 | * This is a copy from fs/namei.c:vfs_readlink(), except for removing it's |
| 281 | * unused first argument. |
| 282 | */ |
| 283 | STATIC int |
| 284 | do_readlink( |
| 285 | char __user *buffer, |
| 286 | int buflen, |
| 287 | const char *link) |
| 288 | { |
| 289 | int len; |
| 290 | |
| 291 | len = PTR_ERR(link); |
| 292 | if (IS_ERR(link)) |
| 293 | goto out; |
| 294 | |
| 295 | len = strlen(link); |
| 296 | if (len > (unsigned) buflen) |
| 297 | len = buflen; |
| 298 | if (copy_to_user(buffer, link, len)) |
| 299 | len = -EFAULT; |
| 300 | out: |
| 301 | return len; |
| 302 | } |
| 303 | |
| 304 | |
sandeen@sandeen.net | d5547f9 | 2008-11-25 21:20:08 -0600 | [diff] [blame] | 305 | int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | xfs_readlink_by_handle( |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 307 | struct file *parfilp, |
| 308 | xfs_fsop_handlereq_t *hreq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | { |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 310 | struct dentry *dentry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | __u32 olen; |
Christoph Hellwig | 804c83c | 2007-08-28 13:59:03 +1000 | [diff] [blame] | 312 | void *link; |
| 313 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | |
| 315 | if (!capable(CAP_SYS_ADMIN)) |
| 316 | return -XFS_ERROR(EPERM); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 318 | dentry = xfs_handlereq_to_dentry(parfilp, hreq); |
| 319 | if (IS_ERR(dentry)) |
| 320 | return PTR_ERR(dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | |
| 322 | /* Restrict this handle operation to symlinks only. */ |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 323 | if (!S_ISLNK(dentry->d_inode->i_mode)) { |
Christoph Hellwig | 804c83c | 2007-08-28 13:59:03 +1000 | [diff] [blame] | 324 | error = -XFS_ERROR(EINVAL); |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 325 | goto out_dput; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | } |
| 327 | |
sandeen@sandeen.net | 743bb465 | 2008-11-25 21:20:06 -0600 | [diff] [blame] | 328 | if (copy_from_user(&olen, hreq->ohandlen, sizeof(__u32))) { |
Christoph Hellwig | 804c83c | 2007-08-28 13:59:03 +1000 | [diff] [blame] | 329 | error = -XFS_ERROR(EFAULT); |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 330 | goto out_dput; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | |
Christoph Hellwig | 804c83c | 2007-08-28 13:59:03 +1000 | [diff] [blame] | 333 | link = kmalloc(MAXPATHLEN+1, GFP_KERNEL); |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 334 | if (!link) { |
| 335 | error = -XFS_ERROR(ENOMEM); |
| 336 | goto out_dput; |
| 337 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 338 | |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 339 | error = -xfs_readlink(XFS_I(dentry->d_inode), link); |
Nathan Scott | 67fcaa7 | 2006-06-09 17:00:52 +1000 | [diff] [blame] | 340 | if (error) |
Christoph Hellwig | 804c83c | 2007-08-28 13:59:03 +1000 | [diff] [blame] | 341 | goto out_kfree; |
sandeen@sandeen.net | 743bb465 | 2008-11-25 21:20:06 -0600 | [diff] [blame] | 342 | error = do_readlink(hreq->ohandle, olen, link); |
Christoph Hellwig | 804c83c | 2007-08-28 13:59:03 +1000 | [diff] [blame] | 343 | if (error) |
| 344 | goto out_kfree; |
Nathan Scott | 67fcaa7 | 2006-06-09 17:00:52 +1000 | [diff] [blame] | 345 | |
Christoph Hellwig | 804c83c | 2007-08-28 13:59:03 +1000 | [diff] [blame] | 346 | out_kfree: |
| 347 | kfree(link); |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 348 | out_dput: |
| 349 | dput(dentry); |
Christoph Hellwig | 804c83c | 2007-08-28 13:59:03 +1000 | [diff] [blame] | 350 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | } |
| 352 | |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 353 | int |
| 354 | xfs_set_dmattrs( |
| 355 | xfs_inode_t *ip, |
| 356 | u_int evmask, |
| 357 | u_int16_t state) |
| 358 | { |
| 359 | xfs_mount_t *mp = ip->i_mount; |
| 360 | xfs_trans_t *tp; |
| 361 | int error; |
| 362 | |
| 363 | if (!capable(CAP_SYS_ADMIN)) |
| 364 | return XFS_ERROR(EPERM); |
| 365 | |
| 366 | if (XFS_FORCED_SHUTDOWN(mp)) |
| 367 | return XFS_ERROR(EIO); |
| 368 | |
| 369 | tp = xfs_trans_alloc(mp, XFS_TRANS_SET_DMATTRS); |
Jie Liu | 3d3c8b5 | 2013-08-12 20:49:59 +1000 | [diff] [blame] | 370 | error = xfs_trans_reserve(tp, &M_RES(mp)->tr_ichange, 0, 0); |
Dave Chinner | c24b5df | 2013-08-12 20:49:45 +1000 | [diff] [blame] | 371 | if (error) { |
| 372 | xfs_trans_cancel(tp, 0); |
| 373 | return error; |
| 374 | } |
| 375 | xfs_ilock(ip, XFS_ILOCK_EXCL); |
| 376 | xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL); |
| 377 | |
| 378 | ip->i_d.di_dmevmask = evmask; |
| 379 | ip->i_d.di_dmstate = state; |
| 380 | |
| 381 | xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE); |
| 382 | error = xfs_trans_commit(tp, 0); |
| 383 | |
| 384 | return error; |
| 385 | } |
| 386 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | STATIC int |
| 388 | xfs_fssetdm_by_handle( |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 389 | struct file *parfilp, |
| 390 | void __user *arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | { |
| 392 | int error; |
| 393 | struct fsdmidata fsd; |
| 394 | xfs_fsop_setdm_handlereq_t dmhreq; |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 395 | struct dentry *dentry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | |
| 397 | if (!capable(CAP_MKNOD)) |
| 398 | return -XFS_ERROR(EPERM); |
| 399 | if (copy_from_user(&dmhreq, arg, sizeof(xfs_fsop_setdm_handlereq_t))) |
| 400 | return -XFS_ERROR(EFAULT); |
| 401 | |
Jan Kara | d9457dc | 2012-06-12 16:20:39 +0200 | [diff] [blame] | 402 | error = mnt_want_write_file(parfilp); |
| 403 | if (error) |
| 404 | return error; |
| 405 | |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 406 | dentry = xfs_handlereq_to_dentry(parfilp, &dmhreq.hreq); |
Jan Kara | d9457dc | 2012-06-12 16:20:39 +0200 | [diff] [blame] | 407 | if (IS_ERR(dentry)) { |
| 408 | mnt_drop_write_file(parfilp); |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 409 | return PTR_ERR(dentry); |
Jan Kara | d9457dc | 2012-06-12 16:20:39 +0200 | [diff] [blame] | 410 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 412 | if (IS_IMMUTABLE(dentry->d_inode) || IS_APPEND(dentry->d_inode)) { |
Christoph Hellwig | 6e7f75e | 2007-10-11 18:09:50 +1000 | [diff] [blame] | 413 | error = -XFS_ERROR(EPERM); |
| 414 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | } |
| 416 | |
| 417 | if (copy_from_user(&fsd, dmhreq.data, sizeof(fsd))) { |
Christoph Hellwig | 6e7f75e | 2007-10-11 18:09:50 +1000 | [diff] [blame] | 418 | error = -XFS_ERROR(EFAULT); |
| 419 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 420 | } |
| 421 | |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 422 | error = -xfs_set_dmattrs(XFS_I(dentry->d_inode), fsd.fsd_dmevmask, |
Christoph Hellwig | 6e7f75e | 2007-10-11 18:09:50 +1000 | [diff] [blame] | 423 | fsd.fsd_dmstate); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | |
Christoph Hellwig | 6e7f75e | 2007-10-11 18:09:50 +1000 | [diff] [blame] | 425 | out: |
Jan Kara | d9457dc | 2012-06-12 16:20:39 +0200 | [diff] [blame] | 426 | mnt_drop_write_file(parfilp); |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 427 | dput(dentry); |
Christoph Hellwig | 6e7f75e | 2007-10-11 18:09:50 +1000 | [diff] [blame] | 428 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 429 | } |
| 430 | |
| 431 | STATIC int |
| 432 | xfs_attrlist_by_handle( |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 433 | struct file *parfilp, |
| 434 | void __user *arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | { |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 436 | int error = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | attrlist_cursor_kern_t *cursor; |
| 438 | xfs_fsop_attrlist_handlereq_t al_hreq; |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 439 | struct dentry *dentry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | char *kbuf; |
| 441 | |
| 442 | if (!capable(CAP_SYS_ADMIN)) |
| 443 | return -XFS_ERROR(EPERM); |
| 444 | if (copy_from_user(&al_hreq, arg, sizeof(xfs_fsop_attrlist_handlereq_t))) |
| 445 | return -XFS_ERROR(EFAULT); |
| 446 | if (al_hreq.buflen > XATTR_LIST_MAX) |
| 447 | return -XFS_ERROR(EINVAL); |
| 448 | |
Christoph Hellwig | 90ad58a | 2008-06-27 13:32:19 +1000 | [diff] [blame] | 449 | /* |
| 450 | * Reject flags, only allow namespaces. |
| 451 | */ |
| 452 | if (al_hreq.flags & ~(ATTR_ROOT | ATTR_SECURE)) |
| 453 | return -XFS_ERROR(EINVAL); |
| 454 | |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 455 | dentry = xfs_handlereq_to_dentry(parfilp, &al_hreq.hreq); |
| 456 | if (IS_ERR(dentry)) |
| 457 | return PTR_ERR(dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | |
Eric Sandeen | dd700d9 | 2013-04-04 00:05:13 -0500 | [diff] [blame] | 459 | kbuf = kmem_zalloc(al_hreq.buflen, KM_SLEEP | KM_MAYFAIL); |
| 460 | if (!kbuf) { |
| 461 | kbuf = kmem_zalloc_large(al_hreq.buflen); |
| 462 | if (!kbuf) |
| 463 | goto out_dput; |
| 464 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 | |
| 466 | cursor = (attrlist_cursor_kern_t *)&al_hreq.pos; |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 467 | error = -xfs_attr_list(XFS_I(dentry->d_inode), kbuf, al_hreq.buflen, |
Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 468 | al_hreq.flags, cursor); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | if (error) |
| 470 | goto out_kfree; |
| 471 | |
| 472 | if (copy_to_user(al_hreq.buffer, kbuf, al_hreq.buflen)) |
| 473 | error = -EFAULT; |
| 474 | |
| 475 | out_kfree: |
Eric Sandeen | dd700d9 | 2013-04-04 00:05:13 -0500 | [diff] [blame] | 476 | if (is_vmalloc_addr(kbuf)) |
| 477 | kmem_free_large(kbuf); |
| 478 | else |
| 479 | kmem_free(kbuf); |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 480 | out_dput: |
| 481 | dput(dentry); |
| 482 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | } |
| 484 | |
sandeen@sandeen.net | 2875097 | 2008-11-25 21:20:15 -0600 | [diff] [blame] | 485 | int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | xfs_attrmulti_attr_get( |
Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 487 | struct inode *inode, |
Dave Chinner | a9273ca | 2010-01-20 10:47:48 +1100 | [diff] [blame] | 488 | unsigned char *name, |
| 489 | unsigned char __user *ubuf, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 490 | __uint32_t *len, |
| 491 | __uint32_t flags) |
| 492 | { |
Dave Chinner | a9273ca | 2010-01-20 10:47:48 +1100 | [diff] [blame] | 493 | unsigned char *kbuf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | int error = EFAULT; |
Barry Naujok | e8b0eba | 2008-04-22 17:34:31 +1000 | [diff] [blame] | 495 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 496 | if (*len > XATTR_SIZE_MAX) |
| 497 | return EINVAL; |
Dave Chinner | ad650f5 | 2012-03-07 04:50:21 +0000 | [diff] [blame] | 498 | kbuf = kmem_zalloc(*len, KM_SLEEP | KM_MAYFAIL); |
| 499 | if (!kbuf) { |
| 500 | kbuf = kmem_zalloc_large(*len); |
| 501 | if (!kbuf) |
| 502 | return ENOMEM; |
| 503 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 504 | |
Barry Naujok | e8b0eba | 2008-04-22 17:34:31 +1000 | [diff] [blame] | 505 | error = xfs_attr_get(XFS_I(inode), name, kbuf, (int *)len, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 506 | if (error) |
| 507 | goto out_kfree; |
| 508 | |
| 509 | if (copy_to_user(ubuf, kbuf, *len)) |
| 510 | error = EFAULT; |
| 511 | |
| 512 | out_kfree: |
Dave Chinner | ad650f5 | 2012-03-07 04:50:21 +0000 | [diff] [blame] | 513 | if (is_vmalloc_addr(kbuf)) |
| 514 | kmem_free_large(kbuf); |
| 515 | else |
| 516 | kmem_free(kbuf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | return error; |
| 518 | } |
| 519 | |
sandeen@sandeen.net | 2875097 | 2008-11-25 21:20:15 -0600 | [diff] [blame] | 520 | int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | xfs_attrmulti_attr_set( |
Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 522 | struct inode *inode, |
Dave Chinner | a9273ca | 2010-01-20 10:47:48 +1100 | [diff] [blame] | 523 | unsigned char *name, |
| 524 | const unsigned char __user *ubuf, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | __uint32_t len, |
| 526 | __uint32_t flags) |
| 527 | { |
Dave Chinner | a9273ca | 2010-01-20 10:47:48 +1100 | [diff] [blame] | 528 | unsigned char *kbuf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | int error = EFAULT; |
| 530 | |
Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 531 | if (IS_IMMUTABLE(inode) || IS_APPEND(inode)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 532 | return EPERM; |
| 533 | if (len > XATTR_SIZE_MAX) |
| 534 | return EINVAL; |
| 535 | |
Li Zefan | 0e639bd | 2009-04-08 15:08:04 +0800 | [diff] [blame] | 536 | kbuf = memdup_user(ubuf, len); |
| 537 | if (IS_ERR(kbuf)) |
| 538 | return PTR_ERR(kbuf); |
Barry Naujok | e8b0eba | 2008-04-22 17:34:31 +1000 | [diff] [blame] | 539 | |
Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 540 | error = xfs_attr_set(XFS_I(inode), name, kbuf, len, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | return error; |
| 543 | } |
| 544 | |
sandeen@sandeen.net | 2875097 | 2008-11-25 21:20:15 -0600 | [diff] [blame] | 545 | int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | xfs_attrmulti_attr_remove( |
Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 547 | struct inode *inode, |
Dave Chinner | a9273ca | 2010-01-20 10:47:48 +1100 | [diff] [blame] | 548 | unsigned char *name, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | __uint32_t flags) |
| 550 | { |
Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 551 | if (IS_IMMUTABLE(inode) || IS_APPEND(inode)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | return EPERM; |
Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 553 | return xfs_attr_remove(XFS_I(inode), name, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | } |
| 555 | |
| 556 | STATIC int |
| 557 | xfs_attrmulti_by_handle( |
Dave Hansen | 42a74f2 | 2008-02-15 14:37:46 -0800 | [diff] [blame] | 558 | struct file *parfilp, |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 559 | void __user *arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | { |
| 561 | int error; |
| 562 | xfs_attr_multiop_t *ops; |
| 563 | xfs_fsop_attrmulti_handlereq_t am_hreq; |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 564 | struct dentry *dentry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | unsigned int i, size; |
Dave Chinner | a9273ca | 2010-01-20 10:47:48 +1100 | [diff] [blame] | 566 | unsigned char *attr_name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | |
| 568 | if (!capable(CAP_SYS_ADMIN)) |
| 569 | return -XFS_ERROR(EPERM); |
| 570 | if (copy_from_user(&am_hreq, arg, sizeof(xfs_fsop_attrmulti_handlereq_t))) |
| 571 | return -XFS_ERROR(EFAULT); |
| 572 | |
Zhitong Wang | fda168c | 2010-03-23 09:51:22 +1100 | [diff] [blame] | 573 | /* overflow check */ |
| 574 | if (am_hreq.opcount >= INT_MAX / sizeof(xfs_attr_multiop_t)) |
| 575 | return -E2BIG; |
| 576 | |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 577 | dentry = xfs_handlereq_to_dentry(parfilp, &am_hreq.hreq); |
| 578 | if (IS_ERR(dentry)) |
| 579 | return PTR_ERR(dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 580 | |
| 581 | error = E2BIG; |
Christoph Hellwig | e182f57 | 2008-06-27 13:32:31 +1000 | [diff] [blame] | 582 | size = am_hreq.opcount * sizeof(xfs_attr_multiop_t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | if (!size || size > 16 * PAGE_SIZE) |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 584 | goto out_dput; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 585 | |
Li Zefan | 0e639bd | 2009-04-08 15:08:04 +0800 | [diff] [blame] | 586 | ops = memdup_user(am_hreq.ops, size); |
| 587 | if (IS_ERR(ops)) { |
| 588 | error = PTR_ERR(ops); |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 589 | goto out_dput; |
Li Zefan | 0e639bd | 2009-04-08 15:08:04 +0800 | [diff] [blame] | 590 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 591 | |
| 592 | attr_name = kmalloc(MAXNAMELEN, GFP_KERNEL); |
| 593 | if (!attr_name) |
| 594 | goto out_kfree_ops; |
| 595 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | error = 0; |
| 597 | for (i = 0; i < am_hreq.opcount; i++) { |
Dave Chinner | a9273ca | 2010-01-20 10:47:48 +1100 | [diff] [blame] | 598 | ops[i].am_error = strncpy_from_user((char *)attr_name, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | ops[i].am_attrname, MAXNAMELEN); |
| 600 | if (ops[i].am_error == 0 || ops[i].am_error == MAXNAMELEN) |
| 601 | error = -ERANGE; |
| 602 | if (ops[i].am_error < 0) |
| 603 | break; |
| 604 | |
| 605 | switch (ops[i].am_opcode) { |
| 606 | case ATTR_OP_GET: |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 607 | ops[i].am_error = xfs_attrmulti_attr_get( |
| 608 | dentry->d_inode, attr_name, |
| 609 | ops[i].am_attrvalue, &ops[i].am_length, |
| 610 | ops[i].am_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 611 | break; |
| 612 | case ATTR_OP_SET: |
Al Viro | a561be7 | 2011-11-23 11:57:51 -0500 | [diff] [blame] | 613 | ops[i].am_error = mnt_want_write_file(parfilp); |
Dave Hansen | 42a74f2 | 2008-02-15 14:37:46 -0800 | [diff] [blame] | 614 | if (ops[i].am_error) |
| 615 | break; |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 616 | ops[i].am_error = xfs_attrmulti_attr_set( |
| 617 | dentry->d_inode, attr_name, |
| 618 | ops[i].am_attrvalue, ops[i].am_length, |
| 619 | ops[i].am_flags); |
Al Viro | 2a79f17 | 2011-12-09 08:06:57 -0500 | [diff] [blame] | 620 | mnt_drop_write_file(parfilp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 621 | break; |
| 622 | case ATTR_OP_REMOVE: |
Al Viro | a561be7 | 2011-11-23 11:57:51 -0500 | [diff] [blame] | 623 | ops[i].am_error = mnt_want_write_file(parfilp); |
Dave Hansen | 42a74f2 | 2008-02-15 14:37:46 -0800 | [diff] [blame] | 624 | if (ops[i].am_error) |
| 625 | break; |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 626 | ops[i].am_error = xfs_attrmulti_attr_remove( |
| 627 | dentry->d_inode, attr_name, |
| 628 | ops[i].am_flags); |
Al Viro | 2a79f17 | 2011-12-09 08:06:57 -0500 | [diff] [blame] | 629 | mnt_drop_write_file(parfilp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 630 | break; |
| 631 | default: |
| 632 | ops[i].am_error = EINVAL; |
| 633 | } |
| 634 | } |
| 635 | |
| 636 | if (copy_to_user(am_hreq.ops, ops, size)) |
| 637 | error = XFS_ERROR(EFAULT); |
| 638 | |
| 639 | kfree(attr_name); |
| 640 | out_kfree_ops: |
| 641 | kfree(ops); |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 642 | out_dput: |
| 643 | dput(dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 644 | return -error; |
| 645 | } |
| 646 | |
sandeen@sandeen.net | d5547f9 | 2008-11-25 21:20:08 -0600 | [diff] [blame] | 647 | int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | xfs_ioc_space( |
Christoph Hellwig | 993386c | 2007-08-28 16:12:30 +1000 | [diff] [blame] | 649 | struct xfs_inode *ip, |
Alexey Dobriyan | f37ea14 | 2006-09-28 10:52:04 +1000 | [diff] [blame] | 650 | struct inode *inode, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | struct file *filp, |
| 652 | int ioflags, |
| 653 | unsigned int cmd, |
sandeen@sandeen.net | 743bb465 | 2008-11-25 21:20:06 -0600 | [diff] [blame] | 654 | xfs_flock64_t *bf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 655 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 656 | int attr_flags = 0; |
| 657 | int error; |
| 658 | |
sandeen@sandeen.net | 743bb465 | 2008-11-25 21:20:06 -0600 | [diff] [blame] | 659 | /* |
| 660 | * Only allow the sys admin to reserve space unless |
| 661 | * unwritten extents are enabled. |
| 662 | */ |
| 663 | if (!xfs_sb_version_hasextflgbit(&ip->i_mount->m_sb) && |
| 664 | !capable(CAP_SYS_ADMIN)) |
| 665 | return -XFS_ERROR(EPERM); |
| 666 | |
Alexey Dobriyan | f37ea14 | 2006-09-28 10:52:04 +1000 | [diff] [blame] | 667 | if (inode->i_flags & (S_IMMUTABLE|S_APPEND)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 668 | return -XFS_ERROR(EPERM); |
| 669 | |
Eric Sandeen | ad4a8ac | 2005-09-02 16:41:16 +1000 | [diff] [blame] | 670 | if (!(filp->f_mode & FMODE_WRITE)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 671 | return -XFS_ERROR(EBADF); |
| 672 | |
Alexey Dobriyan | f37ea14 | 2006-09-28 10:52:04 +1000 | [diff] [blame] | 673 | if (!S_ISREG(inode->i_mode)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | return -XFS_ERROR(EINVAL); |
| 675 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 676 | if (filp->f_flags & (O_NDELAY|O_NONBLOCK)) |
Christoph Hellwig | 0f285c8 | 2008-07-18 17:13:28 +1000 | [diff] [blame] | 677 | attr_flags |= XFS_ATTR_NONBLOCK; |
Dave Chinner | 8287889 | 2011-03-26 09:13:08 +1100 | [diff] [blame] | 678 | |
| 679 | if (filp->f_flags & O_DSYNC) |
| 680 | attr_flags |= XFS_ATTR_SYNC; |
| 681 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 682 | if (ioflags & IO_INVIS) |
Christoph Hellwig | 0f285c8 | 2008-07-18 17:13:28 +1000 | [diff] [blame] | 683 | attr_flags |= XFS_ATTR_DMI; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 684 | |
Jan Kara | d9457dc | 2012-06-12 16:20:39 +0200 | [diff] [blame] | 685 | error = mnt_want_write_file(filp); |
| 686 | if (error) |
| 687 | return error; |
sandeen@sandeen.net | 743bb465 | 2008-11-25 21:20:06 -0600 | [diff] [blame] | 688 | error = xfs_change_file_space(ip, cmd, bf, filp->f_pos, attr_flags); |
Jan Kara | d9457dc | 2012-06-12 16:20:39 +0200 | [diff] [blame] | 689 | mnt_drop_write_file(filp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 690 | return -error; |
| 691 | } |
| 692 | |
| 693 | STATIC int |
| 694 | xfs_ioc_bulkstat( |
| 695 | xfs_mount_t *mp, |
| 696 | unsigned int cmd, |
| 697 | void __user *arg) |
| 698 | { |
| 699 | xfs_fsop_bulkreq_t bulkreq; |
| 700 | int count; /* # of records returned */ |
| 701 | xfs_ino_t inlast; /* last inode number */ |
| 702 | int done; |
| 703 | int error; |
| 704 | |
| 705 | /* done = 1 if there are more stats to get and if bulkstat */ |
| 706 | /* should be called again (unused here, but used in dmapi) */ |
| 707 | |
| 708 | if (!capable(CAP_SYS_ADMIN)) |
| 709 | return -EPERM; |
| 710 | |
| 711 | if (XFS_FORCED_SHUTDOWN(mp)) |
| 712 | return -XFS_ERROR(EIO); |
| 713 | |
| 714 | if (copy_from_user(&bulkreq, arg, sizeof(xfs_fsop_bulkreq_t))) |
| 715 | return -XFS_ERROR(EFAULT); |
| 716 | |
| 717 | if (copy_from_user(&inlast, bulkreq.lastip, sizeof(__s64))) |
| 718 | return -XFS_ERROR(EFAULT); |
| 719 | |
| 720 | if ((count = bulkreq.icount) <= 0) |
| 721 | return -XFS_ERROR(EINVAL); |
| 722 | |
Lachlan McIlroy | cd57e59 | 2007-11-23 16:30:32 +1100 | [diff] [blame] | 723 | if (bulkreq.ubuffer == NULL) |
| 724 | return -XFS_ERROR(EINVAL); |
| 725 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 726 | if (cmd == XFS_IOC_FSINUMBERS) |
| 727 | error = xfs_inumbers(mp, &inlast, &count, |
Michal Marek | faa63e9 | 2007-07-11 11:10:19 +1000 | [diff] [blame] | 728 | bulkreq.ubuffer, xfs_inumbers_fmt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 729 | else if (cmd == XFS_IOC_FSBULKSTAT_SINGLE) |
| 730 | error = xfs_bulkstat_single(mp, &inlast, |
| 731 | bulkreq.ubuffer, &done); |
Lachlan McIlroy | cd57e59 | 2007-11-23 16:30:32 +1100 | [diff] [blame] | 732 | else /* XFS_IOC_FSBULKSTAT */ |
Christoph Hellwig | 7dce11d | 2010-06-23 18:11:11 +1000 | [diff] [blame] | 733 | error = xfs_bulkstat(mp, &inlast, &count, xfs_bulkstat_one, |
| 734 | sizeof(xfs_bstat_t), bulkreq.ubuffer, |
| 735 | &done); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 736 | |
| 737 | if (error) |
| 738 | return -error; |
| 739 | |
| 740 | if (bulkreq.ocount != NULL) { |
| 741 | if (copy_to_user(bulkreq.lastip, &inlast, |
| 742 | sizeof(xfs_ino_t))) |
| 743 | return -XFS_ERROR(EFAULT); |
| 744 | |
| 745 | if (copy_to_user(bulkreq.ocount, &count, sizeof(count))) |
| 746 | return -XFS_ERROR(EFAULT); |
| 747 | } |
| 748 | |
| 749 | return 0; |
| 750 | } |
| 751 | |
| 752 | STATIC int |
| 753 | xfs_ioc_fsgeometry_v1( |
| 754 | xfs_mount_t *mp, |
| 755 | void __user *arg) |
| 756 | { |
Alex Elder | eeb2036 | 2011-03-01 17:50:00 +0000 | [diff] [blame] | 757 | xfs_fsop_geom_t fsgeo; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 758 | int error; |
| 759 | |
Alex Elder | eeb2036 | 2011-03-01 17:50:00 +0000 | [diff] [blame] | 760 | error = xfs_fs_geometry(mp, &fsgeo, 3); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 761 | if (error) |
| 762 | return -error; |
| 763 | |
Alex Elder | eeb2036 | 2011-03-01 17:50:00 +0000 | [diff] [blame] | 764 | /* |
| 765 | * Caller should have passed an argument of type |
| 766 | * xfs_fsop_geom_v1_t. This is a proper subset of the |
| 767 | * xfs_fsop_geom_t that xfs_fs_geometry() fills in. |
| 768 | */ |
| 769 | if (copy_to_user(arg, &fsgeo, sizeof(xfs_fsop_geom_v1_t))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 770 | return -XFS_ERROR(EFAULT); |
| 771 | return 0; |
| 772 | } |
| 773 | |
| 774 | STATIC int |
| 775 | xfs_ioc_fsgeometry( |
| 776 | xfs_mount_t *mp, |
| 777 | void __user *arg) |
| 778 | { |
| 779 | xfs_fsop_geom_t fsgeo; |
| 780 | int error; |
| 781 | |
| 782 | error = xfs_fs_geometry(mp, &fsgeo, 4); |
| 783 | if (error) |
| 784 | return -error; |
| 785 | |
| 786 | if (copy_to_user(arg, &fsgeo, sizeof(fsgeo))) |
| 787 | return -XFS_ERROR(EFAULT); |
| 788 | return 0; |
| 789 | } |
| 790 | |
| 791 | /* |
| 792 | * Linux extended inode flags interface. |
| 793 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 794 | |
| 795 | STATIC unsigned int |
| 796 | xfs_merge_ioc_xflags( |
| 797 | unsigned int flags, |
| 798 | unsigned int start) |
| 799 | { |
| 800 | unsigned int xflags = start; |
| 801 | |
Eric Sandeen | 39058a0 | 2007-02-10 18:37:10 +1100 | [diff] [blame] | 802 | if (flags & FS_IMMUTABLE_FL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 803 | xflags |= XFS_XFLAG_IMMUTABLE; |
| 804 | else |
| 805 | xflags &= ~XFS_XFLAG_IMMUTABLE; |
Eric Sandeen | 39058a0 | 2007-02-10 18:37:10 +1100 | [diff] [blame] | 806 | if (flags & FS_APPEND_FL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 807 | xflags |= XFS_XFLAG_APPEND; |
| 808 | else |
| 809 | xflags &= ~XFS_XFLAG_APPEND; |
Eric Sandeen | 39058a0 | 2007-02-10 18:37:10 +1100 | [diff] [blame] | 810 | if (flags & FS_SYNC_FL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 811 | xflags |= XFS_XFLAG_SYNC; |
| 812 | else |
| 813 | xflags &= ~XFS_XFLAG_SYNC; |
Eric Sandeen | 39058a0 | 2007-02-10 18:37:10 +1100 | [diff] [blame] | 814 | if (flags & FS_NOATIME_FL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 815 | xflags |= XFS_XFLAG_NOATIME; |
| 816 | else |
| 817 | xflags &= ~XFS_XFLAG_NOATIME; |
Eric Sandeen | 39058a0 | 2007-02-10 18:37:10 +1100 | [diff] [blame] | 818 | if (flags & FS_NODUMP_FL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 819 | xflags |= XFS_XFLAG_NODUMP; |
| 820 | else |
| 821 | xflags &= ~XFS_XFLAG_NODUMP; |
| 822 | |
| 823 | return xflags; |
| 824 | } |
| 825 | |
| 826 | STATIC unsigned int |
| 827 | xfs_di2lxflags( |
| 828 | __uint16_t di_flags) |
| 829 | { |
| 830 | unsigned int flags = 0; |
| 831 | |
| 832 | if (di_flags & XFS_DIFLAG_IMMUTABLE) |
Eric Sandeen | 39058a0 | 2007-02-10 18:37:10 +1100 | [diff] [blame] | 833 | flags |= FS_IMMUTABLE_FL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 834 | if (di_flags & XFS_DIFLAG_APPEND) |
Eric Sandeen | 39058a0 | 2007-02-10 18:37:10 +1100 | [diff] [blame] | 835 | flags |= FS_APPEND_FL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 836 | if (di_flags & XFS_DIFLAG_SYNC) |
Eric Sandeen | 39058a0 | 2007-02-10 18:37:10 +1100 | [diff] [blame] | 837 | flags |= FS_SYNC_FL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 838 | if (di_flags & XFS_DIFLAG_NOATIME) |
Eric Sandeen | 39058a0 | 2007-02-10 18:37:10 +1100 | [diff] [blame] | 839 | flags |= FS_NOATIME_FL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 840 | if (di_flags & XFS_DIFLAG_NODUMP) |
Eric Sandeen | 39058a0 | 2007-02-10 18:37:10 +1100 | [diff] [blame] | 841 | flags |= FS_NODUMP_FL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 842 | return flags; |
| 843 | } |
| 844 | |
| 845 | STATIC int |
Christoph Hellwig | c83bfab | 2007-10-11 17:47:00 +1000 | [diff] [blame] | 846 | xfs_ioc_fsgetxattr( |
| 847 | xfs_inode_t *ip, |
| 848 | int attr, |
| 849 | void __user *arg) |
| 850 | { |
| 851 | struct fsxattr fa; |
| 852 | |
Dan Rosenberg | a122eb2 | 2010-09-06 18:24:57 -0400 | [diff] [blame] | 853 | memset(&fa, 0, sizeof(struct fsxattr)); |
| 854 | |
Christoph Hellwig | c83bfab | 2007-10-11 17:47:00 +1000 | [diff] [blame] | 855 | xfs_ilock(ip, XFS_ILOCK_SHARED); |
| 856 | fa.fsx_xflags = xfs_ip2xflags(ip); |
| 857 | fa.fsx_extsize = ip->i_d.di_extsize << ip->i_mount->m_sb.sb_blocklog; |
Arkadiusz Mi?kiewicz | 6743099 | 2010-09-26 06:10:18 +0000 | [diff] [blame] | 858 | fa.fsx_projid = xfs_get_projid(ip); |
Christoph Hellwig | c83bfab | 2007-10-11 17:47:00 +1000 | [diff] [blame] | 859 | |
| 860 | if (attr) { |
| 861 | if (ip->i_afp) { |
| 862 | if (ip->i_afp->if_flags & XFS_IFEXTENTS) |
| 863 | fa.fsx_nextents = ip->i_afp->if_bytes / |
| 864 | sizeof(xfs_bmbt_rec_t); |
| 865 | else |
| 866 | fa.fsx_nextents = ip->i_d.di_anextents; |
| 867 | } else |
| 868 | fa.fsx_nextents = 0; |
| 869 | } else { |
| 870 | if (ip->i_df.if_flags & XFS_IFEXTENTS) |
| 871 | fa.fsx_nextents = ip->i_df.if_bytes / |
| 872 | sizeof(xfs_bmbt_rec_t); |
| 873 | else |
| 874 | fa.fsx_nextents = ip->i_d.di_nextents; |
| 875 | } |
| 876 | xfs_iunlock(ip, XFS_ILOCK_SHARED); |
| 877 | |
| 878 | if (copy_to_user(arg, &fa, sizeof(fa))) |
| 879 | return -EFAULT; |
| 880 | return 0; |
| 881 | } |
| 882 | |
Christoph Hellwig | 25fe55e | 2008-07-18 17:13:20 +1000 | [diff] [blame] | 883 | STATIC void |
| 884 | xfs_set_diflags( |
| 885 | struct xfs_inode *ip, |
| 886 | unsigned int xflags) |
| 887 | { |
| 888 | unsigned int di_flags; |
| 889 | |
| 890 | /* can't set PREALLOC this way, just preserve it */ |
| 891 | di_flags = (ip->i_d.di_flags & XFS_DIFLAG_PREALLOC); |
| 892 | if (xflags & XFS_XFLAG_IMMUTABLE) |
| 893 | di_flags |= XFS_DIFLAG_IMMUTABLE; |
| 894 | if (xflags & XFS_XFLAG_APPEND) |
| 895 | di_flags |= XFS_DIFLAG_APPEND; |
| 896 | if (xflags & XFS_XFLAG_SYNC) |
| 897 | di_flags |= XFS_DIFLAG_SYNC; |
| 898 | if (xflags & XFS_XFLAG_NOATIME) |
| 899 | di_flags |= XFS_DIFLAG_NOATIME; |
| 900 | if (xflags & XFS_XFLAG_NODUMP) |
| 901 | di_flags |= XFS_DIFLAG_NODUMP; |
| 902 | if (xflags & XFS_XFLAG_PROJINHERIT) |
| 903 | di_flags |= XFS_DIFLAG_PROJINHERIT; |
| 904 | if (xflags & XFS_XFLAG_NODEFRAG) |
| 905 | di_flags |= XFS_DIFLAG_NODEFRAG; |
| 906 | if (xflags & XFS_XFLAG_FILESTREAM) |
| 907 | di_flags |= XFS_DIFLAG_FILESTREAM; |
Al Viro | abbede1 | 2011-07-26 02:31:30 -0400 | [diff] [blame] | 908 | if (S_ISDIR(ip->i_d.di_mode)) { |
Christoph Hellwig | 25fe55e | 2008-07-18 17:13:20 +1000 | [diff] [blame] | 909 | if (xflags & XFS_XFLAG_RTINHERIT) |
| 910 | di_flags |= XFS_DIFLAG_RTINHERIT; |
| 911 | if (xflags & XFS_XFLAG_NOSYMLINKS) |
| 912 | di_flags |= XFS_DIFLAG_NOSYMLINKS; |
| 913 | if (xflags & XFS_XFLAG_EXTSZINHERIT) |
| 914 | di_flags |= XFS_DIFLAG_EXTSZINHERIT; |
Al Viro | abbede1 | 2011-07-26 02:31:30 -0400 | [diff] [blame] | 915 | } else if (S_ISREG(ip->i_d.di_mode)) { |
Christoph Hellwig | 25fe55e | 2008-07-18 17:13:20 +1000 | [diff] [blame] | 916 | if (xflags & XFS_XFLAG_REALTIME) |
| 917 | di_flags |= XFS_DIFLAG_REALTIME; |
| 918 | if (xflags & XFS_XFLAG_EXTSIZE) |
| 919 | di_flags |= XFS_DIFLAG_EXTSIZE; |
| 920 | } |
| 921 | |
| 922 | ip->i_d.di_flags = di_flags; |
| 923 | } |
| 924 | |
Christoph Hellwig | f13fae2 | 2008-07-21 16:16:15 +1000 | [diff] [blame] | 925 | STATIC void |
| 926 | xfs_diflags_to_linux( |
| 927 | struct xfs_inode *ip) |
| 928 | { |
David Chinner | e4f7529 | 2008-08-13 16:00:45 +1000 | [diff] [blame] | 929 | struct inode *inode = VFS_I(ip); |
Christoph Hellwig | f13fae2 | 2008-07-21 16:16:15 +1000 | [diff] [blame] | 930 | unsigned int xflags = xfs_ip2xflags(ip); |
| 931 | |
| 932 | if (xflags & XFS_XFLAG_IMMUTABLE) |
| 933 | inode->i_flags |= S_IMMUTABLE; |
| 934 | else |
| 935 | inode->i_flags &= ~S_IMMUTABLE; |
| 936 | if (xflags & XFS_XFLAG_APPEND) |
| 937 | inode->i_flags |= S_APPEND; |
| 938 | else |
| 939 | inode->i_flags &= ~S_APPEND; |
| 940 | if (xflags & XFS_XFLAG_SYNC) |
| 941 | inode->i_flags |= S_SYNC; |
| 942 | else |
| 943 | inode->i_flags &= ~S_SYNC; |
| 944 | if (xflags & XFS_XFLAG_NOATIME) |
| 945 | inode->i_flags |= S_NOATIME; |
| 946 | else |
| 947 | inode->i_flags &= ~S_NOATIME; |
| 948 | } |
Christoph Hellwig | 25fe55e | 2008-07-18 17:13:20 +1000 | [diff] [blame] | 949 | |
| 950 | #define FSX_PROJID 1 |
| 951 | #define FSX_EXTSIZE 2 |
| 952 | #define FSX_XFLAGS 4 |
| 953 | #define FSX_NONBLOCK 8 |
| 954 | |
| 955 | STATIC int |
| 956 | xfs_ioctl_setattr( |
| 957 | xfs_inode_t *ip, |
| 958 | struct fsxattr *fa, |
| 959 | int mask) |
| 960 | { |
| 961 | struct xfs_mount *mp = ip->i_mount; |
| 962 | struct xfs_trans *tp; |
| 963 | unsigned int lock_flags = 0; |
Christoph Hellwig | 7d09525 | 2009-06-08 15:33:32 +0200 | [diff] [blame] | 964 | struct xfs_dquot *udqp = NULL; |
Chandra Seetharaman | 92f8ff7 | 2013-07-11 00:00:40 -0500 | [diff] [blame] | 965 | struct xfs_dquot *pdqp = NULL; |
Christoph Hellwig | 25fe55e | 2008-07-18 17:13:20 +1000 | [diff] [blame] | 966 | struct xfs_dquot *olddquot = NULL; |
| 967 | int code; |
| 968 | |
Christoph Hellwig | cca28fb | 2010-06-24 11:57:09 +1000 | [diff] [blame] | 969 | trace_xfs_ioctl_setattr(ip); |
Christoph Hellwig | 25fe55e | 2008-07-18 17:13:20 +1000 | [diff] [blame] | 970 | |
| 971 | if (mp->m_flags & XFS_MOUNT_RDONLY) |
| 972 | return XFS_ERROR(EROFS); |
| 973 | if (XFS_FORCED_SHUTDOWN(mp)) |
| 974 | return XFS_ERROR(EIO); |
| 975 | |
| 976 | /* |
Arkadiusz Mi?kiewicz | 6743099 | 2010-09-26 06:10:18 +0000 | [diff] [blame] | 977 | * Disallow 32bit project ids when projid32bit feature is not enabled. |
Arkadiusz Mi?kiewicz | 23963e5 | 2010-08-26 10:19:43 +0000 | [diff] [blame] | 978 | */ |
Arkadiusz Mi?kiewicz | 6743099 | 2010-09-26 06:10:18 +0000 | [diff] [blame] | 979 | if ((mask & FSX_PROJID) && (fa->fsx_projid > (__uint16_t)-1) && |
| 980 | !xfs_sb_version_hasprojid32bit(&ip->i_mount->m_sb)) |
Arkadiusz Mi?kiewicz | 23963e5 | 2010-08-26 10:19:43 +0000 | [diff] [blame] | 981 | return XFS_ERROR(EINVAL); |
| 982 | |
| 983 | /* |
Christoph Hellwig | 25fe55e | 2008-07-18 17:13:20 +1000 | [diff] [blame] | 984 | * If disk quotas is on, we make sure that the dquots do exist on disk, |
| 985 | * before we start any other transactions. Trying to do this later |
| 986 | * is messy. We don't care to take a readlock to look at the ids |
| 987 | * in inode here, because we can't hold it across the trans_reserve. |
| 988 | * If the IDs do change before we take the ilock, we're covered |
| 989 | * because the i_*dquot fields will get updated anyway. |
| 990 | */ |
| 991 | if (XFS_IS_QUOTA_ON(mp) && (mask & FSX_PROJID)) { |
Christoph Hellwig | 7d09525 | 2009-06-08 15:33:32 +0200 | [diff] [blame] | 992 | code = xfs_qm_vop_dqalloc(ip, ip->i_d.di_uid, |
Christoph Hellwig | 25fe55e | 2008-07-18 17:13:20 +1000 | [diff] [blame] | 993 | ip->i_d.di_gid, fa->fsx_projid, |
Chandra Seetharaman | 92f8ff7 | 2013-07-11 00:00:40 -0500 | [diff] [blame] | 994 | XFS_QMOPT_PQUOTA, &udqp, NULL, &pdqp); |
Christoph Hellwig | 25fe55e | 2008-07-18 17:13:20 +1000 | [diff] [blame] | 995 | if (code) |
| 996 | return code; |
| 997 | } |
| 998 | |
| 999 | /* |
| 1000 | * For the other attributes, we acquire the inode lock and |
| 1001 | * first do an error checking pass. |
| 1002 | */ |
| 1003 | tp = xfs_trans_alloc(mp, XFS_TRANS_SETATTR_NOT_SIZE); |
Jie Liu | 3d3c8b5 | 2013-08-12 20:49:59 +1000 | [diff] [blame] | 1004 | code = xfs_trans_reserve(tp, &M_RES(mp)->tr_ichange, 0, 0); |
Christoph Hellwig | 25fe55e | 2008-07-18 17:13:20 +1000 | [diff] [blame] | 1005 | if (code) |
| 1006 | goto error_return; |
| 1007 | |
| 1008 | lock_flags = XFS_ILOCK_EXCL; |
| 1009 | xfs_ilock(ip, lock_flags); |
| 1010 | |
| 1011 | /* |
| 1012 | * CAP_FOWNER overrides the following restrictions: |
| 1013 | * |
| 1014 | * The user ID of the calling process must be equal |
| 1015 | * to the file owner ID, except in cases where the |
| 1016 | * CAP_FSETID capability is applicable. |
| 1017 | */ |
David Howells | 91b777125 | 2008-10-31 15:50:04 +1100 | [diff] [blame] | 1018 | if (current_fsuid() != ip->i_d.di_uid && !capable(CAP_FOWNER)) { |
Christoph Hellwig | 25fe55e | 2008-07-18 17:13:20 +1000 | [diff] [blame] | 1019 | code = XFS_ERROR(EPERM); |
| 1020 | goto error_return; |
| 1021 | } |
| 1022 | |
| 1023 | /* |
| 1024 | * Do a quota reservation only if projid is actually going to change. |
| 1025 | */ |
| 1026 | if (mask & FSX_PROJID) { |
Christoph Hellwig | 7d09525 | 2009-06-08 15:33:32 +0200 | [diff] [blame] | 1027 | if (XFS_IS_QUOTA_RUNNING(mp) && |
| 1028 | XFS_IS_PQUOTA_ON(mp) && |
Arkadiusz Mi?kiewicz | 6743099 | 2010-09-26 06:10:18 +0000 | [diff] [blame] | 1029 | xfs_get_projid(ip) != fa->fsx_projid) { |
Christoph Hellwig | 25fe55e | 2008-07-18 17:13:20 +1000 | [diff] [blame] | 1030 | ASSERT(tp); |
Chandra Seetharaman | 92f8ff7 | 2013-07-11 00:00:40 -0500 | [diff] [blame] | 1031 | code = xfs_qm_vop_chown_reserve(tp, ip, udqp, NULL, |
| 1032 | pdqp, capable(CAP_FOWNER) ? |
Christoph Hellwig | 25fe55e | 2008-07-18 17:13:20 +1000 | [diff] [blame] | 1033 | XFS_QMOPT_FORCE_RES : 0); |
| 1034 | if (code) /* out of quota */ |
| 1035 | goto error_return; |
| 1036 | } |
| 1037 | } |
| 1038 | |
| 1039 | if (mask & FSX_EXTSIZE) { |
| 1040 | /* |
| 1041 | * Can't change extent size if any extents are allocated. |
| 1042 | */ |
| 1043 | if (ip->i_d.di_nextents && |
| 1044 | ((ip->i_d.di_extsize << mp->m_sb.sb_blocklog) != |
| 1045 | fa->fsx_extsize)) { |
| 1046 | code = XFS_ERROR(EINVAL); /* EFBIG? */ |
| 1047 | goto error_return; |
| 1048 | } |
| 1049 | |
| 1050 | /* |
| 1051 | * Extent size must be a multiple of the appropriate block |
Dave Chinner | 5315837 | 2011-01-27 12:18:18 +1100 | [diff] [blame] | 1052 | * size, if set at all. It must also be smaller than the |
| 1053 | * maximum extent size supported by the filesystem. |
| 1054 | * |
| 1055 | * Also, for non-realtime files, limit the extent size hint to |
| 1056 | * half the size of the AGs in the filesystem so alignment |
| 1057 | * doesn't result in extents larger than an AG. |
Christoph Hellwig | 25fe55e | 2008-07-18 17:13:20 +1000 | [diff] [blame] | 1058 | */ |
| 1059 | if (fa->fsx_extsize != 0) { |
Dave Chinner | 5315837 | 2011-01-27 12:18:18 +1100 | [diff] [blame] | 1060 | xfs_extlen_t size; |
| 1061 | xfs_fsblock_t extsize_fsb; |
| 1062 | |
| 1063 | extsize_fsb = XFS_B_TO_FSB(mp, fa->fsx_extsize); |
| 1064 | if (extsize_fsb > MAXEXTLEN) { |
| 1065 | code = XFS_ERROR(EINVAL); |
| 1066 | goto error_return; |
| 1067 | } |
Christoph Hellwig | 25fe55e | 2008-07-18 17:13:20 +1000 | [diff] [blame] | 1068 | |
| 1069 | if (XFS_IS_REALTIME_INODE(ip) || |
| 1070 | ((mask & FSX_XFLAGS) && |
| 1071 | (fa->fsx_xflags & XFS_XFLAG_REALTIME))) { |
| 1072 | size = mp->m_sb.sb_rextsize << |
| 1073 | mp->m_sb.sb_blocklog; |
| 1074 | } else { |
| 1075 | size = mp->m_sb.sb_blocksize; |
Dave Chinner | 5315837 | 2011-01-27 12:18:18 +1100 | [diff] [blame] | 1076 | if (extsize_fsb > mp->m_sb.sb_agblocks / 2) { |
| 1077 | code = XFS_ERROR(EINVAL); |
| 1078 | goto error_return; |
| 1079 | } |
Christoph Hellwig | 25fe55e | 2008-07-18 17:13:20 +1000 | [diff] [blame] | 1080 | } |
| 1081 | |
| 1082 | if (fa->fsx_extsize % size) { |
| 1083 | code = XFS_ERROR(EINVAL); |
| 1084 | goto error_return; |
| 1085 | } |
| 1086 | } |
| 1087 | } |
| 1088 | |
| 1089 | |
| 1090 | if (mask & FSX_XFLAGS) { |
| 1091 | /* |
| 1092 | * Can't change realtime flag if any extents are allocated. |
| 1093 | */ |
| 1094 | if ((ip->i_d.di_nextents || ip->i_delayed_blks) && |
| 1095 | (XFS_IS_REALTIME_INODE(ip)) != |
| 1096 | (fa->fsx_xflags & XFS_XFLAG_REALTIME)) { |
| 1097 | code = XFS_ERROR(EINVAL); /* EFBIG? */ |
| 1098 | goto error_return; |
| 1099 | } |
| 1100 | |
| 1101 | /* |
| 1102 | * If realtime flag is set then must have realtime data. |
| 1103 | */ |
| 1104 | if ((fa->fsx_xflags & XFS_XFLAG_REALTIME)) { |
| 1105 | if ((mp->m_sb.sb_rblocks == 0) || |
| 1106 | (mp->m_sb.sb_rextsize == 0) || |
| 1107 | (ip->i_d.di_extsize % mp->m_sb.sb_rextsize)) { |
| 1108 | code = XFS_ERROR(EINVAL); |
| 1109 | goto error_return; |
| 1110 | } |
| 1111 | } |
| 1112 | |
| 1113 | /* |
| 1114 | * Can't modify an immutable/append-only file unless |
| 1115 | * we have appropriate permission. |
| 1116 | */ |
| 1117 | if ((ip->i_d.di_flags & |
| 1118 | (XFS_DIFLAG_IMMUTABLE|XFS_DIFLAG_APPEND) || |
| 1119 | (fa->fsx_xflags & |
| 1120 | (XFS_XFLAG_IMMUTABLE | XFS_XFLAG_APPEND))) && |
| 1121 | !capable(CAP_LINUX_IMMUTABLE)) { |
| 1122 | code = XFS_ERROR(EPERM); |
| 1123 | goto error_return; |
| 1124 | } |
| 1125 | } |
| 1126 | |
Christoph Hellwig | ddc3415 | 2011-09-19 15:00:54 +0000 | [diff] [blame] | 1127 | xfs_trans_ijoin(tp, ip, 0); |
Christoph Hellwig | 25fe55e | 2008-07-18 17:13:20 +1000 | [diff] [blame] | 1128 | |
| 1129 | /* |
| 1130 | * Change file ownership. Must be the owner or privileged. |
Christoph Hellwig | 25fe55e | 2008-07-18 17:13:20 +1000 | [diff] [blame] | 1131 | */ |
| 1132 | if (mask & FSX_PROJID) { |
| 1133 | /* |
| 1134 | * CAP_FSETID overrides the following restrictions: |
| 1135 | * |
| 1136 | * The set-user-ID and set-group-ID bits of a file will be |
| 1137 | * cleared upon successful return from chown() |
| 1138 | */ |
| 1139 | if ((ip->i_d.di_mode & (S_ISUID|S_ISGID)) && |
| 1140 | !capable(CAP_FSETID)) |
| 1141 | ip->i_d.di_mode &= ~(S_ISUID|S_ISGID); |
| 1142 | |
| 1143 | /* |
| 1144 | * Change the ownerships and register quota modifications |
| 1145 | * in the transaction. |
| 1146 | */ |
Arkadiusz Mi?kiewicz | 6743099 | 2010-09-26 06:10:18 +0000 | [diff] [blame] | 1147 | if (xfs_get_projid(ip) != fa->fsx_projid) { |
Christoph Hellwig | 7d09525 | 2009-06-08 15:33:32 +0200 | [diff] [blame] | 1148 | if (XFS_IS_QUOTA_RUNNING(mp) && XFS_IS_PQUOTA_ON(mp)) { |
| 1149 | olddquot = xfs_qm_vop_chown(tp, ip, |
Chandra Seetharaman | 92f8ff7 | 2013-07-11 00:00:40 -0500 | [diff] [blame] | 1150 | &ip->i_pdquot, pdqp); |
Christoph Hellwig | 25fe55e | 2008-07-18 17:13:20 +1000 | [diff] [blame] | 1151 | } |
Arkadiusz Mi?kiewicz | 6743099 | 2010-09-26 06:10:18 +0000 | [diff] [blame] | 1152 | xfs_set_projid(ip, fa->fsx_projid); |
Christoph Hellwig | 25fe55e | 2008-07-18 17:13:20 +1000 | [diff] [blame] | 1153 | |
| 1154 | /* |
| 1155 | * We may have to rev the inode as well as |
| 1156 | * the superblock version number since projids didn't |
| 1157 | * exist before DINODE_VERSION_2 and SB_VERSION_NLINK. |
| 1158 | */ |
Christoph Hellwig | 51ce16d | 2008-11-28 14:23:39 +1100 | [diff] [blame] | 1159 | if (ip->i_d.di_version == 1) |
Christoph Hellwig | 25fe55e | 2008-07-18 17:13:20 +1000 | [diff] [blame] | 1160 | xfs_bump_ino_vers2(tp, ip); |
| 1161 | } |
| 1162 | |
| 1163 | } |
| 1164 | |
| 1165 | if (mask & FSX_EXTSIZE) |
| 1166 | ip->i_d.di_extsize = fa->fsx_extsize >> mp->m_sb.sb_blocklog; |
Christoph Hellwig | f13fae2 | 2008-07-21 16:16:15 +1000 | [diff] [blame] | 1167 | if (mask & FSX_XFLAGS) { |
Christoph Hellwig | 25fe55e | 2008-07-18 17:13:20 +1000 | [diff] [blame] | 1168 | xfs_set_diflags(ip, fa->fsx_xflags); |
Christoph Hellwig | f13fae2 | 2008-07-21 16:16:15 +1000 | [diff] [blame] | 1169 | xfs_diflags_to_linux(ip); |
| 1170 | } |
Christoph Hellwig | 25fe55e | 2008-07-18 17:13:20 +1000 | [diff] [blame] | 1171 | |
Dave Chinner | dcd79a1 | 2010-09-28 12:27:25 +1000 | [diff] [blame] | 1172 | xfs_trans_ichgtime(tp, ip, XFS_ICHGTIME_CHG); |
Christoph Hellwig | 25fe55e | 2008-07-18 17:13:20 +1000 | [diff] [blame] | 1173 | xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE); |
Christoph Hellwig | 25fe55e | 2008-07-18 17:13:20 +1000 | [diff] [blame] | 1174 | |
| 1175 | XFS_STATS_INC(xs_ig_attrchg); |
| 1176 | |
| 1177 | /* |
| 1178 | * If this is a synchronous mount, make sure that the |
| 1179 | * transaction goes to disk before returning to the user. |
| 1180 | * This is slightly sub-optimal in that truncates require |
| 1181 | * two sync transactions instead of one for wsync filesystems. |
| 1182 | * One for the truncate and one for the timestamps since we |
| 1183 | * don't want to change the timestamps unless we're sure the |
| 1184 | * truncate worked. Truncates are less than 1% of the laddis |
| 1185 | * mix so this probably isn't worth the trouble to optimize. |
| 1186 | */ |
| 1187 | if (mp->m_flags & XFS_MOUNT_WSYNC) |
| 1188 | xfs_trans_set_sync(tp); |
| 1189 | code = xfs_trans_commit(tp, 0); |
| 1190 | xfs_iunlock(ip, lock_flags); |
| 1191 | |
| 1192 | /* |
| 1193 | * Release any dquot(s) the inode had kept before chown. |
| 1194 | */ |
Christoph Hellwig | 7d09525 | 2009-06-08 15:33:32 +0200 | [diff] [blame] | 1195 | xfs_qm_dqrele(olddquot); |
| 1196 | xfs_qm_dqrele(udqp); |
Chandra Seetharaman | 92f8ff7 | 2013-07-11 00:00:40 -0500 | [diff] [blame] | 1197 | xfs_qm_dqrele(pdqp); |
Christoph Hellwig | 25fe55e | 2008-07-18 17:13:20 +1000 | [diff] [blame] | 1198 | |
Christoph Hellwig | 288699f | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 1199 | return code; |
Christoph Hellwig | 25fe55e | 2008-07-18 17:13:20 +1000 | [diff] [blame] | 1200 | |
| 1201 | error_return: |
Christoph Hellwig | 7d09525 | 2009-06-08 15:33:32 +0200 | [diff] [blame] | 1202 | xfs_qm_dqrele(udqp); |
Chandra Seetharaman | 92f8ff7 | 2013-07-11 00:00:40 -0500 | [diff] [blame] | 1203 | xfs_qm_dqrele(pdqp); |
Christoph Hellwig | 25fe55e | 2008-07-18 17:13:20 +1000 | [diff] [blame] | 1204 | xfs_trans_cancel(tp, 0); |
| 1205 | if (lock_flags) |
| 1206 | xfs_iunlock(ip, lock_flags); |
| 1207 | return code; |
| 1208 | } |
| 1209 | |
Christoph Hellwig | c83bfab | 2007-10-11 17:47:00 +1000 | [diff] [blame] | 1210 | STATIC int |
Lachlan McIlroy | df26cfe | 2008-04-18 11:44:03 +1000 | [diff] [blame] | 1211 | xfs_ioc_fssetxattr( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1212 | xfs_inode_t *ip, |
| 1213 | struct file *filp, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1214 | void __user *arg) |
| 1215 | { |
| 1216 | struct fsxattr fa; |
Christoph Hellwig | 25fe55e | 2008-07-18 17:13:20 +1000 | [diff] [blame] | 1217 | unsigned int mask; |
Jan Kara | d9457dc | 2012-06-12 16:20:39 +0200 | [diff] [blame] | 1218 | int error; |
Lachlan McIlroy | df26cfe | 2008-04-18 11:44:03 +1000 | [diff] [blame] | 1219 | |
| 1220 | if (copy_from_user(&fa, arg, sizeof(fa))) |
| 1221 | return -EFAULT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1222 | |
Christoph Hellwig | 25fe55e | 2008-07-18 17:13:20 +1000 | [diff] [blame] | 1223 | mask = FSX_XFLAGS | FSX_EXTSIZE | FSX_PROJID; |
Lachlan McIlroy | df26cfe | 2008-04-18 11:44:03 +1000 | [diff] [blame] | 1224 | if (filp->f_flags & (O_NDELAY|O_NONBLOCK)) |
Christoph Hellwig | 25fe55e | 2008-07-18 17:13:20 +1000 | [diff] [blame] | 1225 | mask |= FSX_NONBLOCK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1226 | |
Jan Kara | d9457dc | 2012-06-12 16:20:39 +0200 | [diff] [blame] | 1227 | error = mnt_want_write_file(filp); |
| 1228 | if (error) |
| 1229 | return error; |
| 1230 | error = xfs_ioctl_setattr(ip, &fa, mask); |
| 1231 | mnt_drop_write_file(filp); |
| 1232 | return -error; |
Lachlan McIlroy | df26cfe | 2008-04-18 11:44:03 +1000 | [diff] [blame] | 1233 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1234 | |
Lachlan McIlroy | df26cfe | 2008-04-18 11:44:03 +1000 | [diff] [blame] | 1235 | STATIC int |
| 1236 | xfs_ioc_getxflags( |
| 1237 | xfs_inode_t *ip, |
| 1238 | void __user *arg) |
| 1239 | { |
| 1240 | unsigned int flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1241 | |
Lachlan McIlroy | df26cfe | 2008-04-18 11:44:03 +1000 | [diff] [blame] | 1242 | flags = xfs_di2lxflags(ip->i_d.di_flags); |
| 1243 | if (copy_to_user(arg, &flags, sizeof(flags))) |
| 1244 | return -EFAULT; |
| 1245 | return 0; |
| 1246 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1247 | |
Lachlan McIlroy | df26cfe | 2008-04-18 11:44:03 +1000 | [diff] [blame] | 1248 | STATIC int |
| 1249 | xfs_ioc_setxflags( |
| 1250 | xfs_inode_t *ip, |
| 1251 | struct file *filp, |
| 1252 | void __user *arg) |
| 1253 | { |
Christoph Hellwig | 25fe55e | 2008-07-18 17:13:20 +1000 | [diff] [blame] | 1254 | struct fsxattr fa; |
Lachlan McIlroy | df26cfe | 2008-04-18 11:44:03 +1000 | [diff] [blame] | 1255 | unsigned int flags; |
Christoph Hellwig | 25fe55e | 2008-07-18 17:13:20 +1000 | [diff] [blame] | 1256 | unsigned int mask; |
Jan Kara | d9457dc | 2012-06-12 16:20:39 +0200 | [diff] [blame] | 1257 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1258 | |
Lachlan McIlroy | df26cfe | 2008-04-18 11:44:03 +1000 | [diff] [blame] | 1259 | if (copy_from_user(&flags, arg, sizeof(flags))) |
| 1260 | return -EFAULT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1261 | |
Lachlan McIlroy | df26cfe | 2008-04-18 11:44:03 +1000 | [diff] [blame] | 1262 | if (flags & ~(FS_IMMUTABLE_FL | FS_APPEND_FL | \ |
| 1263 | FS_NOATIME_FL | FS_NODUMP_FL | \ |
| 1264 | FS_SYNC_FL)) |
| 1265 | return -EOPNOTSUPP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1266 | |
Christoph Hellwig | 25fe55e | 2008-07-18 17:13:20 +1000 | [diff] [blame] | 1267 | mask = FSX_XFLAGS; |
Lachlan McIlroy | df26cfe | 2008-04-18 11:44:03 +1000 | [diff] [blame] | 1268 | if (filp->f_flags & (O_NDELAY|O_NONBLOCK)) |
Christoph Hellwig | 25fe55e | 2008-07-18 17:13:20 +1000 | [diff] [blame] | 1269 | mask |= FSX_NONBLOCK; |
| 1270 | fa.fsx_xflags = xfs_merge_ioc_xflags(flags, xfs_ip2xflags(ip)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1271 | |
Jan Kara | d9457dc | 2012-06-12 16:20:39 +0200 | [diff] [blame] | 1272 | error = mnt_want_write_file(filp); |
| 1273 | if (error) |
| 1274 | return error; |
| 1275 | error = xfs_ioctl_setattr(ip, &fa, mask); |
| 1276 | mnt_drop_write_file(filp); |
| 1277 | return -error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1278 | } |
| 1279 | |
| 1280 | STATIC int |
Eric Sandeen | 8a7141a | 2008-11-28 14:23:35 +1100 | [diff] [blame] | 1281 | xfs_getbmap_format(void **ap, struct getbmapx *bmv, int *full) |
| 1282 | { |
| 1283 | struct getbmap __user *base = *ap; |
| 1284 | |
| 1285 | /* copy only getbmap portion (not getbmapx) */ |
| 1286 | if (copy_to_user(base, bmv, sizeof(struct getbmap))) |
| 1287 | return XFS_ERROR(EFAULT); |
| 1288 | |
| 1289 | *ap += sizeof(struct getbmap); |
| 1290 | return 0; |
| 1291 | } |
| 1292 | |
| 1293 | STATIC int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1294 | xfs_ioc_getbmap( |
Christoph Hellwig | 993386c | 2007-08-28 16:12:30 +1000 | [diff] [blame] | 1295 | struct xfs_inode *ip, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1296 | int ioflags, |
| 1297 | unsigned int cmd, |
| 1298 | void __user *arg) |
| 1299 | { |
Eric Sandeen | 8a7141a | 2008-11-28 14:23:35 +1100 | [diff] [blame] | 1300 | struct getbmapx bmx; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1301 | int error; |
| 1302 | |
Eric Sandeen | 8a7141a | 2008-11-28 14:23:35 +1100 | [diff] [blame] | 1303 | if (copy_from_user(&bmx, arg, sizeof(struct getbmapx))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1304 | return -XFS_ERROR(EFAULT); |
| 1305 | |
Eric Sandeen | 8a7141a | 2008-11-28 14:23:35 +1100 | [diff] [blame] | 1306 | if (bmx.bmv_count < 2) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1307 | return -XFS_ERROR(EINVAL); |
| 1308 | |
Eric Sandeen | 8a7141a | 2008-11-28 14:23:35 +1100 | [diff] [blame] | 1309 | bmx.bmv_iflags = (cmd == XFS_IOC_GETBMAPA ? BMV_IF_ATTRFORK : 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1310 | if (ioflags & IO_INVIS) |
Eric Sandeen | 8a7141a | 2008-11-28 14:23:35 +1100 | [diff] [blame] | 1311 | bmx.bmv_iflags |= BMV_IF_NO_DMAPI_READ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1312 | |
Eric Sandeen | 8a7141a | 2008-11-28 14:23:35 +1100 | [diff] [blame] | 1313 | error = xfs_getbmap(ip, &bmx, xfs_getbmap_format, |
| 1314 | (struct getbmap *)arg+1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1315 | if (error) |
| 1316 | return -error; |
| 1317 | |
Eric Sandeen | 8a7141a | 2008-11-28 14:23:35 +1100 | [diff] [blame] | 1318 | /* copy back header - only size of getbmap */ |
| 1319 | if (copy_to_user(arg, &bmx, sizeof(struct getbmap))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1320 | return -XFS_ERROR(EFAULT); |
| 1321 | return 0; |
| 1322 | } |
| 1323 | |
| 1324 | STATIC int |
Eric Sandeen | 8a7141a | 2008-11-28 14:23:35 +1100 | [diff] [blame] | 1325 | xfs_getbmapx_format(void **ap, struct getbmapx *bmv, int *full) |
| 1326 | { |
| 1327 | struct getbmapx __user *base = *ap; |
| 1328 | |
| 1329 | if (copy_to_user(base, bmv, sizeof(struct getbmapx))) |
| 1330 | return XFS_ERROR(EFAULT); |
| 1331 | |
| 1332 | *ap += sizeof(struct getbmapx); |
| 1333 | return 0; |
| 1334 | } |
| 1335 | |
| 1336 | STATIC int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1337 | xfs_ioc_getbmapx( |
Christoph Hellwig | 993386c | 2007-08-28 16:12:30 +1000 | [diff] [blame] | 1338 | struct xfs_inode *ip, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1339 | void __user *arg) |
| 1340 | { |
| 1341 | struct getbmapx bmx; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1342 | int error; |
| 1343 | |
| 1344 | if (copy_from_user(&bmx, arg, sizeof(bmx))) |
| 1345 | return -XFS_ERROR(EFAULT); |
| 1346 | |
| 1347 | if (bmx.bmv_count < 2) |
| 1348 | return -XFS_ERROR(EINVAL); |
| 1349 | |
Eric Sandeen | 8a7141a | 2008-11-28 14:23:35 +1100 | [diff] [blame] | 1350 | if (bmx.bmv_iflags & (~BMV_IF_VALID)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1351 | return -XFS_ERROR(EINVAL); |
| 1352 | |
Eric Sandeen | 8a7141a | 2008-11-28 14:23:35 +1100 | [diff] [blame] | 1353 | error = xfs_getbmap(ip, &bmx, xfs_getbmapx_format, |
| 1354 | (struct getbmapx *)arg+1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1355 | if (error) |
| 1356 | return -error; |
| 1357 | |
Eric Sandeen | 8a7141a | 2008-11-28 14:23:35 +1100 | [diff] [blame] | 1358 | /* copy back header */ |
| 1359 | if (copy_to_user(arg, &bmx, sizeof(struct getbmapx))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1360 | return -XFS_ERROR(EFAULT); |
| 1361 | |
| 1362 | return 0; |
| 1363 | } |
Lachlan McIlroy | df26cfe | 2008-04-18 11:44:03 +1000 | [diff] [blame] | 1364 | |
Dave Chinner | a133d95 | 2013-08-12 20:49:48 +1000 | [diff] [blame] | 1365 | int |
| 1366 | xfs_ioc_swapext( |
| 1367 | xfs_swapext_t *sxp) |
| 1368 | { |
| 1369 | xfs_inode_t *ip, *tip; |
| 1370 | struct fd f, tmp; |
| 1371 | int error = 0; |
| 1372 | |
| 1373 | /* Pull information for the target fd */ |
| 1374 | f = fdget((int)sxp->sx_fdtarget); |
| 1375 | if (!f.file) { |
| 1376 | error = XFS_ERROR(EINVAL); |
| 1377 | goto out; |
| 1378 | } |
| 1379 | |
| 1380 | if (!(f.file->f_mode & FMODE_WRITE) || |
| 1381 | !(f.file->f_mode & FMODE_READ) || |
| 1382 | (f.file->f_flags & O_APPEND)) { |
| 1383 | error = XFS_ERROR(EBADF); |
| 1384 | goto out_put_file; |
| 1385 | } |
| 1386 | |
| 1387 | tmp = fdget((int)sxp->sx_fdtmp); |
| 1388 | if (!tmp.file) { |
| 1389 | error = XFS_ERROR(EINVAL); |
| 1390 | goto out_put_file; |
| 1391 | } |
| 1392 | |
| 1393 | if (!(tmp.file->f_mode & FMODE_WRITE) || |
| 1394 | !(tmp.file->f_mode & FMODE_READ) || |
| 1395 | (tmp.file->f_flags & O_APPEND)) { |
| 1396 | error = XFS_ERROR(EBADF); |
| 1397 | goto out_put_tmp_file; |
| 1398 | } |
| 1399 | |
| 1400 | if (IS_SWAPFILE(file_inode(f.file)) || |
| 1401 | IS_SWAPFILE(file_inode(tmp.file))) { |
| 1402 | error = XFS_ERROR(EINVAL); |
| 1403 | goto out_put_tmp_file; |
| 1404 | } |
| 1405 | |
| 1406 | ip = XFS_I(file_inode(f.file)); |
| 1407 | tip = XFS_I(file_inode(tmp.file)); |
| 1408 | |
| 1409 | if (ip->i_mount != tip->i_mount) { |
| 1410 | error = XFS_ERROR(EINVAL); |
| 1411 | goto out_put_tmp_file; |
| 1412 | } |
| 1413 | |
| 1414 | if (ip->i_ino == tip->i_ino) { |
| 1415 | error = XFS_ERROR(EINVAL); |
| 1416 | goto out_put_tmp_file; |
| 1417 | } |
| 1418 | |
| 1419 | if (XFS_FORCED_SHUTDOWN(ip->i_mount)) { |
| 1420 | error = XFS_ERROR(EIO); |
| 1421 | goto out_put_tmp_file; |
| 1422 | } |
| 1423 | |
| 1424 | error = xfs_swap_extents(ip, tip, sxp); |
| 1425 | |
| 1426 | out_put_tmp_file: |
| 1427 | fdput(tmp); |
| 1428 | out_put_file: |
| 1429 | fdput(f); |
| 1430 | out: |
| 1431 | return error; |
| 1432 | } |
| 1433 | |
Christoph Hellwig | 4d4be48 | 2008-12-09 04:47:33 -0500 | [diff] [blame] | 1434 | /* |
| 1435 | * Note: some of the ioctl's return positive numbers as a |
| 1436 | * byte count indicating success, such as readlink_by_handle. |
| 1437 | * So we don't "sign flip" like most other routines. This means |
| 1438 | * true errors need to be returned as a negative value. |
| 1439 | */ |
| 1440 | long |
| 1441 | xfs_file_ioctl( |
Lachlan McIlroy | df26cfe | 2008-04-18 11:44:03 +1000 | [diff] [blame] | 1442 | struct file *filp, |
Lachlan McIlroy | df26cfe | 2008-04-18 11:44:03 +1000 | [diff] [blame] | 1443 | unsigned int cmd, |
Christoph Hellwig | 4d4be48 | 2008-12-09 04:47:33 -0500 | [diff] [blame] | 1444 | unsigned long p) |
Lachlan McIlroy | df26cfe | 2008-04-18 11:44:03 +1000 | [diff] [blame] | 1445 | { |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 1446 | struct inode *inode = file_inode(filp); |
Christoph Hellwig | 4d4be48 | 2008-12-09 04:47:33 -0500 | [diff] [blame] | 1447 | struct xfs_inode *ip = XFS_I(inode); |
| 1448 | struct xfs_mount *mp = ip->i_mount; |
| 1449 | void __user *arg = (void __user *)p; |
| 1450 | int ioflags = 0; |
Lachlan McIlroy | df26cfe | 2008-04-18 11:44:03 +1000 | [diff] [blame] | 1451 | int error; |
| 1452 | |
Christoph Hellwig | 4d4be48 | 2008-12-09 04:47:33 -0500 | [diff] [blame] | 1453 | if (filp->f_mode & FMODE_NOCMTIME) |
| 1454 | ioflags |= IO_INVIS; |
Lachlan McIlroy | df26cfe | 2008-04-18 11:44:03 +1000 | [diff] [blame] | 1455 | |
Christoph Hellwig | cca28fb | 2010-06-24 11:57:09 +1000 | [diff] [blame] | 1456 | trace_xfs_file_ioctl(ip); |
Christoph Hellwig | 4d4be48 | 2008-12-09 04:47:33 -0500 | [diff] [blame] | 1457 | |
| 1458 | switch (cmd) { |
Christoph Hellwig | a46db60 | 2011-01-07 13:02:04 +0000 | [diff] [blame] | 1459 | case FITRIM: |
| 1460 | return xfs_ioc_trim(mp, arg); |
Lachlan McIlroy | df26cfe | 2008-04-18 11:44:03 +1000 | [diff] [blame] | 1461 | case XFS_IOC_ALLOCSP: |
| 1462 | case XFS_IOC_FREESP: |
| 1463 | case XFS_IOC_RESVSP: |
| 1464 | case XFS_IOC_UNRESVSP: |
| 1465 | case XFS_IOC_ALLOCSP64: |
| 1466 | case XFS_IOC_FREESP64: |
| 1467 | case XFS_IOC_RESVSP64: |
Dave Chinner | 4472235 | 2010-08-24 12:02:11 +1000 | [diff] [blame] | 1468 | case XFS_IOC_UNRESVSP64: |
| 1469 | case XFS_IOC_ZERO_RANGE: { |
sandeen@sandeen.net | 743bb465 | 2008-11-25 21:20:06 -0600 | [diff] [blame] | 1470 | xfs_flock64_t bf; |
Lachlan McIlroy | df26cfe | 2008-04-18 11:44:03 +1000 | [diff] [blame] | 1471 | |
sandeen@sandeen.net | 743bb465 | 2008-11-25 21:20:06 -0600 | [diff] [blame] | 1472 | if (copy_from_user(&bf, arg, sizeof(bf))) |
| 1473 | return -XFS_ERROR(EFAULT); |
| 1474 | return xfs_ioc_space(ip, inode, filp, ioflags, cmd, &bf); |
| 1475 | } |
Lachlan McIlroy | df26cfe | 2008-04-18 11:44:03 +1000 | [diff] [blame] | 1476 | case XFS_IOC_DIOINFO: { |
| 1477 | struct dioattr da; |
| 1478 | xfs_buftarg_t *target = |
| 1479 | XFS_IS_REALTIME_INODE(ip) ? |
| 1480 | mp->m_rtdev_targp : mp->m_ddev_targp; |
| 1481 | |
| 1482 | da.d_mem = da.d_miniosz = 1 << target->bt_sshift; |
| 1483 | da.d_maxiosz = INT_MAX & ~(da.d_miniosz - 1); |
| 1484 | |
| 1485 | if (copy_to_user(arg, &da, sizeof(da))) |
| 1486 | return -XFS_ERROR(EFAULT); |
| 1487 | return 0; |
| 1488 | } |
| 1489 | |
| 1490 | case XFS_IOC_FSBULKSTAT_SINGLE: |
| 1491 | case XFS_IOC_FSBULKSTAT: |
| 1492 | case XFS_IOC_FSINUMBERS: |
| 1493 | return xfs_ioc_bulkstat(mp, cmd, arg); |
| 1494 | |
| 1495 | case XFS_IOC_FSGEOMETRY_V1: |
| 1496 | return xfs_ioc_fsgeometry_v1(mp, arg); |
| 1497 | |
| 1498 | case XFS_IOC_FSGEOMETRY: |
| 1499 | return xfs_ioc_fsgeometry(mp, arg); |
| 1500 | |
| 1501 | case XFS_IOC_GETVERSION: |
| 1502 | return put_user(inode->i_generation, (int __user *)arg); |
| 1503 | |
| 1504 | case XFS_IOC_FSGETXATTR: |
| 1505 | return xfs_ioc_fsgetxattr(ip, 0, arg); |
| 1506 | case XFS_IOC_FSGETXATTRA: |
| 1507 | return xfs_ioc_fsgetxattr(ip, 1, arg); |
Lachlan McIlroy | 3b2816b | 2008-04-18 12:43:35 +1000 | [diff] [blame] | 1508 | case XFS_IOC_FSSETXATTR: |
Lachlan McIlroy | 65e67f5 | 2008-04-18 12:59:45 +1000 | [diff] [blame] | 1509 | return xfs_ioc_fssetxattr(ip, filp, arg); |
| 1510 | case XFS_IOC_GETXFLAGS: |
| 1511 | return xfs_ioc_getxflags(ip, arg); |
| 1512 | case XFS_IOC_SETXFLAGS: |
| 1513 | return xfs_ioc_setxflags(ip, filp, arg); |
Lachlan McIlroy | df26cfe | 2008-04-18 11:44:03 +1000 | [diff] [blame] | 1514 | |
| 1515 | case XFS_IOC_FSSETDM: { |
| 1516 | struct fsdmidata dmi; |
| 1517 | |
| 1518 | if (copy_from_user(&dmi, arg, sizeof(dmi))) |
| 1519 | return -XFS_ERROR(EFAULT); |
| 1520 | |
Jan Kara | d9457dc | 2012-06-12 16:20:39 +0200 | [diff] [blame] | 1521 | error = mnt_want_write_file(filp); |
| 1522 | if (error) |
| 1523 | return error; |
| 1524 | |
Lachlan McIlroy | df26cfe | 2008-04-18 11:44:03 +1000 | [diff] [blame] | 1525 | error = xfs_set_dmattrs(ip, dmi.fsd_dmevmask, |
| 1526 | dmi.fsd_dmstate); |
Jan Kara | d9457dc | 2012-06-12 16:20:39 +0200 | [diff] [blame] | 1527 | mnt_drop_write_file(filp); |
Lachlan McIlroy | df26cfe | 2008-04-18 11:44:03 +1000 | [diff] [blame] | 1528 | return -error; |
| 1529 | } |
| 1530 | |
| 1531 | case XFS_IOC_GETBMAP: |
| 1532 | case XFS_IOC_GETBMAPA: |
| 1533 | return xfs_ioc_getbmap(ip, ioflags, cmd, arg); |
| 1534 | |
| 1535 | case XFS_IOC_GETBMAPX: |
| 1536 | return xfs_ioc_getbmapx(ip, arg); |
| 1537 | |
| 1538 | case XFS_IOC_FD_TO_HANDLE: |
| 1539 | case XFS_IOC_PATH_TO_HANDLE: |
sandeen@sandeen.net | 743bb465 | 2008-11-25 21:20:06 -0600 | [diff] [blame] | 1540 | case XFS_IOC_PATH_TO_FSHANDLE: { |
| 1541 | xfs_fsop_handlereq_t hreq; |
Lachlan McIlroy | df26cfe | 2008-04-18 11:44:03 +1000 | [diff] [blame] | 1542 | |
sandeen@sandeen.net | 743bb465 | 2008-11-25 21:20:06 -0600 | [diff] [blame] | 1543 | if (copy_from_user(&hreq, arg, sizeof(hreq))) |
| 1544 | return -XFS_ERROR(EFAULT); |
| 1545 | return xfs_find_handle(cmd, &hreq); |
| 1546 | } |
| 1547 | case XFS_IOC_OPEN_BY_HANDLE: { |
| 1548 | xfs_fsop_handlereq_t hreq; |
Lachlan McIlroy | df26cfe | 2008-04-18 11:44:03 +1000 | [diff] [blame] | 1549 | |
sandeen@sandeen.net | 743bb465 | 2008-11-25 21:20:06 -0600 | [diff] [blame] | 1550 | if (copy_from_user(&hreq, arg, sizeof(xfs_fsop_handlereq_t))) |
| 1551 | return -XFS_ERROR(EFAULT); |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 1552 | return xfs_open_by_handle(filp, &hreq); |
sandeen@sandeen.net | 743bb465 | 2008-11-25 21:20:06 -0600 | [diff] [blame] | 1553 | } |
Lachlan McIlroy | df26cfe | 2008-04-18 11:44:03 +1000 | [diff] [blame] | 1554 | case XFS_IOC_FSSETDM_BY_HANDLE: |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 1555 | return xfs_fssetdm_by_handle(filp, arg); |
Lachlan McIlroy | df26cfe | 2008-04-18 11:44:03 +1000 | [diff] [blame] | 1556 | |
sandeen@sandeen.net | 743bb465 | 2008-11-25 21:20:06 -0600 | [diff] [blame] | 1557 | case XFS_IOC_READLINK_BY_HANDLE: { |
| 1558 | xfs_fsop_handlereq_t hreq; |
Lachlan McIlroy | df26cfe | 2008-04-18 11:44:03 +1000 | [diff] [blame] | 1559 | |
sandeen@sandeen.net | 743bb465 | 2008-11-25 21:20:06 -0600 | [diff] [blame] | 1560 | if (copy_from_user(&hreq, arg, sizeof(xfs_fsop_handlereq_t))) |
| 1561 | return -XFS_ERROR(EFAULT); |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 1562 | return xfs_readlink_by_handle(filp, &hreq); |
sandeen@sandeen.net | 743bb465 | 2008-11-25 21:20:06 -0600 | [diff] [blame] | 1563 | } |
Lachlan McIlroy | df26cfe | 2008-04-18 11:44:03 +1000 | [diff] [blame] | 1564 | case XFS_IOC_ATTRLIST_BY_HANDLE: |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 1565 | return xfs_attrlist_by_handle(filp, arg); |
Lachlan McIlroy | df26cfe | 2008-04-18 11:44:03 +1000 | [diff] [blame] | 1566 | |
| 1567 | case XFS_IOC_ATTRMULTI_BY_HANDLE: |
Christoph Hellwig | d296d30 | 2009-01-19 02:02:57 +0100 | [diff] [blame] | 1568 | return xfs_attrmulti_by_handle(filp, arg); |
Lachlan McIlroy | df26cfe | 2008-04-18 11:44:03 +1000 | [diff] [blame] | 1569 | |
| 1570 | case XFS_IOC_SWAPEXT: { |
sandeen@sandeen.net | 743bb465 | 2008-11-25 21:20:06 -0600 | [diff] [blame] | 1571 | struct xfs_swapext sxp; |
| 1572 | |
| 1573 | if (copy_from_user(&sxp, arg, sizeof(xfs_swapext_t))) |
| 1574 | return -XFS_ERROR(EFAULT); |
Jan Kara | d9457dc | 2012-06-12 16:20:39 +0200 | [diff] [blame] | 1575 | error = mnt_want_write_file(filp); |
| 1576 | if (error) |
| 1577 | return error; |
Dave Chinner | a133d95 | 2013-08-12 20:49:48 +1000 | [diff] [blame] | 1578 | error = xfs_ioc_swapext(&sxp); |
Jan Kara | d9457dc | 2012-06-12 16:20:39 +0200 | [diff] [blame] | 1579 | mnt_drop_write_file(filp); |
Lachlan McIlroy | df26cfe | 2008-04-18 11:44:03 +1000 | [diff] [blame] | 1580 | return -error; |
| 1581 | } |
| 1582 | |
| 1583 | case XFS_IOC_FSCOUNTS: { |
| 1584 | xfs_fsop_counts_t out; |
| 1585 | |
| 1586 | error = xfs_fs_counts(mp, &out); |
| 1587 | if (error) |
| 1588 | return -error; |
| 1589 | |
| 1590 | if (copy_to_user(arg, &out, sizeof(out))) |
| 1591 | return -XFS_ERROR(EFAULT); |
| 1592 | return 0; |
| 1593 | } |
| 1594 | |
| 1595 | case XFS_IOC_SET_RESBLKS: { |
| 1596 | xfs_fsop_resblks_t inout; |
| 1597 | __uint64_t in; |
| 1598 | |
| 1599 | if (!capable(CAP_SYS_ADMIN)) |
| 1600 | return -EPERM; |
| 1601 | |
Eric Sandeen | d5db0f9 | 2010-02-05 22:59:53 +0000 | [diff] [blame] | 1602 | if (mp->m_flags & XFS_MOUNT_RDONLY) |
| 1603 | return -XFS_ERROR(EROFS); |
| 1604 | |
Lachlan McIlroy | df26cfe | 2008-04-18 11:44:03 +1000 | [diff] [blame] | 1605 | if (copy_from_user(&inout, arg, sizeof(inout))) |
| 1606 | return -XFS_ERROR(EFAULT); |
| 1607 | |
Jan Kara | d9457dc | 2012-06-12 16:20:39 +0200 | [diff] [blame] | 1608 | error = mnt_want_write_file(filp); |
| 1609 | if (error) |
| 1610 | return error; |
| 1611 | |
Lachlan McIlroy | df26cfe | 2008-04-18 11:44:03 +1000 | [diff] [blame] | 1612 | /* input parameter is passed in resblks field of structure */ |
| 1613 | in = inout.resblks; |
| 1614 | error = xfs_reserve_blocks(mp, &in, &inout); |
Jan Kara | d9457dc | 2012-06-12 16:20:39 +0200 | [diff] [blame] | 1615 | mnt_drop_write_file(filp); |
Lachlan McIlroy | df26cfe | 2008-04-18 11:44:03 +1000 | [diff] [blame] | 1616 | if (error) |
| 1617 | return -error; |
| 1618 | |
| 1619 | if (copy_to_user(arg, &inout, sizeof(inout))) |
| 1620 | return -XFS_ERROR(EFAULT); |
| 1621 | return 0; |
| 1622 | } |
| 1623 | |
| 1624 | case XFS_IOC_GET_RESBLKS: { |
| 1625 | xfs_fsop_resblks_t out; |
| 1626 | |
| 1627 | if (!capable(CAP_SYS_ADMIN)) |
| 1628 | return -EPERM; |
| 1629 | |
| 1630 | error = xfs_reserve_blocks(mp, NULL, &out); |
| 1631 | if (error) |
| 1632 | return -error; |
| 1633 | |
| 1634 | if (copy_to_user(arg, &out, sizeof(out))) |
| 1635 | return -XFS_ERROR(EFAULT); |
| 1636 | |
| 1637 | return 0; |
| 1638 | } |
| 1639 | |
| 1640 | case XFS_IOC_FSGROWFSDATA: { |
| 1641 | xfs_growfs_data_t in; |
| 1642 | |
Lachlan McIlroy | df26cfe | 2008-04-18 11:44:03 +1000 | [diff] [blame] | 1643 | if (copy_from_user(&in, arg, sizeof(in))) |
| 1644 | return -XFS_ERROR(EFAULT); |
| 1645 | |
Jan Kara | d9457dc | 2012-06-12 16:20:39 +0200 | [diff] [blame] | 1646 | error = mnt_want_write_file(filp); |
| 1647 | if (error) |
| 1648 | return error; |
Lachlan McIlroy | df26cfe | 2008-04-18 11:44:03 +1000 | [diff] [blame] | 1649 | error = xfs_growfs_data(mp, &in); |
Jan Kara | d9457dc | 2012-06-12 16:20:39 +0200 | [diff] [blame] | 1650 | mnt_drop_write_file(filp); |
Lachlan McIlroy | df26cfe | 2008-04-18 11:44:03 +1000 | [diff] [blame] | 1651 | return -error; |
| 1652 | } |
| 1653 | |
| 1654 | case XFS_IOC_FSGROWFSLOG: { |
| 1655 | xfs_growfs_log_t in; |
| 1656 | |
Lachlan McIlroy | df26cfe | 2008-04-18 11:44:03 +1000 | [diff] [blame] | 1657 | if (copy_from_user(&in, arg, sizeof(in))) |
| 1658 | return -XFS_ERROR(EFAULT); |
| 1659 | |
Jan Kara | d9457dc | 2012-06-12 16:20:39 +0200 | [diff] [blame] | 1660 | error = mnt_want_write_file(filp); |
| 1661 | if (error) |
| 1662 | return error; |
Lachlan McIlroy | df26cfe | 2008-04-18 11:44:03 +1000 | [diff] [blame] | 1663 | error = xfs_growfs_log(mp, &in); |
Jan Kara | d9457dc | 2012-06-12 16:20:39 +0200 | [diff] [blame] | 1664 | mnt_drop_write_file(filp); |
Lachlan McIlroy | df26cfe | 2008-04-18 11:44:03 +1000 | [diff] [blame] | 1665 | return -error; |
| 1666 | } |
| 1667 | |
| 1668 | case XFS_IOC_FSGROWFSRT: { |
| 1669 | xfs_growfs_rt_t in; |
| 1670 | |
Lachlan McIlroy | df26cfe | 2008-04-18 11:44:03 +1000 | [diff] [blame] | 1671 | if (copy_from_user(&in, arg, sizeof(in))) |
| 1672 | return -XFS_ERROR(EFAULT); |
| 1673 | |
Jan Kara | d9457dc | 2012-06-12 16:20:39 +0200 | [diff] [blame] | 1674 | error = mnt_want_write_file(filp); |
| 1675 | if (error) |
| 1676 | return error; |
Lachlan McIlroy | df26cfe | 2008-04-18 11:44:03 +1000 | [diff] [blame] | 1677 | error = xfs_growfs_rt(mp, &in); |
Jan Kara | d9457dc | 2012-06-12 16:20:39 +0200 | [diff] [blame] | 1678 | mnt_drop_write_file(filp); |
Lachlan McIlroy | df26cfe | 2008-04-18 11:44:03 +1000 | [diff] [blame] | 1679 | return -error; |
| 1680 | } |
| 1681 | |
Lachlan McIlroy | df26cfe | 2008-04-18 11:44:03 +1000 | [diff] [blame] | 1682 | case XFS_IOC_GOINGDOWN: { |
| 1683 | __uint32_t in; |
| 1684 | |
| 1685 | if (!capable(CAP_SYS_ADMIN)) |
| 1686 | return -EPERM; |
| 1687 | |
| 1688 | if (get_user(in, (__uint32_t __user *)arg)) |
| 1689 | return -XFS_ERROR(EFAULT); |
| 1690 | |
| 1691 | error = xfs_fs_goingdown(mp, in); |
| 1692 | return -error; |
| 1693 | } |
| 1694 | |
| 1695 | case XFS_IOC_ERROR_INJECTION: { |
| 1696 | xfs_error_injection_t in; |
| 1697 | |
| 1698 | if (!capable(CAP_SYS_ADMIN)) |
| 1699 | return -EPERM; |
| 1700 | |
| 1701 | if (copy_from_user(&in, arg, sizeof(in))) |
| 1702 | return -XFS_ERROR(EFAULT); |
| 1703 | |
| 1704 | error = xfs_errortag_add(in.errtag, mp); |
| 1705 | return -error; |
| 1706 | } |
| 1707 | |
| 1708 | case XFS_IOC_ERROR_CLEARALL: |
| 1709 | if (!capable(CAP_SYS_ADMIN)) |
| 1710 | return -EPERM; |
| 1711 | |
| 1712 | error = xfs_errortag_clearall(mp, 1); |
| 1713 | return -error; |
| 1714 | |
Brian Foster | 8ca149d | 2012-11-07 12:21:12 -0500 | [diff] [blame] | 1715 | case XFS_IOC_FREE_EOFBLOCKS: { |
| 1716 | struct xfs_eofblocks eofb; |
| 1717 | |
| 1718 | if (copy_from_user(&eofb, arg, sizeof(eofb))) |
| 1719 | return -XFS_ERROR(EFAULT); |
| 1720 | |
| 1721 | if (eofb.eof_version != XFS_EOFBLOCKS_VERSION) |
| 1722 | return -XFS_ERROR(EINVAL); |
| 1723 | |
| 1724 | if (eofb.eof_flags & ~XFS_EOF_FLAGS_VALID) |
| 1725 | return -XFS_ERROR(EINVAL); |
| 1726 | |
Brian Foster | 3e3f9f5 | 2012-11-07 12:21:13 -0500 | [diff] [blame] | 1727 | if (memchr_inv(&eofb.pad32, 0, sizeof(eofb.pad32)) || |
| 1728 | memchr_inv(eofb.pad64, 0, sizeof(eofb.pad64))) |
Brian Foster | 8ca149d | 2012-11-07 12:21:12 -0500 | [diff] [blame] | 1729 | return -XFS_ERROR(EINVAL); |
| 1730 | |
| 1731 | error = xfs_icache_free_eofblocks(mp, &eofb); |
| 1732 | return -error; |
| 1733 | } |
| 1734 | |
Lachlan McIlroy | df26cfe | 2008-04-18 11:44:03 +1000 | [diff] [blame] | 1735 | default: |
| 1736 | return -ENOTTY; |
| 1737 | } |
| 1738 | } |