blob: b01a19844799a165b35c01c65b8119891c87df2f [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"
Andreas Gruenbacher47e1bf62015-11-03 12:56:17 +110043#include "xfs_acl.h"
Darrick J. Wonge89c0412017-03-28 14:56:37 -070044#include "xfs_btree.h"
45#include <linux/fsmap.h>
46#include "xfs_fsmap.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080048#include <linux/capability.h>
Ingo Molnar5b825c32017-02-02 17:54:15 +010049#include <linux/cred.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <linux/dcache.h>
51#include <linux/mount.h>
52#include <linux/namei.h>
53#include <linux/pagemap.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090054#include <linux/slab.h>
Christoph Hellwigd296d302009-01-19 02:02:57 +010055#include <linux/exportfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57/*
58 * xfs_find_handle maps from userspace xfs_fsop_handlereq structure to
59 * a file or fs handle.
60 *
61 * XFS_IOC_PATH_TO_FSHANDLE
62 * returns fs handle for a mount point or path within that mount point
63 * XFS_IOC_FD_TO_HANDLE
64 * returns full handle for a FD opened in user space
65 * XFS_IOC_PATH_TO_HANDLE
66 * returns full handle for a path
67 */
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -060068int
Linus Torvalds1da177e2005-04-16 15:20:36 -070069xfs_find_handle(
70 unsigned int cmd,
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -060071 xfs_fsop_handlereq_t *hreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072{
73 int hsize;
74 xfs_handle_t handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 struct inode *inode;
Dave Chinnera30b0362013-09-02 20:49:36 +100076 struct fd f = {NULL};
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010077 struct path path;
Al Viro2903ff02012-08-28 12:52:22 -040078 int error;
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010079 struct xfs_inode *ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010081 if (cmd == XFS_IOC_FD_TO_HANDLE) {
Al Viro2903ff02012-08-28 12:52:22 -040082 f = fdget(hreq->fd);
83 if (!f.file)
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010084 return -EBADF;
Al Viro496ad9a2013-01-23 17:07:38 -050085 inode = file_inode(f.file);
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010086 } else {
87 error = user_lpath((const char __user *)hreq->path, &path);
88 if (error)
89 return error;
David Howells2b0143b2015-03-17 22:25:59 +000090 inode = d_inode(path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 }
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010092 ip = XFS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010094 /*
95 * We can only generate handles for inodes residing on a XFS filesystem,
96 * and only for regular files, directories or symbolic links.
97 */
98 error = -EINVAL;
99 if (inode->i_sb->s_magic != XFS_SB_MAGIC)
100 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100102 error = -EBADF;
103 if (!S_ISREG(inode->i_mode) &&
104 !S_ISDIR(inode->i_mode) &&
105 !S_ISLNK(inode->i_mode))
106 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100109 memcpy(&handle.ha_fsid, ip->i_mount->m_fixedfsid, sizeof(xfs_fsid_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100111 if (cmd == XFS_IOC_PATH_TO_FSHANDLE) {
112 /*
113 * This handle only contains an fsid, zero the rest.
114 */
115 memset(&handle.ha_fid, 0, sizeof(handle.ha_fid));
116 hsize = sizeof(xfs_fsid_t);
117 } else {
Christoph Hellwigc6143912007-09-14 15:22:37 +1000118 handle.ha_fid.fid_len = sizeof(xfs_fid_t) -
119 sizeof(handle.ha_fid.fid_len);
120 handle.ha_fid.fid_pad = 0;
Dave Chinner9e9a2672016-02-09 16:54:58 +1100121 handle.ha_fid.fid_gen = inode->i_generation;
Christoph Hellwigc6143912007-09-14 15:22:37 +1000122 handle.ha_fid.fid_ino = ip->i_ino;
Christoph Hellwig3398a402017-06-14 21:30:44 -0700123 hsize = sizeof(xfs_handle_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 }
125
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100126 error = -EFAULT;
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600127 if (copy_to_user(hreq->ohandle, &handle, hsize) ||
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100128 copy_to_user(hreq->ohandlen, &hsize, sizeof(__s32)))
129 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100131 error = 0;
132
133 out_put:
134 if (cmd == XFS_IOC_FD_TO_HANDLE)
Al Viro2903ff02012-08-28 12:52:22 -0400135 fdput(f);
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100136 else
137 path_put(&path);
138 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139}
140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141/*
Christoph Hellwigd296d302009-01-19 02:02:57 +0100142 * No need to do permission checks on the various pathname components
143 * as the handle operations are privileged.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 */
145STATIC int
Christoph Hellwigd296d302009-01-19 02:02:57 +0100146xfs_handle_acceptable(
147 void *context,
148 struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149{
Christoph Hellwigd296d302009-01-19 02:02:57 +0100150 return 1;
151}
152
153/*
154 * Convert userspace handle data into a dentry.
155 */
156struct dentry *
157xfs_handle_to_dentry(
158 struct file *parfilp,
159 void __user *uhandle,
160 u32 hlen)
161{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 xfs_handle_t handle;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100163 struct xfs_fid64 fid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
165 /*
166 * Only allow handle opens under a directory.
167 */
Al Viro496ad9a2013-01-23 17:07:38 -0500168 if (!S_ISDIR(file_inode(parfilp)->i_mode))
Christoph Hellwigd296d302009-01-19 02:02:57 +0100169 return ERR_PTR(-ENOTDIR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Christoph Hellwigd296d302009-01-19 02:02:57 +0100171 if (hlen != sizeof(xfs_handle_t))
172 return ERR_PTR(-EINVAL);
173 if (copy_from_user(&handle, uhandle, hlen))
174 return ERR_PTR(-EFAULT);
175 if (handle.ha_fid.fid_len !=
176 sizeof(handle.ha_fid) - sizeof(handle.ha_fid.fid_len))
177 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Christoph Hellwigd296d302009-01-19 02:02:57 +0100179 memset(&fid, 0, sizeof(struct fid));
180 fid.ino = handle.ha_fid.fid_ino;
181 fid.gen = handle.ha_fid.fid_gen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Christoph Hellwigd296d302009-01-19 02:02:57 +0100183 return exportfs_decode_fh(parfilp->f_path.mnt, (struct fid *)&fid, 3,
184 FILEID_INO32_GEN | XFS_FILEID_TYPE_64FLAG,
185 xfs_handle_acceptable, NULL);
186}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Christoph Hellwigd296d302009-01-19 02:02:57 +0100188STATIC struct dentry *
189xfs_handlereq_to_dentry(
190 struct file *parfilp,
191 xfs_fsop_handlereq_t *hreq)
192{
193 return xfs_handle_to_dentry(parfilp, hreq->ihandle, hreq->ihandlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194}
195
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600196int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197xfs_open_by_handle(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 struct file *parfilp,
Christoph Hellwigd296d302009-01-19 02:02:57 +0100199 xfs_fsop_handlereq_t *hreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{
David Howells745ca242008-11-14 10:39:22 +1100201 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 int error;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100203 int fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 int permflag;
205 struct file *filp;
206 struct inode *inode;
207 struct dentry *dentry;
Dave Chinner1a1d7722012-03-22 05:15:06 +0000208 fmode_t fmode;
Al Viro765927b2012-06-26 21:58:53 +0400209 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
211 if (!capable(CAP_SYS_ADMIN))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000212 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Christoph Hellwigd296d302009-01-19 02:02:57 +0100214 dentry = xfs_handlereq_to_dentry(parfilp, hreq);
215 if (IS_ERR(dentry))
216 return PTR_ERR(dentry);
David Howells2b0143b2015-03-17 22:25:59 +0000217 inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
219 /* Restrict xfs_open_by_handle to directories & regular files. */
220 if (!(S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode))) {
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000221 error = -EPERM;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100222 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 }
224
225#if BITS_PER_LONG != 32
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600226 hreq->oflags |= O_LARGEFILE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227#endif
Christoph Hellwigd296d302009-01-19 02:02:57 +0100228
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600229 permflag = hreq->oflags;
Dave Chinner1a1d7722012-03-22 05:15:06 +0000230 fmode = OPEN_FMODE(permflag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 if ((!(permflag & O_APPEND) || (permflag & O_TRUNC)) &&
Dave Chinner1a1d7722012-03-22 05:15:06 +0000232 (fmode & FMODE_WRITE) && IS_APPEND(inode)) {
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000233 error = -EPERM;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100234 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 }
236
Dave Chinner1a1d7722012-03-22 05:15:06 +0000237 if ((fmode & FMODE_WRITE) && IS_IMMUTABLE(inode)) {
Eryu Guan337684a2016-08-02 19:58:28 +0800238 error = -EPERM;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100239 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 }
241
242 /* Can't write directories. */
Dave Chinner1a1d7722012-03-22 05:15:06 +0000243 if (S_ISDIR(inode->i_mode) && (fmode & FMODE_WRITE)) {
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000244 error = -EISDIR;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100245 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 }
247
Yann Droneaud862a6292013-07-02 18:39:34 +0200248 fd = get_unused_fd_flags(0);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100249 if (fd < 0) {
250 error = fd;
251 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 }
253
Al Viro765927b2012-06-26 21:58:53 +0400254 path.mnt = parfilp->f_path.mnt;
255 path.dentry = dentry;
256 filp = dentry_open(&path, hreq->oflags, cred);
257 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 if (IS_ERR(filp)) {
Christoph Hellwigd296d302009-01-19 02:02:57 +0100259 put_unused_fd(fd);
260 return PTR_ERR(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 }
Christoph Hellwig4d4be482008-12-09 04:47:33 -0500262
Al Viro03209372011-07-25 20:54:24 -0400263 if (S_ISREG(inode->i_mode)) {
Vlad Apostolov2e2e7bb2006-11-11 18:04:47 +1100264 filp->f_flags |= O_NOATIME;
Christoph Hellwig4d4be482008-12-09 04:47:33 -0500265 filp->f_mode |= FMODE_NOCMTIME;
Vlad Apostolov2e2e7bb2006-11-11 18:04:47 +1100266 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Christoph Hellwigd296d302009-01-19 02:02:57 +0100268 fd_install(fd, filp);
269 return fd;
270
271 out_dput:
272 dput(dentry);
273 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274}
275
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600276int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277xfs_readlink_by_handle(
Christoph Hellwigd296d302009-01-19 02:02:57 +0100278 struct file *parfilp,
279 xfs_fsop_handlereq_t *hreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280{
Christoph Hellwigd296d302009-01-19 02:02:57 +0100281 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 __u32 olen;
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000283 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
285 if (!capable(CAP_SYS_ADMIN))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000286 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Christoph Hellwigd296d302009-01-19 02:02:57 +0100288 dentry = xfs_handlereq_to_dentry(parfilp, hreq);
289 if (IS_ERR(dentry))
290 return PTR_ERR(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
292 /* Restrict this handle operation to symlinks only. */
Miklos Szeredifd4a0edf2016-12-09 16:45:04 +0100293 if (!d_is_symlink(dentry)) {
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000294 error = -EINVAL;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100295 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 }
297
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600298 if (copy_from_user(&olen, hreq->ohandlen, sizeof(__u32))) {
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000299 error = -EFAULT;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100300 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
Miklos Szeredifd4a0edf2016-12-09 16:45:04 +0100303 error = vfs_readlink(dentry, hreq->ohandle, olen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Christoph Hellwigd296d302009-01-19 02:02:57 +0100305 out_dput:
306 dput(dentry);
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000307 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308}
309
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000310int
311xfs_set_dmattrs(
312 xfs_inode_t *ip,
313 u_int evmask,
314 u_int16_t state)
315{
316 xfs_mount_t *mp = ip->i_mount;
317 xfs_trans_t *tp;
318 int error;
319
320 if (!capable(CAP_SYS_ADMIN))
Dave Chinner24513372014-06-25 14:58:08 +1000321 return -EPERM;
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000322
323 if (XFS_FORCED_SHUTDOWN(mp))
Dave Chinner24513372014-06-25 14:58:08 +1000324 return -EIO;
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000325
Christoph Hellwig253f4912016-04-06 09:19:55 +1000326 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_ichange, 0, 0, 0, &tp);
327 if (error)
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000328 return error;
Christoph Hellwig253f4912016-04-06 09:19:55 +1000329
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000330 xfs_ilock(ip, XFS_ILOCK_EXCL);
331 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
332
333 ip->i_d.di_dmevmask = evmask;
334 ip->i_d.di_dmstate = state;
335
336 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
Christoph Hellwig70393312015-06-04 13:48:08 +1000337 error = xfs_trans_commit(tp);
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000338
339 return error;
340}
341
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342STATIC int
343xfs_fssetdm_by_handle(
Christoph Hellwigd296d302009-01-19 02:02:57 +0100344 struct file *parfilp,
345 void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346{
347 int error;
348 struct fsdmidata fsd;
349 xfs_fsop_setdm_handlereq_t dmhreq;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100350 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
352 if (!capable(CAP_MKNOD))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000353 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 if (copy_from_user(&dmhreq, arg, sizeof(xfs_fsop_setdm_handlereq_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000355 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Jan Karad9457dc2012-06-12 16:20:39 +0200357 error = mnt_want_write_file(parfilp);
358 if (error)
359 return error;
360
Christoph Hellwigd296d302009-01-19 02:02:57 +0100361 dentry = xfs_handlereq_to_dentry(parfilp, &dmhreq.hreq);
Jan Karad9457dc2012-06-12 16:20:39 +0200362 if (IS_ERR(dentry)) {
363 mnt_drop_write_file(parfilp);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100364 return PTR_ERR(dentry);
Jan Karad9457dc2012-06-12 16:20:39 +0200365 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
David Howells2b0143b2015-03-17 22:25:59 +0000367 if (IS_IMMUTABLE(d_inode(dentry)) || IS_APPEND(d_inode(dentry))) {
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000368 error = -EPERM;
Christoph Hellwig6e7f75e2007-10-11 18:09:50 +1000369 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 }
371
372 if (copy_from_user(&fsd, dmhreq.data, sizeof(fsd))) {
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000373 error = -EFAULT;
Christoph Hellwig6e7f75e2007-10-11 18:09:50 +1000374 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 }
376
David Howells2b0143b2015-03-17 22:25:59 +0000377 error = xfs_set_dmattrs(XFS_I(d_inode(dentry)), fsd.fsd_dmevmask,
Christoph Hellwig6e7f75e2007-10-11 18:09:50 +1000378 fsd.fsd_dmstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
Christoph Hellwig6e7f75e2007-10-11 18:09:50 +1000380 out:
Jan Karad9457dc2012-06-12 16:20:39 +0200381 mnt_drop_write_file(parfilp);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100382 dput(dentry);
Christoph Hellwig6e7f75e2007-10-11 18:09:50 +1000383 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384}
385
386STATIC int
387xfs_attrlist_by_handle(
Christoph Hellwigd296d302009-01-19 02:02:57 +0100388 struct file *parfilp,
389 void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390{
Christoph Hellwigd296d302009-01-19 02:02:57 +0100391 int error = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 attrlist_cursor_kern_t *cursor;
Darrick J. Wong0facef72016-08-03 10:58:53 +1000393 struct xfs_fsop_attrlist_handlereq __user *p = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 xfs_fsop_attrlist_handlereq_t al_hreq;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100395 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 char *kbuf;
397
398 if (!capable(CAP_SYS_ADMIN))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000399 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 if (copy_from_user(&al_hreq, arg, sizeof(xfs_fsop_attrlist_handlereq_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000401 return -EFAULT;
Dan Carpenter071c5292013-10-31 21:00:10 +0300402 if (al_hreq.buflen < sizeof(struct attrlist) ||
Jan Tulak4e247612015-10-12 16:02:56 +1100403 al_hreq.buflen > XFS_XATTR_LIST_MAX)
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000404 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Christoph Hellwig90ad58a2008-06-27 13:32:19 +1000406 /*
407 * Reject flags, only allow namespaces.
408 */
409 if (al_hreq.flags & ~(ATTR_ROOT | ATTR_SECURE))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000410 return -EINVAL;
Christoph Hellwig90ad58a2008-06-27 13:32:19 +1000411
Christoph Hellwigd296d302009-01-19 02:02:57 +0100412 dentry = xfs_handlereq_to_dentry(parfilp, &al_hreq.hreq);
413 if (IS_ERR(dentry))
414 return PTR_ERR(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
Dave Chinnerfdd3cce2013-09-02 20:53:00 +1000416 kbuf = kmem_zalloc_large(al_hreq.buflen, KM_SLEEP);
417 if (!kbuf)
418 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
420 cursor = (attrlist_cursor_kern_t *)&al_hreq.pos;
David Howells2b0143b2015-03-17 22:25:59 +0000421 error = xfs_attr_list(XFS_I(d_inode(dentry)), kbuf, al_hreq.buflen,
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000422 al_hreq.flags, cursor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 if (error)
424 goto out_kfree;
425
Darrick J. Wong0facef72016-08-03 10:58:53 +1000426 if (copy_to_user(&p->pos, cursor, sizeof(attrlist_cursor_kern_t))) {
427 error = -EFAULT;
428 goto out_kfree;
429 }
430
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 if (copy_to_user(al_hreq.buffer, kbuf, al_hreq.buflen))
432 error = -EFAULT;
433
Dave Chinnerfdd3cce2013-09-02 20:53:00 +1000434out_kfree:
435 kmem_free(kbuf);
436out_dput:
Christoph Hellwigd296d302009-01-19 02:02:57 +0100437 dput(dentry);
438 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439}
440
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600441int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442xfs_attrmulti_attr_get(
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000443 struct inode *inode,
Dave Chinnera9273ca2010-01-20 10:47:48 +1100444 unsigned char *name,
445 unsigned char __user *ubuf,
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700446 uint32_t *len,
447 uint32_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448{
Dave Chinnera9273ca2010-01-20 10:47:48 +1100449 unsigned char *kbuf;
Dave Chinner24513372014-06-25 14:58:08 +1000450 int error = -EFAULT;
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000451
Jan Tulak51fcbfe2015-10-12 16:03:59 +1100452 if (*len > XFS_XATTR_SIZE_MAX)
Dave Chinner24513372014-06-25 14:58:08 +1000453 return -EINVAL;
Dave Chinnerfdd3cce2013-09-02 20:53:00 +1000454 kbuf = kmem_zalloc_large(*len, KM_SLEEP);
455 if (!kbuf)
Dave Chinner24513372014-06-25 14:58:08 +1000456 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000458 error = xfs_attr_get(XFS_I(inode), name, kbuf, (int *)len, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 if (error)
460 goto out_kfree;
461
462 if (copy_to_user(ubuf, kbuf, *len))
Dave Chinner24513372014-06-25 14:58:08 +1000463 error = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
Dave Chinnerfdd3cce2013-09-02 20:53:00 +1000465out_kfree:
466 kmem_free(kbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 return error;
468}
469
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600470int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471xfs_attrmulti_attr_set(
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000472 struct inode *inode,
Dave Chinnera9273ca2010-01-20 10:47:48 +1100473 unsigned char *name,
474 const unsigned char __user *ubuf,
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700475 uint32_t len,
476 uint32_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477{
Dave Chinnera9273ca2010-01-20 10:47:48 +1100478 unsigned char *kbuf;
Andreas Gruenbacher09cb22d2015-11-03 12:53:54 +1100479 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000481 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
Dave Chinner24513372014-06-25 14:58:08 +1000482 return -EPERM;
Jan Tulak51fcbfe2015-10-12 16:03:59 +1100483 if (len > XFS_XATTR_SIZE_MAX)
Dave Chinner24513372014-06-25 14:58:08 +1000484 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
Li Zefan0e639bd2009-04-08 15:08:04 +0800486 kbuf = memdup_user(ubuf, len);
487 if (IS_ERR(kbuf))
488 return PTR_ERR(kbuf);
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000489
Andreas Gruenbacher09cb22d2015-11-03 12:53:54 +1100490 error = xfs_attr_set(XFS_I(inode), name, kbuf, len, flags);
Andreas Gruenbacher47e1bf62015-11-03 12:56:17 +1100491 if (!error)
492 xfs_forget_acl(inode, name, flags);
Andreas Gruenbacher09cb22d2015-11-03 12:53:54 +1100493 kfree(kbuf);
494 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495}
496
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600497int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498xfs_attrmulti_attr_remove(
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000499 struct inode *inode,
Dave Chinnera9273ca2010-01-20 10:47:48 +1100500 unsigned char *name,
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700501 uint32_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502{
Andreas Gruenbacher47e1bf62015-11-03 12:56:17 +1100503 int error;
504
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000505 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
Dave Chinner24513372014-06-25 14:58:08 +1000506 return -EPERM;
Andreas Gruenbacher47e1bf62015-11-03 12:56:17 +1100507 error = xfs_attr_remove(XFS_I(inode), name, flags);
508 if (!error)
509 xfs_forget_acl(inode, name, flags);
510 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511}
512
513STATIC int
514xfs_attrmulti_by_handle(
Dave Hansen42a74f22008-02-15 14:37:46 -0800515 struct file *parfilp,
Christoph Hellwigd296d302009-01-19 02:02:57 +0100516 void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517{
518 int error;
519 xfs_attr_multiop_t *ops;
520 xfs_fsop_attrmulti_handlereq_t am_hreq;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100521 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 unsigned int i, size;
Dave Chinnera9273ca2010-01-20 10:47:48 +1100523 unsigned char *attr_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
525 if (!capable(CAP_SYS_ADMIN))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000526 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 if (copy_from_user(&am_hreq, arg, sizeof(xfs_fsop_attrmulti_handlereq_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000528 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Zhitong Wangfda168c2010-03-23 09:51:22 +1100530 /* overflow check */
531 if (am_hreq.opcount >= INT_MAX / sizeof(xfs_attr_multiop_t))
532 return -E2BIG;
533
Christoph Hellwigd296d302009-01-19 02:02:57 +0100534 dentry = xfs_handlereq_to_dentry(parfilp, &am_hreq.hreq);
535 if (IS_ERR(dentry))
536 return PTR_ERR(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Dave Chinner24513372014-06-25 14:58:08 +1000538 error = -E2BIG;
Christoph Hellwige182f572008-06-27 13:32:31 +1000539 size = am_hreq.opcount * sizeof(xfs_attr_multiop_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 if (!size || size > 16 * PAGE_SIZE)
Christoph Hellwigd296d302009-01-19 02:02:57 +0100541 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Li Zefan0e639bd2009-04-08 15:08:04 +0800543 ops = memdup_user(am_hreq.ops, size);
544 if (IS_ERR(ops)) {
Dave Chinner24513372014-06-25 14:58:08 +1000545 error = PTR_ERR(ops);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100546 goto out_dput;
Li Zefan0e639bd2009-04-08 15:08:04 +0800547 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
Dave Chinner24513372014-06-25 14:58:08 +1000549 error = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 attr_name = kmalloc(MAXNAMELEN, GFP_KERNEL);
551 if (!attr_name)
552 goto out_kfree_ops;
553
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 error = 0;
555 for (i = 0; i < am_hreq.opcount; i++) {
Dave Chinnera9273ca2010-01-20 10:47:48 +1100556 ops[i].am_error = strncpy_from_user((char *)attr_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 ops[i].am_attrname, MAXNAMELEN);
558 if (ops[i].am_error == 0 || ops[i].am_error == MAXNAMELEN)
Dave Chinner24513372014-06-25 14:58:08 +1000559 error = -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 if (ops[i].am_error < 0)
561 break;
562
563 switch (ops[i].am_opcode) {
564 case ATTR_OP_GET:
Christoph Hellwigd296d302009-01-19 02:02:57 +0100565 ops[i].am_error = xfs_attrmulti_attr_get(
David Howells2b0143b2015-03-17 22:25:59 +0000566 d_inode(dentry), attr_name,
Christoph Hellwigd296d302009-01-19 02:02:57 +0100567 ops[i].am_attrvalue, &ops[i].am_length,
568 ops[i].am_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 break;
570 case ATTR_OP_SET:
Al Viroa561be72011-11-23 11:57:51 -0500571 ops[i].am_error = mnt_want_write_file(parfilp);
Dave Hansen42a74f22008-02-15 14:37:46 -0800572 if (ops[i].am_error)
573 break;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100574 ops[i].am_error = xfs_attrmulti_attr_set(
David Howells2b0143b2015-03-17 22:25:59 +0000575 d_inode(dentry), attr_name,
Christoph Hellwigd296d302009-01-19 02:02:57 +0100576 ops[i].am_attrvalue, ops[i].am_length,
577 ops[i].am_flags);
Al Viro2a79f172011-12-09 08:06:57 -0500578 mnt_drop_write_file(parfilp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 break;
580 case ATTR_OP_REMOVE:
Al Viroa561be72011-11-23 11:57:51 -0500581 ops[i].am_error = mnt_want_write_file(parfilp);
Dave Hansen42a74f22008-02-15 14:37:46 -0800582 if (ops[i].am_error)
583 break;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100584 ops[i].am_error = xfs_attrmulti_attr_remove(
David Howells2b0143b2015-03-17 22:25:59 +0000585 d_inode(dentry), attr_name,
Christoph Hellwigd296d302009-01-19 02:02:57 +0100586 ops[i].am_flags);
Al Viro2a79f172011-12-09 08:06:57 -0500587 mnt_drop_write_file(parfilp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 break;
589 default:
Dave Chinner24513372014-06-25 14:58:08 +1000590 ops[i].am_error = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 }
592 }
593
594 if (copy_to_user(am_hreq.ops, ops, size))
Dave Chinner24513372014-06-25 14:58:08 +1000595 error = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
597 kfree(attr_name);
598 out_kfree_ops:
599 kfree(ops);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100600 out_dput:
601 dput(dentry);
Dave Chinner24513372014-06-25 14:58:08 +1000602 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603}
604
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600605int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606xfs_ioc_space(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 unsigned int cmd,
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600609 xfs_flock64_t *bf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610{
Christoph Hellwig8f3e2052016-07-20 11:29:35 +1000611 struct inode *inode = file_inode(filp);
612 struct xfs_inode *ip = XFS_I(inode);
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;
Christoph Hellwig8f3e2052016-07-20 11:29:35 +1000637 if (filp->f_mode & FMODE_NOCMTIME)
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 Hellwig65523212016-11-30 14:33:25 +1100645 error = xfs_break_layouts(inode, &iolock);
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
Jan Kara69bca802016-05-26 14:46:43 +0200726 error = xfs_vn_setattr_size(file_dentry(filp), &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)
Dave Chinnere7b89482016-01-04 16:44:15 +1100854 xflags |= FS_XFLAG_IMMUTABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 else
Dave Chinnere7b89482016-01-04 16:44:15 +1100856 xflags &= ~FS_XFLAG_IMMUTABLE;
Eric Sandeen39058a02007-02-10 18:37:10 +1100857 if (flags & FS_APPEND_FL)
Dave Chinnere7b89482016-01-04 16:44:15 +1100858 xflags |= FS_XFLAG_APPEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 else
Dave Chinnere7b89482016-01-04 16:44:15 +1100860 xflags &= ~FS_XFLAG_APPEND;
Eric Sandeen39058a02007-02-10 18:37:10 +1100861 if (flags & FS_SYNC_FL)
Dave Chinnere7b89482016-01-04 16:44:15 +1100862 xflags |= FS_XFLAG_SYNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 else
Dave Chinnere7b89482016-01-04 16:44:15 +1100864 xflags &= ~FS_XFLAG_SYNC;
Eric Sandeen39058a02007-02-10 18:37:10 +1100865 if (flags & FS_NOATIME_FL)
Dave Chinnere7b89482016-01-04 16:44:15 +1100866 xflags |= FS_XFLAG_NOATIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 else
Dave Chinnere7b89482016-01-04 16:44:15 +1100868 xflags &= ~FS_XFLAG_NOATIME;
Eric Sandeen39058a02007-02-10 18:37:10 +1100869 if (flags & FS_NODUMP_FL)
Dave Chinnere7b89482016-01-04 16:44:15 +1100870 xflags |= FS_XFLAG_NODUMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 else
Dave Chinnere7b89482016-01-04 16:44:15 +1100872 xflags &= ~FS_XFLAG_NODUMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
874 return xflags;
875}
876
877STATIC unsigned int
878xfs_di2lxflags(
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700879 uint16_t di_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880{
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;
Darrick J. Wongf7ca3522016-10-03 09:11:43 -0700909 fa.fsx_cowextsize = ip->i_d.di_cowextsize <<
910 ip->i_mount->m_sb.sb_blocklog;
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000911 fa.fsx_projid = xfs_get_projid(ip);
Christoph Hellwigc83bfab2007-10-11 17:47:00 +1000912
913 if (attr) {
914 if (ip->i_afp) {
915 if (ip->i_afp->if_flags & XFS_IFEXTENTS)
Eric Sandeen5d829302016-11-08 12:59:42 +1100916 fa.fsx_nextents = xfs_iext_count(ip->i_afp);
Christoph Hellwigc83bfab2007-10-11 17:47:00 +1000917 else
918 fa.fsx_nextents = ip->i_d.di_anextents;
919 } else
920 fa.fsx_nextents = 0;
921 } else {
922 if (ip->i_df.if_flags & XFS_IFEXTENTS)
Eric Sandeen5d829302016-11-08 12:59:42 +1100923 fa.fsx_nextents = xfs_iext_count(&ip->i_df);
Christoph Hellwigc83bfab2007-10-11 17:47:00 +1000924 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 Hellwigdd606872017-09-02 08:21:20 -0700934STATIC uint16_t
935xfs_flags2diflags(
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000936 struct xfs_inode *ip,
937 unsigned int xflags)
938{
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000939 /* can't set PREALLOC this way, just preserve it */
Christoph Hellwigdd606872017-09-02 08:21:20 -0700940 uint16_t di_flags =
941 (ip->i_d.di_flags & XFS_DIFLAG_PREALLOC);
942
Dave Chinnere7b89482016-01-04 16:44:15 +1100943 if (xflags & FS_XFLAG_IMMUTABLE)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000944 di_flags |= XFS_DIFLAG_IMMUTABLE;
Dave Chinnere7b89482016-01-04 16:44:15 +1100945 if (xflags & FS_XFLAG_APPEND)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000946 di_flags |= XFS_DIFLAG_APPEND;
Dave Chinnere7b89482016-01-04 16:44:15 +1100947 if (xflags & FS_XFLAG_SYNC)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000948 di_flags |= XFS_DIFLAG_SYNC;
Dave Chinnere7b89482016-01-04 16:44:15 +1100949 if (xflags & FS_XFLAG_NOATIME)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000950 di_flags |= XFS_DIFLAG_NOATIME;
Dave Chinnere7b89482016-01-04 16:44:15 +1100951 if (xflags & FS_XFLAG_NODUMP)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000952 di_flags |= XFS_DIFLAG_NODUMP;
Dave Chinnere7b89482016-01-04 16:44:15 +1100953 if (xflags & FS_XFLAG_NODEFRAG)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000954 di_flags |= XFS_DIFLAG_NODEFRAG;
Dave Chinnere7b89482016-01-04 16:44:15 +1100955 if (xflags & FS_XFLAG_FILESTREAM)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000956 di_flags |= XFS_DIFLAG_FILESTREAM;
Dave Chinnerc19b3b052016-02-09 16:54:58 +1100957 if (S_ISDIR(VFS_I(ip)->i_mode)) {
Dave Chinnere7b89482016-01-04 16:44:15 +1100958 if (xflags & FS_XFLAG_RTINHERIT)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000959 di_flags |= XFS_DIFLAG_RTINHERIT;
Dave Chinnere7b89482016-01-04 16:44:15 +1100960 if (xflags & FS_XFLAG_NOSYMLINKS)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000961 di_flags |= XFS_DIFLAG_NOSYMLINKS;
Dave Chinnere7b89482016-01-04 16:44:15 +1100962 if (xflags & FS_XFLAG_EXTSZINHERIT)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000963 di_flags |= XFS_DIFLAG_EXTSZINHERIT;
Dave Chinnere7b89482016-01-04 16:44:15 +1100964 if (xflags & FS_XFLAG_PROJINHERIT)
Dave Chinner9336e3a2014-10-02 09:18:40 +1000965 di_flags |= XFS_DIFLAG_PROJINHERIT;
Dave Chinnerc19b3b052016-02-09 16:54:58 +1100966 } else if (S_ISREG(VFS_I(ip)->i_mode)) {
Dave Chinnere7b89482016-01-04 16:44:15 +1100967 if (xflags & FS_XFLAG_REALTIME)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000968 di_flags |= XFS_DIFLAG_REALTIME;
Dave Chinnere7b89482016-01-04 16:44:15 +1100969 if (xflags & FS_XFLAG_EXTSIZE)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000970 di_flags |= XFS_DIFLAG_EXTSIZE;
971 }
Dave Chinner58f88ca2016-01-04 16:44:15 +1100972
Christoph Hellwigdd606872017-09-02 08:21:20 -0700973 return di_flags;
974}
Dave Chinner58f88ca2016-01-04 16:44:15 +1100975
Christoph Hellwigdd606872017-09-02 08:21:20 -0700976STATIC uint64_t
977xfs_flags2diflags2(
978 struct xfs_inode *ip,
979 unsigned int xflags)
980{
981 uint64_t di_flags2 =
982 (ip->i_d.di_flags2 & XFS_DIFLAG2_REFLINK);
983
Dave Chinner58f88ca2016-01-04 16:44:15 +1100984 if (xflags & FS_XFLAG_DAX)
985 di_flags2 |= XFS_DIFLAG2_DAX;
Darrick J. Wongf7ca3522016-10-03 09:11:43 -0700986 if (xflags & FS_XFLAG_COWEXTSIZE)
987 di_flags2 |= XFS_DIFLAG2_COWEXTSIZE;
Dave Chinner58f88ca2016-01-04 16:44:15 +1100988
Christoph Hellwigdd606872017-09-02 08:21:20 -0700989 return di_flags2;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000990}
991
Christoph Hellwigf13fae22008-07-21 16:16:15 +1000992STATIC void
993xfs_diflags_to_linux(
994 struct xfs_inode *ip)
995{
David Chinnere4f75292008-08-13 16:00:45 +1000996 struct inode *inode = VFS_I(ip);
Christoph Hellwigf13fae22008-07-21 16:16:15 +1000997 unsigned int xflags = xfs_ip2xflags(ip);
998
Dave Chinnere7b89482016-01-04 16:44:15 +1100999 if (xflags & FS_XFLAG_IMMUTABLE)
Christoph Hellwigf13fae22008-07-21 16:16:15 +10001000 inode->i_flags |= S_IMMUTABLE;
1001 else
1002 inode->i_flags &= ~S_IMMUTABLE;
Dave Chinnere7b89482016-01-04 16:44:15 +11001003 if (xflags & FS_XFLAG_APPEND)
Christoph Hellwigf13fae22008-07-21 16:16:15 +10001004 inode->i_flags |= S_APPEND;
1005 else
1006 inode->i_flags &= ~S_APPEND;
Dave Chinnere7b89482016-01-04 16:44:15 +11001007 if (xflags & FS_XFLAG_SYNC)
Christoph Hellwigf13fae22008-07-21 16:16:15 +10001008 inode->i_flags |= S_SYNC;
1009 else
1010 inode->i_flags &= ~S_SYNC;
Dave Chinnere7b89482016-01-04 16:44:15 +11001011 if (xflags & FS_XFLAG_NOATIME)
Christoph Hellwigf13fae22008-07-21 16:16:15 +10001012 inode->i_flags |= S_NOATIME;
1013 else
1014 inode->i_flags &= ~S_NOATIME;
Christoph Hellwig742d8422017-08-30 09:23:01 -07001015#if 0 /* disabled until the flag switching races are sorted out */
Dave Chinner58f88ca2016-01-04 16:44:15 +11001016 if (xflags & FS_XFLAG_DAX)
1017 inode->i_flags |= S_DAX;
1018 else
1019 inode->i_flags &= ~S_DAX;
Christoph Hellwig742d8422017-08-30 09:23:01 -07001020#endif
Christoph Hellwigf13fae22008-07-21 16:16:15 +10001021}
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001022
Dave Chinner29a17c02015-02-02 10:14:25 +11001023static int
1024xfs_ioctl_setattr_xflags(
1025 struct xfs_trans *tp,
1026 struct xfs_inode *ip,
1027 struct fsxattr *fa)
1028{
1029 struct xfs_mount *mp = ip->i_mount;
Christoph Hellwigdd606872017-09-02 08:21:20 -07001030 uint64_t di_flags2;
Dave Chinner29a17c02015-02-02 10:14:25 +11001031
1032 /* Can't change realtime flag if any extents are allocated. */
1033 if ((ip->i_d.di_nextents || ip->i_delayed_blks) &&
Dave Chinnere7b89482016-01-04 16:44:15 +11001034 XFS_IS_REALTIME_INODE(ip) != (fa->fsx_xflags & FS_XFLAG_REALTIME))
Dave Chinner29a17c02015-02-02 10:14:25 +11001035 return -EINVAL;
1036
1037 /* If realtime flag is set then must have realtime device */
Dave Chinnere7b89482016-01-04 16:44:15 +11001038 if (fa->fsx_xflags & FS_XFLAG_REALTIME) {
Dave Chinner29a17c02015-02-02 10:14:25 +11001039 if (mp->m_sb.sb_rblocks == 0 || mp->m_sb.sb_rextsize == 0 ||
1040 (ip->i_d.di_extsize % mp->m_sb.sb_rextsize))
1041 return -EINVAL;
1042 }
1043
Darrick J. Wong1987fd72016-10-10 16:49:29 +11001044 /* Clear reflink if we are actually able to set the rt flag. */
Darrick J. Wongc8e156a2016-10-03 09:11:50 -07001045 if ((fa->fsx_xflags & FS_XFLAG_REALTIME) && xfs_is_reflink_inode(ip))
Darrick J. Wong1987fd72016-10-10 16:49:29 +11001046 ip->i_d.di_flags2 &= ~XFS_DIFLAG2_REFLINK;
Darrick J. Wongc8e156a2016-10-03 09:11:50 -07001047
Darrick J. Wong4f435eb2016-10-03 09:11:50 -07001048 /* Don't allow us to set DAX mode for a reflinked file for now. */
1049 if ((fa->fsx_xflags & FS_XFLAG_DAX) && xfs_is_reflink_inode(ip))
1050 return -EINVAL;
1051
Dave Chinner29a17c02015-02-02 10:14:25 +11001052 /*
1053 * Can't modify an immutable/append-only file unless
1054 * we have appropriate permission.
1055 */
1056 if (((ip->i_d.di_flags & (XFS_DIFLAG_IMMUTABLE | XFS_DIFLAG_APPEND)) ||
Dave Chinnere7b89482016-01-04 16:44:15 +11001057 (fa->fsx_xflags & (FS_XFLAG_IMMUTABLE | FS_XFLAG_APPEND))) &&
Dave Chinner29a17c02015-02-02 10:14:25 +11001058 !capable(CAP_LINUX_IMMUTABLE))
1059 return -EPERM;
1060
Christoph Hellwigdd606872017-09-02 08:21:20 -07001061 /* diflags2 only valid for v3 inodes. */
1062 di_flags2 = xfs_flags2diflags2(ip, fa->fsx_xflags);
1063 if (di_flags2 && ip->i_d.di_version < 3)
1064 return -EINVAL;
1065
1066 ip->i_d.di_flags = xfs_flags2diflags(ip, fa->fsx_xflags);
1067 ip->i_d.di_flags2 = di_flags2;
1068
Dave Chinner29a17c02015-02-02 10:14:25 +11001069 xfs_diflags_to_linux(ip);
1070 xfs_trans_ichgtime(tp, ip, XFS_ICHGTIME_CHG);
1071 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
Bill O'Donnellff6d6af2015-10-12 18:21:22 +11001072 XFS_STATS_INC(mp, xs_ig_attrchg);
Dave Chinner29a17c02015-02-02 10:14:25 +11001073 return 0;
1074}
1075
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001076/*
Dave Chinner3a6a8542016-03-01 09:41:33 +11001077 * If we are changing DAX flags, we have to ensure the file is clean and any
1078 * cached objects in the address space are invalidated and removed. This
1079 * requires us to lock out other IO and page faults similar to a truncate
1080 * operation. The locks need to be held until the transaction has been committed
1081 * so that the cache invalidation is atomic with respect to the DAX flag
1082 * manipulation.
1083 */
1084static int
1085xfs_ioctl_setattr_dax_invalidate(
1086 struct xfs_inode *ip,
1087 struct fsxattr *fa,
1088 int *join_flags)
1089{
1090 struct inode *inode = VFS_I(ip);
Ross Zwisler6851a3d2017-09-18 14:46:03 -07001091 struct super_block *sb = inode->i_sb;
Dave Chinner3a6a8542016-03-01 09:41:33 +11001092 int error;
1093
1094 *join_flags = 0;
1095
1096 /*
1097 * It is only valid to set the DAX flag on regular files and
Dave Chinner64485432016-03-01 09:41:33 +11001098 * directories on filesystems where the block size is equal to the page
1099 * size. On directories it serves as an inherit hint.
Dave Chinner3a6a8542016-03-01 09:41:33 +11001100 */
Dave Chinner64485432016-03-01 09:41:33 +11001101 if (fa->fsx_xflags & FS_XFLAG_DAX) {
1102 if (!(S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode)))
1103 return -EINVAL;
Ross Zwisler6851a3d2017-09-18 14:46:03 -07001104 if (bdev_dax_supported(sb, sb->s_blocksize) < 0)
Dave Chinner64485432016-03-01 09:41:33 +11001105 return -EINVAL;
1106 }
Dave Chinner3a6a8542016-03-01 09:41:33 +11001107
1108 /* If the DAX state is not changing, we have nothing to do here. */
1109 if ((fa->fsx_xflags & FS_XFLAG_DAX) && IS_DAX(inode))
1110 return 0;
1111 if (!(fa->fsx_xflags & FS_XFLAG_DAX) && !IS_DAX(inode))
1112 return 0;
1113
1114 /* lock, flush and invalidate mapping in preparation for flag change */
1115 xfs_ilock(ip, XFS_MMAPLOCK_EXCL | XFS_IOLOCK_EXCL);
1116 error = filemap_write_and_wait(inode->i_mapping);
1117 if (error)
1118 goto out_unlock;
1119 error = invalidate_inode_pages2(inode->i_mapping);
1120 if (error)
1121 goto out_unlock;
1122
1123 *join_flags = XFS_MMAPLOCK_EXCL | XFS_IOLOCK_EXCL;
1124 return 0;
1125
1126out_unlock:
1127 xfs_iunlock(ip, XFS_MMAPLOCK_EXCL | XFS_IOLOCK_EXCL);
1128 return error;
1129
1130}
1131
1132/*
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001133 * Set up the transaction structure for the setattr operation, checking that we
1134 * have permission to do so. On success, return a clean transaction and the
1135 * inode locked exclusively ready for further operation specific checks. On
1136 * failure, return an error without modifying or locking the inode.
Dave Chinner3a6a8542016-03-01 09:41:33 +11001137 *
1138 * The inode might already be IO locked on call. If this is the case, it is
1139 * indicated in @join_flags and we take full responsibility for ensuring they
1140 * are unlocked from now on. Hence if we have an error here, we still have to
1141 * unlock them. Otherwise, once they are joined to the transaction, they will
1142 * be unlocked on commit/cancel.
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001143 */
1144static struct xfs_trans *
1145xfs_ioctl_setattr_get_trans(
Dave Chinner3a6a8542016-03-01 09:41:33 +11001146 struct xfs_inode *ip,
1147 int join_flags)
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001148{
1149 struct xfs_mount *mp = ip->i_mount;
1150 struct xfs_trans *tp;
Dave Chinner3a6a8542016-03-01 09:41:33 +11001151 int error = -EROFS;
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001152
1153 if (mp->m_flags & XFS_MOUNT_RDONLY)
Dave Chinner3a6a8542016-03-01 09:41:33 +11001154 goto out_unlock;
1155 error = -EIO;
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001156 if (XFS_FORCED_SHUTDOWN(mp))
Dave Chinner3a6a8542016-03-01 09:41:33 +11001157 goto out_unlock;
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001158
Christoph Hellwig253f4912016-04-06 09:19:55 +10001159 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_ichange, 0, 0, 0, &tp);
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001160 if (error)
Christoph Hellwig253f4912016-04-06 09:19:55 +10001161 return ERR_PTR(error);
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001162
1163 xfs_ilock(ip, XFS_ILOCK_EXCL);
Dave Chinner3a6a8542016-03-01 09:41:33 +11001164 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL | join_flags);
1165 join_flags = 0;
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001166
1167 /*
1168 * CAP_FOWNER overrides the following restrictions:
1169 *
1170 * The user ID of the calling process must be equal to the file owner
1171 * ID, except in cases where the CAP_FSETID capability is applicable.
1172 */
1173 if (!inode_owner_or_capable(VFS_I(ip))) {
1174 error = -EPERM;
1175 goto out_cancel;
1176 }
1177
1178 if (mp->m_flags & XFS_MOUNT_WSYNC)
1179 xfs_trans_set_sync(tp);
1180
1181 return tp;
1182
1183out_cancel:
Christoph Hellwig4906e212015-06-04 13:47:56 +10001184 xfs_trans_cancel(tp);
Dave Chinner3a6a8542016-03-01 09:41:33 +11001185out_unlock:
1186 if (join_flags)
1187 xfs_iunlock(ip, join_flags);
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001188 return ERR_PTR(error);
1189}
1190
Iustin Pop9b94fcc2015-02-02 10:26:26 +11001191/*
1192 * extent size hint validation is somewhat cumbersome. Rules are:
1193 *
1194 * 1. extent size hint is only valid for directories and regular files
Dave Chinnere7b89482016-01-04 16:44:15 +11001195 * 2. FS_XFLAG_EXTSIZE is only valid for regular files
1196 * 3. FS_XFLAG_EXTSZINHERIT is only valid for directories.
Iustin Pop9b94fcc2015-02-02 10:26:26 +11001197 * 4. can only be changed on regular files if no extents are allocated
1198 * 5. can be changed on directories at any time
1199 * 6. extsize hint of 0 turns off hints, clears inode flags.
1200 * 7. Extent size must be a multiple of the appropriate block size.
1201 * 8. for non-realtime files, the extent size hint must be limited
1202 * to half the AG size to avoid alignment extending the extent beyond the
1203 * limits of the AG.
1204 */
kbuild test robotf92090e2015-02-05 11:13:21 +11001205static int
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001206xfs_ioctl_setattr_check_extsize(
1207 struct xfs_inode *ip,
1208 struct fsxattr *fa)
1209{
1210 struct xfs_mount *mp = ip->i_mount;
1211
Dave Chinnerc19b3b052016-02-09 16:54:58 +11001212 if ((fa->fsx_xflags & FS_XFLAG_EXTSIZE) && !S_ISREG(VFS_I(ip)->i_mode))
Iustin Pop9b94fcc2015-02-02 10:26:26 +11001213 return -EINVAL;
1214
Dave Chinnere7b89482016-01-04 16:44:15 +11001215 if ((fa->fsx_xflags & FS_XFLAG_EXTSZINHERIT) &&
Dave Chinnerc19b3b052016-02-09 16:54:58 +11001216 !S_ISDIR(VFS_I(ip)->i_mode))
Iustin Pop9b94fcc2015-02-02 10:26:26 +11001217 return -EINVAL;
1218
Dave Chinnerc19b3b052016-02-09 16:54:58 +11001219 if (S_ISREG(VFS_I(ip)->i_mode) && ip->i_d.di_nextents &&
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001220 ((ip->i_d.di_extsize << mp->m_sb.sb_blocklog) != fa->fsx_extsize))
1221 return -EINVAL;
1222
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001223 if (fa->fsx_extsize != 0) {
1224 xfs_extlen_t size;
1225 xfs_fsblock_t extsize_fsb;
1226
1227 extsize_fsb = XFS_B_TO_FSB(mp, fa->fsx_extsize);
1228 if (extsize_fsb > MAXEXTLEN)
1229 return -EINVAL;
1230
1231 if (XFS_IS_REALTIME_INODE(ip) ||
Dave Chinnere7b89482016-01-04 16:44:15 +11001232 (fa->fsx_xflags & FS_XFLAG_REALTIME)) {
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001233 size = mp->m_sb.sb_rextsize << mp->m_sb.sb_blocklog;
1234 } else {
1235 size = mp->m_sb.sb_blocksize;
1236 if (extsize_fsb > mp->m_sb.sb_agblocks / 2)
1237 return -EINVAL;
1238 }
1239
1240 if (fa->fsx_extsize % size)
1241 return -EINVAL;
Iustin Pop9b94fcc2015-02-02 10:26:26 +11001242 } else
Dave Chinnere7b89482016-01-04 16:44:15 +11001243 fa->fsx_xflags &= ~(FS_XFLAG_EXTSIZE | FS_XFLAG_EXTSZINHERIT);
Iustin Pop9b94fcc2015-02-02 10:26:26 +11001244
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001245 return 0;
1246}
1247
Darrick J. Wongf7ca3522016-10-03 09:11:43 -07001248/*
1249 * CoW extent size hint validation rules are:
1250 *
1251 * 1. CoW extent size hint can only be set if reflink is enabled on the fs.
1252 * The inode does not have to have any shared blocks, but it must be a v3.
1253 * 2. FS_XFLAG_COWEXTSIZE is only valid for directories and regular files;
1254 * for a directory, the hint is propagated to new files.
1255 * 3. Can be changed on files & directories at any time.
1256 * 4. CoW extsize hint of 0 turns off hints, clears inode flags.
1257 * 5. Extent size must be a multiple of the appropriate block size.
1258 * 6. The extent size hint must be limited to half the AG size to avoid
1259 * alignment extending the extent beyond the limits of the AG.
1260 */
1261static int
1262xfs_ioctl_setattr_check_cowextsize(
1263 struct xfs_inode *ip,
1264 struct fsxattr *fa)
1265{
1266 struct xfs_mount *mp = ip->i_mount;
1267
1268 if (!(fa->fsx_xflags & FS_XFLAG_COWEXTSIZE))
1269 return 0;
1270
1271 if (!xfs_sb_version_hasreflink(&ip->i_mount->m_sb) ||
1272 ip->i_d.di_version != 3)
1273 return -EINVAL;
1274
1275 if (!S_ISREG(VFS_I(ip)->i_mode) && !S_ISDIR(VFS_I(ip)->i_mode))
1276 return -EINVAL;
1277
1278 if (fa->fsx_cowextsize != 0) {
1279 xfs_extlen_t size;
1280 xfs_fsblock_t cowextsize_fsb;
1281
1282 cowextsize_fsb = XFS_B_TO_FSB(mp, fa->fsx_cowextsize);
1283 if (cowextsize_fsb > MAXEXTLEN)
1284 return -EINVAL;
1285
1286 size = mp->m_sb.sb_blocksize;
1287 if (cowextsize_fsb > mp->m_sb.sb_agblocks / 2)
1288 return -EINVAL;
1289
1290 if (fa->fsx_cowextsize % size)
1291 return -EINVAL;
1292 } else
1293 fa->fsx_xflags &= ~FS_XFLAG_COWEXTSIZE;
1294
1295 return 0;
1296}
1297
kbuild test robotf92090e2015-02-05 11:13:21 +11001298static int
Dave Chinner23bd0732015-02-02 10:22:53 +11001299xfs_ioctl_setattr_check_projid(
1300 struct xfs_inode *ip,
1301 struct fsxattr *fa)
1302{
1303 /* Disallow 32bit project ids if projid32bit feature is not enabled. */
Darrick J. Wongc8ce5402017-06-16 11:00:05 -07001304 if (fa->fsx_projid > (uint16_t)-1 &&
Dave Chinner23bd0732015-02-02 10:22:53 +11001305 !xfs_sb_version_hasprojid32bit(&ip->i_mount->m_sb))
1306 return -EINVAL;
1307
1308 /*
1309 * Project Quota ID state is only allowed to change from within the init
1310 * namespace. Enforce that restriction only if we are trying to change
1311 * the quota ID state. Everything else is allowed in user namespaces.
1312 */
1313 if (current_user_ns() == &init_user_ns)
1314 return 0;
1315
1316 if (xfs_get_projid(ip) != fa->fsx_projid)
1317 return -EINVAL;
Dave Chinnere7b89482016-01-04 16:44:15 +11001318 if ((fa->fsx_xflags & FS_XFLAG_PROJINHERIT) !=
Dave Chinner23bd0732015-02-02 10:22:53 +11001319 (ip->i_d.di_flags & XFS_DIFLAG_PROJINHERIT))
1320 return -EINVAL;
1321
1322 return 0;
1323}
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001324
1325STATIC int
1326xfs_ioctl_setattr(
1327 xfs_inode_t *ip,
Dave Chinnerfd179b92015-02-02 10:16:25 +11001328 struct fsxattr *fa)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001329{
1330 struct xfs_mount *mp = ip->i_mount;
1331 struct xfs_trans *tp;
Christoph Hellwig7d095252009-06-08 15:33:32 +02001332 struct xfs_dquot *udqp = NULL;
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001333 struct xfs_dquot *pdqp = NULL;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001334 struct xfs_dquot *olddquot = NULL;
1335 int code;
Dave Chinner3a6a8542016-03-01 09:41:33 +11001336 int join_flags = 0;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001337
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001338 trace_xfs_ioctl_setattr(ip);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001339
Dave Chinner23bd0732015-02-02 10:22:53 +11001340 code = xfs_ioctl_setattr_check_projid(ip, fa);
1341 if (code)
1342 return code;
Arkadiusz Mi?kiewicz23963e542010-08-26 10:19:43 +00001343
1344 /*
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001345 * If disk quotas is on, we make sure that the dquots do exist on disk,
1346 * before we start any other transactions. Trying to do this later
1347 * is messy. We don't care to take a readlock to look at the ids
1348 * in inode here, because we can't hold it across the trans_reserve.
1349 * If the IDs do change before we take the ilock, we're covered
1350 * because the i_*dquot fields will get updated anyway.
1351 */
Dave Chinnerfd179b92015-02-02 10:16:25 +11001352 if (XFS_IS_QUOTA_ON(mp)) {
Christoph Hellwig7d095252009-06-08 15:33:32 +02001353 code = xfs_qm_vop_dqalloc(ip, ip->i_d.di_uid,
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001354 ip->i_d.di_gid, fa->fsx_projid,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001355 XFS_QMOPT_PQUOTA, &udqp, NULL, &pdqp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001356 if (code)
1357 return code;
1358 }
1359
Dave Chinner3a6a8542016-03-01 09:41:33 +11001360 /*
1361 * Changing DAX config may require inode locking for mapping
1362 * invalidation. These need to be held all the way to transaction commit
1363 * or cancel time, so need to be passed through to
1364 * xfs_ioctl_setattr_get_trans() so it can apply them to the join call
1365 * appropriately.
1366 */
1367 code = xfs_ioctl_setattr_dax_invalidate(ip, fa, &join_flags);
1368 if (code)
1369 goto error_free_dquots;
1370
1371 tp = xfs_ioctl_setattr_get_trans(ip, join_flags);
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001372 if (IS_ERR(tp)) {
1373 code = PTR_ERR(tp);
1374 goto error_free_dquots;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001375 }
1376
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001377
Dave Chinnerfd179b92015-02-02 10:16:25 +11001378 if (XFS_IS_QUOTA_RUNNING(mp) && XFS_IS_PQUOTA_ON(mp) &&
1379 xfs_get_projid(ip) != fa->fsx_projid) {
1380 code = xfs_qm_vop_chown_reserve(tp, ip, udqp, NULL, pdqp,
1381 capable(CAP_FOWNER) ? XFS_QMOPT_FORCE_RES : 0);
1382 if (code) /* out of quota */
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001383 goto error_trans_cancel;
Dave Chinnerfd179b92015-02-02 10:16:25 +11001384 }
1385
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001386 code = xfs_ioctl_setattr_check_extsize(ip, fa);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001387 if (code)
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001388 goto error_trans_cancel;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001389
Darrick J. Wongf7ca3522016-10-03 09:11:43 -07001390 code = xfs_ioctl_setattr_check_cowextsize(ip, fa);
1391 if (code)
1392 goto error_trans_cancel;
1393
Dave Chinner29a17c02015-02-02 10:14:25 +11001394 code = xfs_ioctl_setattr_xflags(tp, ip, fa);
1395 if (code)
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001396 goto error_trans_cancel;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001397
1398 /*
Dave Chinnerfd179b92015-02-02 10:16:25 +11001399 * Change file ownership. Must be the owner or privileged. CAP_FSETID
1400 * overrides the following restrictions:
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001401 *
Dave Chinnerfd179b92015-02-02 10:16:25 +11001402 * The set-user-ID and set-group-ID bits of a file will be cleared upon
1403 * successful return from chown()
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001404 */
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001405
Dave Chinnerc19b3b052016-02-09 16:54:58 +11001406 if ((VFS_I(ip)->i_mode & (S_ISUID|S_ISGID)) &&
Dave Chinnerfd179b92015-02-02 10:16:25 +11001407 !capable_wrt_inode_uidgid(VFS_I(ip), CAP_FSETID))
Dave Chinnerc19b3b052016-02-09 16:54:58 +11001408 VFS_I(ip)->i_mode &= ~(S_ISUID|S_ISGID);
Dave Chinnerfd179b92015-02-02 10:16:25 +11001409
1410 /* Change the ownerships and register project quota modifications */
1411 if (xfs_get_projid(ip) != fa->fsx_projid) {
1412 if (XFS_IS_QUOTA_RUNNING(mp) && XFS_IS_PQUOTA_ON(mp)) {
1413 olddquot = xfs_qm_vop_chown(tp, ip,
1414 &ip->i_pdquot, pdqp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001415 }
Dave Chinnerfd179b92015-02-02 10:16:25 +11001416 ASSERT(ip->i_d.di_version > 1);
1417 xfs_set_projid(ip, fa->fsx_projid);
Christoph Hellwigf13fae22008-07-21 16:16:15 +10001418 }
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001419
Dave Chinnera8727032014-10-02 09:20:30 +10001420 /*
1421 * Only set the extent size hint if we've already determined that the
1422 * extent size hint should be set on the inode. If no extent size flags
1423 * are set on the inode then unconditionally clear the extent size hint.
1424 */
Dave Chinnerfd179b92015-02-02 10:16:25 +11001425 if (ip->i_d.di_flags & (XFS_DIFLAG_EXTSIZE | XFS_DIFLAG_EXTSZINHERIT))
1426 ip->i_d.di_extsize = fa->fsx_extsize >> mp->m_sb.sb_blocklog;
1427 else
1428 ip->i_d.di_extsize = 0;
Darrick J. Wongf7ca3522016-10-03 09:11:43 -07001429 if (ip->i_d.di_version == 3 &&
1430 (ip->i_d.di_flags2 & XFS_DIFLAG2_COWEXTSIZE))
1431 ip->i_d.di_cowextsize = fa->fsx_cowextsize >>
1432 mp->m_sb.sb_blocklog;
1433 else
1434 ip->i_d.di_cowextsize = 0;
Dave Chinnera8727032014-10-02 09:20:30 +10001435
Christoph Hellwig70393312015-06-04 13:48:08 +10001436 code = xfs_trans_commit(tp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001437
1438 /*
1439 * Release any dquot(s) the inode had kept before chown.
1440 */
Christoph Hellwig7d095252009-06-08 15:33:32 +02001441 xfs_qm_dqrele(olddquot);
1442 xfs_qm_dqrele(udqp);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001443 xfs_qm_dqrele(pdqp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001444
Christoph Hellwig288699f2010-06-23 18:11:15 +10001445 return code;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001446
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001447error_trans_cancel:
Christoph Hellwig4906e212015-06-04 13:47:56 +10001448 xfs_trans_cancel(tp);
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001449error_free_dquots:
Christoph Hellwig7d095252009-06-08 15:33:32 +02001450 xfs_qm_dqrele(udqp);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001451 xfs_qm_dqrele(pdqp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001452 return code;
1453}
1454
Christoph Hellwigc83bfab2007-10-11 17:47:00 +10001455STATIC int
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001456xfs_ioc_fssetxattr(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 xfs_inode_t *ip,
1458 struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 void __user *arg)
1460{
1461 struct fsxattr fa;
Jan Karad9457dc2012-06-12 16:20:39 +02001462 int error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001463
1464 if (copy_from_user(&fa, arg, sizeof(fa)))
1465 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466
Jan Karad9457dc2012-06-12 16:20:39 +02001467 error = mnt_want_write_file(filp);
1468 if (error)
1469 return error;
Dave Chinnerfd179b92015-02-02 10:16:25 +11001470 error = xfs_ioctl_setattr(ip, &fa);
Jan Karad9457dc2012-06-12 16:20:39 +02001471 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10001472 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001473}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001475STATIC int
1476xfs_ioc_getxflags(
1477 xfs_inode_t *ip,
1478 void __user *arg)
1479{
1480 unsigned int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001482 flags = xfs_di2lxflags(ip->i_d.di_flags);
1483 if (copy_to_user(arg, &flags, sizeof(flags)))
1484 return -EFAULT;
1485 return 0;
1486}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001488STATIC int
1489xfs_ioc_setxflags(
Dave Chinnerf96291f2015-02-02 10:15:56 +11001490 struct xfs_inode *ip,
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001491 struct file *filp,
1492 void __user *arg)
1493{
Dave Chinnerf96291f2015-02-02 10:15:56 +11001494 struct xfs_trans *tp;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001495 struct fsxattr fa;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001496 unsigned int flags;
Dave Chinner3a6a8542016-03-01 09:41:33 +11001497 int join_flags = 0;
Dave Chinnerf96291f2015-02-02 10:15:56 +11001498 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001500 if (copy_from_user(&flags, arg, sizeof(flags)))
1501 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001503 if (flags & ~(FS_IMMUTABLE_FL | FS_APPEND_FL | \
1504 FS_NOATIME_FL | FS_NODUMP_FL | \
1505 FS_SYNC_FL))
1506 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001508 fa.fsx_xflags = xfs_merge_ioc_xflags(flags, xfs_ip2xflags(ip));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509
Jan Karad9457dc2012-06-12 16:20:39 +02001510 error = mnt_want_write_file(filp);
1511 if (error)
1512 return error;
Dave Chinnerf96291f2015-02-02 10:15:56 +11001513
Dave Chinner3a6a8542016-03-01 09:41:33 +11001514 /*
1515 * Changing DAX config may require inode locking for mapping
1516 * invalidation. These need to be held all the way to transaction commit
1517 * or cancel time, so need to be passed through to
1518 * xfs_ioctl_setattr_get_trans() so it can apply them to the join call
1519 * appropriately.
1520 */
1521 error = xfs_ioctl_setattr_dax_invalidate(ip, &fa, &join_flags);
1522 if (error)
1523 goto out_drop_write;
1524
1525 tp = xfs_ioctl_setattr_get_trans(ip, join_flags);
Dave Chinnerf96291f2015-02-02 10:15:56 +11001526 if (IS_ERR(tp)) {
1527 error = PTR_ERR(tp);
1528 goto out_drop_write;
1529 }
1530
1531 error = xfs_ioctl_setattr_xflags(tp, ip, &fa);
1532 if (error) {
Christoph Hellwig4906e212015-06-04 13:47:56 +10001533 xfs_trans_cancel(tp);
Dave Chinnerf96291f2015-02-02 10:15:56 +11001534 goto out_drop_write;
1535 }
1536
Christoph Hellwig70393312015-06-04 13:48:08 +10001537 error = xfs_trans_commit(tp);
Dave Chinnerf96291f2015-02-02 10:15:56 +11001538out_drop_write:
Jan Karad9457dc2012-06-12 16:20:39 +02001539 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10001540 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541}
1542
Christoph Hellwig232b51942017-10-17 14:16:19 -07001543static bool
1544xfs_getbmap_format(
1545 struct kgetbmap *p,
1546 struct getbmapx __user *u,
1547 size_t recsize)
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001548{
Christoph Hellwig232b51942017-10-17 14:16:19 -07001549 if (put_user(p->bmv_offset, &u->bmv_offset) ||
1550 put_user(p->bmv_block, &u->bmv_block) ||
1551 put_user(p->bmv_length, &u->bmv_length) ||
1552 put_user(0, &u->bmv_count) ||
1553 put_user(0, &u->bmv_entries))
1554 return false;
1555 if (recsize < sizeof(struct getbmapx))
1556 return true;
1557 if (put_user(0, &u->bmv_iflags) ||
1558 put_user(p->bmv_oflags, &u->bmv_oflags) ||
1559 put_user(0, &u->bmv_unused1) ||
1560 put_user(0, &u->bmv_unused2))
1561 return false;
1562 return true;
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001563}
1564
1565STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566xfs_ioc_getbmap(
Christoph Hellwig8f3e2052016-07-20 11:29:35 +10001567 struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 unsigned int cmd,
1569 void __user *arg)
1570{
Darrick J. Wongbe6324c2017-04-03 15:17:57 -07001571 struct getbmapx bmx = { 0 };
Christoph Hellwig232b51942017-10-17 14:16:19 -07001572 struct kgetbmap *buf;
1573 size_t recsize;
1574 int error, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575
Christoph Hellwig232b51942017-10-17 14:16:19 -07001576 switch (cmd) {
1577 case XFS_IOC_GETBMAPA:
1578 bmx.bmv_iflags = BMV_IF_ATTRFORK;
1579 /*FALLTHRU*/
1580 case XFS_IOC_GETBMAP:
1581 if (file->f_mode & FMODE_NOCMTIME)
1582 bmx.bmv_iflags |= BMV_IF_NO_DMAPI_READ;
1583 /* struct getbmap is a strict subset of struct getbmapx. */
1584 recsize = sizeof(struct getbmap);
1585 break;
1586 case XFS_IOC_GETBMAPX:
1587 recsize = sizeof(struct getbmapx);
1588 break;
1589 default:
1590 return -EINVAL;
1591 }
1592
1593 if (copy_from_user(&bmx, arg, recsize))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001594 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001596 if (bmx.bmv_count < 2)
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001597 return -EINVAL;
Christoph Hellwig232b51942017-10-17 14:16:19 -07001598 if (bmx.bmv_count > ULONG_MAX / recsize)
1599 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
Christoph Hellwig232b51942017-10-17 14:16:19 -07001601 buf = kmem_zalloc_large(bmx.bmv_count * sizeof(*buf), 0);
1602 if (!buf)
1603 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604
Christoph Hellwig232b51942017-10-17 14:16:19 -07001605 error = xfs_getbmap(XFS_I(file_inode(file)), &bmx, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 if (error)
Christoph Hellwig232b51942017-10-17 14:16:19 -07001607 goto out_free_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608
Christoph Hellwig232b51942017-10-17 14:16:19 -07001609 error = -EFAULT;
1610 if (copy_to_user(arg, &bmx, recsize))
1611 goto out_free_buf;
1612 arg += recsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613
Christoph Hellwig232b51942017-10-17 14:16:19 -07001614 for (i = 0; i < bmx.bmv_entries; i++) {
1615 if (!xfs_getbmap_format(buf + i, arg, recsize))
1616 goto out_free_buf;
1617 arg += recsize;
1618 }
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001619
Christoph Hellwig232b51942017-10-17 14:16:19 -07001620 error = 0;
1621out_free_buf:
1622 kmem_free(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 return 0;
1624}
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001625
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001626struct getfsmap_info {
1627 struct xfs_mount *mp;
Christoph Hellwig9d17e142017-04-21 11:24:41 -07001628 struct fsmap_head __user *data;
1629 unsigned int idx;
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001630 __u32 last_flags;
1631};
1632
1633STATIC int
1634xfs_getfsmap_format(struct xfs_fsmap *xfm, void *priv)
1635{
1636 struct getfsmap_info *info = priv;
1637 struct fsmap fm;
1638
1639 trace_xfs_getfsmap_mapping(info->mp, xfm);
1640
1641 info->last_flags = xfm->fmr_flags;
1642 xfs_fsmap_from_internal(&fm, xfm);
Christoph Hellwig9d17e142017-04-21 11:24:41 -07001643 if (copy_to_user(&info->data->fmh_recs[info->idx++], &fm,
1644 sizeof(struct fsmap)))
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001645 return -EFAULT;
1646
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001647 return 0;
1648}
1649
1650STATIC int
1651xfs_ioc_getfsmap(
1652 struct xfs_inode *ip,
Christoph Hellwig9d17e142017-04-21 11:24:41 -07001653 struct fsmap_head __user *arg)
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001654{
Christoph Hellwigef2b67e2017-04-21 11:24:40 -07001655 struct getfsmap_info info = { NULL };
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001656 struct xfs_fsmap_head xhead = {0};
1657 struct fsmap_head head;
1658 bool aborted = false;
1659 int error;
1660
1661 if (copy_from_user(&head, arg, sizeof(struct fsmap_head)))
1662 return -EFAULT;
1663 if (memchr_inv(head.fmh_reserved, 0, sizeof(head.fmh_reserved)) ||
1664 memchr_inv(head.fmh_keys[0].fmr_reserved, 0,
1665 sizeof(head.fmh_keys[0].fmr_reserved)) ||
1666 memchr_inv(head.fmh_keys[1].fmr_reserved, 0,
1667 sizeof(head.fmh_keys[1].fmr_reserved)))
1668 return -EINVAL;
1669
1670 xhead.fmh_iflags = head.fmh_iflags;
1671 xhead.fmh_count = head.fmh_count;
1672 xfs_fsmap_to_internal(&xhead.fmh_keys[0], &head.fmh_keys[0]);
1673 xfs_fsmap_to_internal(&xhead.fmh_keys[1], &head.fmh_keys[1]);
1674
1675 trace_xfs_getfsmap_low_key(ip->i_mount, &xhead.fmh_keys[0]);
1676 trace_xfs_getfsmap_high_key(ip->i_mount, &xhead.fmh_keys[1]);
1677
1678 info.mp = ip->i_mount;
Christoph Hellwig9d17e142017-04-21 11:24:41 -07001679 info.data = arg;
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001680 error = xfs_getfsmap(ip->i_mount, &xhead, xfs_getfsmap_format, &info);
1681 if (error == XFS_BTREE_QUERY_RANGE_ABORT) {
1682 error = 0;
1683 aborted = true;
1684 } else if (error)
1685 return error;
1686
1687 /* If we didn't abort, set the "last" flag in the last fmx */
Darrick J. Wong12e4a382017-04-23 10:45:21 -07001688 if (!aborted && info.idx) {
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001689 info.last_flags |= FMR_OF_LAST;
Christoph Hellwig9d17e142017-04-21 11:24:41 -07001690 if (copy_to_user(&info.data->fmh_recs[info.idx - 1].fmr_flags,
1691 &info.last_flags, sizeof(info.last_flags)))
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001692 return -EFAULT;
1693 }
1694
1695 /* copy back header */
1696 head.fmh_entries = xhead.fmh_entries;
1697 head.fmh_oflags = xhead.fmh_oflags;
1698 if (copy_to_user(arg, &head, sizeof(struct fsmap_head)))
1699 return -EFAULT;
1700
1701 return 0;
1702}
1703
Dave Chinnera133d952013-08-12 20:49:48 +10001704int
1705xfs_ioc_swapext(
1706 xfs_swapext_t *sxp)
1707{
1708 xfs_inode_t *ip, *tip;
1709 struct fd f, tmp;
1710 int error = 0;
1711
1712 /* Pull information for the target fd */
1713 f = fdget((int)sxp->sx_fdtarget);
1714 if (!f.file) {
Dave Chinner24513372014-06-25 14:58:08 +10001715 error = -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001716 goto out;
1717 }
1718
1719 if (!(f.file->f_mode & FMODE_WRITE) ||
1720 !(f.file->f_mode & FMODE_READ) ||
1721 (f.file->f_flags & O_APPEND)) {
Dave Chinner24513372014-06-25 14:58:08 +10001722 error = -EBADF;
Dave Chinnera133d952013-08-12 20:49:48 +10001723 goto out_put_file;
1724 }
1725
1726 tmp = fdget((int)sxp->sx_fdtmp);
1727 if (!tmp.file) {
Dave Chinner24513372014-06-25 14:58:08 +10001728 error = -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001729 goto out_put_file;
1730 }
1731
1732 if (!(tmp.file->f_mode & FMODE_WRITE) ||
1733 !(tmp.file->f_mode & FMODE_READ) ||
1734 (tmp.file->f_flags & O_APPEND)) {
Dave Chinner24513372014-06-25 14:58:08 +10001735 error = -EBADF;
Dave Chinnera133d952013-08-12 20:49:48 +10001736 goto out_put_tmp_file;
1737 }
1738
1739 if (IS_SWAPFILE(file_inode(f.file)) ||
1740 IS_SWAPFILE(file_inode(tmp.file))) {
Dave Chinner24513372014-06-25 14:58:08 +10001741 error = -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001742 goto out_put_tmp_file;
1743 }
1744
Jann Horn7f1b6242016-07-20 10:30:30 +10001745 /*
1746 * We need to ensure that the fds passed in point to XFS inodes
1747 * before we cast and access them as XFS structures as we have no
1748 * control over what the user passes us here.
1749 */
1750 if (f.file->f_op != &xfs_file_operations ||
1751 tmp.file->f_op != &xfs_file_operations) {
1752 error = -EINVAL;
1753 goto out_put_tmp_file;
1754 }
1755
Dave Chinnera133d952013-08-12 20:49:48 +10001756 ip = XFS_I(file_inode(f.file));
1757 tip = XFS_I(file_inode(tmp.file));
1758
1759 if (ip->i_mount != tip->i_mount) {
Dave Chinner24513372014-06-25 14:58:08 +10001760 error = -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001761 goto out_put_tmp_file;
1762 }
1763
1764 if (ip->i_ino == tip->i_ino) {
Dave Chinner24513372014-06-25 14:58:08 +10001765 error = -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001766 goto out_put_tmp_file;
1767 }
1768
1769 if (XFS_FORCED_SHUTDOWN(ip->i_mount)) {
Dave Chinner24513372014-06-25 14:58:08 +10001770 error = -EIO;
Dave Chinnera133d952013-08-12 20:49:48 +10001771 goto out_put_tmp_file;
1772 }
1773
1774 error = xfs_swap_extents(ip, tip, sxp);
1775
1776 out_put_tmp_file:
1777 fdput(tmp);
1778 out_put_file:
1779 fdput(f);
1780 out:
1781 return error;
1782}
1783
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001784/*
1785 * Note: some of the ioctl's return positive numbers as a
1786 * byte count indicating success, such as readlink_by_handle.
1787 * So we don't "sign flip" like most other routines. This means
1788 * true errors need to be returned as a negative value.
1789 */
1790long
1791xfs_file_ioctl(
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001792 struct file *filp,
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001793 unsigned int cmd,
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001794 unsigned long p)
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001795{
Al Viro496ad9a2013-01-23 17:07:38 -05001796 struct inode *inode = file_inode(filp);
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001797 struct xfs_inode *ip = XFS_I(inode);
1798 struct xfs_mount *mp = ip->i_mount;
1799 void __user *arg = (void __user *)p;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001800 int error;
1801
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001802 trace_xfs_file_ioctl(ip);
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001803
1804 switch (cmd) {
Christoph Hellwiga46db602011-01-07 13:02:04 +00001805 case FITRIM:
1806 return xfs_ioc_trim(mp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001807 case XFS_IOC_ALLOCSP:
1808 case XFS_IOC_FREESP:
1809 case XFS_IOC_RESVSP:
1810 case XFS_IOC_UNRESVSP:
1811 case XFS_IOC_ALLOCSP64:
1812 case XFS_IOC_FREESP64:
1813 case XFS_IOC_RESVSP64:
Dave Chinner44722352010-08-24 12:02:11 +10001814 case XFS_IOC_UNRESVSP64:
1815 case XFS_IOC_ZERO_RANGE: {
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001816 xfs_flock64_t bf;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001817
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001818 if (copy_from_user(&bf, arg, sizeof(bf)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001819 return -EFAULT;
Christoph Hellwig8f3e2052016-07-20 11:29:35 +10001820 return xfs_ioc_space(filp, cmd, &bf);
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001821 }
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001822 case XFS_IOC_DIOINFO: {
1823 struct dioattr da;
1824 xfs_buftarg_t *target =
1825 XFS_IS_REALTIME_INODE(ip) ?
1826 mp->m_rtdev_targp : mp->m_ddev_targp;
1827
Eric Sandeen7c71ee72014-01-21 16:46:23 -06001828 da.d_mem = da.d_miniosz = target->bt_logical_sectorsize;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001829 da.d_maxiosz = INT_MAX & ~(da.d_miniosz - 1);
1830
1831 if (copy_to_user(arg, &da, sizeof(da)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001832 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001833 return 0;
1834 }
1835
1836 case XFS_IOC_FSBULKSTAT_SINGLE:
1837 case XFS_IOC_FSBULKSTAT:
1838 case XFS_IOC_FSINUMBERS:
1839 return xfs_ioc_bulkstat(mp, cmd, arg);
1840
1841 case XFS_IOC_FSGEOMETRY_V1:
1842 return xfs_ioc_fsgeometry_v1(mp, arg);
1843
1844 case XFS_IOC_FSGEOMETRY:
1845 return xfs_ioc_fsgeometry(mp, arg);
1846
1847 case XFS_IOC_GETVERSION:
1848 return put_user(inode->i_generation, (int __user *)arg);
1849
1850 case XFS_IOC_FSGETXATTR:
1851 return xfs_ioc_fsgetxattr(ip, 0, arg);
1852 case XFS_IOC_FSGETXATTRA:
1853 return xfs_ioc_fsgetxattr(ip, 1, arg);
Lachlan McIlroy3b2816b2008-04-18 12:43:35 +10001854 case XFS_IOC_FSSETXATTR:
Lachlan McIlroy65e67f52008-04-18 12:59:45 +10001855 return xfs_ioc_fssetxattr(ip, filp, arg);
1856 case XFS_IOC_GETXFLAGS:
1857 return xfs_ioc_getxflags(ip, arg);
1858 case XFS_IOC_SETXFLAGS:
1859 return xfs_ioc_setxflags(ip, filp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001860
1861 case XFS_IOC_FSSETDM: {
1862 struct fsdmidata dmi;
1863
1864 if (copy_from_user(&dmi, arg, sizeof(dmi)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001865 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001866
Jan Karad9457dc2012-06-12 16:20:39 +02001867 error = mnt_want_write_file(filp);
1868 if (error)
1869 return error;
1870
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001871 error = xfs_set_dmattrs(ip, dmi.fsd_dmevmask,
1872 dmi.fsd_dmstate);
Jan Karad9457dc2012-06-12 16:20:39 +02001873 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10001874 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001875 }
1876
1877 case XFS_IOC_GETBMAP:
1878 case XFS_IOC_GETBMAPA:
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001879 case XFS_IOC_GETBMAPX:
Christoph Hellwig232b51942017-10-17 14:16:19 -07001880 return xfs_ioc_getbmap(filp, cmd, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001881
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001882 case FS_IOC_GETFSMAP:
1883 return xfs_ioc_getfsmap(ip, arg);
1884
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001885 case XFS_IOC_FD_TO_HANDLE:
1886 case XFS_IOC_PATH_TO_HANDLE:
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001887 case XFS_IOC_PATH_TO_FSHANDLE: {
1888 xfs_fsop_handlereq_t hreq;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001889
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001890 if (copy_from_user(&hreq, arg, sizeof(hreq)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001891 return -EFAULT;
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001892 return xfs_find_handle(cmd, &hreq);
1893 }
1894 case XFS_IOC_OPEN_BY_HANDLE: {
1895 xfs_fsop_handlereq_t hreq;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001896
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001897 if (copy_from_user(&hreq, arg, sizeof(xfs_fsop_handlereq_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001898 return -EFAULT;
Christoph Hellwigd296d302009-01-19 02:02:57 +01001899 return xfs_open_by_handle(filp, &hreq);
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001900 }
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001901 case XFS_IOC_FSSETDM_BY_HANDLE:
Christoph Hellwigd296d302009-01-19 02:02:57 +01001902 return xfs_fssetdm_by_handle(filp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001903
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001904 case XFS_IOC_READLINK_BY_HANDLE: {
1905 xfs_fsop_handlereq_t hreq;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001906
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001907 if (copy_from_user(&hreq, arg, sizeof(xfs_fsop_handlereq_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001908 return -EFAULT;
Christoph Hellwigd296d302009-01-19 02:02:57 +01001909 return xfs_readlink_by_handle(filp, &hreq);
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001910 }
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001911 case XFS_IOC_ATTRLIST_BY_HANDLE:
Christoph Hellwigd296d302009-01-19 02:02:57 +01001912 return xfs_attrlist_by_handle(filp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001913
1914 case XFS_IOC_ATTRMULTI_BY_HANDLE:
Christoph Hellwigd296d302009-01-19 02:02:57 +01001915 return xfs_attrmulti_by_handle(filp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001916
1917 case XFS_IOC_SWAPEXT: {
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001918 struct xfs_swapext sxp;
1919
1920 if (copy_from_user(&sxp, arg, sizeof(xfs_swapext_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001921 return -EFAULT;
Jan Karad9457dc2012-06-12 16:20:39 +02001922 error = mnt_want_write_file(filp);
1923 if (error)
1924 return error;
Dave Chinnera133d952013-08-12 20:49:48 +10001925 error = xfs_ioc_swapext(&sxp);
Jan Karad9457dc2012-06-12 16:20:39 +02001926 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10001927 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001928 }
1929
1930 case XFS_IOC_FSCOUNTS: {
1931 xfs_fsop_counts_t out;
1932
1933 error = xfs_fs_counts(mp, &out);
1934 if (error)
Dave Chinner24513372014-06-25 14:58:08 +10001935 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001936
1937 if (copy_to_user(arg, &out, sizeof(out)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001938 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001939 return 0;
1940 }
1941
1942 case XFS_IOC_SET_RESBLKS: {
1943 xfs_fsop_resblks_t inout;
Darrick J. Wongc8ce5402017-06-16 11:00:05 -07001944 uint64_t in;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001945
1946 if (!capable(CAP_SYS_ADMIN))
1947 return -EPERM;
1948
Eric Sandeend5db0f92010-02-05 22:59:53 +00001949 if (mp->m_flags & XFS_MOUNT_RDONLY)
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001950 return -EROFS;
Eric Sandeend5db0f92010-02-05 22:59:53 +00001951
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001952 if (copy_from_user(&inout, arg, sizeof(inout)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001953 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001954
Jan Karad9457dc2012-06-12 16:20:39 +02001955 error = mnt_want_write_file(filp);
1956 if (error)
1957 return error;
1958
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001959 /* input parameter is passed in resblks field of structure */
1960 in = inout.resblks;
1961 error = xfs_reserve_blocks(mp, &in, &inout);
Jan Karad9457dc2012-06-12 16:20:39 +02001962 mnt_drop_write_file(filp);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001963 if (error)
Dave Chinner24513372014-06-25 14:58:08 +10001964 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001965
1966 if (copy_to_user(arg, &inout, sizeof(inout)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001967 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001968 return 0;
1969 }
1970
1971 case XFS_IOC_GET_RESBLKS: {
1972 xfs_fsop_resblks_t out;
1973
1974 if (!capable(CAP_SYS_ADMIN))
1975 return -EPERM;
1976
1977 error = xfs_reserve_blocks(mp, NULL, &out);
1978 if (error)
Dave Chinner24513372014-06-25 14:58:08 +10001979 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001980
1981 if (copy_to_user(arg, &out, sizeof(out)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001982 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001983
1984 return 0;
1985 }
1986
1987 case XFS_IOC_FSGROWFSDATA: {
1988 xfs_growfs_data_t in;
1989
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001990 if (copy_from_user(&in, arg, sizeof(in)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001991 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001992
Jan Karad9457dc2012-06-12 16:20:39 +02001993 error = mnt_want_write_file(filp);
1994 if (error)
1995 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001996 error = xfs_growfs_data(mp, &in);
Jan Karad9457dc2012-06-12 16:20:39 +02001997 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10001998 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001999 }
2000
2001 case XFS_IOC_FSGROWFSLOG: {
2002 xfs_growfs_log_t in;
2003
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002004 if (copy_from_user(&in, arg, sizeof(in)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002005 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002006
Jan Karad9457dc2012-06-12 16:20:39 +02002007 error = mnt_want_write_file(filp);
2008 if (error)
2009 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002010 error = xfs_growfs_log(mp, &in);
Jan Karad9457dc2012-06-12 16:20:39 +02002011 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10002012 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002013 }
2014
2015 case XFS_IOC_FSGROWFSRT: {
2016 xfs_growfs_rt_t in;
2017
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002018 if (copy_from_user(&in, arg, sizeof(in)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002019 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002020
Jan Karad9457dc2012-06-12 16:20:39 +02002021 error = mnt_want_write_file(filp);
2022 if (error)
2023 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002024 error = xfs_growfs_rt(mp, &in);
Jan Karad9457dc2012-06-12 16:20:39 +02002025 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10002026 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002027 }
2028
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002029 case XFS_IOC_GOINGDOWN: {
Darrick J. Wongc8ce5402017-06-16 11:00:05 -07002030 uint32_t in;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002031
2032 if (!capable(CAP_SYS_ADMIN))
2033 return -EPERM;
2034
Darrick J. Wongc8ce5402017-06-16 11:00:05 -07002035 if (get_user(in, (uint32_t __user *)arg))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002036 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002037
Dave Chinner24513372014-06-25 14:58:08 +10002038 return xfs_fs_goingdown(mp, in);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002039 }
2040
2041 case XFS_IOC_ERROR_INJECTION: {
2042 xfs_error_injection_t in;
2043
2044 if (!capable(CAP_SYS_ADMIN))
2045 return -EPERM;
2046
2047 if (copy_from_user(&in, arg, sizeof(in)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002048 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002049
Darrick J. Wong31965ef2017-06-20 17:54:46 -07002050 return xfs_errortag_add(mp, in.errtag);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002051 }
2052
2053 case XFS_IOC_ERROR_CLEARALL:
2054 if (!capable(CAP_SYS_ADMIN))
2055 return -EPERM;
2056
Darrick J. Wong31965ef2017-06-20 17:54:46 -07002057 return xfs_errortag_clearall(mp);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002058
Brian Foster8ca149d2012-11-07 12:21:12 -05002059 case XFS_IOC_FREE_EOFBLOCKS: {
Dwight Engenb9fe5052013-08-15 14:08:02 -04002060 struct xfs_fs_eofblocks eofb;
2061 struct xfs_eofblocks keofb;
Brian Foster8ca149d2012-11-07 12:21:12 -05002062
Dwight Engen8c567a72013-08-15 14:08:03 -04002063 if (!capable(CAP_SYS_ADMIN))
2064 return -EPERM;
2065
2066 if (mp->m_flags & XFS_MOUNT_RDONLY)
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002067 return -EROFS;
Dwight Engen8c567a72013-08-15 14:08:03 -04002068
Brian Foster8ca149d2012-11-07 12:21:12 -05002069 if (copy_from_user(&eofb, arg, sizeof(eofb)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002070 return -EFAULT;
Brian Foster8ca149d2012-11-07 12:21:12 -05002071
Dwight Engenb9fe5052013-08-15 14:08:02 -04002072 error = xfs_fs_eofblocks_from_user(&eofb, &keofb);
2073 if (error)
Dave Chinner24513372014-06-25 14:58:08 +10002074 return error;
Brian Foster8ca149d2012-11-07 12:21:12 -05002075
Dave Chinner24513372014-06-25 14:58:08 +10002076 return xfs_icache_free_eofblocks(mp, &keofb);
Brian Foster8ca149d2012-11-07 12:21:12 -05002077 }
2078
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002079 default:
2080 return -ENOTTY;
2081 }
2082}