blob: 9c0c7a920304edf68f82c6407abc43f4bd5ee8c7 [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 Szeredifd4a0ed2016-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 Szeredifd4a0ed2016-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 Hellwig25fe55e2008-07-18 17:13:20 +1000934STATIC void
935xfs_set_diflags(
936 struct xfs_inode *ip,
937 unsigned int xflags)
938{
939 unsigned int di_flags;
Dave Chinner58f88ca2016-01-04 16:44:15 +1100940 uint64_t di_flags2;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000941
942 /* can't set PREALLOC this way, just preserve it */
943 di_flags = (ip->i_d.di_flags & XFS_DIFLAG_PREALLOC);
Dave Chinnere7b89482016-01-04 16:44:15 +1100944 if (xflags & FS_XFLAG_IMMUTABLE)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000945 di_flags |= XFS_DIFLAG_IMMUTABLE;
Dave Chinnere7b89482016-01-04 16:44:15 +1100946 if (xflags & FS_XFLAG_APPEND)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000947 di_flags |= XFS_DIFLAG_APPEND;
Dave Chinnere7b89482016-01-04 16:44:15 +1100948 if (xflags & FS_XFLAG_SYNC)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000949 di_flags |= XFS_DIFLAG_SYNC;
Dave Chinnere7b89482016-01-04 16:44:15 +1100950 if (xflags & FS_XFLAG_NOATIME)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000951 di_flags |= XFS_DIFLAG_NOATIME;
Dave Chinnere7b89482016-01-04 16:44:15 +1100952 if (xflags & FS_XFLAG_NODUMP)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000953 di_flags |= XFS_DIFLAG_NODUMP;
Dave Chinnere7b89482016-01-04 16:44:15 +1100954 if (xflags & FS_XFLAG_NODEFRAG)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000955 di_flags |= XFS_DIFLAG_NODEFRAG;
Dave Chinnere7b89482016-01-04 16:44:15 +1100956 if (xflags & FS_XFLAG_FILESTREAM)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000957 di_flags |= XFS_DIFLAG_FILESTREAM;
Dave Chinnerc19b3b052016-02-09 16:54:58 +1100958 if (S_ISDIR(VFS_I(ip)->i_mode)) {
Dave Chinnere7b89482016-01-04 16:44:15 +1100959 if (xflags & FS_XFLAG_RTINHERIT)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000960 di_flags |= XFS_DIFLAG_RTINHERIT;
Dave Chinnere7b89482016-01-04 16:44:15 +1100961 if (xflags & FS_XFLAG_NOSYMLINKS)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000962 di_flags |= XFS_DIFLAG_NOSYMLINKS;
Dave Chinnere7b89482016-01-04 16:44:15 +1100963 if (xflags & FS_XFLAG_EXTSZINHERIT)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000964 di_flags |= XFS_DIFLAG_EXTSZINHERIT;
Dave Chinnere7b89482016-01-04 16:44:15 +1100965 if (xflags & FS_XFLAG_PROJINHERIT)
Dave Chinner9336e3a2014-10-02 09:18:40 +1000966 di_flags |= XFS_DIFLAG_PROJINHERIT;
Dave Chinnerc19b3b052016-02-09 16:54:58 +1100967 } else if (S_ISREG(VFS_I(ip)->i_mode)) {
Dave Chinnere7b89482016-01-04 16:44:15 +1100968 if (xflags & FS_XFLAG_REALTIME)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000969 di_flags |= XFS_DIFLAG_REALTIME;
Dave Chinnere7b89482016-01-04 16:44:15 +1100970 if (xflags & FS_XFLAG_EXTSIZE)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000971 di_flags |= XFS_DIFLAG_EXTSIZE;
972 }
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000973 ip->i_d.di_flags = di_flags;
Dave Chinner58f88ca2016-01-04 16:44:15 +1100974
975 /* diflags2 only valid for v3 inodes. */
976 if (ip->i_d.di_version < 3)
977 return;
978
Darrick J. Wongf7ca3522016-10-03 09:11:43 -0700979 di_flags2 = (ip->i_d.di_flags2 & XFS_DIFLAG2_REFLINK);
Dave Chinner58f88ca2016-01-04 16:44:15 +1100980 if (xflags & FS_XFLAG_DAX)
981 di_flags2 |= XFS_DIFLAG2_DAX;
Darrick J. Wongf7ca3522016-10-03 09:11:43 -0700982 if (xflags & FS_XFLAG_COWEXTSIZE)
983 di_flags2 |= XFS_DIFLAG2_COWEXTSIZE;
Dave Chinner58f88ca2016-01-04 16:44:15 +1100984
985 ip->i_d.di_flags2 = di_flags2;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000986}
987
Christoph Hellwigf13fae22008-07-21 16:16:15 +1000988STATIC void
989xfs_diflags_to_linux(
990 struct xfs_inode *ip)
991{
David Chinnere4f75292008-08-13 16:00:45 +1000992 struct inode *inode = VFS_I(ip);
Christoph Hellwigf13fae22008-07-21 16:16:15 +1000993 unsigned int xflags = xfs_ip2xflags(ip);
994
Dave Chinnere7b89482016-01-04 16:44:15 +1100995 if (xflags & FS_XFLAG_IMMUTABLE)
Christoph Hellwigf13fae22008-07-21 16:16:15 +1000996 inode->i_flags |= S_IMMUTABLE;
997 else
998 inode->i_flags &= ~S_IMMUTABLE;
Dave Chinnere7b89482016-01-04 16:44:15 +1100999 if (xflags & FS_XFLAG_APPEND)
Christoph Hellwigf13fae22008-07-21 16:16:15 +10001000 inode->i_flags |= S_APPEND;
1001 else
1002 inode->i_flags &= ~S_APPEND;
Dave Chinnere7b89482016-01-04 16:44:15 +11001003 if (xflags & FS_XFLAG_SYNC)
Christoph Hellwigf13fae22008-07-21 16:16:15 +10001004 inode->i_flags |= S_SYNC;
1005 else
1006 inode->i_flags &= ~S_SYNC;
Dave Chinnere7b89482016-01-04 16:44:15 +11001007 if (xflags & FS_XFLAG_NOATIME)
Christoph Hellwigf13fae22008-07-21 16:16:15 +10001008 inode->i_flags |= S_NOATIME;
1009 else
1010 inode->i_flags &= ~S_NOATIME;
Dave Chinner58f88ca2016-01-04 16:44:15 +11001011 if (xflags & FS_XFLAG_DAX)
1012 inode->i_flags |= S_DAX;
1013 else
1014 inode->i_flags &= ~S_DAX;
1015
Christoph Hellwigf13fae22008-07-21 16:16:15 +10001016}
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001017
Dave Chinner29a17c02015-02-02 10:14:25 +11001018static int
1019xfs_ioctl_setattr_xflags(
1020 struct xfs_trans *tp,
1021 struct xfs_inode *ip,
1022 struct fsxattr *fa)
1023{
1024 struct xfs_mount *mp = ip->i_mount;
1025
1026 /* Can't change realtime flag if any extents are allocated. */
1027 if ((ip->i_d.di_nextents || ip->i_delayed_blks) &&
Dave Chinnere7b89482016-01-04 16:44:15 +11001028 XFS_IS_REALTIME_INODE(ip) != (fa->fsx_xflags & FS_XFLAG_REALTIME))
Dave Chinner29a17c02015-02-02 10:14:25 +11001029 return -EINVAL;
1030
1031 /* If realtime flag is set then must have realtime device */
Dave Chinnere7b89482016-01-04 16:44:15 +11001032 if (fa->fsx_xflags & FS_XFLAG_REALTIME) {
Dave Chinner29a17c02015-02-02 10:14:25 +11001033 if (mp->m_sb.sb_rblocks == 0 || mp->m_sb.sb_rextsize == 0 ||
1034 (ip->i_d.di_extsize % mp->m_sb.sb_rextsize))
1035 return -EINVAL;
1036 }
1037
Darrick J. Wong1987fd72016-10-10 16:49:29 +11001038 /* Clear reflink if we are actually able to set the rt flag. */
Darrick J. Wongc8e156a2016-10-03 09:11:50 -07001039 if ((fa->fsx_xflags & FS_XFLAG_REALTIME) && xfs_is_reflink_inode(ip))
Darrick J. Wong1987fd72016-10-10 16:49:29 +11001040 ip->i_d.di_flags2 &= ~XFS_DIFLAG2_REFLINK;
Darrick J. Wongc8e156a2016-10-03 09:11:50 -07001041
Darrick J. Wong4f435eb2016-10-03 09:11:50 -07001042 /* Don't allow us to set DAX mode for a reflinked file for now. */
1043 if ((fa->fsx_xflags & FS_XFLAG_DAX) && xfs_is_reflink_inode(ip))
1044 return -EINVAL;
1045
Dave Chinner29a17c02015-02-02 10:14:25 +11001046 /*
1047 * Can't modify an immutable/append-only file unless
1048 * we have appropriate permission.
1049 */
1050 if (((ip->i_d.di_flags & (XFS_DIFLAG_IMMUTABLE | XFS_DIFLAG_APPEND)) ||
Dave Chinnere7b89482016-01-04 16:44:15 +11001051 (fa->fsx_xflags & (FS_XFLAG_IMMUTABLE | FS_XFLAG_APPEND))) &&
Dave Chinner29a17c02015-02-02 10:14:25 +11001052 !capable(CAP_LINUX_IMMUTABLE))
1053 return -EPERM;
1054
Dave Chinner29a17c02015-02-02 10:14:25 +11001055 xfs_set_diflags(ip, fa->fsx_xflags);
1056 xfs_diflags_to_linux(ip);
1057 xfs_trans_ichgtime(tp, ip, XFS_ICHGTIME_CHG);
1058 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
Bill O'Donnellff6d6af2015-10-12 18:21:22 +11001059 XFS_STATS_INC(mp, xs_ig_attrchg);
Dave Chinner29a17c02015-02-02 10:14:25 +11001060 return 0;
1061}
1062
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001063/*
Dave Chinner3a6a8542016-03-01 09:41:33 +11001064 * If we are changing DAX flags, we have to ensure the file is clean and any
1065 * cached objects in the address space are invalidated and removed. This
1066 * requires us to lock out other IO and page faults similar to a truncate
1067 * operation. The locks need to be held until the transaction has been committed
1068 * so that the cache invalidation is atomic with respect to the DAX flag
1069 * manipulation.
1070 */
1071static int
1072xfs_ioctl_setattr_dax_invalidate(
1073 struct xfs_inode *ip,
1074 struct fsxattr *fa,
1075 int *join_flags)
1076{
1077 struct inode *inode = VFS_I(ip);
1078 int error;
1079
1080 *join_flags = 0;
1081
1082 /*
1083 * It is only valid to set the DAX flag on regular files and
Dave Chinner64485432016-03-01 09:41:33 +11001084 * directories on filesystems where the block size is equal to the page
1085 * size. On directories it serves as an inherit hint.
Dave Chinner3a6a8542016-03-01 09:41:33 +11001086 */
Dave Chinner64485432016-03-01 09:41:33 +11001087 if (fa->fsx_xflags & FS_XFLAG_DAX) {
1088 if (!(S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode)))
1089 return -EINVAL;
1090 if (ip->i_mount->m_sb.sb_blocksize != PAGE_SIZE)
1091 return -EINVAL;
1092 }
Dave Chinner3a6a8542016-03-01 09:41:33 +11001093
1094 /* If the DAX state is not changing, we have nothing to do here. */
1095 if ((fa->fsx_xflags & FS_XFLAG_DAX) && IS_DAX(inode))
1096 return 0;
1097 if (!(fa->fsx_xflags & FS_XFLAG_DAX) && !IS_DAX(inode))
1098 return 0;
1099
1100 /* lock, flush and invalidate mapping in preparation for flag change */
1101 xfs_ilock(ip, XFS_MMAPLOCK_EXCL | XFS_IOLOCK_EXCL);
1102 error = filemap_write_and_wait(inode->i_mapping);
1103 if (error)
1104 goto out_unlock;
1105 error = invalidate_inode_pages2(inode->i_mapping);
1106 if (error)
1107 goto out_unlock;
1108
1109 *join_flags = XFS_MMAPLOCK_EXCL | XFS_IOLOCK_EXCL;
1110 return 0;
1111
1112out_unlock:
1113 xfs_iunlock(ip, XFS_MMAPLOCK_EXCL | XFS_IOLOCK_EXCL);
1114 return error;
1115
1116}
1117
1118/*
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001119 * Set up the transaction structure for the setattr operation, checking that we
1120 * have permission to do so. On success, return a clean transaction and the
1121 * inode locked exclusively ready for further operation specific checks. On
1122 * failure, return an error without modifying or locking the inode.
Dave Chinner3a6a8542016-03-01 09:41:33 +11001123 *
1124 * The inode might already be IO locked on call. If this is the case, it is
1125 * indicated in @join_flags and we take full responsibility for ensuring they
1126 * are unlocked from now on. Hence if we have an error here, we still have to
1127 * unlock them. Otherwise, once they are joined to the transaction, they will
1128 * be unlocked on commit/cancel.
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001129 */
1130static struct xfs_trans *
1131xfs_ioctl_setattr_get_trans(
Dave Chinner3a6a8542016-03-01 09:41:33 +11001132 struct xfs_inode *ip,
1133 int join_flags)
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001134{
1135 struct xfs_mount *mp = ip->i_mount;
1136 struct xfs_trans *tp;
Dave Chinner3a6a8542016-03-01 09:41:33 +11001137 int error = -EROFS;
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001138
1139 if (mp->m_flags & XFS_MOUNT_RDONLY)
Dave Chinner3a6a8542016-03-01 09:41:33 +11001140 goto out_unlock;
1141 error = -EIO;
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001142 if (XFS_FORCED_SHUTDOWN(mp))
Dave Chinner3a6a8542016-03-01 09:41:33 +11001143 goto out_unlock;
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001144
Christoph Hellwig253f4912016-04-06 09:19:55 +10001145 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_ichange, 0, 0, 0, &tp);
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001146 if (error)
Christoph Hellwig253f4912016-04-06 09:19:55 +10001147 return ERR_PTR(error);
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001148
1149 xfs_ilock(ip, XFS_ILOCK_EXCL);
Dave Chinner3a6a8542016-03-01 09:41:33 +11001150 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL | join_flags);
1151 join_flags = 0;
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001152
1153 /*
1154 * CAP_FOWNER overrides the following restrictions:
1155 *
1156 * The user ID of the calling process must be equal to the file owner
1157 * ID, except in cases where the CAP_FSETID capability is applicable.
1158 */
1159 if (!inode_owner_or_capable(VFS_I(ip))) {
1160 error = -EPERM;
1161 goto out_cancel;
1162 }
1163
1164 if (mp->m_flags & XFS_MOUNT_WSYNC)
1165 xfs_trans_set_sync(tp);
1166
1167 return tp;
1168
1169out_cancel:
Christoph Hellwig4906e212015-06-04 13:47:56 +10001170 xfs_trans_cancel(tp);
Dave Chinner3a6a8542016-03-01 09:41:33 +11001171out_unlock:
1172 if (join_flags)
1173 xfs_iunlock(ip, join_flags);
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001174 return ERR_PTR(error);
1175}
1176
Iustin Pop9b94fcc2015-02-02 10:26:26 +11001177/*
1178 * extent size hint validation is somewhat cumbersome. Rules are:
1179 *
1180 * 1. extent size hint is only valid for directories and regular files
Dave Chinnere7b89482016-01-04 16:44:15 +11001181 * 2. FS_XFLAG_EXTSIZE is only valid for regular files
1182 * 3. FS_XFLAG_EXTSZINHERIT is only valid for directories.
Iustin Pop9b94fcc2015-02-02 10:26:26 +11001183 * 4. can only be changed on regular files if no extents are allocated
1184 * 5. can be changed on directories at any time
1185 * 6. extsize hint of 0 turns off hints, clears inode flags.
1186 * 7. Extent size must be a multiple of the appropriate block size.
1187 * 8. for non-realtime files, the extent size hint must be limited
1188 * to half the AG size to avoid alignment extending the extent beyond the
1189 * limits of the AG.
1190 */
kbuild test robotf92090e2015-02-05 11:13:21 +11001191static int
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001192xfs_ioctl_setattr_check_extsize(
1193 struct xfs_inode *ip,
1194 struct fsxattr *fa)
1195{
1196 struct xfs_mount *mp = ip->i_mount;
1197
Dave Chinnerc19b3b052016-02-09 16:54:58 +11001198 if ((fa->fsx_xflags & FS_XFLAG_EXTSIZE) && !S_ISREG(VFS_I(ip)->i_mode))
Iustin Pop9b94fcc2015-02-02 10:26:26 +11001199 return -EINVAL;
1200
Dave Chinnere7b89482016-01-04 16:44:15 +11001201 if ((fa->fsx_xflags & FS_XFLAG_EXTSZINHERIT) &&
Dave Chinnerc19b3b052016-02-09 16:54:58 +11001202 !S_ISDIR(VFS_I(ip)->i_mode))
Iustin Pop9b94fcc2015-02-02 10:26:26 +11001203 return -EINVAL;
1204
Dave Chinnerc19b3b052016-02-09 16:54:58 +11001205 if (S_ISREG(VFS_I(ip)->i_mode) && ip->i_d.di_nextents &&
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001206 ((ip->i_d.di_extsize << mp->m_sb.sb_blocklog) != fa->fsx_extsize))
1207 return -EINVAL;
1208
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001209 if (fa->fsx_extsize != 0) {
1210 xfs_extlen_t size;
1211 xfs_fsblock_t extsize_fsb;
1212
1213 extsize_fsb = XFS_B_TO_FSB(mp, fa->fsx_extsize);
1214 if (extsize_fsb > MAXEXTLEN)
1215 return -EINVAL;
1216
1217 if (XFS_IS_REALTIME_INODE(ip) ||
Dave Chinnere7b89482016-01-04 16:44:15 +11001218 (fa->fsx_xflags & FS_XFLAG_REALTIME)) {
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001219 size = mp->m_sb.sb_rextsize << mp->m_sb.sb_blocklog;
1220 } else {
1221 size = mp->m_sb.sb_blocksize;
1222 if (extsize_fsb > mp->m_sb.sb_agblocks / 2)
1223 return -EINVAL;
1224 }
1225
1226 if (fa->fsx_extsize % size)
1227 return -EINVAL;
Iustin Pop9b94fcc2015-02-02 10:26:26 +11001228 } else
Dave Chinnere7b89482016-01-04 16:44:15 +11001229 fa->fsx_xflags &= ~(FS_XFLAG_EXTSIZE | FS_XFLAG_EXTSZINHERIT);
Iustin Pop9b94fcc2015-02-02 10:26:26 +11001230
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001231 return 0;
1232}
1233
Darrick J. Wongf7ca3522016-10-03 09:11:43 -07001234/*
1235 * CoW extent size hint validation rules are:
1236 *
1237 * 1. CoW extent size hint can only be set if reflink is enabled on the fs.
1238 * The inode does not have to have any shared blocks, but it must be a v3.
1239 * 2. FS_XFLAG_COWEXTSIZE is only valid for directories and regular files;
1240 * for a directory, the hint is propagated to new files.
1241 * 3. Can be changed on files & directories at any time.
1242 * 4. CoW extsize hint of 0 turns off hints, clears inode flags.
1243 * 5. Extent size must be a multiple of the appropriate block size.
1244 * 6. The extent size hint must be limited to half the AG size to avoid
1245 * alignment extending the extent beyond the limits of the AG.
1246 */
1247static int
1248xfs_ioctl_setattr_check_cowextsize(
1249 struct xfs_inode *ip,
1250 struct fsxattr *fa)
1251{
1252 struct xfs_mount *mp = ip->i_mount;
1253
1254 if (!(fa->fsx_xflags & FS_XFLAG_COWEXTSIZE))
1255 return 0;
1256
1257 if (!xfs_sb_version_hasreflink(&ip->i_mount->m_sb) ||
1258 ip->i_d.di_version != 3)
1259 return -EINVAL;
1260
1261 if (!S_ISREG(VFS_I(ip)->i_mode) && !S_ISDIR(VFS_I(ip)->i_mode))
1262 return -EINVAL;
1263
1264 if (fa->fsx_cowextsize != 0) {
1265 xfs_extlen_t size;
1266 xfs_fsblock_t cowextsize_fsb;
1267
1268 cowextsize_fsb = XFS_B_TO_FSB(mp, fa->fsx_cowextsize);
1269 if (cowextsize_fsb > MAXEXTLEN)
1270 return -EINVAL;
1271
1272 size = mp->m_sb.sb_blocksize;
1273 if (cowextsize_fsb > mp->m_sb.sb_agblocks / 2)
1274 return -EINVAL;
1275
1276 if (fa->fsx_cowextsize % size)
1277 return -EINVAL;
1278 } else
1279 fa->fsx_xflags &= ~FS_XFLAG_COWEXTSIZE;
1280
1281 return 0;
1282}
1283
kbuild test robotf92090e2015-02-05 11:13:21 +11001284static int
Dave Chinner23bd0732015-02-02 10:22:53 +11001285xfs_ioctl_setattr_check_projid(
1286 struct xfs_inode *ip,
1287 struct fsxattr *fa)
1288{
1289 /* Disallow 32bit project ids if projid32bit feature is not enabled. */
Darrick J. Wongc8ce5402017-06-16 11:00:05 -07001290 if (fa->fsx_projid > (uint16_t)-1 &&
Dave Chinner23bd0732015-02-02 10:22:53 +11001291 !xfs_sb_version_hasprojid32bit(&ip->i_mount->m_sb))
1292 return -EINVAL;
1293
1294 /*
1295 * Project Quota ID state is only allowed to change from within the init
1296 * namespace. Enforce that restriction only if we are trying to change
1297 * the quota ID state. Everything else is allowed in user namespaces.
1298 */
1299 if (current_user_ns() == &init_user_ns)
1300 return 0;
1301
1302 if (xfs_get_projid(ip) != fa->fsx_projid)
1303 return -EINVAL;
Dave Chinnere7b89482016-01-04 16:44:15 +11001304 if ((fa->fsx_xflags & FS_XFLAG_PROJINHERIT) !=
Dave Chinner23bd0732015-02-02 10:22:53 +11001305 (ip->i_d.di_flags & XFS_DIFLAG_PROJINHERIT))
1306 return -EINVAL;
1307
1308 return 0;
1309}
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001310
1311STATIC int
1312xfs_ioctl_setattr(
1313 xfs_inode_t *ip,
Dave Chinnerfd179b92015-02-02 10:16:25 +11001314 struct fsxattr *fa)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001315{
1316 struct xfs_mount *mp = ip->i_mount;
1317 struct xfs_trans *tp;
Christoph Hellwig7d095252009-06-08 15:33:32 +02001318 struct xfs_dquot *udqp = NULL;
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001319 struct xfs_dquot *pdqp = NULL;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001320 struct xfs_dquot *olddquot = NULL;
1321 int code;
Dave Chinner3a6a8542016-03-01 09:41:33 +11001322 int join_flags = 0;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001323
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001324 trace_xfs_ioctl_setattr(ip);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001325
Dave Chinner23bd0732015-02-02 10:22:53 +11001326 code = xfs_ioctl_setattr_check_projid(ip, fa);
1327 if (code)
1328 return code;
Arkadiusz Mi?kiewicz23963e52010-08-26 10:19:43 +00001329
1330 /*
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001331 * If disk quotas is on, we make sure that the dquots do exist on disk,
1332 * before we start any other transactions. Trying to do this later
1333 * is messy. We don't care to take a readlock to look at the ids
1334 * in inode here, because we can't hold it across the trans_reserve.
1335 * If the IDs do change before we take the ilock, we're covered
1336 * because the i_*dquot fields will get updated anyway.
1337 */
Dave Chinnerfd179b92015-02-02 10:16:25 +11001338 if (XFS_IS_QUOTA_ON(mp)) {
Christoph Hellwig7d095252009-06-08 15:33:32 +02001339 code = xfs_qm_vop_dqalloc(ip, ip->i_d.di_uid,
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001340 ip->i_d.di_gid, fa->fsx_projid,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001341 XFS_QMOPT_PQUOTA, &udqp, NULL, &pdqp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001342 if (code)
1343 return code;
1344 }
1345
Dave Chinner3a6a8542016-03-01 09:41:33 +11001346 /*
1347 * Changing DAX config may require inode locking for mapping
1348 * invalidation. These need to be held all the way to transaction commit
1349 * or cancel time, so need to be passed through to
1350 * xfs_ioctl_setattr_get_trans() so it can apply them to the join call
1351 * appropriately.
1352 */
1353 code = xfs_ioctl_setattr_dax_invalidate(ip, fa, &join_flags);
1354 if (code)
1355 goto error_free_dquots;
1356
1357 tp = xfs_ioctl_setattr_get_trans(ip, join_flags);
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001358 if (IS_ERR(tp)) {
1359 code = PTR_ERR(tp);
1360 goto error_free_dquots;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001361 }
1362
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001363
Dave Chinnerfd179b92015-02-02 10:16:25 +11001364 if (XFS_IS_QUOTA_RUNNING(mp) && XFS_IS_PQUOTA_ON(mp) &&
1365 xfs_get_projid(ip) != fa->fsx_projid) {
1366 code = xfs_qm_vop_chown_reserve(tp, ip, udqp, NULL, pdqp,
1367 capable(CAP_FOWNER) ? XFS_QMOPT_FORCE_RES : 0);
1368 if (code) /* out of quota */
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001369 goto error_trans_cancel;
Dave Chinnerfd179b92015-02-02 10:16:25 +11001370 }
1371
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001372 code = xfs_ioctl_setattr_check_extsize(ip, fa);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001373 if (code)
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001374 goto error_trans_cancel;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001375
Darrick J. Wongf7ca3522016-10-03 09:11:43 -07001376 code = xfs_ioctl_setattr_check_cowextsize(ip, fa);
1377 if (code)
1378 goto error_trans_cancel;
1379
Dave Chinner29a17c02015-02-02 10:14:25 +11001380 code = xfs_ioctl_setattr_xflags(tp, ip, fa);
1381 if (code)
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001382 goto error_trans_cancel;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001383
1384 /*
Dave Chinnerfd179b92015-02-02 10:16:25 +11001385 * Change file ownership. Must be the owner or privileged. CAP_FSETID
1386 * overrides the following restrictions:
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001387 *
Dave Chinnerfd179b92015-02-02 10:16:25 +11001388 * The set-user-ID and set-group-ID bits of a file will be cleared upon
1389 * successful return from chown()
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001390 */
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001391
Dave Chinnerc19b3b052016-02-09 16:54:58 +11001392 if ((VFS_I(ip)->i_mode & (S_ISUID|S_ISGID)) &&
Dave Chinnerfd179b92015-02-02 10:16:25 +11001393 !capable_wrt_inode_uidgid(VFS_I(ip), CAP_FSETID))
Dave Chinnerc19b3b052016-02-09 16:54:58 +11001394 VFS_I(ip)->i_mode &= ~(S_ISUID|S_ISGID);
Dave Chinnerfd179b92015-02-02 10:16:25 +11001395
1396 /* Change the ownerships and register project quota modifications */
1397 if (xfs_get_projid(ip) != fa->fsx_projid) {
1398 if (XFS_IS_QUOTA_RUNNING(mp) && XFS_IS_PQUOTA_ON(mp)) {
1399 olddquot = xfs_qm_vop_chown(tp, ip,
1400 &ip->i_pdquot, pdqp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001401 }
Dave Chinnerfd179b92015-02-02 10:16:25 +11001402 ASSERT(ip->i_d.di_version > 1);
1403 xfs_set_projid(ip, fa->fsx_projid);
Christoph Hellwigf13fae22008-07-21 16:16:15 +10001404 }
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001405
Dave Chinnera8727032014-10-02 09:20:30 +10001406 /*
1407 * Only set the extent size hint if we've already determined that the
1408 * extent size hint should be set on the inode. If no extent size flags
1409 * are set on the inode then unconditionally clear the extent size hint.
1410 */
Dave Chinnerfd179b92015-02-02 10:16:25 +11001411 if (ip->i_d.di_flags & (XFS_DIFLAG_EXTSIZE | XFS_DIFLAG_EXTSZINHERIT))
1412 ip->i_d.di_extsize = fa->fsx_extsize >> mp->m_sb.sb_blocklog;
1413 else
1414 ip->i_d.di_extsize = 0;
Darrick J. Wongf7ca3522016-10-03 09:11:43 -07001415 if (ip->i_d.di_version == 3 &&
1416 (ip->i_d.di_flags2 & XFS_DIFLAG2_COWEXTSIZE))
1417 ip->i_d.di_cowextsize = fa->fsx_cowextsize >>
1418 mp->m_sb.sb_blocklog;
1419 else
1420 ip->i_d.di_cowextsize = 0;
Dave Chinnera8727032014-10-02 09:20:30 +10001421
Christoph Hellwig70393312015-06-04 13:48:08 +10001422 code = xfs_trans_commit(tp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001423
1424 /*
1425 * Release any dquot(s) the inode had kept before chown.
1426 */
Christoph Hellwig7d095252009-06-08 15:33:32 +02001427 xfs_qm_dqrele(olddquot);
1428 xfs_qm_dqrele(udqp);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001429 xfs_qm_dqrele(pdqp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001430
Christoph Hellwig288699f2010-06-23 18:11:15 +10001431 return code;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001432
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001433error_trans_cancel:
Christoph Hellwig4906e212015-06-04 13:47:56 +10001434 xfs_trans_cancel(tp);
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001435error_free_dquots:
Christoph Hellwig7d095252009-06-08 15:33:32 +02001436 xfs_qm_dqrele(udqp);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001437 xfs_qm_dqrele(pdqp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001438 return code;
1439}
1440
Christoph Hellwigc83bfab2007-10-11 17:47:00 +10001441STATIC int
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001442xfs_ioc_fssetxattr(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 xfs_inode_t *ip,
1444 struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 void __user *arg)
1446{
1447 struct fsxattr fa;
Jan Karad9457dc2012-06-12 16:20:39 +02001448 int error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001449
1450 if (copy_from_user(&fa, arg, sizeof(fa)))
1451 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452
Jan Karad9457dc2012-06-12 16:20:39 +02001453 error = mnt_want_write_file(filp);
1454 if (error)
1455 return error;
Dave Chinnerfd179b92015-02-02 10:16:25 +11001456 error = xfs_ioctl_setattr(ip, &fa);
Jan Karad9457dc2012-06-12 16:20:39 +02001457 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10001458 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001459}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001461STATIC int
1462xfs_ioc_getxflags(
1463 xfs_inode_t *ip,
1464 void __user *arg)
1465{
1466 unsigned int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001468 flags = xfs_di2lxflags(ip->i_d.di_flags);
1469 if (copy_to_user(arg, &flags, sizeof(flags)))
1470 return -EFAULT;
1471 return 0;
1472}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001474STATIC int
1475xfs_ioc_setxflags(
Dave Chinnerf96291f2015-02-02 10:15:56 +11001476 struct xfs_inode *ip,
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001477 struct file *filp,
1478 void __user *arg)
1479{
Dave Chinnerf96291f2015-02-02 10:15:56 +11001480 struct xfs_trans *tp;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001481 struct fsxattr fa;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001482 unsigned int flags;
Dave Chinner3a6a8542016-03-01 09:41:33 +11001483 int join_flags = 0;
Dave Chinnerf96291f2015-02-02 10:15:56 +11001484 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001486 if (copy_from_user(&flags, arg, sizeof(flags)))
1487 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001489 if (flags & ~(FS_IMMUTABLE_FL | FS_APPEND_FL | \
1490 FS_NOATIME_FL | FS_NODUMP_FL | \
1491 FS_SYNC_FL))
1492 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001494 fa.fsx_xflags = xfs_merge_ioc_xflags(flags, xfs_ip2xflags(ip));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495
Jan Karad9457dc2012-06-12 16:20:39 +02001496 error = mnt_want_write_file(filp);
1497 if (error)
1498 return error;
Dave Chinnerf96291f2015-02-02 10:15:56 +11001499
Dave Chinner3a6a8542016-03-01 09:41:33 +11001500 /*
1501 * Changing DAX config may require inode locking for mapping
1502 * invalidation. These need to be held all the way to transaction commit
1503 * or cancel time, so need to be passed through to
1504 * xfs_ioctl_setattr_get_trans() so it can apply them to the join call
1505 * appropriately.
1506 */
1507 error = xfs_ioctl_setattr_dax_invalidate(ip, &fa, &join_flags);
1508 if (error)
1509 goto out_drop_write;
1510
1511 tp = xfs_ioctl_setattr_get_trans(ip, join_flags);
Dave Chinnerf96291f2015-02-02 10:15:56 +11001512 if (IS_ERR(tp)) {
1513 error = PTR_ERR(tp);
1514 goto out_drop_write;
1515 }
1516
1517 error = xfs_ioctl_setattr_xflags(tp, ip, &fa);
1518 if (error) {
Christoph Hellwig4906e212015-06-04 13:47:56 +10001519 xfs_trans_cancel(tp);
Dave Chinnerf96291f2015-02-02 10:15:56 +11001520 goto out_drop_write;
1521 }
1522
Christoph Hellwig70393312015-06-04 13:48:08 +10001523 error = xfs_trans_commit(tp);
Dave Chinnerf96291f2015-02-02 10:15:56 +11001524out_drop_write:
Jan Karad9457dc2012-06-12 16:20:39 +02001525 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10001526 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527}
1528
1529STATIC int
Eric Sandeen1dbba082017-01-27 23:24:28 -08001530xfs_getbmap_format(void **ap, struct getbmapx *bmv)
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001531{
Dave Chinnerb972d072014-09-29 10:46:22 +10001532 struct getbmap __user *base = (struct getbmap __user *)*ap;
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001533
1534 /* copy only getbmap portion (not getbmapx) */
1535 if (copy_to_user(base, bmv, sizeof(struct getbmap)))
Dave Chinner24513372014-06-25 14:58:08 +10001536 return -EFAULT;
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001537
1538 *ap += sizeof(struct getbmap);
1539 return 0;
1540}
1541
1542STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543xfs_ioc_getbmap(
Christoph Hellwig8f3e2052016-07-20 11:29:35 +10001544 struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 unsigned int cmd,
1546 void __user *arg)
1547{
Darrick J. Wongbe6324c2017-04-03 15:17:57 -07001548 struct getbmapx bmx = { 0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 int error;
1550
Darrick J. Wongbe6324c2017-04-03 15:17:57 -07001551 /* struct getbmap is a strict subset of struct getbmapx. */
1552 if (copy_from_user(&bmx, arg, offsetof(struct getbmapx, bmv_iflags)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001553 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001555 if (bmx.bmv_count < 2)
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001556 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001558 bmx.bmv_iflags = (cmd == XFS_IOC_GETBMAPA ? BMV_IF_ATTRFORK : 0);
Christoph Hellwig8f3e2052016-07-20 11:29:35 +10001559 if (file->f_mode & FMODE_NOCMTIME)
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001560 bmx.bmv_iflags |= BMV_IF_NO_DMAPI_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561
Christoph Hellwig8f3e2052016-07-20 11:29:35 +10001562 error = xfs_getbmap(XFS_I(file_inode(file)), &bmx, xfs_getbmap_format,
Dave Chinnerb972d072014-09-29 10:46:22 +10001563 (__force struct getbmap *)arg+1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 if (error)
Dave Chinner24513372014-06-25 14:58:08 +10001565 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001567 /* copy back header - only size of getbmap */
1568 if (copy_to_user(arg, &bmx, sizeof(struct getbmap)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001569 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 return 0;
1571}
1572
1573STATIC int
Eric Sandeen1dbba082017-01-27 23:24:28 -08001574xfs_getbmapx_format(void **ap, struct getbmapx *bmv)
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001575{
Dave Chinnerb972d072014-09-29 10:46:22 +10001576 struct getbmapx __user *base = (struct getbmapx __user *)*ap;
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001577
1578 if (copy_to_user(base, bmv, sizeof(struct getbmapx)))
Dave Chinner24513372014-06-25 14:58:08 +10001579 return -EFAULT;
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001580
1581 *ap += sizeof(struct getbmapx);
1582 return 0;
1583}
1584
1585STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586xfs_ioc_getbmapx(
Christoph Hellwig993386c12007-08-28 16:12:30 +10001587 struct xfs_inode *ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 void __user *arg)
1589{
1590 struct getbmapx bmx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 int error;
1592
1593 if (copy_from_user(&bmx, arg, sizeof(bmx)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001594 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595
1596 if (bmx.bmv_count < 2)
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001597 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001599 if (bmx.bmv_iflags & (~BMV_IF_VALID))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001600 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001602 error = xfs_getbmap(ip, &bmx, xfs_getbmapx_format,
Dave Chinnerb972d072014-09-29 10:46:22 +10001603 (__force struct getbmapx *)arg+1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 if (error)
Dave Chinner24513372014-06-25 14:58:08 +10001605 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001607 /* copy back header */
1608 if (copy_to_user(arg, &bmx, sizeof(struct getbmapx)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001609 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610
1611 return 0;
1612}
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001613
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001614struct getfsmap_info {
1615 struct xfs_mount *mp;
Christoph Hellwig9d17e142017-04-21 11:24:41 -07001616 struct fsmap_head __user *data;
1617 unsigned int idx;
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001618 __u32 last_flags;
1619};
1620
1621STATIC int
1622xfs_getfsmap_format(struct xfs_fsmap *xfm, void *priv)
1623{
1624 struct getfsmap_info *info = priv;
1625 struct fsmap fm;
1626
1627 trace_xfs_getfsmap_mapping(info->mp, xfm);
1628
1629 info->last_flags = xfm->fmr_flags;
1630 xfs_fsmap_from_internal(&fm, xfm);
Christoph Hellwig9d17e142017-04-21 11:24:41 -07001631 if (copy_to_user(&info->data->fmh_recs[info->idx++], &fm,
1632 sizeof(struct fsmap)))
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001633 return -EFAULT;
1634
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001635 return 0;
1636}
1637
1638STATIC int
1639xfs_ioc_getfsmap(
1640 struct xfs_inode *ip,
Christoph Hellwig9d17e142017-04-21 11:24:41 -07001641 struct fsmap_head __user *arg)
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001642{
Christoph Hellwigef2b67e2017-04-21 11:24:40 -07001643 struct getfsmap_info info = { NULL };
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001644 struct xfs_fsmap_head xhead = {0};
1645 struct fsmap_head head;
1646 bool aborted = false;
1647 int error;
1648
1649 if (copy_from_user(&head, arg, sizeof(struct fsmap_head)))
1650 return -EFAULT;
1651 if (memchr_inv(head.fmh_reserved, 0, sizeof(head.fmh_reserved)) ||
1652 memchr_inv(head.fmh_keys[0].fmr_reserved, 0,
1653 sizeof(head.fmh_keys[0].fmr_reserved)) ||
1654 memchr_inv(head.fmh_keys[1].fmr_reserved, 0,
1655 sizeof(head.fmh_keys[1].fmr_reserved)))
1656 return -EINVAL;
1657
1658 xhead.fmh_iflags = head.fmh_iflags;
1659 xhead.fmh_count = head.fmh_count;
1660 xfs_fsmap_to_internal(&xhead.fmh_keys[0], &head.fmh_keys[0]);
1661 xfs_fsmap_to_internal(&xhead.fmh_keys[1], &head.fmh_keys[1]);
1662
1663 trace_xfs_getfsmap_low_key(ip->i_mount, &xhead.fmh_keys[0]);
1664 trace_xfs_getfsmap_high_key(ip->i_mount, &xhead.fmh_keys[1]);
1665
1666 info.mp = ip->i_mount;
Christoph Hellwig9d17e142017-04-21 11:24:41 -07001667 info.data = arg;
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001668 error = xfs_getfsmap(ip->i_mount, &xhead, xfs_getfsmap_format, &info);
1669 if (error == XFS_BTREE_QUERY_RANGE_ABORT) {
1670 error = 0;
1671 aborted = true;
1672 } else if (error)
1673 return error;
1674
1675 /* If we didn't abort, set the "last" flag in the last fmx */
Darrick J. Wong12e4a382017-04-23 10:45:21 -07001676 if (!aborted && info.idx) {
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001677 info.last_flags |= FMR_OF_LAST;
Christoph Hellwig9d17e142017-04-21 11:24:41 -07001678 if (copy_to_user(&info.data->fmh_recs[info.idx - 1].fmr_flags,
1679 &info.last_flags, sizeof(info.last_flags)))
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001680 return -EFAULT;
1681 }
1682
1683 /* copy back header */
1684 head.fmh_entries = xhead.fmh_entries;
1685 head.fmh_oflags = xhead.fmh_oflags;
1686 if (copy_to_user(arg, &head, sizeof(struct fsmap_head)))
1687 return -EFAULT;
1688
1689 return 0;
1690}
1691
Dave Chinnera133d952013-08-12 20:49:48 +10001692int
1693xfs_ioc_swapext(
1694 xfs_swapext_t *sxp)
1695{
1696 xfs_inode_t *ip, *tip;
1697 struct fd f, tmp;
1698 int error = 0;
1699
1700 /* Pull information for the target fd */
1701 f = fdget((int)sxp->sx_fdtarget);
1702 if (!f.file) {
Dave Chinner24513372014-06-25 14:58:08 +10001703 error = -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001704 goto out;
1705 }
1706
1707 if (!(f.file->f_mode & FMODE_WRITE) ||
1708 !(f.file->f_mode & FMODE_READ) ||
1709 (f.file->f_flags & O_APPEND)) {
Dave Chinner24513372014-06-25 14:58:08 +10001710 error = -EBADF;
Dave Chinnera133d952013-08-12 20:49:48 +10001711 goto out_put_file;
1712 }
1713
1714 tmp = fdget((int)sxp->sx_fdtmp);
1715 if (!tmp.file) {
Dave Chinner24513372014-06-25 14:58:08 +10001716 error = -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001717 goto out_put_file;
1718 }
1719
1720 if (!(tmp.file->f_mode & FMODE_WRITE) ||
1721 !(tmp.file->f_mode & FMODE_READ) ||
1722 (tmp.file->f_flags & O_APPEND)) {
Dave Chinner24513372014-06-25 14:58:08 +10001723 error = -EBADF;
Dave Chinnera133d952013-08-12 20:49:48 +10001724 goto out_put_tmp_file;
1725 }
1726
1727 if (IS_SWAPFILE(file_inode(f.file)) ||
1728 IS_SWAPFILE(file_inode(tmp.file))) {
Dave Chinner24513372014-06-25 14:58:08 +10001729 error = -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001730 goto out_put_tmp_file;
1731 }
1732
Jann Horn7f1b6242016-07-20 10:30:30 +10001733 /*
1734 * We need to ensure that the fds passed in point to XFS inodes
1735 * before we cast and access them as XFS structures as we have no
1736 * control over what the user passes us here.
1737 */
1738 if (f.file->f_op != &xfs_file_operations ||
1739 tmp.file->f_op != &xfs_file_operations) {
1740 error = -EINVAL;
1741 goto out_put_tmp_file;
1742 }
1743
Dave Chinnera133d952013-08-12 20:49:48 +10001744 ip = XFS_I(file_inode(f.file));
1745 tip = XFS_I(file_inode(tmp.file));
1746
1747 if (ip->i_mount != tip->i_mount) {
Dave Chinner24513372014-06-25 14:58:08 +10001748 error = -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001749 goto out_put_tmp_file;
1750 }
1751
1752 if (ip->i_ino == tip->i_ino) {
Dave Chinner24513372014-06-25 14:58:08 +10001753 error = -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001754 goto out_put_tmp_file;
1755 }
1756
1757 if (XFS_FORCED_SHUTDOWN(ip->i_mount)) {
Dave Chinner24513372014-06-25 14:58:08 +10001758 error = -EIO;
Dave Chinnera133d952013-08-12 20:49:48 +10001759 goto out_put_tmp_file;
1760 }
1761
1762 error = xfs_swap_extents(ip, tip, sxp);
1763
1764 out_put_tmp_file:
1765 fdput(tmp);
1766 out_put_file:
1767 fdput(f);
1768 out:
1769 return error;
1770}
1771
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001772/*
1773 * Note: some of the ioctl's return positive numbers as a
1774 * byte count indicating success, such as readlink_by_handle.
1775 * So we don't "sign flip" like most other routines. This means
1776 * true errors need to be returned as a negative value.
1777 */
1778long
1779xfs_file_ioctl(
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001780 struct file *filp,
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001781 unsigned int cmd,
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001782 unsigned long p)
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001783{
Al Viro496ad9a2013-01-23 17:07:38 -05001784 struct inode *inode = file_inode(filp);
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001785 struct xfs_inode *ip = XFS_I(inode);
1786 struct xfs_mount *mp = ip->i_mount;
1787 void __user *arg = (void __user *)p;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001788 int error;
1789
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001790 trace_xfs_file_ioctl(ip);
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001791
1792 switch (cmd) {
Christoph Hellwiga46db602011-01-07 13:02:04 +00001793 case FITRIM:
1794 return xfs_ioc_trim(mp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001795 case XFS_IOC_ALLOCSP:
1796 case XFS_IOC_FREESP:
1797 case XFS_IOC_RESVSP:
1798 case XFS_IOC_UNRESVSP:
1799 case XFS_IOC_ALLOCSP64:
1800 case XFS_IOC_FREESP64:
1801 case XFS_IOC_RESVSP64:
Dave Chinner44722352010-08-24 12:02:11 +10001802 case XFS_IOC_UNRESVSP64:
1803 case XFS_IOC_ZERO_RANGE: {
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001804 xfs_flock64_t bf;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001805
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001806 if (copy_from_user(&bf, arg, sizeof(bf)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001807 return -EFAULT;
Christoph Hellwig8f3e2052016-07-20 11:29:35 +10001808 return xfs_ioc_space(filp, cmd, &bf);
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001809 }
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001810 case XFS_IOC_DIOINFO: {
1811 struct dioattr da;
1812 xfs_buftarg_t *target =
1813 XFS_IS_REALTIME_INODE(ip) ?
1814 mp->m_rtdev_targp : mp->m_ddev_targp;
1815
Eric Sandeen7c71ee72014-01-21 16:46:23 -06001816 da.d_mem = da.d_miniosz = target->bt_logical_sectorsize;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001817 da.d_maxiosz = INT_MAX & ~(da.d_miniosz - 1);
1818
1819 if (copy_to_user(arg, &da, sizeof(da)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001820 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001821 return 0;
1822 }
1823
1824 case XFS_IOC_FSBULKSTAT_SINGLE:
1825 case XFS_IOC_FSBULKSTAT:
1826 case XFS_IOC_FSINUMBERS:
1827 return xfs_ioc_bulkstat(mp, cmd, arg);
1828
1829 case XFS_IOC_FSGEOMETRY_V1:
1830 return xfs_ioc_fsgeometry_v1(mp, arg);
1831
1832 case XFS_IOC_FSGEOMETRY:
1833 return xfs_ioc_fsgeometry(mp, arg);
1834
1835 case XFS_IOC_GETVERSION:
1836 return put_user(inode->i_generation, (int __user *)arg);
1837
1838 case XFS_IOC_FSGETXATTR:
1839 return xfs_ioc_fsgetxattr(ip, 0, arg);
1840 case XFS_IOC_FSGETXATTRA:
1841 return xfs_ioc_fsgetxattr(ip, 1, arg);
Lachlan McIlroy3b2816b2008-04-18 12:43:35 +10001842 case XFS_IOC_FSSETXATTR:
Lachlan McIlroy65e67f52008-04-18 12:59:45 +10001843 return xfs_ioc_fssetxattr(ip, filp, arg);
1844 case XFS_IOC_GETXFLAGS:
1845 return xfs_ioc_getxflags(ip, arg);
1846 case XFS_IOC_SETXFLAGS:
1847 return xfs_ioc_setxflags(ip, filp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001848
1849 case XFS_IOC_FSSETDM: {
1850 struct fsdmidata dmi;
1851
1852 if (copy_from_user(&dmi, arg, sizeof(dmi)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001853 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001854
Jan Karad9457dc2012-06-12 16:20:39 +02001855 error = mnt_want_write_file(filp);
1856 if (error)
1857 return error;
1858
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001859 error = xfs_set_dmattrs(ip, dmi.fsd_dmevmask,
1860 dmi.fsd_dmstate);
Jan Karad9457dc2012-06-12 16:20:39 +02001861 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10001862 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001863 }
1864
1865 case XFS_IOC_GETBMAP:
1866 case XFS_IOC_GETBMAPA:
Christoph Hellwig8f3e2052016-07-20 11:29:35 +10001867 return xfs_ioc_getbmap(filp, cmd, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001868
1869 case XFS_IOC_GETBMAPX:
1870 return xfs_ioc_getbmapx(ip, arg);
1871
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001872 case FS_IOC_GETFSMAP:
1873 return xfs_ioc_getfsmap(ip, arg);
1874
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001875 case XFS_IOC_FD_TO_HANDLE:
1876 case XFS_IOC_PATH_TO_HANDLE:
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001877 case XFS_IOC_PATH_TO_FSHANDLE: {
1878 xfs_fsop_handlereq_t hreq;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001879
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001880 if (copy_from_user(&hreq, arg, sizeof(hreq)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001881 return -EFAULT;
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001882 return xfs_find_handle(cmd, &hreq);
1883 }
1884 case XFS_IOC_OPEN_BY_HANDLE: {
1885 xfs_fsop_handlereq_t hreq;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001886
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001887 if (copy_from_user(&hreq, arg, sizeof(xfs_fsop_handlereq_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001888 return -EFAULT;
Christoph Hellwigd296d302009-01-19 02:02:57 +01001889 return xfs_open_by_handle(filp, &hreq);
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001890 }
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001891 case XFS_IOC_FSSETDM_BY_HANDLE:
Christoph Hellwigd296d302009-01-19 02:02:57 +01001892 return xfs_fssetdm_by_handle(filp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001893
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001894 case XFS_IOC_READLINK_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_readlink_by_handle(filp, &hreq);
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001900 }
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001901 case XFS_IOC_ATTRLIST_BY_HANDLE:
Christoph Hellwigd296d302009-01-19 02:02:57 +01001902 return xfs_attrlist_by_handle(filp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001903
1904 case XFS_IOC_ATTRMULTI_BY_HANDLE:
Christoph Hellwigd296d302009-01-19 02:02:57 +01001905 return xfs_attrmulti_by_handle(filp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001906
1907 case XFS_IOC_SWAPEXT: {
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001908 struct xfs_swapext sxp;
1909
1910 if (copy_from_user(&sxp, arg, sizeof(xfs_swapext_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001911 return -EFAULT;
Jan Karad9457dc2012-06-12 16:20:39 +02001912 error = mnt_want_write_file(filp);
1913 if (error)
1914 return error;
Dave Chinnera133d952013-08-12 20:49:48 +10001915 error = xfs_ioc_swapext(&sxp);
Jan Karad9457dc2012-06-12 16:20:39 +02001916 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10001917 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001918 }
1919
1920 case XFS_IOC_FSCOUNTS: {
1921 xfs_fsop_counts_t out;
1922
1923 error = xfs_fs_counts(mp, &out);
1924 if (error)
Dave Chinner24513372014-06-25 14:58:08 +10001925 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001926
1927 if (copy_to_user(arg, &out, sizeof(out)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001928 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001929 return 0;
1930 }
1931
1932 case XFS_IOC_SET_RESBLKS: {
1933 xfs_fsop_resblks_t inout;
Darrick J. Wongc8ce5402017-06-16 11:00:05 -07001934 uint64_t in;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001935
1936 if (!capable(CAP_SYS_ADMIN))
1937 return -EPERM;
1938
Eric Sandeend5db0f92010-02-05 22:59:53 +00001939 if (mp->m_flags & XFS_MOUNT_RDONLY)
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001940 return -EROFS;
Eric Sandeend5db0f92010-02-05 22:59:53 +00001941
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001942 if (copy_from_user(&inout, arg, sizeof(inout)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001943 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001944
Jan Karad9457dc2012-06-12 16:20:39 +02001945 error = mnt_want_write_file(filp);
1946 if (error)
1947 return error;
1948
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001949 /* input parameter is passed in resblks field of structure */
1950 in = inout.resblks;
1951 error = xfs_reserve_blocks(mp, &in, &inout);
Jan Karad9457dc2012-06-12 16:20:39 +02001952 mnt_drop_write_file(filp);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001953 if (error)
Dave Chinner24513372014-06-25 14:58:08 +10001954 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001955
1956 if (copy_to_user(arg, &inout, sizeof(inout)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001957 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001958 return 0;
1959 }
1960
1961 case XFS_IOC_GET_RESBLKS: {
1962 xfs_fsop_resblks_t out;
1963
1964 if (!capable(CAP_SYS_ADMIN))
1965 return -EPERM;
1966
1967 error = xfs_reserve_blocks(mp, NULL, &out);
1968 if (error)
Dave Chinner24513372014-06-25 14:58:08 +10001969 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001970
1971 if (copy_to_user(arg, &out, sizeof(out)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001972 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001973
1974 return 0;
1975 }
1976
1977 case XFS_IOC_FSGROWFSDATA: {
1978 xfs_growfs_data_t in;
1979
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001980 if (copy_from_user(&in, arg, sizeof(in)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001981 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001982
Jan Karad9457dc2012-06-12 16:20:39 +02001983 error = mnt_want_write_file(filp);
1984 if (error)
1985 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001986 error = xfs_growfs_data(mp, &in);
Jan Karad9457dc2012-06-12 16:20:39 +02001987 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10001988 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001989 }
1990
1991 case XFS_IOC_FSGROWFSLOG: {
1992 xfs_growfs_log_t in;
1993
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001994 if (copy_from_user(&in, arg, sizeof(in)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001995 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001996
Jan Karad9457dc2012-06-12 16:20:39 +02001997 error = mnt_want_write_file(filp);
1998 if (error)
1999 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002000 error = xfs_growfs_log(mp, &in);
Jan Karad9457dc2012-06-12 16:20:39 +02002001 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10002002 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002003 }
2004
2005 case XFS_IOC_FSGROWFSRT: {
2006 xfs_growfs_rt_t in;
2007
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002008 if (copy_from_user(&in, arg, sizeof(in)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002009 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002010
Jan Karad9457dc2012-06-12 16:20:39 +02002011 error = mnt_want_write_file(filp);
2012 if (error)
2013 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002014 error = xfs_growfs_rt(mp, &in);
Jan Karad9457dc2012-06-12 16:20:39 +02002015 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10002016 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002017 }
2018
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002019 case XFS_IOC_GOINGDOWN: {
Darrick J. Wongc8ce5402017-06-16 11:00:05 -07002020 uint32_t in;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002021
2022 if (!capable(CAP_SYS_ADMIN))
2023 return -EPERM;
2024
Darrick J. Wongc8ce5402017-06-16 11:00:05 -07002025 if (get_user(in, (uint32_t __user *)arg))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002026 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002027
Dave Chinner24513372014-06-25 14:58:08 +10002028 return xfs_fs_goingdown(mp, in);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002029 }
2030
2031 case XFS_IOC_ERROR_INJECTION: {
2032 xfs_error_injection_t in;
2033
2034 if (!capable(CAP_SYS_ADMIN))
2035 return -EPERM;
2036
2037 if (copy_from_user(&in, arg, sizeof(in)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002038 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002039
Darrick J. Wong31965ef2017-06-20 17:54:46 -07002040 return xfs_errortag_add(mp, in.errtag);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002041 }
2042
2043 case XFS_IOC_ERROR_CLEARALL:
2044 if (!capable(CAP_SYS_ADMIN))
2045 return -EPERM;
2046
Darrick J. Wong31965ef2017-06-20 17:54:46 -07002047 return xfs_errortag_clearall(mp);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002048
Brian Foster8ca149d2012-11-07 12:21:12 -05002049 case XFS_IOC_FREE_EOFBLOCKS: {
Dwight Engenb9fe5052013-08-15 14:08:02 -04002050 struct xfs_fs_eofblocks eofb;
2051 struct xfs_eofblocks keofb;
Brian Foster8ca149d2012-11-07 12:21:12 -05002052
Dwight Engen8c567a72013-08-15 14:08:03 -04002053 if (!capable(CAP_SYS_ADMIN))
2054 return -EPERM;
2055
2056 if (mp->m_flags & XFS_MOUNT_RDONLY)
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002057 return -EROFS;
Dwight Engen8c567a72013-08-15 14:08:03 -04002058
Brian Foster8ca149d2012-11-07 12:21:12 -05002059 if (copy_from_user(&eofb, arg, sizeof(eofb)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002060 return -EFAULT;
Brian Foster8ca149d2012-11-07 12:21:12 -05002061
Dwight Engenb9fe5052013-08-15 14:08:02 -04002062 error = xfs_fs_eofblocks_from_user(&eofb, &keofb);
2063 if (error)
Dave Chinner24513372014-06-25 14:58:08 +10002064 return error;
Brian Foster8ca149d2012-11-07 12:21:12 -05002065
Dave Chinner24513372014-06-25 14:58:08 +10002066 return xfs_icache_free_eofblocks(mp, &keofb);
Brian Foster8ca149d2012-11-07 12:21:12 -05002067 }
2068
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002069 default:
2070 return -ENOTTY;
2071 }
2072}