blob: 0ef5ece5634c11099d04112359daadb4fdbcab03 [file] [log] [blame]
Dave Chinner0b61f8a2018-06-05 19:42:14 -07001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Nathan Scott7b718762005-11-02 14:58:39 +11003 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
4 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include "xfs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include "xfs_fs.h"
Dave Chinner70a98832013-10-23 10:36:05 +11008#include "xfs_shared.h"
Dave Chinner239880e2013-10-23 10:50:10 +11009#include "xfs_format.h"
10#include "xfs_log_format.h"
11#include "xfs_trans_resv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include "xfs_inode.h"
Hannes Eder7bf446f2009-03-05 15:20:25 +010014#include "xfs_ioctl.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110015#include "xfs_alloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include "xfs_rtalloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include "xfs_itable.h"
Nathan Scotta844f452005-11-02 14:38:42 +110018#include "xfs_error.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include "xfs_attr.h"
Nathan Scotta844f452005-11-02 14:38:42 +110020#include "xfs_bmap.h"
Dave Chinner68988112013-08-12 20:49:42 +100021#include "xfs_bmap_util.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "xfs_fsops.h"
Christoph Hellwiga46db602011-01-07 13:02:04 +000023#include "xfs_discard.h"
Christoph Hellwig25fe55e2008-07-18 17:13:20 +100024#include "xfs_quota.h"
Christoph Hellwigd296d302009-01-19 02:02:57 +010025#include "xfs_export.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000026#include "xfs_trace.h"
Brian Foster8ca149d2012-11-07 12:21:12 -050027#include "xfs_icache.h"
Dave Chinnerc24b5df2013-08-12 20:49:45 +100028#include "xfs_symlink.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110029#include "xfs_trans.h"
Andreas Gruenbacher47e1bf62015-11-03 12:56:17 +110030#include "xfs_acl.h"
Darrick J. Wonge89c0412017-03-28 14:56:37 -070031#include "xfs_btree.h"
32#include <linux/fsmap.h>
33#include "xfs_fsmap.h"
Darrick J. Wong36fd6e82017-10-17 21:37:34 -070034#include "scrub/xfs_scrub.h"
Darrick J. Wongc368ebc2018-01-08 10:51:27 -080035#include "xfs_sb.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080037#include <linux/capability.h>
Ingo Molnar5b825c32017-02-02 17:54:15 +010038#include <linux/cred.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/dcache.h>
40#include <linux/mount.h>
41#include <linux/namei.h>
42#include <linux/pagemap.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090043#include <linux/slab.h>
Christoph Hellwigd296d302009-01-19 02:02:57 +010044#include <linux/exportfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46/*
47 * xfs_find_handle maps from userspace xfs_fsop_handlereq structure to
48 * a file or fs handle.
49 *
50 * XFS_IOC_PATH_TO_FSHANDLE
51 * returns fs handle for a mount point or path within that mount point
52 * XFS_IOC_FD_TO_HANDLE
53 * returns full handle for a FD opened in user space
54 * XFS_IOC_PATH_TO_HANDLE
55 * returns full handle for a path
56 */
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -060057int
Linus Torvalds1da177e2005-04-16 15:20:36 -070058xfs_find_handle(
59 unsigned int cmd,
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -060060 xfs_fsop_handlereq_t *hreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061{
62 int hsize;
63 xfs_handle_t handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 struct inode *inode;
Dave Chinnera30b0362013-09-02 20:49:36 +100065 struct fd f = {NULL};
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010066 struct path path;
Al Viro2903ff02012-08-28 12:52:22 -040067 int error;
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010068 struct xfs_inode *ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010070 if (cmd == XFS_IOC_FD_TO_HANDLE) {
Al Viro2903ff02012-08-28 12:52:22 -040071 f = fdget(hreq->fd);
72 if (!f.file)
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010073 return -EBADF;
Al Viro496ad9a2013-01-23 17:07:38 -050074 inode = file_inode(f.file);
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010075 } else {
76 error = user_lpath((const char __user *)hreq->path, &path);
77 if (error)
78 return error;
David Howells2b0143b2015-03-17 22:25:59 +000079 inode = d_inode(path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 }
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010081 ip = XFS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010083 /*
84 * We can only generate handles for inodes residing on a XFS filesystem,
85 * and only for regular files, directories or symbolic links.
86 */
87 error = -EINVAL;
88 if (inode->i_sb->s_magic != XFS_SB_MAGIC)
89 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010091 error = -EBADF;
92 if (!S_ISREG(inode->i_mode) &&
93 !S_ISDIR(inode->i_mode) &&
94 !S_ISLNK(inode->i_mode))
95 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010098 memcpy(&handle.ha_fsid, ip->i_mount->m_fixedfsid, sizeof(xfs_fsid_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100100 if (cmd == XFS_IOC_PATH_TO_FSHANDLE) {
101 /*
102 * This handle only contains an fsid, zero the rest.
103 */
104 memset(&handle.ha_fid, 0, sizeof(handle.ha_fid));
105 hsize = sizeof(xfs_fsid_t);
106 } else {
Christoph Hellwigc6143912007-09-14 15:22:37 +1000107 handle.ha_fid.fid_len = sizeof(xfs_fid_t) -
108 sizeof(handle.ha_fid.fid_len);
109 handle.ha_fid.fid_pad = 0;
Dave Chinner9e9a2672016-02-09 16:54:58 +1100110 handle.ha_fid.fid_gen = inode->i_generation;
Christoph Hellwigc6143912007-09-14 15:22:37 +1000111 handle.ha_fid.fid_ino = ip->i_ino;
Christoph Hellwig3398a402017-06-14 21:30:44 -0700112 hsize = sizeof(xfs_handle_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 }
114
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100115 error = -EFAULT;
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600116 if (copy_to_user(hreq->ohandle, &handle, hsize) ||
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100117 copy_to_user(hreq->ohandlen, &hsize, sizeof(__s32)))
118 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100120 error = 0;
121
122 out_put:
123 if (cmd == XFS_IOC_FD_TO_HANDLE)
Al Viro2903ff02012-08-28 12:52:22 -0400124 fdput(f);
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100125 else
126 path_put(&path);
127 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128}
129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130/*
Christoph Hellwigd296d302009-01-19 02:02:57 +0100131 * No need to do permission checks on the various pathname components
132 * as the handle operations are privileged.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 */
134STATIC int
Christoph Hellwigd296d302009-01-19 02:02:57 +0100135xfs_handle_acceptable(
136 void *context,
137 struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138{
Christoph Hellwigd296d302009-01-19 02:02:57 +0100139 return 1;
140}
141
142/*
143 * Convert userspace handle data into a dentry.
144 */
145struct dentry *
146xfs_handle_to_dentry(
147 struct file *parfilp,
148 void __user *uhandle,
149 u32 hlen)
150{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 xfs_handle_t handle;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100152 struct xfs_fid64 fid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
154 /*
155 * Only allow handle opens under a directory.
156 */
Al Viro496ad9a2013-01-23 17:07:38 -0500157 if (!S_ISDIR(file_inode(parfilp)->i_mode))
Christoph Hellwigd296d302009-01-19 02:02:57 +0100158 return ERR_PTR(-ENOTDIR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
Christoph Hellwigd296d302009-01-19 02:02:57 +0100160 if (hlen != sizeof(xfs_handle_t))
161 return ERR_PTR(-EINVAL);
162 if (copy_from_user(&handle, uhandle, hlen))
163 return ERR_PTR(-EFAULT);
164 if (handle.ha_fid.fid_len !=
165 sizeof(handle.ha_fid) - sizeof(handle.ha_fid.fid_len))
166 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Christoph Hellwigd296d302009-01-19 02:02:57 +0100168 memset(&fid, 0, sizeof(struct fid));
169 fid.ino = handle.ha_fid.fid_ino;
170 fid.gen = handle.ha_fid.fid_gen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Christoph Hellwigd296d302009-01-19 02:02:57 +0100172 return exportfs_decode_fh(parfilp->f_path.mnt, (struct fid *)&fid, 3,
173 FILEID_INO32_GEN | XFS_FILEID_TYPE_64FLAG,
174 xfs_handle_acceptable, NULL);
175}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Christoph Hellwigd296d302009-01-19 02:02:57 +0100177STATIC struct dentry *
178xfs_handlereq_to_dentry(
179 struct file *parfilp,
180 xfs_fsop_handlereq_t *hreq)
181{
182 return xfs_handle_to_dentry(parfilp, hreq->ihandle, hreq->ihandlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183}
184
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600185int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186xfs_open_by_handle(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 struct file *parfilp,
Christoph Hellwigd296d302009-01-19 02:02:57 +0100188 xfs_fsop_handlereq_t *hreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189{
David Howells745ca242008-11-14 10:39:22 +1100190 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 int error;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100192 int fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 int permflag;
194 struct file *filp;
195 struct inode *inode;
196 struct dentry *dentry;
Dave Chinner1a1d7722012-03-22 05:15:06 +0000197 fmode_t fmode;
Al Viro765927b2012-06-26 21:58:53 +0400198 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
200 if (!capable(CAP_SYS_ADMIN))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000201 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Christoph Hellwigd296d302009-01-19 02:02:57 +0100203 dentry = xfs_handlereq_to_dentry(parfilp, hreq);
204 if (IS_ERR(dentry))
205 return PTR_ERR(dentry);
David Howells2b0143b2015-03-17 22:25:59 +0000206 inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
208 /* Restrict xfs_open_by_handle to directories & regular files. */
209 if (!(S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode))) {
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000210 error = -EPERM;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100211 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 }
213
214#if BITS_PER_LONG != 32
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600215 hreq->oflags |= O_LARGEFILE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216#endif
Christoph Hellwigd296d302009-01-19 02:02:57 +0100217
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600218 permflag = hreq->oflags;
Dave Chinner1a1d7722012-03-22 05:15:06 +0000219 fmode = OPEN_FMODE(permflag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 if ((!(permflag & O_APPEND) || (permflag & O_TRUNC)) &&
Dave Chinner1a1d7722012-03-22 05:15:06 +0000221 (fmode & FMODE_WRITE) && IS_APPEND(inode)) {
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
Dave Chinner1a1d7722012-03-22 05:15:06 +0000226 if ((fmode & FMODE_WRITE) && IS_IMMUTABLE(inode)) {
Eryu Guan337684a2016-08-02 19:58:28 +0800227 error = -EPERM;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100228 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 }
230
231 /* Can't write directories. */
Dave Chinner1a1d7722012-03-22 05:15:06 +0000232 if (S_ISDIR(inode->i_mode) && (fmode & FMODE_WRITE)) {
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000233 error = -EISDIR;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100234 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 }
236
Yann Droneaud862a6292013-07-02 18:39:34 +0200237 fd = get_unused_fd_flags(0);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100238 if (fd < 0) {
239 error = fd;
240 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 }
242
Al Viro765927b2012-06-26 21:58:53 +0400243 path.mnt = parfilp->f_path.mnt;
244 path.dentry = dentry;
245 filp = dentry_open(&path, hreq->oflags, cred);
246 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 if (IS_ERR(filp)) {
Christoph Hellwigd296d302009-01-19 02:02:57 +0100248 put_unused_fd(fd);
249 return PTR_ERR(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 }
Christoph Hellwig4d4be482008-12-09 04:47:33 -0500251
Al Viro03209372011-07-25 20:54:24 -0400252 if (S_ISREG(inode->i_mode)) {
Vlad Apostolov2e2e7bb2006-11-11 18:04:47 +1100253 filp->f_flags |= O_NOATIME;
Christoph Hellwig4d4be482008-12-09 04:47:33 -0500254 filp->f_mode |= FMODE_NOCMTIME;
Vlad Apostolov2e2e7bb2006-11-11 18:04:47 +1100255 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Christoph Hellwigd296d302009-01-19 02:02:57 +0100257 fd_install(fd, filp);
258 return fd;
259
260 out_dput:
261 dput(dentry);
262 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263}
264
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600265int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266xfs_readlink_by_handle(
Christoph Hellwigd296d302009-01-19 02:02:57 +0100267 struct file *parfilp,
268 xfs_fsop_handlereq_t *hreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269{
Christoph Hellwigd296d302009-01-19 02:02:57 +0100270 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 __u32 olen;
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000272 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
274 if (!capable(CAP_SYS_ADMIN))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000275 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
Christoph Hellwigd296d302009-01-19 02:02:57 +0100277 dentry = xfs_handlereq_to_dentry(parfilp, hreq);
278 if (IS_ERR(dentry))
279 return PTR_ERR(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
281 /* Restrict this handle operation to symlinks only. */
Miklos Szeredifd4a0edf2016-12-09 16:45:04 +0100282 if (!d_is_symlink(dentry)) {
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000283 error = -EINVAL;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100284 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 }
286
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600287 if (copy_from_user(&olen, hreq->ohandlen, sizeof(__u32))) {
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000288 error = -EFAULT;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100289 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Miklos Szeredifd4a0edf2016-12-09 16:45:04 +0100292 error = vfs_readlink(dentry, hreq->ohandle, olen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Christoph Hellwigd296d302009-01-19 02:02:57 +0100294 out_dput:
295 dput(dentry);
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000296 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297}
298
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000299int
300xfs_set_dmattrs(
301 xfs_inode_t *ip,
Darrick J. Wong65a79352017-11-09 09:34:28 -0800302 uint evmask,
303 uint16_t state)
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000304{
305 xfs_mount_t *mp = ip->i_mount;
306 xfs_trans_t *tp;
307 int error;
308
309 if (!capable(CAP_SYS_ADMIN))
Dave Chinner24513372014-06-25 14:58:08 +1000310 return -EPERM;
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000311
312 if (XFS_FORCED_SHUTDOWN(mp))
Dave Chinner24513372014-06-25 14:58:08 +1000313 return -EIO;
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000314
Christoph Hellwig253f4912016-04-06 09:19:55 +1000315 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_ichange, 0, 0, 0, &tp);
316 if (error)
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000317 return error;
Christoph Hellwig253f4912016-04-06 09:19:55 +1000318
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000319 xfs_ilock(ip, XFS_ILOCK_EXCL);
320 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
321
322 ip->i_d.di_dmevmask = evmask;
323 ip->i_d.di_dmstate = state;
324
325 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
Christoph Hellwig70393312015-06-04 13:48:08 +1000326 error = xfs_trans_commit(tp);
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000327
328 return error;
329}
330
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331STATIC int
332xfs_fssetdm_by_handle(
Christoph Hellwigd296d302009-01-19 02:02:57 +0100333 struct file *parfilp,
334 void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335{
336 int error;
337 struct fsdmidata fsd;
338 xfs_fsop_setdm_handlereq_t dmhreq;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100339 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
341 if (!capable(CAP_MKNOD))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000342 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 if (copy_from_user(&dmhreq, arg, sizeof(xfs_fsop_setdm_handlereq_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000344 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
Jan Karad9457dc2012-06-12 16:20:39 +0200346 error = mnt_want_write_file(parfilp);
347 if (error)
348 return error;
349
Christoph Hellwigd296d302009-01-19 02:02:57 +0100350 dentry = xfs_handlereq_to_dentry(parfilp, &dmhreq.hreq);
Jan Karad9457dc2012-06-12 16:20:39 +0200351 if (IS_ERR(dentry)) {
352 mnt_drop_write_file(parfilp);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100353 return PTR_ERR(dentry);
Jan Karad9457dc2012-06-12 16:20:39 +0200354 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
David Howells2b0143b2015-03-17 22:25:59 +0000356 if (IS_IMMUTABLE(d_inode(dentry)) || IS_APPEND(d_inode(dentry))) {
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000357 error = -EPERM;
Christoph Hellwig6e7f75e2007-10-11 18:09:50 +1000358 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 }
360
361 if (copy_from_user(&fsd, dmhreq.data, sizeof(fsd))) {
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000362 error = -EFAULT;
Christoph Hellwig6e7f75e2007-10-11 18:09:50 +1000363 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 }
365
David Howells2b0143b2015-03-17 22:25:59 +0000366 error = xfs_set_dmattrs(XFS_I(d_inode(dentry)), fsd.fsd_dmevmask,
Christoph Hellwig6e7f75e2007-10-11 18:09:50 +1000367 fsd.fsd_dmstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Christoph Hellwig6e7f75e2007-10-11 18:09:50 +1000369 out:
Jan Karad9457dc2012-06-12 16:20:39 +0200370 mnt_drop_write_file(parfilp);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100371 dput(dentry);
Christoph Hellwig6e7f75e2007-10-11 18:09:50 +1000372 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373}
374
375STATIC int
376xfs_attrlist_by_handle(
Christoph Hellwigd296d302009-01-19 02:02:57 +0100377 struct file *parfilp,
378 void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379{
Christoph Hellwigd296d302009-01-19 02:02:57 +0100380 int error = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 attrlist_cursor_kern_t *cursor;
Darrick J. Wong0facef72016-08-03 10:58:53 +1000382 struct xfs_fsop_attrlist_handlereq __user *p = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 xfs_fsop_attrlist_handlereq_t al_hreq;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100384 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 char *kbuf;
386
387 if (!capable(CAP_SYS_ADMIN))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000388 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 if (copy_from_user(&al_hreq, arg, sizeof(xfs_fsop_attrlist_handlereq_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000390 return -EFAULT;
Dan Carpenter071c5292013-10-31 21:00:10 +0300391 if (al_hreq.buflen < sizeof(struct attrlist) ||
Jan Tulak4e247612015-10-12 16:02:56 +1100392 al_hreq.buflen > XFS_XATTR_LIST_MAX)
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000393 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Christoph Hellwig90ad58a2008-06-27 13:32:19 +1000395 /*
396 * Reject flags, only allow namespaces.
397 */
398 if (al_hreq.flags & ~(ATTR_ROOT | ATTR_SECURE))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000399 return -EINVAL;
Christoph Hellwig90ad58a2008-06-27 13:32:19 +1000400
Christoph Hellwigd296d302009-01-19 02:02:57 +0100401 dentry = xfs_handlereq_to_dentry(parfilp, &al_hreq.hreq);
402 if (IS_ERR(dentry))
403 return PTR_ERR(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Dave Chinnerfdd3cce2013-09-02 20:53:00 +1000405 kbuf = kmem_zalloc_large(al_hreq.buflen, KM_SLEEP);
406 if (!kbuf)
407 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
409 cursor = (attrlist_cursor_kern_t *)&al_hreq.pos;
David Howells2b0143b2015-03-17 22:25:59 +0000410 error = xfs_attr_list(XFS_I(d_inode(dentry)), kbuf, al_hreq.buflen,
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000411 al_hreq.flags, cursor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 if (error)
413 goto out_kfree;
414
Darrick J. Wong0facef72016-08-03 10:58:53 +1000415 if (copy_to_user(&p->pos, cursor, sizeof(attrlist_cursor_kern_t))) {
416 error = -EFAULT;
417 goto out_kfree;
418 }
419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 if (copy_to_user(al_hreq.buffer, kbuf, al_hreq.buflen))
421 error = -EFAULT;
422
Dave Chinnerfdd3cce2013-09-02 20:53:00 +1000423out_kfree:
424 kmem_free(kbuf);
425out_dput:
Christoph Hellwigd296d302009-01-19 02:02:57 +0100426 dput(dentry);
427 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428}
429
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600430int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431xfs_attrmulti_attr_get(
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000432 struct inode *inode,
Dave Chinnera9273ca2010-01-20 10:47:48 +1100433 unsigned char *name,
434 unsigned char __user *ubuf,
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700435 uint32_t *len,
436 uint32_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437{
Dave Chinnera9273ca2010-01-20 10:47:48 +1100438 unsigned char *kbuf;
Dave Chinner24513372014-06-25 14:58:08 +1000439 int error = -EFAULT;
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000440
Jan Tulak51fcbfe2015-10-12 16:03:59 +1100441 if (*len > XFS_XATTR_SIZE_MAX)
Dave Chinner24513372014-06-25 14:58:08 +1000442 return -EINVAL;
Dave Chinnerfdd3cce2013-09-02 20:53:00 +1000443 kbuf = kmem_zalloc_large(*len, KM_SLEEP);
444 if (!kbuf)
Dave Chinner24513372014-06-25 14:58:08 +1000445 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000447 error = xfs_attr_get(XFS_I(inode), name, kbuf, (int *)len, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 if (error)
449 goto out_kfree;
450
451 if (copy_to_user(ubuf, kbuf, *len))
Dave Chinner24513372014-06-25 14:58:08 +1000452 error = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Dave Chinnerfdd3cce2013-09-02 20:53:00 +1000454out_kfree:
455 kmem_free(kbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 return error;
457}
458
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600459int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460xfs_attrmulti_attr_set(
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000461 struct inode *inode,
Dave Chinnera9273ca2010-01-20 10:47:48 +1100462 unsigned char *name,
463 const unsigned char __user *ubuf,
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700464 uint32_t len,
465 uint32_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466{
Dave Chinnera9273ca2010-01-20 10:47:48 +1100467 unsigned char *kbuf;
Andreas Gruenbacher09cb22d2015-11-03 12:53:54 +1100468 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000470 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
Dave Chinner24513372014-06-25 14:58:08 +1000471 return -EPERM;
Jan Tulak51fcbfe2015-10-12 16:03:59 +1100472 if (len > XFS_XATTR_SIZE_MAX)
Dave Chinner24513372014-06-25 14:58:08 +1000473 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Li Zefan0e639bd2009-04-08 15:08:04 +0800475 kbuf = memdup_user(ubuf, len);
476 if (IS_ERR(kbuf))
477 return PTR_ERR(kbuf);
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000478
Andreas Gruenbacher09cb22d2015-11-03 12:53:54 +1100479 error = xfs_attr_set(XFS_I(inode), name, kbuf, len, flags);
Andreas Gruenbacher47e1bf62015-11-03 12:56:17 +1100480 if (!error)
481 xfs_forget_acl(inode, name, flags);
Andreas Gruenbacher09cb22d2015-11-03 12:53:54 +1100482 kfree(kbuf);
483 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484}
485
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600486int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487xfs_attrmulti_attr_remove(
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000488 struct inode *inode,
Dave Chinnera9273ca2010-01-20 10:47:48 +1100489 unsigned char *name,
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700490 uint32_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491{
Andreas Gruenbacher47e1bf62015-11-03 12:56:17 +1100492 int error;
493
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000494 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
Dave Chinner24513372014-06-25 14:58:08 +1000495 return -EPERM;
Andreas Gruenbacher47e1bf62015-11-03 12:56:17 +1100496 error = xfs_attr_remove(XFS_I(inode), name, flags);
497 if (!error)
498 xfs_forget_acl(inode, name, flags);
499 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500}
501
502STATIC int
503xfs_attrmulti_by_handle(
Dave Hansen42a74f22008-02-15 14:37:46 -0800504 struct file *parfilp,
Christoph Hellwigd296d302009-01-19 02:02:57 +0100505 void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506{
507 int error;
508 xfs_attr_multiop_t *ops;
509 xfs_fsop_attrmulti_handlereq_t am_hreq;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100510 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 unsigned int i, size;
Dave Chinnera9273ca2010-01-20 10:47:48 +1100512 unsigned char *attr_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
514 if (!capable(CAP_SYS_ADMIN))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000515 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 if (copy_from_user(&am_hreq, arg, sizeof(xfs_fsop_attrmulti_handlereq_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000517 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
Zhitong Wangfda168c2010-03-23 09:51:22 +1100519 /* overflow check */
520 if (am_hreq.opcount >= INT_MAX / sizeof(xfs_attr_multiop_t))
521 return -E2BIG;
522
Christoph Hellwigd296d302009-01-19 02:02:57 +0100523 dentry = xfs_handlereq_to_dentry(parfilp, &am_hreq.hreq);
524 if (IS_ERR(dentry))
525 return PTR_ERR(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Dave Chinner24513372014-06-25 14:58:08 +1000527 error = -E2BIG;
Christoph Hellwige182f572008-06-27 13:32:31 +1000528 size = am_hreq.opcount * sizeof(xfs_attr_multiop_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 if (!size || size > 16 * PAGE_SIZE)
Christoph Hellwigd296d302009-01-19 02:02:57 +0100530 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Li Zefan0e639bd2009-04-08 15:08:04 +0800532 ops = memdup_user(am_hreq.ops, size);
533 if (IS_ERR(ops)) {
Dave Chinner24513372014-06-25 14:58:08 +1000534 error = PTR_ERR(ops);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100535 goto out_dput;
Li Zefan0e639bd2009-04-08 15:08:04 +0800536 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Dave Chinner24513372014-06-25 14:58:08 +1000538 error = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 attr_name = kmalloc(MAXNAMELEN, GFP_KERNEL);
540 if (!attr_name)
541 goto out_kfree_ops;
542
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 error = 0;
544 for (i = 0; i < am_hreq.opcount; i++) {
Dave Chinnera9273ca2010-01-20 10:47:48 +1100545 ops[i].am_error = strncpy_from_user((char *)attr_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 ops[i].am_attrname, MAXNAMELEN);
547 if (ops[i].am_error == 0 || ops[i].am_error == MAXNAMELEN)
Dave Chinner24513372014-06-25 14:58:08 +1000548 error = -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 if (ops[i].am_error < 0)
550 break;
551
552 switch (ops[i].am_opcode) {
553 case ATTR_OP_GET:
Christoph Hellwigd296d302009-01-19 02:02:57 +0100554 ops[i].am_error = xfs_attrmulti_attr_get(
David Howells2b0143b2015-03-17 22:25:59 +0000555 d_inode(dentry), attr_name,
Christoph Hellwigd296d302009-01-19 02:02:57 +0100556 ops[i].am_attrvalue, &ops[i].am_length,
557 ops[i].am_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 break;
559 case ATTR_OP_SET:
Al Viroa561be72011-11-23 11:57:51 -0500560 ops[i].am_error = mnt_want_write_file(parfilp);
Dave Hansen42a74f22008-02-15 14:37:46 -0800561 if (ops[i].am_error)
562 break;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100563 ops[i].am_error = xfs_attrmulti_attr_set(
David Howells2b0143b2015-03-17 22:25:59 +0000564 d_inode(dentry), attr_name,
Christoph Hellwigd296d302009-01-19 02:02:57 +0100565 ops[i].am_attrvalue, ops[i].am_length,
566 ops[i].am_flags);
Al Viro2a79f172011-12-09 08:06:57 -0500567 mnt_drop_write_file(parfilp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 break;
569 case ATTR_OP_REMOVE:
Al Viroa561be72011-11-23 11:57:51 -0500570 ops[i].am_error = mnt_want_write_file(parfilp);
Dave Hansen42a74f22008-02-15 14:37:46 -0800571 if (ops[i].am_error)
572 break;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100573 ops[i].am_error = xfs_attrmulti_attr_remove(
David Howells2b0143b2015-03-17 22:25:59 +0000574 d_inode(dentry), attr_name,
Christoph Hellwigd296d302009-01-19 02:02:57 +0100575 ops[i].am_flags);
Al Viro2a79f172011-12-09 08:06:57 -0500576 mnt_drop_write_file(parfilp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 break;
578 default:
Dave Chinner24513372014-06-25 14:58:08 +1000579 ops[i].am_error = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 }
581 }
582
583 if (copy_to_user(am_hreq.ops, ops, size))
Dave Chinner24513372014-06-25 14:58:08 +1000584 error = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
586 kfree(attr_name);
587 out_kfree_ops:
588 kfree(ops);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100589 out_dput:
590 dput(dentry);
Dave Chinner24513372014-06-25 14:58:08 +1000591 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592}
593
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600594int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595xfs_ioc_space(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 unsigned int cmd,
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600598 xfs_flock64_t *bf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599{
Christoph Hellwig8f3e2052016-07-20 11:29:35 +1000600 struct inode *inode = file_inode(filp);
601 struct xfs_inode *ip = XFS_I(inode);
Christoph Hellwig865e9442013-10-12 00:55:08 -0700602 struct iattr iattr;
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100603 enum xfs_prealloc_flags flags = 0;
Dan Williamsc63a8ea2018-03-12 14:12:29 -0700604 uint iolock = XFS_IOLOCK_EXCL | XFS_MMAPLOCK_EXCL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 int error;
606
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600607 /*
608 * Only allow the sys admin to reserve space unless
609 * unwritten extents are enabled.
610 */
611 if (!xfs_sb_version_hasextflgbit(&ip->i_mount->m_sb) &&
612 !capable(CAP_SYS_ADMIN))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000613 return -EPERM;
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600614
Alexey Dobriyanf37ea142006-09-28 10:52:04 +1000615 if (inode->i_flags & (S_IMMUTABLE|S_APPEND))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000616 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
Eric Sandeenad4a8ac2005-09-02 16:41:16 +1000618 if (!(filp->f_mode & FMODE_WRITE))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000619 return -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
Alexey Dobriyanf37ea142006-09-28 10:52:04 +1000621 if (!S_ISREG(inode->i_mode))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000622 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100624 if (filp->f_flags & O_DSYNC)
625 flags |= XFS_PREALLOC_SYNC;
Christoph Hellwig8f3e2052016-07-20 11:29:35 +1000626 if (filp->f_mode & FMODE_NOCMTIME)
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100627 flags |= XFS_PREALLOC_INVISIBLE;
628
Jan Karad9457dc2012-06-12 16:20:39 +0200629 error = mnt_want_write_file(filp);
630 if (error)
631 return error;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700632
Christoph Hellwig781355c2015-02-16 11:59:50 +1100633 xfs_ilock(ip, iolock);
Dan Williams69eb5fa2018-03-20 14:42:38 -0700634 error = xfs_break_layouts(inode, &iolock, BREAK_UNMAP);
Christoph Hellwig781355c2015-02-16 11:59:50 +1100635 if (error)
636 goto out_unlock;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700637
638 switch (bf->l_whence) {
639 case 0: /*SEEK_SET*/
640 break;
641 case 1: /*SEEK_CUR*/
642 bf->l_start += filp->f_pos;
643 break;
644 case 2: /*SEEK_END*/
645 bf->l_start += XFS_ISIZE(ip);
646 break;
647 default:
Dave Chinner24513372014-06-25 14:58:08 +1000648 error = -EINVAL;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700649 goto out_unlock;
650 }
651
652 /*
653 * length of <= 0 for resv/unresv/zero is invalid. length for
654 * alloc/free is ignored completely and we have no idea what userspace
655 * might have set it to, so set it to zero to allow range
656 * checks to pass.
657 */
658 switch (cmd) {
659 case XFS_IOC_ZERO_RANGE:
660 case XFS_IOC_RESVSP:
661 case XFS_IOC_RESVSP64:
662 case XFS_IOC_UNRESVSP:
663 case XFS_IOC_UNRESVSP64:
664 if (bf->l_len <= 0) {
Dave Chinner24513372014-06-25 14:58:08 +1000665 error = -EINVAL;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700666 goto out_unlock;
667 }
668 break;
669 default:
670 bf->l_len = 0;
671 break;
672 }
673
674 if (bf->l_start < 0 ||
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100675 bf->l_start > inode->i_sb->s_maxbytes ||
Christoph Hellwig865e9442013-10-12 00:55:08 -0700676 bf->l_start + bf->l_len < 0 ||
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100677 bf->l_start + bf->l_len >= inode->i_sb->s_maxbytes) {
Dave Chinner24513372014-06-25 14:58:08 +1000678 error = -EINVAL;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700679 goto out_unlock;
680 }
681
682 switch (cmd) {
683 case XFS_IOC_ZERO_RANGE:
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100684 flags |= XFS_PREALLOC_SET;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700685 error = xfs_zero_file_space(ip, bf->l_start, bf->l_len);
Christoph Hellwig865e9442013-10-12 00:55:08 -0700686 break;
687 case XFS_IOC_RESVSP:
688 case XFS_IOC_RESVSP64:
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100689 flags |= XFS_PREALLOC_SET;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700690 error = xfs_alloc_file_space(ip, bf->l_start, bf->l_len,
691 XFS_BMAPI_PREALLOC);
Christoph Hellwig865e9442013-10-12 00:55:08 -0700692 break;
693 case XFS_IOC_UNRESVSP:
694 case XFS_IOC_UNRESVSP64:
695 error = xfs_free_file_space(ip, bf->l_start, bf->l_len);
696 break;
697 case XFS_IOC_ALLOCSP:
698 case XFS_IOC_ALLOCSP64:
699 case XFS_IOC_FREESP:
700 case XFS_IOC_FREESP64:
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100701 flags |= XFS_PREALLOC_CLEAR;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700702 if (bf->l_start > XFS_ISIZE(ip)) {
703 error = xfs_alloc_file_space(ip, XFS_ISIZE(ip),
704 bf->l_start - XFS_ISIZE(ip), 0);
705 if (error)
706 goto out_unlock;
707 }
708
709 iattr.ia_valid = ATTR_SIZE;
710 iattr.ia_size = bf->l_start;
711
Jan Kara69bca802016-05-26 14:46:43 +0200712 error = xfs_vn_setattr_size(file_dentry(filp), &iattr);
Christoph Hellwig865e9442013-10-12 00:55:08 -0700713 break;
714 default:
715 ASSERT(0);
Dave Chinner24513372014-06-25 14:58:08 +1000716 error = -EINVAL;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700717 }
718
719 if (error)
720 goto out_unlock;
721
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100722 error = xfs_update_prealloc_flags(ip, flags);
Christoph Hellwig865e9442013-10-12 00:55:08 -0700723
724out_unlock:
Christoph Hellwig781355c2015-02-16 11:59:50 +1100725 xfs_iunlock(ip, iolock);
Jan Karad9457dc2012-06-12 16:20:39 +0200726 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +1000727 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728}
729
730STATIC int
731xfs_ioc_bulkstat(
732 xfs_mount_t *mp,
733 unsigned int cmd,
734 void __user *arg)
735{
736 xfs_fsop_bulkreq_t bulkreq;
737 int count; /* # of records returned */
738 xfs_ino_t inlast; /* last inode number */
739 int done;
740 int error;
741
742 /* done = 1 if there are more stats to get and if bulkstat */
743 /* should be called again (unused here, but used in dmapi) */
744
745 if (!capable(CAP_SYS_ADMIN))
746 return -EPERM;
747
748 if (XFS_FORCED_SHUTDOWN(mp))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000749 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
751 if (copy_from_user(&bulkreq, arg, sizeof(xfs_fsop_bulkreq_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000752 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
754 if (copy_from_user(&inlast, bulkreq.lastip, sizeof(__s64)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000755 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
757 if ((count = bulkreq.icount) <= 0)
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000758 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100760 if (bulkreq.ubuffer == NULL)
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000761 return -EINVAL;
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100762
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 if (cmd == XFS_IOC_FSINUMBERS)
764 error = xfs_inumbers(mp, &inlast, &count,
Michal Marekfaa63e92007-07-11 11:10:19 +1000765 bulkreq.ubuffer, xfs_inumbers_fmt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 else if (cmd == XFS_IOC_FSBULKSTAT_SINGLE)
Christoph Hellwigd716f8e2014-07-24 12:07:15 +1000767 error = xfs_bulkstat_one(mp, inlast, bulkreq.ubuffer,
768 sizeof(xfs_bstat_t), NULL, &done);
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100769 else /* XFS_IOC_FSBULKSTAT */
Christoph Hellwig7dce11d2010-06-23 18:11:11 +1000770 error = xfs_bulkstat(mp, &inlast, &count, xfs_bulkstat_one,
771 sizeof(xfs_bstat_t), bulkreq.ubuffer,
772 &done);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
774 if (error)
Dave Chinner24513372014-06-25 14:58:08 +1000775 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
777 if (bulkreq.ocount != NULL) {
778 if (copy_to_user(bulkreq.lastip, &inlast,
779 sizeof(xfs_ino_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000780 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
782 if (copy_to_user(bulkreq.ocount, &count, sizeof(count)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000783 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 }
785
786 return 0;
787}
788
789STATIC int
790xfs_ioc_fsgeometry_v1(
791 xfs_mount_t *mp,
792 void __user *arg)
793{
Alex Eldereeb20362011-03-01 17:50:00 +0000794 xfs_fsop_geom_t fsgeo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 int error;
796
Darrick J. Wongac503a42018-01-08 10:51:27 -0800797 error = xfs_fs_geometry(&mp->m_sb, &fsgeo, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 if (error)
Dave Chinner24513372014-06-25 14:58:08 +1000799 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
Alex Eldereeb20362011-03-01 17:50:00 +0000801 /*
802 * Caller should have passed an argument of type
803 * xfs_fsop_geom_v1_t. This is a proper subset of the
804 * xfs_fsop_geom_t that xfs_fs_geometry() fills in.
805 */
806 if (copy_to_user(arg, &fsgeo, sizeof(xfs_fsop_geom_v1_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000807 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 return 0;
809}
810
811STATIC int
812xfs_ioc_fsgeometry(
813 xfs_mount_t *mp,
814 void __user *arg)
815{
816 xfs_fsop_geom_t fsgeo;
817 int error;
818
Darrick J. Wongac503a42018-01-08 10:51:27 -0800819 error = xfs_fs_geometry(&mp->m_sb, &fsgeo, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 if (error)
Dave Chinner24513372014-06-25 14:58:08 +1000821 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
823 if (copy_to_user(arg, &fsgeo, sizeof(fsgeo)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000824 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 return 0;
826}
827
828/*
829 * Linux extended inode flags interface.
830 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
832STATIC unsigned int
833xfs_merge_ioc_xflags(
834 unsigned int flags,
835 unsigned int start)
836{
837 unsigned int xflags = start;
838
Eric Sandeen39058a02007-02-10 18:37:10 +1100839 if (flags & FS_IMMUTABLE_FL)
Dave Chinnere7b89482016-01-04 16:44:15 +1100840 xflags |= FS_XFLAG_IMMUTABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 else
Dave Chinnere7b89482016-01-04 16:44:15 +1100842 xflags &= ~FS_XFLAG_IMMUTABLE;
Eric Sandeen39058a02007-02-10 18:37:10 +1100843 if (flags & FS_APPEND_FL)
Dave Chinnere7b89482016-01-04 16:44:15 +1100844 xflags |= FS_XFLAG_APPEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 else
Dave Chinnere7b89482016-01-04 16:44:15 +1100846 xflags &= ~FS_XFLAG_APPEND;
Eric Sandeen39058a02007-02-10 18:37:10 +1100847 if (flags & FS_SYNC_FL)
Dave Chinnere7b89482016-01-04 16:44:15 +1100848 xflags |= FS_XFLAG_SYNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 else
Dave Chinnere7b89482016-01-04 16:44:15 +1100850 xflags &= ~FS_XFLAG_SYNC;
Eric Sandeen39058a02007-02-10 18:37:10 +1100851 if (flags & FS_NOATIME_FL)
Dave Chinnere7b89482016-01-04 16:44:15 +1100852 xflags |= FS_XFLAG_NOATIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 else
Dave Chinnere7b89482016-01-04 16:44:15 +1100854 xflags &= ~FS_XFLAG_NOATIME;
Eric Sandeen39058a02007-02-10 18:37:10 +1100855 if (flags & FS_NODUMP_FL)
Dave Chinnere7b89482016-01-04 16:44:15 +1100856 xflags |= FS_XFLAG_NODUMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 else
Dave Chinnere7b89482016-01-04 16:44:15 +1100858 xflags &= ~FS_XFLAG_NODUMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
860 return xflags;
861}
862
863STATIC unsigned int
864xfs_di2lxflags(
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700865 uint16_t di_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866{
867 unsigned int flags = 0;
868
869 if (di_flags & XFS_DIFLAG_IMMUTABLE)
Eric Sandeen39058a02007-02-10 18:37:10 +1100870 flags |= FS_IMMUTABLE_FL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 if (di_flags & XFS_DIFLAG_APPEND)
Eric Sandeen39058a02007-02-10 18:37:10 +1100872 flags |= FS_APPEND_FL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 if (di_flags & XFS_DIFLAG_SYNC)
Eric Sandeen39058a02007-02-10 18:37:10 +1100874 flags |= FS_SYNC_FL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 if (di_flags & XFS_DIFLAG_NOATIME)
Eric Sandeen39058a02007-02-10 18:37:10 +1100876 flags |= FS_NOATIME_FL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 if (di_flags & XFS_DIFLAG_NODUMP)
Eric Sandeen39058a02007-02-10 18:37:10 +1100878 flags |= FS_NODUMP_FL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 return flags;
880}
881
882STATIC int
Christoph Hellwigc83bfab2007-10-11 17:47:00 +1000883xfs_ioc_fsgetxattr(
884 xfs_inode_t *ip,
885 int attr,
886 void __user *arg)
887{
888 struct fsxattr fa;
889
Dan Rosenberga122eb22010-09-06 18:24:57 -0400890 memset(&fa, 0, sizeof(struct fsxattr));
891
Christoph Hellwigc83bfab2007-10-11 17:47:00 +1000892 xfs_ilock(ip, XFS_ILOCK_SHARED);
893 fa.fsx_xflags = xfs_ip2xflags(ip);
894 fa.fsx_extsize = ip->i_d.di_extsize << ip->i_mount->m_sb.sb_blocklog;
Darrick J. Wongf7ca3522016-10-03 09:11:43 -0700895 fa.fsx_cowextsize = ip->i_d.di_cowextsize <<
896 ip->i_mount->m_sb.sb_blocklog;
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000897 fa.fsx_projid = xfs_get_projid(ip);
Christoph Hellwigc83bfab2007-10-11 17:47:00 +1000898
899 if (attr) {
900 if (ip->i_afp) {
901 if (ip->i_afp->if_flags & XFS_IFEXTENTS)
Eric Sandeen5d829302016-11-08 12:59:42 +1100902 fa.fsx_nextents = xfs_iext_count(ip->i_afp);
Christoph Hellwigc83bfab2007-10-11 17:47:00 +1000903 else
904 fa.fsx_nextents = ip->i_d.di_anextents;
905 } else
906 fa.fsx_nextents = 0;
907 } else {
908 if (ip->i_df.if_flags & XFS_IFEXTENTS)
Eric Sandeen5d829302016-11-08 12:59:42 +1100909 fa.fsx_nextents = xfs_iext_count(&ip->i_df);
Christoph Hellwigc83bfab2007-10-11 17:47:00 +1000910 else
911 fa.fsx_nextents = ip->i_d.di_nextents;
912 }
913 xfs_iunlock(ip, XFS_ILOCK_SHARED);
914
915 if (copy_to_user(arg, &fa, sizeof(fa)))
916 return -EFAULT;
917 return 0;
918}
919
Christoph Hellwigdd606872017-09-02 08:21:20 -0700920STATIC uint16_t
921xfs_flags2diflags(
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000922 struct xfs_inode *ip,
923 unsigned int xflags)
924{
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000925 /* can't set PREALLOC this way, just preserve it */
Christoph Hellwigdd606872017-09-02 08:21:20 -0700926 uint16_t di_flags =
927 (ip->i_d.di_flags & XFS_DIFLAG_PREALLOC);
928
Dave Chinnere7b89482016-01-04 16:44:15 +1100929 if (xflags & FS_XFLAG_IMMUTABLE)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000930 di_flags |= XFS_DIFLAG_IMMUTABLE;
Dave Chinnere7b89482016-01-04 16:44:15 +1100931 if (xflags & FS_XFLAG_APPEND)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000932 di_flags |= XFS_DIFLAG_APPEND;
Dave Chinnere7b89482016-01-04 16:44:15 +1100933 if (xflags & FS_XFLAG_SYNC)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000934 di_flags |= XFS_DIFLAG_SYNC;
Dave Chinnere7b89482016-01-04 16:44:15 +1100935 if (xflags & FS_XFLAG_NOATIME)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000936 di_flags |= XFS_DIFLAG_NOATIME;
Dave Chinnere7b89482016-01-04 16:44:15 +1100937 if (xflags & FS_XFLAG_NODUMP)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000938 di_flags |= XFS_DIFLAG_NODUMP;
Dave Chinnere7b89482016-01-04 16:44:15 +1100939 if (xflags & FS_XFLAG_NODEFRAG)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000940 di_flags |= XFS_DIFLAG_NODEFRAG;
Dave Chinnere7b89482016-01-04 16:44:15 +1100941 if (xflags & FS_XFLAG_FILESTREAM)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000942 di_flags |= XFS_DIFLAG_FILESTREAM;
Dave Chinnerc19b3b052016-02-09 16:54:58 +1100943 if (S_ISDIR(VFS_I(ip)->i_mode)) {
Dave Chinnere7b89482016-01-04 16:44:15 +1100944 if (xflags & FS_XFLAG_RTINHERIT)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000945 di_flags |= XFS_DIFLAG_RTINHERIT;
Dave Chinnere7b89482016-01-04 16:44:15 +1100946 if (xflags & FS_XFLAG_NOSYMLINKS)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000947 di_flags |= XFS_DIFLAG_NOSYMLINKS;
Dave Chinnere7b89482016-01-04 16:44:15 +1100948 if (xflags & FS_XFLAG_EXTSZINHERIT)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000949 di_flags |= XFS_DIFLAG_EXTSZINHERIT;
Dave Chinnere7b89482016-01-04 16:44:15 +1100950 if (xflags & FS_XFLAG_PROJINHERIT)
Dave Chinner9336e3a2014-10-02 09:18:40 +1000951 di_flags |= XFS_DIFLAG_PROJINHERIT;
Dave Chinnerc19b3b052016-02-09 16:54:58 +1100952 } else if (S_ISREG(VFS_I(ip)->i_mode)) {
Dave Chinnere7b89482016-01-04 16:44:15 +1100953 if (xflags & FS_XFLAG_REALTIME)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000954 di_flags |= XFS_DIFLAG_REALTIME;
Dave Chinnere7b89482016-01-04 16:44:15 +1100955 if (xflags & FS_XFLAG_EXTSIZE)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000956 di_flags |= XFS_DIFLAG_EXTSIZE;
957 }
Dave Chinner58f88ca2016-01-04 16:44:15 +1100958
Christoph Hellwigdd606872017-09-02 08:21:20 -0700959 return di_flags;
960}
Dave Chinner58f88ca2016-01-04 16:44:15 +1100961
Christoph Hellwigdd606872017-09-02 08:21:20 -0700962STATIC uint64_t
963xfs_flags2diflags2(
964 struct xfs_inode *ip,
965 unsigned int xflags)
966{
967 uint64_t di_flags2 =
968 (ip->i_d.di_flags2 & XFS_DIFLAG2_REFLINK);
969
Dave Chinner58f88ca2016-01-04 16:44:15 +1100970 if (xflags & FS_XFLAG_DAX)
971 di_flags2 |= XFS_DIFLAG2_DAX;
Darrick J. Wongf7ca3522016-10-03 09:11:43 -0700972 if (xflags & FS_XFLAG_COWEXTSIZE)
973 di_flags2 |= XFS_DIFLAG2_COWEXTSIZE;
Dave Chinner58f88ca2016-01-04 16:44:15 +1100974
Christoph Hellwigdd606872017-09-02 08:21:20 -0700975 return di_flags2;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000976}
977
Christoph Hellwigf13fae22008-07-21 16:16:15 +1000978STATIC void
979xfs_diflags_to_linux(
980 struct xfs_inode *ip)
981{
David Chinnere4f75292008-08-13 16:00:45 +1000982 struct inode *inode = VFS_I(ip);
Christoph Hellwigf13fae22008-07-21 16:16:15 +1000983 unsigned int xflags = xfs_ip2xflags(ip);
984
Dave Chinnere7b89482016-01-04 16:44:15 +1100985 if (xflags & FS_XFLAG_IMMUTABLE)
Christoph Hellwigf13fae22008-07-21 16:16:15 +1000986 inode->i_flags |= S_IMMUTABLE;
987 else
988 inode->i_flags &= ~S_IMMUTABLE;
Dave Chinnere7b89482016-01-04 16:44:15 +1100989 if (xflags & FS_XFLAG_APPEND)
Christoph Hellwigf13fae22008-07-21 16:16:15 +1000990 inode->i_flags |= S_APPEND;
991 else
992 inode->i_flags &= ~S_APPEND;
Dave Chinnere7b89482016-01-04 16:44:15 +1100993 if (xflags & FS_XFLAG_SYNC)
Christoph Hellwigf13fae22008-07-21 16:16:15 +1000994 inode->i_flags |= S_SYNC;
995 else
996 inode->i_flags &= ~S_SYNC;
Dave Chinnere7b89482016-01-04 16:44:15 +1100997 if (xflags & FS_XFLAG_NOATIME)
Christoph Hellwigf13fae22008-07-21 16:16:15 +1000998 inode->i_flags |= S_NOATIME;
999 else
1000 inode->i_flags &= ~S_NOATIME;
Christoph Hellwig742d8422017-08-30 09:23:01 -07001001#if 0 /* disabled until the flag switching races are sorted out */
Dave Chinner58f88ca2016-01-04 16:44:15 +11001002 if (xflags & FS_XFLAG_DAX)
1003 inode->i_flags |= S_DAX;
1004 else
1005 inode->i_flags &= ~S_DAX;
Christoph Hellwig742d8422017-08-30 09:23:01 -07001006#endif
Christoph Hellwigf13fae22008-07-21 16:16:15 +10001007}
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001008
Dave Chinner29a17c02015-02-02 10:14:25 +11001009static int
1010xfs_ioctl_setattr_xflags(
1011 struct xfs_trans *tp,
1012 struct xfs_inode *ip,
1013 struct fsxattr *fa)
1014{
1015 struct xfs_mount *mp = ip->i_mount;
Christoph Hellwigdd606872017-09-02 08:21:20 -07001016 uint64_t di_flags2;
Dave Chinner29a17c02015-02-02 10:14:25 +11001017
1018 /* Can't change realtime flag if any extents are allocated. */
1019 if ((ip->i_d.di_nextents || ip->i_delayed_blks) &&
Dave Chinnere7b89482016-01-04 16:44:15 +11001020 XFS_IS_REALTIME_INODE(ip) != (fa->fsx_xflags & FS_XFLAG_REALTIME))
Dave Chinner29a17c02015-02-02 10:14:25 +11001021 return -EINVAL;
1022
1023 /* If realtime flag is set then must have realtime device */
Dave Chinnere7b89482016-01-04 16:44:15 +11001024 if (fa->fsx_xflags & FS_XFLAG_REALTIME) {
Dave Chinner29a17c02015-02-02 10:14:25 +11001025 if (mp->m_sb.sb_rblocks == 0 || mp->m_sb.sb_rextsize == 0 ||
1026 (ip->i_d.di_extsize % mp->m_sb.sb_rextsize))
1027 return -EINVAL;
1028 }
1029
Darrick J. Wong1987fd72016-10-10 16:49:29 +11001030 /* Clear reflink if we are actually able to set the rt flag. */
Darrick J. Wongc8e156a2016-10-03 09:11:50 -07001031 if ((fa->fsx_xflags & FS_XFLAG_REALTIME) && xfs_is_reflink_inode(ip))
Darrick J. Wong1987fd72016-10-10 16:49:29 +11001032 ip->i_d.di_flags2 &= ~XFS_DIFLAG2_REFLINK;
Darrick J. Wongc8e156a2016-10-03 09:11:50 -07001033
Darrick J. Wong4f435eb2016-10-03 09:11:50 -07001034 /* Don't allow us to set DAX mode for a reflinked file for now. */
1035 if ((fa->fsx_xflags & FS_XFLAG_DAX) && xfs_is_reflink_inode(ip))
1036 return -EINVAL;
1037
Dave Chinner29a17c02015-02-02 10:14:25 +11001038 /*
1039 * Can't modify an immutable/append-only file unless
1040 * we have appropriate permission.
1041 */
1042 if (((ip->i_d.di_flags & (XFS_DIFLAG_IMMUTABLE | XFS_DIFLAG_APPEND)) ||
Dave Chinnere7b89482016-01-04 16:44:15 +11001043 (fa->fsx_xflags & (FS_XFLAG_IMMUTABLE | FS_XFLAG_APPEND))) &&
Dave Chinner29a17c02015-02-02 10:14:25 +11001044 !capable(CAP_LINUX_IMMUTABLE))
1045 return -EPERM;
1046
Christoph Hellwigdd606872017-09-02 08:21:20 -07001047 /* diflags2 only valid for v3 inodes. */
1048 di_flags2 = xfs_flags2diflags2(ip, fa->fsx_xflags);
1049 if (di_flags2 && ip->i_d.di_version < 3)
1050 return -EINVAL;
1051
1052 ip->i_d.di_flags = xfs_flags2diflags(ip, fa->fsx_xflags);
1053 ip->i_d.di_flags2 = di_flags2;
1054
Dave Chinner29a17c02015-02-02 10:14:25 +11001055 xfs_diflags_to_linux(ip);
1056 xfs_trans_ichgtime(tp, ip, XFS_ICHGTIME_CHG);
1057 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
Bill O'Donnellff6d6af2015-10-12 18:21:22 +11001058 XFS_STATS_INC(mp, xs_ig_attrchg);
Dave Chinner29a17c02015-02-02 10:14:25 +11001059 return 0;
1060}
1061
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001062/*
Dave Chinner3a6a8542016-03-01 09:41:33 +11001063 * If we are changing DAX flags, we have to ensure the file is clean and any
1064 * cached objects in the address space are invalidated and removed. This
1065 * requires us to lock out other IO and page faults similar to a truncate
1066 * operation. The locks need to be held until the transaction has been committed
1067 * so that the cache invalidation is atomic with respect to the DAX flag
1068 * manipulation.
1069 */
1070static int
1071xfs_ioctl_setattr_dax_invalidate(
1072 struct xfs_inode *ip,
1073 struct fsxattr *fa,
1074 int *join_flags)
1075{
1076 struct inode *inode = VFS_I(ip);
Ross Zwisler6851a3d2017-09-18 14:46:03 -07001077 struct super_block *sb = inode->i_sb;
Dave Chinner3a6a8542016-03-01 09:41:33 +11001078 int error;
1079
1080 *join_flags = 0;
1081
1082 /*
1083 * It is only valid to set the DAX flag on regular files and
Dave Chinner64485432016-03-01 09:41:33 +11001084 * directories on filesystems where the block size is equal to the page
Darrick J. Wongaaacdd22018-05-31 15:07:47 -07001085 * size. On directories it serves as an inherited hint so we don't
1086 * have to check the device for dax support or flush pagecache.
Dave Chinner3a6a8542016-03-01 09:41:33 +11001087 */
Dave Chinner64485432016-03-01 09:41:33 +11001088 if (fa->fsx_xflags & FS_XFLAG_DAX) {
1089 if (!(S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode)))
1090 return -EINVAL;
Darrick J. Wongaaacdd22018-05-31 15:07:47 -07001091 if (S_ISREG(inode->i_mode) &&
1092 !bdev_dax_supported(xfs_find_bdev_for_inode(VFS_I(ip)),
Dave Jiang80660f22018-05-30 13:03:46 -07001093 sb->s_blocksize))
Dave Chinner64485432016-03-01 09:41:33 +11001094 return -EINVAL;
1095 }
Dave Chinner3a6a8542016-03-01 09:41:33 +11001096
1097 /* If the DAX state is not changing, we have nothing to do here. */
1098 if ((fa->fsx_xflags & FS_XFLAG_DAX) && IS_DAX(inode))
1099 return 0;
1100 if (!(fa->fsx_xflags & FS_XFLAG_DAX) && !IS_DAX(inode))
1101 return 0;
1102
Darrick J. Wongaaacdd22018-05-31 15:07:47 -07001103 if (S_ISDIR(inode->i_mode))
1104 return 0;
1105
Dave Chinner3a6a8542016-03-01 09:41:33 +11001106 /* lock, flush and invalidate mapping in preparation for flag change */
1107 xfs_ilock(ip, XFS_MMAPLOCK_EXCL | XFS_IOLOCK_EXCL);
1108 error = filemap_write_and_wait(inode->i_mapping);
1109 if (error)
1110 goto out_unlock;
1111 error = invalidate_inode_pages2(inode->i_mapping);
1112 if (error)
1113 goto out_unlock;
1114
1115 *join_flags = XFS_MMAPLOCK_EXCL | XFS_IOLOCK_EXCL;
1116 return 0;
1117
1118out_unlock:
1119 xfs_iunlock(ip, XFS_MMAPLOCK_EXCL | XFS_IOLOCK_EXCL);
1120 return error;
1121
1122}
1123
1124/*
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001125 * Set up the transaction structure for the setattr operation, checking that we
1126 * have permission to do so. On success, return a clean transaction and the
1127 * inode locked exclusively ready for further operation specific checks. On
1128 * failure, return an error without modifying or locking the inode.
Dave Chinner3a6a8542016-03-01 09:41:33 +11001129 *
1130 * The inode might already be IO locked on call. If this is the case, it is
1131 * indicated in @join_flags and we take full responsibility for ensuring they
1132 * are unlocked from now on. Hence if we have an error here, we still have to
1133 * unlock them. Otherwise, once they are joined to the transaction, they will
1134 * be unlocked on commit/cancel.
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001135 */
1136static struct xfs_trans *
1137xfs_ioctl_setattr_get_trans(
Dave Chinner3a6a8542016-03-01 09:41:33 +11001138 struct xfs_inode *ip,
1139 int join_flags)
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001140{
1141 struct xfs_mount *mp = ip->i_mount;
1142 struct xfs_trans *tp;
Dave Chinner3a6a8542016-03-01 09:41:33 +11001143 int error = -EROFS;
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001144
1145 if (mp->m_flags & XFS_MOUNT_RDONLY)
Dave Chinner3a6a8542016-03-01 09:41:33 +11001146 goto out_unlock;
1147 error = -EIO;
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001148 if (XFS_FORCED_SHUTDOWN(mp))
Dave Chinner3a6a8542016-03-01 09:41:33 +11001149 goto out_unlock;
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001150
Christoph Hellwig253f4912016-04-06 09:19:55 +10001151 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_ichange, 0, 0, 0, &tp);
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001152 if (error)
Christoph Hellwig253f4912016-04-06 09:19:55 +10001153 return ERR_PTR(error);
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001154
1155 xfs_ilock(ip, XFS_ILOCK_EXCL);
Dave Chinner3a6a8542016-03-01 09:41:33 +11001156 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL | join_flags);
1157 join_flags = 0;
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001158
1159 /*
1160 * CAP_FOWNER overrides the following restrictions:
1161 *
1162 * The user ID of the calling process must be equal to the file owner
1163 * ID, except in cases where the CAP_FSETID capability is applicable.
1164 */
1165 if (!inode_owner_or_capable(VFS_I(ip))) {
1166 error = -EPERM;
1167 goto out_cancel;
1168 }
1169
1170 if (mp->m_flags & XFS_MOUNT_WSYNC)
1171 xfs_trans_set_sync(tp);
1172
1173 return tp;
1174
1175out_cancel:
Christoph Hellwig4906e212015-06-04 13:47:56 +10001176 xfs_trans_cancel(tp);
Dave Chinner3a6a8542016-03-01 09:41:33 +11001177out_unlock:
1178 if (join_flags)
1179 xfs_iunlock(ip, join_flags);
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001180 return ERR_PTR(error);
1181}
1182
Iustin Pop9b94fcc2015-02-02 10:26:26 +11001183/*
1184 * extent size hint validation is somewhat cumbersome. Rules are:
1185 *
1186 * 1. extent size hint is only valid for directories and regular files
Dave Chinnere7b89482016-01-04 16:44:15 +11001187 * 2. FS_XFLAG_EXTSIZE is only valid for regular files
1188 * 3. FS_XFLAG_EXTSZINHERIT is only valid for directories.
Iustin Pop9b94fcc2015-02-02 10:26:26 +11001189 * 4. can only be changed on regular files if no extents are allocated
1190 * 5. can be changed on directories at any time
1191 * 6. extsize hint of 0 turns off hints, clears inode flags.
1192 * 7. Extent size must be a multiple of the appropriate block size.
1193 * 8. for non-realtime files, the extent size hint must be limited
1194 * to half the AG size to avoid alignment extending the extent beyond the
1195 * limits of the AG.
Darrick J. Wong80e4e122017-10-17 21:37:42 -07001196 *
1197 * Please keep this function in sync with xfs_scrub_inode_extsize.
Iustin Pop9b94fcc2015-02-02 10:26:26 +11001198 */
kbuild test robotf92090e2015-02-05 11:13:21 +11001199static int
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001200xfs_ioctl_setattr_check_extsize(
1201 struct xfs_inode *ip,
1202 struct fsxattr *fa)
1203{
1204 struct xfs_mount *mp = ip->i_mount;
1205
Dave Chinnerc19b3b052016-02-09 16:54:58 +11001206 if ((fa->fsx_xflags & FS_XFLAG_EXTSIZE) && !S_ISREG(VFS_I(ip)->i_mode))
Iustin Pop9b94fcc2015-02-02 10:26:26 +11001207 return -EINVAL;
1208
Dave Chinnere7b89482016-01-04 16:44:15 +11001209 if ((fa->fsx_xflags & FS_XFLAG_EXTSZINHERIT) &&
Dave Chinnerc19b3b052016-02-09 16:54:58 +11001210 !S_ISDIR(VFS_I(ip)->i_mode))
Iustin Pop9b94fcc2015-02-02 10:26:26 +11001211 return -EINVAL;
1212
Dave Chinnerc19b3b052016-02-09 16:54:58 +11001213 if (S_ISREG(VFS_I(ip)->i_mode) && ip->i_d.di_nextents &&
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001214 ((ip->i_d.di_extsize << mp->m_sb.sb_blocklog) != fa->fsx_extsize))
1215 return -EINVAL;
1216
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001217 if (fa->fsx_extsize != 0) {
1218 xfs_extlen_t size;
1219 xfs_fsblock_t extsize_fsb;
1220
1221 extsize_fsb = XFS_B_TO_FSB(mp, fa->fsx_extsize);
1222 if (extsize_fsb > MAXEXTLEN)
1223 return -EINVAL;
1224
1225 if (XFS_IS_REALTIME_INODE(ip) ||
Dave Chinnere7b89482016-01-04 16:44:15 +11001226 (fa->fsx_xflags & FS_XFLAG_REALTIME)) {
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001227 size = mp->m_sb.sb_rextsize << mp->m_sb.sb_blocklog;
1228 } else {
1229 size = mp->m_sb.sb_blocksize;
1230 if (extsize_fsb > mp->m_sb.sb_agblocks / 2)
1231 return -EINVAL;
1232 }
1233
1234 if (fa->fsx_extsize % size)
1235 return -EINVAL;
Iustin Pop9b94fcc2015-02-02 10:26:26 +11001236 } else
Dave Chinnere7b89482016-01-04 16:44:15 +11001237 fa->fsx_xflags &= ~(FS_XFLAG_EXTSIZE | FS_XFLAG_EXTSZINHERIT);
Iustin Pop9b94fcc2015-02-02 10:26:26 +11001238
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001239 return 0;
1240}
1241
Darrick J. Wongf7ca3522016-10-03 09:11:43 -07001242/*
1243 * CoW extent size hint validation rules are:
1244 *
1245 * 1. CoW extent size hint can only be set if reflink is enabled on the fs.
1246 * The inode does not have to have any shared blocks, but it must be a v3.
1247 * 2. FS_XFLAG_COWEXTSIZE is only valid for directories and regular files;
1248 * for a directory, the hint is propagated to new files.
1249 * 3. Can be changed on files & directories at any time.
1250 * 4. CoW extsize hint of 0 turns off hints, clears inode flags.
1251 * 5. Extent size must be a multiple of the appropriate block size.
1252 * 6. The extent size hint must be limited to half the AG size to avoid
1253 * alignment extending the extent beyond the limits of the AG.
Darrick J. Wong80e4e122017-10-17 21:37:42 -07001254 *
1255 * Please keep this function in sync with xfs_scrub_inode_cowextsize.
Darrick J. Wongf7ca3522016-10-03 09:11:43 -07001256 */
1257static int
1258xfs_ioctl_setattr_check_cowextsize(
1259 struct xfs_inode *ip,
1260 struct fsxattr *fa)
1261{
1262 struct xfs_mount *mp = ip->i_mount;
1263
1264 if (!(fa->fsx_xflags & FS_XFLAG_COWEXTSIZE))
1265 return 0;
1266
1267 if (!xfs_sb_version_hasreflink(&ip->i_mount->m_sb) ||
1268 ip->i_d.di_version != 3)
1269 return -EINVAL;
1270
1271 if (!S_ISREG(VFS_I(ip)->i_mode) && !S_ISDIR(VFS_I(ip)->i_mode))
1272 return -EINVAL;
1273
1274 if (fa->fsx_cowextsize != 0) {
1275 xfs_extlen_t size;
1276 xfs_fsblock_t cowextsize_fsb;
1277
1278 cowextsize_fsb = XFS_B_TO_FSB(mp, fa->fsx_cowextsize);
1279 if (cowextsize_fsb > MAXEXTLEN)
1280 return -EINVAL;
1281
1282 size = mp->m_sb.sb_blocksize;
1283 if (cowextsize_fsb > mp->m_sb.sb_agblocks / 2)
1284 return -EINVAL;
1285
1286 if (fa->fsx_cowextsize % size)
1287 return -EINVAL;
1288 } else
1289 fa->fsx_xflags &= ~FS_XFLAG_COWEXTSIZE;
1290
1291 return 0;
1292}
1293
kbuild test robotf92090e2015-02-05 11:13:21 +11001294static int
Dave Chinner23bd0732015-02-02 10:22:53 +11001295xfs_ioctl_setattr_check_projid(
1296 struct xfs_inode *ip,
1297 struct fsxattr *fa)
1298{
1299 /* Disallow 32bit project ids if projid32bit feature is not enabled. */
Darrick J. Wongc8ce5402017-06-16 11:00:05 -07001300 if (fa->fsx_projid > (uint16_t)-1 &&
Dave Chinner23bd0732015-02-02 10:22:53 +11001301 !xfs_sb_version_hasprojid32bit(&ip->i_mount->m_sb))
1302 return -EINVAL;
1303
1304 /*
1305 * Project Quota ID state is only allowed to change from within the init
1306 * namespace. Enforce that restriction only if we are trying to change
1307 * the quota ID state. Everything else is allowed in user namespaces.
1308 */
1309 if (current_user_ns() == &init_user_ns)
1310 return 0;
1311
1312 if (xfs_get_projid(ip) != fa->fsx_projid)
1313 return -EINVAL;
Dave Chinnere7b89482016-01-04 16:44:15 +11001314 if ((fa->fsx_xflags & FS_XFLAG_PROJINHERIT) !=
Dave Chinner23bd0732015-02-02 10:22:53 +11001315 (ip->i_d.di_flags & XFS_DIFLAG_PROJINHERIT))
1316 return -EINVAL;
1317
1318 return 0;
1319}
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001320
1321STATIC int
1322xfs_ioctl_setattr(
1323 xfs_inode_t *ip,
Dave Chinnerfd179b92015-02-02 10:16:25 +11001324 struct fsxattr *fa)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001325{
1326 struct xfs_mount *mp = ip->i_mount;
1327 struct xfs_trans *tp;
Christoph Hellwig7d095252009-06-08 15:33:32 +02001328 struct xfs_dquot *udqp = NULL;
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001329 struct xfs_dquot *pdqp = NULL;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001330 struct xfs_dquot *olddquot = NULL;
1331 int code;
Dave Chinner3a6a8542016-03-01 09:41:33 +11001332 int join_flags = 0;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001333
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001334 trace_xfs_ioctl_setattr(ip);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001335
Dave Chinner23bd0732015-02-02 10:22:53 +11001336 code = xfs_ioctl_setattr_check_projid(ip, fa);
1337 if (code)
1338 return code;
Arkadiusz Mi?kiewicz23963e542010-08-26 10:19:43 +00001339
1340 /*
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001341 * If disk quotas is on, we make sure that the dquots do exist on disk,
1342 * before we start any other transactions. Trying to do this later
1343 * is messy. We don't care to take a readlock to look at the ids
1344 * in inode here, because we can't hold it across the trans_reserve.
1345 * If the IDs do change before we take the ilock, we're covered
1346 * because the i_*dquot fields will get updated anyway.
1347 */
Dave Chinnerfd179b92015-02-02 10:16:25 +11001348 if (XFS_IS_QUOTA_ON(mp)) {
Christoph Hellwig7d095252009-06-08 15:33:32 +02001349 code = xfs_qm_vop_dqalloc(ip, ip->i_d.di_uid,
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001350 ip->i_d.di_gid, fa->fsx_projid,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001351 XFS_QMOPT_PQUOTA, &udqp, NULL, &pdqp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001352 if (code)
1353 return code;
1354 }
1355
Dave Chinner3a6a8542016-03-01 09:41:33 +11001356 /*
1357 * Changing DAX config may require inode locking for mapping
1358 * invalidation. These need to be held all the way to transaction commit
1359 * or cancel time, so need to be passed through to
1360 * xfs_ioctl_setattr_get_trans() so it can apply them to the join call
1361 * appropriately.
1362 */
1363 code = xfs_ioctl_setattr_dax_invalidate(ip, fa, &join_flags);
1364 if (code)
1365 goto error_free_dquots;
1366
1367 tp = xfs_ioctl_setattr_get_trans(ip, join_flags);
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001368 if (IS_ERR(tp)) {
1369 code = PTR_ERR(tp);
1370 goto error_free_dquots;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001371 }
1372
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001373
Dave Chinnerfd179b92015-02-02 10:16:25 +11001374 if (XFS_IS_QUOTA_RUNNING(mp) && XFS_IS_PQUOTA_ON(mp) &&
1375 xfs_get_projid(ip) != fa->fsx_projid) {
1376 code = xfs_qm_vop_chown_reserve(tp, ip, udqp, NULL, pdqp,
1377 capable(CAP_FOWNER) ? XFS_QMOPT_FORCE_RES : 0);
1378 if (code) /* out of quota */
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001379 goto error_trans_cancel;
Dave Chinnerfd179b92015-02-02 10:16:25 +11001380 }
1381
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001382 code = xfs_ioctl_setattr_check_extsize(ip, fa);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001383 if (code)
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001384 goto error_trans_cancel;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001385
Darrick J. Wongf7ca3522016-10-03 09:11:43 -07001386 code = xfs_ioctl_setattr_check_cowextsize(ip, fa);
1387 if (code)
1388 goto error_trans_cancel;
1389
Dave Chinner29a17c02015-02-02 10:14:25 +11001390 code = xfs_ioctl_setattr_xflags(tp, ip, fa);
1391 if (code)
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001392 goto error_trans_cancel;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001393
1394 /*
Dave Chinnerfd179b92015-02-02 10:16:25 +11001395 * Change file ownership. Must be the owner or privileged. CAP_FSETID
1396 * overrides the following restrictions:
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001397 *
Dave Chinnerfd179b92015-02-02 10:16:25 +11001398 * The set-user-ID and set-group-ID bits of a file will be cleared upon
1399 * successful return from chown()
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001400 */
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001401
Dave Chinnerc19b3b052016-02-09 16:54:58 +11001402 if ((VFS_I(ip)->i_mode & (S_ISUID|S_ISGID)) &&
Dave Chinnerfd179b92015-02-02 10:16:25 +11001403 !capable_wrt_inode_uidgid(VFS_I(ip), CAP_FSETID))
Dave Chinnerc19b3b052016-02-09 16:54:58 +11001404 VFS_I(ip)->i_mode &= ~(S_ISUID|S_ISGID);
Dave Chinnerfd179b92015-02-02 10:16:25 +11001405
1406 /* Change the ownerships and register project quota modifications */
1407 if (xfs_get_projid(ip) != fa->fsx_projid) {
1408 if (XFS_IS_QUOTA_RUNNING(mp) && XFS_IS_PQUOTA_ON(mp)) {
1409 olddquot = xfs_qm_vop_chown(tp, ip,
1410 &ip->i_pdquot, pdqp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001411 }
Dave Chinnerfd179b92015-02-02 10:16:25 +11001412 ASSERT(ip->i_d.di_version > 1);
1413 xfs_set_projid(ip, fa->fsx_projid);
Christoph Hellwigf13fae22008-07-21 16:16:15 +10001414 }
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001415
Dave Chinnera8727032014-10-02 09:20:30 +10001416 /*
1417 * Only set the extent size hint if we've already determined that the
1418 * extent size hint should be set on the inode. If no extent size flags
1419 * are set on the inode then unconditionally clear the extent size hint.
1420 */
Dave Chinnerfd179b92015-02-02 10:16:25 +11001421 if (ip->i_d.di_flags & (XFS_DIFLAG_EXTSIZE | XFS_DIFLAG_EXTSZINHERIT))
1422 ip->i_d.di_extsize = fa->fsx_extsize >> mp->m_sb.sb_blocklog;
1423 else
1424 ip->i_d.di_extsize = 0;
Darrick J. Wongf7ca3522016-10-03 09:11:43 -07001425 if (ip->i_d.di_version == 3 &&
1426 (ip->i_d.di_flags2 & XFS_DIFLAG2_COWEXTSIZE))
1427 ip->i_d.di_cowextsize = fa->fsx_cowextsize >>
1428 mp->m_sb.sb_blocklog;
1429 else
1430 ip->i_d.di_cowextsize = 0;
Dave Chinnera8727032014-10-02 09:20:30 +10001431
Christoph Hellwig70393312015-06-04 13:48:08 +10001432 code = xfs_trans_commit(tp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001433
1434 /*
1435 * Release any dquot(s) the inode had kept before chown.
1436 */
Christoph Hellwig7d095252009-06-08 15:33:32 +02001437 xfs_qm_dqrele(olddquot);
1438 xfs_qm_dqrele(udqp);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001439 xfs_qm_dqrele(pdqp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001440
Christoph Hellwig288699f2010-06-23 18:11:15 +10001441 return code;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001442
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001443error_trans_cancel:
Christoph Hellwig4906e212015-06-04 13:47:56 +10001444 xfs_trans_cancel(tp);
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001445error_free_dquots:
Christoph Hellwig7d095252009-06-08 15:33:32 +02001446 xfs_qm_dqrele(udqp);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001447 xfs_qm_dqrele(pdqp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001448 return code;
1449}
1450
Christoph Hellwigc83bfab2007-10-11 17:47:00 +10001451STATIC int
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001452xfs_ioc_fssetxattr(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 xfs_inode_t *ip,
1454 struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 void __user *arg)
1456{
1457 struct fsxattr fa;
Jan Karad9457dc2012-06-12 16:20:39 +02001458 int error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001459
1460 if (copy_from_user(&fa, arg, sizeof(fa)))
1461 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462
Jan Karad9457dc2012-06-12 16:20:39 +02001463 error = mnt_want_write_file(filp);
1464 if (error)
1465 return error;
Dave Chinnerfd179b92015-02-02 10:16:25 +11001466 error = xfs_ioctl_setattr(ip, &fa);
Jan Karad9457dc2012-06-12 16:20:39 +02001467 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10001468 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001469}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001471STATIC int
1472xfs_ioc_getxflags(
1473 xfs_inode_t *ip,
1474 void __user *arg)
1475{
1476 unsigned int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001478 flags = xfs_di2lxflags(ip->i_d.di_flags);
1479 if (copy_to_user(arg, &flags, sizeof(flags)))
1480 return -EFAULT;
1481 return 0;
1482}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001484STATIC int
1485xfs_ioc_setxflags(
Dave Chinnerf96291f2015-02-02 10:15:56 +11001486 struct xfs_inode *ip,
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001487 struct file *filp,
1488 void __user *arg)
1489{
Dave Chinnerf96291f2015-02-02 10:15:56 +11001490 struct xfs_trans *tp;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001491 struct fsxattr fa;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001492 unsigned int flags;
Dave Chinner3a6a8542016-03-01 09:41:33 +11001493 int join_flags = 0;
Dave Chinnerf96291f2015-02-02 10:15:56 +11001494 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001496 if (copy_from_user(&flags, arg, sizeof(flags)))
1497 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001499 if (flags & ~(FS_IMMUTABLE_FL | FS_APPEND_FL | \
1500 FS_NOATIME_FL | FS_NODUMP_FL | \
1501 FS_SYNC_FL))
1502 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001504 fa.fsx_xflags = xfs_merge_ioc_xflags(flags, xfs_ip2xflags(ip));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505
Jan Karad9457dc2012-06-12 16:20:39 +02001506 error = mnt_want_write_file(filp);
1507 if (error)
1508 return error;
Dave Chinnerf96291f2015-02-02 10:15:56 +11001509
Dave Chinner3a6a8542016-03-01 09:41:33 +11001510 /*
1511 * Changing DAX config may require inode locking for mapping
1512 * invalidation. These need to be held all the way to transaction commit
1513 * or cancel time, so need to be passed through to
1514 * xfs_ioctl_setattr_get_trans() so it can apply them to the join call
1515 * appropriately.
1516 */
1517 error = xfs_ioctl_setattr_dax_invalidate(ip, &fa, &join_flags);
1518 if (error)
1519 goto out_drop_write;
1520
1521 tp = xfs_ioctl_setattr_get_trans(ip, join_flags);
Dave Chinnerf96291f2015-02-02 10:15:56 +11001522 if (IS_ERR(tp)) {
1523 error = PTR_ERR(tp);
1524 goto out_drop_write;
1525 }
1526
1527 error = xfs_ioctl_setattr_xflags(tp, ip, &fa);
1528 if (error) {
Christoph Hellwig4906e212015-06-04 13:47:56 +10001529 xfs_trans_cancel(tp);
Dave Chinnerf96291f2015-02-02 10:15:56 +11001530 goto out_drop_write;
1531 }
1532
Christoph Hellwig70393312015-06-04 13:48:08 +10001533 error = xfs_trans_commit(tp);
Dave Chinnerf96291f2015-02-02 10:15:56 +11001534out_drop_write:
Jan Karad9457dc2012-06-12 16:20:39 +02001535 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10001536 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537}
1538
Christoph Hellwig232b51942017-10-17 14:16:19 -07001539static bool
1540xfs_getbmap_format(
1541 struct kgetbmap *p,
1542 struct getbmapx __user *u,
1543 size_t recsize)
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001544{
Christoph Hellwig232b51942017-10-17 14:16:19 -07001545 if (put_user(p->bmv_offset, &u->bmv_offset) ||
1546 put_user(p->bmv_block, &u->bmv_block) ||
1547 put_user(p->bmv_length, &u->bmv_length) ||
1548 put_user(0, &u->bmv_count) ||
1549 put_user(0, &u->bmv_entries))
1550 return false;
1551 if (recsize < sizeof(struct getbmapx))
1552 return true;
1553 if (put_user(0, &u->bmv_iflags) ||
1554 put_user(p->bmv_oflags, &u->bmv_oflags) ||
1555 put_user(0, &u->bmv_unused1) ||
1556 put_user(0, &u->bmv_unused2))
1557 return false;
1558 return true;
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001559}
1560
1561STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562xfs_ioc_getbmap(
Christoph Hellwig8f3e2052016-07-20 11:29:35 +10001563 struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 unsigned int cmd,
1565 void __user *arg)
1566{
Darrick J. Wongbe6324c2017-04-03 15:17:57 -07001567 struct getbmapx bmx = { 0 };
Christoph Hellwig232b51942017-10-17 14:16:19 -07001568 struct kgetbmap *buf;
1569 size_t recsize;
1570 int error, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
Christoph Hellwig232b51942017-10-17 14:16:19 -07001572 switch (cmd) {
1573 case XFS_IOC_GETBMAPA:
1574 bmx.bmv_iflags = BMV_IF_ATTRFORK;
1575 /*FALLTHRU*/
1576 case XFS_IOC_GETBMAP:
1577 if (file->f_mode & FMODE_NOCMTIME)
1578 bmx.bmv_iflags |= BMV_IF_NO_DMAPI_READ;
1579 /* struct getbmap is a strict subset of struct getbmapx. */
1580 recsize = sizeof(struct getbmap);
1581 break;
1582 case XFS_IOC_GETBMAPX:
1583 recsize = sizeof(struct getbmapx);
1584 break;
1585 default:
1586 return -EINVAL;
1587 }
1588
1589 if (copy_from_user(&bmx, arg, recsize))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001590 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001592 if (bmx.bmv_count < 2)
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001593 return -EINVAL;
Christoph Hellwig232b51942017-10-17 14:16:19 -07001594 if (bmx.bmv_count > ULONG_MAX / recsize)
1595 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596
Christoph Hellwig232b51942017-10-17 14:16:19 -07001597 buf = kmem_zalloc_large(bmx.bmv_count * sizeof(*buf), 0);
1598 if (!buf)
1599 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
Christoph Hellwig232b51942017-10-17 14:16:19 -07001601 error = xfs_getbmap(XFS_I(file_inode(file)), &bmx, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 if (error)
Christoph Hellwig232b51942017-10-17 14:16:19 -07001603 goto out_free_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604
Christoph Hellwig232b51942017-10-17 14:16:19 -07001605 error = -EFAULT;
1606 if (copy_to_user(arg, &bmx, recsize))
1607 goto out_free_buf;
1608 arg += recsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609
Christoph Hellwig232b51942017-10-17 14:16:19 -07001610 for (i = 0; i < bmx.bmv_entries; i++) {
1611 if (!xfs_getbmap_format(buf + i, arg, recsize))
1612 goto out_free_buf;
1613 arg += recsize;
1614 }
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001615
Christoph Hellwig232b51942017-10-17 14:16:19 -07001616 error = 0;
1617out_free_buf:
1618 kmem_free(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 return 0;
1620}
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001621
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001622struct getfsmap_info {
1623 struct xfs_mount *mp;
Christoph Hellwig9d17e142017-04-21 11:24:41 -07001624 struct fsmap_head __user *data;
1625 unsigned int idx;
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001626 __u32 last_flags;
1627};
1628
1629STATIC int
1630xfs_getfsmap_format(struct xfs_fsmap *xfm, void *priv)
1631{
1632 struct getfsmap_info *info = priv;
1633 struct fsmap fm;
1634
1635 trace_xfs_getfsmap_mapping(info->mp, xfm);
1636
1637 info->last_flags = xfm->fmr_flags;
1638 xfs_fsmap_from_internal(&fm, xfm);
Christoph Hellwig9d17e142017-04-21 11:24:41 -07001639 if (copy_to_user(&info->data->fmh_recs[info->idx++], &fm,
1640 sizeof(struct fsmap)))
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001641 return -EFAULT;
1642
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001643 return 0;
1644}
1645
1646STATIC int
1647xfs_ioc_getfsmap(
1648 struct xfs_inode *ip,
Christoph Hellwig9d17e142017-04-21 11:24:41 -07001649 struct fsmap_head __user *arg)
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001650{
Christoph Hellwigef2b67e2017-04-21 11:24:40 -07001651 struct getfsmap_info info = { NULL };
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001652 struct xfs_fsmap_head xhead = {0};
1653 struct fsmap_head head;
1654 bool aborted = false;
1655 int error;
1656
1657 if (copy_from_user(&head, arg, sizeof(struct fsmap_head)))
1658 return -EFAULT;
1659 if (memchr_inv(head.fmh_reserved, 0, sizeof(head.fmh_reserved)) ||
1660 memchr_inv(head.fmh_keys[0].fmr_reserved, 0,
1661 sizeof(head.fmh_keys[0].fmr_reserved)) ||
1662 memchr_inv(head.fmh_keys[1].fmr_reserved, 0,
1663 sizeof(head.fmh_keys[1].fmr_reserved)))
1664 return -EINVAL;
1665
1666 xhead.fmh_iflags = head.fmh_iflags;
1667 xhead.fmh_count = head.fmh_count;
1668 xfs_fsmap_to_internal(&xhead.fmh_keys[0], &head.fmh_keys[0]);
1669 xfs_fsmap_to_internal(&xhead.fmh_keys[1], &head.fmh_keys[1]);
1670
1671 trace_xfs_getfsmap_low_key(ip->i_mount, &xhead.fmh_keys[0]);
1672 trace_xfs_getfsmap_high_key(ip->i_mount, &xhead.fmh_keys[1]);
1673
1674 info.mp = ip->i_mount;
Christoph Hellwig9d17e142017-04-21 11:24:41 -07001675 info.data = arg;
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001676 error = xfs_getfsmap(ip->i_mount, &xhead, xfs_getfsmap_format, &info);
1677 if (error == XFS_BTREE_QUERY_RANGE_ABORT) {
1678 error = 0;
1679 aborted = true;
1680 } else if (error)
1681 return error;
1682
1683 /* If we didn't abort, set the "last" flag in the last fmx */
Darrick J. Wong12e4a382017-04-23 10:45:21 -07001684 if (!aborted && info.idx) {
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001685 info.last_flags |= FMR_OF_LAST;
Christoph Hellwig9d17e142017-04-21 11:24:41 -07001686 if (copy_to_user(&info.data->fmh_recs[info.idx - 1].fmr_flags,
1687 &info.last_flags, sizeof(info.last_flags)))
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001688 return -EFAULT;
1689 }
1690
1691 /* copy back header */
1692 head.fmh_entries = xhead.fmh_entries;
1693 head.fmh_oflags = xhead.fmh_oflags;
1694 if (copy_to_user(arg, &head, sizeof(struct fsmap_head)))
1695 return -EFAULT;
1696
1697 return 0;
1698}
1699
Darrick J. Wong36fd6e82017-10-17 21:37:34 -07001700STATIC int
1701xfs_ioc_scrub_metadata(
1702 struct xfs_inode *ip,
1703 void __user *arg)
1704{
1705 struct xfs_scrub_metadata scrub;
1706 int error;
1707
1708 if (!capable(CAP_SYS_ADMIN))
1709 return -EPERM;
1710
1711 if (copy_from_user(&scrub, arg, sizeof(scrub)))
1712 return -EFAULT;
1713
1714 error = xfs_scrub_metadata(ip, &scrub);
1715 if (error)
1716 return error;
1717
1718 if (copy_to_user(arg, &scrub, sizeof(scrub)))
1719 return -EFAULT;
1720
1721 return 0;
1722}
1723
Dave Chinnera133d952013-08-12 20:49:48 +10001724int
1725xfs_ioc_swapext(
1726 xfs_swapext_t *sxp)
1727{
1728 xfs_inode_t *ip, *tip;
1729 struct fd f, tmp;
1730 int error = 0;
1731
1732 /* Pull information for the target fd */
1733 f = fdget((int)sxp->sx_fdtarget);
1734 if (!f.file) {
Dave Chinner24513372014-06-25 14:58:08 +10001735 error = -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001736 goto out;
1737 }
1738
1739 if (!(f.file->f_mode & FMODE_WRITE) ||
1740 !(f.file->f_mode & FMODE_READ) ||
1741 (f.file->f_flags & O_APPEND)) {
Dave Chinner24513372014-06-25 14:58:08 +10001742 error = -EBADF;
Dave Chinnera133d952013-08-12 20:49:48 +10001743 goto out_put_file;
1744 }
1745
1746 tmp = fdget((int)sxp->sx_fdtmp);
1747 if (!tmp.file) {
Dave Chinner24513372014-06-25 14:58:08 +10001748 error = -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001749 goto out_put_file;
1750 }
1751
1752 if (!(tmp.file->f_mode & FMODE_WRITE) ||
1753 !(tmp.file->f_mode & FMODE_READ) ||
1754 (tmp.file->f_flags & O_APPEND)) {
Dave Chinner24513372014-06-25 14:58:08 +10001755 error = -EBADF;
Dave Chinnera133d952013-08-12 20:49:48 +10001756 goto out_put_tmp_file;
1757 }
1758
1759 if (IS_SWAPFILE(file_inode(f.file)) ||
1760 IS_SWAPFILE(file_inode(tmp.file))) {
Dave Chinner24513372014-06-25 14:58:08 +10001761 error = -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001762 goto out_put_tmp_file;
1763 }
1764
Jann Horn7f1b6242016-07-20 10:30:30 +10001765 /*
1766 * We need to ensure that the fds passed in point to XFS inodes
1767 * before we cast and access them as XFS structures as we have no
1768 * control over what the user passes us here.
1769 */
1770 if (f.file->f_op != &xfs_file_operations ||
1771 tmp.file->f_op != &xfs_file_operations) {
1772 error = -EINVAL;
1773 goto out_put_tmp_file;
1774 }
1775
Dave Chinnera133d952013-08-12 20:49:48 +10001776 ip = XFS_I(file_inode(f.file));
1777 tip = XFS_I(file_inode(tmp.file));
1778
1779 if (ip->i_mount != tip->i_mount) {
Dave Chinner24513372014-06-25 14:58:08 +10001780 error = -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001781 goto out_put_tmp_file;
1782 }
1783
1784 if (ip->i_ino == tip->i_ino) {
Dave Chinner24513372014-06-25 14:58:08 +10001785 error = -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001786 goto out_put_tmp_file;
1787 }
1788
1789 if (XFS_FORCED_SHUTDOWN(ip->i_mount)) {
Dave Chinner24513372014-06-25 14:58:08 +10001790 error = -EIO;
Dave Chinnera133d952013-08-12 20:49:48 +10001791 goto out_put_tmp_file;
1792 }
1793
1794 error = xfs_swap_extents(ip, tip, sxp);
1795
1796 out_put_tmp_file:
1797 fdput(tmp);
1798 out_put_file:
1799 fdput(f);
1800 out:
1801 return error;
1802}
1803
Eric Sandeenf7664b32018-05-15 13:21:48 -07001804static int
1805xfs_ioc_getlabel(
1806 struct xfs_mount *mp,
1807 char __user *user_label)
1808{
1809 struct xfs_sb *sbp = &mp->m_sb;
1810 char label[XFSLABEL_MAX + 1];
1811
1812 /* Paranoia */
1813 BUILD_BUG_ON(sizeof(sbp->sb_fname) > FSLABEL_MAX);
1814
Arnd Bergmann4bb8b652018-06-05 19:42:45 -07001815 /* 1 larger than sb_fname, so this ensures a trailing NUL char */
1816 memset(label, 0, sizeof(label));
Eric Sandeenf7664b32018-05-15 13:21:48 -07001817 spin_lock(&mp->m_sb_lock);
Arnd Bergmann4bb8b652018-06-05 19:42:45 -07001818 strncpy(label, sbp->sb_fname, XFSLABEL_MAX);
Eric Sandeenf7664b32018-05-15 13:21:48 -07001819 spin_unlock(&mp->m_sb_lock);
1820
Arnd Bergmann4bb8b652018-06-05 19:42:45 -07001821 if (copy_to_user(user_label, label, sizeof(label)))
Eric Sandeenf7664b32018-05-15 13:21:48 -07001822 return -EFAULT;
1823 return 0;
1824}
1825
1826static int
1827xfs_ioc_setlabel(
1828 struct file *filp,
1829 struct xfs_mount *mp,
1830 char __user *newlabel)
1831{
1832 struct xfs_sb *sbp = &mp->m_sb;
1833 char label[XFSLABEL_MAX + 1];
1834 size_t len;
1835 int error;
1836
1837 if (!capable(CAP_SYS_ADMIN))
1838 return -EPERM;
1839 /*
1840 * The generic ioctl allows up to FSLABEL_MAX chars, but XFS is much
1841 * smaller, at 12 bytes. We copy one more to be sure we find the
1842 * (required) NULL character to test the incoming label length.
1843 * NB: The on disk label doesn't need to be null terminated.
1844 */
1845 if (copy_from_user(label, newlabel, XFSLABEL_MAX + 1))
1846 return -EFAULT;
1847 len = strnlen(label, XFSLABEL_MAX + 1);
1848 if (len > sizeof(sbp->sb_fname))
1849 return -EINVAL;
1850
1851 error = mnt_want_write_file(filp);
1852 if (error)
1853 return error;
1854
1855 spin_lock(&mp->m_sb_lock);
1856 memset(sbp->sb_fname, 0, sizeof(sbp->sb_fname));
Arnd Bergmann4bb8b652018-06-05 19:42:45 -07001857 memcpy(sbp->sb_fname, label, len);
Eric Sandeenf7664b32018-05-15 13:21:48 -07001858 spin_unlock(&mp->m_sb_lock);
1859
1860 /*
1861 * Now we do several things to satisfy userspace.
1862 * In addition to normal logging of the primary superblock, we also
1863 * immediately write these changes to sector zero for the primary, then
1864 * update all backup supers (as xfs_db does for a label change), then
1865 * invalidate the block device page cache. This is so that any prior
1866 * buffered reads from userspace (i.e. from blkid) are invalidated,
1867 * and userspace will see the newly-written label.
1868 */
1869 error = xfs_sync_sb_buf(mp);
1870 if (error)
1871 goto out;
1872 /*
1873 * growfs also updates backup supers so lock against that.
1874 */
1875 mutex_lock(&mp->m_growlock);
1876 error = xfs_update_secondary_sbs(mp);
1877 mutex_unlock(&mp->m_growlock);
1878
1879 invalidate_bdev(mp->m_ddev_targp->bt_bdev);
1880
1881out:
1882 mnt_drop_write_file(filp);
1883 return error;
1884}
1885
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001886/*
1887 * Note: some of the ioctl's return positive numbers as a
1888 * byte count indicating success, such as readlink_by_handle.
1889 * So we don't "sign flip" like most other routines. This means
1890 * true errors need to be returned as a negative value.
1891 */
1892long
1893xfs_file_ioctl(
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001894 struct file *filp,
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001895 unsigned int cmd,
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001896 unsigned long p)
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001897{
Al Viro496ad9a2013-01-23 17:07:38 -05001898 struct inode *inode = file_inode(filp);
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001899 struct xfs_inode *ip = XFS_I(inode);
1900 struct xfs_mount *mp = ip->i_mount;
1901 void __user *arg = (void __user *)p;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001902 int error;
1903
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001904 trace_xfs_file_ioctl(ip);
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001905
1906 switch (cmd) {
Christoph Hellwiga46db602011-01-07 13:02:04 +00001907 case FITRIM:
1908 return xfs_ioc_trim(mp, arg);
Eric Sandeenf7664b32018-05-15 13:21:48 -07001909 case FS_IOC_GETFSLABEL:
1910 return xfs_ioc_getlabel(mp, arg);
1911 case FS_IOC_SETFSLABEL:
1912 return xfs_ioc_setlabel(filp, mp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001913 case XFS_IOC_ALLOCSP:
1914 case XFS_IOC_FREESP:
1915 case XFS_IOC_RESVSP:
1916 case XFS_IOC_UNRESVSP:
1917 case XFS_IOC_ALLOCSP64:
1918 case XFS_IOC_FREESP64:
1919 case XFS_IOC_RESVSP64:
Dave Chinner44722352010-08-24 12:02:11 +10001920 case XFS_IOC_UNRESVSP64:
1921 case XFS_IOC_ZERO_RANGE: {
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001922 xfs_flock64_t bf;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001923
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001924 if (copy_from_user(&bf, arg, sizeof(bf)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001925 return -EFAULT;
Christoph Hellwig8f3e2052016-07-20 11:29:35 +10001926 return xfs_ioc_space(filp, cmd, &bf);
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001927 }
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001928 case XFS_IOC_DIOINFO: {
1929 struct dioattr da;
1930 xfs_buftarg_t *target =
1931 XFS_IS_REALTIME_INODE(ip) ?
1932 mp->m_rtdev_targp : mp->m_ddev_targp;
1933
Eric Sandeen7c71ee72014-01-21 16:46:23 -06001934 da.d_mem = da.d_miniosz = target->bt_logical_sectorsize;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001935 da.d_maxiosz = INT_MAX & ~(da.d_miniosz - 1);
1936
1937 if (copy_to_user(arg, &da, sizeof(da)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001938 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001939 return 0;
1940 }
1941
1942 case XFS_IOC_FSBULKSTAT_SINGLE:
1943 case XFS_IOC_FSBULKSTAT:
1944 case XFS_IOC_FSINUMBERS:
1945 return xfs_ioc_bulkstat(mp, cmd, arg);
1946
1947 case XFS_IOC_FSGEOMETRY_V1:
1948 return xfs_ioc_fsgeometry_v1(mp, arg);
1949
1950 case XFS_IOC_FSGEOMETRY:
1951 return xfs_ioc_fsgeometry(mp, arg);
1952
1953 case XFS_IOC_GETVERSION:
1954 return put_user(inode->i_generation, (int __user *)arg);
1955
1956 case XFS_IOC_FSGETXATTR:
1957 return xfs_ioc_fsgetxattr(ip, 0, arg);
1958 case XFS_IOC_FSGETXATTRA:
1959 return xfs_ioc_fsgetxattr(ip, 1, arg);
Lachlan McIlroy3b2816b2008-04-18 12:43:35 +10001960 case XFS_IOC_FSSETXATTR:
Lachlan McIlroy65e67f52008-04-18 12:59:45 +10001961 return xfs_ioc_fssetxattr(ip, filp, arg);
1962 case XFS_IOC_GETXFLAGS:
1963 return xfs_ioc_getxflags(ip, arg);
1964 case XFS_IOC_SETXFLAGS:
1965 return xfs_ioc_setxflags(ip, filp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001966
1967 case XFS_IOC_FSSETDM: {
1968 struct fsdmidata dmi;
1969
1970 if (copy_from_user(&dmi, arg, sizeof(dmi)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001971 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001972
Jan Karad9457dc2012-06-12 16:20:39 +02001973 error = mnt_want_write_file(filp);
1974 if (error)
1975 return error;
1976
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001977 error = xfs_set_dmattrs(ip, dmi.fsd_dmevmask,
1978 dmi.fsd_dmstate);
Jan Karad9457dc2012-06-12 16:20:39 +02001979 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10001980 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001981 }
1982
1983 case XFS_IOC_GETBMAP:
1984 case XFS_IOC_GETBMAPA:
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001985 case XFS_IOC_GETBMAPX:
Christoph Hellwig232b51942017-10-17 14:16:19 -07001986 return xfs_ioc_getbmap(filp, cmd, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001987
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001988 case FS_IOC_GETFSMAP:
1989 return xfs_ioc_getfsmap(ip, arg);
1990
Darrick J. Wong36fd6e82017-10-17 21:37:34 -07001991 case XFS_IOC_SCRUB_METADATA:
1992 return xfs_ioc_scrub_metadata(ip, arg);
1993
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001994 case XFS_IOC_FD_TO_HANDLE:
1995 case XFS_IOC_PATH_TO_HANDLE:
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001996 case XFS_IOC_PATH_TO_FSHANDLE: {
1997 xfs_fsop_handlereq_t hreq;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001998
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001999 if (copy_from_user(&hreq, arg, sizeof(hreq)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002000 return -EFAULT;
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06002001 return xfs_find_handle(cmd, &hreq);
2002 }
2003 case XFS_IOC_OPEN_BY_HANDLE: {
2004 xfs_fsop_handlereq_t hreq;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002005
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06002006 if (copy_from_user(&hreq, arg, sizeof(xfs_fsop_handlereq_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002007 return -EFAULT;
Christoph Hellwigd296d302009-01-19 02:02:57 +01002008 return xfs_open_by_handle(filp, &hreq);
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06002009 }
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002010 case XFS_IOC_FSSETDM_BY_HANDLE:
Christoph Hellwigd296d302009-01-19 02:02:57 +01002011 return xfs_fssetdm_by_handle(filp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002012
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06002013 case XFS_IOC_READLINK_BY_HANDLE: {
2014 xfs_fsop_handlereq_t hreq;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002015
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06002016 if (copy_from_user(&hreq, arg, sizeof(xfs_fsop_handlereq_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002017 return -EFAULT;
Christoph Hellwigd296d302009-01-19 02:02:57 +01002018 return xfs_readlink_by_handle(filp, &hreq);
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06002019 }
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002020 case XFS_IOC_ATTRLIST_BY_HANDLE:
Christoph Hellwigd296d302009-01-19 02:02:57 +01002021 return xfs_attrlist_by_handle(filp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002022
2023 case XFS_IOC_ATTRMULTI_BY_HANDLE:
Christoph Hellwigd296d302009-01-19 02:02:57 +01002024 return xfs_attrmulti_by_handle(filp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002025
2026 case XFS_IOC_SWAPEXT: {
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06002027 struct xfs_swapext sxp;
2028
2029 if (copy_from_user(&sxp, arg, sizeof(xfs_swapext_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002030 return -EFAULT;
Jan Karad9457dc2012-06-12 16:20:39 +02002031 error = mnt_want_write_file(filp);
2032 if (error)
2033 return error;
Dave Chinnera133d952013-08-12 20:49:48 +10002034 error = xfs_ioc_swapext(&sxp);
Jan Karad9457dc2012-06-12 16:20:39 +02002035 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10002036 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002037 }
2038
2039 case XFS_IOC_FSCOUNTS: {
2040 xfs_fsop_counts_t out;
2041
2042 error = xfs_fs_counts(mp, &out);
2043 if (error)
Dave Chinner24513372014-06-25 14:58:08 +10002044 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002045
2046 if (copy_to_user(arg, &out, sizeof(out)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002047 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002048 return 0;
2049 }
2050
2051 case XFS_IOC_SET_RESBLKS: {
2052 xfs_fsop_resblks_t inout;
Darrick J. Wongc8ce5402017-06-16 11:00:05 -07002053 uint64_t in;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002054
2055 if (!capable(CAP_SYS_ADMIN))
2056 return -EPERM;
2057
Eric Sandeend5db0f92010-02-05 22:59:53 +00002058 if (mp->m_flags & XFS_MOUNT_RDONLY)
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002059 return -EROFS;
Eric Sandeend5db0f92010-02-05 22:59:53 +00002060
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002061 if (copy_from_user(&inout, arg, sizeof(inout)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002062 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002063
Jan Karad9457dc2012-06-12 16:20:39 +02002064 error = mnt_want_write_file(filp);
2065 if (error)
2066 return error;
2067
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002068 /* input parameter is passed in resblks field of structure */
2069 in = inout.resblks;
2070 error = xfs_reserve_blocks(mp, &in, &inout);
Jan Karad9457dc2012-06-12 16:20:39 +02002071 mnt_drop_write_file(filp);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002072 if (error)
Dave Chinner24513372014-06-25 14:58:08 +10002073 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002074
2075 if (copy_to_user(arg, &inout, sizeof(inout)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002076 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002077 return 0;
2078 }
2079
2080 case XFS_IOC_GET_RESBLKS: {
2081 xfs_fsop_resblks_t out;
2082
2083 if (!capable(CAP_SYS_ADMIN))
2084 return -EPERM;
2085
2086 error = xfs_reserve_blocks(mp, NULL, &out);
2087 if (error)
Dave Chinner24513372014-06-25 14:58:08 +10002088 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002089
2090 if (copy_to_user(arg, &out, sizeof(out)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002091 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002092
2093 return 0;
2094 }
2095
2096 case XFS_IOC_FSGROWFSDATA: {
2097 xfs_growfs_data_t in;
2098
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002099 if (copy_from_user(&in, arg, sizeof(in)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002100 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002101
Jan Karad9457dc2012-06-12 16:20:39 +02002102 error = mnt_want_write_file(filp);
2103 if (error)
2104 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002105 error = xfs_growfs_data(mp, &in);
Jan Karad9457dc2012-06-12 16:20:39 +02002106 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10002107 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002108 }
2109
2110 case XFS_IOC_FSGROWFSLOG: {
2111 xfs_growfs_log_t in;
2112
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002113 if (copy_from_user(&in, arg, sizeof(in)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002114 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002115
Jan Karad9457dc2012-06-12 16:20:39 +02002116 error = mnt_want_write_file(filp);
2117 if (error)
2118 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002119 error = xfs_growfs_log(mp, &in);
Jan Karad9457dc2012-06-12 16:20:39 +02002120 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10002121 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002122 }
2123
2124 case XFS_IOC_FSGROWFSRT: {
2125 xfs_growfs_rt_t in;
2126
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002127 if (copy_from_user(&in, arg, sizeof(in)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002128 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002129
Jan Karad9457dc2012-06-12 16:20:39 +02002130 error = mnt_want_write_file(filp);
2131 if (error)
2132 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002133 error = xfs_growfs_rt(mp, &in);
Jan Karad9457dc2012-06-12 16:20:39 +02002134 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10002135 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002136 }
2137
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002138 case XFS_IOC_GOINGDOWN: {
Darrick J. Wongc8ce5402017-06-16 11:00:05 -07002139 uint32_t in;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002140
2141 if (!capable(CAP_SYS_ADMIN))
2142 return -EPERM;
2143
Darrick J. Wongc8ce5402017-06-16 11:00:05 -07002144 if (get_user(in, (uint32_t __user *)arg))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002145 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002146
Dave Chinner24513372014-06-25 14:58:08 +10002147 return xfs_fs_goingdown(mp, in);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002148 }
2149
2150 case XFS_IOC_ERROR_INJECTION: {
2151 xfs_error_injection_t in;
2152
2153 if (!capable(CAP_SYS_ADMIN))
2154 return -EPERM;
2155
2156 if (copy_from_user(&in, arg, sizeof(in)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002157 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002158
Darrick J. Wong31965ef2017-06-20 17:54:46 -07002159 return xfs_errortag_add(mp, in.errtag);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002160 }
2161
2162 case XFS_IOC_ERROR_CLEARALL:
2163 if (!capable(CAP_SYS_ADMIN))
2164 return -EPERM;
2165
Darrick J. Wong31965ef2017-06-20 17:54:46 -07002166 return xfs_errortag_clearall(mp);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002167
Brian Foster8ca149d2012-11-07 12:21:12 -05002168 case XFS_IOC_FREE_EOFBLOCKS: {
Dwight Engenb9fe5052013-08-15 14:08:02 -04002169 struct xfs_fs_eofblocks eofb;
2170 struct xfs_eofblocks keofb;
Brian Foster8ca149d2012-11-07 12:21:12 -05002171
Dwight Engen8c567a72013-08-15 14:08:03 -04002172 if (!capable(CAP_SYS_ADMIN))
2173 return -EPERM;
2174
2175 if (mp->m_flags & XFS_MOUNT_RDONLY)
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002176 return -EROFS;
Dwight Engen8c567a72013-08-15 14:08:03 -04002177
Brian Foster8ca149d2012-11-07 12:21:12 -05002178 if (copy_from_user(&eofb, arg, sizeof(eofb)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002179 return -EFAULT;
Brian Foster8ca149d2012-11-07 12:21:12 -05002180
Dwight Engenb9fe5052013-08-15 14:08:02 -04002181 error = xfs_fs_eofblocks_from_user(&eofb, &keofb);
2182 if (error)
Dave Chinner24513372014-06-25 14:58:08 +10002183 return error;
Brian Foster8ca149d2012-11-07 12:21:12 -05002184
Dave Chinner24513372014-06-25 14:58:08 +10002185 return xfs_icache_free_eofblocks(mp, &keofb);
Brian Foster8ca149d2012-11-07 12:21:12 -05002186 }
2187
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002188 default:
2189 return -ENOTTY;
2190 }
2191}