blob: ec3c6c401ee74224ba8599dc06682f49b17f6bdd [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
Alexey Dobriyanf37ea142006-09-28 10:52:04 +1000607 if (inode->i_flags & (S_IMMUTABLE|S_APPEND))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000608 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Eric Sandeenad4a8ac2005-09-02 16:41:16 +1000610 if (!(filp->f_mode & FMODE_WRITE))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000611 return -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Alexey Dobriyanf37ea142006-09-28 10:52:04 +1000613 if (!S_ISREG(inode->i_mode))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000614 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100616 if (filp->f_flags & O_DSYNC)
617 flags |= XFS_PREALLOC_SYNC;
Christoph Hellwig8f3e2052016-07-20 11:29:35 +1000618 if (filp->f_mode & FMODE_NOCMTIME)
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100619 flags |= XFS_PREALLOC_INVISIBLE;
620
Jan Karad9457dc2012-06-12 16:20:39 +0200621 error = mnt_want_write_file(filp);
622 if (error)
623 return error;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700624
Christoph Hellwig781355c2015-02-16 11:59:50 +1100625 xfs_ilock(ip, iolock);
Dan Williams69eb5fa2018-03-20 14:42:38 -0700626 error = xfs_break_layouts(inode, &iolock, BREAK_UNMAP);
Christoph Hellwig781355c2015-02-16 11:59:50 +1100627 if (error)
628 goto out_unlock;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700629
630 switch (bf->l_whence) {
631 case 0: /*SEEK_SET*/
632 break;
633 case 1: /*SEEK_CUR*/
634 bf->l_start += filp->f_pos;
635 break;
636 case 2: /*SEEK_END*/
637 bf->l_start += XFS_ISIZE(ip);
638 break;
639 default:
Dave Chinner24513372014-06-25 14:58:08 +1000640 error = -EINVAL;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700641 goto out_unlock;
642 }
643
644 /*
645 * length of <= 0 for resv/unresv/zero is invalid. length for
646 * alloc/free is ignored completely and we have no idea what userspace
647 * might have set it to, so set it to zero to allow range
648 * checks to pass.
649 */
650 switch (cmd) {
651 case XFS_IOC_ZERO_RANGE:
652 case XFS_IOC_RESVSP:
653 case XFS_IOC_RESVSP64:
654 case XFS_IOC_UNRESVSP:
655 case XFS_IOC_UNRESVSP64:
656 if (bf->l_len <= 0) {
Dave Chinner24513372014-06-25 14:58:08 +1000657 error = -EINVAL;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700658 goto out_unlock;
659 }
660 break;
661 default:
662 bf->l_len = 0;
663 break;
664 }
665
666 if (bf->l_start < 0 ||
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100667 bf->l_start > inode->i_sb->s_maxbytes ||
Christoph Hellwig865e9442013-10-12 00:55:08 -0700668 bf->l_start + bf->l_len < 0 ||
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100669 bf->l_start + bf->l_len >= inode->i_sb->s_maxbytes) {
Dave Chinner24513372014-06-25 14:58:08 +1000670 error = -EINVAL;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700671 goto out_unlock;
672 }
673
674 switch (cmd) {
675 case XFS_IOC_ZERO_RANGE:
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100676 flags |= XFS_PREALLOC_SET;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700677 error = xfs_zero_file_space(ip, bf->l_start, bf->l_len);
Christoph Hellwig865e9442013-10-12 00:55:08 -0700678 break;
679 case XFS_IOC_RESVSP:
680 case XFS_IOC_RESVSP64:
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100681 flags |= XFS_PREALLOC_SET;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700682 error = xfs_alloc_file_space(ip, bf->l_start, bf->l_len,
683 XFS_BMAPI_PREALLOC);
Christoph Hellwig865e9442013-10-12 00:55:08 -0700684 break;
685 case XFS_IOC_UNRESVSP:
686 case XFS_IOC_UNRESVSP64:
687 error = xfs_free_file_space(ip, bf->l_start, bf->l_len);
688 break;
689 case XFS_IOC_ALLOCSP:
690 case XFS_IOC_ALLOCSP64:
691 case XFS_IOC_FREESP:
692 case XFS_IOC_FREESP64:
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100693 flags |= XFS_PREALLOC_CLEAR;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700694 if (bf->l_start > XFS_ISIZE(ip)) {
695 error = xfs_alloc_file_space(ip, XFS_ISIZE(ip),
696 bf->l_start - XFS_ISIZE(ip), 0);
697 if (error)
698 goto out_unlock;
699 }
700
701 iattr.ia_valid = ATTR_SIZE;
702 iattr.ia_size = bf->l_start;
703
Jan Kara69bca802016-05-26 14:46:43 +0200704 error = xfs_vn_setattr_size(file_dentry(filp), &iattr);
Christoph Hellwig865e9442013-10-12 00:55:08 -0700705 break;
706 default:
707 ASSERT(0);
Dave Chinner24513372014-06-25 14:58:08 +1000708 error = -EINVAL;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700709 }
710
711 if (error)
712 goto out_unlock;
713
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100714 error = xfs_update_prealloc_flags(ip, flags);
Christoph Hellwig865e9442013-10-12 00:55:08 -0700715
716out_unlock:
Christoph Hellwig781355c2015-02-16 11:59:50 +1100717 xfs_iunlock(ip, iolock);
Jan Karad9457dc2012-06-12 16:20:39 +0200718 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +1000719 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720}
721
722STATIC int
723xfs_ioc_bulkstat(
724 xfs_mount_t *mp,
725 unsigned int cmd,
726 void __user *arg)
727{
728 xfs_fsop_bulkreq_t bulkreq;
729 int count; /* # of records returned */
730 xfs_ino_t inlast; /* last inode number */
731 int done;
732 int error;
733
734 /* done = 1 if there are more stats to get and if bulkstat */
735 /* should be called again (unused here, but used in dmapi) */
736
737 if (!capable(CAP_SYS_ADMIN))
738 return -EPERM;
739
740 if (XFS_FORCED_SHUTDOWN(mp))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000741 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
743 if (copy_from_user(&bulkreq, arg, sizeof(xfs_fsop_bulkreq_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000744 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
746 if (copy_from_user(&inlast, bulkreq.lastip, sizeof(__s64)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000747 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
749 if ((count = bulkreq.icount) <= 0)
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000750 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100752 if (bulkreq.ubuffer == NULL)
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000753 return -EINVAL;
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100754
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 if (cmd == XFS_IOC_FSINUMBERS)
756 error = xfs_inumbers(mp, &inlast, &count,
Michal Marekfaa63e92007-07-11 11:10:19 +1000757 bulkreq.ubuffer, xfs_inumbers_fmt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 else if (cmd == XFS_IOC_FSBULKSTAT_SINGLE)
Christoph Hellwigd716f8e2014-07-24 12:07:15 +1000759 error = xfs_bulkstat_one(mp, inlast, bulkreq.ubuffer,
760 sizeof(xfs_bstat_t), NULL, &done);
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100761 else /* XFS_IOC_FSBULKSTAT */
Christoph Hellwig7dce11d2010-06-23 18:11:11 +1000762 error = xfs_bulkstat(mp, &inlast, &count, xfs_bulkstat_one,
763 sizeof(xfs_bstat_t), bulkreq.ubuffer,
764 &done);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
766 if (error)
Dave Chinner24513372014-06-25 14:58:08 +1000767 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
769 if (bulkreq.ocount != NULL) {
770 if (copy_to_user(bulkreq.lastip, &inlast,
771 sizeof(xfs_ino_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000772 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
774 if (copy_to_user(bulkreq.ocount, &count, sizeof(count)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000775 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 }
777
778 return 0;
779}
780
781STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782xfs_ioc_fsgeometry(
Dave Chinner1b6d9682019-04-12 07:41:16 -0700783 struct xfs_mount *mp,
784 void __user *arg,
785 int struct_version)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786{
Dave Chinner1b6d9682019-04-12 07:41:16 -0700787 struct xfs_fsop_geom fsgeo;
788 size_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 int error;
790
Dave Chinner1b6d9682019-04-12 07:41:16 -0700791 error = xfs_fs_geometry(&mp->m_sb, &fsgeo, struct_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 if (error)
Dave Chinner24513372014-06-25 14:58:08 +1000793 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
Dave Chinner1b6d9682019-04-12 07:41:16 -0700795 if (struct_version <= 3)
796 len = sizeof(struct xfs_fsop_geom_v1);
797 else if (struct_version == 4)
798 len = sizeof(struct xfs_fsop_geom_v4);
799 else
800 len = sizeof(fsgeo);
801
802 if (copy_to_user(arg, &fsgeo, len))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000803 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 return 0;
805}
806
807/*
808 * Linux extended inode flags interface.
809 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
811STATIC unsigned int
812xfs_merge_ioc_xflags(
813 unsigned int flags,
814 unsigned int start)
815{
816 unsigned int xflags = start;
817
Eric Sandeen39058a02007-02-10 18:37:10 +1100818 if (flags & FS_IMMUTABLE_FL)
Dave Chinnere7b89482016-01-04 16:44:15 +1100819 xflags |= FS_XFLAG_IMMUTABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 else
Dave Chinnere7b89482016-01-04 16:44:15 +1100821 xflags &= ~FS_XFLAG_IMMUTABLE;
Eric Sandeen39058a02007-02-10 18:37:10 +1100822 if (flags & FS_APPEND_FL)
Dave Chinnere7b89482016-01-04 16:44:15 +1100823 xflags |= FS_XFLAG_APPEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 else
Dave Chinnere7b89482016-01-04 16:44:15 +1100825 xflags &= ~FS_XFLAG_APPEND;
Eric Sandeen39058a02007-02-10 18:37:10 +1100826 if (flags & FS_SYNC_FL)
Dave Chinnere7b89482016-01-04 16:44:15 +1100827 xflags |= FS_XFLAG_SYNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 else
Dave Chinnere7b89482016-01-04 16:44:15 +1100829 xflags &= ~FS_XFLAG_SYNC;
Eric Sandeen39058a02007-02-10 18:37:10 +1100830 if (flags & FS_NOATIME_FL)
Dave Chinnere7b89482016-01-04 16:44:15 +1100831 xflags |= FS_XFLAG_NOATIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 else
Dave Chinnere7b89482016-01-04 16:44:15 +1100833 xflags &= ~FS_XFLAG_NOATIME;
Eric Sandeen39058a02007-02-10 18:37:10 +1100834 if (flags & FS_NODUMP_FL)
Dave Chinnere7b89482016-01-04 16:44:15 +1100835 xflags |= FS_XFLAG_NODUMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 else
Dave Chinnere7b89482016-01-04 16:44:15 +1100837 xflags &= ~FS_XFLAG_NODUMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
839 return xflags;
840}
841
842STATIC unsigned int
843xfs_di2lxflags(
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700844 uint16_t di_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845{
846 unsigned int flags = 0;
847
848 if (di_flags & XFS_DIFLAG_IMMUTABLE)
Eric Sandeen39058a02007-02-10 18:37:10 +1100849 flags |= FS_IMMUTABLE_FL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 if (di_flags & XFS_DIFLAG_APPEND)
Eric Sandeen39058a02007-02-10 18:37:10 +1100851 flags |= FS_APPEND_FL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 if (di_flags & XFS_DIFLAG_SYNC)
Eric Sandeen39058a02007-02-10 18:37:10 +1100853 flags |= FS_SYNC_FL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 if (di_flags & XFS_DIFLAG_NOATIME)
Eric Sandeen39058a02007-02-10 18:37:10 +1100855 flags |= FS_NOATIME_FL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 if (di_flags & XFS_DIFLAG_NODUMP)
Eric Sandeen39058a02007-02-10 18:37:10 +1100857 flags |= FS_NODUMP_FL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 return flags;
859}
860
861STATIC int
Christoph Hellwigc83bfab2007-10-11 17:47:00 +1000862xfs_ioc_fsgetxattr(
863 xfs_inode_t *ip,
864 int attr,
865 void __user *arg)
866{
867 struct fsxattr fa;
868
Dan Rosenberga122eb22010-09-06 18:24:57 -0400869 memset(&fa, 0, sizeof(struct fsxattr));
870
Christoph Hellwigc83bfab2007-10-11 17:47:00 +1000871 xfs_ilock(ip, XFS_ILOCK_SHARED);
872 fa.fsx_xflags = xfs_ip2xflags(ip);
873 fa.fsx_extsize = ip->i_d.di_extsize << ip->i_mount->m_sb.sb_blocklog;
Darrick J. Wongf7ca3522016-10-03 09:11:43 -0700874 fa.fsx_cowextsize = ip->i_d.di_cowextsize <<
875 ip->i_mount->m_sb.sb_blocklog;
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000876 fa.fsx_projid = xfs_get_projid(ip);
Christoph Hellwigc83bfab2007-10-11 17:47:00 +1000877
878 if (attr) {
879 if (ip->i_afp) {
880 if (ip->i_afp->if_flags & XFS_IFEXTENTS)
Eric Sandeen5d829302016-11-08 12:59:42 +1100881 fa.fsx_nextents = xfs_iext_count(ip->i_afp);
Christoph Hellwigc83bfab2007-10-11 17:47:00 +1000882 else
883 fa.fsx_nextents = ip->i_d.di_anextents;
884 } else
885 fa.fsx_nextents = 0;
886 } else {
887 if (ip->i_df.if_flags & XFS_IFEXTENTS)
Eric Sandeen5d829302016-11-08 12:59:42 +1100888 fa.fsx_nextents = xfs_iext_count(&ip->i_df);
Christoph Hellwigc83bfab2007-10-11 17:47:00 +1000889 else
890 fa.fsx_nextents = ip->i_d.di_nextents;
891 }
892 xfs_iunlock(ip, XFS_ILOCK_SHARED);
893
894 if (copy_to_user(arg, &fa, sizeof(fa)))
895 return -EFAULT;
896 return 0;
897}
898
Christoph Hellwigdd606872017-09-02 08:21:20 -0700899STATIC uint16_t
900xfs_flags2diflags(
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000901 struct xfs_inode *ip,
902 unsigned int xflags)
903{
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000904 /* can't set PREALLOC this way, just preserve it */
Christoph Hellwigdd606872017-09-02 08:21:20 -0700905 uint16_t di_flags =
906 (ip->i_d.di_flags & XFS_DIFLAG_PREALLOC);
907
Dave Chinnere7b89482016-01-04 16:44:15 +1100908 if (xflags & FS_XFLAG_IMMUTABLE)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000909 di_flags |= XFS_DIFLAG_IMMUTABLE;
Dave Chinnere7b89482016-01-04 16:44:15 +1100910 if (xflags & FS_XFLAG_APPEND)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000911 di_flags |= XFS_DIFLAG_APPEND;
Dave Chinnere7b89482016-01-04 16:44:15 +1100912 if (xflags & FS_XFLAG_SYNC)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000913 di_flags |= XFS_DIFLAG_SYNC;
Dave Chinnere7b89482016-01-04 16:44:15 +1100914 if (xflags & FS_XFLAG_NOATIME)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000915 di_flags |= XFS_DIFLAG_NOATIME;
Dave Chinnere7b89482016-01-04 16:44:15 +1100916 if (xflags & FS_XFLAG_NODUMP)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000917 di_flags |= XFS_DIFLAG_NODUMP;
Dave Chinnere7b89482016-01-04 16:44:15 +1100918 if (xflags & FS_XFLAG_NODEFRAG)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000919 di_flags |= XFS_DIFLAG_NODEFRAG;
Dave Chinnere7b89482016-01-04 16:44:15 +1100920 if (xflags & FS_XFLAG_FILESTREAM)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000921 di_flags |= XFS_DIFLAG_FILESTREAM;
Dave Chinnerc19b3b052016-02-09 16:54:58 +1100922 if (S_ISDIR(VFS_I(ip)->i_mode)) {
Dave Chinnere7b89482016-01-04 16:44:15 +1100923 if (xflags & FS_XFLAG_RTINHERIT)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000924 di_flags |= XFS_DIFLAG_RTINHERIT;
Dave Chinnere7b89482016-01-04 16:44:15 +1100925 if (xflags & FS_XFLAG_NOSYMLINKS)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000926 di_flags |= XFS_DIFLAG_NOSYMLINKS;
Dave Chinnere7b89482016-01-04 16:44:15 +1100927 if (xflags & FS_XFLAG_EXTSZINHERIT)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000928 di_flags |= XFS_DIFLAG_EXTSZINHERIT;
Dave Chinnere7b89482016-01-04 16:44:15 +1100929 if (xflags & FS_XFLAG_PROJINHERIT)
Dave Chinner9336e3a2014-10-02 09:18:40 +1000930 di_flags |= XFS_DIFLAG_PROJINHERIT;
Dave Chinnerc19b3b052016-02-09 16:54:58 +1100931 } else if (S_ISREG(VFS_I(ip)->i_mode)) {
Dave Chinnere7b89482016-01-04 16:44:15 +1100932 if (xflags & FS_XFLAG_REALTIME)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000933 di_flags |= XFS_DIFLAG_REALTIME;
Dave Chinnere7b89482016-01-04 16:44:15 +1100934 if (xflags & FS_XFLAG_EXTSIZE)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000935 di_flags |= XFS_DIFLAG_EXTSIZE;
936 }
Dave Chinner58f88ca2016-01-04 16:44:15 +1100937
Christoph Hellwigdd606872017-09-02 08:21:20 -0700938 return di_flags;
939}
Dave Chinner58f88ca2016-01-04 16:44:15 +1100940
Christoph Hellwigdd606872017-09-02 08:21:20 -0700941STATIC uint64_t
942xfs_flags2diflags2(
943 struct xfs_inode *ip,
944 unsigned int xflags)
945{
946 uint64_t di_flags2 =
947 (ip->i_d.di_flags2 & XFS_DIFLAG2_REFLINK);
948
Dave Chinner58f88ca2016-01-04 16:44:15 +1100949 if (xflags & FS_XFLAG_DAX)
950 di_flags2 |= XFS_DIFLAG2_DAX;
Darrick J. Wongf7ca3522016-10-03 09:11:43 -0700951 if (xflags & FS_XFLAG_COWEXTSIZE)
952 di_flags2 |= XFS_DIFLAG2_COWEXTSIZE;
Dave Chinner58f88ca2016-01-04 16:44:15 +1100953
Christoph Hellwigdd606872017-09-02 08:21:20 -0700954 return di_flags2;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000955}
956
Christoph Hellwigf13fae22008-07-21 16:16:15 +1000957STATIC void
958xfs_diflags_to_linux(
959 struct xfs_inode *ip)
960{
David Chinnere4f75292008-08-13 16:00:45 +1000961 struct inode *inode = VFS_I(ip);
Christoph Hellwigf13fae22008-07-21 16:16:15 +1000962 unsigned int xflags = xfs_ip2xflags(ip);
963
Dave Chinnere7b89482016-01-04 16:44:15 +1100964 if (xflags & FS_XFLAG_IMMUTABLE)
Christoph Hellwigf13fae22008-07-21 16:16:15 +1000965 inode->i_flags |= S_IMMUTABLE;
966 else
967 inode->i_flags &= ~S_IMMUTABLE;
Dave Chinnere7b89482016-01-04 16:44:15 +1100968 if (xflags & FS_XFLAG_APPEND)
Christoph Hellwigf13fae22008-07-21 16:16:15 +1000969 inode->i_flags |= S_APPEND;
970 else
971 inode->i_flags &= ~S_APPEND;
Dave Chinnere7b89482016-01-04 16:44:15 +1100972 if (xflags & FS_XFLAG_SYNC)
Christoph Hellwigf13fae22008-07-21 16:16:15 +1000973 inode->i_flags |= S_SYNC;
974 else
975 inode->i_flags &= ~S_SYNC;
Dave Chinnere7b89482016-01-04 16:44:15 +1100976 if (xflags & FS_XFLAG_NOATIME)
Christoph Hellwigf13fae22008-07-21 16:16:15 +1000977 inode->i_flags |= S_NOATIME;
978 else
979 inode->i_flags &= ~S_NOATIME;
Christoph Hellwig742d8422017-08-30 09:23:01 -0700980#if 0 /* disabled until the flag switching races are sorted out */
Dave Chinner58f88ca2016-01-04 16:44:15 +1100981 if (xflags & FS_XFLAG_DAX)
982 inode->i_flags |= S_DAX;
983 else
984 inode->i_flags &= ~S_DAX;
Christoph Hellwig742d8422017-08-30 09:23:01 -0700985#endif
Christoph Hellwigf13fae22008-07-21 16:16:15 +1000986}
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000987
Dave Chinner29a17c02015-02-02 10:14:25 +1100988static int
989xfs_ioctl_setattr_xflags(
990 struct xfs_trans *tp,
991 struct xfs_inode *ip,
992 struct fsxattr *fa)
993{
994 struct xfs_mount *mp = ip->i_mount;
Christoph Hellwigdd606872017-09-02 08:21:20 -0700995 uint64_t di_flags2;
Dave Chinner29a17c02015-02-02 10:14:25 +1100996
997 /* Can't change realtime flag if any extents are allocated. */
998 if ((ip->i_d.di_nextents || ip->i_delayed_blks) &&
Dave Chinnere7b89482016-01-04 16:44:15 +1100999 XFS_IS_REALTIME_INODE(ip) != (fa->fsx_xflags & FS_XFLAG_REALTIME))
Dave Chinner29a17c02015-02-02 10:14:25 +11001000 return -EINVAL;
1001
1002 /* If realtime flag is set then must have realtime device */
Dave Chinnere7b89482016-01-04 16:44:15 +11001003 if (fa->fsx_xflags & FS_XFLAG_REALTIME) {
Dave Chinner29a17c02015-02-02 10:14:25 +11001004 if (mp->m_sb.sb_rblocks == 0 || mp->m_sb.sb_rextsize == 0 ||
1005 (ip->i_d.di_extsize % mp->m_sb.sb_rextsize))
1006 return -EINVAL;
1007 }
1008
Darrick J. Wong1987fd72016-10-10 16:49:29 +11001009 /* Clear reflink if we are actually able to set the rt flag. */
Darrick J. Wongc8e156a2016-10-03 09:11:50 -07001010 if ((fa->fsx_xflags & FS_XFLAG_REALTIME) && xfs_is_reflink_inode(ip))
Darrick J. Wong1987fd72016-10-10 16:49:29 +11001011 ip->i_d.di_flags2 &= ~XFS_DIFLAG2_REFLINK;
Darrick J. Wongc8e156a2016-10-03 09:11:50 -07001012
Darrick J. Wong4f435eb2016-10-03 09:11:50 -07001013 /* Don't allow us to set DAX mode for a reflinked file for now. */
1014 if ((fa->fsx_xflags & FS_XFLAG_DAX) && xfs_is_reflink_inode(ip))
1015 return -EINVAL;
1016
Dave Chinner29a17c02015-02-02 10:14:25 +11001017 /*
1018 * Can't modify an immutable/append-only file unless
1019 * we have appropriate permission.
1020 */
1021 if (((ip->i_d.di_flags & (XFS_DIFLAG_IMMUTABLE | XFS_DIFLAG_APPEND)) ||
Dave Chinnere7b89482016-01-04 16:44:15 +11001022 (fa->fsx_xflags & (FS_XFLAG_IMMUTABLE | FS_XFLAG_APPEND))) &&
Dave Chinner29a17c02015-02-02 10:14:25 +11001023 !capable(CAP_LINUX_IMMUTABLE))
1024 return -EPERM;
1025
Christoph Hellwigdd606872017-09-02 08:21:20 -07001026 /* diflags2 only valid for v3 inodes. */
1027 di_flags2 = xfs_flags2diflags2(ip, fa->fsx_xflags);
1028 if (di_flags2 && ip->i_d.di_version < 3)
1029 return -EINVAL;
1030
1031 ip->i_d.di_flags = xfs_flags2diflags(ip, fa->fsx_xflags);
1032 ip->i_d.di_flags2 = di_flags2;
1033
Dave Chinner29a17c02015-02-02 10:14:25 +11001034 xfs_diflags_to_linux(ip);
1035 xfs_trans_ichgtime(tp, ip, XFS_ICHGTIME_CHG);
1036 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
Bill O'Donnellff6d6af2015-10-12 18:21:22 +11001037 XFS_STATS_INC(mp, xs_ig_attrchg);
Dave Chinner29a17c02015-02-02 10:14:25 +11001038 return 0;
1039}
1040
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001041/*
Dave Chinner3a6a8542016-03-01 09:41:33 +11001042 * If we are changing DAX flags, we have to ensure the file is clean and any
1043 * cached objects in the address space are invalidated and removed. This
1044 * requires us to lock out other IO and page faults similar to a truncate
1045 * operation. The locks need to be held until the transaction has been committed
1046 * so that the cache invalidation is atomic with respect to the DAX flag
1047 * manipulation.
1048 */
1049static int
1050xfs_ioctl_setattr_dax_invalidate(
1051 struct xfs_inode *ip,
1052 struct fsxattr *fa,
1053 int *join_flags)
1054{
1055 struct inode *inode = VFS_I(ip);
Ross Zwisler6851a3d2017-09-18 14:46:03 -07001056 struct super_block *sb = inode->i_sb;
Dave Chinner3a6a8542016-03-01 09:41:33 +11001057 int error;
1058
1059 *join_flags = 0;
1060
1061 /*
1062 * It is only valid to set the DAX flag on regular files and
Dave Chinner64485432016-03-01 09:41:33 +11001063 * directories on filesystems where the block size is equal to the page
Darrick J. Wongaaacdd22018-05-31 15:07:47 -07001064 * size. On directories it serves as an inherited hint so we don't
1065 * have to check the device for dax support or flush pagecache.
Dave Chinner3a6a8542016-03-01 09:41:33 +11001066 */
Dave Chinner64485432016-03-01 09:41:33 +11001067 if (fa->fsx_xflags & FS_XFLAG_DAX) {
1068 if (!(S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode)))
1069 return -EINVAL;
Darrick J. Wongaaacdd22018-05-31 15:07:47 -07001070 if (S_ISREG(inode->i_mode) &&
1071 !bdev_dax_supported(xfs_find_bdev_for_inode(VFS_I(ip)),
Dave Jiang80660f22018-05-30 13:03:46 -07001072 sb->s_blocksize))
Dave Chinner64485432016-03-01 09:41:33 +11001073 return -EINVAL;
1074 }
Dave Chinner3a6a8542016-03-01 09:41:33 +11001075
1076 /* If the DAX state is not changing, we have nothing to do here. */
1077 if ((fa->fsx_xflags & FS_XFLAG_DAX) && IS_DAX(inode))
1078 return 0;
1079 if (!(fa->fsx_xflags & FS_XFLAG_DAX) && !IS_DAX(inode))
1080 return 0;
1081
Darrick J. Wongaaacdd22018-05-31 15:07:47 -07001082 if (S_ISDIR(inode->i_mode))
1083 return 0;
1084
Dave Chinner3a6a8542016-03-01 09:41:33 +11001085 /* lock, flush and invalidate mapping in preparation for flag change */
1086 xfs_ilock(ip, XFS_MMAPLOCK_EXCL | XFS_IOLOCK_EXCL);
1087 error = filemap_write_and_wait(inode->i_mapping);
1088 if (error)
1089 goto out_unlock;
1090 error = invalidate_inode_pages2(inode->i_mapping);
1091 if (error)
1092 goto out_unlock;
1093
1094 *join_flags = XFS_MMAPLOCK_EXCL | XFS_IOLOCK_EXCL;
1095 return 0;
1096
1097out_unlock:
1098 xfs_iunlock(ip, XFS_MMAPLOCK_EXCL | XFS_IOLOCK_EXCL);
1099 return error;
1100
1101}
1102
1103/*
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001104 * Set up the transaction structure for the setattr operation, checking that we
1105 * have permission to do so. On success, return a clean transaction and the
1106 * inode locked exclusively ready for further operation specific checks. On
1107 * failure, return an error without modifying or locking the inode.
Dave Chinner3a6a8542016-03-01 09:41:33 +11001108 *
1109 * The inode might already be IO locked on call. If this is the case, it is
1110 * indicated in @join_flags and we take full responsibility for ensuring they
1111 * are unlocked from now on. Hence if we have an error here, we still have to
1112 * unlock them. Otherwise, once they are joined to the transaction, they will
1113 * be unlocked on commit/cancel.
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001114 */
1115static struct xfs_trans *
1116xfs_ioctl_setattr_get_trans(
Dave Chinner3a6a8542016-03-01 09:41:33 +11001117 struct xfs_inode *ip,
1118 int join_flags)
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001119{
1120 struct xfs_mount *mp = ip->i_mount;
1121 struct xfs_trans *tp;
Dave Chinner3a6a8542016-03-01 09:41:33 +11001122 int error = -EROFS;
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001123
1124 if (mp->m_flags & XFS_MOUNT_RDONLY)
Dave Chinner3a6a8542016-03-01 09:41:33 +11001125 goto out_unlock;
1126 error = -EIO;
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001127 if (XFS_FORCED_SHUTDOWN(mp))
Dave Chinner3a6a8542016-03-01 09:41:33 +11001128 goto out_unlock;
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001129
Christoph Hellwig253f4912016-04-06 09:19:55 +10001130 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_ichange, 0, 0, 0, &tp);
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001131 if (error)
Christoph Hellwig253f4912016-04-06 09:19:55 +10001132 return ERR_PTR(error);
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001133
1134 xfs_ilock(ip, XFS_ILOCK_EXCL);
Dave Chinner3a6a8542016-03-01 09:41:33 +11001135 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL | join_flags);
1136 join_flags = 0;
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001137
1138 /*
1139 * CAP_FOWNER overrides the following restrictions:
1140 *
1141 * The user ID of the calling process must be equal to the file owner
1142 * ID, except in cases where the CAP_FSETID capability is applicable.
1143 */
1144 if (!inode_owner_or_capable(VFS_I(ip))) {
1145 error = -EPERM;
1146 goto out_cancel;
1147 }
1148
1149 if (mp->m_flags & XFS_MOUNT_WSYNC)
1150 xfs_trans_set_sync(tp);
1151
1152 return tp;
1153
1154out_cancel:
Christoph Hellwig4906e212015-06-04 13:47:56 +10001155 xfs_trans_cancel(tp);
Dave Chinner3a6a8542016-03-01 09:41:33 +11001156out_unlock:
1157 if (join_flags)
1158 xfs_iunlock(ip, join_flags);
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001159 return ERR_PTR(error);
1160}
1161
Iustin Pop9b94fcc2015-02-02 10:26:26 +11001162/*
1163 * extent size hint validation is somewhat cumbersome. Rules are:
1164 *
1165 * 1. extent size hint is only valid for directories and regular files
Dave Chinnere7b89482016-01-04 16:44:15 +11001166 * 2. FS_XFLAG_EXTSIZE is only valid for regular files
1167 * 3. FS_XFLAG_EXTSZINHERIT is only valid for directories.
Iustin Pop9b94fcc2015-02-02 10:26:26 +11001168 * 4. can only be changed on regular files if no extents are allocated
1169 * 5. can be changed on directories at any time
1170 * 6. extsize hint of 0 turns off hints, clears inode flags.
1171 * 7. Extent size must be a multiple of the appropriate block size.
1172 * 8. for non-realtime files, the extent size hint must be limited
1173 * to half the AG size to avoid alignment extending the extent beyond the
1174 * limits of the AG.
Darrick J. Wong80e4e122017-10-17 21:37:42 -07001175 *
1176 * Please keep this function in sync with xfs_scrub_inode_extsize.
Iustin Pop9b94fcc2015-02-02 10:26:26 +11001177 */
kbuild test robotf92090e2015-02-05 11:13:21 +11001178static int
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001179xfs_ioctl_setattr_check_extsize(
1180 struct xfs_inode *ip,
1181 struct fsxattr *fa)
1182{
1183 struct xfs_mount *mp = ip->i_mount;
1184
Dave Chinnerc19b3b052016-02-09 16:54:58 +11001185 if ((fa->fsx_xflags & FS_XFLAG_EXTSIZE) && !S_ISREG(VFS_I(ip)->i_mode))
Iustin Pop9b94fcc2015-02-02 10:26:26 +11001186 return -EINVAL;
1187
Dave Chinnere7b89482016-01-04 16:44:15 +11001188 if ((fa->fsx_xflags & FS_XFLAG_EXTSZINHERIT) &&
Dave Chinnerc19b3b052016-02-09 16:54:58 +11001189 !S_ISDIR(VFS_I(ip)->i_mode))
Iustin Pop9b94fcc2015-02-02 10:26:26 +11001190 return -EINVAL;
1191
Dave Chinnerc19b3b052016-02-09 16:54:58 +11001192 if (S_ISREG(VFS_I(ip)->i_mode) && ip->i_d.di_nextents &&
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001193 ((ip->i_d.di_extsize << mp->m_sb.sb_blocklog) != fa->fsx_extsize))
1194 return -EINVAL;
1195
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001196 if (fa->fsx_extsize != 0) {
1197 xfs_extlen_t size;
1198 xfs_fsblock_t extsize_fsb;
1199
1200 extsize_fsb = XFS_B_TO_FSB(mp, fa->fsx_extsize);
1201 if (extsize_fsb > MAXEXTLEN)
1202 return -EINVAL;
1203
1204 if (XFS_IS_REALTIME_INODE(ip) ||
Dave Chinnere7b89482016-01-04 16:44:15 +11001205 (fa->fsx_xflags & FS_XFLAG_REALTIME)) {
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001206 size = mp->m_sb.sb_rextsize << mp->m_sb.sb_blocklog;
1207 } else {
1208 size = mp->m_sb.sb_blocksize;
1209 if (extsize_fsb > mp->m_sb.sb_agblocks / 2)
1210 return -EINVAL;
1211 }
1212
1213 if (fa->fsx_extsize % size)
1214 return -EINVAL;
Iustin Pop9b94fcc2015-02-02 10:26:26 +11001215 } else
Dave Chinnere7b89482016-01-04 16:44:15 +11001216 fa->fsx_xflags &= ~(FS_XFLAG_EXTSIZE | FS_XFLAG_EXTSZINHERIT);
Iustin Pop9b94fcc2015-02-02 10:26:26 +11001217
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001218 return 0;
1219}
1220
Darrick J. Wongf7ca3522016-10-03 09:11:43 -07001221/*
1222 * CoW extent size hint validation rules are:
1223 *
1224 * 1. CoW extent size hint can only be set if reflink is enabled on the fs.
1225 * The inode does not have to have any shared blocks, but it must be a v3.
1226 * 2. FS_XFLAG_COWEXTSIZE is only valid for directories and regular files;
1227 * for a directory, the hint is propagated to new files.
1228 * 3. Can be changed on files & directories at any time.
1229 * 4. CoW extsize hint of 0 turns off hints, clears inode flags.
1230 * 5. Extent size must be a multiple of the appropriate block size.
1231 * 6. The extent size hint must be limited to half the AG size to avoid
1232 * alignment extending the extent beyond the limits of the AG.
Darrick J. Wong80e4e122017-10-17 21:37:42 -07001233 *
1234 * Please keep this function in sync with xfs_scrub_inode_cowextsize.
Darrick J. Wongf7ca3522016-10-03 09:11:43 -07001235 */
1236static int
1237xfs_ioctl_setattr_check_cowextsize(
1238 struct xfs_inode *ip,
1239 struct fsxattr *fa)
1240{
1241 struct xfs_mount *mp = ip->i_mount;
1242
1243 if (!(fa->fsx_xflags & FS_XFLAG_COWEXTSIZE))
1244 return 0;
1245
1246 if (!xfs_sb_version_hasreflink(&ip->i_mount->m_sb) ||
1247 ip->i_d.di_version != 3)
1248 return -EINVAL;
1249
1250 if (!S_ISREG(VFS_I(ip)->i_mode) && !S_ISDIR(VFS_I(ip)->i_mode))
1251 return -EINVAL;
1252
1253 if (fa->fsx_cowextsize != 0) {
1254 xfs_extlen_t size;
1255 xfs_fsblock_t cowextsize_fsb;
1256
1257 cowextsize_fsb = XFS_B_TO_FSB(mp, fa->fsx_cowextsize);
1258 if (cowextsize_fsb > MAXEXTLEN)
1259 return -EINVAL;
1260
1261 size = mp->m_sb.sb_blocksize;
1262 if (cowextsize_fsb > mp->m_sb.sb_agblocks / 2)
1263 return -EINVAL;
1264
1265 if (fa->fsx_cowextsize % size)
1266 return -EINVAL;
1267 } else
1268 fa->fsx_xflags &= ~FS_XFLAG_COWEXTSIZE;
1269
1270 return 0;
1271}
1272
kbuild test robotf92090e2015-02-05 11:13:21 +11001273static int
Dave Chinner23bd0732015-02-02 10:22:53 +11001274xfs_ioctl_setattr_check_projid(
1275 struct xfs_inode *ip,
1276 struct fsxattr *fa)
1277{
1278 /* Disallow 32bit project ids if projid32bit feature is not enabled. */
Darrick J. Wongc8ce5402017-06-16 11:00:05 -07001279 if (fa->fsx_projid > (uint16_t)-1 &&
Dave Chinner23bd0732015-02-02 10:22:53 +11001280 !xfs_sb_version_hasprojid32bit(&ip->i_mount->m_sb))
1281 return -EINVAL;
1282
1283 /*
1284 * Project Quota ID state is only allowed to change from within the init
1285 * namespace. Enforce that restriction only if we are trying to change
1286 * the quota ID state. Everything else is allowed in user namespaces.
1287 */
1288 if (current_user_ns() == &init_user_ns)
1289 return 0;
1290
1291 if (xfs_get_projid(ip) != fa->fsx_projid)
1292 return -EINVAL;
Dave Chinnere7b89482016-01-04 16:44:15 +11001293 if ((fa->fsx_xflags & FS_XFLAG_PROJINHERIT) !=
Dave Chinner23bd0732015-02-02 10:22:53 +11001294 (ip->i_d.di_flags & XFS_DIFLAG_PROJINHERIT))
1295 return -EINVAL;
1296
1297 return 0;
1298}
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001299
1300STATIC int
1301xfs_ioctl_setattr(
1302 xfs_inode_t *ip,
Dave Chinnerfd179b92015-02-02 10:16:25 +11001303 struct fsxattr *fa)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001304{
1305 struct xfs_mount *mp = ip->i_mount;
1306 struct xfs_trans *tp;
Christoph Hellwig7d095252009-06-08 15:33:32 +02001307 struct xfs_dquot *udqp = NULL;
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001308 struct xfs_dquot *pdqp = NULL;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001309 struct xfs_dquot *olddquot = NULL;
1310 int code;
Dave Chinner3a6a8542016-03-01 09:41:33 +11001311 int join_flags = 0;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001312
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001313 trace_xfs_ioctl_setattr(ip);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001314
Dave Chinner23bd0732015-02-02 10:22:53 +11001315 code = xfs_ioctl_setattr_check_projid(ip, fa);
1316 if (code)
1317 return code;
Arkadiusz Mi?kiewicz23963e542010-08-26 10:19:43 +00001318
1319 /*
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001320 * If disk quotas is on, we make sure that the dquots do exist on disk,
1321 * before we start any other transactions. Trying to do this later
1322 * is messy. We don't care to take a readlock to look at the ids
1323 * in inode here, because we can't hold it across the trans_reserve.
1324 * If the IDs do change before we take the ilock, we're covered
1325 * because the i_*dquot fields will get updated anyway.
1326 */
Dave Chinnerfd179b92015-02-02 10:16:25 +11001327 if (XFS_IS_QUOTA_ON(mp)) {
Christoph Hellwig7d095252009-06-08 15:33:32 +02001328 code = xfs_qm_vop_dqalloc(ip, ip->i_d.di_uid,
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001329 ip->i_d.di_gid, fa->fsx_projid,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001330 XFS_QMOPT_PQUOTA, &udqp, NULL, &pdqp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001331 if (code)
1332 return code;
1333 }
1334
Dave Chinner3a6a8542016-03-01 09:41:33 +11001335 /*
1336 * Changing DAX config may require inode locking for mapping
1337 * invalidation. These need to be held all the way to transaction commit
1338 * or cancel time, so need to be passed through to
1339 * xfs_ioctl_setattr_get_trans() so it can apply them to the join call
1340 * appropriately.
1341 */
1342 code = xfs_ioctl_setattr_dax_invalidate(ip, fa, &join_flags);
1343 if (code)
1344 goto error_free_dquots;
1345
1346 tp = xfs_ioctl_setattr_get_trans(ip, join_flags);
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001347 if (IS_ERR(tp)) {
1348 code = PTR_ERR(tp);
1349 goto error_free_dquots;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001350 }
1351
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001352
Dave Chinnerfd179b92015-02-02 10:16:25 +11001353 if (XFS_IS_QUOTA_RUNNING(mp) && XFS_IS_PQUOTA_ON(mp) &&
1354 xfs_get_projid(ip) != fa->fsx_projid) {
1355 code = xfs_qm_vop_chown_reserve(tp, ip, udqp, NULL, pdqp,
1356 capable(CAP_FOWNER) ? XFS_QMOPT_FORCE_RES : 0);
1357 if (code) /* out of quota */
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001358 goto error_trans_cancel;
Dave Chinnerfd179b92015-02-02 10:16:25 +11001359 }
1360
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001361 code = xfs_ioctl_setattr_check_extsize(ip, fa);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001362 if (code)
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001363 goto error_trans_cancel;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001364
Darrick J. Wongf7ca3522016-10-03 09:11:43 -07001365 code = xfs_ioctl_setattr_check_cowextsize(ip, fa);
1366 if (code)
1367 goto error_trans_cancel;
1368
Dave Chinner29a17c02015-02-02 10:14:25 +11001369 code = xfs_ioctl_setattr_xflags(tp, ip, fa);
1370 if (code)
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001371 goto error_trans_cancel;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001372
1373 /*
Dave Chinnerfd179b92015-02-02 10:16:25 +11001374 * Change file ownership. Must be the owner or privileged. CAP_FSETID
1375 * overrides the following restrictions:
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001376 *
Dave Chinnerfd179b92015-02-02 10:16:25 +11001377 * The set-user-ID and set-group-ID bits of a file will be cleared upon
1378 * successful return from chown()
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001379 */
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001380
Dave Chinnerc19b3b052016-02-09 16:54:58 +11001381 if ((VFS_I(ip)->i_mode & (S_ISUID|S_ISGID)) &&
Dave Chinnerfd179b92015-02-02 10:16:25 +11001382 !capable_wrt_inode_uidgid(VFS_I(ip), CAP_FSETID))
Dave Chinnerc19b3b052016-02-09 16:54:58 +11001383 VFS_I(ip)->i_mode &= ~(S_ISUID|S_ISGID);
Dave Chinnerfd179b92015-02-02 10:16:25 +11001384
1385 /* Change the ownerships and register project quota modifications */
1386 if (xfs_get_projid(ip) != fa->fsx_projid) {
1387 if (XFS_IS_QUOTA_RUNNING(mp) && XFS_IS_PQUOTA_ON(mp)) {
1388 olddquot = xfs_qm_vop_chown(tp, ip,
1389 &ip->i_pdquot, pdqp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001390 }
Dave Chinnerfd179b92015-02-02 10:16:25 +11001391 ASSERT(ip->i_d.di_version > 1);
1392 xfs_set_projid(ip, fa->fsx_projid);
Christoph Hellwigf13fae22008-07-21 16:16:15 +10001393 }
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001394
Dave Chinnera8727032014-10-02 09:20:30 +10001395 /*
1396 * Only set the extent size hint if we've already determined that the
1397 * extent size hint should be set on the inode. If no extent size flags
1398 * are set on the inode then unconditionally clear the extent size hint.
1399 */
Dave Chinnerfd179b92015-02-02 10:16:25 +11001400 if (ip->i_d.di_flags & (XFS_DIFLAG_EXTSIZE | XFS_DIFLAG_EXTSZINHERIT))
1401 ip->i_d.di_extsize = fa->fsx_extsize >> mp->m_sb.sb_blocklog;
1402 else
1403 ip->i_d.di_extsize = 0;
Darrick J. Wongf7ca3522016-10-03 09:11:43 -07001404 if (ip->i_d.di_version == 3 &&
1405 (ip->i_d.di_flags2 & XFS_DIFLAG2_COWEXTSIZE))
1406 ip->i_d.di_cowextsize = fa->fsx_cowextsize >>
1407 mp->m_sb.sb_blocklog;
1408 else
1409 ip->i_d.di_cowextsize = 0;
Dave Chinnera8727032014-10-02 09:20:30 +10001410
Christoph Hellwig70393312015-06-04 13:48:08 +10001411 code = xfs_trans_commit(tp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001412
1413 /*
1414 * Release any dquot(s) the inode had kept before chown.
1415 */
Christoph Hellwig7d095252009-06-08 15:33:32 +02001416 xfs_qm_dqrele(olddquot);
1417 xfs_qm_dqrele(udqp);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001418 xfs_qm_dqrele(pdqp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001419
Christoph Hellwig288699f2010-06-23 18:11:15 +10001420 return code;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001421
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001422error_trans_cancel:
Christoph Hellwig4906e212015-06-04 13:47:56 +10001423 xfs_trans_cancel(tp);
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001424error_free_dquots:
Christoph Hellwig7d095252009-06-08 15:33:32 +02001425 xfs_qm_dqrele(udqp);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001426 xfs_qm_dqrele(pdqp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001427 return code;
1428}
1429
Christoph Hellwigc83bfab2007-10-11 17:47:00 +10001430STATIC int
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001431xfs_ioc_fssetxattr(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 xfs_inode_t *ip,
1433 struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 void __user *arg)
1435{
1436 struct fsxattr fa;
Jan Karad9457dc2012-06-12 16:20:39 +02001437 int error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001438
1439 if (copy_from_user(&fa, arg, sizeof(fa)))
1440 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
Jan Karad9457dc2012-06-12 16:20:39 +02001442 error = mnt_want_write_file(filp);
1443 if (error)
1444 return error;
Dave Chinnerfd179b92015-02-02 10:16:25 +11001445 error = xfs_ioctl_setattr(ip, &fa);
Jan Karad9457dc2012-06-12 16:20:39 +02001446 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10001447 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001448}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001450STATIC int
1451xfs_ioc_getxflags(
1452 xfs_inode_t *ip,
1453 void __user *arg)
1454{
1455 unsigned int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001457 flags = xfs_di2lxflags(ip->i_d.di_flags);
1458 if (copy_to_user(arg, &flags, sizeof(flags)))
1459 return -EFAULT;
1460 return 0;
1461}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001463STATIC int
1464xfs_ioc_setxflags(
Dave Chinnerf96291f2015-02-02 10:15:56 +11001465 struct xfs_inode *ip,
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001466 struct file *filp,
1467 void __user *arg)
1468{
Dave Chinnerf96291f2015-02-02 10:15:56 +11001469 struct xfs_trans *tp;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001470 struct fsxattr fa;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001471 unsigned int flags;
Dave Chinner3a6a8542016-03-01 09:41:33 +11001472 int join_flags = 0;
Dave Chinnerf96291f2015-02-02 10:15:56 +11001473 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001475 if (copy_from_user(&flags, arg, sizeof(flags)))
1476 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001478 if (flags & ~(FS_IMMUTABLE_FL | FS_APPEND_FL | \
1479 FS_NOATIME_FL | FS_NODUMP_FL | \
1480 FS_SYNC_FL))
1481 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001483 fa.fsx_xflags = xfs_merge_ioc_xflags(flags, xfs_ip2xflags(ip));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484
Jan Karad9457dc2012-06-12 16:20:39 +02001485 error = mnt_want_write_file(filp);
1486 if (error)
1487 return error;
Dave Chinnerf96291f2015-02-02 10:15:56 +11001488
Dave Chinner3a6a8542016-03-01 09:41:33 +11001489 /*
1490 * Changing DAX config may require inode locking for mapping
1491 * invalidation. These need to be held all the way to transaction commit
1492 * or cancel time, so need to be passed through to
1493 * xfs_ioctl_setattr_get_trans() so it can apply them to the join call
1494 * appropriately.
1495 */
1496 error = xfs_ioctl_setattr_dax_invalidate(ip, &fa, &join_flags);
1497 if (error)
1498 goto out_drop_write;
1499
1500 tp = xfs_ioctl_setattr_get_trans(ip, join_flags);
Dave Chinnerf96291f2015-02-02 10:15:56 +11001501 if (IS_ERR(tp)) {
1502 error = PTR_ERR(tp);
1503 goto out_drop_write;
1504 }
1505
1506 error = xfs_ioctl_setattr_xflags(tp, ip, &fa);
1507 if (error) {
Christoph Hellwig4906e212015-06-04 13:47:56 +10001508 xfs_trans_cancel(tp);
Dave Chinnerf96291f2015-02-02 10:15:56 +11001509 goto out_drop_write;
1510 }
1511
Christoph Hellwig70393312015-06-04 13:48:08 +10001512 error = xfs_trans_commit(tp);
Dave Chinnerf96291f2015-02-02 10:15:56 +11001513out_drop_write:
Jan Karad9457dc2012-06-12 16:20:39 +02001514 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10001515 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516}
1517
Christoph Hellwig232b51942017-10-17 14:16:19 -07001518static bool
1519xfs_getbmap_format(
1520 struct kgetbmap *p,
1521 struct getbmapx __user *u,
1522 size_t recsize)
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001523{
Christoph Hellwig232b51942017-10-17 14:16:19 -07001524 if (put_user(p->bmv_offset, &u->bmv_offset) ||
1525 put_user(p->bmv_block, &u->bmv_block) ||
1526 put_user(p->bmv_length, &u->bmv_length) ||
1527 put_user(0, &u->bmv_count) ||
1528 put_user(0, &u->bmv_entries))
1529 return false;
1530 if (recsize < sizeof(struct getbmapx))
1531 return true;
1532 if (put_user(0, &u->bmv_iflags) ||
1533 put_user(p->bmv_oflags, &u->bmv_oflags) ||
1534 put_user(0, &u->bmv_unused1) ||
1535 put_user(0, &u->bmv_unused2))
1536 return false;
1537 return true;
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001538}
1539
1540STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541xfs_ioc_getbmap(
Christoph Hellwig8f3e2052016-07-20 11:29:35 +10001542 struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 unsigned int cmd,
1544 void __user *arg)
1545{
Darrick J. Wongbe6324c2017-04-03 15:17:57 -07001546 struct getbmapx bmx = { 0 };
Christoph Hellwig232b51942017-10-17 14:16:19 -07001547 struct kgetbmap *buf;
1548 size_t recsize;
1549 int error, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550
Christoph Hellwig232b51942017-10-17 14:16:19 -07001551 switch (cmd) {
1552 case XFS_IOC_GETBMAPA:
1553 bmx.bmv_iflags = BMV_IF_ATTRFORK;
1554 /*FALLTHRU*/
1555 case XFS_IOC_GETBMAP:
1556 if (file->f_mode & FMODE_NOCMTIME)
1557 bmx.bmv_iflags |= BMV_IF_NO_DMAPI_READ;
1558 /* struct getbmap is a strict subset of struct getbmapx. */
1559 recsize = sizeof(struct getbmap);
1560 break;
1561 case XFS_IOC_GETBMAPX:
1562 recsize = sizeof(struct getbmapx);
1563 break;
1564 default:
1565 return -EINVAL;
1566 }
1567
1568 if (copy_from_user(&bmx, arg, recsize))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001569 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001571 if (bmx.bmv_count < 2)
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001572 return -EINVAL;
Christoph Hellwig232b51942017-10-17 14:16:19 -07001573 if (bmx.bmv_count > ULONG_MAX / recsize)
1574 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575
Christoph Hellwig232b51942017-10-17 14:16:19 -07001576 buf = kmem_zalloc_large(bmx.bmv_count * sizeof(*buf), 0);
1577 if (!buf)
1578 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579
Christoph Hellwig232b51942017-10-17 14:16:19 -07001580 error = xfs_getbmap(XFS_I(file_inode(file)), &bmx, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 if (error)
Christoph Hellwig232b51942017-10-17 14:16:19 -07001582 goto out_free_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583
Christoph Hellwig232b51942017-10-17 14:16:19 -07001584 error = -EFAULT;
1585 if (copy_to_user(arg, &bmx, recsize))
1586 goto out_free_buf;
1587 arg += recsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588
Christoph Hellwig232b51942017-10-17 14:16:19 -07001589 for (i = 0; i < bmx.bmv_entries; i++) {
1590 if (!xfs_getbmap_format(buf + i, arg, recsize))
1591 goto out_free_buf;
1592 arg += recsize;
1593 }
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001594
Christoph Hellwig232b51942017-10-17 14:16:19 -07001595 error = 0;
1596out_free_buf:
1597 kmem_free(buf);
Christophe JAILLET132bf672018-11-06 07:50:50 -08001598 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599}
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001600
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001601struct getfsmap_info {
1602 struct xfs_mount *mp;
Christoph Hellwig9d17e142017-04-21 11:24:41 -07001603 struct fsmap_head __user *data;
1604 unsigned int idx;
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001605 __u32 last_flags;
1606};
1607
1608STATIC int
1609xfs_getfsmap_format(struct xfs_fsmap *xfm, void *priv)
1610{
1611 struct getfsmap_info *info = priv;
1612 struct fsmap fm;
1613
1614 trace_xfs_getfsmap_mapping(info->mp, xfm);
1615
1616 info->last_flags = xfm->fmr_flags;
1617 xfs_fsmap_from_internal(&fm, xfm);
Christoph Hellwig9d17e142017-04-21 11:24:41 -07001618 if (copy_to_user(&info->data->fmh_recs[info->idx++], &fm,
1619 sizeof(struct fsmap)))
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001620 return -EFAULT;
1621
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001622 return 0;
1623}
1624
1625STATIC int
1626xfs_ioc_getfsmap(
1627 struct xfs_inode *ip,
Christoph Hellwig9d17e142017-04-21 11:24:41 -07001628 struct fsmap_head __user *arg)
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001629{
Christoph Hellwigef2b67e2017-04-21 11:24:40 -07001630 struct getfsmap_info info = { NULL };
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001631 struct xfs_fsmap_head xhead = {0};
1632 struct fsmap_head head;
1633 bool aborted = false;
1634 int error;
1635
1636 if (copy_from_user(&head, arg, sizeof(struct fsmap_head)))
1637 return -EFAULT;
1638 if (memchr_inv(head.fmh_reserved, 0, sizeof(head.fmh_reserved)) ||
1639 memchr_inv(head.fmh_keys[0].fmr_reserved, 0,
1640 sizeof(head.fmh_keys[0].fmr_reserved)) ||
1641 memchr_inv(head.fmh_keys[1].fmr_reserved, 0,
1642 sizeof(head.fmh_keys[1].fmr_reserved)))
1643 return -EINVAL;
1644
1645 xhead.fmh_iflags = head.fmh_iflags;
1646 xhead.fmh_count = head.fmh_count;
1647 xfs_fsmap_to_internal(&xhead.fmh_keys[0], &head.fmh_keys[0]);
1648 xfs_fsmap_to_internal(&xhead.fmh_keys[1], &head.fmh_keys[1]);
1649
1650 trace_xfs_getfsmap_low_key(ip->i_mount, &xhead.fmh_keys[0]);
1651 trace_xfs_getfsmap_high_key(ip->i_mount, &xhead.fmh_keys[1]);
1652
1653 info.mp = ip->i_mount;
Christoph Hellwig9d17e142017-04-21 11:24:41 -07001654 info.data = arg;
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001655 error = xfs_getfsmap(ip->i_mount, &xhead, xfs_getfsmap_format, &info);
1656 if (error == XFS_BTREE_QUERY_RANGE_ABORT) {
1657 error = 0;
1658 aborted = true;
1659 } else if (error)
1660 return error;
1661
1662 /* If we didn't abort, set the "last" flag in the last fmx */
Darrick J. Wong12e4a382017-04-23 10:45:21 -07001663 if (!aborted && info.idx) {
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001664 info.last_flags |= FMR_OF_LAST;
Christoph Hellwig9d17e142017-04-21 11:24:41 -07001665 if (copy_to_user(&info.data->fmh_recs[info.idx - 1].fmr_flags,
1666 &info.last_flags, sizeof(info.last_flags)))
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001667 return -EFAULT;
1668 }
1669
1670 /* copy back header */
1671 head.fmh_entries = xhead.fmh_entries;
1672 head.fmh_oflags = xhead.fmh_oflags;
1673 if (copy_to_user(arg, &head, sizeof(struct fsmap_head)))
1674 return -EFAULT;
1675
1676 return 0;
1677}
1678
Darrick J. Wong36fd6e82017-10-17 21:37:34 -07001679STATIC int
1680xfs_ioc_scrub_metadata(
1681 struct xfs_inode *ip,
1682 void __user *arg)
1683{
1684 struct xfs_scrub_metadata scrub;
1685 int error;
1686
1687 if (!capable(CAP_SYS_ADMIN))
1688 return -EPERM;
1689
1690 if (copy_from_user(&scrub, arg, sizeof(scrub)))
1691 return -EFAULT;
1692
1693 error = xfs_scrub_metadata(ip, &scrub);
1694 if (error)
1695 return error;
1696
1697 if (copy_to_user(arg, &scrub, sizeof(scrub)))
1698 return -EFAULT;
1699
1700 return 0;
1701}
1702
Dave Chinnera133d952013-08-12 20:49:48 +10001703int
1704xfs_ioc_swapext(
1705 xfs_swapext_t *sxp)
1706{
1707 xfs_inode_t *ip, *tip;
1708 struct fd f, tmp;
1709 int error = 0;
1710
1711 /* Pull information for the target fd */
1712 f = fdget((int)sxp->sx_fdtarget);
1713 if (!f.file) {
Dave Chinner24513372014-06-25 14:58:08 +10001714 error = -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001715 goto out;
1716 }
1717
1718 if (!(f.file->f_mode & FMODE_WRITE) ||
1719 !(f.file->f_mode & FMODE_READ) ||
1720 (f.file->f_flags & O_APPEND)) {
Dave Chinner24513372014-06-25 14:58:08 +10001721 error = -EBADF;
Dave Chinnera133d952013-08-12 20:49:48 +10001722 goto out_put_file;
1723 }
1724
1725 tmp = fdget((int)sxp->sx_fdtmp);
1726 if (!tmp.file) {
Dave Chinner24513372014-06-25 14:58:08 +10001727 error = -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001728 goto out_put_file;
1729 }
1730
1731 if (!(tmp.file->f_mode & FMODE_WRITE) ||
1732 !(tmp.file->f_mode & FMODE_READ) ||
1733 (tmp.file->f_flags & O_APPEND)) {
Dave Chinner24513372014-06-25 14:58:08 +10001734 error = -EBADF;
Dave Chinnera133d952013-08-12 20:49:48 +10001735 goto out_put_tmp_file;
1736 }
1737
1738 if (IS_SWAPFILE(file_inode(f.file)) ||
1739 IS_SWAPFILE(file_inode(tmp.file))) {
Dave Chinner24513372014-06-25 14:58:08 +10001740 error = -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001741 goto out_put_tmp_file;
1742 }
1743
Jann Horn7f1b6242016-07-20 10:30:30 +10001744 /*
1745 * We need to ensure that the fds passed in point to XFS inodes
1746 * before we cast and access them as XFS structures as we have no
1747 * control over what the user passes us here.
1748 */
1749 if (f.file->f_op != &xfs_file_operations ||
1750 tmp.file->f_op != &xfs_file_operations) {
1751 error = -EINVAL;
1752 goto out_put_tmp_file;
1753 }
1754
Dave Chinnera133d952013-08-12 20:49:48 +10001755 ip = XFS_I(file_inode(f.file));
1756 tip = XFS_I(file_inode(tmp.file));
1757
1758 if (ip->i_mount != tip->i_mount) {
Dave Chinner24513372014-06-25 14:58:08 +10001759 error = -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001760 goto out_put_tmp_file;
1761 }
1762
1763 if (ip->i_ino == tip->i_ino) {
Dave Chinner24513372014-06-25 14:58:08 +10001764 error = -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001765 goto out_put_tmp_file;
1766 }
1767
1768 if (XFS_FORCED_SHUTDOWN(ip->i_mount)) {
Dave Chinner24513372014-06-25 14:58:08 +10001769 error = -EIO;
Dave Chinnera133d952013-08-12 20:49:48 +10001770 goto out_put_tmp_file;
1771 }
1772
1773 error = xfs_swap_extents(ip, tip, sxp);
1774
1775 out_put_tmp_file:
1776 fdput(tmp);
1777 out_put_file:
1778 fdput(f);
1779 out:
1780 return error;
1781}
1782
Eric Sandeenf7664b32018-05-15 13:21:48 -07001783static int
1784xfs_ioc_getlabel(
1785 struct xfs_mount *mp,
1786 char __user *user_label)
1787{
1788 struct xfs_sb *sbp = &mp->m_sb;
1789 char label[XFSLABEL_MAX + 1];
1790
1791 /* Paranoia */
1792 BUILD_BUG_ON(sizeof(sbp->sb_fname) > FSLABEL_MAX);
1793
Arnd Bergmann4bb8b652018-06-05 19:42:45 -07001794 /* 1 larger than sb_fname, so this ensures a trailing NUL char */
1795 memset(label, 0, sizeof(label));
Eric Sandeenf7664b32018-05-15 13:21:48 -07001796 spin_lock(&mp->m_sb_lock);
Arnd Bergmann4bb8b652018-06-05 19:42:45 -07001797 strncpy(label, sbp->sb_fname, XFSLABEL_MAX);
Eric Sandeenf7664b32018-05-15 13:21:48 -07001798 spin_unlock(&mp->m_sb_lock);
1799
Arnd Bergmann4bb8b652018-06-05 19:42:45 -07001800 if (copy_to_user(user_label, label, sizeof(label)))
Eric Sandeenf7664b32018-05-15 13:21:48 -07001801 return -EFAULT;
1802 return 0;
1803}
1804
1805static int
1806xfs_ioc_setlabel(
1807 struct file *filp,
1808 struct xfs_mount *mp,
1809 char __user *newlabel)
1810{
1811 struct xfs_sb *sbp = &mp->m_sb;
1812 char label[XFSLABEL_MAX + 1];
1813 size_t len;
1814 int error;
1815
1816 if (!capable(CAP_SYS_ADMIN))
1817 return -EPERM;
1818 /*
1819 * The generic ioctl allows up to FSLABEL_MAX chars, but XFS is much
1820 * smaller, at 12 bytes. We copy one more to be sure we find the
1821 * (required) NULL character to test the incoming label length.
1822 * NB: The on disk label doesn't need to be null terminated.
1823 */
1824 if (copy_from_user(label, newlabel, XFSLABEL_MAX + 1))
1825 return -EFAULT;
1826 len = strnlen(label, XFSLABEL_MAX + 1);
1827 if (len > sizeof(sbp->sb_fname))
1828 return -EINVAL;
1829
1830 error = mnt_want_write_file(filp);
1831 if (error)
1832 return error;
1833
1834 spin_lock(&mp->m_sb_lock);
1835 memset(sbp->sb_fname, 0, sizeof(sbp->sb_fname));
Arnd Bergmann4bb8b652018-06-05 19:42:45 -07001836 memcpy(sbp->sb_fname, label, len);
Eric Sandeenf7664b32018-05-15 13:21:48 -07001837 spin_unlock(&mp->m_sb_lock);
1838
1839 /*
1840 * Now we do several things to satisfy userspace.
1841 * In addition to normal logging of the primary superblock, we also
1842 * immediately write these changes to sector zero for the primary, then
1843 * update all backup supers (as xfs_db does for a label change), then
1844 * invalidate the block device page cache. This is so that any prior
1845 * buffered reads from userspace (i.e. from blkid) are invalidated,
1846 * and userspace will see the newly-written label.
1847 */
1848 error = xfs_sync_sb_buf(mp);
1849 if (error)
1850 goto out;
1851 /*
1852 * growfs also updates backup supers so lock against that.
1853 */
1854 mutex_lock(&mp->m_growlock);
1855 error = xfs_update_secondary_sbs(mp);
1856 mutex_unlock(&mp->m_growlock);
1857
1858 invalidate_bdev(mp->m_ddev_targp->bt_bdev);
1859
1860out:
1861 mnt_drop_write_file(filp);
1862 return error;
1863}
1864
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001865/*
1866 * Note: some of the ioctl's return positive numbers as a
1867 * byte count indicating success, such as readlink_by_handle.
1868 * So we don't "sign flip" like most other routines. This means
1869 * true errors need to be returned as a negative value.
1870 */
1871long
1872xfs_file_ioctl(
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001873 struct file *filp,
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001874 unsigned int cmd,
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001875 unsigned long p)
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001876{
Al Viro496ad9a2013-01-23 17:07:38 -05001877 struct inode *inode = file_inode(filp);
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001878 struct xfs_inode *ip = XFS_I(inode);
1879 struct xfs_mount *mp = ip->i_mount;
1880 void __user *arg = (void __user *)p;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001881 int error;
1882
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001883 trace_xfs_file_ioctl(ip);
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001884
1885 switch (cmd) {
Christoph Hellwiga46db602011-01-07 13:02:04 +00001886 case FITRIM:
1887 return xfs_ioc_trim(mp, arg);
Eric Sandeenf7664b32018-05-15 13:21:48 -07001888 case FS_IOC_GETFSLABEL:
1889 return xfs_ioc_getlabel(mp, arg);
1890 case FS_IOC_SETFSLABEL:
1891 return xfs_ioc_setlabel(filp, mp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001892 case XFS_IOC_ALLOCSP:
1893 case XFS_IOC_FREESP:
1894 case XFS_IOC_RESVSP:
1895 case XFS_IOC_UNRESVSP:
1896 case XFS_IOC_ALLOCSP64:
1897 case XFS_IOC_FREESP64:
1898 case XFS_IOC_RESVSP64:
Dave Chinner44722352010-08-24 12:02:11 +10001899 case XFS_IOC_UNRESVSP64:
1900 case XFS_IOC_ZERO_RANGE: {
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001901 xfs_flock64_t bf;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001902
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001903 if (copy_from_user(&bf, arg, sizeof(bf)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001904 return -EFAULT;
Christoph Hellwig8f3e2052016-07-20 11:29:35 +10001905 return xfs_ioc_space(filp, cmd, &bf);
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001906 }
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001907 case XFS_IOC_DIOINFO: {
1908 struct dioattr da;
1909 xfs_buftarg_t *target =
1910 XFS_IS_REALTIME_INODE(ip) ?
1911 mp->m_rtdev_targp : mp->m_ddev_targp;
1912
Eric Sandeen7c71ee72014-01-21 16:46:23 -06001913 da.d_mem = da.d_miniosz = target->bt_logical_sectorsize;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001914 da.d_maxiosz = INT_MAX & ~(da.d_miniosz - 1);
1915
1916 if (copy_to_user(arg, &da, sizeof(da)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001917 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001918 return 0;
1919 }
1920
1921 case XFS_IOC_FSBULKSTAT_SINGLE:
1922 case XFS_IOC_FSBULKSTAT:
1923 case XFS_IOC_FSINUMBERS:
1924 return xfs_ioc_bulkstat(mp, cmd, arg);
1925
1926 case XFS_IOC_FSGEOMETRY_V1:
Dave Chinner1b6d9682019-04-12 07:41:16 -07001927 return xfs_ioc_fsgeometry(mp, arg, 3);
1928 case XFS_IOC_FSGEOMETRY_V4:
1929 return xfs_ioc_fsgeometry(mp, arg, 4);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001930 case XFS_IOC_FSGEOMETRY:
Dave Chinner1b6d9682019-04-12 07:41:16 -07001931 return xfs_ioc_fsgeometry(mp, arg, 5);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001932
1933 case XFS_IOC_GETVERSION:
1934 return put_user(inode->i_generation, (int __user *)arg);
1935
1936 case XFS_IOC_FSGETXATTR:
1937 return xfs_ioc_fsgetxattr(ip, 0, arg);
1938 case XFS_IOC_FSGETXATTRA:
1939 return xfs_ioc_fsgetxattr(ip, 1, arg);
Lachlan McIlroy3b2816b2008-04-18 12:43:35 +10001940 case XFS_IOC_FSSETXATTR:
Lachlan McIlroy65e67f52008-04-18 12:59:45 +10001941 return xfs_ioc_fssetxattr(ip, filp, arg);
1942 case XFS_IOC_GETXFLAGS:
1943 return xfs_ioc_getxflags(ip, arg);
1944 case XFS_IOC_SETXFLAGS:
1945 return xfs_ioc_setxflags(ip, filp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001946
1947 case XFS_IOC_FSSETDM: {
1948 struct fsdmidata dmi;
1949
1950 if (copy_from_user(&dmi, arg, sizeof(dmi)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001951 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001952
Jan Karad9457dc2012-06-12 16:20:39 +02001953 error = mnt_want_write_file(filp);
1954 if (error)
1955 return error;
1956
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001957 error = xfs_set_dmattrs(ip, dmi.fsd_dmevmask,
1958 dmi.fsd_dmstate);
Jan Karad9457dc2012-06-12 16:20:39 +02001959 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10001960 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001961 }
1962
1963 case XFS_IOC_GETBMAP:
1964 case XFS_IOC_GETBMAPA:
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001965 case XFS_IOC_GETBMAPX:
Christoph Hellwig232b51942017-10-17 14:16:19 -07001966 return xfs_ioc_getbmap(filp, cmd, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001967
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001968 case FS_IOC_GETFSMAP:
1969 return xfs_ioc_getfsmap(ip, arg);
1970
Darrick J. Wong36fd6e82017-10-17 21:37:34 -07001971 case XFS_IOC_SCRUB_METADATA:
1972 return xfs_ioc_scrub_metadata(ip, arg);
1973
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001974 case XFS_IOC_FD_TO_HANDLE:
1975 case XFS_IOC_PATH_TO_HANDLE:
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001976 case XFS_IOC_PATH_TO_FSHANDLE: {
1977 xfs_fsop_handlereq_t hreq;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001978
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001979 if (copy_from_user(&hreq, arg, sizeof(hreq)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001980 return -EFAULT;
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001981 return xfs_find_handle(cmd, &hreq);
1982 }
1983 case XFS_IOC_OPEN_BY_HANDLE: {
1984 xfs_fsop_handlereq_t hreq;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001985
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001986 if (copy_from_user(&hreq, arg, sizeof(xfs_fsop_handlereq_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001987 return -EFAULT;
Christoph Hellwigd296d302009-01-19 02:02:57 +01001988 return xfs_open_by_handle(filp, &hreq);
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001989 }
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001990 case XFS_IOC_FSSETDM_BY_HANDLE:
Christoph Hellwigd296d302009-01-19 02:02:57 +01001991 return xfs_fssetdm_by_handle(filp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001992
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001993 case XFS_IOC_READLINK_BY_HANDLE: {
1994 xfs_fsop_handlereq_t hreq;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001995
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001996 if (copy_from_user(&hreq, arg, sizeof(xfs_fsop_handlereq_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001997 return -EFAULT;
Christoph Hellwigd296d302009-01-19 02:02:57 +01001998 return xfs_readlink_by_handle(filp, &hreq);
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001999 }
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002000 case XFS_IOC_ATTRLIST_BY_HANDLE:
Christoph Hellwigd296d302009-01-19 02:02:57 +01002001 return xfs_attrlist_by_handle(filp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002002
2003 case XFS_IOC_ATTRMULTI_BY_HANDLE:
Christoph Hellwigd296d302009-01-19 02:02:57 +01002004 return xfs_attrmulti_by_handle(filp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002005
2006 case XFS_IOC_SWAPEXT: {
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06002007 struct xfs_swapext sxp;
2008
2009 if (copy_from_user(&sxp, arg, sizeof(xfs_swapext_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002010 return -EFAULT;
Jan Karad9457dc2012-06-12 16:20:39 +02002011 error = mnt_want_write_file(filp);
2012 if (error)
2013 return error;
Dave Chinnera133d952013-08-12 20:49:48 +10002014 error = xfs_ioc_swapext(&sxp);
Jan Karad9457dc2012-06-12 16:20:39 +02002015 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10002016 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002017 }
2018
2019 case XFS_IOC_FSCOUNTS: {
2020 xfs_fsop_counts_t out;
2021
2022 error = xfs_fs_counts(mp, &out);
2023 if (error)
Dave Chinner24513372014-06-25 14:58:08 +10002024 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002025
2026 if (copy_to_user(arg, &out, sizeof(out)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002027 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002028 return 0;
2029 }
2030
2031 case XFS_IOC_SET_RESBLKS: {
2032 xfs_fsop_resblks_t inout;
Darrick J. Wongc8ce5402017-06-16 11:00:05 -07002033 uint64_t in;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002034
2035 if (!capable(CAP_SYS_ADMIN))
2036 return -EPERM;
2037
Eric Sandeend5db0f92010-02-05 22:59:53 +00002038 if (mp->m_flags & XFS_MOUNT_RDONLY)
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002039 return -EROFS;
Eric Sandeend5db0f92010-02-05 22:59:53 +00002040
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002041 if (copy_from_user(&inout, arg, sizeof(inout)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002042 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002043
Jan Karad9457dc2012-06-12 16:20:39 +02002044 error = mnt_want_write_file(filp);
2045 if (error)
2046 return error;
2047
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002048 /* input parameter is passed in resblks field of structure */
2049 in = inout.resblks;
2050 error = xfs_reserve_blocks(mp, &in, &inout);
Jan Karad9457dc2012-06-12 16:20:39 +02002051 mnt_drop_write_file(filp);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002052 if (error)
Dave Chinner24513372014-06-25 14:58:08 +10002053 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002054
2055 if (copy_to_user(arg, &inout, sizeof(inout)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002056 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002057 return 0;
2058 }
2059
2060 case XFS_IOC_GET_RESBLKS: {
2061 xfs_fsop_resblks_t out;
2062
2063 if (!capable(CAP_SYS_ADMIN))
2064 return -EPERM;
2065
2066 error = xfs_reserve_blocks(mp, NULL, &out);
2067 if (error)
Dave Chinner24513372014-06-25 14:58:08 +10002068 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002069
2070 if (copy_to_user(arg, &out, sizeof(out)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002071 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002072
2073 return 0;
2074 }
2075
2076 case XFS_IOC_FSGROWFSDATA: {
2077 xfs_growfs_data_t in;
2078
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002079 if (copy_from_user(&in, arg, sizeof(in)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002080 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002081
Jan Karad9457dc2012-06-12 16:20:39 +02002082 error = mnt_want_write_file(filp);
2083 if (error)
2084 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002085 error = xfs_growfs_data(mp, &in);
Jan Karad9457dc2012-06-12 16:20:39 +02002086 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10002087 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002088 }
2089
2090 case XFS_IOC_FSGROWFSLOG: {
2091 xfs_growfs_log_t in;
2092
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002093 if (copy_from_user(&in, arg, sizeof(in)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002094 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002095
Jan Karad9457dc2012-06-12 16:20:39 +02002096 error = mnt_want_write_file(filp);
2097 if (error)
2098 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002099 error = xfs_growfs_log(mp, &in);
Jan Karad9457dc2012-06-12 16:20:39 +02002100 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10002101 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002102 }
2103
2104 case XFS_IOC_FSGROWFSRT: {
2105 xfs_growfs_rt_t in;
2106
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002107 if (copy_from_user(&in, arg, sizeof(in)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002108 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002109
Jan Karad9457dc2012-06-12 16:20:39 +02002110 error = mnt_want_write_file(filp);
2111 if (error)
2112 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002113 error = xfs_growfs_rt(mp, &in);
Jan Karad9457dc2012-06-12 16:20:39 +02002114 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10002115 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002116 }
2117
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002118 case XFS_IOC_GOINGDOWN: {
Darrick J. Wongc8ce5402017-06-16 11:00:05 -07002119 uint32_t in;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002120
2121 if (!capable(CAP_SYS_ADMIN))
2122 return -EPERM;
2123
Darrick J. Wongc8ce5402017-06-16 11:00:05 -07002124 if (get_user(in, (uint32_t __user *)arg))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002125 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002126
Dave Chinner24513372014-06-25 14:58:08 +10002127 return xfs_fs_goingdown(mp, in);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002128 }
2129
2130 case XFS_IOC_ERROR_INJECTION: {
2131 xfs_error_injection_t in;
2132
2133 if (!capable(CAP_SYS_ADMIN))
2134 return -EPERM;
2135
2136 if (copy_from_user(&in, arg, sizeof(in)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002137 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002138
Darrick J. Wong31965ef2017-06-20 17:54:46 -07002139 return xfs_errortag_add(mp, in.errtag);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002140 }
2141
2142 case XFS_IOC_ERROR_CLEARALL:
2143 if (!capable(CAP_SYS_ADMIN))
2144 return -EPERM;
2145
Darrick J. Wong31965ef2017-06-20 17:54:46 -07002146 return xfs_errortag_clearall(mp);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002147
Brian Foster8ca149d2012-11-07 12:21:12 -05002148 case XFS_IOC_FREE_EOFBLOCKS: {
Dwight Engenb9fe5052013-08-15 14:08:02 -04002149 struct xfs_fs_eofblocks eofb;
2150 struct xfs_eofblocks keofb;
Brian Foster8ca149d2012-11-07 12:21:12 -05002151
Dwight Engen8c567a72013-08-15 14:08:03 -04002152 if (!capable(CAP_SYS_ADMIN))
2153 return -EPERM;
2154
2155 if (mp->m_flags & XFS_MOUNT_RDONLY)
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002156 return -EROFS;
Dwight Engen8c567a72013-08-15 14:08:03 -04002157
Brian Foster8ca149d2012-11-07 12:21:12 -05002158 if (copy_from_user(&eofb, arg, sizeof(eofb)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002159 return -EFAULT;
Brian Foster8ca149d2012-11-07 12:21:12 -05002160
Dwight Engenb9fe5052013-08-15 14:08:02 -04002161 error = xfs_fs_eofblocks_from_user(&eofb, &keofb);
2162 if (error)
Dave Chinner24513372014-06-25 14:58:08 +10002163 return error;
Brian Foster8ca149d2012-11-07 12:21:12 -05002164
Dave Chinner24513372014-06-25 14:58:08 +10002165 return xfs_icache_free_eofblocks(mp, &keofb);
Brian Foster8ca149d2012-11-07 12:21:12 -05002166 }
2167
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002168 default:
2169 return -ENOTTY;
2170 }
2171}