blob: e939c20cb4dee90f70731d5d668cbef98b8354c0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * 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 Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * 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 Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * 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 Torvalds1da177e2005-04-16 15:20:36 -070017 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "xfs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include "xfs_fs.h"
Dave Chinner70a98832013-10-23 10:36:05 +110020#include "xfs_shared.h"
Dave Chinner239880e2013-10-23 10:50:10 +110021#include "xfs_format.h"
22#include "xfs_log_format.h"
23#include "xfs_trans_resv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include "xfs_inode.h"
Hannes Eder7bf446f2009-03-05 15:20:25 +010026#include "xfs_ioctl.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110027#include "xfs_alloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include "xfs_rtalloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "xfs_itable.h"
Nathan Scotta844f452005-11-02 14:38:42 +110030#include "xfs_error.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "xfs_attr.h"
Nathan Scotta844f452005-11-02 14:38:42 +110032#include "xfs_bmap.h"
Dave Chinner68988112013-08-12 20:49:42 +100033#include "xfs_bmap_util.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "xfs_fsops.h"
Christoph Hellwiga46db602011-01-07 13:02:04 +000035#include "xfs_discard.h"
Christoph Hellwig25fe55e2008-07-18 17:13:20 +100036#include "xfs_quota.h"
Christoph Hellwigd296d302009-01-19 02:02:57 +010037#include "xfs_export.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000038#include "xfs_trace.h"
Brian Foster8ca149d2012-11-07 12:21:12 -050039#include "xfs_icache.h"
Dave Chinnerc24b5df2013-08-12 20:49:45 +100040#include "xfs_symlink.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110041#include "xfs_trans.h"
Christoph Hellwig781355c2015-02-16 11:59:50 +110042#include "xfs_pnfs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080044#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/dcache.h>
46#include <linux/mount.h>
47#include <linux/namei.h>
48#include <linux/pagemap.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090049#include <linux/slab.h>
Christoph Hellwigd296d302009-01-19 02:02:57 +010050#include <linux/exportfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52/*
53 * xfs_find_handle maps from userspace xfs_fsop_handlereq structure to
54 * a file or fs handle.
55 *
56 * XFS_IOC_PATH_TO_FSHANDLE
57 * returns fs handle for a mount point or path within that mount point
58 * XFS_IOC_FD_TO_HANDLE
59 * returns full handle for a FD opened in user space
60 * XFS_IOC_PATH_TO_HANDLE
61 * returns full handle for a path
62 */
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -060063int
Linus Torvalds1da177e2005-04-16 15:20:36 -070064xfs_find_handle(
65 unsigned int cmd,
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -060066 xfs_fsop_handlereq_t *hreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067{
68 int hsize;
69 xfs_handle_t handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 struct inode *inode;
Dave Chinnera30b0362013-09-02 20:49:36 +100071 struct fd f = {NULL};
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010072 struct path path;
Al Viro2903ff02012-08-28 12:52:22 -040073 int error;
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010074 struct xfs_inode *ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010076 if (cmd == XFS_IOC_FD_TO_HANDLE) {
Al Viro2903ff02012-08-28 12:52:22 -040077 f = fdget(hreq->fd);
78 if (!f.file)
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010079 return -EBADF;
Al Viro496ad9a2013-01-23 17:07:38 -050080 inode = file_inode(f.file);
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010081 } else {
82 error = user_lpath((const char __user *)hreq->path, &path);
83 if (error)
84 return error;
David Howells2b0143b2015-03-17 22:25:59 +000085 inode = d_inode(path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 }
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010087 ip = XFS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010089 /*
90 * We can only generate handles for inodes residing on a XFS filesystem,
91 * and only for regular files, directories or symbolic links.
92 */
93 error = -EINVAL;
94 if (inode->i_sb->s_magic != XFS_SB_MAGIC)
95 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010097 error = -EBADF;
98 if (!S_ISREG(inode->i_mode) &&
99 !S_ISDIR(inode->i_mode) &&
100 !S_ISLNK(inode->i_mode))
101 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100104 memcpy(&handle.ha_fsid, ip->i_mount->m_fixedfsid, sizeof(xfs_fsid_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100106 if (cmd == XFS_IOC_PATH_TO_FSHANDLE) {
107 /*
108 * This handle only contains an fsid, zero the rest.
109 */
110 memset(&handle.ha_fid, 0, sizeof(handle.ha_fid));
111 hsize = sizeof(xfs_fsid_t);
112 } else {
Christoph Hellwigc6143912007-09-14 15:22:37 +1000113 handle.ha_fid.fid_len = sizeof(xfs_fid_t) -
114 sizeof(handle.ha_fid.fid_len);
115 handle.ha_fid.fid_pad = 0;
116 handle.ha_fid.fid_gen = ip->i_d.di_gen;
117 handle.ha_fid.fid_ino = ip->i_ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
119 hsize = XFS_HSIZE(handle);
120 }
121
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100122 error = -EFAULT;
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600123 if (copy_to_user(hreq->ohandle, &handle, hsize) ||
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100124 copy_to_user(hreq->ohandlen, &hsize, sizeof(__s32)))
125 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100127 error = 0;
128
129 out_put:
130 if (cmd == XFS_IOC_FD_TO_HANDLE)
Al Viro2903ff02012-08-28 12:52:22 -0400131 fdput(f);
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100132 else
133 path_put(&path);
134 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135}
136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137/*
Christoph Hellwigd296d302009-01-19 02:02:57 +0100138 * No need to do permission checks on the various pathname components
139 * as the handle operations are privileged.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 */
141STATIC int
Christoph Hellwigd296d302009-01-19 02:02:57 +0100142xfs_handle_acceptable(
143 void *context,
144 struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145{
Christoph Hellwigd296d302009-01-19 02:02:57 +0100146 return 1;
147}
148
149/*
150 * Convert userspace handle data into a dentry.
151 */
152struct dentry *
153xfs_handle_to_dentry(
154 struct file *parfilp,
155 void __user *uhandle,
156 u32 hlen)
157{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 xfs_handle_t handle;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100159 struct xfs_fid64 fid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
161 /*
162 * Only allow handle opens under a directory.
163 */
Al Viro496ad9a2013-01-23 17:07:38 -0500164 if (!S_ISDIR(file_inode(parfilp)->i_mode))
Christoph Hellwigd296d302009-01-19 02:02:57 +0100165 return ERR_PTR(-ENOTDIR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Christoph Hellwigd296d302009-01-19 02:02:57 +0100167 if (hlen != sizeof(xfs_handle_t))
168 return ERR_PTR(-EINVAL);
169 if (copy_from_user(&handle, uhandle, hlen))
170 return ERR_PTR(-EFAULT);
171 if (handle.ha_fid.fid_len !=
172 sizeof(handle.ha_fid) - sizeof(handle.ha_fid.fid_len))
173 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Christoph Hellwigd296d302009-01-19 02:02:57 +0100175 memset(&fid, 0, sizeof(struct fid));
176 fid.ino = handle.ha_fid.fid_ino;
177 fid.gen = handle.ha_fid.fid_gen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Christoph Hellwigd296d302009-01-19 02:02:57 +0100179 return exportfs_decode_fh(parfilp->f_path.mnt, (struct fid *)&fid, 3,
180 FILEID_INO32_GEN | XFS_FILEID_TYPE_64FLAG,
181 xfs_handle_acceptable, NULL);
182}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
Christoph Hellwigd296d302009-01-19 02:02:57 +0100184STATIC struct dentry *
185xfs_handlereq_to_dentry(
186 struct file *parfilp,
187 xfs_fsop_handlereq_t *hreq)
188{
189 return xfs_handle_to_dentry(parfilp, hreq->ihandle, hreq->ihandlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190}
191
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600192int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193xfs_open_by_handle(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 struct file *parfilp,
Christoph Hellwigd296d302009-01-19 02:02:57 +0100195 xfs_fsop_handlereq_t *hreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196{
David Howells745ca242008-11-14 10:39:22 +1100197 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 int error;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100199 int fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 int permflag;
201 struct file *filp;
202 struct inode *inode;
203 struct dentry *dentry;
Dave Chinner1a1d7722012-03-22 05:15:06 +0000204 fmode_t fmode;
Al Viro765927b2012-06-26 21:58:53 +0400205 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
207 if (!capable(CAP_SYS_ADMIN))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000208 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Christoph Hellwigd296d302009-01-19 02:02:57 +0100210 dentry = xfs_handlereq_to_dentry(parfilp, hreq);
211 if (IS_ERR(dentry))
212 return PTR_ERR(dentry);
David Howells2b0143b2015-03-17 22:25:59 +0000213 inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
215 /* Restrict xfs_open_by_handle to directories & regular files. */
216 if (!(S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode))) {
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000217 error = -EPERM;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100218 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 }
220
221#if BITS_PER_LONG != 32
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600222 hreq->oflags |= O_LARGEFILE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223#endif
Christoph Hellwigd296d302009-01-19 02:02:57 +0100224
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600225 permflag = hreq->oflags;
Dave Chinner1a1d7722012-03-22 05:15:06 +0000226 fmode = OPEN_FMODE(permflag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 if ((!(permflag & O_APPEND) || (permflag & O_TRUNC)) &&
Dave Chinner1a1d7722012-03-22 05:15:06 +0000228 (fmode & FMODE_WRITE) && IS_APPEND(inode)) {
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000229 error = -EPERM;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100230 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 }
232
Dave Chinner1a1d7722012-03-22 05:15:06 +0000233 if ((fmode & FMODE_WRITE) && IS_IMMUTABLE(inode)) {
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000234 error = -EACCES;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100235 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 }
237
238 /* Can't write directories. */
Dave Chinner1a1d7722012-03-22 05:15:06 +0000239 if (S_ISDIR(inode->i_mode) && (fmode & FMODE_WRITE)) {
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000240 error = -EISDIR;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100241 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 }
243
Yann Droneaud862a6292013-07-02 18:39:34 +0200244 fd = get_unused_fd_flags(0);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100245 if (fd < 0) {
246 error = fd;
247 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 }
249
Al Viro765927b2012-06-26 21:58:53 +0400250 path.mnt = parfilp->f_path.mnt;
251 path.dentry = dentry;
252 filp = dentry_open(&path, hreq->oflags, cred);
253 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 if (IS_ERR(filp)) {
Christoph Hellwigd296d302009-01-19 02:02:57 +0100255 put_unused_fd(fd);
256 return PTR_ERR(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 }
Christoph Hellwig4d4be482008-12-09 04:47:33 -0500258
Al Viro03209372011-07-25 20:54:24 -0400259 if (S_ISREG(inode->i_mode)) {
Vlad Apostolov2e2e7bb2006-11-11 18:04:47 +1100260 filp->f_flags |= O_NOATIME;
Christoph Hellwig4d4be482008-12-09 04:47:33 -0500261 filp->f_mode |= FMODE_NOCMTIME;
Vlad Apostolov2e2e7bb2006-11-11 18:04:47 +1100262 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Christoph Hellwigd296d302009-01-19 02:02:57 +0100264 fd_install(fd, filp);
265 return fd;
266
267 out_dput:
268 dput(dentry);
269 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270}
271
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600272int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273xfs_readlink_by_handle(
Christoph Hellwigd296d302009-01-19 02:02:57 +0100274 struct file *parfilp,
275 xfs_fsop_handlereq_t *hreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
Christoph Hellwigd296d302009-01-19 02:02:57 +0100277 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 __u32 olen;
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000279 void *link;
280 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
282 if (!capable(CAP_SYS_ADMIN))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000283 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
Christoph Hellwigd296d302009-01-19 02:02:57 +0100285 dentry = xfs_handlereq_to_dentry(parfilp, hreq);
286 if (IS_ERR(dentry))
287 return PTR_ERR(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
289 /* Restrict this handle operation to symlinks only. */
David Howellse36cb0b2015-01-29 12:02:35 +0000290 if (!d_is_symlink(dentry)) {
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000291 error = -EINVAL;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100292 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 }
294
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600295 if (copy_from_user(&olen, hreq->ohandlen, sizeof(__u32))) {
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000296 error = -EFAULT;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100297 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000300 link = kmalloc(MAXPATHLEN+1, GFP_KERNEL);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100301 if (!link) {
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000302 error = -ENOMEM;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100303 goto out_dput;
304 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
David Howells2b0143b2015-03-17 22:25:59 +0000306 error = xfs_readlink(XFS_I(d_inode(dentry)), link);
Nathan Scott67fcaa72006-06-09 17:00:52 +1000307 if (error)
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000308 goto out_kfree;
Al Viro5d826c82014-03-14 13:42:45 -0400309 error = readlink_copy(hreq->ohandle, olen, link);
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000310 if (error)
311 goto out_kfree;
Nathan Scott67fcaa72006-06-09 17:00:52 +1000312
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000313 out_kfree:
314 kfree(link);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100315 out_dput:
316 dput(dentry);
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000317 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318}
319
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000320int
321xfs_set_dmattrs(
322 xfs_inode_t *ip,
323 u_int evmask,
324 u_int16_t state)
325{
326 xfs_mount_t *mp = ip->i_mount;
327 xfs_trans_t *tp;
328 int error;
329
330 if (!capable(CAP_SYS_ADMIN))
Dave Chinner24513372014-06-25 14:58:08 +1000331 return -EPERM;
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000332
333 if (XFS_FORCED_SHUTDOWN(mp))
Dave Chinner24513372014-06-25 14:58:08 +1000334 return -EIO;
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000335
336 tp = xfs_trans_alloc(mp, XFS_TRANS_SET_DMATTRS);
Jie Liu3d3c8b52013-08-12 20:49:59 +1000337 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_ichange, 0, 0);
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000338 if (error) {
Christoph Hellwig4906e212015-06-04 13:47:56 +1000339 xfs_trans_cancel(tp);
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000340 return error;
341 }
342 xfs_ilock(ip, XFS_ILOCK_EXCL);
343 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
344
345 ip->i_d.di_dmevmask = evmask;
346 ip->i_d.di_dmstate = state;
347
348 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
Christoph Hellwig70393312015-06-04 13:48:08 +1000349 error = xfs_trans_commit(tp);
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000350
351 return error;
352}
353
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354STATIC int
355xfs_fssetdm_by_handle(
Christoph Hellwigd296d302009-01-19 02:02:57 +0100356 struct file *parfilp,
357 void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358{
359 int error;
360 struct fsdmidata fsd;
361 xfs_fsop_setdm_handlereq_t dmhreq;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100362 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
364 if (!capable(CAP_MKNOD))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000365 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 if (copy_from_user(&dmhreq, arg, sizeof(xfs_fsop_setdm_handlereq_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000367 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Jan Karad9457dc2012-06-12 16:20:39 +0200369 error = mnt_want_write_file(parfilp);
370 if (error)
371 return error;
372
Christoph Hellwigd296d302009-01-19 02:02:57 +0100373 dentry = xfs_handlereq_to_dentry(parfilp, &dmhreq.hreq);
Jan Karad9457dc2012-06-12 16:20:39 +0200374 if (IS_ERR(dentry)) {
375 mnt_drop_write_file(parfilp);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100376 return PTR_ERR(dentry);
Jan Karad9457dc2012-06-12 16:20:39 +0200377 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
David Howells2b0143b2015-03-17 22:25:59 +0000379 if (IS_IMMUTABLE(d_inode(dentry)) || IS_APPEND(d_inode(dentry))) {
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000380 error = -EPERM;
Christoph Hellwig6e7f75e2007-10-11 18:09:50 +1000381 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 }
383
384 if (copy_from_user(&fsd, dmhreq.data, sizeof(fsd))) {
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000385 error = -EFAULT;
Christoph Hellwig6e7f75e2007-10-11 18:09:50 +1000386 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 }
388
David Howells2b0143b2015-03-17 22:25:59 +0000389 error = xfs_set_dmattrs(XFS_I(d_inode(dentry)), fsd.fsd_dmevmask,
Christoph Hellwig6e7f75e2007-10-11 18:09:50 +1000390 fsd.fsd_dmstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
Christoph Hellwig6e7f75e2007-10-11 18:09:50 +1000392 out:
Jan Karad9457dc2012-06-12 16:20:39 +0200393 mnt_drop_write_file(parfilp);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100394 dput(dentry);
Christoph Hellwig6e7f75e2007-10-11 18:09:50 +1000395 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396}
397
398STATIC int
399xfs_attrlist_by_handle(
Christoph Hellwigd296d302009-01-19 02:02:57 +0100400 struct file *parfilp,
401 void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402{
Christoph Hellwigd296d302009-01-19 02:02:57 +0100403 int error = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 attrlist_cursor_kern_t *cursor;
405 xfs_fsop_attrlist_handlereq_t al_hreq;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100406 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 char *kbuf;
408
409 if (!capable(CAP_SYS_ADMIN))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000410 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 if (copy_from_user(&al_hreq, arg, sizeof(xfs_fsop_attrlist_handlereq_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000412 return -EFAULT;
Dan Carpenter071c5292013-10-31 21:00:10 +0300413 if (al_hreq.buflen < sizeof(struct attrlist) ||
414 al_hreq.buflen > XATTR_LIST_MAX)
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000415 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
Christoph Hellwig90ad58a2008-06-27 13:32:19 +1000417 /*
418 * Reject flags, only allow namespaces.
419 */
420 if (al_hreq.flags & ~(ATTR_ROOT | ATTR_SECURE))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000421 return -EINVAL;
Christoph Hellwig90ad58a2008-06-27 13:32:19 +1000422
Christoph Hellwigd296d302009-01-19 02:02:57 +0100423 dentry = xfs_handlereq_to_dentry(parfilp, &al_hreq.hreq);
424 if (IS_ERR(dentry))
425 return PTR_ERR(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
Dave Chinnerfdd3cce2013-09-02 20:53:00 +1000427 kbuf = kmem_zalloc_large(al_hreq.buflen, KM_SLEEP);
428 if (!kbuf)
429 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
431 cursor = (attrlist_cursor_kern_t *)&al_hreq.pos;
David Howells2b0143b2015-03-17 22:25:59 +0000432 error = xfs_attr_list(XFS_I(d_inode(dentry)), kbuf, al_hreq.buflen,
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000433 al_hreq.flags, cursor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 if (error)
435 goto out_kfree;
436
437 if (copy_to_user(al_hreq.buffer, kbuf, al_hreq.buflen))
438 error = -EFAULT;
439
Dave Chinnerfdd3cce2013-09-02 20:53:00 +1000440out_kfree:
441 kmem_free(kbuf);
442out_dput:
Christoph Hellwigd296d302009-01-19 02:02:57 +0100443 dput(dentry);
444 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445}
446
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600447int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448xfs_attrmulti_attr_get(
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000449 struct inode *inode,
Dave Chinnera9273ca2010-01-20 10:47:48 +1100450 unsigned char *name,
451 unsigned char __user *ubuf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 __uint32_t *len,
453 __uint32_t flags)
454{
Dave Chinnera9273ca2010-01-20 10:47:48 +1100455 unsigned char *kbuf;
Dave Chinner24513372014-06-25 14:58:08 +1000456 int error = -EFAULT;
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000457
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 if (*len > XATTR_SIZE_MAX)
Dave Chinner24513372014-06-25 14:58:08 +1000459 return -EINVAL;
Dave Chinnerfdd3cce2013-09-02 20:53:00 +1000460 kbuf = kmem_zalloc_large(*len, KM_SLEEP);
461 if (!kbuf)
Dave Chinner24513372014-06-25 14:58:08 +1000462 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000464 error = xfs_attr_get(XFS_I(inode), name, kbuf, (int *)len, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 if (error)
466 goto out_kfree;
467
468 if (copy_to_user(ubuf, kbuf, *len))
Dave Chinner24513372014-06-25 14:58:08 +1000469 error = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
Dave Chinnerfdd3cce2013-09-02 20:53:00 +1000471out_kfree:
472 kmem_free(kbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 return error;
474}
475
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600476int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477xfs_attrmulti_attr_set(
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000478 struct inode *inode,
Dave Chinnera9273ca2010-01-20 10:47:48 +1100479 unsigned char *name,
480 const unsigned char __user *ubuf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 __uint32_t len,
482 __uint32_t flags)
483{
Dave Chinnera9273ca2010-01-20 10:47:48 +1100484 unsigned char *kbuf;
Andreas Gruenbacher09cb22d2015-11-03 12:53:54 +1100485 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000487 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
Dave Chinner24513372014-06-25 14:58:08 +1000488 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 if (len > XATTR_SIZE_MAX)
Dave Chinner24513372014-06-25 14:58:08 +1000490 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
Li Zefan0e639bd2009-04-08 15:08:04 +0800492 kbuf = memdup_user(ubuf, len);
493 if (IS_ERR(kbuf))
494 return PTR_ERR(kbuf);
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000495
Andreas Gruenbacher09cb22d2015-11-03 12:53:54 +1100496 error = xfs_attr_set(XFS_I(inode), name, kbuf, len, flags);
497 kfree(kbuf);
498 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499}
500
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600501int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502xfs_attrmulti_attr_remove(
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000503 struct inode *inode,
Dave Chinnera9273ca2010-01-20 10:47:48 +1100504 unsigned char *name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 __uint32_t flags)
506{
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000507 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
Dave Chinner24513372014-06-25 14:58:08 +1000508 return -EPERM;
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000509 return xfs_attr_remove(XFS_I(inode), name, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510}
511
512STATIC int
513xfs_attrmulti_by_handle(
Dave Hansen42a74f22008-02-15 14:37:46 -0800514 struct file *parfilp,
Christoph Hellwigd296d302009-01-19 02:02:57 +0100515 void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516{
517 int error;
518 xfs_attr_multiop_t *ops;
519 xfs_fsop_attrmulti_handlereq_t am_hreq;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100520 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 unsigned int i, size;
Dave Chinnera9273ca2010-01-20 10:47:48 +1100522 unsigned char *attr_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
524 if (!capable(CAP_SYS_ADMIN))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000525 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 if (copy_from_user(&am_hreq, arg, sizeof(xfs_fsop_attrmulti_handlereq_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000527 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
Zhitong Wangfda168c2010-03-23 09:51:22 +1100529 /* overflow check */
530 if (am_hreq.opcount >= INT_MAX / sizeof(xfs_attr_multiop_t))
531 return -E2BIG;
532
Christoph Hellwigd296d302009-01-19 02:02:57 +0100533 dentry = xfs_handlereq_to_dentry(parfilp, &am_hreq.hreq);
534 if (IS_ERR(dentry))
535 return PTR_ERR(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
Dave Chinner24513372014-06-25 14:58:08 +1000537 error = -E2BIG;
Christoph Hellwige182f572008-06-27 13:32:31 +1000538 size = am_hreq.opcount * sizeof(xfs_attr_multiop_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 if (!size || size > 16 * PAGE_SIZE)
Christoph Hellwigd296d302009-01-19 02:02:57 +0100540 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
Li Zefan0e639bd2009-04-08 15:08:04 +0800542 ops = memdup_user(am_hreq.ops, size);
543 if (IS_ERR(ops)) {
Dave Chinner24513372014-06-25 14:58:08 +1000544 error = PTR_ERR(ops);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100545 goto out_dput;
Li Zefan0e639bd2009-04-08 15:08:04 +0800546 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Dave Chinner24513372014-06-25 14:58:08 +1000548 error = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 attr_name = kmalloc(MAXNAMELEN, GFP_KERNEL);
550 if (!attr_name)
551 goto out_kfree_ops;
552
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 error = 0;
554 for (i = 0; i < am_hreq.opcount; i++) {
Dave Chinnera9273ca2010-01-20 10:47:48 +1100555 ops[i].am_error = strncpy_from_user((char *)attr_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 ops[i].am_attrname, MAXNAMELEN);
557 if (ops[i].am_error == 0 || ops[i].am_error == MAXNAMELEN)
Dave Chinner24513372014-06-25 14:58:08 +1000558 error = -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 if (ops[i].am_error < 0)
560 break;
561
562 switch (ops[i].am_opcode) {
563 case ATTR_OP_GET:
Christoph Hellwigd296d302009-01-19 02:02:57 +0100564 ops[i].am_error = xfs_attrmulti_attr_get(
David Howells2b0143b2015-03-17 22:25:59 +0000565 d_inode(dentry), attr_name,
Christoph Hellwigd296d302009-01-19 02:02:57 +0100566 ops[i].am_attrvalue, &ops[i].am_length,
567 ops[i].am_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 break;
569 case ATTR_OP_SET:
Al Viroa561be72011-11-23 11:57:51 -0500570 ops[i].am_error = mnt_want_write_file(parfilp);
Dave Hansen42a74f22008-02-15 14:37:46 -0800571 if (ops[i].am_error)
572 break;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100573 ops[i].am_error = xfs_attrmulti_attr_set(
David Howells2b0143b2015-03-17 22:25:59 +0000574 d_inode(dentry), attr_name,
Christoph Hellwigd296d302009-01-19 02:02:57 +0100575 ops[i].am_attrvalue, ops[i].am_length,
576 ops[i].am_flags);
Al Viro2a79f172011-12-09 08:06:57 -0500577 mnt_drop_write_file(parfilp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 break;
579 case ATTR_OP_REMOVE:
Al Viroa561be72011-11-23 11:57:51 -0500580 ops[i].am_error = mnt_want_write_file(parfilp);
Dave Hansen42a74f22008-02-15 14:37:46 -0800581 if (ops[i].am_error)
582 break;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100583 ops[i].am_error = xfs_attrmulti_attr_remove(
David Howells2b0143b2015-03-17 22:25:59 +0000584 d_inode(dentry), attr_name,
Christoph Hellwigd296d302009-01-19 02:02:57 +0100585 ops[i].am_flags);
Al Viro2a79f172011-12-09 08:06:57 -0500586 mnt_drop_write_file(parfilp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 break;
588 default:
Dave Chinner24513372014-06-25 14:58:08 +1000589 ops[i].am_error = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 }
591 }
592
593 if (copy_to_user(am_hreq.ops, ops, size))
Dave Chinner24513372014-06-25 14:58:08 +1000594 error = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
596 kfree(attr_name);
597 out_kfree_ops:
598 kfree(ops);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100599 out_dput:
600 dput(dentry);
Dave Chinner24513372014-06-25 14:58:08 +1000601 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602}
603
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600604int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605xfs_ioc_space(
Christoph Hellwig993386c12007-08-28 16:12:30 +1000606 struct xfs_inode *ip,
Alexey Dobriyanf37ea142006-09-28 10:52:04 +1000607 struct inode *inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 struct file *filp,
609 int ioflags,
610 unsigned int cmd,
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600611 xfs_flock64_t *bf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612{
Christoph Hellwig865e9442013-10-12 00:55:08 -0700613 struct iattr iattr;
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100614 enum xfs_prealloc_flags flags = 0;
Christoph Hellwig781355c2015-02-16 11:59:50 +1100615 uint iolock = XFS_IOLOCK_EXCL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 int error;
617
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600618 /*
619 * Only allow the sys admin to reserve space unless
620 * unwritten extents are enabled.
621 */
622 if (!xfs_sb_version_hasextflgbit(&ip->i_mount->m_sb) &&
623 !capable(CAP_SYS_ADMIN))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000624 return -EPERM;
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600625
Alexey Dobriyanf37ea142006-09-28 10:52:04 +1000626 if (inode->i_flags & (S_IMMUTABLE|S_APPEND))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000627 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
Eric Sandeenad4a8ac2005-09-02 16:41:16 +1000629 if (!(filp->f_mode & FMODE_WRITE))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000630 return -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Alexey Dobriyanf37ea142006-09-28 10:52:04 +1000632 if (!S_ISREG(inode->i_mode))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000633 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100635 if (filp->f_flags & O_DSYNC)
636 flags |= XFS_PREALLOC_SYNC;
Dave Chinnere8e9ad42015-02-23 21:45:32 +1100637 if (ioflags & XFS_IO_INVIS)
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100638 flags |= XFS_PREALLOC_INVISIBLE;
639
Jan Karad9457dc2012-06-12 16:20:39 +0200640 error = mnt_want_write_file(filp);
641 if (error)
642 return error;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700643
Christoph Hellwig781355c2015-02-16 11:59:50 +1100644 xfs_ilock(ip, iolock);
Christoph Hellwig21c3ea12015-04-13 11:38:29 +1000645 error = xfs_break_layouts(inode, &iolock, false);
Christoph Hellwig781355c2015-02-16 11:59:50 +1100646 if (error)
647 goto out_unlock;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700648
Dave Chinnere8e9ad42015-02-23 21:45:32 +1100649 xfs_ilock(ip, XFS_MMAPLOCK_EXCL);
650 iolock |= XFS_MMAPLOCK_EXCL;
651
Christoph Hellwig865e9442013-10-12 00:55:08 -0700652 switch (bf->l_whence) {
653 case 0: /*SEEK_SET*/
654 break;
655 case 1: /*SEEK_CUR*/
656 bf->l_start += filp->f_pos;
657 break;
658 case 2: /*SEEK_END*/
659 bf->l_start += XFS_ISIZE(ip);
660 break;
661 default:
Dave Chinner24513372014-06-25 14:58:08 +1000662 error = -EINVAL;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700663 goto out_unlock;
664 }
665
666 /*
667 * length of <= 0 for resv/unresv/zero is invalid. length for
668 * alloc/free is ignored completely and we have no idea what userspace
669 * might have set it to, so set it to zero to allow range
670 * checks to pass.
671 */
672 switch (cmd) {
673 case XFS_IOC_ZERO_RANGE:
674 case XFS_IOC_RESVSP:
675 case XFS_IOC_RESVSP64:
676 case XFS_IOC_UNRESVSP:
677 case XFS_IOC_UNRESVSP64:
678 if (bf->l_len <= 0) {
Dave Chinner24513372014-06-25 14:58:08 +1000679 error = -EINVAL;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700680 goto out_unlock;
681 }
682 break;
683 default:
684 bf->l_len = 0;
685 break;
686 }
687
688 if (bf->l_start < 0 ||
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100689 bf->l_start > inode->i_sb->s_maxbytes ||
Christoph Hellwig865e9442013-10-12 00:55:08 -0700690 bf->l_start + bf->l_len < 0 ||
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100691 bf->l_start + bf->l_len >= inode->i_sb->s_maxbytes) {
Dave Chinner24513372014-06-25 14:58:08 +1000692 error = -EINVAL;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700693 goto out_unlock;
694 }
695
696 switch (cmd) {
697 case XFS_IOC_ZERO_RANGE:
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100698 flags |= XFS_PREALLOC_SET;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700699 error = xfs_zero_file_space(ip, bf->l_start, bf->l_len);
Christoph Hellwig865e9442013-10-12 00:55:08 -0700700 break;
701 case XFS_IOC_RESVSP:
702 case XFS_IOC_RESVSP64:
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100703 flags |= XFS_PREALLOC_SET;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700704 error = xfs_alloc_file_space(ip, bf->l_start, bf->l_len,
705 XFS_BMAPI_PREALLOC);
Christoph Hellwig865e9442013-10-12 00:55:08 -0700706 break;
707 case XFS_IOC_UNRESVSP:
708 case XFS_IOC_UNRESVSP64:
709 error = xfs_free_file_space(ip, bf->l_start, bf->l_len);
710 break;
711 case XFS_IOC_ALLOCSP:
712 case XFS_IOC_ALLOCSP64:
713 case XFS_IOC_FREESP:
714 case XFS_IOC_FREESP64:
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100715 flags |= XFS_PREALLOC_CLEAR;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700716 if (bf->l_start > XFS_ISIZE(ip)) {
717 error = xfs_alloc_file_space(ip, XFS_ISIZE(ip),
718 bf->l_start - XFS_ISIZE(ip), 0);
719 if (error)
720 goto out_unlock;
721 }
722
723 iattr.ia_valid = ATTR_SIZE;
724 iattr.ia_size = bf->l_start;
725
726 error = xfs_setattr_size(ip, &iattr);
Christoph Hellwig865e9442013-10-12 00:55:08 -0700727 break;
728 default:
729 ASSERT(0);
Dave Chinner24513372014-06-25 14:58:08 +1000730 error = -EINVAL;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700731 }
732
733 if (error)
734 goto out_unlock;
735
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100736 error = xfs_update_prealloc_flags(ip, flags);
Christoph Hellwig865e9442013-10-12 00:55:08 -0700737
738out_unlock:
Christoph Hellwig781355c2015-02-16 11:59:50 +1100739 xfs_iunlock(ip, iolock);
Jan Karad9457dc2012-06-12 16:20:39 +0200740 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +1000741 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742}
743
744STATIC int
745xfs_ioc_bulkstat(
746 xfs_mount_t *mp,
747 unsigned int cmd,
748 void __user *arg)
749{
750 xfs_fsop_bulkreq_t bulkreq;
751 int count; /* # of records returned */
752 xfs_ino_t inlast; /* last inode number */
753 int done;
754 int error;
755
756 /* done = 1 if there are more stats to get and if bulkstat */
757 /* should be called again (unused here, but used in dmapi) */
758
759 if (!capable(CAP_SYS_ADMIN))
760 return -EPERM;
761
762 if (XFS_FORCED_SHUTDOWN(mp))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000763 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
765 if (copy_from_user(&bulkreq, arg, sizeof(xfs_fsop_bulkreq_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000766 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
768 if (copy_from_user(&inlast, bulkreq.lastip, sizeof(__s64)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000769 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
771 if ((count = bulkreq.icount) <= 0)
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000772 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100774 if (bulkreq.ubuffer == NULL)
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000775 return -EINVAL;
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100776
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 if (cmd == XFS_IOC_FSINUMBERS)
778 error = xfs_inumbers(mp, &inlast, &count,
Michal Marekfaa63e92007-07-11 11:10:19 +1000779 bulkreq.ubuffer, xfs_inumbers_fmt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 else if (cmd == XFS_IOC_FSBULKSTAT_SINGLE)
Christoph Hellwigd716f8e2014-07-24 12:07:15 +1000781 error = xfs_bulkstat_one(mp, inlast, bulkreq.ubuffer,
782 sizeof(xfs_bstat_t), NULL, &done);
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100783 else /* XFS_IOC_FSBULKSTAT */
Christoph Hellwig7dce11d2010-06-23 18:11:11 +1000784 error = xfs_bulkstat(mp, &inlast, &count, xfs_bulkstat_one,
785 sizeof(xfs_bstat_t), bulkreq.ubuffer,
786 &done);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
788 if (error)
Dave Chinner24513372014-06-25 14:58:08 +1000789 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
791 if (bulkreq.ocount != NULL) {
792 if (copy_to_user(bulkreq.lastip, &inlast,
793 sizeof(xfs_ino_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000794 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
796 if (copy_to_user(bulkreq.ocount, &count, sizeof(count)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000797 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 }
799
800 return 0;
801}
802
803STATIC int
804xfs_ioc_fsgeometry_v1(
805 xfs_mount_t *mp,
806 void __user *arg)
807{
Alex Eldereeb20362011-03-01 17:50:00 +0000808 xfs_fsop_geom_t fsgeo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 int error;
810
Alex Eldereeb20362011-03-01 17:50:00 +0000811 error = xfs_fs_geometry(mp, &fsgeo, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 if (error)
Dave Chinner24513372014-06-25 14:58:08 +1000813 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
Alex Eldereeb20362011-03-01 17:50:00 +0000815 /*
816 * Caller should have passed an argument of type
817 * xfs_fsop_geom_v1_t. This is a proper subset of the
818 * xfs_fsop_geom_t that xfs_fs_geometry() fills in.
819 */
820 if (copy_to_user(arg, &fsgeo, sizeof(xfs_fsop_geom_v1_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000821 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 return 0;
823}
824
825STATIC int
826xfs_ioc_fsgeometry(
827 xfs_mount_t *mp,
828 void __user *arg)
829{
830 xfs_fsop_geom_t fsgeo;
831 int error;
832
833 error = xfs_fs_geometry(mp, &fsgeo, 4);
834 if (error)
Dave Chinner24513372014-06-25 14:58:08 +1000835 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
837 if (copy_to_user(arg, &fsgeo, sizeof(fsgeo)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000838 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 return 0;
840}
841
842/*
843 * Linux extended inode flags interface.
844 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
846STATIC unsigned int
847xfs_merge_ioc_xflags(
848 unsigned int flags,
849 unsigned int start)
850{
851 unsigned int xflags = start;
852
Eric Sandeen39058a02007-02-10 18:37:10 +1100853 if (flags & FS_IMMUTABLE_FL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 xflags |= XFS_XFLAG_IMMUTABLE;
855 else
856 xflags &= ~XFS_XFLAG_IMMUTABLE;
Eric Sandeen39058a02007-02-10 18:37:10 +1100857 if (flags & FS_APPEND_FL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 xflags |= XFS_XFLAG_APPEND;
859 else
860 xflags &= ~XFS_XFLAG_APPEND;
Eric Sandeen39058a02007-02-10 18:37:10 +1100861 if (flags & FS_SYNC_FL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 xflags |= XFS_XFLAG_SYNC;
863 else
864 xflags &= ~XFS_XFLAG_SYNC;
Eric Sandeen39058a02007-02-10 18:37:10 +1100865 if (flags & FS_NOATIME_FL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 xflags |= XFS_XFLAG_NOATIME;
867 else
868 xflags &= ~XFS_XFLAG_NOATIME;
Eric Sandeen39058a02007-02-10 18:37:10 +1100869 if (flags & FS_NODUMP_FL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 xflags |= XFS_XFLAG_NODUMP;
871 else
872 xflags &= ~XFS_XFLAG_NODUMP;
873
874 return xflags;
875}
876
877STATIC unsigned int
878xfs_di2lxflags(
879 __uint16_t di_flags)
880{
881 unsigned int flags = 0;
882
883 if (di_flags & XFS_DIFLAG_IMMUTABLE)
Eric Sandeen39058a02007-02-10 18:37:10 +1100884 flags |= FS_IMMUTABLE_FL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 if (di_flags & XFS_DIFLAG_APPEND)
Eric Sandeen39058a02007-02-10 18:37:10 +1100886 flags |= FS_APPEND_FL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 if (di_flags & XFS_DIFLAG_SYNC)
Eric Sandeen39058a02007-02-10 18:37:10 +1100888 flags |= FS_SYNC_FL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 if (di_flags & XFS_DIFLAG_NOATIME)
Eric Sandeen39058a02007-02-10 18:37:10 +1100890 flags |= FS_NOATIME_FL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 if (di_flags & XFS_DIFLAG_NODUMP)
Eric Sandeen39058a02007-02-10 18:37:10 +1100892 flags |= FS_NODUMP_FL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 return flags;
894}
895
896STATIC int
Christoph Hellwigc83bfab2007-10-11 17:47:00 +1000897xfs_ioc_fsgetxattr(
898 xfs_inode_t *ip,
899 int attr,
900 void __user *arg)
901{
902 struct fsxattr fa;
903
Dan Rosenberga122eb22010-09-06 18:24:57 -0400904 memset(&fa, 0, sizeof(struct fsxattr));
905
Christoph Hellwigc83bfab2007-10-11 17:47:00 +1000906 xfs_ilock(ip, XFS_ILOCK_SHARED);
907 fa.fsx_xflags = xfs_ip2xflags(ip);
908 fa.fsx_extsize = ip->i_d.di_extsize << ip->i_mount->m_sb.sb_blocklog;
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000909 fa.fsx_projid = xfs_get_projid(ip);
Christoph Hellwigc83bfab2007-10-11 17:47:00 +1000910
911 if (attr) {
912 if (ip->i_afp) {
913 if (ip->i_afp->if_flags & XFS_IFEXTENTS)
914 fa.fsx_nextents = ip->i_afp->if_bytes /
915 sizeof(xfs_bmbt_rec_t);
916 else
917 fa.fsx_nextents = ip->i_d.di_anextents;
918 } else
919 fa.fsx_nextents = 0;
920 } else {
921 if (ip->i_df.if_flags & XFS_IFEXTENTS)
922 fa.fsx_nextents = ip->i_df.if_bytes /
923 sizeof(xfs_bmbt_rec_t);
924 else
925 fa.fsx_nextents = ip->i_d.di_nextents;
926 }
927 xfs_iunlock(ip, XFS_ILOCK_SHARED);
928
929 if (copy_to_user(arg, &fa, sizeof(fa)))
930 return -EFAULT;
931 return 0;
932}
933
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000934STATIC void
935xfs_set_diflags(
936 struct xfs_inode *ip,
937 unsigned int xflags)
938{
939 unsigned int di_flags;
940
941 /* can't set PREALLOC this way, just preserve it */
942 di_flags = (ip->i_d.di_flags & XFS_DIFLAG_PREALLOC);
943 if (xflags & XFS_XFLAG_IMMUTABLE)
944 di_flags |= XFS_DIFLAG_IMMUTABLE;
945 if (xflags & XFS_XFLAG_APPEND)
946 di_flags |= XFS_DIFLAG_APPEND;
947 if (xflags & XFS_XFLAG_SYNC)
948 di_flags |= XFS_DIFLAG_SYNC;
949 if (xflags & XFS_XFLAG_NOATIME)
950 di_flags |= XFS_DIFLAG_NOATIME;
951 if (xflags & XFS_XFLAG_NODUMP)
952 di_flags |= XFS_DIFLAG_NODUMP;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000953 if (xflags & XFS_XFLAG_NODEFRAG)
954 di_flags |= XFS_DIFLAG_NODEFRAG;
955 if (xflags & XFS_XFLAG_FILESTREAM)
956 di_flags |= XFS_DIFLAG_FILESTREAM;
Al Viroabbede12011-07-26 02:31:30 -0400957 if (S_ISDIR(ip->i_d.di_mode)) {
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000958 if (xflags & XFS_XFLAG_RTINHERIT)
959 di_flags |= XFS_DIFLAG_RTINHERIT;
960 if (xflags & XFS_XFLAG_NOSYMLINKS)
961 di_flags |= XFS_DIFLAG_NOSYMLINKS;
962 if (xflags & XFS_XFLAG_EXTSZINHERIT)
963 di_flags |= XFS_DIFLAG_EXTSZINHERIT;
Dave Chinner9336e3a2014-10-02 09:18:40 +1000964 if (xflags & XFS_XFLAG_PROJINHERIT)
965 di_flags |= XFS_DIFLAG_PROJINHERIT;
Al Viroabbede12011-07-26 02:31:30 -0400966 } else if (S_ISREG(ip->i_d.di_mode)) {
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000967 if (xflags & XFS_XFLAG_REALTIME)
968 di_flags |= XFS_DIFLAG_REALTIME;
969 if (xflags & XFS_XFLAG_EXTSIZE)
970 di_flags |= XFS_DIFLAG_EXTSIZE;
971 }
972
973 ip->i_d.di_flags = di_flags;
974}
975
Christoph Hellwigf13fae22008-07-21 16:16:15 +1000976STATIC void
977xfs_diflags_to_linux(
978 struct xfs_inode *ip)
979{
David Chinnere4f75292008-08-13 16:00:45 +1000980 struct inode *inode = VFS_I(ip);
Christoph Hellwigf13fae22008-07-21 16:16:15 +1000981 unsigned int xflags = xfs_ip2xflags(ip);
982
983 if (xflags & XFS_XFLAG_IMMUTABLE)
984 inode->i_flags |= S_IMMUTABLE;
985 else
986 inode->i_flags &= ~S_IMMUTABLE;
987 if (xflags & XFS_XFLAG_APPEND)
988 inode->i_flags |= S_APPEND;
989 else
990 inode->i_flags &= ~S_APPEND;
991 if (xflags & XFS_XFLAG_SYNC)
992 inode->i_flags |= S_SYNC;
993 else
994 inode->i_flags &= ~S_SYNC;
995 if (xflags & XFS_XFLAG_NOATIME)
996 inode->i_flags |= S_NOATIME;
997 else
998 inode->i_flags &= ~S_NOATIME;
999}
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001000
Dave Chinner29a17c02015-02-02 10:14:25 +11001001static int
1002xfs_ioctl_setattr_xflags(
1003 struct xfs_trans *tp,
1004 struct xfs_inode *ip,
1005 struct fsxattr *fa)
1006{
1007 struct xfs_mount *mp = ip->i_mount;
1008
1009 /* Can't change realtime flag if any extents are allocated. */
1010 if ((ip->i_d.di_nextents || ip->i_delayed_blks) &&
1011 XFS_IS_REALTIME_INODE(ip) != (fa->fsx_xflags & XFS_XFLAG_REALTIME))
1012 return -EINVAL;
1013
1014 /* If realtime flag is set then must have realtime device */
1015 if (fa->fsx_xflags & XFS_XFLAG_REALTIME) {
1016 if (mp->m_sb.sb_rblocks == 0 || mp->m_sb.sb_rextsize == 0 ||
1017 (ip->i_d.di_extsize % mp->m_sb.sb_rextsize))
1018 return -EINVAL;
1019 }
1020
1021 /*
1022 * Can't modify an immutable/append-only file unless
1023 * we have appropriate permission.
1024 */
1025 if (((ip->i_d.di_flags & (XFS_DIFLAG_IMMUTABLE | XFS_DIFLAG_APPEND)) ||
1026 (fa->fsx_xflags & (XFS_XFLAG_IMMUTABLE | XFS_XFLAG_APPEND))) &&
1027 !capable(CAP_LINUX_IMMUTABLE))
1028 return -EPERM;
1029
Dave Chinner29a17c02015-02-02 10:14:25 +11001030 xfs_set_diflags(ip, fa->fsx_xflags);
1031 xfs_diflags_to_linux(ip);
1032 xfs_trans_ichgtime(tp, ip, XFS_ICHGTIME_CHG);
1033 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1034 XFS_STATS_INC(xs_ig_attrchg);
1035 return 0;
1036}
1037
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001038/*
1039 * Set up the transaction structure for the setattr operation, checking that we
1040 * have permission to do so. On success, return a clean transaction and the
1041 * inode locked exclusively ready for further operation specific checks. On
1042 * failure, return an error without modifying or locking the inode.
1043 */
1044static struct xfs_trans *
1045xfs_ioctl_setattr_get_trans(
1046 struct xfs_inode *ip)
1047{
1048 struct xfs_mount *mp = ip->i_mount;
1049 struct xfs_trans *tp;
1050 int error;
1051
1052 if (mp->m_flags & XFS_MOUNT_RDONLY)
1053 return ERR_PTR(-EROFS);
1054 if (XFS_FORCED_SHUTDOWN(mp))
1055 return ERR_PTR(-EIO);
1056
1057 tp = xfs_trans_alloc(mp, XFS_TRANS_SETATTR_NOT_SIZE);
1058 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_ichange, 0, 0);
1059 if (error)
1060 goto out_cancel;
1061
1062 xfs_ilock(ip, XFS_ILOCK_EXCL);
1063 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
1064
1065 /*
1066 * CAP_FOWNER overrides the following restrictions:
1067 *
1068 * The user ID of the calling process must be equal to the file owner
1069 * ID, except in cases where the CAP_FSETID capability is applicable.
1070 */
1071 if (!inode_owner_or_capable(VFS_I(ip))) {
1072 error = -EPERM;
1073 goto out_cancel;
1074 }
1075
1076 if (mp->m_flags & XFS_MOUNT_WSYNC)
1077 xfs_trans_set_sync(tp);
1078
1079 return tp;
1080
1081out_cancel:
Christoph Hellwig4906e212015-06-04 13:47:56 +10001082 xfs_trans_cancel(tp);
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001083 return ERR_PTR(error);
1084}
1085
Iustin Pop9b94fcc2015-02-02 10:26:26 +11001086/*
1087 * extent size hint validation is somewhat cumbersome. Rules are:
1088 *
1089 * 1. extent size hint is only valid for directories and regular files
1090 * 2. XFS_XFLAG_EXTSIZE is only valid for regular files
1091 * 3. XFS_XFLAG_EXTSZINHERIT is only valid for directories.
1092 * 4. can only be changed on regular files if no extents are allocated
1093 * 5. can be changed on directories at any time
1094 * 6. extsize hint of 0 turns off hints, clears inode flags.
1095 * 7. Extent size must be a multiple of the appropriate block size.
1096 * 8. for non-realtime files, the extent size hint must be limited
1097 * to half the AG size to avoid alignment extending the extent beyond the
1098 * limits of the AG.
1099 */
kbuild test robotf92090e2015-02-05 11:13:21 +11001100static int
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001101xfs_ioctl_setattr_check_extsize(
1102 struct xfs_inode *ip,
1103 struct fsxattr *fa)
1104{
1105 struct xfs_mount *mp = ip->i_mount;
1106
Iustin Pop9b94fcc2015-02-02 10:26:26 +11001107 if ((fa->fsx_xflags & XFS_XFLAG_EXTSIZE) && !S_ISREG(ip->i_d.di_mode))
1108 return -EINVAL;
1109
1110 if ((fa->fsx_xflags & XFS_XFLAG_EXTSZINHERIT) &&
1111 !S_ISDIR(ip->i_d.di_mode))
1112 return -EINVAL;
1113
1114 if (S_ISREG(ip->i_d.di_mode) && ip->i_d.di_nextents &&
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001115 ((ip->i_d.di_extsize << mp->m_sb.sb_blocklog) != fa->fsx_extsize))
1116 return -EINVAL;
1117
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001118 if (fa->fsx_extsize != 0) {
1119 xfs_extlen_t size;
1120 xfs_fsblock_t extsize_fsb;
1121
1122 extsize_fsb = XFS_B_TO_FSB(mp, fa->fsx_extsize);
1123 if (extsize_fsb > MAXEXTLEN)
1124 return -EINVAL;
1125
1126 if (XFS_IS_REALTIME_INODE(ip) ||
1127 (fa->fsx_xflags & XFS_XFLAG_REALTIME)) {
1128 size = mp->m_sb.sb_rextsize << mp->m_sb.sb_blocklog;
1129 } else {
1130 size = mp->m_sb.sb_blocksize;
1131 if (extsize_fsb > mp->m_sb.sb_agblocks / 2)
1132 return -EINVAL;
1133 }
1134
1135 if (fa->fsx_extsize % size)
1136 return -EINVAL;
Iustin Pop9b94fcc2015-02-02 10:26:26 +11001137 } else
1138 fa->fsx_xflags &= ~(XFS_XFLAG_EXTSIZE | XFS_XFLAG_EXTSZINHERIT);
1139
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001140 return 0;
1141}
1142
kbuild test robotf92090e2015-02-05 11:13:21 +11001143static int
Dave Chinner23bd0732015-02-02 10:22:53 +11001144xfs_ioctl_setattr_check_projid(
1145 struct xfs_inode *ip,
1146 struct fsxattr *fa)
1147{
1148 /* Disallow 32bit project ids if projid32bit feature is not enabled. */
1149 if (fa->fsx_projid > (__uint16_t)-1 &&
1150 !xfs_sb_version_hasprojid32bit(&ip->i_mount->m_sb))
1151 return -EINVAL;
1152
1153 /*
1154 * Project Quota ID state is only allowed to change from within the init
1155 * namespace. Enforce that restriction only if we are trying to change
1156 * the quota ID state. Everything else is allowed in user namespaces.
1157 */
1158 if (current_user_ns() == &init_user_ns)
1159 return 0;
1160
1161 if (xfs_get_projid(ip) != fa->fsx_projid)
1162 return -EINVAL;
1163 if ((fa->fsx_xflags & XFS_XFLAG_PROJINHERIT) !=
1164 (ip->i_d.di_flags & XFS_DIFLAG_PROJINHERIT))
1165 return -EINVAL;
1166
1167 return 0;
1168}
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001169
1170STATIC int
1171xfs_ioctl_setattr(
1172 xfs_inode_t *ip,
Dave Chinnerfd179b92015-02-02 10:16:25 +11001173 struct fsxattr *fa)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001174{
1175 struct xfs_mount *mp = ip->i_mount;
1176 struct xfs_trans *tp;
Christoph Hellwig7d095252009-06-08 15:33:32 +02001177 struct xfs_dquot *udqp = NULL;
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001178 struct xfs_dquot *pdqp = NULL;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001179 struct xfs_dquot *olddquot = NULL;
1180 int code;
1181
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001182 trace_xfs_ioctl_setattr(ip);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001183
Dave Chinner23bd0732015-02-02 10:22:53 +11001184 code = xfs_ioctl_setattr_check_projid(ip, fa);
1185 if (code)
1186 return code;
Arkadiusz Mi?kiewicz23963e542010-08-26 10:19:43 +00001187
1188 /*
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001189 * If disk quotas is on, we make sure that the dquots do exist on disk,
1190 * before we start any other transactions. Trying to do this later
1191 * is messy. We don't care to take a readlock to look at the ids
1192 * in inode here, because we can't hold it across the trans_reserve.
1193 * If the IDs do change before we take the ilock, we're covered
1194 * because the i_*dquot fields will get updated anyway.
1195 */
Dave Chinnerfd179b92015-02-02 10:16:25 +11001196 if (XFS_IS_QUOTA_ON(mp)) {
Christoph Hellwig7d095252009-06-08 15:33:32 +02001197 code = xfs_qm_vop_dqalloc(ip, ip->i_d.di_uid,
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001198 ip->i_d.di_gid, fa->fsx_projid,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001199 XFS_QMOPT_PQUOTA, &udqp, NULL, &pdqp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001200 if (code)
1201 return code;
1202 }
1203
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001204 tp = xfs_ioctl_setattr_get_trans(ip);
1205 if (IS_ERR(tp)) {
1206 code = PTR_ERR(tp);
1207 goto error_free_dquots;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001208 }
1209
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001210
Dave Chinnerfd179b92015-02-02 10:16:25 +11001211 if (XFS_IS_QUOTA_RUNNING(mp) && XFS_IS_PQUOTA_ON(mp) &&
1212 xfs_get_projid(ip) != fa->fsx_projid) {
1213 code = xfs_qm_vop_chown_reserve(tp, ip, udqp, NULL, pdqp,
1214 capable(CAP_FOWNER) ? XFS_QMOPT_FORCE_RES : 0);
1215 if (code) /* out of quota */
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001216 goto error_trans_cancel;
Dave Chinnerfd179b92015-02-02 10:16:25 +11001217 }
1218
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001219 code = xfs_ioctl_setattr_check_extsize(ip, fa);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001220 if (code)
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001221 goto error_trans_cancel;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001222
Dave Chinner29a17c02015-02-02 10:14:25 +11001223 code = xfs_ioctl_setattr_xflags(tp, ip, fa);
1224 if (code)
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001225 goto error_trans_cancel;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001226
1227 /*
Dave Chinnerfd179b92015-02-02 10:16:25 +11001228 * Change file ownership. Must be the owner or privileged. CAP_FSETID
1229 * overrides the following restrictions:
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001230 *
Dave Chinnerfd179b92015-02-02 10:16:25 +11001231 * The set-user-ID and set-group-ID bits of a file will be cleared upon
1232 * successful return from chown()
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001233 */
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001234
Dave Chinnerfd179b92015-02-02 10:16:25 +11001235 if ((ip->i_d.di_mode & (S_ISUID|S_ISGID)) &&
1236 !capable_wrt_inode_uidgid(VFS_I(ip), CAP_FSETID))
1237 ip->i_d.di_mode &= ~(S_ISUID|S_ISGID);
1238
1239 /* Change the ownerships and register project quota modifications */
1240 if (xfs_get_projid(ip) != fa->fsx_projid) {
1241 if (XFS_IS_QUOTA_RUNNING(mp) && XFS_IS_PQUOTA_ON(mp)) {
1242 olddquot = xfs_qm_vop_chown(tp, ip,
1243 &ip->i_pdquot, pdqp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001244 }
Dave Chinnerfd179b92015-02-02 10:16:25 +11001245 ASSERT(ip->i_d.di_version > 1);
1246 xfs_set_projid(ip, fa->fsx_projid);
Christoph Hellwigf13fae22008-07-21 16:16:15 +10001247 }
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001248
Dave Chinnera8727032014-10-02 09:20:30 +10001249 /*
1250 * Only set the extent size hint if we've already determined that the
1251 * extent size hint should be set on the inode. If no extent size flags
1252 * are set on the inode then unconditionally clear the extent size hint.
1253 */
Dave Chinnerfd179b92015-02-02 10:16:25 +11001254 if (ip->i_d.di_flags & (XFS_DIFLAG_EXTSIZE | XFS_DIFLAG_EXTSZINHERIT))
1255 ip->i_d.di_extsize = fa->fsx_extsize >> mp->m_sb.sb_blocklog;
1256 else
1257 ip->i_d.di_extsize = 0;
Dave Chinnera8727032014-10-02 09:20:30 +10001258
Christoph Hellwig70393312015-06-04 13:48:08 +10001259 code = xfs_trans_commit(tp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001260
1261 /*
1262 * Release any dquot(s) the inode had kept before chown.
1263 */
Christoph Hellwig7d095252009-06-08 15:33:32 +02001264 xfs_qm_dqrele(olddquot);
1265 xfs_qm_dqrele(udqp);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001266 xfs_qm_dqrele(pdqp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001267
Christoph Hellwig288699f2010-06-23 18:11:15 +10001268 return code;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001269
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001270error_trans_cancel:
Christoph Hellwig4906e212015-06-04 13:47:56 +10001271 xfs_trans_cancel(tp);
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001272error_free_dquots:
Christoph Hellwig7d095252009-06-08 15:33:32 +02001273 xfs_qm_dqrele(udqp);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001274 xfs_qm_dqrele(pdqp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001275 return code;
1276}
1277
Christoph Hellwigc83bfab2007-10-11 17:47:00 +10001278STATIC int
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001279xfs_ioc_fssetxattr(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 xfs_inode_t *ip,
1281 struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 void __user *arg)
1283{
1284 struct fsxattr fa;
Jan Karad9457dc2012-06-12 16:20:39 +02001285 int error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001286
1287 if (copy_from_user(&fa, arg, sizeof(fa)))
1288 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
Jan Karad9457dc2012-06-12 16:20:39 +02001290 error = mnt_want_write_file(filp);
1291 if (error)
1292 return error;
Dave Chinnerfd179b92015-02-02 10:16:25 +11001293 error = xfs_ioctl_setattr(ip, &fa);
Jan Karad9457dc2012-06-12 16:20:39 +02001294 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10001295 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001296}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001298STATIC int
1299xfs_ioc_getxflags(
1300 xfs_inode_t *ip,
1301 void __user *arg)
1302{
1303 unsigned int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001305 flags = xfs_di2lxflags(ip->i_d.di_flags);
1306 if (copy_to_user(arg, &flags, sizeof(flags)))
1307 return -EFAULT;
1308 return 0;
1309}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001311STATIC int
1312xfs_ioc_setxflags(
Dave Chinnerf96291f2015-02-02 10:15:56 +11001313 struct xfs_inode *ip,
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001314 struct file *filp,
1315 void __user *arg)
1316{
Dave Chinnerf96291f2015-02-02 10:15:56 +11001317 struct xfs_trans *tp;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001318 struct fsxattr fa;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001319 unsigned int flags;
Dave Chinnerf96291f2015-02-02 10:15:56 +11001320 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001322 if (copy_from_user(&flags, arg, sizeof(flags)))
1323 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001325 if (flags & ~(FS_IMMUTABLE_FL | FS_APPEND_FL | \
1326 FS_NOATIME_FL | FS_NODUMP_FL | \
1327 FS_SYNC_FL))
1328 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001330 fa.fsx_xflags = xfs_merge_ioc_xflags(flags, xfs_ip2xflags(ip));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
Jan Karad9457dc2012-06-12 16:20:39 +02001332 error = mnt_want_write_file(filp);
1333 if (error)
1334 return error;
Dave Chinnerf96291f2015-02-02 10:15:56 +11001335
1336 tp = xfs_ioctl_setattr_get_trans(ip);
1337 if (IS_ERR(tp)) {
1338 error = PTR_ERR(tp);
1339 goto out_drop_write;
1340 }
1341
1342 error = xfs_ioctl_setattr_xflags(tp, ip, &fa);
1343 if (error) {
Christoph Hellwig4906e212015-06-04 13:47:56 +10001344 xfs_trans_cancel(tp);
Dave Chinnerf96291f2015-02-02 10:15:56 +11001345 goto out_drop_write;
1346 }
1347
Christoph Hellwig70393312015-06-04 13:48:08 +10001348 error = xfs_trans_commit(tp);
Dave Chinnerf96291f2015-02-02 10:15:56 +11001349out_drop_write:
Jan Karad9457dc2012-06-12 16:20:39 +02001350 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10001351 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352}
1353
1354STATIC int
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001355xfs_getbmap_format(void **ap, struct getbmapx *bmv, int *full)
1356{
Dave Chinnerb972d072014-09-29 10:46:22 +10001357 struct getbmap __user *base = (struct getbmap __user *)*ap;
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001358
1359 /* copy only getbmap portion (not getbmapx) */
1360 if (copy_to_user(base, bmv, sizeof(struct getbmap)))
Dave Chinner24513372014-06-25 14:58:08 +10001361 return -EFAULT;
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001362
1363 *ap += sizeof(struct getbmap);
1364 return 0;
1365}
1366
1367STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368xfs_ioc_getbmap(
Christoph Hellwig993386c12007-08-28 16:12:30 +10001369 struct xfs_inode *ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 int ioflags,
1371 unsigned int cmd,
1372 void __user *arg)
1373{
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001374 struct getbmapx bmx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 int error;
1376
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001377 if (copy_from_user(&bmx, arg, sizeof(struct getbmapx)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001378 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001380 if (bmx.bmv_count < 2)
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001381 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001383 bmx.bmv_iflags = (cmd == XFS_IOC_GETBMAPA ? BMV_IF_ATTRFORK : 0);
Dave Chinnerb92cc59f62014-08-04 13:28:20 +10001384 if (ioflags & XFS_IO_INVIS)
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001385 bmx.bmv_iflags |= BMV_IF_NO_DMAPI_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001387 error = xfs_getbmap(ip, &bmx, xfs_getbmap_format,
Dave Chinnerb972d072014-09-29 10:46:22 +10001388 (__force struct getbmap *)arg+1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 if (error)
Dave Chinner24513372014-06-25 14:58:08 +10001390 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001392 /* copy back header - only size of getbmap */
1393 if (copy_to_user(arg, &bmx, sizeof(struct getbmap)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001394 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 return 0;
1396}
1397
1398STATIC int
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001399xfs_getbmapx_format(void **ap, struct getbmapx *bmv, int *full)
1400{
Dave Chinnerb972d072014-09-29 10:46:22 +10001401 struct getbmapx __user *base = (struct getbmapx __user *)*ap;
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001402
1403 if (copy_to_user(base, bmv, sizeof(struct getbmapx)))
Dave Chinner24513372014-06-25 14:58:08 +10001404 return -EFAULT;
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001405
1406 *ap += sizeof(struct getbmapx);
1407 return 0;
1408}
1409
1410STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411xfs_ioc_getbmapx(
Christoph Hellwig993386c12007-08-28 16:12:30 +10001412 struct xfs_inode *ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 void __user *arg)
1414{
1415 struct getbmapx bmx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 int error;
1417
1418 if (copy_from_user(&bmx, arg, sizeof(bmx)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001419 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420
1421 if (bmx.bmv_count < 2)
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001422 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001424 if (bmx.bmv_iflags & (~BMV_IF_VALID))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001425 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001427 error = xfs_getbmap(ip, &bmx, xfs_getbmapx_format,
Dave Chinnerb972d072014-09-29 10:46:22 +10001428 (__force struct getbmapx *)arg+1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 if (error)
Dave Chinner24513372014-06-25 14:58:08 +10001430 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001432 /* copy back header */
1433 if (copy_to_user(arg, &bmx, sizeof(struct getbmapx)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001434 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435
1436 return 0;
1437}
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001438
Dave Chinnera133d952013-08-12 20:49:48 +10001439int
1440xfs_ioc_swapext(
1441 xfs_swapext_t *sxp)
1442{
1443 xfs_inode_t *ip, *tip;
1444 struct fd f, tmp;
1445 int error = 0;
1446
1447 /* Pull information for the target fd */
1448 f = fdget((int)sxp->sx_fdtarget);
1449 if (!f.file) {
Dave Chinner24513372014-06-25 14:58:08 +10001450 error = -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001451 goto out;
1452 }
1453
1454 if (!(f.file->f_mode & FMODE_WRITE) ||
1455 !(f.file->f_mode & FMODE_READ) ||
1456 (f.file->f_flags & O_APPEND)) {
Dave Chinner24513372014-06-25 14:58:08 +10001457 error = -EBADF;
Dave Chinnera133d952013-08-12 20:49:48 +10001458 goto out_put_file;
1459 }
1460
1461 tmp = fdget((int)sxp->sx_fdtmp);
1462 if (!tmp.file) {
Dave Chinner24513372014-06-25 14:58:08 +10001463 error = -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001464 goto out_put_file;
1465 }
1466
1467 if (!(tmp.file->f_mode & FMODE_WRITE) ||
1468 !(tmp.file->f_mode & FMODE_READ) ||
1469 (tmp.file->f_flags & O_APPEND)) {
Dave Chinner24513372014-06-25 14:58:08 +10001470 error = -EBADF;
Dave Chinnera133d952013-08-12 20:49:48 +10001471 goto out_put_tmp_file;
1472 }
1473
1474 if (IS_SWAPFILE(file_inode(f.file)) ||
1475 IS_SWAPFILE(file_inode(tmp.file))) {
Dave Chinner24513372014-06-25 14:58:08 +10001476 error = -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001477 goto out_put_tmp_file;
1478 }
1479
1480 ip = XFS_I(file_inode(f.file));
1481 tip = XFS_I(file_inode(tmp.file));
1482
1483 if (ip->i_mount != tip->i_mount) {
Dave Chinner24513372014-06-25 14:58:08 +10001484 error = -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001485 goto out_put_tmp_file;
1486 }
1487
1488 if (ip->i_ino == tip->i_ino) {
Dave Chinner24513372014-06-25 14:58:08 +10001489 error = -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001490 goto out_put_tmp_file;
1491 }
1492
1493 if (XFS_FORCED_SHUTDOWN(ip->i_mount)) {
Dave Chinner24513372014-06-25 14:58:08 +10001494 error = -EIO;
Dave Chinnera133d952013-08-12 20:49:48 +10001495 goto out_put_tmp_file;
1496 }
1497
1498 error = xfs_swap_extents(ip, tip, sxp);
1499
1500 out_put_tmp_file:
1501 fdput(tmp);
1502 out_put_file:
1503 fdput(f);
1504 out:
1505 return error;
1506}
1507
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001508/*
1509 * Note: some of the ioctl's return positive numbers as a
1510 * byte count indicating success, such as readlink_by_handle.
1511 * So we don't "sign flip" like most other routines. This means
1512 * true errors need to be returned as a negative value.
1513 */
1514long
1515xfs_file_ioctl(
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001516 struct file *filp,
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001517 unsigned int cmd,
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001518 unsigned long p)
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001519{
Al Viro496ad9a2013-01-23 17:07:38 -05001520 struct inode *inode = file_inode(filp);
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001521 struct xfs_inode *ip = XFS_I(inode);
1522 struct xfs_mount *mp = ip->i_mount;
1523 void __user *arg = (void __user *)p;
1524 int ioflags = 0;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001525 int error;
1526
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001527 if (filp->f_mode & FMODE_NOCMTIME)
Dave Chinnerb92cc59f62014-08-04 13:28:20 +10001528 ioflags |= XFS_IO_INVIS;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001529
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001530 trace_xfs_file_ioctl(ip);
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001531
1532 switch (cmd) {
Christoph Hellwiga46db602011-01-07 13:02:04 +00001533 case FITRIM:
1534 return xfs_ioc_trim(mp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001535 case XFS_IOC_ALLOCSP:
1536 case XFS_IOC_FREESP:
1537 case XFS_IOC_RESVSP:
1538 case XFS_IOC_UNRESVSP:
1539 case XFS_IOC_ALLOCSP64:
1540 case XFS_IOC_FREESP64:
1541 case XFS_IOC_RESVSP64:
Dave Chinner44722352010-08-24 12:02:11 +10001542 case XFS_IOC_UNRESVSP64:
1543 case XFS_IOC_ZERO_RANGE: {
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001544 xfs_flock64_t bf;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001545
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001546 if (copy_from_user(&bf, arg, sizeof(bf)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001547 return -EFAULT;
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001548 return xfs_ioc_space(ip, inode, filp, ioflags, cmd, &bf);
1549 }
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001550 case XFS_IOC_DIOINFO: {
1551 struct dioattr da;
1552 xfs_buftarg_t *target =
1553 XFS_IS_REALTIME_INODE(ip) ?
1554 mp->m_rtdev_targp : mp->m_ddev_targp;
1555
Eric Sandeen7c71ee72014-01-21 16:46:23 -06001556 da.d_mem = da.d_miniosz = target->bt_logical_sectorsize;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001557 da.d_maxiosz = INT_MAX & ~(da.d_miniosz - 1);
1558
1559 if (copy_to_user(arg, &da, sizeof(da)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001560 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001561 return 0;
1562 }
1563
1564 case XFS_IOC_FSBULKSTAT_SINGLE:
1565 case XFS_IOC_FSBULKSTAT:
1566 case XFS_IOC_FSINUMBERS:
1567 return xfs_ioc_bulkstat(mp, cmd, arg);
1568
1569 case XFS_IOC_FSGEOMETRY_V1:
1570 return xfs_ioc_fsgeometry_v1(mp, arg);
1571
1572 case XFS_IOC_FSGEOMETRY:
1573 return xfs_ioc_fsgeometry(mp, arg);
1574
1575 case XFS_IOC_GETVERSION:
1576 return put_user(inode->i_generation, (int __user *)arg);
1577
1578 case XFS_IOC_FSGETXATTR:
1579 return xfs_ioc_fsgetxattr(ip, 0, arg);
1580 case XFS_IOC_FSGETXATTRA:
1581 return xfs_ioc_fsgetxattr(ip, 1, arg);
Lachlan McIlroy3b2816b2008-04-18 12:43:35 +10001582 case XFS_IOC_FSSETXATTR:
Lachlan McIlroy65e67f52008-04-18 12:59:45 +10001583 return xfs_ioc_fssetxattr(ip, filp, arg);
1584 case XFS_IOC_GETXFLAGS:
1585 return xfs_ioc_getxflags(ip, arg);
1586 case XFS_IOC_SETXFLAGS:
1587 return xfs_ioc_setxflags(ip, filp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001588
1589 case XFS_IOC_FSSETDM: {
1590 struct fsdmidata dmi;
1591
1592 if (copy_from_user(&dmi, arg, sizeof(dmi)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001593 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001594
Jan Karad9457dc2012-06-12 16:20:39 +02001595 error = mnt_want_write_file(filp);
1596 if (error)
1597 return error;
1598
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001599 error = xfs_set_dmattrs(ip, dmi.fsd_dmevmask,
1600 dmi.fsd_dmstate);
Jan Karad9457dc2012-06-12 16:20:39 +02001601 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10001602 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001603 }
1604
1605 case XFS_IOC_GETBMAP:
1606 case XFS_IOC_GETBMAPA:
1607 return xfs_ioc_getbmap(ip, ioflags, cmd, arg);
1608
1609 case XFS_IOC_GETBMAPX:
1610 return xfs_ioc_getbmapx(ip, arg);
1611
1612 case XFS_IOC_FD_TO_HANDLE:
1613 case XFS_IOC_PATH_TO_HANDLE:
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001614 case XFS_IOC_PATH_TO_FSHANDLE: {
1615 xfs_fsop_handlereq_t hreq;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001616
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001617 if (copy_from_user(&hreq, arg, sizeof(hreq)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001618 return -EFAULT;
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001619 return xfs_find_handle(cmd, &hreq);
1620 }
1621 case XFS_IOC_OPEN_BY_HANDLE: {
1622 xfs_fsop_handlereq_t hreq;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001623
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001624 if (copy_from_user(&hreq, arg, sizeof(xfs_fsop_handlereq_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001625 return -EFAULT;
Christoph Hellwigd296d302009-01-19 02:02:57 +01001626 return xfs_open_by_handle(filp, &hreq);
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001627 }
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001628 case XFS_IOC_FSSETDM_BY_HANDLE:
Christoph Hellwigd296d302009-01-19 02:02:57 +01001629 return xfs_fssetdm_by_handle(filp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001630
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001631 case XFS_IOC_READLINK_BY_HANDLE: {
1632 xfs_fsop_handlereq_t hreq;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001633
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001634 if (copy_from_user(&hreq, arg, sizeof(xfs_fsop_handlereq_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001635 return -EFAULT;
Christoph Hellwigd296d302009-01-19 02:02:57 +01001636 return xfs_readlink_by_handle(filp, &hreq);
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001637 }
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001638 case XFS_IOC_ATTRLIST_BY_HANDLE:
Christoph Hellwigd296d302009-01-19 02:02:57 +01001639 return xfs_attrlist_by_handle(filp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001640
1641 case XFS_IOC_ATTRMULTI_BY_HANDLE:
Christoph Hellwigd296d302009-01-19 02:02:57 +01001642 return xfs_attrmulti_by_handle(filp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001643
1644 case XFS_IOC_SWAPEXT: {
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001645 struct xfs_swapext sxp;
1646
1647 if (copy_from_user(&sxp, arg, sizeof(xfs_swapext_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001648 return -EFAULT;
Jan Karad9457dc2012-06-12 16:20:39 +02001649 error = mnt_want_write_file(filp);
1650 if (error)
1651 return error;
Dave Chinnera133d952013-08-12 20:49:48 +10001652 error = xfs_ioc_swapext(&sxp);
Jan Karad9457dc2012-06-12 16:20:39 +02001653 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10001654 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001655 }
1656
1657 case XFS_IOC_FSCOUNTS: {
1658 xfs_fsop_counts_t out;
1659
1660 error = xfs_fs_counts(mp, &out);
1661 if (error)
Dave Chinner24513372014-06-25 14:58:08 +10001662 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001663
1664 if (copy_to_user(arg, &out, sizeof(out)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001665 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001666 return 0;
1667 }
1668
1669 case XFS_IOC_SET_RESBLKS: {
1670 xfs_fsop_resblks_t inout;
1671 __uint64_t in;
1672
1673 if (!capable(CAP_SYS_ADMIN))
1674 return -EPERM;
1675
Eric Sandeend5db0f92010-02-05 22:59:53 +00001676 if (mp->m_flags & XFS_MOUNT_RDONLY)
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001677 return -EROFS;
Eric Sandeend5db0f92010-02-05 22:59:53 +00001678
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001679 if (copy_from_user(&inout, arg, sizeof(inout)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001680 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001681
Jan Karad9457dc2012-06-12 16:20:39 +02001682 error = mnt_want_write_file(filp);
1683 if (error)
1684 return error;
1685
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001686 /* input parameter is passed in resblks field of structure */
1687 in = inout.resblks;
1688 error = xfs_reserve_blocks(mp, &in, &inout);
Jan Karad9457dc2012-06-12 16:20:39 +02001689 mnt_drop_write_file(filp);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001690 if (error)
Dave Chinner24513372014-06-25 14:58:08 +10001691 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001692
1693 if (copy_to_user(arg, &inout, sizeof(inout)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001694 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001695 return 0;
1696 }
1697
1698 case XFS_IOC_GET_RESBLKS: {
1699 xfs_fsop_resblks_t out;
1700
1701 if (!capable(CAP_SYS_ADMIN))
1702 return -EPERM;
1703
1704 error = xfs_reserve_blocks(mp, NULL, &out);
1705 if (error)
Dave Chinner24513372014-06-25 14:58:08 +10001706 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001707
1708 if (copy_to_user(arg, &out, sizeof(out)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001709 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001710
1711 return 0;
1712 }
1713
1714 case XFS_IOC_FSGROWFSDATA: {
1715 xfs_growfs_data_t in;
1716
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001717 if (copy_from_user(&in, arg, sizeof(in)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001718 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001719
Jan Karad9457dc2012-06-12 16:20:39 +02001720 error = mnt_want_write_file(filp);
1721 if (error)
1722 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001723 error = xfs_growfs_data(mp, &in);
Jan Karad9457dc2012-06-12 16:20:39 +02001724 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10001725 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001726 }
1727
1728 case XFS_IOC_FSGROWFSLOG: {
1729 xfs_growfs_log_t in;
1730
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001731 if (copy_from_user(&in, arg, sizeof(in)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001732 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001733
Jan Karad9457dc2012-06-12 16:20:39 +02001734 error = mnt_want_write_file(filp);
1735 if (error)
1736 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001737 error = xfs_growfs_log(mp, &in);
Jan Karad9457dc2012-06-12 16:20:39 +02001738 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10001739 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001740 }
1741
1742 case XFS_IOC_FSGROWFSRT: {
1743 xfs_growfs_rt_t in;
1744
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001745 if (copy_from_user(&in, arg, sizeof(in)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001746 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001747
Jan Karad9457dc2012-06-12 16:20:39 +02001748 error = mnt_want_write_file(filp);
1749 if (error)
1750 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001751 error = xfs_growfs_rt(mp, &in);
Jan Karad9457dc2012-06-12 16:20:39 +02001752 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10001753 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001754 }
1755
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001756 case XFS_IOC_GOINGDOWN: {
1757 __uint32_t in;
1758
1759 if (!capable(CAP_SYS_ADMIN))
1760 return -EPERM;
1761
1762 if (get_user(in, (__uint32_t __user *)arg))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001763 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001764
Dave Chinner24513372014-06-25 14:58:08 +10001765 return xfs_fs_goingdown(mp, in);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001766 }
1767
1768 case XFS_IOC_ERROR_INJECTION: {
1769 xfs_error_injection_t in;
1770
1771 if (!capable(CAP_SYS_ADMIN))
1772 return -EPERM;
1773
1774 if (copy_from_user(&in, arg, sizeof(in)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001775 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001776
Dave Chinner24513372014-06-25 14:58:08 +10001777 return xfs_errortag_add(in.errtag, mp);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001778 }
1779
1780 case XFS_IOC_ERROR_CLEARALL:
1781 if (!capable(CAP_SYS_ADMIN))
1782 return -EPERM;
1783
Dave Chinner24513372014-06-25 14:58:08 +10001784 return xfs_errortag_clearall(mp, 1);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001785
Brian Foster8ca149d2012-11-07 12:21:12 -05001786 case XFS_IOC_FREE_EOFBLOCKS: {
Dwight Engenb9fe5052013-08-15 14:08:02 -04001787 struct xfs_fs_eofblocks eofb;
1788 struct xfs_eofblocks keofb;
Brian Foster8ca149d2012-11-07 12:21:12 -05001789
Dwight Engen8c567a72013-08-15 14:08:03 -04001790 if (!capable(CAP_SYS_ADMIN))
1791 return -EPERM;
1792
1793 if (mp->m_flags & XFS_MOUNT_RDONLY)
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001794 return -EROFS;
Dwight Engen8c567a72013-08-15 14:08:03 -04001795
Brian Foster8ca149d2012-11-07 12:21:12 -05001796 if (copy_from_user(&eofb, arg, sizeof(eofb)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001797 return -EFAULT;
Brian Foster8ca149d2012-11-07 12:21:12 -05001798
Dwight Engenb9fe5052013-08-15 14:08:02 -04001799 error = xfs_fs_eofblocks_from_user(&eofb, &keofb);
1800 if (error)
Dave Chinner24513372014-06-25 14:58:08 +10001801 return error;
Brian Foster8ca149d2012-11-07 12:21:12 -05001802
Dave Chinner24513372014-06-25 14:58:08 +10001803 return xfs_icache_free_eofblocks(mp, &keofb);
Brian Foster8ca149d2012-11-07 12:21:12 -05001804 }
1805
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001806 default:
1807 return -ENOTTY;
1808 }
1809}