blob: 0bfee8a054547eb922b7377bf1f1f0ae2f8dc24b [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"
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include "xfs_rtalloc.h"
Darrick J. Wong2810bd62019-07-02 09:39:40 -070015#include "xfs_iwalk.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include "xfs_itable.h"
Nathan Scotta844f452005-11-02 14:38:42 +110017#include "xfs_error.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "xfs_attr.h"
Nathan Scotta844f452005-11-02 14:38:42 +110019#include "xfs_bmap.h"
Dave Chinner68988112013-08-12 20:49:42 +100020#include "xfs_bmap_util.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include "xfs_fsops.h"
Christoph Hellwiga46db602011-01-07 13:02:04 +000022#include "xfs_discard.h"
Christoph Hellwig25fe55e2008-07-18 17:13:20 +100023#include "xfs_quota.h"
Christoph Hellwigd296d302009-01-19 02:02:57 +010024#include "xfs_export.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000025#include "xfs_trace.h"
Brian Foster8ca149d2012-11-07 12:21:12 -050026#include "xfs_icache.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110027#include "xfs_trans.h"
Andreas Gruenbacher47e1bf62015-11-03 12:56:17 +110028#include "xfs_acl.h"
Darrick J. Wonge89c0412017-03-28 14:56:37 -070029#include "xfs_btree.h"
30#include <linux/fsmap.h>
31#include "xfs_fsmap.h"
Darrick J. Wong36fd6e82017-10-17 21:37:34 -070032#include "scrub/xfs_scrub.h"
Darrick J. Wongc368ebc2018-01-08 10:51:27 -080033#include "xfs_sb.h"
Darrick J. Wong7cd50062019-04-12 07:41:17 -070034#include "xfs_ag.h"
Darrick J. Wongc23232d2019-04-12 07:41:17 -070035#include "xfs_health.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/mount.h>
38#include <linux/namei.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40/*
41 * xfs_find_handle maps from userspace xfs_fsop_handlereq structure to
42 * a file or fs handle.
43 *
44 * XFS_IOC_PATH_TO_FSHANDLE
45 * returns fs handle for a mount point or path within that mount point
46 * XFS_IOC_FD_TO_HANDLE
47 * returns full handle for a FD opened in user space
48 * XFS_IOC_PATH_TO_HANDLE
49 * returns full handle for a path
50 */
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -060051int
Linus Torvalds1da177e2005-04-16 15:20:36 -070052xfs_find_handle(
53 unsigned int cmd,
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -060054 xfs_fsop_handlereq_t *hreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -070055{
56 int hsize;
57 xfs_handle_t handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 struct inode *inode;
Dave Chinnera30b0362013-09-02 20:49:36 +100059 struct fd f = {NULL};
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010060 struct path path;
Al Viro2903ff02012-08-28 12:52:22 -040061 int error;
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010062 struct xfs_inode *ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010064 if (cmd == XFS_IOC_FD_TO_HANDLE) {
Al Viro2903ff02012-08-28 12:52:22 -040065 f = fdget(hreq->fd);
66 if (!f.file)
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010067 return -EBADF;
Al Viro496ad9a2013-01-23 17:07:38 -050068 inode = file_inode(f.file);
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010069 } else {
70 error = user_lpath((const char __user *)hreq->path, &path);
71 if (error)
72 return error;
David Howells2b0143b2015-03-17 22:25:59 +000073 inode = d_inode(path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 }
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010075 ip = XFS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010077 /*
78 * We can only generate handles for inodes residing on a XFS filesystem,
79 * and only for regular files, directories or symbolic links.
80 */
81 error = -EINVAL;
82 if (inode->i_sb->s_magic != XFS_SB_MAGIC)
83 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010085 error = -EBADF;
86 if (!S_ISREG(inode->i_mode) &&
87 !S_ISDIR(inode->i_mode) &&
88 !S_ISLNK(inode->i_mode))
89 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010092 memcpy(&handle.ha_fsid, ip->i_mount->m_fixedfsid, sizeof(xfs_fsid_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010094 if (cmd == XFS_IOC_PATH_TO_FSHANDLE) {
95 /*
96 * This handle only contains an fsid, zero the rest.
97 */
98 memset(&handle.ha_fid, 0, sizeof(handle.ha_fid));
99 hsize = sizeof(xfs_fsid_t);
100 } else {
Christoph Hellwigc6143912007-09-14 15:22:37 +1000101 handle.ha_fid.fid_len = sizeof(xfs_fid_t) -
102 sizeof(handle.ha_fid.fid_len);
103 handle.ha_fid.fid_pad = 0;
Dave Chinner9e9a2672016-02-09 16:54:58 +1100104 handle.ha_fid.fid_gen = inode->i_generation;
Christoph Hellwigc6143912007-09-14 15:22:37 +1000105 handle.ha_fid.fid_ino = ip->i_ino;
Christoph Hellwig3398a402017-06-14 21:30:44 -0700106 hsize = sizeof(xfs_handle_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 }
108
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100109 error = -EFAULT;
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600110 if (copy_to_user(hreq->ohandle, &handle, hsize) ||
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100111 copy_to_user(hreq->ohandlen, &hsize, sizeof(__s32)))
112 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100114 error = 0;
115
116 out_put:
117 if (cmd == XFS_IOC_FD_TO_HANDLE)
Al Viro2903ff02012-08-28 12:52:22 -0400118 fdput(f);
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100119 else
120 path_put(&path);
121 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122}
123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124/*
Christoph Hellwigd296d302009-01-19 02:02:57 +0100125 * No need to do permission checks on the various pathname components
126 * as the handle operations are privileged.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 */
128STATIC int
Christoph Hellwigd296d302009-01-19 02:02:57 +0100129xfs_handle_acceptable(
130 void *context,
131 struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132{
Christoph Hellwigd296d302009-01-19 02:02:57 +0100133 return 1;
134}
135
136/*
137 * Convert userspace handle data into a dentry.
138 */
139struct dentry *
140xfs_handle_to_dentry(
141 struct file *parfilp,
142 void __user *uhandle,
143 u32 hlen)
144{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 xfs_handle_t handle;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100146 struct xfs_fid64 fid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
148 /*
149 * Only allow handle opens under a directory.
150 */
Al Viro496ad9a2013-01-23 17:07:38 -0500151 if (!S_ISDIR(file_inode(parfilp)->i_mode))
Christoph Hellwigd296d302009-01-19 02:02:57 +0100152 return ERR_PTR(-ENOTDIR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Christoph Hellwigd296d302009-01-19 02:02:57 +0100154 if (hlen != sizeof(xfs_handle_t))
155 return ERR_PTR(-EINVAL);
156 if (copy_from_user(&handle, uhandle, hlen))
157 return ERR_PTR(-EFAULT);
158 if (handle.ha_fid.fid_len !=
159 sizeof(handle.ha_fid) - sizeof(handle.ha_fid.fid_len))
160 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Christoph Hellwigd296d302009-01-19 02:02:57 +0100162 memset(&fid, 0, sizeof(struct fid));
163 fid.ino = handle.ha_fid.fid_ino;
164 fid.gen = handle.ha_fid.fid_gen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Christoph Hellwigd296d302009-01-19 02:02:57 +0100166 return exportfs_decode_fh(parfilp->f_path.mnt, (struct fid *)&fid, 3,
167 FILEID_INO32_GEN | XFS_FILEID_TYPE_64FLAG,
168 xfs_handle_acceptable, NULL);
169}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Christoph Hellwigd296d302009-01-19 02:02:57 +0100171STATIC struct dentry *
172xfs_handlereq_to_dentry(
173 struct file *parfilp,
174 xfs_fsop_handlereq_t *hreq)
175{
176 return xfs_handle_to_dentry(parfilp, hreq->ihandle, hreq->ihandlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177}
178
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600179int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180xfs_open_by_handle(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 struct file *parfilp,
Christoph Hellwigd296d302009-01-19 02:02:57 +0100182 xfs_fsop_handlereq_t *hreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183{
David Howells745ca242008-11-14 10:39:22 +1100184 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 int error;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100186 int fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 int permflag;
188 struct file *filp;
189 struct inode *inode;
190 struct dentry *dentry;
Dave Chinner1a1d7722012-03-22 05:15:06 +0000191 fmode_t fmode;
Al Viro765927b2012-06-26 21:58:53 +0400192 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
194 if (!capable(CAP_SYS_ADMIN))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000195 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Christoph Hellwigd296d302009-01-19 02:02:57 +0100197 dentry = xfs_handlereq_to_dentry(parfilp, hreq);
198 if (IS_ERR(dentry))
199 return PTR_ERR(dentry);
David Howells2b0143b2015-03-17 22:25:59 +0000200 inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
202 /* Restrict xfs_open_by_handle to directories & regular files. */
203 if (!(S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode))) {
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000204 error = -EPERM;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100205 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 }
207
208#if BITS_PER_LONG != 32
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600209 hreq->oflags |= O_LARGEFILE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210#endif
Christoph Hellwigd296d302009-01-19 02:02:57 +0100211
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600212 permflag = hreq->oflags;
Dave Chinner1a1d7722012-03-22 05:15:06 +0000213 fmode = OPEN_FMODE(permflag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 if ((!(permflag & O_APPEND) || (permflag & O_TRUNC)) &&
Dave Chinner1a1d7722012-03-22 05:15:06 +0000215 (fmode & FMODE_WRITE) && IS_APPEND(inode)) {
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000216 error = -EPERM;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100217 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 }
219
Dave Chinner1a1d7722012-03-22 05:15:06 +0000220 if ((fmode & FMODE_WRITE) && IS_IMMUTABLE(inode)) {
Eryu Guan337684a2016-08-02 19:58:28 +0800221 error = -EPERM;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100222 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 }
224
225 /* Can't write directories. */
Dave Chinner1a1d7722012-03-22 05:15:06 +0000226 if (S_ISDIR(inode->i_mode) && (fmode & FMODE_WRITE)) {
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000227 error = -EISDIR;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100228 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 }
230
Yann Droneaud862a6292013-07-02 18:39:34 +0200231 fd = get_unused_fd_flags(0);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100232 if (fd < 0) {
233 error = fd;
234 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 }
236
Al Viro765927b2012-06-26 21:58:53 +0400237 path.mnt = parfilp->f_path.mnt;
238 path.dentry = dentry;
239 filp = dentry_open(&path, hreq->oflags, cred);
240 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 if (IS_ERR(filp)) {
Christoph Hellwigd296d302009-01-19 02:02:57 +0100242 put_unused_fd(fd);
243 return PTR_ERR(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 }
Christoph Hellwig4d4be482008-12-09 04:47:33 -0500245
Al Viro03209372011-07-25 20:54:24 -0400246 if (S_ISREG(inode->i_mode)) {
Vlad Apostolov2e2e7bb2006-11-11 18:04:47 +1100247 filp->f_flags |= O_NOATIME;
Christoph Hellwig4d4be482008-12-09 04:47:33 -0500248 filp->f_mode |= FMODE_NOCMTIME;
Vlad Apostolov2e2e7bb2006-11-11 18:04:47 +1100249 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Christoph Hellwigd296d302009-01-19 02:02:57 +0100251 fd_install(fd, filp);
252 return fd;
253
254 out_dput:
255 dput(dentry);
256 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257}
258
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600259int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260xfs_readlink_by_handle(
Christoph Hellwigd296d302009-01-19 02:02:57 +0100261 struct file *parfilp,
262 xfs_fsop_handlereq_t *hreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263{
Christoph Hellwigd296d302009-01-19 02:02:57 +0100264 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 __u32 olen;
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000266 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
268 if (!capable(CAP_SYS_ADMIN))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000269 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Christoph Hellwigd296d302009-01-19 02:02:57 +0100271 dentry = xfs_handlereq_to_dentry(parfilp, hreq);
272 if (IS_ERR(dentry))
273 return PTR_ERR(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
275 /* Restrict this handle operation to symlinks only. */
Miklos Szeredifd4a0edf2016-12-09 16:45:04 +0100276 if (!d_is_symlink(dentry)) {
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000277 error = -EINVAL;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100278 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 }
280
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600281 if (copy_from_user(&olen, hreq->ohandlen, sizeof(__u32))) {
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000282 error = -EFAULT;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100283 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
Miklos Szeredifd4a0edf2016-12-09 16:45:04 +0100286 error = vfs_readlink(dentry, hreq->ohandle, olen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Christoph Hellwigd296d302009-01-19 02:02:57 +0100288 out_dput:
289 dput(dentry);
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000290 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291}
292
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000293int
294xfs_set_dmattrs(
295 xfs_inode_t *ip,
Darrick J. Wong65a79352017-11-09 09:34:28 -0800296 uint evmask,
297 uint16_t state)
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000298{
299 xfs_mount_t *mp = ip->i_mount;
300 xfs_trans_t *tp;
301 int error;
302
303 if (!capable(CAP_SYS_ADMIN))
Dave Chinner24513372014-06-25 14:58:08 +1000304 return -EPERM;
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000305
306 if (XFS_FORCED_SHUTDOWN(mp))
Dave Chinner24513372014-06-25 14:58:08 +1000307 return -EIO;
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000308
Christoph Hellwig253f4912016-04-06 09:19:55 +1000309 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_ichange, 0, 0, 0, &tp);
310 if (error)
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000311 return error;
Christoph Hellwig253f4912016-04-06 09:19:55 +1000312
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000313 xfs_ilock(ip, XFS_ILOCK_EXCL);
314 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
315
316 ip->i_d.di_dmevmask = evmask;
317 ip->i_d.di_dmstate = state;
318
319 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
Christoph Hellwig70393312015-06-04 13:48:08 +1000320 error = xfs_trans_commit(tp);
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000321
322 return error;
323}
324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325STATIC int
326xfs_fssetdm_by_handle(
Christoph Hellwigd296d302009-01-19 02:02:57 +0100327 struct file *parfilp,
328 void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329{
330 int error;
331 struct fsdmidata fsd;
332 xfs_fsop_setdm_handlereq_t dmhreq;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100333 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
335 if (!capable(CAP_MKNOD))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000336 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 if (copy_from_user(&dmhreq, arg, sizeof(xfs_fsop_setdm_handlereq_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000338 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
Jan Karad9457dc2012-06-12 16:20:39 +0200340 error = mnt_want_write_file(parfilp);
341 if (error)
342 return error;
343
Christoph Hellwigd296d302009-01-19 02:02:57 +0100344 dentry = xfs_handlereq_to_dentry(parfilp, &dmhreq.hreq);
Jan Karad9457dc2012-06-12 16:20:39 +0200345 if (IS_ERR(dentry)) {
346 mnt_drop_write_file(parfilp);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100347 return PTR_ERR(dentry);
Jan Karad9457dc2012-06-12 16:20:39 +0200348 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
David Howells2b0143b2015-03-17 22:25:59 +0000350 if (IS_IMMUTABLE(d_inode(dentry)) || IS_APPEND(d_inode(dentry))) {
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000351 error = -EPERM;
Christoph Hellwig6e7f75e2007-10-11 18:09:50 +1000352 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 }
354
355 if (copy_from_user(&fsd, dmhreq.data, sizeof(fsd))) {
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000356 error = -EFAULT;
Christoph Hellwig6e7f75e2007-10-11 18:09:50 +1000357 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 }
359
David Howells2b0143b2015-03-17 22:25:59 +0000360 error = xfs_set_dmattrs(XFS_I(d_inode(dentry)), fsd.fsd_dmevmask,
Christoph Hellwig6e7f75e2007-10-11 18:09:50 +1000361 fsd.fsd_dmstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Christoph Hellwig6e7f75e2007-10-11 18:09:50 +1000363 out:
Jan Karad9457dc2012-06-12 16:20:39 +0200364 mnt_drop_write_file(parfilp);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100365 dput(dentry);
Christoph Hellwig6e7f75e2007-10-11 18:09:50 +1000366 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367}
368
369STATIC int
370xfs_attrlist_by_handle(
Christoph Hellwigd296d302009-01-19 02:02:57 +0100371 struct file *parfilp,
372 void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373{
Christoph Hellwigd296d302009-01-19 02:02:57 +0100374 int error = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 attrlist_cursor_kern_t *cursor;
Darrick J. Wong0facef72016-08-03 10:58:53 +1000376 struct xfs_fsop_attrlist_handlereq __user *p = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 xfs_fsop_attrlist_handlereq_t al_hreq;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100378 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 char *kbuf;
380
381 if (!capable(CAP_SYS_ADMIN))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000382 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 if (copy_from_user(&al_hreq, arg, sizeof(xfs_fsop_attrlist_handlereq_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000384 return -EFAULT;
Dan Carpenter071c5292013-10-31 21:00:10 +0300385 if (al_hreq.buflen < sizeof(struct attrlist) ||
Jan Tulak4e247612015-10-12 16:02:56 +1100386 al_hreq.buflen > XFS_XATTR_LIST_MAX)
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000387 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Christoph Hellwig90ad58a2008-06-27 13:32:19 +1000389 /*
390 * Reject flags, only allow namespaces.
391 */
392 if (al_hreq.flags & ~(ATTR_ROOT | ATTR_SECURE))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000393 return -EINVAL;
Christoph Hellwig90ad58a2008-06-27 13:32:19 +1000394
Christoph Hellwigd296d302009-01-19 02:02:57 +0100395 dentry = xfs_handlereq_to_dentry(parfilp, &al_hreq.hreq);
396 if (IS_ERR(dentry))
397 return PTR_ERR(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
Dave Chinnerfdd3cce2013-09-02 20:53:00 +1000399 kbuf = kmem_zalloc_large(al_hreq.buflen, KM_SLEEP);
400 if (!kbuf)
401 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
403 cursor = (attrlist_cursor_kern_t *)&al_hreq.pos;
David Howells2b0143b2015-03-17 22:25:59 +0000404 error = xfs_attr_list(XFS_I(d_inode(dentry)), kbuf, al_hreq.buflen,
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000405 al_hreq.flags, cursor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 if (error)
407 goto out_kfree;
408
Darrick J. Wong0facef72016-08-03 10:58:53 +1000409 if (copy_to_user(&p->pos, cursor, sizeof(attrlist_cursor_kern_t))) {
410 error = -EFAULT;
411 goto out_kfree;
412 }
413
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 if (copy_to_user(al_hreq.buffer, kbuf, al_hreq.buflen))
415 error = -EFAULT;
416
Dave Chinnerfdd3cce2013-09-02 20:53:00 +1000417out_kfree:
418 kmem_free(kbuf);
419out_dput:
Christoph Hellwigd296d302009-01-19 02:02:57 +0100420 dput(dentry);
421 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422}
423
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600424int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425xfs_attrmulti_attr_get(
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000426 struct inode *inode,
Dave Chinnera9273ca2010-01-20 10:47:48 +1100427 unsigned char *name,
428 unsigned char __user *ubuf,
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700429 uint32_t *len,
430 uint32_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431{
Dave Chinnera9273ca2010-01-20 10:47:48 +1100432 unsigned char *kbuf;
Dave Chinner24513372014-06-25 14:58:08 +1000433 int error = -EFAULT;
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000434
Jan Tulak51fcbfe2015-10-12 16:03:59 +1100435 if (*len > XFS_XATTR_SIZE_MAX)
Dave Chinner24513372014-06-25 14:58:08 +1000436 return -EINVAL;
Dave Chinnerfdd3cce2013-09-02 20:53:00 +1000437 kbuf = kmem_zalloc_large(*len, KM_SLEEP);
438 if (!kbuf)
Dave Chinner24513372014-06-25 14:58:08 +1000439 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000441 error = xfs_attr_get(XFS_I(inode), name, kbuf, (int *)len, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 if (error)
443 goto out_kfree;
444
445 if (copy_to_user(ubuf, kbuf, *len))
Dave Chinner24513372014-06-25 14:58:08 +1000446 error = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
Dave Chinnerfdd3cce2013-09-02 20:53:00 +1000448out_kfree:
449 kmem_free(kbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 return error;
451}
452
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600453int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454xfs_attrmulti_attr_set(
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000455 struct inode *inode,
Dave Chinnera9273ca2010-01-20 10:47:48 +1100456 unsigned char *name,
457 const unsigned char __user *ubuf,
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700458 uint32_t len,
459 uint32_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460{
Dave Chinnera9273ca2010-01-20 10:47:48 +1100461 unsigned char *kbuf;
Andreas Gruenbacher09cb22d2015-11-03 12:53:54 +1100462 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000464 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
Dave Chinner24513372014-06-25 14:58:08 +1000465 return -EPERM;
Jan Tulak51fcbfe2015-10-12 16:03:59 +1100466 if (len > XFS_XATTR_SIZE_MAX)
Dave Chinner24513372014-06-25 14:58:08 +1000467 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
Li Zefan0e639bd2009-04-08 15:08:04 +0800469 kbuf = memdup_user(ubuf, len);
470 if (IS_ERR(kbuf))
471 return PTR_ERR(kbuf);
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000472
Andreas Gruenbacher09cb22d2015-11-03 12:53:54 +1100473 error = xfs_attr_set(XFS_I(inode), name, kbuf, len, flags);
Andreas Gruenbacher47e1bf62015-11-03 12:56:17 +1100474 if (!error)
475 xfs_forget_acl(inode, name, flags);
Andreas Gruenbacher09cb22d2015-11-03 12:53:54 +1100476 kfree(kbuf);
477 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478}
479
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600480int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481xfs_attrmulti_attr_remove(
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000482 struct inode *inode,
Dave Chinnera9273ca2010-01-20 10:47:48 +1100483 unsigned char *name,
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700484 uint32_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485{
Andreas Gruenbacher47e1bf62015-11-03 12:56:17 +1100486 int error;
487
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000488 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
Dave Chinner24513372014-06-25 14:58:08 +1000489 return -EPERM;
Andreas Gruenbacher47e1bf62015-11-03 12:56:17 +1100490 error = xfs_attr_remove(XFS_I(inode), name, flags);
491 if (!error)
492 xfs_forget_acl(inode, name, flags);
493 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494}
495
496STATIC int
497xfs_attrmulti_by_handle(
Dave Hansen42a74f22008-02-15 14:37:46 -0800498 struct file *parfilp,
Christoph Hellwigd296d302009-01-19 02:02:57 +0100499 void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500{
501 int error;
502 xfs_attr_multiop_t *ops;
503 xfs_fsop_attrmulti_handlereq_t am_hreq;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100504 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 unsigned int i, size;
Dave Chinnera9273ca2010-01-20 10:47:48 +1100506 unsigned char *attr_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
508 if (!capable(CAP_SYS_ADMIN))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000509 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 if (copy_from_user(&am_hreq, arg, sizeof(xfs_fsop_attrmulti_handlereq_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000511 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
Zhitong Wangfda168c2010-03-23 09:51:22 +1100513 /* overflow check */
514 if (am_hreq.opcount >= INT_MAX / sizeof(xfs_attr_multiop_t))
515 return -E2BIG;
516
Christoph Hellwigd296d302009-01-19 02:02:57 +0100517 dentry = xfs_handlereq_to_dentry(parfilp, &am_hreq.hreq);
518 if (IS_ERR(dentry))
519 return PTR_ERR(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
Dave Chinner24513372014-06-25 14:58:08 +1000521 error = -E2BIG;
Christoph Hellwige182f572008-06-27 13:32:31 +1000522 size = am_hreq.opcount * sizeof(xfs_attr_multiop_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 if (!size || size > 16 * PAGE_SIZE)
Christoph Hellwigd296d302009-01-19 02:02:57 +0100524 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
Li Zefan0e639bd2009-04-08 15:08:04 +0800526 ops = memdup_user(am_hreq.ops, size);
527 if (IS_ERR(ops)) {
Dave Chinner24513372014-06-25 14:58:08 +1000528 error = PTR_ERR(ops);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100529 goto out_dput;
Li Zefan0e639bd2009-04-08 15:08:04 +0800530 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Dave Chinner24513372014-06-25 14:58:08 +1000532 error = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 attr_name = kmalloc(MAXNAMELEN, GFP_KERNEL);
534 if (!attr_name)
535 goto out_kfree_ops;
536
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 error = 0;
538 for (i = 0; i < am_hreq.opcount; i++) {
Dave Chinnera9273ca2010-01-20 10:47:48 +1100539 ops[i].am_error = strncpy_from_user((char *)attr_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 ops[i].am_attrname, MAXNAMELEN);
541 if (ops[i].am_error == 0 || ops[i].am_error == MAXNAMELEN)
Dave Chinner24513372014-06-25 14:58:08 +1000542 error = -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 if (ops[i].am_error < 0)
544 break;
545
546 switch (ops[i].am_opcode) {
547 case ATTR_OP_GET:
Christoph Hellwigd296d302009-01-19 02:02:57 +0100548 ops[i].am_error = xfs_attrmulti_attr_get(
David Howells2b0143b2015-03-17 22:25:59 +0000549 d_inode(dentry), attr_name,
Christoph Hellwigd296d302009-01-19 02:02:57 +0100550 ops[i].am_attrvalue, &ops[i].am_length,
551 ops[i].am_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 break;
553 case ATTR_OP_SET:
Al Viroa561be72011-11-23 11:57:51 -0500554 ops[i].am_error = mnt_want_write_file(parfilp);
Dave Hansen42a74f22008-02-15 14:37:46 -0800555 if (ops[i].am_error)
556 break;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100557 ops[i].am_error = xfs_attrmulti_attr_set(
David Howells2b0143b2015-03-17 22:25:59 +0000558 d_inode(dentry), attr_name,
Christoph Hellwigd296d302009-01-19 02:02:57 +0100559 ops[i].am_attrvalue, ops[i].am_length,
560 ops[i].am_flags);
Al Viro2a79f172011-12-09 08:06:57 -0500561 mnt_drop_write_file(parfilp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 break;
563 case ATTR_OP_REMOVE:
Al Viroa561be72011-11-23 11:57:51 -0500564 ops[i].am_error = mnt_want_write_file(parfilp);
Dave Hansen42a74f22008-02-15 14:37:46 -0800565 if (ops[i].am_error)
566 break;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100567 ops[i].am_error = xfs_attrmulti_attr_remove(
David Howells2b0143b2015-03-17 22:25:59 +0000568 d_inode(dentry), attr_name,
Christoph Hellwigd296d302009-01-19 02:02:57 +0100569 ops[i].am_flags);
Al Viro2a79f172011-12-09 08:06:57 -0500570 mnt_drop_write_file(parfilp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 break;
572 default:
Dave Chinner24513372014-06-25 14:58:08 +1000573 ops[i].am_error = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 }
575 }
576
577 if (copy_to_user(am_hreq.ops, ops, size))
Dave Chinner24513372014-06-25 14:58:08 +1000578 error = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
580 kfree(attr_name);
581 out_kfree_ops:
582 kfree(ops);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100583 out_dput:
584 dput(dentry);
Dave Chinner24513372014-06-25 14:58:08 +1000585 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586}
587
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600588int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589xfs_ioc_space(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 unsigned int cmd,
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600592 xfs_flock64_t *bf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593{
Christoph Hellwig8f3e2052016-07-20 11:29:35 +1000594 struct inode *inode = file_inode(filp);
595 struct xfs_inode *ip = XFS_I(inode);
Christoph Hellwig865e9442013-10-12 00:55:08 -0700596 struct iattr iattr;
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100597 enum xfs_prealloc_flags flags = 0;
Dan Williamsc63a8ea2018-03-12 14:12:29 -0700598 uint iolock = XFS_IOLOCK_EXCL | XFS_MMAPLOCK_EXCL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 int error;
600
Alexey Dobriyanf37ea142006-09-28 10:52:04 +1000601 if (inode->i_flags & (S_IMMUTABLE|S_APPEND))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000602 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Eric Sandeenad4a8ac2005-09-02 16:41:16 +1000604 if (!(filp->f_mode & FMODE_WRITE))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000605 return -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
Alexey Dobriyanf37ea142006-09-28 10:52:04 +1000607 if (!S_ISREG(inode->i_mode))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000608 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100610 if (filp->f_flags & O_DSYNC)
611 flags |= XFS_PREALLOC_SYNC;
Christoph Hellwig8f3e2052016-07-20 11:29:35 +1000612 if (filp->f_mode & FMODE_NOCMTIME)
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100613 flags |= XFS_PREALLOC_INVISIBLE;
614
Jan Karad9457dc2012-06-12 16:20:39 +0200615 error = mnt_want_write_file(filp);
616 if (error)
617 return error;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700618
Christoph Hellwig781355c2015-02-16 11:59:50 +1100619 xfs_ilock(ip, iolock);
Dan Williams69eb5fa2018-03-20 14:42:38 -0700620 error = xfs_break_layouts(inode, &iolock, BREAK_UNMAP);
Christoph Hellwig781355c2015-02-16 11:59:50 +1100621 if (error)
622 goto out_unlock;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700623
624 switch (bf->l_whence) {
625 case 0: /*SEEK_SET*/
626 break;
627 case 1: /*SEEK_CUR*/
628 bf->l_start += filp->f_pos;
629 break;
630 case 2: /*SEEK_END*/
631 bf->l_start += XFS_ISIZE(ip);
632 break;
633 default:
Dave Chinner24513372014-06-25 14:58:08 +1000634 error = -EINVAL;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700635 goto out_unlock;
636 }
637
638 /*
639 * length of <= 0 for resv/unresv/zero is invalid. length for
640 * alloc/free is ignored completely and we have no idea what userspace
641 * might have set it to, so set it to zero to allow range
642 * checks to pass.
643 */
644 switch (cmd) {
645 case XFS_IOC_ZERO_RANGE:
646 case XFS_IOC_RESVSP:
647 case XFS_IOC_RESVSP64:
648 case XFS_IOC_UNRESVSP:
649 case XFS_IOC_UNRESVSP64:
650 if (bf->l_len <= 0) {
Dave Chinner24513372014-06-25 14:58:08 +1000651 error = -EINVAL;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700652 goto out_unlock;
653 }
654 break;
655 default:
656 bf->l_len = 0;
657 break;
658 }
659
660 if (bf->l_start < 0 ||
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100661 bf->l_start > inode->i_sb->s_maxbytes ||
Christoph Hellwig865e9442013-10-12 00:55:08 -0700662 bf->l_start + bf->l_len < 0 ||
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100663 bf->l_start + bf->l_len >= inode->i_sb->s_maxbytes) {
Dave Chinner24513372014-06-25 14:58:08 +1000664 error = -EINVAL;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700665 goto out_unlock;
666 }
667
668 switch (cmd) {
669 case XFS_IOC_ZERO_RANGE:
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100670 flags |= XFS_PREALLOC_SET;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700671 error = xfs_zero_file_space(ip, bf->l_start, bf->l_len);
Christoph Hellwig865e9442013-10-12 00:55:08 -0700672 break;
673 case XFS_IOC_RESVSP:
674 case XFS_IOC_RESVSP64:
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100675 flags |= XFS_PREALLOC_SET;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700676 error = xfs_alloc_file_space(ip, bf->l_start, bf->l_len,
677 XFS_BMAPI_PREALLOC);
Christoph Hellwig865e9442013-10-12 00:55:08 -0700678 break;
679 case XFS_IOC_UNRESVSP:
680 case XFS_IOC_UNRESVSP64:
681 error = xfs_free_file_space(ip, bf->l_start, bf->l_len);
682 break;
683 case XFS_IOC_ALLOCSP:
684 case XFS_IOC_ALLOCSP64:
685 case XFS_IOC_FREESP:
686 case XFS_IOC_FREESP64:
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100687 flags |= XFS_PREALLOC_CLEAR;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700688 if (bf->l_start > XFS_ISIZE(ip)) {
689 error = xfs_alloc_file_space(ip, XFS_ISIZE(ip),
690 bf->l_start - XFS_ISIZE(ip), 0);
691 if (error)
692 goto out_unlock;
693 }
694
695 iattr.ia_valid = ATTR_SIZE;
696 iattr.ia_size = bf->l_start;
697
Jan Kara69bca802016-05-26 14:46:43 +0200698 error = xfs_vn_setattr_size(file_dentry(filp), &iattr);
Christoph Hellwig865e9442013-10-12 00:55:08 -0700699 break;
700 default:
701 ASSERT(0);
Dave Chinner24513372014-06-25 14:58:08 +1000702 error = -EINVAL;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700703 }
704
705 if (error)
706 goto out_unlock;
707
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100708 error = xfs_update_prealloc_flags(ip, flags);
Christoph Hellwig865e9442013-10-12 00:55:08 -0700709
710out_unlock:
Christoph Hellwig781355c2015-02-16 11:59:50 +1100711 xfs_iunlock(ip, iolock);
Jan Karad9457dc2012-06-12 16:20:39 +0200712 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +1000713 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714}
715
Darrick J. Wong2810bd62019-07-02 09:39:40 -0700716/* Return 0 on success or positive error */
717int
Darrick J. Wong8bfe9d12019-07-03 20:36:26 -0700718xfs_fsbulkstat_one_fmt(
Darrick J. Wong2810bd62019-07-02 09:39:40 -0700719 struct xfs_ibulk *breq,
720 const struct xfs_bstat *bstat)
721{
722 if (copy_to_user(breq->ubuffer, bstat, sizeof(*bstat)))
723 return -EFAULT;
724 return xfs_ibulk_advance(breq, sizeof(struct xfs_bstat));
725}
726
Darrick J. Wong677717f2019-07-02 09:39:43 -0700727int
Darrick J. Wong8bfe9d12019-07-03 20:36:26 -0700728xfs_fsinumbers_fmt(
Darrick J. Wong677717f2019-07-02 09:39:43 -0700729 struct xfs_ibulk *breq,
730 const struct xfs_inogrp *igrp)
731{
732 if (copy_to_user(breq->ubuffer, igrp, sizeof(*igrp)))
733 return -EFAULT;
734 return xfs_ibulk_advance(breq, sizeof(struct xfs_inogrp));
735}
736
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737STATIC int
Darrick J. Wong8bfe9d12019-07-03 20:36:26 -0700738xfs_ioc_fsbulkstat(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 xfs_mount_t *mp,
740 unsigned int cmd,
741 void __user *arg)
742{
Darrick J. Wong2810bd62019-07-02 09:39:40 -0700743 struct xfs_fsop_bulkreq bulkreq;
744 struct xfs_ibulk breq = {
745 .mp = mp,
746 .ocount = 0,
747 };
748 xfs_ino_t lastino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 int error;
750
751 /* done = 1 if there are more stats to get and if bulkstat */
752 /* should be called again (unused here, but used in dmapi) */
753
754 if (!capable(CAP_SYS_ADMIN))
755 return -EPERM;
756
757 if (XFS_FORCED_SHUTDOWN(mp))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000758 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
Darrick J. Wong6f71fb62019-07-03 20:36:25 -0700760 if (copy_from_user(&bulkreq, arg, sizeof(struct xfs_fsop_bulkreq)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000761 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
Darrick J. Wong2810bd62019-07-02 09:39:40 -0700763 if (copy_from_user(&lastino, bulkreq.lastip, sizeof(__s64)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000764 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
Darrick J. Wong2810bd62019-07-02 09:39:40 -0700766 if (bulkreq.icount <= 0)
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000767 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100769 if (bulkreq.ubuffer == NULL)
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000770 return -EINVAL;
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100771
Darrick J. Wong2810bd62019-07-02 09:39:40 -0700772 breq.ubuffer = bulkreq.ubuffer;
773 breq.icount = bulkreq.icount;
774
775 /*
776 * FSBULKSTAT_SINGLE expects that *lastip contains the inode number
777 * that we want to stat. However, FSINUMBERS and FSBULKSTAT expect
778 * that *lastip contains either zero or the number of the last inode to
779 * be examined by the previous call and return results starting with
780 * the next inode after that. The new bulk request back end functions
781 * take the inode to start with, so we have to compute the startino
782 * parameter from lastino to maintain correct function. lastino == 0
783 * is a special case because it has traditionally meant "first inode
784 * in filesystem".
785 */
786 if (cmd == XFS_IOC_FSINUMBERS) {
Darrick J. Wong677717f2019-07-02 09:39:43 -0700787 breq.startino = lastino ? lastino + 1 : 0;
Darrick J. Wong8bfe9d12019-07-03 20:36:26 -0700788 error = xfs_inumbers(&breq, xfs_fsinumbers_fmt);
Darrick J. Wong677717f2019-07-02 09:39:43 -0700789 lastino = breq.startino - 1;
Darrick J. Wong2810bd62019-07-02 09:39:40 -0700790 } else if (cmd == XFS_IOC_FSBULKSTAT_SINGLE) {
791 breq.startino = lastino;
792 breq.icount = 1;
Darrick J. Wong8bfe9d12019-07-03 20:36:26 -0700793 error = xfs_bulkstat_one(&breq, xfs_fsbulkstat_one_fmt);
Darrick J. Wong2810bd62019-07-02 09:39:40 -0700794 lastino = breq.startino;
795 } else { /* XFS_IOC_FSBULKSTAT */
796 breq.startino = lastino ? lastino + 1 : 0;
Darrick J. Wong8bfe9d12019-07-03 20:36:26 -0700797 error = xfs_bulkstat(&breq, xfs_fsbulkstat_one_fmt);
Darrick J. Wong2810bd62019-07-02 09:39:40 -0700798 lastino = breq.startino - 1;
799 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
801 if (error)
Dave Chinner24513372014-06-25 14:58:08 +1000802 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
Darrick J. Wongf16fe3e2019-07-02 09:39:39 -0700804 if (bulkreq.lastip != NULL &&
Darrick J. Wong2810bd62019-07-02 09:39:40 -0700805 copy_to_user(bulkreq.lastip, &lastino, sizeof(xfs_ino_t)))
Darrick J. Wongf16fe3e2019-07-02 09:39:39 -0700806 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
Darrick J. Wongf16fe3e2019-07-02 09:39:39 -0700808 if (bulkreq.ocount != NULL &&
Darrick J. Wong2810bd62019-07-02 09:39:40 -0700809 copy_to_user(bulkreq.ocount, &breq.ocount, sizeof(__s32)))
Darrick J. Wongf16fe3e2019-07-02 09:39:39 -0700810 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
812 return 0;
813}
814
815STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816xfs_ioc_fsgeometry(
Dave Chinner1b6d9682019-04-12 07:41:16 -0700817 struct xfs_mount *mp,
818 void __user *arg,
819 int struct_version)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820{
Dave Chinner1b6d9682019-04-12 07:41:16 -0700821 struct xfs_fsop_geom fsgeo;
822 size_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
Eric Sandeen91083262019-05-01 20:26:30 -0700824 xfs_fs_geometry(&mp->m_sb, &fsgeo, struct_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
Dave Chinner1b6d9682019-04-12 07:41:16 -0700826 if (struct_version <= 3)
827 len = sizeof(struct xfs_fsop_geom_v1);
828 else if (struct_version == 4)
829 len = sizeof(struct xfs_fsop_geom_v4);
Darrick J. Wongc23232d2019-04-12 07:41:17 -0700830 else {
831 xfs_fsop_geom_health(mp, &fsgeo);
Dave Chinner1b6d9682019-04-12 07:41:16 -0700832 len = sizeof(fsgeo);
Darrick J. Wongc23232d2019-04-12 07:41:17 -0700833 }
Dave Chinner1b6d9682019-04-12 07:41:16 -0700834
835 if (copy_to_user(arg, &fsgeo, len))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000836 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 return 0;
838}
839
Darrick J. Wong7cd50062019-04-12 07:41:17 -0700840STATIC int
841xfs_ioc_ag_geometry(
842 struct xfs_mount *mp,
843 void __user *arg)
844{
845 struct xfs_ag_geometry ageo;
846 int error;
847
848 if (copy_from_user(&ageo, arg, sizeof(ageo)))
849 return -EFAULT;
850
851 error = xfs_ag_get_geometry(mp, ageo.ag_number, &ageo);
852 if (error)
853 return error;
854
855 if (copy_to_user(arg, &ageo, sizeof(ageo)))
856 return -EFAULT;
857 return 0;
858}
859
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860/*
861 * Linux extended inode flags interface.
862 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863
864STATIC unsigned int
865xfs_merge_ioc_xflags(
866 unsigned int flags,
867 unsigned int start)
868{
869 unsigned int xflags = start;
870
Eric Sandeen39058a02007-02-10 18:37:10 +1100871 if (flags & FS_IMMUTABLE_FL)
Dave Chinnere7b89482016-01-04 16:44:15 +1100872 xflags |= FS_XFLAG_IMMUTABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 else
Dave Chinnere7b89482016-01-04 16:44:15 +1100874 xflags &= ~FS_XFLAG_IMMUTABLE;
Eric Sandeen39058a02007-02-10 18:37:10 +1100875 if (flags & FS_APPEND_FL)
Dave Chinnere7b89482016-01-04 16:44:15 +1100876 xflags |= FS_XFLAG_APPEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 else
Dave Chinnere7b89482016-01-04 16:44:15 +1100878 xflags &= ~FS_XFLAG_APPEND;
Eric Sandeen39058a02007-02-10 18:37:10 +1100879 if (flags & FS_SYNC_FL)
Dave Chinnere7b89482016-01-04 16:44:15 +1100880 xflags |= FS_XFLAG_SYNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 else
Dave Chinnere7b89482016-01-04 16:44:15 +1100882 xflags &= ~FS_XFLAG_SYNC;
Eric Sandeen39058a02007-02-10 18:37:10 +1100883 if (flags & FS_NOATIME_FL)
Dave Chinnere7b89482016-01-04 16:44:15 +1100884 xflags |= FS_XFLAG_NOATIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 else
Dave Chinnere7b89482016-01-04 16:44:15 +1100886 xflags &= ~FS_XFLAG_NOATIME;
Eric Sandeen39058a02007-02-10 18:37:10 +1100887 if (flags & FS_NODUMP_FL)
Dave Chinnere7b89482016-01-04 16:44:15 +1100888 xflags |= FS_XFLAG_NODUMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 else
Dave Chinnere7b89482016-01-04 16:44:15 +1100890 xflags &= ~FS_XFLAG_NODUMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
892 return xflags;
893}
894
895STATIC unsigned int
896xfs_di2lxflags(
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700897 uint16_t di_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898{
899 unsigned int flags = 0;
900
901 if (di_flags & XFS_DIFLAG_IMMUTABLE)
Eric Sandeen39058a02007-02-10 18:37:10 +1100902 flags |= FS_IMMUTABLE_FL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 if (di_flags & XFS_DIFLAG_APPEND)
Eric Sandeen39058a02007-02-10 18:37:10 +1100904 flags |= FS_APPEND_FL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 if (di_flags & XFS_DIFLAG_SYNC)
Eric Sandeen39058a02007-02-10 18:37:10 +1100906 flags |= FS_SYNC_FL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 if (di_flags & XFS_DIFLAG_NOATIME)
Eric Sandeen39058a02007-02-10 18:37:10 +1100908 flags |= FS_NOATIME_FL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 if (di_flags & XFS_DIFLAG_NODUMP)
Eric Sandeen39058a02007-02-10 18:37:10 +1100910 flags |= FS_NODUMP_FL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 return flags;
912}
913
914STATIC int
Christoph Hellwigc83bfab2007-10-11 17:47:00 +1000915xfs_ioc_fsgetxattr(
916 xfs_inode_t *ip,
917 int attr,
918 void __user *arg)
919{
920 struct fsxattr fa;
921
Dan Rosenberga122eb22010-09-06 18:24:57 -0400922 memset(&fa, 0, sizeof(struct fsxattr));
923
Christoph Hellwigc83bfab2007-10-11 17:47:00 +1000924 xfs_ilock(ip, XFS_ILOCK_SHARED);
925 fa.fsx_xflags = xfs_ip2xflags(ip);
926 fa.fsx_extsize = ip->i_d.di_extsize << ip->i_mount->m_sb.sb_blocklog;
Darrick J. Wongf7ca3522016-10-03 09:11:43 -0700927 fa.fsx_cowextsize = ip->i_d.di_cowextsize <<
928 ip->i_mount->m_sb.sb_blocklog;
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000929 fa.fsx_projid = xfs_get_projid(ip);
Christoph Hellwigc83bfab2007-10-11 17:47:00 +1000930
931 if (attr) {
932 if (ip->i_afp) {
933 if (ip->i_afp->if_flags & XFS_IFEXTENTS)
Eric Sandeen5d829302016-11-08 12:59:42 +1100934 fa.fsx_nextents = xfs_iext_count(ip->i_afp);
Christoph Hellwigc83bfab2007-10-11 17:47:00 +1000935 else
936 fa.fsx_nextents = ip->i_d.di_anextents;
937 } else
938 fa.fsx_nextents = 0;
939 } else {
940 if (ip->i_df.if_flags & XFS_IFEXTENTS)
Eric Sandeen5d829302016-11-08 12:59:42 +1100941 fa.fsx_nextents = xfs_iext_count(&ip->i_df);
Christoph Hellwigc83bfab2007-10-11 17:47:00 +1000942 else
943 fa.fsx_nextents = ip->i_d.di_nextents;
944 }
945 xfs_iunlock(ip, XFS_ILOCK_SHARED);
946
947 if (copy_to_user(arg, &fa, sizeof(fa)))
948 return -EFAULT;
949 return 0;
950}
951
Christoph Hellwigdd606872017-09-02 08:21:20 -0700952STATIC uint16_t
953xfs_flags2diflags(
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000954 struct xfs_inode *ip,
955 unsigned int xflags)
956{
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000957 /* can't set PREALLOC this way, just preserve it */
Christoph Hellwigdd606872017-09-02 08:21:20 -0700958 uint16_t di_flags =
959 (ip->i_d.di_flags & XFS_DIFLAG_PREALLOC);
960
Dave Chinnere7b89482016-01-04 16:44:15 +1100961 if (xflags & FS_XFLAG_IMMUTABLE)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000962 di_flags |= XFS_DIFLAG_IMMUTABLE;
Dave Chinnere7b89482016-01-04 16:44:15 +1100963 if (xflags & FS_XFLAG_APPEND)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000964 di_flags |= XFS_DIFLAG_APPEND;
Dave Chinnere7b89482016-01-04 16:44:15 +1100965 if (xflags & FS_XFLAG_SYNC)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000966 di_flags |= XFS_DIFLAG_SYNC;
Dave Chinnere7b89482016-01-04 16:44:15 +1100967 if (xflags & FS_XFLAG_NOATIME)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000968 di_flags |= XFS_DIFLAG_NOATIME;
Dave Chinnere7b89482016-01-04 16:44:15 +1100969 if (xflags & FS_XFLAG_NODUMP)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000970 di_flags |= XFS_DIFLAG_NODUMP;
Dave Chinnere7b89482016-01-04 16:44:15 +1100971 if (xflags & FS_XFLAG_NODEFRAG)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000972 di_flags |= XFS_DIFLAG_NODEFRAG;
Dave Chinnere7b89482016-01-04 16:44:15 +1100973 if (xflags & FS_XFLAG_FILESTREAM)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000974 di_flags |= XFS_DIFLAG_FILESTREAM;
Dave Chinnerc19b3b052016-02-09 16:54:58 +1100975 if (S_ISDIR(VFS_I(ip)->i_mode)) {
Dave Chinnere7b89482016-01-04 16:44:15 +1100976 if (xflags & FS_XFLAG_RTINHERIT)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000977 di_flags |= XFS_DIFLAG_RTINHERIT;
Dave Chinnere7b89482016-01-04 16:44:15 +1100978 if (xflags & FS_XFLAG_NOSYMLINKS)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000979 di_flags |= XFS_DIFLAG_NOSYMLINKS;
Dave Chinnere7b89482016-01-04 16:44:15 +1100980 if (xflags & FS_XFLAG_EXTSZINHERIT)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000981 di_flags |= XFS_DIFLAG_EXTSZINHERIT;
Dave Chinnere7b89482016-01-04 16:44:15 +1100982 if (xflags & FS_XFLAG_PROJINHERIT)
Dave Chinner9336e3a2014-10-02 09:18:40 +1000983 di_flags |= XFS_DIFLAG_PROJINHERIT;
Dave Chinnerc19b3b052016-02-09 16:54:58 +1100984 } else if (S_ISREG(VFS_I(ip)->i_mode)) {
Dave Chinnere7b89482016-01-04 16:44:15 +1100985 if (xflags & FS_XFLAG_REALTIME)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000986 di_flags |= XFS_DIFLAG_REALTIME;
Dave Chinnere7b89482016-01-04 16:44:15 +1100987 if (xflags & FS_XFLAG_EXTSIZE)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000988 di_flags |= XFS_DIFLAG_EXTSIZE;
989 }
Dave Chinner58f88ca2016-01-04 16:44:15 +1100990
Christoph Hellwigdd606872017-09-02 08:21:20 -0700991 return di_flags;
992}
Dave Chinner58f88ca2016-01-04 16:44:15 +1100993
Christoph Hellwigdd606872017-09-02 08:21:20 -0700994STATIC uint64_t
995xfs_flags2diflags2(
996 struct xfs_inode *ip,
997 unsigned int xflags)
998{
999 uint64_t di_flags2 =
1000 (ip->i_d.di_flags2 & XFS_DIFLAG2_REFLINK);
1001
Dave Chinner58f88ca2016-01-04 16:44:15 +11001002 if (xflags & FS_XFLAG_DAX)
1003 di_flags2 |= XFS_DIFLAG2_DAX;
Darrick J. Wongf7ca3522016-10-03 09:11:43 -07001004 if (xflags & FS_XFLAG_COWEXTSIZE)
1005 di_flags2 |= XFS_DIFLAG2_COWEXTSIZE;
Dave Chinner58f88ca2016-01-04 16:44:15 +11001006
Christoph Hellwigdd606872017-09-02 08:21:20 -07001007 return di_flags2;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001008}
1009
Christoph Hellwigf13fae22008-07-21 16:16:15 +10001010STATIC void
1011xfs_diflags_to_linux(
1012 struct xfs_inode *ip)
1013{
David Chinnere4f75292008-08-13 16:00:45 +10001014 struct inode *inode = VFS_I(ip);
Christoph Hellwigf13fae22008-07-21 16:16:15 +10001015 unsigned int xflags = xfs_ip2xflags(ip);
1016
Dave Chinnere7b89482016-01-04 16:44:15 +11001017 if (xflags & FS_XFLAG_IMMUTABLE)
Christoph Hellwigf13fae22008-07-21 16:16:15 +10001018 inode->i_flags |= S_IMMUTABLE;
1019 else
1020 inode->i_flags &= ~S_IMMUTABLE;
Dave Chinnere7b89482016-01-04 16:44:15 +11001021 if (xflags & FS_XFLAG_APPEND)
Christoph Hellwigf13fae22008-07-21 16:16:15 +10001022 inode->i_flags |= S_APPEND;
1023 else
1024 inode->i_flags &= ~S_APPEND;
Dave Chinnere7b89482016-01-04 16:44:15 +11001025 if (xflags & FS_XFLAG_SYNC)
Christoph Hellwigf13fae22008-07-21 16:16:15 +10001026 inode->i_flags |= S_SYNC;
1027 else
1028 inode->i_flags &= ~S_SYNC;
Dave Chinnere7b89482016-01-04 16:44:15 +11001029 if (xflags & FS_XFLAG_NOATIME)
Christoph Hellwigf13fae22008-07-21 16:16:15 +10001030 inode->i_flags |= S_NOATIME;
1031 else
1032 inode->i_flags &= ~S_NOATIME;
Christoph Hellwig742d8422017-08-30 09:23:01 -07001033#if 0 /* disabled until the flag switching races are sorted out */
Dave Chinner58f88ca2016-01-04 16:44:15 +11001034 if (xflags & FS_XFLAG_DAX)
1035 inode->i_flags |= S_DAX;
1036 else
1037 inode->i_flags &= ~S_DAX;
Christoph Hellwig742d8422017-08-30 09:23:01 -07001038#endif
Christoph Hellwigf13fae22008-07-21 16:16:15 +10001039}
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001040
Dave Chinner29a17c02015-02-02 10:14:25 +11001041static int
1042xfs_ioctl_setattr_xflags(
1043 struct xfs_trans *tp,
1044 struct xfs_inode *ip,
1045 struct fsxattr *fa)
1046{
1047 struct xfs_mount *mp = ip->i_mount;
Christoph Hellwigdd606872017-09-02 08:21:20 -07001048 uint64_t di_flags2;
Dave Chinner29a17c02015-02-02 10:14:25 +11001049
1050 /* Can't change realtime flag if any extents are allocated. */
1051 if ((ip->i_d.di_nextents || ip->i_delayed_blks) &&
Dave Chinnere7b89482016-01-04 16:44:15 +11001052 XFS_IS_REALTIME_INODE(ip) != (fa->fsx_xflags & FS_XFLAG_REALTIME))
Dave Chinner29a17c02015-02-02 10:14:25 +11001053 return -EINVAL;
1054
1055 /* If realtime flag is set then must have realtime device */
Dave Chinnere7b89482016-01-04 16:44:15 +11001056 if (fa->fsx_xflags & FS_XFLAG_REALTIME) {
Dave Chinner29a17c02015-02-02 10:14:25 +11001057 if (mp->m_sb.sb_rblocks == 0 || mp->m_sb.sb_rextsize == 0 ||
1058 (ip->i_d.di_extsize % mp->m_sb.sb_rextsize))
1059 return -EINVAL;
1060 }
1061
Darrick J. Wong1987fd72016-10-10 16:49:29 +11001062 /* Clear reflink if we are actually able to set the rt flag. */
Darrick J. Wongc8e156a2016-10-03 09:11:50 -07001063 if ((fa->fsx_xflags & FS_XFLAG_REALTIME) && xfs_is_reflink_inode(ip))
Darrick J. Wong1987fd72016-10-10 16:49:29 +11001064 ip->i_d.di_flags2 &= ~XFS_DIFLAG2_REFLINK;
Darrick J. Wongc8e156a2016-10-03 09:11:50 -07001065
Darrick J. Wong4f435eb2016-10-03 09:11:50 -07001066 /* Don't allow us to set DAX mode for a reflinked file for now. */
1067 if ((fa->fsx_xflags & FS_XFLAG_DAX) && xfs_is_reflink_inode(ip))
1068 return -EINVAL;
1069
Dave Chinner29a17c02015-02-02 10:14:25 +11001070 /*
1071 * Can't modify an immutable/append-only file unless
1072 * we have appropriate permission.
1073 */
1074 if (((ip->i_d.di_flags & (XFS_DIFLAG_IMMUTABLE | XFS_DIFLAG_APPEND)) ||
Dave Chinnere7b89482016-01-04 16:44:15 +11001075 (fa->fsx_xflags & (FS_XFLAG_IMMUTABLE | FS_XFLAG_APPEND))) &&
Dave Chinner29a17c02015-02-02 10:14:25 +11001076 !capable(CAP_LINUX_IMMUTABLE))
1077 return -EPERM;
1078
Christoph Hellwigdd606872017-09-02 08:21:20 -07001079 /* diflags2 only valid for v3 inodes. */
1080 di_flags2 = xfs_flags2diflags2(ip, fa->fsx_xflags);
1081 if (di_flags2 && ip->i_d.di_version < 3)
1082 return -EINVAL;
1083
1084 ip->i_d.di_flags = xfs_flags2diflags(ip, fa->fsx_xflags);
1085 ip->i_d.di_flags2 = di_flags2;
1086
Dave Chinner29a17c02015-02-02 10:14:25 +11001087 xfs_diflags_to_linux(ip);
1088 xfs_trans_ichgtime(tp, ip, XFS_ICHGTIME_CHG);
1089 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
Bill O'Donnellff6d6af2015-10-12 18:21:22 +11001090 XFS_STATS_INC(mp, xs_ig_attrchg);
Dave Chinner29a17c02015-02-02 10:14:25 +11001091 return 0;
1092}
1093
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001094/*
Dave Chinner3a6a8542016-03-01 09:41:33 +11001095 * If we are changing DAX flags, we have to ensure the file is clean and any
1096 * cached objects in the address space are invalidated and removed. This
1097 * requires us to lock out other IO and page faults similar to a truncate
1098 * operation. The locks need to be held until the transaction has been committed
1099 * so that the cache invalidation is atomic with respect to the DAX flag
1100 * manipulation.
1101 */
1102static int
1103xfs_ioctl_setattr_dax_invalidate(
1104 struct xfs_inode *ip,
1105 struct fsxattr *fa,
1106 int *join_flags)
1107{
1108 struct inode *inode = VFS_I(ip);
Ross Zwisler6851a3d2017-09-18 14:46:03 -07001109 struct super_block *sb = inode->i_sb;
Dave Chinner3a6a8542016-03-01 09:41:33 +11001110 int error;
1111
1112 *join_flags = 0;
1113
1114 /*
1115 * It is only valid to set the DAX flag on regular files and
Dave Chinner64485432016-03-01 09:41:33 +11001116 * directories on filesystems where the block size is equal to the page
Darrick J. Wongaaacdd22018-05-31 15:07:47 -07001117 * size. On directories it serves as an inherited hint so we don't
1118 * have to check the device for dax support or flush pagecache.
Dave Chinner3a6a8542016-03-01 09:41:33 +11001119 */
Dave Chinner64485432016-03-01 09:41:33 +11001120 if (fa->fsx_xflags & FS_XFLAG_DAX) {
1121 if (!(S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode)))
1122 return -EINVAL;
Darrick J. Wongaaacdd22018-05-31 15:07:47 -07001123 if (S_ISREG(inode->i_mode) &&
1124 !bdev_dax_supported(xfs_find_bdev_for_inode(VFS_I(ip)),
Dave Jiang80660f22018-05-30 13:03:46 -07001125 sb->s_blocksize))
Dave Chinner64485432016-03-01 09:41:33 +11001126 return -EINVAL;
1127 }
Dave Chinner3a6a8542016-03-01 09:41:33 +11001128
1129 /* If the DAX state is not changing, we have nothing to do here. */
1130 if ((fa->fsx_xflags & FS_XFLAG_DAX) && IS_DAX(inode))
1131 return 0;
1132 if (!(fa->fsx_xflags & FS_XFLAG_DAX) && !IS_DAX(inode))
1133 return 0;
1134
Darrick J. Wongaaacdd22018-05-31 15:07:47 -07001135 if (S_ISDIR(inode->i_mode))
1136 return 0;
1137
Dave Chinner3a6a8542016-03-01 09:41:33 +11001138 /* lock, flush and invalidate mapping in preparation for flag change */
1139 xfs_ilock(ip, XFS_MMAPLOCK_EXCL | XFS_IOLOCK_EXCL);
1140 error = filemap_write_and_wait(inode->i_mapping);
1141 if (error)
1142 goto out_unlock;
1143 error = invalidate_inode_pages2(inode->i_mapping);
1144 if (error)
1145 goto out_unlock;
1146
1147 *join_flags = XFS_MMAPLOCK_EXCL | XFS_IOLOCK_EXCL;
1148 return 0;
1149
1150out_unlock:
1151 xfs_iunlock(ip, XFS_MMAPLOCK_EXCL | XFS_IOLOCK_EXCL);
1152 return error;
1153
1154}
1155
1156/*
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001157 * Set up the transaction structure for the setattr operation, checking that we
1158 * have permission to do so. On success, return a clean transaction and the
1159 * inode locked exclusively ready for further operation specific checks. On
1160 * failure, return an error without modifying or locking the inode.
Dave Chinner3a6a8542016-03-01 09:41:33 +11001161 *
1162 * The inode might already be IO locked on call. If this is the case, it is
1163 * indicated in @join_flags and we take full responsibility for ensuring they
1164 * are unlocked from now on. Hence if we have an error here, we still have to
1165 * unlock them. Otherwise, once they are joined to the transaction, they will
1166 * be unlocked on commit/cancel.
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001167 */
1168static struct xfs_trans *
1169xfs_ioctl_setattr_get_trans(
Dave Chinner3a6a8542016-03-01 09:41:33 +11001170 struct xfs_inode *ip,
1171 int join_flags)
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001172{
1173 struct xfs_mount *mp = ip->i_mount;
1174 struct xfs_trans *tp;
Dave Chinner3a6a8542016-03-01 09:41:33 +11001175 int error = -EROFS;
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001176
1177 if (mp->m_flags & XFS_MOUNT_RDONLY)
Dave Chinner3a6a8542016-03-01 09:41:33 +11001178 goto out_unlock;
1179 error = -EIO;
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001180 if (XFS_FORCED_SHUTDOWN(mp))
Dave Chinner3a6a8542016-03-01 09:41:33 +11001181 goto out_unlock;
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001182
Christoph Hellwig253f4912016-04-06 09:19:55 +10001183 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_ichange, 0, 0, 0, &tp);
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001184 if (error)
Darrick J. Wong3de5eab2019-04-22 16:28:34 -07001185 goto out_unlock;
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001186
1187 xfs_ilock(ip, XFS_ILOCK_EXCL);
Dave Chinner3a6a8542016-03-01 09:41:33 +11001188 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL | join_flags);
1189 join_flags = 0;
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001190
1191 /*
1192 * CAP_FOWNER overrides the following restrictions:
1193 *
1194 * The user ID of the calling process must be equal to the file owner
1195 * ID, except in cases where the CAP_FSETID capability is applicable.
1196 */
1197 if (!inode_owner_or_capable(VFS_I(ip))) {
1198 error = -EPERM;
1199 goto out_cancel;
1200 }
1201
1202 if (mp->m_flags & XFS_MOUNT_WSYNC)
1203 xfs_trans_set_sync(tp);
1204
1205 return tp;
1206
1207out_cancel:
Christoph Hellwig4906e212015-06-04 13:47:56 +10001208 xfs_trans_cancel(tp);
Dave Chinner3a6a8542016-03-01 09:41:33 +11001209out_unlock:
1210 if (join_flags)
1211 xfs_iunlock(ip, join_flags);
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001212 return ERR_PTR(error);
1213}
1214
Iustin Pop9b94fcc2015-02-02 10:26:26 +11001215/*
1216 * extent size hint validation is somewhat cumbersome. Rules are:
1217 *
1218 * 1. extent size hint is only valid for directories and regular files
Dave Chinnere7b89482016-01-04 16:44:15 +11001219 * 2. FS_XFLAG_EXTSIZE is only valid for regular files
1220 * 3. FS_XFLAG_EXTSZINHERIT is only valid for directories.
Iustin Pop9b94fcc2015-02-02 10:26:26 +11001221 * 4. can only be changed on regular files if no extents are allocated
1222 * 5. can be changed on directories at any time
1223 * 6. extsize hint of 0 turns off hints, clears inode flags.
1224 * 7. Extent size must be a multiple of the appropriate block size.
1225 * 8. for non-realtime files, the extent size hint must be limited
1226 * to half the AG size to avoid alignment extending the extent beyond the
1227 * limits of the AG.
Darrick J. Wong80e4e122017-10-17 21:37:42 -07001228 *
1229 * Please keep this function in sync with xfs_scrub_inode_extsize.
Iustin Pop9b94fcc2015-02-02 10:26:26 +11001230 */
kbuild test robotf92090e2015-02-05 11:13:21 +11001231static int
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001232xfs_ioctl_setattr_check_extsize(
1233 struct xfs_inode *ip,
1234 struct fsxattr *fa)
1235{
1236 struct xfs_mount *mp = ip->i_mount;
1237
Dave Chinnerc19b3b052016-02-09 16:54:58 +11001238 if ((fa->fsx_xflags & FS_XFLAG_EXTSIZE) && !S_ISREG(VFS_I(ip)->i_mode))
Iustin Pop9b94fcc2015-02-02 10:26:26 +11001239 return -EINVAL;
1240
Dave Chinnere7b89482016-01-04 16:44:15 +11001241 if ((fa->fsx_xflags & FS_XFLAG_EXTSZINHERIT) &&
Dave Chinnerc19b3b052016-02-09 16:54:58 +11001242 !S_ISDIR(VFS_I(ip)->i_mode))
Iustin Pop9b94fcc2015-02-02 10:26:26 +11001243 return -EINVAL;
1244
Dave Chinnerc19b3b052016-02-09 16:54:58 +11001245 if (S_ISREG(VFS_I(ip)->i_mode) && ip->i_d.di_nextents &&
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001246 ((ip->i_d.di_extsize << mp->m_sb.sb_blocklog) != fa->fsx_extsize))
1247 return -EINVAL;
1248
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001249 if (fa->fsx_extsize != 0) {
1250 xfs_extlen_t size;
1251 xfs_fsblock_t extsize_fsb;
1252
1253 extsize_fsb = XFS_B_TO_FSB(mp, fa->fsx_extsize);
1254 if (extsize_fsb > MAXEXTLEN)
1255 return -EINVAL;
1256
1257 if (XFS_IS_REALTIME_INODE(ip) ||
Dave Chinnere7b89482016-01-04 16:44:15 +11001258 (fa->fsx_xflags & FS_XFLAG_REALTIME)) {
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001259 size = mp->m_sb.sb_rextsize << mp->m_sb.sb_blocklog;
1260 } else {
1261 size = mp->m_sb.sb_blocksize;
1262 if (extsize_fsb > mp->m_sb.sb_agblocks / 2)
1263 return -EINVAL;
1264 }
1265
1266 if (fa->fsx_extsize % size)
1267 return -EINVAL;
Iustin Pop9b94fcc2015-02-02 10:26:26 +11001268 } else
Dave Chinnere7b89482016-01-04 16:44:15 +11001269 fa->fsx_xflags &= ~(FS_XFLAG_EXTSIZE | FS_XFLAG_EXTSZINHERIT);
Iustin Pop9b94fcc2015-02-02 10:26:26 +11001270
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001271 return 0;
1272}
1273
Darrick J. Wongf7ca3522016-10-03 09:11:43 -07001274/*
1275 * CoW extent size hint validation rules are:
1276 *
1277 * 1. CoW extent size hint can only be set if reflink is enabled on the fs.
1278 * The inode does not have to have any shared blocks, but it must be a v3.
1279 * 2. FS_XFLAG_COWEXTSIZE is only valid for directories and regular files;
1280 * for a directory, the hint is propagated to new files.
1281 * 3. Can be changed on files & directories at any time.
1282 * 4. CoW extsize hint of 0 turns off hints, clears inode flags.
1283 * 5. Extent size must be a multiple of the appropriate block size.
1284 * 6. The extent size hint must be limited to half the AG size to avoid
1285 * alignment extending the extent beyond the limits of the AG.
Darrick J. Wong80e4e122017-10-17 21:37:42 -07001286 *
1287 * Please keep this function in sync with xfs_scrub_inode_cowextsize.
Darrick J. Wongf7ca3522016-10-03 09:11:43 -07001288 */
1289static int
1290xfs_ioctl_setattr_check_cowextsize(
1291 struct xfs_inode *ip,
1292 struct fsxattr *fa)
1293{
1294 struct xfs_mount *mp = ip->i_mount;
1295
1296 if (!(fa->fsx_xflags & FS_XFLAG_COWEXTSIZE))
1297 return 0;
1298
1299 if (!xfs_sb_version_hasreflink(&ip->i_mount->m_sb) ||
1300 ip->i_d.di_version != 3)
1301 return -EINVAL;
1302
1303 if (!S_ISREG(VFS_I(ip)->i_mode) && !S_ISDIR(VFS_I(ip)->i_mode))
1304 return -EINVAL;
1305
1306 if (fa->fsx_cowextsize != 0) {
1307 xfs_extlen_t size;
1308 xfs_fsblock_t cowextsize_fsb;
1309
1310 cowextsize_fsb = XFS_B_TO_FSB(mp, fa->fsx_cowextsize);
1311 if (cowextsize_fsb > MAXEXTLEN)
1312 return -EINVAL;
1313
1314 size = mp->m_sb.sb_blocksize;
1315 if (cowextsize_fsb > mp->m_sb.sb_agblocks / 2)
1316 return -EINVAL;
1317
1318 if (fa->fsx_cowextsize % size)
1319 return -EINVAL;
1320 } else
1321 fa->fsx_xflags &= ~FS_XFLAG_COWEXTSIZE;
1322
1323 return 0;
1324}
1325
kbuild test robotf92090e2015-02-05 11:13:21 +11001326static int
Dave Chinner23bd0732015-02-02 10:22:53 +11001327xfs_ioctl_setattr_check_projid(
1328 struct xfs_inode *ip,
1329 struct fsxattr *fa)
1330{
1331 /* Disallow 32bit project ids if projid32bit feature is not enabled. */
Darrick J. Wongc8ce5402017-06-16 11:00:05 -07001332 if (fa->fsx_projid > (uint16_t)-1 &&
Dave Chinner23bd0732015-02-02 10:22:53 +11001333 !xfs_sb_version_hasprojid32bit(&ip->i_mount->m_sb))
1334 return -EINVAL;
1335
1336 /*
1337 * Project Quota ID state is only allowed to change from within the init
1338 * namespace. Enforce that restriction only if we are trying to change
1339 * the quota ID state. Everything else is allowed in user namespaces.
1340 */
1341 if (current_user_ns() == &init_user_ns)
1342 return 0;
1343
1344 if (xfs_get_projid(ip) != fa->fsx_projid)
1345 return -EINVAL;
Dave Chinnere7b89482016-01-04 16:44:15 +11001346 if ((fa->fsx_xflags & FS_XFLAG_PROJINHERIT) !=
Dave Chinner23bd0732015-02-02 10:22:53 +11001347 (ip->i_d.di_flags & XFS_DIFLAG_PROJINHERIT))
1348 return -EINVAL;
1349
1350 return 0;
1351}
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001352
1353STATIC int
1354xfs_ioctl_setattr(
1355 xfs_inode_t *ip,
Dave Chinnerfd179b92015-02-02 10:16:25 +11001356 struct fsxattr *fa)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001357{
1358 struct xfs_mount *mp = ip->i_mount;
1359 struct xfs_trans *tp;
Christoph Hellwig7d095252009-06-08 15:33:32 +02001360 struct xfs_dquot *udqp = NULL;
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001361 struct xfs_dquot *pdqp = NULL;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001362 struct xfs_dquot *olddquot = NULL;
1363 int code;
Dave Chinner3a6a8542016-03-01 09:41:33 +11001364 int join_flags = 0;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001365
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001366 trace_xfs_ioctl_setattr(ip);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001367
Dave Chinner23bd0732015-02-02 10:22:53 +11001368 code = xfs_ioctl_setattr_check_projid(ip, fa);
1369 if (code)
1370 return code;
Arkadiusz Mi?kiewicz23963e542010-08-26 10:19:43 +00001371
1372 /*
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001373 * If disk quotas is on, we make sure that the dquots do exist on disk,
1374 * before we start any other transactions. Trying to do this later
1375 * is messy. We don't care to take a readlock to look at the ids
1376 * in inode here, because we can't hold it across the trans_reserve.
1377 * If the IDs do change before we take the ilock, we're covered
1378 * because the i_*dquot fields will get updated anyway.
1379 */
Dave Chinnerfd179b92015-02-02 10:16:25 +11001380 if (XFS_IS_QUOTA_ON(mp)) {
Christoph Hellwig7d095252009-06-08 15:33:32 +02001381 code = xfs_qm_vop_dqalloc(ip, ip->i_d.di_uid,
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001382 ip->i_d.di_gid, fa->fsx_projid,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001383 XFS_QMOPT_PQUOTA, &udqp, NULL, &pdqp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001384 if (code)
1385 return code;
1386 }
1387
Dave Chinner3a6a8542016-03-01 09:41:33 +11001388 /*
1389 * Changing DAX config may require inode locking for mapping
1390 * invalidation. These need to be held all the way to transaction commit
1391 * or cancel time, so need to be passed through to
1392 * xfs_ioctl_setattr_get_trans() so it can apply them to the join call
1393 * appropriately.
1394 */
1395 code = xfs_ioctl_setattr_dax_invalidate(ip, fa, &join_flags);
1396 if (code)
1397 goto error_free_dquots;
1398
1399 tp = xfs_ioctl_setattr_get_trans(ip, join_flags);
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001400 if (IS_ERR(tp)) {
1401 code = PTR_ERR(tp);
1402 goto error_free_dquots;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001403 }
1404
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001405
Dave Chinnerfd179b92015-02-02 10:16:25 +11001406 if (XFS_IS_QUOTA_RUNNING(mp) && XFS_IS_PQUOTA_ON(mp) &&
1407 xfs_get_projid(ip) != fa->fsx_projid) {
1408 code = xfs_qm_vop_chown_reserve(tp, ip, udqp, NULL, pdqp,
1409 capable(CAP_FOWNER) ? XFS_QMOPT_FORCE_RES : 0);
1410 if (code) /* out of quota */
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001411 goto error_trans_cancel;
Dave Chinnerfd179b92015-02-02 10:16:25 +11001412 }
1413
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001414 code = xfs_ioctl_setattr_check_extsize(ip, fa);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001415 if (code)
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001416 goto error_trans_cancel;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001417
Darrick J. Wongf7ca3522016-10-03 09:11:43 -07001418 code = xfs_ioctl_setattr_check_cowextsize(ip, fa);
1419 if (code)
1420 goto error_trans_cancel;
1421
Dave Chinner29a17c02015-02-02 10:14:25 +11001422 code = xfs_ioctl_setattr_xflags(tp, ip, fa);
1423 if (code)
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001424 goto error_trans_cancel;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001425
1426 /*
Dave Chinnerfd179b92015-02-02 10:16:25 +11001427 * Change file ownership. Must be the owner or privileged. CAP_FSETID
1428 * overrides the following restrictions:
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001429 *
Dave Chinnerfd179b92015-02-02 10:16:25 +11001430 * The set-user-ID and set-group-ID bits of a file will be cleared upon
1431 * successful return from chown()
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001432 */
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001433
Dave Chinnerc19b3b052016-02-09 16:54:58 +11001434 if ((VFS_I(ip)->i_mode & (S_ISUID|S_ISGID)) &&
Dave Chinnerfd179b92015-02-02 10:16:25 +11001435 !capable_wrt_inode_uidgid(VFS_I(ip), CAP_FSETID))
Dave Chinnerc19b3b052016-02-09 16:54:58 +11001436 VFS_I(ip)->i_mode &= ~(S_ISUID|S_ISGID);
Dave Chinnerfd179b92015-02-02 10:16:25 +11001437
1438 /* Change the ownerships and register project quota modifications */
1439 if (xfs_get_projid(ip) != fa->fsx_projid) {
1440 if (XFS_IS_QUOTA_RUNNING(mp) && XFS_IS_PQUOTA_ON(mp)) {
1441 olddquot = xfs_qm_vop_chown(tp, ip,
1442 &ip->i_pdquot, pdqp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001443 }
Dave Chinnerfd179b92015-02-02 10:16:25 +11001444 ASSERT(ip->i_d.di_version > 1);
1445 xfs_set_projid(ip, fa->fsx_projid);
Christoph Hellwigf13fae22008-07-21 16:16:15 +10001446 }
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001447
Dave Chinnera8727032014-10-02 09:20:30 +10001448 /*
1449 * Only set the extent size hint if we've already determined that the
1450 * extent size hint should be set on the inode. If no extent size flags
1451 * are set on the inode then unconditionally clear the extent size hint.
1452 */
Dave Chinnerfd179b92015-02-02 10:16:25 +11001453 if (ip->i_d.di_flags & (XFS_DIFLAG_EXTSIZE | XFS_DIFLAG_EXTSZINHERIT))
1454 ip->i_d.di_extsize = fa->fsx_extsize >> mp->m_sb.sb_blocklog;
1455 else
1456 ip->i_d.di_extsize = 0;
Darrick J. Wongf7ca3522016-10-03 09:11:43 -07001457 if (ip->i_d.di_version == 3 &&
1458 (ip->i_d.di_flags2 & XFS_DIFLAG2_COWEXTSIZE))
1459 ip->i_d.di_cowextsize = fa->fsx_cowextsize >>
1460 mp->m_sb.sb_blocklog;
1461 else
1462 ip->i_d.di_cowextsize = 0;
Dave Chinnera8727032014-10-02 09:20:30 +10001463
Christoph Hellwig70393312015-06-04 13:48:08 +10001464 code = xfs_trans_commit(tp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001465
1466 /*
1467 * Release any dquot(s) the inode had kept before chown.
1468 */
Christoph Hellwig7d095252009-06-08 15:33:32 +02001469 xfs_qm_dqrele(olddquot);
1470 xfs_qm_dqrele(udqp);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001471 xfs_qm_dqrele(pdqp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001472
Christoph Hellwig288699f2010-06-23 18:11:15 +10001473 return code;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001474
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001475error_trans_cancel:
Christoph Hellwig4906e212015-06-04 13:47:56 +10001476 xfs_trans_cancel(tp);
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001477error_free_dquots:
Christoph Hellwig7d095252009-06-08 15:33:32 +02001478 xfs_qm_dqrele(udqp);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001479 xfs_qm_dqrele(pdqp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001480 return code;
1481}
1482
Christoph Hellwigc83bfab2007-10-11 17:47:00 +10001483STATIC int
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001484xfs_ioc_fssetxattr(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 xfs_inode_t *ip,
1486 struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 void __user *arg)
1488{
1489 struct fsxattr fa;
Jan Karad9457dc2012-06-12 16:20:39 +02001490 int error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001491
1492 if (copy_from_user(&fa, arg, sizeof(fa)))
1493 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494
Jan Karad9457dc2012-06-12 16:20:39 +02001495 error = mnt_want_write_file(filp);
1496 if (error)
1497 return error;
Dave Chinnerfd179b92015-02-02 10:16:25 +11001498 error = xfs_ioctl_setattr(ip, &fa);
Jan Karad9457dc2012-06-12 16:20:39 +02001499 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10001500 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001501}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001503STATIC int
1504xfs_ioc_getxflags(
1505 xfs_inode_t *ip,
1506 void __user *arg)
1507{
1508 unsigned int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001510 flags = xfs_di2lxflags(ip->i_d.di_flags);
1511 if (copy_to_user(arg, &flags, sizeof(flags)))
1512 return -EFAULT;
1513 return 0;
1514}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001516STATIC int
1517xfs_ioc_setxflags(
Dave Chinnerf96291f2015-02-02 10:15:56 +11001518 struct xfs_inode *ip,
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001519 struct file *filp,
1520 void __user *arg)
1521{
Dave Chinnerf96291f2015-02-02 10:15:56 +11001522 struct xfs_trans *tp;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001523 struct fsxattr fa;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001524 unsigned int flags;
Dave Chinner3a6a8542016-03-01 09:41:33 +11001525 int join_flags = 0;
Dave Chinnerf96291f2015-02-02 10:15:56 +11001526 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001528 if (copy_from_user(&flags, arg, sizeof(flags)))
1529 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001531 if (flags & ~(FS_IMMUTABLE_FL | FS_APPEND_FL | \
1532 FS_NOATIME_FL | FS_NODUMP_FL | \
1533 FS_SYNC_FL))
1534 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001536 fa.fsx_xflags = xfs_merge_ioc_xflags(flags, xfs_ip2xflags(ip));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537
Jan Karad9457dc2012-06-12 16:20:39 +02001538 error = mnt_want_write_file(filp);
1539 if (error)
1540 return error;
Dave Chinnerf96291f2015-02-02 10:15:56 +11001541
Dave Chinner3a6a8542016-03-01 09:41:33 +11001542 /*
1543 * Changing DAX config may require inode locking for mapping
1544 * invalidation. These need to be held all the way to transaction commit
1545 * or cancel time, so need to be passed through to
1546 * xfs_ioctl_setattr_get_trans() so it can apply them to the join call
1547 * appropriately.
1548 */
1549 error = xfs_ioctl_setattr_dax_invalidate(ip, &fa, &join_flags);
1550 if (error)
1551 goto out_drop_write;
1552
1553 tp = xfs_ioctl_setattr_get_trans(ip, join_flags);
Dave Chinnerf96291f2015-02-02 10:15:56 +11001554 if (IS_ERR(tp)) {
1555 error = PTR_ERR(tp);
1556 goto out_drop_write;
1557 }
1558
1559 error = xfs_ioctl_setattr_xflags(tp, ip, &fa);
1560 if (error) {
Christoph Hellwig4906e212015-06-04 13:47:56 +10001561 xfs_trans_cancel(tp);
Dave Chinnerf96291f2015-02-02 10:15:56 +11001562 goto out_drop_write;
1563 }
1564
Christoph Hellwig70393312015-06-04 13:48:08 +10001565 error = xfs_trans_commit(tp);
Dave Chinnerf96291f2015-02-02 10:15:56 +11001566out_drop_write:
Jan Karad9457dc2012-06-12 16:20:39 +02001567 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10001568 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569}
1570
Christoph Hellwig232b51942017-10-17 14:16:19 -07001571static bool
1572xfs_getbmap_format(
1573 struct kgetbmap *p,
1574 struct getbmapx __user *u,
1575 size_t recsize)
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001576{
Christoph Hellwig232b51942017-10-17 14:16:19 -07001577 if (put_user(p->bmv_offset, &u->bmv_offset) ||
1578 put_user(p->bmv_block, &u->bmv_block) ||
1579 put_user(p->bmv_length, &u->bmv_length) ||
1580 put_user(0, &u->bmv_count) ||
1581 put_user(0, &u->bmv_entries))
1582 return false;
1583 if (recsize < sizeof(struct getbmapx))
1584 return true;
1585 if (put_user(0, &u->bmv_iflags) ||
1586 put_user(p->bmv_oflags, &u->bmv_oflags) ||
1587 put_user(0, &u->bmv_unused1) ||
1588 put_user(0, &u->bmv_unused2))
1589 return false;
1590 return true;
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001591}
1592
1593STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594xfs_ioc_getbmap(
Christoph Hellwig8f3e2052016-07-20 11:29:35 +10001595 struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 unsigned int cmd,
1597 void __user *arg)
1598{
Darrick J. Wongbe6324c2017-04-03 15:17:57 -07001599 struct getbmapx bmx = { 0 };
Christoph Hellwig232b51942017-10-17 14:16:19 -07001600 struct kgetbmap *buf;
1601 size_t recsize;
1602 int error, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603
Christoph Hellwig232b51942017-10-17 14:16:19 -07001604 switch (cmd) {
1605 case XFS_IOC_GETBMAPA:
1606 bmx.bmv_iflags = BMV_IF_ATTRFORK;
1607 /*FALLTHRU*/
1608 case XFS_IOC_GETBMAP:
1609 if (file->f_mode & FMODE_NOCMTIME)
1610 bmx.bmv_iflags |= BMV_IF_NO_DMAPI_READ;
1611 /* struct getbmap is a strict subset of struct getbmapx. */
1612 recsize = sizeof(struct getbmap);
1613 break;
1614 case XFS_IOC_GETBMAPX:
1615 recsize = sizeof(struct getbmapx);
1616 break;
1617 default:
1618 return -EINVAL;
1619 }
1620
1621 if (copy_from_user(&bmx, arg, recsize))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001622 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001624 if (bmx.bmv_count < 2)
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001625 return -EINVAL;
Christoph Hellwig232b51942017-10-17 14:16:19 -07001626 if (bmx.bmv_count > ULONG_MAX / recsize)
1627 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628
Christoph Hellwig232b51942017-10-17 14:16:19 -07001629 buf = kmem_zalloc_large(bmx.bmv_count * sizeof(*buf), 0);
1630 if (!buf)
1631 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
Christoph Hellwig232b51942017-10-17 14:16:19 -07001633 error = xfs_getbmap(XFS_I(file_inode(file)), &bmx, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 if (error)
Christoph Hellwig232b51942017-10-17 14:16:19 -07001635 goto out_free_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636
Christoph Hellwig232b51942017-10-17 14:16:19 -07001637 error = -EFAULT;
1638 if (copy_to_user(arg, &bmx, recsize))
1639 goto out_free_buf;
1640 arg += recsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641
Christoph Hellwig232b51942017-10-17 14:16:19 -07001642 for (i = 0; i < bmx.bmv_entries; i++) {
1643 if (!xfs_getbmap_format(buf + i, arg, recsize))
1644 goto out_free_buf;
1645 arg += recsize;
1646 }
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001647
Christoph Hellwig232b51942017-10-17 14:16:19 -07001648 error = 0;
1649out_free_buf:
1650 kmem_free(buf);
Christophe JAILLET132bf672018-11-06 07:50:50 -08001651 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652}
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001653
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001654struct getfsmap_info {
1655 struct xfs_mount *mp;
Christoph Hellwig9d17e142017-04-21 11:24:41 -07001656 struct fsmap_head __user *data;
1657 unsigned int idx;
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001658 __u32 last_flags;
1659};
1660
1661STATIC int
1662xfs_getfsmap_format(struct xfs_fsmap *xfm, void *priv)
1663{
1664 struct getfsmap_info *info = priv;
1665 struct fsmap fm;
1666
1667 trace_xfs_getfsmap_mapping(info->mp, xfm);
1668
1669 info->last_flags = xfm->fmr_flags;
1670 xfs_fsmap_from_internal(&fm, xfm);
Christoph Hellwig9d17e142017-04-21 11:24:41 -07001671 if (copy_to_user(&info->data->fmh_recs[info->idx++], &fm,
1672 sizeof(struct fsmap)))
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001673 return -EFAULT;
1674
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001675 return 0;
1676}
1677
1678STATIC int
1679xfs_ioc_getfsmap(
1680 struct xfs_inode *ip,
Christoph Hellwig9d17e142017-04-21 11:24:41 -07001681 struct fsmap_head __user *arg)
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001682{
Christoph Hellwigef2b67e2017-04-21 11:24:40 -07001683 struct getfsmap_info info = { NULL };
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001684 struct xfs_fsmap_head xhead = {0};
1685 struct fsmap_head head;
1686 bool aborted = false;
1687 int error;
1688
1689 if (copy_from_user(&head, arg, sizeof(struct fsmap_head)))
1690 return -EFAULT;
1691 if (memchr_inv(head.fmh_reserved, 0, sizeof(head.fmh_reserved)) ||
1692 memchr_inv(head.fmh_keys[0].fmr_reserved, 0,
1693 sizeof(head.fmh_keys[0].fmr_reserved)) ||
1694 memchr_inv(head.fmh_keys[1].fmr_reserved, 0,
1695 sizeof(head.fmh_keys[1].fmr_reserved)))
1696 return -EINVAL;
1697
1698 xhead.fmh_iflags = head.fmh_iflags;
1699 xhead.fmh_count = head.fmh_count;
1700 xfs_fsmap_to_internal(&xhead.fmh_keys[0], &head.fmh_keys[0]);
1701 xfs_fsmap_to_internal(&xhead.fmh_keys[1], &head.fmh_keys[1]);
1702
1703 trace_xfs_getfsmap_low_key(ip->i_mount, &xhead.fmh_keys[0]);
1704 trace_xfs_getfsmap_high_key(ip->i_mount, &xhead.fmh_keys[1]);
1705
1706 info.mp = ip->i_mount;
Christoph Hellwig9d17e142017-04-21 11:24:41 -07001707 info.data = arg;
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001708 error = xfs_getfsmap(ip->i_mount, &xhead, xfs_getfsmap_format, &info);
1709 if (error == XFS_BTREE_QUERY_RANGE_ABORT) {
1710 error = 0;
1711 aborted = true;
1712 } else if (error)
1713 return error;
1714
1715 /* If we didn't abort, set the "last" flag in the last fmx */
Darrick J. Wong12e4a382017-04-23 10:45:21 -07001716 if (!aborted && info.idx) {
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001717 info.last_flags |= FMR_OF_LAST;
Christoph Hellwig9d17e142017-04-21 11:24:41 -07001718 if (copy_to_user(&info.data->fmh_recs[info.idx - 1].fmr_flags,
1719 &info.last_flags, sizeof(info.last_flags)))
Darrick J. Wonge89c0412017-03-28 14:56:37 -07001720 return -EFAULT;
1721 }
1722
1723 /* copy back header */
1724 head.fmh_entries = xhead.fmh_entries;
1725 head.fmh_oflags = xhead.fmh_oflags;
1726 if (copy_to_user(arg, &head, sizeof(struct fsmap_head)))
1727 return -EFAULT;
1728
1729 return 0;
1730}
1731
Darrick J. Wong36fd6e82017-10-17 21:37:34 -07001732STATIC int
1733xfs_ioc_scrub_metadata(
1734 struct xfs_inode *ip,
1735 void __user *arg)
1736{
1737 struct xfs_scrub_metadata scrub;
1738 int error;
1739
1740 if (!capable(CAP_SYS_ADMIN))
1741 return -EPERM;
1742
1743 if (copy_from_user(&scrub, arg, sizeof(scrub)))
1744 return -EFAULT;
1745
1746 error = xfs_scrub_metadata(ip, &scrub);
1747 if (error)
1748 return error;
1749
1750 if (copy_to_user(arg, &scrub, sizeof(scrub)))
1751 return -EFAULT;
1752
1753 return 0;
1754}
1755
Dave Chinnera133d952013-08-12 20:49:48 +10001756int
1757xfs_ioc_swapext(
1758 xfs_swapext_t *sxp)
1759{
1760 xfs_inode_t *ip, *tip;
1761 struct fd f, tmp;
1762 int error = 0;
1763
1764 /* Pull information for the target fd */
1765 f = fdget((int)sxp->sx_fdtarget);
1766 if (!f.file) {
Dave Chinner24513372014-06-25 14:58:08 +10001767 error = -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001768 goto out;
1769 }
1770
1771 if (!(f.file->f_mode & FMODE_WRITE) ||
1772 !(f.file->f_mode & FMODE_READ) ||
1773 (f.file->f_flags & O_APPEND)) {
Dave Chinner24513372014-06-25 14:58:08 +10001774 error = -EBADF;
Dave Chinnera133d952013-08-12 20:49:48 +10001775 goto out_put_file;
1776 }
1777
1778 tmp = fdget((int)sxp->sx_fdtmp);
1779 if (!tmp.file) {
Dave Chinner24513372014-06-25 14:58:08 +10001780 error = -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001781 goto out_put_file;
1782 }
1783
1784 if (!(tmp.file->f_mode & FMODE_WRITE) ||
1785 !(tmp.file->f_mode & FMODE_READ) ||
1786 (tmp.file->f_flags & O_APPEND)) {
Dave Chinner24513372014-06-25 14:58:08 +10001787 error = -EBADF;
Dave Chinnera133d952013-08-12 20:49:48 +10001788 goto out_put_tmp_file;
1789 }
1790
1791 if (IS_SWAPFILE(file_inode(f.file)) ||
1792 IS_SWAPFILE(file_inode(tmp.file))) {
Dave Chinner24513372014-06-25 14:58:08 +10001793 error = -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001794 goto out_put_tmp_file;
1795 }
1796
Jann Horn7f1b6242016-07-20 10:30:30 +10001797 /*
1798 * We need to ensure that the fds passed in point to XFS inodes
1799 * before we cast and access them as XFS structures as we have no
1800 * control over what the user passes us here.
1801 */
1802 if (f.file->f_op != &xfs_file_operations ||
1803 tmp.file->f_op != &xfs_file_operations) {
1804 error = -EINVAL;
1805 goto out_put_tmp_file;
1806 }
1807
Dave Chinnera133d952013-08-12 20:49:48 +10001808 ip = XFS_I(file_inode(f.file));
1809 tip = XFS_I(file_inode(tmp.file));
1810
1811 if (ip->i_mount != tip->i_mount) {
Dave Chinner24513372014-06-25 14:58:08 +10001812 error = -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001813 goto out_put_tmp_file;
1814 }
1815
1816 if (ip->i_ino == tip->i_ino) {
Dave Chinner24513372014-06-25 14:58:08 +10001817 error = -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001818 goto out_put_tmp_file;
1819 }
1820
1821 if (XFS_FORCED_SHUTDOWN(ip->i_mount)) {
Dave Chinner24513372014-06-25 14:58:08 +10001822 error = -EIO;
Dave Chinnera133d952013-08-12 20:49:48 +10001823 goto out_put_tmp_file;
1824 }
1825
1826 error = xfs_swap_extents(ip, tip, sxp);
1827
1828 out_put_tmp_file:
1829 fdput(tmp);
1830 out_put_file:
1831 fdput(f);
1832 out:
1833 return error;
1834}
1835
Eric Sandeenf7664b32018-05-15 13:21:48 -07001836static int
1837xfs_ioc_getlabel(
1838 struct xfs_mount *mp,
1839 char __user *user_label)
1840{
1841 struct xfs_sb *sbp = &mp->m_sb;
1842 char label[XFSLABEL_MAX + 1];
1843
1844 /* Paranoia */
1845 BUILD_BUG_ON(sizeof(sbp->sb_fname) > FSLABEL_MAX);
1846
Arnd Bergmann4bb8b652018-06-05 19:42:45 -07001847 /* 1 larger than sb_fname, so this ensures a trailing NUL char */
1848 memset(label, 0, sizeof(label));
Eric Sandeenf7664b32018-05-15 13:21:48 -07001849 spin_lock(&mp->m_sb_lock);
Arnd Bergmann4bb8b652018-06-05 19:42:45 -07001850 strncpy(label, sbp->sb_fname, XFSLABEL_MAX);
Eric Sandeenf7664b32018-05-15 13:21:48 -07001851 spin_unlock(&mp->m_sb_lock);
1852
Arnd Bergmann4bb8b652018-06-05 19:42:45 -07001853 if (copy_to_user(user_label, label, sizeof(label)))
Eric Sandeenf7664b32018-05-15 13:21:48 -07001854 return -EFAULT;
1855 return 0;
1856}
1857
1858static int
1859xfs_ioc_setlabel(
1860 struct file *filp,
1861 struct xfs_mount *mp,
1862 char __user *newlabel)
1863{
1864 struct xfs_sb *sbp = &mp->m_sb;
1865 char label[XFSLABEL_MAX + 1];
1866 size_t len;
1867 int error;
1868
1869 if (!capable(CAP_SYS_ADMIN))
1870 return -EPERM;
1871 /*
1872 * The generic ioctl allows up to FSLABEL_MAX chars, but XFS is much
1873 * smaller, at 12 bytes. We copy one more to be sure we find the
1874 * (required) NULL character to test the incoming label length.
1875 * NB: The on disk label doesn't need to be null terminated.
1876 */
1877 if (copy_from_user(label, newlabel, XFSLABEL_MAX + 1))
1878 return -EFAULT;
1879 len = strnlen(label, XFSLABEL_MAX + 1);
1880 if (len > sizeof(sbp->sb_fname))
1881 return -EINVAL;
1882
1883 error = mnt_want_write_file(filp);
1884 if (error)
1885 return error;
1886
1887 spin_lock(&mp->m_sb_lock);
1888 memset(sbp->sb_fname, 0, sizeof(sbp->sb_fname));
Arnd Bergmann4bb8b652018-06-05 19:42:45 -07001889 memcpy(sbp->sb_fname, label, len);
Eric Sandeenf7664b32018-05-15 13:21:48 -07001890 spin_unlock(&mp->m_sb_lock);
1891
1892 /*
1893 * Now we do several things to satisfy userspace.
1894 * In addition to normal logging of the primary superblock, we also
1895 * immediately write these changes to sector zero for the primary, then
1896 * update all backup supers (as xfs_db does for a label change), then
1897 * invalidate the block device page cache. This is so that any prior
1898 * buffered reads from userspace (i.e. from blkid) are invalidated,
1899 * and userspace will see the newly-written label.
1900 */
1901 error = xfs_sync_sb_buf(mp);
1902 if (error)
1903 goto out;
1904 /*
1905 * growfs also updates backup supers so lock against that.
1906 */
1907 mutex_lock(&mp->m_growlock);
1908 error = xfs_update_secondary_sbs(mp);
1909 mutex_unlock(&mp->m_growlock);
1910
1911 invalidate_bdev(mp->m_ddev_targp->bt_bdev);
1912
1913out:
1914 mnt_drop_write_file(filp);
1915 return error;
1916}
1917
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001918/*
1919 * Note: some of the ioctl's return positive numbers as a
1920 * byte count indicating success, such as readlink_by_handle.
1921 * So we don't "sign flip" like most other routines. This means
1922 * true errors need to be returned as a negative value.
1923 */
1924long
1925xfs_file_ioctl(
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001926 struct file *filp,
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001927 unsigned int cmd,
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001928 unsigned long p)
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001929{
Al Viro496ad9a2013-01-23 17:07:38 -05001930 struct inode *inode = file_inode(filp);
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001931 struct xfs_inode *ip = XFS_I(inode);
1932 struct xfs_mount *mp = ip->i_mount;
1933 void __user *arg = (void __user *)p;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001934 int error;
1935
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001936 trace_xfs_file_ioctl(ip);
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001937
1938 switch (cmd) {
Christoph Hellwiga46db602011-01-07 13:02:04 +00001939 case FITRIM:
1940 return xfs_ioc_trim(mp, arg);
Eric Sandeenf7664b32018-05-15 13:21:48 -07001941 case FS_IOC_GETFSLABEL:
1942 return xfs_ioc_getlabel(mp, arg);
1943 case FS_IOC_SETFSLABEL:
1944 return xfs_ioc_setlabel(filp, mp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001945 case XFS_IOC_ALLOCSP:
1946 case XFS_IOC_FREESP:
1947 case XFS_IOC_RESVSP:
1948 case XFS_IOC_UNRESVSP:
1949 case XFS_IOC_ALLOCSP64:
1950 case XFS_IOC_FREESP64:
1951 case XFS_IOC_RESVSP64:
Dave Chinner44722352010-08-24 12:02:11 +10001952 case XFS_IOC_UNRESVSP64:
1953 case XFS_IOC_ZERO_RANGE: {
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001954 xfs_flock64_t bf;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001955
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001956 if (copy_from_user(&bf, arg, sizeof(bf)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001957 return -EFAULT;
Christoph Hellwig8f3e2052016-07-20 11:29:35 +10001958 return xfs_ioc_space(filp, cmd, &bf);
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001959 }
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001960 case XFS_IOC_DIOINFO: {
1961 struct dioattr da;
1962 xfs_buftarg_t *target =
1963 XFS_IS_REALTIME_INODE(ip) ?
1964 mp->m_rtdev_targp : mp->m_ddev_targp;
1965
Eric Sandeen7c71ee72014-01-21 16:46:23 -06001966 da.d_mem = da.d_miniosz = target->bt_logical_sectorsize;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001967 da.d_maxiosz = INT_MAX & ~(da.d_miniosz - 1);
1968
1969 if (copy_to_user(arg, &da, sizeof(da)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001970 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001971 return 0;
1972 }
1973
1974 case XFS_IOC_FSBULKSTAT_SINGLE:
1975 case XFS_IOC_FSBULKSTAT:
1976 case XFS_IOC_FSINUMBERS:
Darrick J. Wong8bfe9d12019-07-03 20:36:26 -07001977 return xfs_ioc_fsbulkstat(mp, cmd, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001978
1979 case XFS_IOC_FSGEOMETRY_V1:
Dave Chinner1b6d9682019-04-12 07:41:16 -07001980 return xfs_ioc_fsgeometry(mp, arg, 3);
1981 case XFS_IOC_FSGEOMETRY_V4:
1982 return xfs_ioc_fsgeometry(mp, arg, 4);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001983 case XFS_IOC_FSGEOMETRY:
Dave Chinner1b6d9682019-04-12 07:41:16 -07001984 return xfs_ioc_fsgeometry(mp, arg, 5);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001985
Darrick J. Wong7cd50062019-04-12 07:41:17 -07001986 case XFS_IOC_AG_GEOMETRY:
1987 return xfs_ioc_ag_geometry(mp, arg);
1988
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001989 case XFS_IOC_GETVERSION:
1990 return put_user(inode->i_generation, (int __user *)arg);
1991
1992 case XFS_IOC_FSGETXATTR:
1993 return xfs_ioc_fsgetxattr(ip, 0, arg);
1994 case XFS_IOC_FSGETXATTRA:
1995 return xfs_ioc_fsgetxattr(ip, 1, arg);
Lachlan McIlroy3b2816b2008-04-18 12:43:35 +10001996 case XFS_IOC_FSSETXATTR:
Lachlan McIlroy65e67f52008-04-18 12:59:45 +10001997 return xfs_ioc_fssetxattr(ip, filp, arg);
1998 case XFS_IOC_GETXFLAGS:
1999 return xfs_ioc_getxflags(ip, arg);
2000 case XFS_IOC_SETXFLAGS:
2001 return xfs_ioc_setxflags(ip, filp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002002
2003 case XFS_IOC_FSSETDM: {
2004 struct fsdmidata dmi;
2005
2006 if (copy_from_user(&dmi, arg, sizeof(dmi)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002007 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002008
Jan Karad9457dc2012-06-12 16:20:39 +02002009 error = mnt_want_write_file(filp);
2010 if (error)
2011 return error;
2012
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002013 error = xfs_set_dmattrs(ip, dmi.fsd_dmevmask,
2014 dmi.fsd_dmstate);
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_GETBMAP:
2020 case XFS_IOC_GETBMAPA:
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002021 case XFS_IOC_GETBMAPX:
Christoph Hellwig232b51942017-10-17 14:16:19 -07002022 return xfs_ioc_getbmap(filp, cmd, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002023
Darrick J. Wonge89c0412017-03-28 14:56:37 -07002024 case FS_IOC_GETFSMAP:
2025 return xfs_ioc_getfsmap(ip, arg);
2026
Darrick J. Wong36fd6e82017-10-17 21:37:34 -07002027 case XFS_IOC_SCRUB_METADATA:
2028 return xfs_ioc_scrub_metadata(ip, arg);
2029
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002030 case XFS_IOC_FD_TO_HANDLE:
2031 case XFS_IOC_PATH_TO_HANDLE:
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06002032 case XFS_IOC_PATH_TO_FSHANDLE: {
2033 xfs_fsop_handlereq_t hreq;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002034
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06002035 if (copy_from_user(&hreq, arg, sizeof(hreq)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002036 return -EFAULT;
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06002037 return xfs_find_handle(cmd, &hreq);
2038 }
2039 case XFS_IOC_OPEN_BY_HANDLE: {
2040 xfs_fsop_handlereq_t hreq;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002041
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06002042 if (copy_from_user(&hreq, arg, sizeof(xfs_fsop_handlereq_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002043 return -EFAULT;
Christoph Hellwigd296d302009-01-19 02:02:57 +01002044 return xfs_open_by_handle(filp, &hreq);
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06002045 }
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002046 case XFS_IOC_FSSETDM_BY_HANDLE:
Christoph Hellwigd296d302009-01-19 02:02:57 +01002047 return xfs_fssetdm_by_handle(filp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002048
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06002049 case XFS_IOC_READLINK_BY_HANDLE: {
2050 xfs_fsop_handlereq_t hreq;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002051
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06002052 if (copy_from_user(&hreq, arg, sizeof(xfs_fsop_handlereq_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002053 return -EFAULT;
Christoph Hellwigd296d302009-01-19 02:02:57 +01002054 return xfs_readlink_by_handle(filp, &hreq);
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06002055 }
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002056 case XFS_IOC_ATTRLIST_BY_HANDLE:
Christoph Hellwigd296d302009-01-19 02:02:57 +01002057 return xfs_attrlist_by_handle(filp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002058
2059 case XFS_IOC_ATTRMULTI_BY_HANDLE:
Christoph Hellwigd296d302009-01-19 02:02:57 +01002060 return xfs_attrmulti_by_handle(filp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002061
2062 case XFS_IOC_SWAPEXT: {
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06002063 struct xfs_swapext sxp;
2064
2065 if (copy_from_user(&sxp, arg, sizeof(xfs_swapext_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002066 return -EFAULT;
Jan Karad9457dc2012-06-12 16:20:39 +02002067 error = mnt_want_write_file(filp);
2068 if (error)
2069 return error;
Dave Chinnera133d952013-08-12 20:49:48 +10002070 error = xfs_ioc_swapext(&sxp);
Jan Karad9457dc2012-06-12 16:20:39 +02002071 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10002072 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002073 }
2074
2075 case XFS_IOC_FSCOUNTS: {
2076 xfs_fsop_counts_t out;
2077
Eric Sandeen91083262019-05-01 20:26:30 -07002078 xfs_fs_counts(mp, &out);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002079
2080 if (copy_to_user(arg, &out, sizeof(out)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002081 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002082 return 0;
2083 }
2084
2085 case XFS_IOC_SET_RESBLKS: {
2086 xfs_fsop_resblks_t inout;
Darrick J. Wongc8ce5402017-06-16 11:00:05 -07002087 uint64_t in;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002088
2089 if (!capable(CAP_SYS_ADMIN))
2090 return -EPERM;
2091
Eric Sandeend5db0f92010-02-05 22:59:53 +00002092 if (mp->m_flags & XFS_MOUNT_RDONLY)
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002093 return -EROFS;
Eric Sandeend5db0f92010-02-05 22:59:53 +00002094
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002095 if (copy_from_user(&inout, arg, sizeof(inout)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002096 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002097
Jan Karad9457dc2012-06-12 16:20:39 +02002098 error = mnt_want_write_file(filp);
2099 if (error)
2100 return error;
2101
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002102 /* input parameter is passed in resblks field of structure */
2103 in = inout.resblks;
2104 error = xfs_reserve_blocks(mp, &in, &inout);
Jan Karad9457dc2012-06-12 16:20:39 +02002105 mnt_drop_write_file(filp);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002106 if (error)
Dave Chinner24513372014-06-25 14:58:08 +10002107 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002108
2109 if (copy_to_user(arg, &inout, sizeof(inout)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002110 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002111 return 0;
2112 }
2113
2114 case XFS_IOC_GET_RESBLKS: {
2115 xfs_fsop_resblks_t out;
2116
2117 if (!capable(CAP_SYS_ADMIN))
2118 return -EPERM;
2119
2120 error = xfs_reserve_blocks(mp, NULL, &out);
2121 if (error)
Dave Chinner24513372014-06-25 14:58:08 +10002122 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002123
2124 if (copy_to_user(arg, &out, sizeof(out)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002125 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002126
2127 return 0;
2128 }
2129
2130 case XFS_IOC_FSGROWFSDATA: {
2131 xfs_growfs_data_t in;
2132
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002133 if (copy_from_user(&in, arg, sizeof(in)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002134 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002135
Jan Karad9457dc2012-06-12 16:20:39 +02002136 error = mnt_want_write_file(filp);
2137 if (error)
2138 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002139 error = xfs_growfs_data(mp, &in);
Jan Karad9457dc2012-06-12 16:20:39 +02002140 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10002141 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002142 }
2143
2144 case XFS_IOC_FSGROWFSLOG: {
2145 xfs_growfs_log_t in;
2146
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002147 if (copy_from_user(&in, arg, sizeof(in)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002148 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002149
Jan Karad9457dc2012-06-12 16:20:39 +02002150 error = mnt_want_write_file(filp);
2151 if (error)
2152 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002153 error = xfs_growfs_log(mp, &in);
Jan Karad9457dc2012-06-12 16:20:39 +02002154 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10002155 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002156 }
2157
2158 case XFS_IOC_FSGROWFSRT: {
2159 xfs_growfs_rt_t in;
2160
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002161 if (copy_from_user(&in, arg, sizeof(in)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002162 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002163
Jan Karad9457dc2012-06-12 16:20:39 +02002164 error = mnt_want_write_file(filp);
2165 if (error)
2166 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002167 error = xfs_growfs_rt(mp, &in);
Jan Karad9457dc2012-06-12 16:20:39 +02002168 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10002169 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002170 }
2171
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002172 case XFS_IOC_GOINGDOWN: {
Darrick J. Wongc8ce5402017-06-16 11:00:05 -07002173 uint32_t in;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002174
2175 if (!capable(CAP_SYS_ADMIN))
2176 return -EPERM;
2177
Darrick J. Wongc8ce5402017-06-16 11:00:05 -07002178 if (get_user(in, (uint32_t __user *)arg))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002179 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002180
Dave Chinner24513372014-06-25 14:58:08 +10002181 return xfs_fs_goingdown(mp, in);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002182 }
2183
2184 case XFS_IOC_ERROR_INJECTION: {
2185 xfs_error_injection_t in;
2186
2187 if (!capable(CAP_SYS_ADMIN))
2188 return -EPERM;
2189
2190 if (copy_from_user(&in, arg, sizeof(in)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002191 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002192
Darrick J. Wong31965ef2017-06-20 17:54:46 -07002193 return xfs_errortag_add(mp, in.errtag);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002194 }
2195
2196 case XFS_IOC_ERROR_CLEARALL:
2197 if (!capable(CAP_SYS_ADMIN))
2198 return -EPERM;
2199
Darrick J. Wong31965ef2017-06-20 17:54:46 -07002200 return xfs_errortag_clearall(mp);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002201
Brian Foster8ca149d2012-11-07 12:21:12 -05002202 case XFS_IOC_FREE_EOFBLOCKS: {
Dwight Engenb9fe5052013-08-15 14:08:02 -04002203 struct xfs_fs_eofblocks eofb;
2204 struct xfs_eofblocks keofb;
Brian Foster8ca149d2012-11-07 12:21:12 -05002205
Dwight Engen8c567a72013-08-15 14:08:03 -04002206 if (!capable(CAP_SYS_ADMIN))
2207 return -EPERM;
2208
2209 if (mp->m_flags & XFS_MOUNT_RDONLY)
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002210 return -EROFS;
Dwight Engen8c567a72013-08-15 14:08:03 -04002211
Brian Foster8ca149d2012-11-07 12:21:12 -05002212 if (copy_from_user(&eofb, arg, sizeof(eofb)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10002213 return -EFAULT;
Brian Foster8ca149d2012-11-07 12:21:12 -05002214
Dwight Engenb9fe5052013-08-15 14:08:02 -04002215 error = xfs_fs_eofblocks_from_user(&eofb, &keofb);
2216 if (error)
Dave Chinner24513372014-06-25 14:58:08 +10002217 return error;
Brian Foster8ca149d2012-11-07 12:21:12 -05002218
Dave Chinner24513372014-06-25 14:58:08 +10002219 return xfs_icache_free_eofblocks(mp, &keofb);
Brian Foster8ca149d2012-11-07 12:21:12 -05002220 }
2221
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10002222 default:
2223 return -ENOTTY;
2224 }
2225}