blob: 20dc65fef6a42fa52ad412b9cd5619aa1434245b [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"
Darrick J. Wong36fd6e82017-10-17 21:37:34 -070047#include "scrub/xfs_scrub.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080049#include <linux/capability.h>
Ingo Molnar5b825c32017-02-02 17:54:15 +010050#include <linux/cred.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <linux/dcache.h>
52#include <linux/mount.h>
53#include <linux/namei.h>
54#include <linux/pagemap.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090055#include <linux/slab.h>
Christoph Hellwigd296d302009-01-19 02:02:57 +010056#include <linux/exportfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58/*
59 * xfs_find_handle maps from userspace xfs_fsop_handlereq structure to
60 * a file or fs handle.
61 *
62 * XFS_IOC_PATH_TO_FSHANDLE
63 * returns fs handle for a mount point or path within that mount point
64 * XFS_IOC_FD_TO_HANDLE
65 * returns full handle for a FD opened in user space
66 * XFS_IOC_PATH_TO_HANDLE
67 * returns full handle for a path
68 */
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -060069int
Linus Torvalds1da177e2005-04-16 15:20:36 -070070xfs_find_handle(
71 unsigned int cmd,
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -060072 xfs_fsop_handlereq_t *hreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -070073{
74 int hsize;
75 xfs_handle_t handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 struct inode *inode;
Dave Chinnera30b0362013-09-02 20:49:36 +100077 struct fd f = {NULL};
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010078 struct path path;
Al Viro2903ff02012-08-28 12:52:22 -040079 int error;
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010080 struct xfs_inode *ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010082 if (cmd == XFS_IOC_FD_TO_HANDLE) {
Al Viro2903ff02012-08-28 12:52:22 -040083 f = fdget(hreq->fd);
84 if (!f.file)
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010085 return -EBADF;
Al Viro496ad9a2013-01-23 17:07:38 -050086 inode = file_inode(f.file);
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010087 } else {
88 error = user_lpath((const char __user *)hreq->path, &path);
89 if (error)
90 return error;
David Howells2b0143b2015-03-17 22:25:59 +000091 inode = d_inode(path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 }
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010093 ip = XFS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010095 /*
96 * We can only generate handles for inodes residing on a XFS filesystem,
97 * and only for regular files, directories or symbolic links.
98 */
99 error = -EINVAL;
100 if (inode->i_sb->s_magic != XFS_SB_MAGIC)
101 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100103 error = -EBADF;
104 if (!S_ISREG(inode->i_mode) &&
105 !S_ISDIR(inode->i_mode) &&
106 !S_ISLNK(inode->i_mode))
107 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100110 memcpy(&handle.ha_fsid, ip->i_mount->m_fixedfsid, sizeof(xfs_fsid_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100112 if (cmd == XFS_IOC_PATH_TO_FSHANDLE) {
113 /*
114 * This handle only contains an fsid, zero the rest.
115 */
116 memset(&handle.ha_fid, 0, sizeof(handle.ha_fid));
117 hsize = sizeof(xfs_fsid_t);
118 } else {
Christoph Hellwigc6143912007-09-14 15:22:37 +1000119 handle.ha_fid.fid_len = sizeof(xfs_fid_t) -
120 sizeof(handle.ha_fid.fid_len);
121 handle.ha_fid.fid_pad = 0;
Dave Chinner9e9a2672016-02-09 16:54:58 +1100122 handle.ha_fid.fid_gen = inode->i_generation;
Christoph Hellwigc6143912007-09-14 15:22:37 +1000123 handle.ha_fid.fid_ino = ip->i_ino;
Christoph Hellwig3398a402017-06-14 21:30:44 -0700124 hsize = sizeof(xfs_handle_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 }
126
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100127 error = -EFAULT;
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600128 if (copy_to_user(hreq->ohandle, &handle, hsize) ||
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100129 copy_to_user(hreq->ohandlen, &hsize, sizeof(__s32)))
130 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100132 error = 0;
133
134 out_put:
135 if (cmd == XFS_IOC_FD_TO_HANDLE)
Al Viro2903ff02012-08-28 12:52:22 -0400136 fdput(f);
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100137 else
138 path_put(&path);
139 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140}
141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142/*
Christoph Hellwigd296d302009-01-19 02:02:57 +0100143 * No need to do permission checks on the various pathname components
144 * as the handle operations are privileged.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 */
146STATIC int
Christoph Hellwigd296d302009-01-19 02:02:57 +0100147xfs_handle_acceptable(
148 void *context,
149 struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150{
Christoph Hellwigd296d302009-01-19 02:02:57 +0100151 return 1;
152}
153
154/*
155 * Convert userspace handle data into a dentry.
156 */
157struct dentry *
158xfs_handle_to_dentry(
159 struct file *parfilp,
160 void __user *uhandle,
161 u32 hlen)
162{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 xfs_handle_t handle;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100164 struct xfs_fid64 fid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166 /*
167 * Only allow handle opens under a directory.
168 */
Al Viro496ad9a2013-01-23 17:07:38 -0500169 if (!S_ISDIR(file_inode(parfilp)->i_mode))
Christoph Hellwigd296d302009-01-19 02:02:57 +0100170 return ERR_PTR(-ENOTDIR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Christoph Hellwigd296d302009-01-19 02:02:57 +0100172 if (hlen != sizeof(xfs_handle_t))
173 return ERR_PTR(-EINVAL);
174 if (copy_from_user(&handle, uhandle, hlen))
175 return ERR_PTR(-EFAULT);
176 if (handle.ha_fid.fid_len !=
177 sizeof(handle.ha_fid) - sizeof(handle.ha_fid.fid_len))
178 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Christoph Hellwigd296d302009-01-19 02:02:57 +0100180 memset(&fid, 0, sizeof(struct fid));
181 fid.ino = handle.ha_fid.fid_ino;
182 fid.gen = handle.ha_fid.fid_gen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
Christoph Hellwigd296d302009-01-19 02:02:57 +0100184 return exportfs_decode_fh(parfilp->f_path.mnt, (struct fid *)&fid, 3,
185 FILEID_INO32_GEN | XFS_FILEID_TYPE_64FLAG,
186 xfs_handle_acceptable, NULL);
187}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Christoph Hellwigd296d302009-01-19 02:02:57 +0100189STATIC struct dentry *
190xfs_handlereq_to_dentry(
191 struct file *parfilp,
192 xfs_fsop_handlereq_t *hreq)
193{
194 return xfs_handle_to_dentry(parfilp, hreq->ihandle, hreq->ihandlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195}
196
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600197int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198xfs_open_by_handle(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 struct file *parfilp,
Christoph Hellwigd296d302009-01-19 02:02:57 +0100200 xfs_fsop_handlereq_t *hreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201{
David Howells745ca242008-11-14 10:39:22 +1100202 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 int error;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100204 int fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 int permflag;
206 struct file *filp;
207 struct inode *inode;
208 struct dentry *dentry;
Dave Chinner1a1d7722012-03-22 05:15:06 +0000209 fmode_t fmode;
Al Viro765927b2012-06-26 21:58:53 +0400210 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
212 if (!capable(CAP_SYS_ADMIN))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000213 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Christoph Hellwigd296d302009-01-19 02:02:57 +0100215 dentry = xfs_handlereq_to_dentry(parfilp, hreq);
216 if (IS_ERR(dentry))
217 return PTR_ERR(dentry);
David Howells2b0143b2015-03-17 22:25:59 +0000218 inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
220 /* Restrict xfs_open_by_handle to directories & regular files. */
221 if (!(S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode))) {
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000222 error = -EPERM;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100223 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 }
225
226#if BITS_PER_LONG != 32
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600227 hreq->oflags |= O_LARGEFILE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228#endif
Christoph Hellwigd296d302009-01-19 02:02:57 +0100229
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600230 permflag = hreq->oflags;
Dave Chinner1a1d7722012-03-22 05:15:06 +0000231 fmode = OPEN_FMODE(permflag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 if ((!(permflag & O_APPEND) || (permflag & O_TRUNC)) &&
Dave Chinner1a1d7722012-03-22 05:15:06 +0000233 (fmode & FMODE_WRITE) && IS_APPEND(inode)) {
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000234 error = -EPERM;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100235 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 }
237
Dave Chinner1a1d7722012-03-22 05:15:06 +0000238 if ((fmode & FMODE_WRITE) && IS_IMMUTABLE(inode)) {
Eryu Guan337684a2016-08-02 19:58:28 +0800239 error = -EPERM;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100240 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 }
242
243 /* Can't write directories. */
Dave Chinner1a1d7722012-03-22 05:15:06 +0000244 if (S_ISDIR(inode->i_mode) && (fmode & FMODE_WRITE)) {
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000245 error = -EISDIR;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100246 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 }
248
Yann Droneaud862a6292013-07-02 18:39:34 +0200249 fd = get_unused_fd_flags(0);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100250 if (fd < 0) {
251 error = fd;
252 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 }
254
Al Viro765927b2012-06-26 21:58:53 +0400255 path.mnt = parfilp->f_path.mnt;
256 path.dentry = dentry;
257 filp = dentry_open(&path, hreq->oflags, cred);
258 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 if (IS_ERR(filp)) {
Christoph Hellwigd296d302009-01-19 02:02:57 +0100260 put_unused_fd(fd);
261 return PTR_ERR(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 }
Christoph Hellwig4d4be482008-12-09 04:47:33 -0500263
Al Viro03209372011-07-25 20:54:24 -0400264 if (S_ISREG(inode->i_mode)) {
Vlad Apostolov2e2e7bb2006-11-11 18:04:47 +1100265 filp->f_flags |= O_NOATIME;
Christoph Hellwig4d4be482008-12-09 04:47:33 -0500266 filp->f_mode |= FMODE_NOCMTIME;
Vlad Apostolov2e2e7bb2006-11-11 18:04:47 +1100267 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Christoph Hellwigd296d302009-01-19 02:02:57 +0100269 fd_install(fd, filp);
270 return fd;
271
272 out_dput:
273 dput(dentry);
274 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275}
276
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600277int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278xfs_readlink_by_handle(
Christoph Hellwigd296d302009-01-19 02:02:57 +0100279 struct file *parfilp,
280 xfs_fsop_handlereq_t *hreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281{
Christoph Hellwigd296d302009-01-19 02:02:57 +0100282 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 __u32 olen;
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000284 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
286 if (!capable(CAP_SYS_ADMIN))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000287 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Christoph Hellwigd296d302009-01-19 02:02:57 +0100289 dentry = xfs_handlereq_to_dentry(parfilp, hreq);
290 if (IS_ERR(dentry))
291 return PTR_ERR(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
293 /* Restrict this handle operation to symlinks only. */
Miklos Szeredifd4a0edf2016-12-09 16:45:04 +0100294 if (!d_is_symlink(dentry)) {
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000295 error = -EINVAL;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100296 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 }
298
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600299 if (copy_from_user(&olen, hreq->ohandlen, sizeof(__u32))) {
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000300 error = -EFAULT;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100301 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Miklos Szeredifd4a0edf2016-12-09 16:45:04 +0100304 error = vfs_readlink(dentry, hreq->ohandle, olen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Christoph Hellwigd296d302009-01-19 02:02:57 +0100306 out_dput:
307 dput(dentry);
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000308 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309}
310
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000311int
312xfs_set_dmattrs(
313 xfs_inode_t *ip,
Darrick J. Wong65a79352017-11-09 09:34:28 -0800314 uint evmask,
315 uint16_t state)
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000316{
317 xfs_mount_t *mp = ip->i_mount;
318 xfs_trans_t *tp;
319 int error;
320
321 if (!capable(CAP_SYS_ADMIN))
Dave Chinner24513372014-06-25 14:58:08 +1000322 return -EPERM;
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000323
324 if (XFS_FORCED_SHUTDOWN(mp))
Dave Chinner24513372014-06-25 14:58:08 +1000325 return -EIO;
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000326
Christoph Hellwig253f4912016-04-06 09:19:55 +1000327 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_ichange, 0, 0, 0, &tp);
328 if (error)
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000329 return error;
Christoph Hellwig253f4912016-04-06 09:19:55 +1000330
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000331 xfs_ilock(ip, XFS_ILOCK_EXCL);
332 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
333
334 ip->i_d.di_dmevmask = evmask;
335 ip->i_d.di_dmstate = state;
336
337 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
Christoph Hellwig70393312015-06-04 13:48:08 +1000338 error = xfs_trans_commit(tp);
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000339
340 return error;
341}
342
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343STATIC int
344xfs_fssetdm_by_handle(
Christoph Hellwigd296d302009-01-19 02:02:57 +0100345 struct file *parfilp,
346 void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347{
348 int error;
349 struct fsdmidata fsd;
350 xfs_fsop_setdm_handlereq_t dmhreq;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100351 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
353 if (!capable(CAP_MKNOD))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000354 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 if (copy_from_user(&dmhreq, arg, sizeof(xfs_fsop_setdm_handlereq_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000356 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
Jan Karad9457dc2012-06-12 16:20:39 +0200358 error = mnt_want_write_file(parfilp);
359 if (error)
360 return error;
361
Christoph Hellwigd296d302009-01-19 02:02:57 +0100362 dentry = xfs_handlereq_to_dentry(parfilp, &dmhreq.hreq);
Jan Karad9457dc2012-06-12 16:20:39 +0200363 if (IS_ERR(dentry)) {
364 mnt_drop_write_file(parfilp);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100365 return PTR_ERR(dentry);
Jan Karad9457dc2012-06-12 16:20:39 +0200366 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
David Howells2b0143b2015-03-17 22:25:59 +0000368 if (IS_IMMUTABLE(d_inode(dentry)) || IS_APPEND(d_inode(dentry))) {
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000369 error = -EPERM;
Christoph Hellwig6e7f75e2007-10-11 18:09:50 +1000370 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 }
372
373 if (copy_from_user(&fsd, dmhreq.data, sizeof(fsd))) {
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000374 error = -EFAULT;
Christoph Hellwig6e7f75e2007-10-11 18:09:50 +1000375 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 }
377
David Howells2b0143b2015-03-17 22:25:59 +0000378 error = xfs_set_dmattrs(XFS_I(d_inode(dentry)), fsd.fsd_dmevmask,
Christoph Hellwig6e7f75e2007-10-11 18:09:50 +1000379 fsd.fsd_dmstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
Christoph Hellwig6e7f75e2007-10-11 18:09:50 +1000381 out:
Jan Karad9457dc2012-06-12 16:20:39 +0200382 mnt_drop_write_file(parfilp);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100383 dput(dentry);
Christoph Hellwig6e7f75e2007-10-11 18:09:50 +1000384 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385}
386
387STATIC int
388xfs_attrlist_by_handle(
Christoph Hellwigd296d302009-01-19 02:02:57 +0100389 struct file *parfilp,
390 void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391{
Christoph Hellwigd296d302009-01-19 02:02:57 +0100392 int error = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 attrlist_cursor_kern_t *cursor;
Darrick J. Wong0facef72016-08-03 10:58:53 +1000394 struct xfs_fsop_attrlist_handlereq __user *p = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 xfs_fsop_attrlist_handlereq_t al_hreq;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100396 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 char *kbuf;
398
399 if (!capable(CAP_SYS_ADMIN))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000400 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 if (copy_from_user(&al_hreq, arg, sizeof(xfs_fsop_attrlist_handlereq_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000402 return -EFAULT;
Dan Carpenter071c5292013-10-31 21:00:10 +0300403 if (al_hreq.buflen < sizeof(struct attrlist) ||
Jan Tulak4e247612015-10-12 16:02:56 +1100404 al_hreq.buflen > XFS_XATTR_LIST_MAX)
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000405 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Christoph Hellwig90ad58a2008-06-27 13:32:19 +1000407 /*
408 * Reject flags, only allow namespaces.
409 */
410 if (al_hreq.flags & ~(ATTR_ROOT | ATTR_SECURE))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000411 return -EINVAL;
Christoph Hellwig90ad58a2008-06-27 13:32:19 +1000412
Christoph Hellwigd296d302009-01-19 02:02:57 +0100413 dentry = xfs_handlereq_to_dentry(parfilp, &al_hreq.hreq);
414 if (IS_ERR(dentry))
415 return PTR_ERR(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
Dave Chinnerfdd3cce2013-09-02 20:53:00 +1000417 kbuf = kmem_zalloc_large(al_hreq.buflen, KM_SLEEP);
418 if (!kbuf)
419 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
421 cursor = (attrlist_cursor_kern_t *)&al_hreq.pos;
David Howells2b0143b2015-03-17 22:25:59 +0000422 error = xfs_attr_list(XFS_I(d_inode(dentry)), kbuf, al_hreq.buflen,
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000423 al_hreq.flags, cursor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 if (error)
425 goto out_kfree;
426
Darrick J. Wong0facef72016-08-03 10:58:53 +1000427 if (copy_to_user(&p->pos, cursor, sizeof(attrlist_cursor_kern_t))) {
428 error = -EFAULT;
429 goto out_kfree;
430 }
431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 if (copy_to_user(al_hreq.buffer, kbuf, al_hreq.buflen))
433 error = -EFAULT;
434
Dave Chinnerfdd3cce2013-09-02 20:53:00 +1000435out_kfree:
436 kmem_free(kbuf);
437out_dput:
Christoph Hellwigd296d302009-01-19 02:02:57 +0100438 dput(dentry);
439 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440}
441
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600442int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443xfs_attrmulti_attr_get(
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000444 struct inode *inode,
Dave Chinnera9273ca2010-01-20 10:47:48 +1100445 unsigned char *name,
446 unsigned char __user *ubuf,
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700447 uint32_t *len,
448 uint32_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449{
Dave Chinnera9273ca2010-01-20 10:47:48 +1100450 unsigned char *kbuf;
Dave Chinner24513372014-06-25 14:58:08 +1000451 int error = -EFAULT;
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000452
Jan Tulak51fcbfe2015-10-12 16:03:59 +1100453 if (*len > XFS_XATTR_SIZE_MAX)
Dave Chinner24513372014-06-25 14:58:08 +1000454 return -EINVAL;
Dave Chinnerfdd3cce2013-09-02 20:53:00 +1000455 kbuf = kmem_zalloc_large(*len, KM_SLEEP);
456 if (!kbuf)
Dave Chinner24513372014-06-25 14:58:08 +1000457 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000459 error = xfs_attr_get(XFS_I(inode), name, kbuf, (int *)len, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 if (error)
461 goto out_kfree;
462
463 if (copy_to_user(ubuf, kbuf, *len))
Dave Chinner24513372014-06-25 14:58:08 +1000464 error = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
Dave Chinnerfdd3cce2013-09-02 20:53:00 +1000466out_kfree:
467 kmem_free(kbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 return error;
469}
470
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600471int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472xfs_attrmulti_attr_set(
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000473 struct inode *inode,
Dave Chinnera9273ca2010-01-20 10:47:48 +1100474 unsigned char *name,
475 const unsigned char __user *ubuf,
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700476 uint32_t len,
477 uint32_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478{
Dave Chinnera9273ca2010-01-20 10:47:48 +1100479 unsigned char *kbuf;
Andreas Gruenbacher09cb22d2015-11-03 12:53:54 +1100480 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000482 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
Dave Chinner24513372014-06-25 14:58:08 +1000483 return -EPERM;
Jan Tulak51fcbfe2015-10-12 16:03:59 +1100484 if (len > XFS_XATTR_SIZE_MAX)
Dave Chinner24513372014-06-25 14:58:08 +1000485 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Li Zefan0e639bd2009-04-08 15:08:04 +0800487 kbuf = memdup_user(ubuf, len);
488 if (IS_ERR(kbuf))
489 return PTR_ERR(kbuf);
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000490
Andreas Gruenbacher09cb22d2015-11-03 12:53:54 +1100491 error = xfs_attr_set(XFS_I(inode), name, kbuf, len, flags);
Andreas Gruenbacher47e1bf62015-11-03 12:56:17 +1100492 if (!error)
493 xfs_forget_acl(inode, name, flags);
Andreas Gruenbacher09cb22d2015-11-03 12:53:54 +1100494 kfree(kbuf);
495 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496}
497
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600498int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499xfs_attrmulti_attr_remove(
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000500 struct inode *inode,
Dave Chinnera9273ca2010-01-20 10:47:48 +1100501 unsigned char *name,
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700502 uint32_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503{
Andreas Gruenbacher47e1bf62015-11-03 12:56:17 +1100504 int error;
505
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000506 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
Dave Chinner24513372014-06-25 14:58:08 +1000507 return -EPERM;
Andreas Gruenbacher47e1bf62015-11-03 12:56:17 +1100508 error = xfs_attr_remove(XFS_I(inode), name, flags);
509 if (!error)
510 xfs_forget_acl(inode, name, flags);
511 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512}
513
514STATIC int
515xfs_attrmulti_by_handle(
Dave Hansen42a74f22008-02-15 14:37:46 -0800516 struct file *parfilp,
Christoph Hellwigd296d302009-01-19 02:02:57 +0100517 void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518{
519 int error;
520 xfs_attr_multiop_t *ops;
521 xfs_fsop_attrmulti_handlereq_t am_hreq;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100522 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 unsigned int i, size;
Dave Chinnera9273ca2010-01-20 10:47:48 +1100524 unsigned char *attr_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
526 if (!capable(CAP_SYS_ADMIN))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000527 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 if (copy_from_user(&am_hreq, arg, sizeof(xfs_fsop_attrmulti_handlereq_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000529 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
Zhitong Wangfda168c2010-03-23 09:51:22 +1100531 /* overflow check */
532 if (am_hreq.opcount >= INT_MAX / sizeof(xfs_attr_multiop_t))
533 return -E2BIG;
534
Christoph Hellwigd296d302009-01-19 02:02:57 +0100535 dentry = xfs_handlereq_to_dentry(parfilp, &am_hreq.hreq);
536 if (IS_ERR(dentry))
537 return PTR_ERR(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Dave Chinner24513372014-06-25 14:58:08 +1000539 error = -E2BIG;
Christoph Hellwige182f572008-06-27 13:32:31 +1000540 size = am_hreq.opcount * sizeof(xfs_attr_multiop_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 if (!size || size > 16 * PAGE_SIZE)
Christoph Hellwigd296d302009-01-19 02:02:57 +0100542 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Li Zefan0e639bd2009-04-08 15:08:04 +0800544 ops = memdup_user(am_hreq.ops, size);
545 if (IS_ERR(ops)) {
Dave Chinner24513372014-06-25 14:58:08 +1000546 error = PTR_ERR(ops);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100547 goto out_dput;
Li Zefan0e639bd2009-04-08 15:08:04 +0800548 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
Dave Chinner24513372014-06-25 14:58:08 +1000550 error = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 attr_name = kmalloc(MAXNAMELEN, GFP_KERNEL);
552 if (!attr_name)
553 goto out_kfree_ops;
554
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 error = 0;
556 for (i = 0; i < am_hreq.opcount; i++) {
Dave Chinnera9273ca2010-01-20 10:47:48 +1100557 ops[i].am_error = strncpy_from_user((char *)attr_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 ops[i].am_attrname, MAXNAMELEN);
559 if (ops[i].am_error == 0 || ops[i].am_error == MAXNAMELEN)
Dave Chinner24513372014-06-25 14:58:08 +1000560 error = -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 if (ops[i].am_error < 0)
562 break;
563
564 switch (ops[i].am_opcode) {
565 case ATTR_OP_GET:
Christoph Hellwigd296d302009-01-19 02:02:57 +0100566 ops[i].am_error = xfs_attrmulti_attr_get(
David Howells2b0143b2015-03-17 22:25:59 +0000567 d_inode(dentry), attr_name,
Christoph Hellwigd296d302009-01-19 02:02:57 +0100568 ops[i].am_attrvalue, &ops[i].am_length,
569 ops[i].am_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 break;
571 case ATTR_OP_SET:
Al Viroa561be72011-11-23 11:57:51 -0500572 ops[i].am_error = mnt_want_write_file(parfilp);
Dave Hansen42a74f22008-02-15 14:37:46 -0800573 if (ops[i].am_error)
574 break;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100575 ops[i].am_error = xfs_attrmulti_attr_set(
David Howells2b0143b2015-03-17 22:25:59 +0000576 d_inode(dentry), attr_name,
Christoph Hellwigd296d302009-01-19 02:02:57 +0100577 ops[i].am_attrvalue, ops[i].am_length,
578 ops[i].am_flags);
Al Viro2a79f172011-12-09 08:06:57 -0500579 mnt_drop_write_file(parfilp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 break;
581 case ATTR_OP_REMOVE:
Al Viroa561be72011-11-23 11:57:51 -0500582 ops[i].am_error = mnt_want_write_file(parfilp);
Dave Hansen42a74f22008-02-15 14:37:46 -0800583 if (ops[i].am_error)
584 break;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100585 ops[i].am_error = xfs_attrmulti_attr_remove(
David Howells2b0143b2015-03-17 22:25:59 +0000586 d_inode(dentry), attr_name,
Christoph Hellwigd296d302009-01-19 02:02:57 +0100587 ops[i].am_flags);
Al Viro2a79f172011-12-09 08:06:57 -0500588 mnt_drop_write_file(parfilp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 break;
590 default:
Dave Chinner24513372014-06-25 14:58:08 +1000591 ops[i].am_error = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 }
593 }
594
595 if (copy_to_user(am_hreq.ops, ops, size))
Dave Chinner24513372014-06-25 14:58:08 +1000596 error = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
598 kfree(attr_name);
599 out_kfree_ops:
600 kfree(ops);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100601 out_dput:
602 dput(dentry);
Dave Chinner24513372014-06-25 14:58:08 +1000603 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604}
605
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600606int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607xfs_ioc_space(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 unsigned int cmd,
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600610 xfs_flock64_t *bf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611{
Christoph Hellwig8f3e2052016-07-20 11:29:35 +1000612 struct inode *inode = file_inode(filp);
613 struct xfs_inode *ip = XFS_I(inode);
Christoph Hellwig865e9442013-10-12 00:55:08 -0700614 struct iattr iattr;
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100615 enum xfs_prealloc_flags flags = 0;
Christoph Hellwig781355c2015-02-16 11:59:50 +1100616 uint iolock = XFS_IOLOCK_EXCL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 int error;
618
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600619 /*
620 * Only allow the sys admin to reserve space unless
621 * unwritten extents are enabled.
622 */
623 if (!xfs_sb_version_hasextflgbit(&ip->i_mount->m_sb) &&
624 !capable(CAP_SYS_ADMIN))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000625 return -EPERM;
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600626
Alexey Dobriyanf37ea142006-09-28 10:52:04 +1000627 if (inode->i_flags & (S_IMMUTABLE|S_APPEND))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000628 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
Eric Sandeenad4a8ac2005-09-02 16:41:16 +1000630 if (!(filp->f_mode & FMODE_WRITE))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000631 return -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Alexey Dobriyanf37ea142006-09-28 10:52:04 +1000633 if (!S_ISREG(inode->i_mode))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000634 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100636 if (filp->f_flags & O_DSYNC)
637 flags |= XFS_PREALLOC_SYNC;
Christoph Hellwig8f3e2052016-07-20 11:29:35 +1000638 if (filp->f_mode & FMODE_NOCMTIME)
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100639 flags |= XFS_PREALLOC_INVISIBLE;
640
Jan Karad9457dc2012-06-12 16:20:39 +0200641 error = mnt_want_write_file(filp);
642 if (error)
643 return error;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700644
Christoph Hellwig781355c2015-02-16 11:59:50 +1100645 xfs_ilock(ip, iolock);
Christoph Hellwig65523212016-11-30 14:33:25 +1100646 error = xfs_break_layouts(inode, &iolock);
Christoph Hellwig781355c2015-02-16 11:59:50 +1100647 if (error)
648 goto out_unlock;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700649
Dave Chinnere8e9ad42015-02-23 21:45:32 +1100650 xfs_ilock(ip, XFS_MMAPLOCK_EXCL);
651 iolock |= XFS_MMAPLOCK_EXCL;
652
Christoph Hellwig865e9442013-10-12 00:55:08 -0700653 switch (bf->l_whence) {
654 case 0: /*SEEK_SET*/
655 break;
656 case 1: /*SEEK_CUR*/
657 bf->l_start += filp->f_pos;
658 break;
659 case 2: /*SEEK_END*/
660 bf->l_start += XFS_ISIZE(ip);
661 break;
662 default:
Dave Chinner24513372014-06-25 14:58:08 +1000663 error = -EINVAL;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700664 goto out_unlock;
665 }
666
667 /*
668 * length of <= 0 for resv/unresv/zero is invalid. length for
669 * alloc/free is ignored completely and we have no idea what userspace
670 * might have set it to, so set it to zero to allow range
671 * checks to pass.
672 */
673 switch (cmd) {
674 case XFS_IOC_ZERO_RANGE:
675 case XFS_IOC_RESVSP:
676 case XFS_IOC_RESVSP64:
677 case XFS_IOC_UNRESVSP:
678 case XFS_IOC_UNRESVSP64:
679 if (bf->l_len <= 0) {
Dave Chinner24513372014-06-25 14:58:08 +1000680 error = -EINVAL;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700681 goto out_unlock;
682 }
683 break;
684 default:
685 bf->l_len = 0;
686 break;
687 }
688
689 if (bf->l_start < 0 ||
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100690 bf->l_start > inode->i_sb->s_maxbytes ||
Christoph Hellwig865e9442013-10-12 00:55:08 -0700691 bf->l_start + bf->l_len < 0 ||
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100692 bf->l_start + bf->l_len >= inode->i_sb->s_maxbytes) {
Dave Chinner24513372014-06-25 14:58:08 +1000693 error = -EINVAL;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700694 goto out_unlock;
695 }
696
697 switch (cmd) {
698 case XFS_IOC_ZERO_RANGE:
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100699 flags |= XFS_PREALLOC_SET;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700700 error = xfs_zero_file_space(ip, bf->l_start, bf->l_len);
Christoph Hellwig865e9442013-10-12 00:55:08 -0700701 break;
702 case XFS_IOC_RESVSP:
703 case XFS_IOC_RESVSP64:
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100704 flags |= XFS_PREALLOC_SET;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700705 error = xfs_alloc_file_space(ip, bf->l_start, bf->l_len,
706 XFS_BMAPI_PREALLOC);
Christoph Hellwig865e9442013-10-12 00:55:08 -0700707 break;
708 case XFS_IOC_UNRESVSP:
709 case XFS_IOC_UNRESVSP64:
710 error = xfs_free_file_space(ip, bf->l_start, bf->l_len);
711 break;
712 case XFS_IOC_ALLOCSP:
713 case XFS_IOC_ALLOCSP64:
714 case XFS_IOC_FREESP:
715 case XFS_IOC_FREESP64:
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100716 flags |= XFS_PREALLOC_CLEAR;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700717 if (bf->l_start > XFS_ISIZE(ip)) {
718 error = xfs_alloc_file_space(ip, XFS_ISIZE(ip),
719 bf->l_start - XFS_ISIZE(ip), 0);
720 if (error)
721 goto out_unlock;
722 }
723
724 iattr.ia_valid = ATTR_SIZE;
725 iattr.ia_size = bf->l_start;
726
Jan Kara69bca802016-05-26 14:46:43 +0200727 error = xfs_vn_setattr_size(file_dentry(filp), &iattr);
Christoph Hellwig865e9442013-10-12 00:55:08 -0700728 break;
729 default:
730 ASSERT(0);
Dave Chinner24513372014-06-25 14:58:08 +1000731 error = -EINVAL;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700732 }
733
734 if (error)
735 goto out_unlock;
736
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100737 error = xfs_update_prealloc_flags(ip, flags);
Christoph Hellwig865e9442013-10-12 00:55:08 -0700738
739out_unlock:
Christoph Hellwig781355c2015-02-16 11:59:50 +1100740 xfs_iunlock(ip, iolock);
Jan Karad9457dc2012-06-12 16:20:39 +0200741 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +1000742 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743}
744
745STATIC int
746xfs_ioc_bulkstat(
747 xfs_mount_t *mp,
748 unsigned int cmd,
749 void __user *arg)
750{
751 xfs_fsop_bulkreq_t bulkreq;
752 int count; /* # of records returned */
753 xfs_ino_t inlast; /* last inode number */
754 int done;
755 int error;
756
757 /* done = 1 if there are more stats to get and if bulkstat */
758 /* should be called again (unused here, but used in dmapi) */
759
760 if (!capable(CAP_SYS_ADMIN))
761 return -EPERM;
762
763 if (XFS_FORCED_SHUTDOWN(mp))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000764 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
766 if (copy_from_user(&bulkreq, arg, sizeof(xfs_fsop_bulkreq_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000767 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
769 if (copy_from_user(&inlast, bulkreq.lastip, sizeof(__s64)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000770 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
772 if ((count = bulkreq.icount) <= 0)
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000773 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100775 if (bulkreq.ubuffer == NULL)
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000776 return -EINVAL;
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100777
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 if (cmd == XFS_IOC_FSINUMBERS)
779 error = xfs_inumbers(mp, &inlast, &count,
Michal Marekfaa63e92007-07-11 11:10:19 +1000780 bulkreq.ubuffer, xfs_inumbers_fmt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 else if (cmd == XFS_IOC_FSBULKSTAT_SINGLE)
Christoph Hellwigd716f8e2014-07-24 12:07:15 +1000782 error = xfs_bulkstat_one(mp, inlast, bulkreq.ubuffer,
783 sizeof(xfs_bstat_t), NULL, &done);
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100784 else /* XFS_IOC_FSBULKSTAT */
Christoph Hellwig7dce11d2010-06-23 18:11:11 +1000785 error = xfs_bulkstat(mp, &inlast, &count, xfs_bulkstat_one,
786 sizeof(xfs_bstat_t), bulkreq.ubuffer,
787 &done);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
789 if (error)
Dave Chinner24513372014-06-25 14:58:08 +1000790 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
792 if (bulkreq.ocount != NULL) {
793 if (copy_to_user(bulkreq.lastip, &inlast,
794 sizeof(xfs_ino_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000795 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
797 if (copy_to_user(bulkreq.ocount, &count, sizeof(count)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000798 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 }
800
801 return 0;
802}
803
804STATIC int
805xfs_ioc_fsgeometry_v1(
806 xfs_mount_t *mp,
807 void __user *arg)
808{
Alex Eldereeb20362011-03-01 17:50:00 +0000809 xfs_fsop_geom_t fsgeo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 int error;
811
Alex Eldereeb20362011-03-01 17:50:00 +0000812 error = xfs_fs_geometry(mp, &fsgeo, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 if (error)
Dave Chinner24513372014-06-25 14:58:08 +1000814 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
Alex Eldereeb20362011-03-01 17:50:00 +0000816 /*
817 * Caller should have passed an argument of type
818 * xfs_fsop_geom_v1_t. This is a proper subset of the
819 * xfs_fsop_geom_t that xfs_fs_geometry() fills in.
820 */
821 if (copy_to_user(arg, &fsgeo, sizeof(xfs_fsop_geom_v1_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000822 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 return 0;
824}
825
826STATIC int
827xfs_ioc_fsgeometry(
828 xfs_mount_t *mp,
829 void __user *arg)
830{
831 xfs_fsop_geom_t fsgeo;
832 int error;
833
834 error = xfs_fs_geometry(mp, &fsgeo, 4);
835 if (error)
Dave Chinner24513372014-06-25 14:58:08 +1000836 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
838 if (copy_to_user(arg, &fsgeo, sizeof(fsgeo)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000839 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 return 0;
841}
842
843/*
844 * Linux extended inode flags interface.
845 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
847STATIC unsigned int
848xfs_merge_ioc_xflags(
849 unsigned int flags,
850 unsigned int start)
851{
852 unsigned int xflags = start;
853
Eric Sandeen39058a02007-02-10 18:37:10 +1100854 if (flags & FS_IMMUTABLE_FL)
Dave Chinnere7b89482016-01-04 16:44:15 +1100855 xflags |= FS_XFLAG_IMMUTABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 else
Dave Chinnere7b89482016-01-04 16:44:15 +1100857 xflags &= ~FS_XFLAG_IMMUTABLE;
Eric Sandeen39058a02007-02-10 18:37:10 +1100858 if (flags & FS_APPEND_FL)
Dave Chinnere7b89482016-01-04 16:44:15 +1100859 xflags |= FS_XFLAG_APPEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 else
Dave Chinnere7b89482016-01-04 16:44:15 +1100861 xflags &= ~FS_XFLAG_APPEND;
Eric Sandeen39058a02007-02-10 18:37:10 +1100862 if (flags & FS_SYNC_FL)
Dave Chinnere7b89482016-01-04 16:44:15 +1100863 xflags |= FS_XFLAG_SYNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 else
Dave Chinnere7b89482016-01-04 16:44:15 +1100865 xflags &= ~FS_XFLAG_SYNC;
Eric Sandeen39058a02007-02-10 18:37:10 +1100866 if (flags & FS_NOATIME_FL)
Dave Chinnere7b89482016-01-04 16:44:15 +1100867 xflags |= FS_XFLAG_NOATIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 else
Dave Chinnere7b89482016-01-04 16:44:15 +1100869 xflags &= ~FS_XFLAG_NOATIME;
Eric Sandeen39058a02007-02-10 18:37:10 +1100870 if (flags & FS_NODUMP_FL)
Dave Chinnere7b89482016-01-04 16:44:15 +1100871 xflags |= FS_XFLAG_NODUMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 else
Dave Chinnere7b89482016-01-04 16:44:15 +1100873 xflags &= ~FS_XFLAG_NODUMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
875 return xflags;
876}
877
878STATIC unsigned int
879xfs_di2lxflags(
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700880 uint16_t di_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881{
882 unsigned int flags = 0;
883
884 if (di_flags & XFS_DIFLAG_IMMUTABLE)
Eric Sandeen39058a02007-02-10 18:37:10 +1100885 flags |= FS_IMMUTABLE_FL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 if (di_flags & XFS_DIFLAG_APPEND)
Eric Sandeen39058a02007-02-10 18:37:10 +1100887 flags |= FS_APPEND_FL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 if (di_flags & XFS_DIFLAG_SYNC)
Eric Sandeen39058a02007-02-10 18:37:10 +1100889 flags |= FS_SYNC_FL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 if (di_flags & XFS_DIFLAG_NOATIME)
Eric Sandeen39058a02007-02-10 18:37:10 +1100891 flags |= FS_NOATIME_FL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 if (di_flags & XFS_DIFLAG_NODUMP)
Eric Sandeen39058a02007-02-10 18:37:10 +1100893 flags |= FS_NODUMP_FL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 return flags;
895}
896
897STATIC int
Christoph Hellwigc83bfab2007-10-11 17:47:00 +1000898xfs_ioc_fsgetxattr(
899 xfs_inode_t *ip,
900 int attr,
901 void __user *arg)
902{
903 struct fsxattr fa;
904
Dan Rosenberga122eb22010-09-06 18:24:57 -0400905 memset(&fa, 0, sizeof(struct fsxattr));
906
Christoph Hellwigc83bfab2007-10-11 17:47:00 +1000907 xfs_ilock(ip, XFS_ILOCK_SHARED);
908 fa.fsx_xflags = xfs_ip2xflags(ip);
909 fa.fsx_extsize = ip->i_d.di_extsize << ip->i_mount->m_sb.sb_blocklog;
Darrick J. Wongf7ca3522016-10-03 09:11:43 -0700910 fa.fsx_cowextsize = ip->i_d.di_cowextsize <<
911 ip->i_mount->m_sb.sb_blocklog;
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000912 fa.fsx_projid = xfs_get_projid(ip);
Christoph Hellwigc83bfab2007-10-11 17:47:00 +1000913
914 if (attr) {
915 if (ip->i_afp) {
916 if (ip->i_afp->if_flags & XFS_IFEXTENTS)
Eric Sandeen5d829302016-11-08 12:59:42 +1100917 fa.fsx_nextents = xfs_iext_count(ip->i_afp);
Christoph Hellwigc83bfab2007-10-11 17:47:00 +1000918 else
919 fa.fsx_nextents = ip->i_d.di_anextents;
920 } else
921 fa.fsx_nextents = 0;
922 } else {
923 if (ip->i_df.if_flags & XFS_IFEXTENTS)
Eric Sandeen5d829302016-11-08 12:59:42 +1100924 fa.fsx_nextents = xfs_iext_count(&ip->i_df);
Christoph Hellwigc83bfab2007-10-11 17:47:00 +1000925 else
926 fa.fsx_nextents = ip->i_d.di_nextents;
927 }
928 xfs_iunlock(ip, XFS_ILOCK_SHARED);
929
930 if (copy_to_user(arg, &fa, sizeof(fa)))
931 return -EFAULT;
932 return 0;
933}
934
Christoph Hellwigdd606872017-09-02 08:21:20 -0700935STATIC uint16_t
936xfs_flags2diflags(
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000937 struct xfs_inode *ip,
938 unsigned int xflags)
939{
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000940 /* can't set PREALLOC this way, just preserve it */
Christoph Hellwigdd606872017-09-02 08:21:20 -0700941 uint16_t di_flags =
942 (ip->i_d.di_flags & XFS_DIFLAG_PREALLOC);
943
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 }
Dave Chinner58f88ca2016-01-04 16:44:15 +1100973
Christoph Hellwigdd606872017-09-02 08:21:20 -0700974 return di_flags;
975}
Dave Chinner58f88ca2016-01-04 16:44:15 +1100976
Christoph Hellwigdd606872017-09-02 08:21:20 -0700977STATIC uint64_t
978xfs_flags2diflags2(
979 struct xfs_inode *ip,
980 unsigned int xflags)
981{
982 uint64_t di_flags2 =
983 (ip->i_d.di_flags2 & XFS_DIFLAG2_REFLINK);
984
Dave Chinner58f88ca2016-01-04 16:44:15 +1100985 if (xflags & FS_XFLAG_DAX)
986 di_flags2 |= XFS_DIFLAG2_DAX;
Darrick J. Wongf7ca3522016-10-03 09:11:43 -0700987 if (xflags & FS_XFLAG_COWEXTSIZE)
988 di_flags2 |= XFS_DIFLAG2_COWEXTSIZE;
Dave Chinner58f88ca2016-01-04 16:44:15 +1100989
Christoph Hellwigdd606872017-09-02 08:21:20 -0700990 return di_flags2;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000991}
992
Christoph Hellwigf13fae22008-07-21 16:16:15 +1000993STATIC void
994xfs_diflags_to_linux(
995 struct xfs_inode *ip)
996{
David Chinnere4f75292008-08-13 16:00:45 +1000997 struct inode *inode = VFS_I(ip);
Christoph Hellwigf13fae22008-07-21 16:16:15 +1000998 unsigned int xflags = xfs_ip2xflags(ip);
999
Dave Chinnere7b89482016-01-04 16:44:15 +11001000 if (xflags & FS_XFLAG_IMMUTABLE)
Christoph Hellwigf13fae22008-07-21 16:16:15 +10001001 inode->i_flags |= S_IMMUTABLE;
1002 else
1003 inode->i_flags &= ~S_IMMUTABLE;
Dave Chinnere7b89482016-01-04 16:44:15 +11001004 if (xflags & FS_XFLAG_APPEND)
Christoph Hellwigf13fae22008-07-21 16:16:15 +10001005 inode->i_flags |= S_APPEND;
1006 else
1007 inode->i_flags &= ~S_APPEND;
Dave Chinnere7b89482016-01-04 16:44:15 +11001008 if (xflags & FS_XFLAG_SYNC)
Christoph Hellwigf13fae22008-07-21 16:16:15 +10001009 inode->i_flags |= S_SYNC;
1010 else
1011 inode->i_flags &= ~S_SYNC;
Dave Chinnere7b89482016-01-04 16:44:15 +11001012 if (xflags & FS_XFLAG_NOATIME)
Christoph Hellwigf13fae22008-07-21 16:16:15 +10001013 inode->i_flags |= S_NOATIME;
1014 else
1015 inode->i_flags &= ~S_NOATIME;
Christoph Hellwig742d8422017-08-30 09:23:01 -07001016#if 0 /* disabled until the flag switching races are sorted out */
Dave Chinner58f88ca2016-01-04 16:44:15 +11001017 if (xflags & FS_XFLAG_DAX)
1018 inode->i_flags |= S_DAX;
1019 else
1020 inode->i_flags &= ~S_DAX;
Christoph Hellwig742d8422017-08-30 09:23:01 -07001021#endif
Christoph Hellwigf13fae22008-07-21 16:16:15 +10001022}
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001023
Dave Chinner29a17c02015-02-02 10:14:25 +11001024static int
1025xfs_ioctl_setattr_xflags(
1026 struct xfs_trans *tp,
1027 struct xfs_inode *ip,
1028 struct fsxattr *fa)
1029{
1030 struct xfs_mount *mp = ip->i_mount;
Christoph Hellwigdd606872017-09-02 08:21:20 -07001031 uint64_t di_flags2;
Dave Chinner29a17c02015-02-02 10:14:25 +11001032
1033 /* Can't change realtime flag if any extents are allocated. */
1034 if ((ip->i_d.di_nextents || ip->i_delayed_blks) &&
Dave Chinnere7b89482016-01-04 16:44:15 +11001035 XFS_IS_REALTIME_INODE(ip) != (fa->fsx_xflags & FS_XFLAG_REALTIME))
Dave Chinner29a17c02015-02-02 10:14:25 +11001036 return -EINVAL;
1037
1038 /* If realtime flag is set then must have realtime device */
Dave Chinnere7b89482016-01-04 16:44:15 +11001039 if (fa->fsx_xflags & FS_XFLAG_REALTIME) {
Dave Chinner29a17c02015-02-02 10:14:25 +11001040 if (mp->m_sb.sb_rblocks == 0 || mp->m_sb.sb_rextsize == 0 ||
1041 (ip->i_d.di_extsize % mp->m_sb.sb_rextsize))
1042 return -EINVAL;
1043 }
1044
Darrick J. Wong1987fd72016-10-10 16:49:29 +11001045 /* Clear reflink if we are actually able to set the rt flag. */
Darrick J. Wongc8e156a2016-10-03 09:11:50 -07001046 if ((fa->fsx_xflags & FS_XFLAG_REALTIME) && xfs_is_reflink_inode(ip))
Darrick J. Wong1987fd72016-10-10 16:49:29 +11001047 ip->i_d.di_flags2 &= ~XFS_DIFLAG2_REFLINK;
Darrick J. Wongc8e156a2016-10-03 09:11:50 -07001048
Darrick J. Wong4f435eb2016-10-03 09:11:50 -07001049 /* Don't allow us to set DAX mode for a reflinked file for now. */
1050 if ((fa->fsx_xflags & FS_XFLAG_DAX) && xfs_is_reflink_inode(ip))
1051 return -EINVAL;
1052
Dave Chinner29a17c02015-02-02 10:14:25 +11001053 /*
1054 * Can't modify an immutable/append-only file unless
1055 * we have appropriate permission.
1056 */
1057 if (((ip->i_d.di_flags & (XFS_DIFLAG_IMMUTABLE | XFS_DIFLAG_APPEND)) ||
Dave Chinnere7b89482016-01-04 16:44:15 +11001058 (fa->fsx_xflags & (FS_XFLAG_IMMUTABLE | FS_XFLAG_APPEND))) &&
Dave Chinner29a17c02015-02-02 10:14:25 +11001059 !capable(CAP_LINUX_IMMUTABLE))
1060 return -EPERM;
1061
Christoph Hellwigdd606872017-09-02 08:21:20 -07001062 /* diflags2 only valid for v3 inodes. */
1063 di_flags2 = xfs_flags2diflags2(ip, fa->fsx_xflags);
1064 if (di_flags2 && ip->i_d.di_version < 3)
1065 return -EINVAL;
1066
1067 ip->i_d.di_flags = xfs_flags2diflags(ip, fa->fsx_xflags);
1068 ip->i_d.di_flags2 = di_flags2;
1069
Dave Chinner29a17c02015-02-02 10:14:25 +11001070 xfs_diflags_to_linux(ip);
1071 xfs_trans_ichgtime(tp, ip, XFS_ICHGTIME_CHG);
1072 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
Bill O'Donnellff6d6af2015-10-12 18:21:22 +11001073 XFS_STATS_INC(mp, xs_ig_attrchg);
Dave Chinner29a17c02015-02-02 10:14:25 +11001074 return 0;
1075}
1076
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001077/*
Dave Chinner3a6a8542016-03-01 09:41:33 +11001078 * If we are changing DAX flags, we have to ensure the file is clean and any
1079 * cached objects in the address space are invalidated and removed. This
1080 * requires us to lock out other IO and page faults similar to a truncate
1081 * operation. The locks need to be held until the transaction has been committed
1082 * so that the cache invalidation is atomic with respect to the DAX flag
1083 * manipulation.
1084 */
1085static int
1086xfs_ioctl_setattr_dax_invalidate(
1087 struct xfs_inode *ip,
1088 struct fsxattr *fa,
1089 int *join_flags)
1090{
1091 struct inode *inode = VFS_I(ip);
Ross Zwisler6851a3d2017-09-18 14:46:03 -07001092 struct super_block *sb = inode->i_sb;
Dave Chinner3a6a8542016-03-01 09:41:33 +11001093 int error;
1094
1095 *join_flags = 0;
1096
1097 /*
1098 * It is only valid to set the DAX flag on regular files and
Dave Chinner64485432016-03-01 09:41:33 +11001099 * directories on filesystems where the block size is equal to the page
1100 * size. On directories it serves as an inherit hint.
Dave Chinner3a6a8542016-03-01 09:41:33 +11001101 */
Dave Chinner64485432016-03-01 09:41:33 +11001102 if (fa->fsx_xflags & FS_XFLAG_DAX) {
1103 if (!(S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode)))
1104 return -EINVAL;
Ross Zwisler6851a3d2017-09-18 14:46:03 -07001105 if (bdev_dax_supported(sb, sb->s_blocksize) < 0)
Dave Chinner64485432016-03-01 09:41:33 +11001106 return -EINVAL;
1107 }
Dave Chinner3a6a8542016-03-01 09:41:33 +11001108
1109 /* If the DAX state is not changing, we have nothing to do here. */
1110 if ((fa->fsx_xflags & FS_XFLAG_DAX) && IS_DAX(inode))
1111 return 0;
1112 if (!(fa->fsx_xflags & FS_XFLAG_DAX) && !IS_DAX(inode))
1113 return 0;
1114
1115 /* lock, flush and invalidate mapping in preparation for flag change */
1116 xfs_ilock(ip, XFS_MMAPLOCK_EXCL | XFS_IOLOCK_EXCL);
1117 error = filemap_write_and_wait(inode->i_mapping);
1118 if (error)
1119 goto out_unlock;
1120 error = invalidate_inode_pages2(inode->i_mapping);
1121 if (error)
1122 goto out_unlock;
1123
1124 *join_flags = XFS_MMAPLOCK_EXCL | XFS_IOLOCK_EXCL;
1125 return 0;
1126
1127out_unlock:
1128 xfs_iunlock(ip, XFS_MMAPLOCK_EXCL | XFS_IOLOCK_EXCL);
1129 return error;
1130
1131}
1132
1133/*
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001134 * Set up the transaction structure for the setattr operation, checking that we
1135 * have permission to do so. On success, return a clean transaction and the
1136 * inode locked exclusively ready for further operation specific checks. On
1137 * failure, return an error without modifying or locking the inode.
Dave Chinner3a6a8542016-03-01 09:41:33 +11001138 *
1139 * The inode might already be IO locked on call. If this is the case, it is
1140 * indicated in @join_flags and we take full responsibility for ensuring they
1141 * are unlocked from now on. Hence if we have an error here, we still have to
1142 * unlock them. Otherwise, once they are joined to the transaction, they will
1143 * be unlocked on commit/cancel.
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001144 */
1145static struct xfs_trans *
1146xfs_ioctl_setattr_get_trans(
Dave Chinner3a6a8542016-03-01 09:41:33 +11001147 struct xfs_inode *ip,
1148 int join_flags)
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001149{
1150 struct xfs_mount *mp = ip->i_mount;
1151 struct xfs_trans *tp;
Dave Chinner3a6a8542016-03-01 09:41:33 +11001152 int error = -EROFS;
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001153
1154 if (mp->m_flags & XFS_MOUNT_RDONLY)
Dave Chinner3a6a8542016-03-01 09:41:33 +11001155 goto out_unlock;
1156 error = -EIO;
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001157 if (XFS_FORCED_SHUTDOWN(mp))
Dave Chinner3a6a8542016-03-01 09:41:33 +11001158 goto out_unlock;
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001159
Christoph Hellwig253f4912016-04-06 09:19:55 +10001160 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_ichange, 0, 0, 0, &tp);
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001161 if (error)
Christoph Hellwig253f4912016-04-06 09:19:55 +10001162 return ERR_PTR(error);
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001163
1164 xfs_ilock(ip, XFS_ILOCK_EXCL);
Dave Chinner3a6a8542016-03-01 09:41:33 +11001165 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL | join_flags);
1166 join_flags = 0;
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001167
1168 /*
1169 * CAP_FOWNER overrides the following restrictions:
1170 *
1171 * The user ID of the calling process must be equal to the file owner
1172 * ID, except in cases where the CAP_FSETID capability is applicable.
1173 */
1174 if (!inode_owner_or_capable(VFS_I(ip))) {
1175 error = -EPERM;
1176 goto out_cancel;
1177 }
1178
1179 if (mp->m_flags & XFS_MOUNT_WSYNC)
1180 xfs_trans_set_sync(tp);
1181
1182 return tp;
1183
1184out_cancel:
Christoph Hellwig4906e212015-06-04 13:47:56 +10001185 xfs_trans_cancel(tp);
Dave Chinner3a6a8542016-03-01 09:41:33 +11001186out_unlock:
1187 if (join_flags)
1188 xfs_iunlock(ip, join_flags);
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001189 return ERR_PTR(error);
1190}
1191
Iustin Pop9b94fcc2015-02-02 10:26:26 +11001192/*
1193 * extent size hint validation is somewhat cumbersome. Rules are:
1194 *
1195 * 1. extent size hint is only valid for directories and regular files
Dave Chinnere7b89482016-01-04 16:44:15 +11001196 * 2. FS_XFLAG_EXTSIZE is only valid for regular files
1197 * 3. FS_XFLAG_EXTSZINHERIT is only valid for directories.
Iustin Pop9b94fcc2015-02-02 10:26:26 +11001198 * 4. can only be changed on regular files if no extents are allocated
1199 * 5. can be changed on directories at any time
1200 * 6. extsize hint of 0 turns off hints, clears inode flags.
1201 * 7. Extent size must be a multiple of the appropriate block size.
1202 * 8. for non-realtime files, the extent size hint must be limited
1203 * to half the AG size to avoid alignment extending the extent beyond the
1204 * limits of the AG.
Darrick J. Wong80e4e122017-10-17 21:37:42 -07001205 *
1206 * Please keep this function in sync with xfs_scrub_inode_extsize.
Iustin Pop9b94fcc2015-02-02 10:26:26 +11001207 */
kbuild test robotf92090e2015-02-05 11:13:21 +11001208static int
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001209xfs_ioctl_setattr_check_extsize(
1210 struct xfs_inode *ip,
1211 struct fsxattr *fa)
1212{
1213 struct xfs_mount *mp = ip->i_mount;
1214
Dave Chinnerc19b3b052016-02-09 16:54:58 +11001215 if ((fa->fsx_xflags & FS_XFLAG_EXTSIZE) && !S_ISREG(VFS_I(ip)->i_mode))
Iustin Pop9b94fcc2015-02-02 10:26:26 +11001216 return -EINVAL;
1217
Dave Chinnere7b89482016-01-04 16:44:15 +11001218 if ((fa->fsx_xflags & FS_XFLAG_EXTSZINHERIT) &&
Dave Chinnerc19b3b052016-02-09 16:54:58 +11001219 !S_ISDIR(VFS_I(ip)->i_mode))
Iustin Pop9b94fcc2015-02-02 10:26:26 +11001220 return -EINVAL;
1221
Dave Chinnerc19b3b052016-02-09 16:54:58 +11001222 if (S_ISREG(VFS_I(ip)->i_mode) && ip->i_d.di_nextents &&
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001223 ((ip->i_d.di_extsize << mp->m_sb.sb_blocklog) != fa->fsx_extsize))
1224 return -EINVAL;
1225
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001226 if (fa->fsx_extsize != 0) {
1227 xfs_extlen_t size;
1228 xfs_fsblock_t extsize_fsb;
1229
1230 extsize_fsb = XFS_B_TO_FSB(mp, fa->fsx_extsize);
1231 if (extsize_fsb > MAXEXTLEN)
1232 return -EINVAL;
1233
1234 if (XFS_IS_REALTIME_INODE(ip) ||
Dave Chinnere7b89482016-01-04 16:44:15 +11001235 (fa->fsx_xflags & FS_XFLAG_REALTIME)) {
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001236 size = mp->m_sb.sb_rextsize << mp->m_sb.sb_blocklog;
1237 } else {
1238 size = mp->m_sb.sb_blocksize;
1239 if (extsize_fsb > mp->m_sb.sb_agblocks / 2)
1240 return -EINVAL;
1241 }
1242
1243 if (fa->fsx_extsize % size)
1244 return -EINVAL;
Iustin Pop9b94fcc2015-02-02 10:26:26 +11001245 } else
Dave Chinnere7b89482016-01-04 16:44:15 +11001246 fa->fsx_xflags &= ~(FS_XFLAG_EXTSIZE | FS_XFLAG_EXTSZINHERIT);
Iustin Pop9b94fcc2015-02-02 10:26:26 +11001247
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001248 return 0;
1249}
1250
Darrick J. Wongf7ca3522016-10-03 09:11:43 -07001251/*
1252 * CoW extent size hint validation rules are:
1253 *
1254 * 1. CoW extent size hint can only be set if reflink is enabled on the fs.
1255 * The inode does not have to have any shared blocks, but it must be a v3.
1256 * 2. FS_XFLAG_COWEXTSIZE is only valid for directories and regular files;
1257 * for a directory, the hint is propagated to new files.
1258 * 3. Can be changed on files & directories at any time.
1259 * 4. CoW extsize hint of 0 turns off hints, clears inode flags.
1260 * 5. Extent size must be a multiple of the appropriate block size.
1261 * 6. The extent size hint must be limited to half the AG size to avoid
1262 * alignment extending the extent beyond the limits of the AG.
Darrick J. Wong80e4e122017-10-17 21:37:42 -07001263 *
1264 * Please keep this function in sync with xfs_scrub_inode_cowextsize.
Darrick J. Wongf7ca3522016-10-03 09:11:43 -07001265 */
1266static int
1267xfs_ioctl_setattr_check_cowextsize(
1268 struct xfs_inode *ip,
1269 struct fsxattr *fa)
1270{
1271 struct xfs_mount *mp = ip->i_mount;
1272
1273 if (!(fa->fsx_xflags & FS_XFLAG_COWEXTSIZE))
1274 return 0;
1275
1276 if (!xfs_sb_version_hasreflink(&ip->i_mount->m_sb) ||
1277 ip->i_d.di_version != 3)
1278 return -EINVAL;
1279
1280 if (!S_ISREG(VFS_I(ip)->i_mode) && !S_ISDIR(VFS_I(ip)->i_mode))
1281 return -EINVAL;
1282
1283 if (fa->fsx_cowextsize != 0) {
1284 xfs_extlen_t size;
1285 xfs_fsblock_t cowextsize_fsb;
1286
1287 cowextsize_fsb = XFS_B_TO_FSB(mp, fa->fsx_cowextsize);
1288 if (cowextsize_fsb > MAXEXTLEN)
1289 return -EINVAL;
1290
1291 size = mp->m_sb.sb_blocksize;
1292 if (cowextsize_fsb > mp->m_sb.sb_agblocks / 2)
1293 return -EINVAL;
1294
1295 if (fa->fsx_cowextsize % size)
1296 return -EINVAL;
1297 } else
1298 fa->fsx_xflags &= ~FS_XFLAG_COWEXTSIZE;
1299
1300 return 0;
1301}
1302
kbuild test robotf92090e2015-02-05 11:13:21 +11001303static int
Dave Chinner23bd0732015-02-02 10:22:53 +11001304xfs_ioctl_setattr_check_projid(
1305 struct xfs_inode *ip,
1306 struct fsxattr *fa)
1307{
1308 /* Disallow 32bit project ids if projid32bit feature is not enabled. */
Darrick J. Wongc8ce5402017-06-16 11:00:05 -07001309 if (fa->fsx_projid > (uint16_t)-1 &&
Dave Chinner23bd0732015-02-02 10:22:53 +11001310 !xfs_sb_version_hasprojid32bit(&ip->i_mount->m_sb))
1311 return -EINVAL;
1312
1313 /*
1314 * Project Quota ID state is only allowed to change from within the init
1315 * namespace. Enforce that restriction only if we are trying to change
1316 * the quota ID state. Everything else is allowed in user namespaces.
1317 */
1318 if (current_user_ns() == &init_user_ns)
1319 return 0;
1320
1321 if (xfs_get_projid(ip) != fa->fsx_projid)
1322 return -EINVAL;
Dave Chinnere7b89482016-01-04 16:44:15 +11001323 if ((fa->fsx_xflags & FS_XFLAG_PROJINHERIT) !=
Dave Chinner23bd0732015-02-02 10:22:53 +11001324 (ip->i_d.di_flags & XFS_DIFLAG_PROJINHERIT))
1325 return -EINVAL;
1326
1327 return 0;
1328}
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001329
1330STATIC int
1331xfs_ioctl_setattr(
1332 xfs_inode_t *ip,
Dave Chinnerfd179b92015-02-02 10:16:25 +11001333 struct fsxattr *fa)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001334{
1335 struct xfs_mount *mp = ip->i_mount;
1336 struct xfs_trans *tp;
Christoph Hellwig7d095252009-06-08 15:33:32 +02001337 struct xfs_dquot *udqp = NULL;
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001338 struct xfs_dquot *pdqp = NULL;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001339 struct xfs_dquot *olddquot = NULL;
1340 int code;
Dave Chinner3a6a8542016-03-01 09:41:33 +11001341 int join_flags = 0;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001342
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001343 trace_xfs_ioctl_setattr(ip);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001344
Dave Chinner23bd0732015-02-02 10:22:53 +11001345 code = xfs_ioctl_setattr_check_projid(ip, fa);
1346 if (code)
1347 return code;
Arkadiusz Mi?kiewicz23963e542010-08-26 10:19:43 +00001348
1349 /*
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001350 * If disk quotas is on, we make sure that the dquots do exist on disk,
1351 * before we start any other transactions. Trying to do this later
1352 * is messy. We don't care to take a readlock to look at the ids
1353 * in inode here, because we can't hold it across the trans_reserve.
1354 * If the IDs do change before we take the ilock, we're covered
1355 * because the i_*dquot fields will get updated anyway.
1356 */
Dave Chinnerfd179b92015-02-02 10:16:25 +11001357 if (XFS_IS_QUOTA_ON(mp)) {
Christoph Hellwig7d095252009-06-08 15:33:32 +02001358 code = xfs_qm_vop_dqalloc(ip, ip->i_d.di_uid,
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001359 ip->i_d.di_gid, fa->fsx_projid,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001360 XFS_QMOPT_PQUOTA, &udqp, NULL, &pdqp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001361 if (code)
1362 return code;
1363 }
1364
Dave Chinner3a6a8542016-03-01 09:41:33 +11001365 /*
1366 * Changing DAX config may require inode locking for mapping
1367 * invalidation. These need to be held all the way to transaction commit
1368 * or cancel time, so need to be passed through to
1369 * xfs_ioctl_setattr_get_trans() so it can apply them to the join call
1370 * appropriately.
1371 */
1372 code = xfs_ioctl_setattr_dax_invalidate(ip, fa, &join_flags);
1373 if (code)
1374 goto error_free_dquots;
1375
1376 tp = xfs_ioctl_setattr_get_trans(ip, join_flags);
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001377 if (IS_ERR(tp)) {
1378 code = PTR_ERR(tp);
1379 goto error_free_dquots;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001380 }
1381
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001382
Dave Chinnerfd179b92015-02-02 10:16:25 +11001383 if (XFS_IS_QUOTA_RUNNING(mp) && XFS_IS_PQUOTA_ON(mp) &&
1384 xfs_get_projid(ip) != fa->fsx_projid) {
1385 code = xfs_qm_vop_chown_reserve(tp, ip, udqp, NULL, pdqp,
1386 capable(CAP_FOWNER) ? XFS_QMOPT_FORCE_RES : 0);
1387 if (code) /* out of quota */
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001388 goto error_trans_cancel;
Dave Chinnerfd179b92015-02-02 10:16:25 +11001389 }
1390
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001391 code = xfs_ioctl_setattr_check_extsize(ip, fa);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001392 if (code)
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001393 goto error_trans_cancel;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001394
Darrick J. Wongf7ca3522016-10-03 09:11:43 -07001395 code = xfs_ioctl_setattr_check_cowextsize(ip, fa);
1396 if (code)
1397 goto error_trans_cancel;
1398
Dave Chinner29a17c02015-02-02 10:14:25 +11001399 code = xfs_ioctl_setattr_xflags(tp, ip, fa);
1400 if (code)
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001401 goto error_trans_cancel;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001402
1403 /*
Dave Chinnerfd179b92015-02-02 10:16:25 +11001404 * Change file ownership. Must be the owner or privileged. CAP_FSETID
1405 * overrides the following restrictions:
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001406 *
Dave Chinnerfd179b92015-02-02 10:16:25 +11001407 * The set-user-ID and set-group-ID bits of a file will be cleared upon
1408 * successful return from chown()
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001409 */
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001410
Dave Chinnerc19b3b052016-02-09 16:54:58 +11001411 if ((VFS_I(ip)->i_mode & (S_ISUID|S_ISGID)) &&
Dave Chinnerfd179b92015-02-02 10:16:25 +11001412 !capable_wrt_inode_uidgid(VFS_I(ip), CAP_FSETID))
Dave Chinnerc19b3b052016-02-09 16:54:58 +11001413 VFS_I(ip)->i_mode &= ~(S_ISUID|S_ISGID);
Dave Chinnerfd179b92015-02-02 10:16:25 +11001414
1415 /* Change the ownerships and register project quota modifications */
1416 if (xfs_get_projid(ip) != fa->fsx_projid) {
1417 if (XFS_IS_QUOTA_RUNNING(mp) && XFS_IS_PQUOTA_ON(mp)) {
1418 olddquot = xfs_qm_vop_chown(tp, ip,
1419 &ip->i_pdquot, pdqp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001420 }
Dave Chinnerfd179b92015-02-02 10:16:25 +11001421 ASSERT(ip->i_d.di_version > 1);
1422 xfs_set_projid(ip, fa->fsx_projid);
Christoph Hellwigf13fae22008-07-21 16:16:15 +10001423 }
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001424
Dave Chinnera8727032014-10-02 09:20:30 +10001425 /*
1426 * Only set the extent size hint if we've already determined that the
1427 * extent size hint should be set on the inode. If no extent size flags
1428 * are set on the inode then unconditionally clear the extent size hint.
1429 */
Dave Chinnerfd179b92015-02-02 10:16:25 +11001430 if (ip->i_d.di_flags & (XFS_DIFLAG_EXTSIZE | XFS_DIFLAG_EXTSZINHERIT))
1431 ip->i_d.di_extsize = fa->fsx_extsize >> mp->m_sb.sb_blocklog;
1432 else
1433 ip->i_d.di_extsize = 0;
Darrick J. Wongf7ca3522016-10-03 09:11:43 -07001434 if (ip->i_d.di_version == 3 &&
1435 (ip->i_d.di_flags2 & XFS_DIFLAG2_COWEXTSIZE))
1436 ip->i_d.di_cowextsize = fa->fsx_cowextsize >>
1437 mp->m_sb.sb_blocklog;
1438 else
1439 ip->i_d.di_cowextsize = 0;
Dave Chinnera8727032014-10-02 09:20:30 +10001440
Christoph Hellwig70393312015-06-04 13:48:08 +10001441 code = xfs_trans_commit(tp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001442
1443 /*
1444 * Release any dquot(s) the inode had kept before chown.
1445 */
Christoph Hellwig7d095252009-06-08 15:33:32 +02001446 xfs_qm_dqrele(olddquot);
1447 xfs_qm_dqrele(udqp);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001448 xfs_qm_dqrele(pdqp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001449
Christoph Hellwig288699f2010-06-23 18:11:15 +10001450 return code;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001451
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001452error_trans_cancel:
Christoph Hellwig4906e212015-06-04 13:47:56 +10001453 xfs_trans_cancel(tp);
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001454error_free_dquots:
Christoph Hellwig7d095252009-06-08 15:33:32 +02001455 xfs_qm_dqrele(udqp);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001456 xfs_qm_dqrele(pdqp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001457 return code;
1458}
1459
Christoph Hellwigc83bfab2007-10-11 17:47:00 +10001460STATIC int
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001461xfs_ioc_fssetxattr(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 xfs_inode_t *ip,
1463 struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 void __user *arg)
1465{
1466 struct fsxattr fa;
Jan Karad9457dc2012-06-12 16:20:39 +02001467 int error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001468
1469 if (copy_from_user(&fa, arg, sizeof(fa)))
1470 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471
Jan Karad9457dc2012-06-12 16:20:39 +02001472 error = mnt_want_write_file(filp);
1473 if (error)
1474 return error;
Dave Chinnerfd179b92015-02-02 10:16:25 +11001475 error = xfs_ioctl_setattr(ip, &fa);
Jan Karad9457dc2012-06-12 16:20:39 +02001476 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10001477 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001478}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001480STATIC int
1481xfs_ioc_getxflags(
1482 xfs_inode_t *ip,
1483 void __user *arg)
1484{
1485 unsigned int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001487 flags = xfs_di2lxflags(ip->i_d.di_flags);
1488 if (copy_to_user(arg, &flags, sizeof(flags)))
1489 return -EFAULT;
1490 return 0;
1491}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001493STATIC int
1494xfs_ioc_setxflags(
Dave Chinnerf96291f2015-02-02 10:15:56 +11001495 struct xfs_inode *ip,
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001496 struct file *filp,
1497 void __user *arg)
1498{
Dave Chinnerf96291f2015-02-02 10:15:56 +11001499 struct xfs_trans *tp;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001500 struct fsxattr fa;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001501 unsigned int flags;
Dave Chinner3a6a8542016-03-01 09:41:33 +11001502 int join_flags = 0;
Dave Chinnerf96291f2015-02-02 10:15:56 +11001503 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001505 if (copy_from_user(&flags, arg, sizeof(flags)))
1506 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001508 if (flags & ~(FS_IMMUTABLE_FL | FS_APPEND_FL | \
1509 FS_NOATIME_FL | FS_NODUMP_FL | \
1510 FS_SYNC_FL))
1511 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001513 fa.fsx_xflags = xfs_merge_ioc_xflags(flags, xfs_ip2xflags(ip));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514
Jan Karad9457dc2012-06-12 16:20:39 +02001515 error = mnt_want_write_file(filp);
1516 if (error)
1517 return error;
Dave Chinnerf96291f2015-02-02 10:15:56 +11001518
Dave Chinner3a6a8542016-03-01 09:41:33 +11001519 /*
1520 * Changing DAX config may require inode locking for mapping
1521 * invalidation. These need to be held all the way to transaction commit
1522 * or cancel time, so need to be passed through to
1523 * xfs_ioctl_setattr_get_trans() so it can apply them to the join call
1524 * appropriately.
1525 */
1526 error = xfs_ioctl_setattr_dax_invalidate(ip, &fa, &join_flags);
1527 if (error)
1528 goto out_drop_write;
1529
1530 tp = xfs_ioctl_setattr_get_trans(ip, join_flags);
Dave Chinnerf96291f2015-02-02 10:15:56 +11001531 if (IS_ERR(tp)) {
1532 error = PTR_ERR(tp);
1533 goto out_drop_write;
1534 }
1535
1536 error = xfs_ioctl_setattr_xflags(tp, ip, &fa);
1537 if (error) {
Christoph Hellwig4906e212015-06-04 13:47:56 +10001538 xfs_trans_cancel(tp);
Dave Chinnerf96291f2015-02-02 10:15:56 +11001539 goto out_drop_write;
1540 }
1541
Christoph Hellwig70393312015-06-04 13:48:08 +10001542 error = xfs_trans_commit(tp);
Dave Chinnerf96291f2015-02-02 10:15:56 +11001543out_drop_write:
Jan Karad9457dc2012-06-12 16:20:39 +02001544 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10001545 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546}
1547
Christoph Hellwig232b51942017-10-17 14:16:19 -07001548static bool
1549xfs_getbmap_format(
1550 struct kgetbmap *p,
1551 struct getbmapx __user *u,
1552 size_t recsize)
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001553{
Christoph Hellwig232b51942017-10-17 14:16:19 -07001554 if (put_user(p->bmv_offset, &u->bmv_offset) ||
1555 put_user(p->bmv_block, &u->bmv_block) ||
1556 put_user(p->bmv_length, &u->bmv_length) ||
1557 put_user(0, &u->bmv_count) ||
1558 put_user(0, &u->bmv_entries))
1559 return false;
1560 if (recsize < sizeof(struct getbmapx))
1561 return true;
1562 if (put_user(0, &u->bmv_iflags) ||
1563 put_user(p->bmv_oflags, &u->bmv_oflags) ||
1564 put_user(0, &u->bmv_unused1) ||
1565 put_user(0, &u->bmv_unused2))
1566 return false;
1567 return true;
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001568}
1569
1570STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571xfs_ioc_getbmap(
Christoph Hellwig8f3e2052016-07-20 11:29:35 +10001572 struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 unsigned int cmd,
1574 void __user *arg)
1575{
Darrick J. Wongbe6324c2017-04-03 15:17:57 -07001576 struct getbmapx bmx = { 0 };
Christoph Hellwig232b51942017-10-17 14:16:19 -07001577 struct kgetbmap *buf;
1578 size_t recsize;
1579 int error, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580
Christoph Hellwig232b51942017-10-17 14:16:19 -07001581 switch (cmd) {
1582 case XFS_IOC_GETBMAPA:
1583 bmx.bmv_iflags = BMV_IF_ATTRFORK;
1584 /*FALLTHRU*/
1585 case XFS_IOC_GETBMAP:
1586 if (file->f_mode & FMODE_NOCMTIME)
1587 bmx.bmv_iflags |= BMV_IF_NO_DMAPI_READ;
1588 /* struct getbmap is a strict subset of struct getbmapx. */
1589 recsize = sizeof(struct getbmap);
1590 break;
1591 case XFS_IOC_GETBMAPX:
1592 recsize = sizeof(struct getbmapx);
1593 break;
1594 default:
1595 return -EINVAL;
1596 }
1597
1598 if (copy_from_user(&bmx, arg, recsize))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001599 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001601 if (bmx.bmv_count < 2)
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001602 return -EINVAL;
Christoph Hellwig232b51942017-10-17 14:16:19 -07001603 if (bmx.bmv_count > ULONG_MAX / recsize)
1604 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605
Christoph Hellwig232b51942017-10-17 14:16:19 -07001606 buf = kmem_zalloc_large(bmx.bmv_count * sizeof(*buf), 0);
1607 if (!buf)
1608 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609
Christoph Hellwig232b51942017-10-17 14:16:19 -07001610 error = xfs_getbmap(XFS_I(file_inode(file)), &bmx, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 if (error)
Christoph Hellwig232b51942017-10-17 14:16:19 -07001612 goto out_free_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613
Christoph Hellwig232b51942017-10-17 14:16:19 -07001614 error = -EFAULT;
1615 if (copy_to_user(arg, &bmx, recsize))
1616 goto out_free_buf;
1617 arg += recsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618
Christoph Hellwig232b51942017-10-17 14:16:19 -07001619 for (i = 0; i < bmx.bmv_entries; i++) {
1620 if (!xfs_getbmap_format(buf + i, arg, recsize))
1621 goto out_free_buf;
1622 arg += recsize;
1623 }
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001624
Christoph Hellwig232b51942017-10-17 14:16:19 -07001625 error = 0;
1626out_free_buf:
1627 kmem_free(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 return 0;
1629}
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001630
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001631struct getfsmap_info {
1632 struct xfs_mount *mp;
Christoph Hellwig9d17e142017-04-21 11:24:41 -07001633 struct fsmap_head __user *data;
1634 unsigned int idx;
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001635 __u32 last_flags;
1636};
1637
1638STATIC int
1639xfs_getfsmap_format(struct xfs_fsmap *xfm, void *priv)
1640{
1641 struct getfsmap_info *info = priv;
1642 struct fsmap fm;
1643
1644 trace_xfs_getfsmap_mapping(info->mp, xfm);
1645
1646 info->last_flags = xfm->fmr_flags;
1647 xfs_fsmap_from_internal(&fm, xfm);
Christoph Hellwig9d17e142017-04-21 11:24:41 -07001648 if (copy_to_user(&info->data->fmh_recs[info->idx++], &fm,
1649 sizeof(struct fsmap)))
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001650 return -EFAULT;
1651
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001652 return 0;
1653}
1654
1655STATIC int
1656xfs_ioc_getfsmap(
1657 struct xfs_inode *ip,
Christoph Hellwig9d17e142017-04-21 11:24:41 -07001658 struct fsmap_head __user *arg)
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001659{
Christoph Hellwigef2b67e2017-04-21 11:24:40 -07001660 struct getfsmap_info info = { NULL };
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001661 struct xfs_fsmap_head xhead = {0};
1662 struct fsmap_head head;
1663 bool aborted = false;
1664 int error;
1665
1666 if (copy_from_user(&head, arg, sizeof(struct fsmap_head)))
1667 return -EFAULT;
1668 if (memchr_inv(head.fmh_reserved, 0, sizeof(head.fmh_reserved)) ||
1669 memchr_inv(head.fmh_keys[0].fmr_reserved, 0,
1670 sizeof(head.fmh_keys[0].fmr_reserved)) ||
1671 memchr_inv(head.fmh_keys[1].fmr_reserved, 0,
1672 sizeof(head.fmh_keys[1].fmr_reserved)))
1673 return -EINVAL;
1674
1675 xhead.fmh_iflags = head.fmh_iflags;
1676 xhead.fmh_count = head.fmh_count;
1677 xfs_fsmap_to_internal(&xhead.fmh_keys[0], &head.fmh_keys[0]);
1678 xfs_fsmap_to_internal(&xhead.fmh_keys[1], &head.fmh_keys[1]);
1679
1680 trace_xfs_getfsmap_low_key(ip->i_mount, &xhead.fmh_keys[0]);
1681 trace_xfs_getfsmap_high_key(ip->i_mount, &xhead.fmh_keys[1]);
1682
1683 info.mp = ip->i_mount;
Christoph Hellwig9d17e142017-04-21 11:24:41 -07001684 info.data = arg;
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001685 error = xfs_getfsmap(ip->i_mount, &xhead, xfs_getfsmap_format, &info);
1686 if (error == XFS_BTREE_QUERY_RANGE_ABORT) {
1687 error = 0;
1688 aborted = true;
1689 } else if (error)
1690 return error;
1691
1692 /* If we didn't abort, set the "last" flag in the last fmx */
Darrick J. Wong12e4a382017-04-23 10:45:21 -07001693 if (!aborted && info.idx) {
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001694 info.last_flags |= FMR_OF_LAST;
Christoph Hellwig9d17e142017-04-21 11:24:41 -07001695 if (copy_to_user(&info.data->fmh_recs[info.idx - 1].fmr_flags,
1696 &info.last_flags, sizeof(info.last_flags)))
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001697 return -EFAULT;
1698 }
1699
1700 /* copy back header */
1701 head.fmh_entries = xhead.fmh_entries;
1702 head.fmh_oflags = xhead.fmh_oflags;
1703 if (copy_to_user(arg, &head, sizeof(struct fsmap_head)))
1704 return -EFAULT;
1705
1706 return 0;
1707}
1708
Darrick J. Wong36fd6e82017-10-17 21:37:34 -07001709STATIC int
1710xfs_ioc_scrub_metadata(
1711 struct xfs_inode *ip,
1712 void __user *arg)
1713{
1714 struct xfs_scrub_metadata scrub;
1715 int error;
1716
1717 if (!capable(CAP_SYS_ADMIN))
1718 return -EPERM;
1719
1720 if (copy_from_user(&scrub, arg, sizeof(scrub)))
1721 return -EFAULT;
1722
1723 error = xfs_scrub_metadata(ip, &scrub);
1724 if (error)
1725 return error;
1726
1727 if (copy_to_user(arg, &scrub, sizeof(scrub)))
1728 return -EFAULT;
1729
1730 return 0;
1731}
1732
Dave Chinnera133d952013-08-12 20:49:48 +10001733int
1734xfs_ioc_swapext(
1735 xfs_swapext_t *sxp)
1736{
1737 xfs_inode_t *ip, *tip;
1738 struct fd f, tmp;
1739 int error = 0;
1740
1741 /* Pull information for the target fd */
1742 f = fdget((int)sxp->sx_fdtarget);
1743 if (!f.file) {
Dave Chinner24513372014-06-25 14:58:08 +10001744 error = -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001745 goto out;
1746 }
1747
1748 if (!(f.file->f_mode & FMODE_WRITE) ||
1749 !(f.file->f_mode & FMODE_READ) ||
1750 (f.file->f_flags & O_APPEND)) {
Dave Chinner24513372014-06-25 14:58:08 +10001751 error = -EBADF;
Dave Chinnera133d952013-08-12 20:49:48 +10001752 goto out_put_file;
1753 }
1754
1755 tmp = fdget((int)sxp->sx_fdtmp);
1756 if (!tmp.file) {
Dave Chinner24513372014-06-25 14:58:08 +10001757 error = -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001758 goto out_put_file;
1759 }
1760
1761 if (!(tmp.file->f_mode & FMODE_WRITE) ||
1762 !(tmp.file->f_mode & FMODE_READ) ||
1763 (tmp.file->f_flags & O_APPEND)) {
Dave Chinner24513372014-06-25 14:58:08 +10001764 error = -EBADF;
Dave Chinnera133d952013-08-12 20:49:48 +10001765 goto out_put_tmp_file;
1766 }
1767
1768 if (IS_SWAPFILE(file_inode(f.file)) ||
1769 IS_SWAPFILE(file_inode(tmp.file))) {
Dave Chinner24513372014-06-25 14:58:08 +10001770 error = -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001771 goto out_put_tmp_file;
1772 }
1773
Jann Horn7f1b6242016-07-20 10:30:30 +10001774 /*
1775 * We need to ensure that the fds passed in point to XFS inodes
1776 * before we cast and access them as XFS structures as we have no
1777 * control over what the user passes us here.
1778 */
1779 if (f.file->f_op != &xfs_file_operations ||
1780 tmp.file->f_op != &xfs_file_operations) {
1781 error = -EINVAL;
1782 goto out_put_tmp_file;
1783 }
1784
Dave Chinnera133d952013-08-12 20:49:48 +10001785 ip = XFS_I(file_inode(f.file));
1786 tip = XFS_I(file_inode(tmp.file));
1787
1788 if (ip->i_mount != tip->i_mount) {
Dave Chinner24513372014-06-25 14:58:08 +10001789 error = -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001790 goto out_put_tmp_file;
1791 }
1792
1793 if (ip->i_ino == tip->i_ino) {
Dave Chinner24513372014-06-25 14:58:08 +10001794 error = -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001795 goto out_put_tmp_file;
1796 }
1797
1798 if (XFS_FORCED_SHUTDOWN(ip->i_mount)) {
Dave Chinner24513372014-06-25 14:58:08 +10001799 error = -EIO;
Dave Chinnera133d952013-08-12 20:49:48 +10001800 goto out_put_tmp_file;
1801 }
1802
1803 error = xfs_swap_extents(ip, tip, sxp);
1804
1805 out_put_tmp_file:
1806 fdput(tmp);
1807 out_put_file:
1808 fdput(f);
1809 out:
1810 return error;
1811}
1812
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001813/*
1814 * Note: some of the ioctl's return positive numbers as a
1815 * byte count indicating success, such as readlink_by_handle.
1816 * So we don't "sign flip" like most other routines. This means
1817 * true errors need to be returned as a negative value.
1818 */
1819long
1820xfs_file_ioctl(
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001821 struct file *filp,
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001822 unsigned int cmd,
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001823 unsigned long p)
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001824{
Al Viro496ad9a2013-01-23 17:07:38 -05001825 struct inode *inode = file_inode(filp);
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001826 struct xfs_inode *ip = XFS_I(inode);
1827 struct xfs_mount *mp = ip->i_mount;
1828 void __user *arg = (void __user *)p;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001829 int error;
1830
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001831 trace_xfs_file_ioctl(ip);
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001832
1833 switch (cmd) {
Christoph Hellwiga46db602011-01-07 13:02:04 +00001834 case FITRIM:
1835 return xfs_ioc_trim(mp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001836 case XFS_IOC_ALLOCSP:
1837 case XFS_IOC_FREESP:
1838 case XFS_IOC_RESVSP:
1839 case XFS_IOC_UNRESVSP:
1840 case XFS_IOC_ALLOCSP64:
1841 case XFS_IOC_FREESP64:
1842 case XFS_IOC_RESVSP64:
Dave Chinner44722352010-08-24 12:02:11 +10001843 case XFS_IOC_UNRESVSP64:
1844 case XFS_IOC_ZERO_RANGE: {
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001845 xfs_flock64_t bf;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001846
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001847 if (copy_from_user(&bf, arg, sizeof(bf)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001848 return -EFAULT;
Christoph Hellwig8f3e2052016-07-20 11:29:35 +10001849 return xfs_ioc_space(filp, cmd, &bf);
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001850 }
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001851 case XFS_IOC_DIOINFO: {
1852 struct dioattr da;
1853 xfs_buftarg_t *target =
1854 XFS_IS_REALTIME_INODE(ip) ?
1855 mp->m_rtdev_targp : mp->m_ddev_targp;
1856
Eric Sandeen7c71ee72014-01-21 16:46:23 -06001857 da.d_mem = da.d_miniosz = target->bt_logical_sectorsize;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001858 da.d_maxiosz = INT_MAX & ~(da.d_miniosz - 1);
1859
1860 if (copy_to_user(arg, &da, sizeof(da)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001861 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001862 return 0;
1863 }
1864
1865 case XFS_IOC_FSBULKSTAT_SINGLE:
1866 case XFS_IOC_FSBULKSTAT:
1867 case XFS_IOC_FSINUMBERS:
1868 return xfs_ioc_bulkstat(mp, cmd, arg);
1869
1870 case XFS_IOC_FSGEOMETRY_V1:
1871 return xfs_ioc_fsgeometry_v1(mp, arg);
1872
1873 case XFS_IOC_FSGEOMETRY:
1874 return xfs_ioc_fsgeometry(mp, arg);
1875
1876 case XFS_IOC_GETVERSION:
1877 return put_user(inode->i_generation, (int __user *)arg);
1878
1879 case XFS_IOC_FSGETXATTR:
1880 return xfs_ioc_fsgetxattr(ip, 0, arg);
1881 case XFS_IOC_FSGETXATTRA:
1882 return xfs_ioc_fsgetxattr(ip, 1, arg);
Lachlan McIlroy3b2816b2008-04-18 12:43:35 +10001883 case XFS_IOC_FSSETXATTR:
Lachlan McIlroy65e67f52008-04-18 12:59:45 +10001884 return xfs_ioc_fssetxattr(ip, filp, arg);
1885 case XFS_IOC_GETXFLAGS:
1886 return xfs_ioc_getxflags(ip, arg);
1887 case XFS_IOC_SETXFLAGS:
1888 return xfs_ioc_setxflags(ip, filp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001889
1890 case XFS_IOC_FSSETDM: {
1891 struct fsdmidata dmi;
1892
1893 if (copy_from_user(&dmi, arg, sizeof(dmi)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001894 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001895
Jan Karad9457dc2012-06-12 16:20:39 +02001896 error = mnt_want_write_file(filp);
1897 if (error)
1898 return error;
1899
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001900 error = xfs_set_dmattrs(ip, dmi.fsd_dmevmask,
1901 dmi.fsd_dmstate);
Jan Karad9457dc2012-06-12 16:20:39 +02001902 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10001903 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001904 }
1905
1906 case XFS_IOC_GETBMAP:
1907 case XFS_IOC_GETBMAPA:
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001908 case XFS_IOC_GETBMAPX:
Christoph Hellwig232b51942017-10-17 14:16:19 -07001909 return xfs_ioc_getbmap(filp, cmd, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001910
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001911 case FS_IOC_GETFSMAP:
1912 return xfs_ioc_getfsmap(ip, arg);
1913
Darrick J. Wong36fd6e82017-10-17 21:37:34 -07001914 case XFS_IOC_SCRUB_METADATA:
1915 return xfs_ioc_scrub_metadata(ip, arg);
1916
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001917 case XFS_IOC_FD_TO_HANDLE:
1918 case XFS_IOC_PATH_TO_HANDLE:
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001919 case XFS_IOC_PATH_TO_FSHANDLE: {
1920 xfs_fsop_handlereq_t hreq;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001921
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001922 if (copy_from_user(&hreq, arg, sizeof(hreq)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001923 return -EFAULT;
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001924 return xfs_find_handle(cmd, &hreq);
1925 }
1926 case XFS_IOC_OPEN_BY_HANDLE: {
1927 xfs_fsop_handlereq_t hreq;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001928
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001929 if (copy_from_user(&hreq, arg, sizeof(xfs_fsop_handlereq_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001930 return -EFAULT;
Christoph Hellwigd296d302009-01-19 02:02:57 +01001931 return xfs_open_by_handle(filp, &hreq);
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001932 }
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001933 case XFS_IOC_FSSETDM_BY_HANDLE:
Christoph Hellwigd296d302009-01-19 02:02:57 +01001934 return xfs_fssetdm_by_handle(filp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001935
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001936 case XFS_IOC_READLINK_BY_HANDLE: {
1937 xfs_fsop_handlereq_t hreq;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001938
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001939 if (copy_from_user(&hreq, arg, sizeof(xfs_fsop_handlereq_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001940 return -EFAULT;
Christoph Hellwigd296d302009-01-19 02:02:57 +01001941 return xfs_readlink_by_handle(filp, &hreq);
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001942 }
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001943 case XFS_IOC_ATTRLIST_BY_HANDLE:
Christoph Hellwigd296d302009-01-19 02:02:57 +01001944 return xfs_attrlist_by_handle(filp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001945
1946 case XFS_IOC_ATTRMULTI_BY_HANDLE:
Christoph Hellwigd296d302009-01-19 02:02:57 +01001947 return xfs_attrmulti_by_handle(filp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001948
1949 case XFS_IOC_SWAPEXT: {
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001950 struct xfs_swapext sxp;
1951
1952 if (copy_from_user(&sxp, arg, sizeof(xfs_swapext_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001953 return -EFAULT;
Jan Karad9457dc2012-06-12 16:20:39 +02001954 error = mnt_want_write_file(filp);
1955 if (error)
1956 return error;
Dave Chinnera133d952013-08-12 20:49:48 +10001957 error = xfs_ioc_swapext(&sxp);
Jan Karad9457dc2012-06-12 16:20:39 +02001958 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10001959 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001960 }
1961
1962 case XFS_IOC_FSCOUNTS: {
1963 xfs_fsop_counts_t out;
1964
1965 error = xfs_fs_counts(mp, &out);
1966 if (error)
Dave Chinner24513372014-06-25 14:58:08 +10001967 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001968
1969 if (copy_to_user(arg, &out, sizeof(out)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001970 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001971 return 0;
1972 }
1973
1974 case XFS_IOC_SET_RESBLKS: {
1975 xfs_fsop_resblks_t inout;
Darrick J. Wongc8ce5402017-06-16 11:00:05 -07001976 uint64_t in;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001977
1978 if (!capable(CAP_SYS_ADMIN))
1979 return -EPERM;
1980
Eric Sandeend5db0f92010-02-05 22:59:53 +00001981 if (mp->m_flags & XFS_MOUNT_RDONLY)
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001982 return -EROFS;
Eric Sandeend5db0f92010-02-05 22:59:53 +00001983
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001984 if (copy_from_user(&inout, arg, sizeof(inout)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001985 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001986
Jan Karad9457dc2012-06-12 16:20:39 +02001987 error = mnt_want_write_file(filp);
1988 if (error)
1989 return error;
1990
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001991 /* input parameter is passed in resblks field of structure */
1992 in = inout.resblks;
1993 error = xfs_reserve_blocks(mp, &in, &inout);
Jan Karad9457dc2012-06-12 16:20:39 +02001994 mnt_drop_write_file(filp);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001995 if (error)
Dave Chinner24513372014-06-25 14:58:08 +10001996 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001997
1998 if (copy_to_user(arg, &inout, sizeof(inout)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001999 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002000 return 0;
2001 }
2002
2003 case XFS_IOC_GET_RESBLKS: {
2004 xfs_fsop_resblks_t out;
2005
2006 if (!capable(CAP_SYS_ADMIN))
2007 return -EPERM;
2008
2009 error = xfs_reserve_blocks(mp, NULL, &out);
2010 if (error)
Dave Chinner24513372014-06-25 14:58:08 +10002011 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002012
2013 if (copy_to_user(arg, &out, sizeof(out)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002014 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002015
2016 return 0;
2017 }
2018
2019 case XFS_IOC_FSGROWFSDATA: {
2020 xfs_growfs_data_t in;
2021
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002022 if (copy_from_user(&in, arg, sizeof(in)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002023 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002024
Jan Karad9457dc2012-06-12 16:20:39 +02002025 error = mnt_want_write_file(filp);
2026 if (error)
2027 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002028 error = xfs_growfs_data(mp, &in);
Jan Karad9457dc2012-06-12 16:20:39 +02002029 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10002030 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002031 }
2032
2033 case XFS_IOC_FSGROWFSLOG: {
2034 xfs_growfs_log_t in;
2035
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002036 if (copy_from_user(&in, arg, sizeof(in)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002037 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002038
Jan Karad9457dc2012-06-12 16:20:39 +02002039 error = mnt_want_write_file(filp);
2040 if (error)
2041 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002042 error = xfs_growfs_log(mp, &in);
Jan Karad9457dc2012-06-12 16:20:39 +02002043 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10002044 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002045 }
2046
2047 case XFS_IOC_FSGROWFSRT: {
2048 xfs_growfs_rt_t in;
2049
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002050 if (copy_from_user(&in, arg, sizeof(in)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002051 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002052
Jan Karad9457dc2012-06-12 16:20:39 +02002053 error = mnt_want_write_file(filp);
2054 if (error)
2055 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002056 error = xfs_growfs_rt(mp, &in);
Jan Karad9457dc2012-06-12 16:20:39 +02002057 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10002058 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002059 }
2060
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002061 case XFS_IOC_GOINGDOWN: {
Darrick J. Wongc8ce5402017-06-16 11:00:05 -07002062 uint32_t in;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002063
2064 if (!capable(CAP_SYS_ADMIN))
2065 return -EPERM;
2066
Darrick J. Wongc8ce5402017-06-16 11:00:05 -07002067 if (get_user(in, (uint32_t __user *)arg))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002068 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002069
Dave Chinner24513372014-06-25 14:58:08 +10002070 return xfs_fs_goingdown(mp, in);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002071 }
2072
2073 case XFS_IOC_ERROR_INJECTION: {
2074 xfs_error_injection_t in;
2075
2076 if (!capable(CAP_SYS_ADMIN))
2077 return -EPERM;
2078
2079 if (copy_from_user(&in, arg, sizeof(in)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002080 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002081
Darrick J. Wong31965ef2017-06-20 17:54:46 -07002082 return xfs_errortag_add(mp, in.errtag);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002083 }
2084
2085 case XFS_IOC_ERROR_CLEARALL:
2086 if (!capable(CAP_SYS_ADMIN))
2087 return -EPERM;
2088
Darrick J. Wong31965ef2017-06-20 17:54:46 -07002089 return xfs_errortag_clearall(mp);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002090
Brian Foster8ca149d2012-11-07 12:21:12 -05002091 case XFS_IOC_FREE_EOFBLOCKS: {
Dwight Engenb9fe5052013-08-15 14:08:02 -04002092 struct xfs_fs_eofblocks eofb;
2093 struct xfs_eofblocks keofb;
Brian Foster8ca149d2012-11-07 12:21:12 -05002094
Dwight Engen8c567a72013-08-15 14:08:03 -04002095 if (!capable(CAP_SYS_ADMIN))
2096 return -EPERM;
2097
2098 if (mp->m_flags & XFS_MOUNT_RDONLY)
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002099 return -EROFS;
Dwight Engen8c567a72013-08-15 14:08:03 -04002100
Brian Foster8ca149d2012-11-07 12:21:12 -05002101 if (copy_from_user(&eofb, arg, sizeof(eofb)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002102 return -EFAULT;
Brian Foster8ca149d2012-11-07 12:21:12 -05002103
Dwight Engenb9fe5052013-08-15 14:08:02 -04002104 error = xfs_fs_eofblocks_from_user(&eofb, &keofb);
2105 if (error)
Dave Chinner24513372014-06-25 14:58:08 +10002106 return error;
Brian Foster8ca149d2012-11-07 12:21:12 -05002107
Dave Chinner24513372014-06-25 14:58:08 +10002108 return xfs_icache_free_eofblocks(mp, &keofb);
Brian Foster8ca149d2012-11-07 12:21:12 -05002109 }
2110
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002111 default:
2112 return -ENOTTY;
2113 }
2114}