blob: 6d30b06e79bcb4a7ec716a2000258fb65b706475 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "xfs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include "xfs_fs.h"
Dave Chinner70a98832013-10-23 10:36:05 +110020#include "xfs_shared.h"
Dave Chinner239880e2013-10-23 10:50:10 +110021#include "xfs_format.h"
22#include "xfs_log_format.h"
23#include "xfs_trans_resv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include "xfs_inode.h"
Hannes Eder7bf446f2009-03-05 15:20:25 +010026#include "xfs_ioctl.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110027#include "xfs_alloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include "xfs_rtalloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "xfs_itable.h"
Nathan Scotta844f452005-11-02 14:38:42 +110030#include "xfs_error.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "xfs_attr.h"
Nathan Scotta844f452005-11-02 14:38:42 +110032#include "xfs_bmap.h"
Dave Chinner68988112013-08-12 20:49:42 +100033#include "xfs_bmap_util.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "xfs_fsops.h"
Christoph Hellwiga46db602011-01-07 13:02:04 +000035#include "xfs_discard.h"
Christoph Hellwig25fe55e2008-07-18 17:13:20 +100036#include "xfs_quota.h"
Christoph Hellwigd296d302009-01-19 02:02:57 +010037#include "xfs_export.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000038#include "xfs_trace.h"
Brian Foster8ca149d2012-11-07 12:21:12 -050039#include "xfs_icache.h"
Dave Chinnerc24b5df2013-08-12 20:49:45 +100040#include "xfs_symlink.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110041#include "xfs_trans.h"
Christoph Hellwig781355c2015-02-16 11:59:50 +110042#include "xfs_pnfs.h"
Andreas Gruenbacher47e1bf62015-11-03 12:56:17 +110043#include "xfs_acl.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080045#include <linux/capability.h>
Ingo Molnar5b825c32017-02-02 17:54:15 +010046#include <linux/cred.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <linux/dcache.h>
48#include <linux/mount.h>
49#include <linux/namei.h>
50#include <linux/pagemap.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090051#include <linux/slab.h>
Christoph Hellwigd296d302009-01-19 02:02:57 +010052#include <linux/exportfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54/*
55 * xfs_find_handle maps from userspace xfs_fsop_handlereq structure to
56 * a file or fs handle.
57 *
58 * XFS_IOC_PATH_TO_FSHANDLE
59 * returns fs handle for a mount point or path within that mount point
60 * XFS_IOC_FD_TO_HANDLE
61 * returns full handle for a FD opened in user space
62 * XFS_IOC_PATH_TO_HANDLE
63 * returns full handle for a path
64 */
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -060065int
Linus Torvalds1da177e2005-04-16 15:20:36 -070066xfs_find_handle(
67 unsigned int cmd,
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -060068 xfs_fsop_handlereq_t *hreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069{
70 int hsize;
71 xfs_handle_t handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 struct inode *inode;
Dave Chinnera30b0362013-09-02 20:49:36 +100073 struct fd f = {NULL};
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010074 struct path path;
Al Viro2903ff02012-08-28 12:52:22 -040075 int error;
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010076 struct xfs_inode *ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010078 if (cmd == XFS_IOC_FD_TO_HANDLE) {
Al Viro2903ff02012-08-28 12:52:22 -040079 f = fdget(hreq->fd);
80 if (!f.file)
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010081 return -EBADF;
Al Viro496ad9a2013-01-23 17:07:38 -050082 inode = file_inode(f.file);
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010083 } else {
84 error = user_lpath((const char __user *)hreq->path, &path);
85 if (error)
86 return error;
David Howells2b0143b2015-03-17 22:25:59 +000087 inode = d_inode(path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 }
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010089 ip = XFS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010091 /*
92 * We can only generate handles for inodes residing on a XFS filesystem,
93 * and only for regular files, directories or symbolic links.
94 */
95 error = -EINVAL;
96 if (inode->i_sb->s_magic != XFS_SB_MAGIC)
97 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010099 error = -EBADF;
100 if (!S_ISREG(inode->i_mode) &&
101 !S_ISDIR(inode->i_mode) &&
102 !S_ISLNK(inode->i_mode))
103 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100106 memcpy(&handle.ha_fsid, ip->i_mount->m_fixedfsid, sizeof(xfs_fsid_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100108 if (cmd == XFS_IOC_PATH_TO_FSHANDLE) {
109 /*
110 * This handle only contains an fsid, zero the rest.
111 */
112 memset(&handle.ha_fid, 0, sizeof(handle.ha_fid));
113 hsize = sizeof(xfs_fsid_t);
114 } else {
Christoph Hellwigc6143912007-09-14 15:22:37 +1000115 handle.ha_fid.fid_len = sizeof(xfs_fid_t) -
116 sizeof(handle.ha_fid.fid_len);
117 handle.ha_fid.fid_pad = 0;
Dave Chinner9e9a2672016-02-09 16:54:58 +1100118 handle.ha_fid.fid_gen = inode->i_generation;
Christoph Hellwigc6143912007-09-14 15:22:37 +1000119 handle.ha_fid.fid_ino = ip->i_ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
121 hsize = XFS_HSIZE(handle);
122 }
123
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100124 error = -EFAULT;
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600125 if (copy_to_user(hreq->ohandle, &handle, hsize) ||
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100126 copy_to_user(hreq->ohandlen, &hsize, sizeof(__s32)))
127 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100129 error = 0;
130
131 out_put:
132 if (cmd == XFS_IOC_FD_TO_HANDLE)
Al Viro2903ff02012-08-28 12:52:22 -0400133 fdput(f);
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100134 else
135 path_put(&path);
136 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137}
138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139/*
Christoph Hellwigd296d302009-01-19 02:02:57 +0100140 * No need to do permission checks on the various pathname components
141 * as the handle operations are privileged.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 */
143STATIC int
Christoph Hellwigd296d302009-01-19 02:02:57 +0100144xfs_handle_acceptable(
145 void *context,
146 struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
Christoph Hellwigd296d302009-01-19 02:02:57 +0100148 return 1;
149}
150
151/*
152 * Convert userspace handle data into a dentry.
153 */
154struct dentry *
155xfs_handle_to_dentry(
156 struct file *parfilp,
157 void __user *uhandle,
158 u32 hlen)
159{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 xfs_handle_t handle;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100161 struct xfs_fid64 fid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
163 /*
164 * Only allow handle opens under a directory.
165 */
Al Viro496ad9a2013-01-23 17:07:38 -0500166 if (!S_ISDIR(file_inode(parfilp)->i_mode))
Christoph Hellwigd296d302009-01-19 02:02:57 +0100167 return ERR_PTR(-ENOTDIR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Christoph Hellwigd296d302009-01-19 02:02:57 +0100169 if (hlen != sizeof(xfs_handle_t))
170 return ERR_PTR(-EINVAL);
171 if (copy_from_user(&handle, uhandle, hlen))
172 return ERR_PTR(-EFAULT);
173 if (handle.ha_fid.fid_len !=
174 sizeof(handle.ha_fid) - sizeof(handle.ha_fid.fid_len))
175 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Christoph Hellwigd296d302009-01-19 02:02:57 +0100177 memset(&fid, 0, sizeof(struct fid));
178 fid.ino = handle.ha_fid.fid_ino;
179 fid.gen = handle.ha_fid.fid_gen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
Christoph Hellwigd296d302009-01-19 02:02:57 +0100181 return exportfs_decode_fh(parfilp->f_path.mnt, (struct fid *)&fid, 3,
182 FILEID_INO32_GEN | XFS_FILEID_TYPE_64FLAG,
183 xfs_handle_acceptable, NULL);
184}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Christoph Hellwigd296d302009-01-19 02:02:57 +0100186STATIC struct dentry *
187xfs_handlereq_to_dentry(
188 struct file *parfilp,
189 xfs_fsop_handlereq_t *hreq)
190{
191 return xfs_handle_to_dentry(parfilp, hreq->ihandle, hreq->ihandlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192}
193
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600194int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195xfs_open_by_handle(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 struct file *parfilp,
Christoph Hellwigd296d302009-01-19 02:02:57 +0100197 xfs_fsop_handlereq_t *hreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198{
David Howells745ca242008-11-14 10:39:22 +1100199 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 int error;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100201 int fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 int permflag;
203 struct file *filp;
204 struct inode *inode;
205 struct dentry *dentry;
Dave Chinner1a1d7722012-03-22 05:15:06 +0000206 fmode_t fmode;
Al Viro765927b2012-06-26 21:58:53 +0400207 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
209 if (!capable(CAP_SYS_ADMIN))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000210 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Christoph Hellwigd296d302009-01-19 02:02:57 +0100212 dentry = xfs_handlereq_to_dentry(parfilp, hreq);
213 if (IS_ERR(dentry))
214 return PTR_ERR(dentry);
David Howells2b0143b2015-03-17 22:25:59 +0000215 inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217 /* Restrict xfs_open_by_handle to directories & regular files. */
218 if (!(S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode))) {
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000219 error = -EPERM;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100220 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 }
222
223#if BITS_PER_LONG != 32
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600224 hreq->oflags |= O_LARGEFILE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225#endif
Christoph Hellwigd296d302009-01-19 02:02:57 +0100226
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600227 permflag = hreq->oflags;
Dave Chinner1a1d7722012-03-22 05:15:06 +0000228 fmode = OPEN_FMODE(permflag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 if ((!(permflag & O_APPEND) || (permflag & O_TRUNC)) &&
Dave Chinner1a1d7722012-03-22 05:15:06 +0000230 (fmode & FMODE_WRITE) && IS_APPEND(inode)) {
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000231 error = -EPERM;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100232 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 }
234
Dave Chinner1a1d7722012-03-22 05:15:06 +0000235 if ((fmode & FMODE_WRITE) && IS_IMMUTABLE(inode)) {
Eryu Guan337684a2016-08-02 19:58:28 +0800236 error = -EPERM;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100237 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 }
239
240 /* Can't write directories. */
Dave Chinner1a1d7722012-03-22 05:15:06 +0000241 if (S_ISDIR(inode->i_mode) && (fmode & FMODE_WRITE)) {
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000242 error = -EISDIR;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100243 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 }
245
Yann Droneaud862a6292013-07-02 18:39:34 +0200246 fd = get_unused_fd_flags(0);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100247 if (fd < 0) {
248 error = fd;
249 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 }
251
Al Viro765927b2012-06-26 21:58:53 +0400252 path.mnt = parfilp->f_path.mnt;
253 path.dentry = dentry;
254 filp = dentry_open(&path, hreq->oflags, cred);
255 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 if (IS_ERR(filp)) {
Christoph Hellwigd296d302009-01-19 02:02:57 +0100257 put_unused_fd(fd);
258 return PTR_ERR(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 }
Christoph Hellwig4d4be482008-12-09 04:47:33 -0500260
Al Viro03209372011-07-25 20:54:24 -0400261 if (S_ISREG(inode->i_mode)) {
Vlad Apostolov2e2e7bb2006-11-11 18:04:47 +1100262 filp->f_flags |= O_NOATIME;
Christoph Hellwig4d4be482008-12-09 04:47:33 -0500263 filp->f_mode |= FMODE_NOCMTIME;
Vlad Apostolov2e2e7bb2006-11-11 18:04:47 +1100264 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Christoph Hellwigd296d302009-01-19 02:02:57 +0100266 fd_install(fd, filp);
267 return fd;
268
269 out_dput:
270 dput(dentry);
271 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272}
273
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600274int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275xfs_readlink_by_handle(
Christoph Hellwigd296d302009-01-19 02:02:57 +0100276 struct file *parfilp,
277 xfs_fsop_handlereq_t *hreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278{
Christoph Hellwigd296d302009-01-19 02:02:57 +0100279 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 __u32 olen;
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000281 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283 if (!capable(CAP_SYS_ADMIN))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000284 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
Christoph Hellwigd296d302009-01-19 02:02:57 +0100286 dentry = xfs_handlereq_to_dentry(parfilp, hreq);
287 if (IS_ERR(dentry))
288 return PTR_ERR(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
290 /* Restrict this handle operation to symlinks only. */
Miklos Szeredifd4a0ed2016-12-09 16:45:04 +0100291 if (!d_is_symlink(dentry)) {
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000292 error = -EINVAL;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100293 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 }
295
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600296 if (copy_from_user(&olen, hreq->ohandlen, sizeof(__u32))) {
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000297 error = -EFAULT;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100298 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Miklos Szeredifd4a0ed2016-12-09 16:45:04 +0100301 error = vfs_readlink(dentry, hreq->ohandle, olen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
Christoph Hellwigd296d302009-01-19 02:02:57 +0100303 out_dput:
304 dput(dentry);
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000305 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306}
307
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000308int
309xfs_set_dmattrs(
310 xfs_inode_t *ip,
311 u_int evmask,
312 u_int16_t state)
313{
314 xfs_mount_t *mp = ip->i_mount;
315 xfs_trans_t *tp;
316 int error;
317
318 if (!capable(CAP_SYS_ADMIN))
Dave Chinner24513372014-06-25 14:58:08 +1000319 return -EPERM;
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000320
321 if (XFS_FORCED_SHUTDOWN(mp))
Dave Chinner24513372014-06-25 14:58:08 +1000322 return -EIO;
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000323
Christoph Hellwig253f4912016-04-06 09:19:55 +1000324 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_ichange, 0, 0, 0, &tp);
325 if (error)
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000326 return error;
Christoph Hellwig253f4912016-04-06 09:19:55 +1000327
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000328 xfs_ilock(ip, XFS_ILOCK_EXCL);
329 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
330
331 ip->i_d.di_dmevmask = evmask;
332 ip->i_d.di_dmstate = state;
333
334 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
Christoph Hellwig70393312015-06-04 13:48:08 +1000335 error = xfs_trans_commit(tp);
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000336
337 return error;
338}
339
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340STATIC int
341xfs_fssetdm_by_handle(
Christoph Hellwigd296d302009-01-19 02:02:57 +0100342 struct file *parfilp,
343 void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344{
345 int error;
346 struct fsdmidata fsd;
347 xfs_fsop_setdm_handlereq_t dmhreq;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100348 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
350 if (!capable(CAP_MKNOD))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000351 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 if (copy_from_user(&dmhreq, arg, sizeof(xfs_fsop_setdm_handlereq_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000353 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Jan Karad9457dc2012-06-12 16:20:39 +0200355 error = mnt_want_write_file(parfilp);
356 if (error)
357 return error;
358
Christoph Hellwigd296d302009-01-19 02:02:57 +0100359 dentry = xfs_handlereq_to_dentry(parfilp, &dmhreq.hreq);
Jan Karad9457dc2012-06-12 16:20:39 +0200360 if (IS_ERR(dentry)) {
361 mnt_drop_write_file(parfilp);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100362 return PTR_ERR(dentry);
Jan Karad9457dc2012-06-12 16:20:39 +0200363 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
David Howells2b0143b2015-03-17 22:25:59 +0000365 if (IS_IMMUTABLE(d_inode(dentry)) || IS_APPEND(d_inode(dentry))) {
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000366 error = -EPERM;
Christoph Hellwig6e7f75e2007-10-11 18:09:50 +1000367 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 }
369
370 if (copy_from_user(&fsd, dmhreq.data, sizeof(fsd))) {
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000371 error = -EFAULT;
Christoph Hellwig6e7f75e2007-10-11 18:09:50 +1000372 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 }
374
David Howells2b0143b2015-03-17 22:25:59 +0000375 error = xfs_set_dmattrs(XFS_I(d_inode(dentry)), fsd.fsd_dmevmask,
Christoph Hellwig6e7f75e2007-10-11 18:09:50 +1000376 fsd.fsd_dmstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
Christoph Hellwig6e7f75e2007-10-11 18:09:50 +1000378 out:
Jan Karad9457dc2012-06-12 16:20:39 +0200379 mnt_drop_write_file(parfilp);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100380 dput(dentry);
Christoph Hellwig6e7f75e2007-10-11 18:09:50 +1000381 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382}
383
384STATIC int
385xfs_attrlist_by_handle(
Christoph Hellwigd296d302009-01-19 02:02:57 +0100386 struct file *parfilp,
387 void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388{
Christoph Hellwigd296d302009-01-19 02:02:57 +0100389 int error = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 attrlist_cursor_kern_t *cursor;
Darrick J. Wong0facef72016-08-03 10:58:53 +1000391 struct xfs_fsop_attrlist_handlereq __user *p = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 xfs_fsop_attrlist_handlereq_t al_hreq;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100393 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 char *kbuf;
395
396 if (!capable(CAP_SYS_ADMIN))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000397 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 if (copy_from_user(&al_hreq, arg, sizeof(xfs_fsop_attrlist_handlereq_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000399 return -EFAULT;
Dan Carpenter071c5292013-10-31 21:00:10 +0300400 if (al_hreq.buflen < sizeof(struct attrlist) ||
Jan Tulak4e247612015-10-12 16:02:56 +1100401 al_hreq.buflen > XFS_XATTR_LIST_MAX)
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000402 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Christoph Hellwig90ad58a2008-06-27 13:32:19 +1000404 /*
405 * Reject flags, only allow namespaces.
406 */
407 if (al_hreq.flags & ~(ATTR_ROOT | ATTR_SECURE))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000408 return -EINVAL;
Christoph Hellwig90ad58a2008-06-27 13:32:19 +1000409
Christoph Hellwigd296d302009-01-19 02:02:57 +0100410 dentry = xfs_handlereq_to_dentry(parfilp, &al_hreq.hreq);
411 if (IS_ERR(dentry))
412 return PTR_ERR(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Dave Chinnerfdd3cce2013-09-02 20:53:00 +1000414 kbuf = kmem_zalloc_large(al_hreq.buflen, KM_SLEEP);
415 if (!kbuf)
416 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
418 cursor = (attrlist_cursor_kern_t *)&al_hreq.pos;
David Howells2b0143b2015-03-17 22:25:59 +0000419 error = xfs_attr_list(XFS_I(d_inode(dentry)), kbuf, al_hreq.buflen,
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000420 al_hreq.flags, cursor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 if (error)
422 goto out_kfree;
423
Darrick J. Wong0facef72016-08-03 10:58:53 +1000424 if (copy_to_user(&p->pos, cursor, sizeof(attrlist_cursor_kern_t))) {
425 error = -EFAULT;
426 goto out_kfree;
427 }
428
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 if (copy_to_user(al_hreq.buffer, kbuf, al_hreq.buflen))
430 error = -EFAULT;
431
Dave Chinnerfdd3cce2013-09-02 20:53:00 +1000432out_kfree:
433 kmem_free(kbuf);
434out_dput:
Christoph Hellwigd296d302009-01-19 02:02:57 +0100435 dput(dentry);
436 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437}
438
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600439int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440xfs_attrmulti_attr_get(
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000441 struct inode *inode,
Dave Chinnera9273ca2010-01-20 10:47:48 +1100442 unsigned char *name,
443 unsigned char __user *ubuf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 __uint32_t *len,
445 __uint32_t flags)
446{
Dave Chinnera9273ca2010-01-20 10:47:48 +1100447 unsigned char *kbuf;
Dave Chinner24513372014-06-25 14:58:08 +1000448 int error = -EFAULT;
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000449
Jan Tulak51fcbfe2015-10-12 16:03:59 +1100450 if (*len > XFS_XATTR_SIZE_MAX)
Dave Chinner24513372014-06-25 14:58:08 +1000451 return -EINVAL;
Dave Chinnerfdd3cce2013-09-02 20:53:00 +1000452 kbuf = kmem_zalloc_large(*len, KM_SLEEP);
453 if (!kbuf)
Dave Chinner24513372014-06-25 14:58:08 +1000454 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000456 error = xfs_attr_get(XFS_I(inode), name, kbuf, (int *)len, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 if (error)
458 goto out_kfree;
459
460 if (copy_to_user(ubuf, kbuf, *len))
Dave Chinner24513372014-06-25 14:58:08 +1000461 error = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
Dave Chinnerfdd3cce2013-09-02 20:53:00 +1000463out_kfree:
464 kmem_free(kbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 return error;
466}
467
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600468int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469xfs_attrmulti_attr_set(
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000470 struct inode *inode,
Dave Chinnera9273ca2010-01-20 10:47:48 +1100471 unsigned char *name,
472 const unsigned char __user *ubuf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 __uint32_t len,
474 __uint32_t flags)
475{
Dave Chinnera9273ca2010-01-20 10:47:48 +1100476 unsigned char *kbuf;
Andreas Gruenbacher09cb22d2015-11-03 12:53:54 +1100477 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000479 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
Dave Chinner24513372014-06-25 14:58:08 +1000480 return -EPERM;
Jan Tulak51fcbfe2015-10-12 16:03:59 +1100481 if (len > XFS_XATTR_SIZE_MAX)
Dave Chinner24513372014-06-25 14:58:08 +1000482 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
Li Zefan0e639bd2009-04-08 15:08:04 +0800484 kbuf = memdup_user(ubuf, len);
485 if (IS_ERR(kbuf))
486 return PTR_ERR(kbuf);
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000487
Andreas Gruenbacher09cb22d2015-11-03 12:53:54 +1100488 error = xfs_attr_set(XFS_I(inode), name, kbuf, len, flags);
Andreas Gruenbacher47e1bf62015-11-03 12:56:17 +1100489 if (!error)
490 xfs_forget_acl(inode, name, flags);
Andreas Gruenbacher09cb22d2015-11-03 12:53:54 +1100491 kfree(kbuf);
492 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493}
494
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600495int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496xfs_attrmulti_attr_remove(
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000497 struct inode *inode,
Dave Chinnera9273ca2010-01-20 10:47:48 +1100498 unsigned char *name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 __uint32_t flags)
500{
Andreas Gruenbacher47e1bf62015-11-03 12:56:17 +1100501 int error;
502
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000503 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
Dave Chinner24513372014-06-25 14:58:08 +1000504 return -EPERM;
Andreas Gruenbacher47e1bf62015-11-03 12:56:17 +1100505 error = xfs_attr_remove(XFS_I(inode), name, flags);
506 if (!error)
507 xfs_forget_acl(inode, name, flags);
508 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509}
510
511STATIC int
512xfs_attrmulti_by_handle(
Dave Hansen42a74f22008-02-15 14:37:46 -0800513 struct file *parfilp,
Christoph Hellwigd296d302009-01-19 02:02:57 +0100514 void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515{
516 int error;
517 xfs_attr_multiop_t *ops;
518 xfs_fsop_attrmulti_handlereq_t am_hreq;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100519 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 unsigned int i, size;
Dave Chinnera9273ca2010-01-20 10:47:48 +1100521 unsigned char *attr_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
523 if (!capable(CAP_SYS_ADMIN))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000524 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 if (copy_from_user(&am_hreq, arg, sizeof(xfs_fsop_attrmulti_handlereq_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000526 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
Zhitong Wangfda168c2010-03-23 09:51:22 +1100528 /* overflow check */
529 if (am_hreq.opcount >= INT_MAX / sizeof(xfs_attr_multiop_t))
530 return -E2BIG;
531
Christoph Hellwigd296d302009-01-19 02:02:57 +0100532 dentry = xfs_handlereq_to_dentry(parfilp, &am_hreq.hreq);
533 if (IS_ERR(dentry))
534 return PTR_ERR(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
Dave Chinner24513372014-06-25 14:58:08 +1000536 error = -E2BIG;
Christoph Hellwige182f572008-06-27 13:32:31 +1000537 size = am_hreq.opcount * sizeof(xfs_attr_multiop_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 if (!size || size > 16 * PAGE_SIZE)
Christoph Hellwigd296d302009-01-19 02:02:57 +0100539 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Li Zefan0e639bd2009-04-08 15:08:04 +0800541 ops = memdup_user(am_hreq.ops, size);
542 if (IS_ERR(ops)) {
Dave Chinner24513372014-06-25 14:58:08 +1000543 error = PTR_ERR(ops);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100544 goto out_dput;
Li Zefan0e639bd2009-04-08 15:08:04 +0800545 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
Dave Chinner24513372014-06-25 14:58:08 +1000547 error = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 attr_name = kmalloc(MAXNAMELEN, GFP_KERNEL);
549 if (!attr_name)
550 goto out_kfree_ops;
551
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 error = 0;
553 for (i = 0; i < am_hreq.opcount; i++) {
Dave Chinnera9273ca2010-01-20 10:47:48 +1100554 ops[i].am_error = strncpy_from_user((char *)attr_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 ops[i].am_attrname, MAXNAMELEN);
556 if (ops[i].am_error == 0 || ops[i].am_error == MAXNAMELEN)
Dave Chinner24513372014-06-25 14:58:08 +1000557 error = -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 if (ops[i].am_error < 0)
559 break;
560
561 switch (ops[i].am_opcode) {
562 case ATTR_OP_GET:
Christoph Hellwigd296d302009-01-19 02:02:57 +0100563 ops[i].am_error = xfs_attrmulti_attr_get(
David Howells2b0143b2015-03-17 22:25:59 +0000564 d_inode(dentry), attr_name,
Christoph Hellwigd296d302009-01-19 02:02:57 +0100565 ops[i].am_attrvalue, &ops[i].am_length,
566 ops[i].am_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 break;
568 case ATTR_OP_SET:
Al Viroa561be72011-11-23 11:57:51 -0500569 ops[i].am_error = mnt_want_write_file(parfilp);
Dave Hansen42a74f22008-02-15 14:37:46 -0800570 if (ops[i].am_error)
571 break;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100572 ops[i].am_error = xfs_attrmulti_attr_set(
David Howells2b0143b2015-03-17 22:25:59 +0000573 d_inode(dentry), attr_name,
Christoph Hellwigd296d302009-01-19 02:02:57 +0100574 ops[i].am_attrvalue, ops[i].am_length,
575 ops[i].am_flags);
Al Viro2a79f172011-12-09 08:06:57 -0500576 mnt_drop_write_file(parfilp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 break;
578 case ATTR_OP_REMOVE:
Al Viroa561be72011-11-23 11:57:51 -0500579 ops[i].am_error = mnt_want_write_file(parfilp);
Dave Hansen42a74f22008-02-15 14:37:46 -0800580 if (ops[i].am_error)
581 break;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100582 ops[i].am_error = xfs_attrmulti_attr_remove(
David Howells2b0143b2015-03-17 22:25:59 +0000583 d_inode(dentry), attr_name,
Christoph Hellwigd296d302009-01-19 02:02:57 +0100584 ops[i].am_flags);
Al Viro2a79f172011-12-09 08:06:57 -0500585 mnt_drop_write_file(parfilp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 break;
587 default:
Dave Chinner24513372014-06-25 14:58:08 +1000588 ops[i].am_error = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 }
590 }
591
592 if (copy_to_user(am_hreq.ops, ops, size))
Dave Chinner24513372014-06-25 14:58:08 +1000593 error = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
595 kfree(attr_name);
596 out_kfree_ops:
597 kfree(ops);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100598 out_dput:
599 dput(dentry);
Dave Chinner24513372014-06-25 14:58:08 +1000600 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601}
602
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600603int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604xfs_ioc_space(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 unsigned int cmd,
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600607 xfs_flock64_t *bf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608{
Christoph Hellwig8f3e2052016-07-20 11:29:35 +1000609 struct inode *inode = file_inode(filp);
610 struct xfs_inode *ip = XFS_I(inode);
Christoph Hellwig865e9442013-10-12 00:55:08 -0700611 struct iattr iattr;
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100612 enum xfs_prealloc_flags flags = 0;
Christoph Hellwig781355c2015-02-16 11:59:50 +1100613 uint iolock = XFS_IOLOCK_EXCL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 int error;
615
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600616 /*
617 * Only allow the sys admin to reserve space unless
618 * unwritten extents are enabled.
619 */
620 if (!xfs_sb_version_hasextflgbit(&ip->i_mount->m_sb) &&
621 !capable(CAP_SYS_ADMIN))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000622 return -EPERM;
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600623
Alexey Dobriyanf37ea142006-09-28 10:52:04 +1000624 if (inode->i_flags & (S_IMMUTABLE|S_APPEND))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000625 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
Eric Sandeenad4a8ac2005-09-02 16:41:16 +1000627 if (!(filp->f_mode & FMODE_WRITE))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000628 return -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
Alexey Dobriyanf37ea142006-09-28 10:52:04 +1000630 if (!S_ISREG(inode->i_mode))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000631 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100633 if (filp->f_flags & O_DSYNC)
634 flags |= XFS_PREALLOC_SYNC;
Christoph Hellwig8f3e2052016-07-20 11:29:35 +1000635 if (filp->f_mode & FMODE_NOCMTIME)
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100636 flags |= XFS_PREALLOC_INVISIBLE;
637
Jan Karad9457dc2012-06-12 16:20:39 +0200638 error = mnt_want_write_file(filp);
639 if (error)
640 return error;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700641
Christoph Hellwig781355c2015-02-16 11:59:50 +1100642 xfs_ilock(ip, iolock);
Christoph Hellwig65523212016-11-30 14:33:25 +1100643 error = xfs_break_layouts(inode, &iolock);
Christoph Hellwig781355c2015-02-16 11:59:50 +1100644 if (error)
645 goto out_unlock;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700646
Dave Chinnere8e9ad42015-02-23 21:45:32 +1100647 xfs_ilock(ip, XFS_MMAPLOCK_EXCL);
648 iolock |= XFS_MMAPLOCK_EXCL;
649
Christoph Hellwig865e9442013-10-12 00:55:08 -0700650 switch (bf->l_whence) {
651 case 0: /*SEEK_SET*/
652 break;
653 case 1: /*SEEK_CUR*/
654 bf->l_start += filp->f_pos;
655 break;
656 case 2: /*SEEK_END*/
657 bf->l_start += XFS_ISIZE(ip);
658 break;
659 default:
Dave Chinner24513372014-06-25 14:58:08 +1000660 error = -EINVAL;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700661 goto out_unlock;
662 }
663
664 /*
665 * length of <= 0 for resv/unresv/zero is invalid. length for
666 * alloc/free is ignored completely and we have no idea what userspace
667 * might have set it to, so set it to zero to allow range
668 * checks to pass.
669 */
670 switch (cmd) {
671 case XFS_IOC_ZERO_RANGE:
672 case XFS_IOC_RESVSP:
673 case XFS_IOC_RESVSP64:
674 case XFS_IOC_UNRESVSP:
675 case XFS_IOC_UNRESVSP64:
676 if (bf->l_len <= 0) {
Dave Chinner24513372014-06-25 14:58:08 +1000677 error = -EINVAL;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700678 goto out_unlock;
679 }
680 break;
681 default:
682 bf->l_len = 0;
683 break;
684 }
685
686 if (bf->l_start < 0 ||
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100687 bf->l_start > inode->i_sb->s_maxbytes ||
Christoph Hellwig865e9442013-10-12 00:55:08 -0700688 bf->l_start + bf->l_len < 0 ||
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100689 bf->l_start + bf->l_len >= inode->i_sb->s_maxbytes) {
Dave Chinner24513372014-06-25 14:58:08 +1000690 error = -EINVAL;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700691 goto out_unlock;
692 }
693
694 switch (cmd) {
695 case XFS_IOC_ZERO_RANGE:
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100696 flags |= XFS_PREALLOC_SET;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700697 error = xfs_zero_file_space(ip, bf->l_start, bf->l_len);
Christoph Hellwig865e9442013-10-12 00:55:08 -0700698 break;
699 case XFS_IOC_RESVSP:
700 case XFS_IOC_RESVSP64:
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100701 flags |= XFS_PREALLOC_SET;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700702 error = xfs_alloc_file_space(ip, bf->l_start, bf->l_len,
703 XFS_BMAPI_PREALLOC);
Christoph Hellwig865e9442013-10-12 00:55:08 -0700704 break;
705 case XFS_IOC_UNRESVSP:
706 case XFS_IOC_UNRESVSP64:
707 error = xfs_free_file_space(ip, bf->l_start, bf->l_len);
708 break;
709 case XFS_IOC_ALLOCSP:
710 case XFS_IOC_ALLOCSP64:
711 case XFS_IOC_FREESP:
712 case XFS_IOC_FREESP64:
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100713 flags |= XFS_PREALLOC_CLEAR;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700714 if (bf->l_start > XFS_ISIZE(ip)) {
715 error = xfs_alloc_file_space(ip, XFS_ISIZE(ip),
716 bf->l_start - XFS_ISIZE(ip), 0);
717 if (error)
718 goto out_unlock;
719 }
720
721 iattr.ia_valid = ATTR_SIZE;
722 iattr.ia_size = bf->l_start;
723
Jan Kara69bca802016-05-26 14:46:43 +0200724 error = xfs_vn_setattr_size(file_dentry(filp), &iattr);
Christoph Hellwig865e9442013-10-12 00:55:08 -0700725 break;
726 default:
727 ASSERT(0);
Dave Chinner24513372014-06-25 14:58:08 +1000728 error = -EINVAL;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700729 }
730
731 if (error)
732 goto out_unlock;
733
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100734 error = xfs_update_prealloc_flags(ip, flags);
Christoph Hellwig865e9442013-10-12 00:55:08 -0700735
736out_unlock:
Christoph Hellwig781355c2015-02-16 11:59:50 +1100737 xfs_iunlock(ip, iolock);
Jan Karad9457dc2012-06-12 16:20:39 +0200738 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +1000739 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740}
741
742STATIC int
743xfs_ioc_bulkstat(
744 xfs_mount_t *mp,
745 unsigned int cmd,
746 void __user *arg)
747{
748 xfs_fsop_bulkreq_t bulkreq;
749 int count; /* # of records returned */
750 xfs_ino_t inlast; /* last inode number */
751 int done;
752 int error;
753
754 /* done = 1 if there are more stats to get and if bulkstat */
755 /* should be called again (unused here, but used in dmapi) */
756
757 if (!capable(CAP_SYS_ADMIN))
758 return -EPERM;
759
760 if (XFS_FORCED_SHUTDOWN(mp))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000761 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
763 if (copy_from_user(&bulkreq, arg, sizeof(xfs_fsop_bulkreq_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000764 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
766 if (copy_from_user(&inlast, bulkreq.lastip, sizeof(__s64)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000767 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
769 if ((count = bulkreq.icount) <= 0)
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000770 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100772 if (bulkreq.ubuffer == NULL)
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000773 return -EINVAL;
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100774
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 if (cmd == XFS_IOC_FSINUMBERS)
776 error = xfs_inumbers(mp, &inlast, &count,
Michal Marekfaa63e92007-07-11 11:10:19 +1000777 bulkreq.ubuffer, xfs_inumbers_fmt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 else if (cmd == XFS_IOC_FSBULKSTAT_SINGLE)
Christoph Hellwigd716f8e2014-07-24 12:07:15 +1000779 error = xfs_bulkstat_one(mp, inlast, bulkreq.ubuffer,
780 sizeof(xfs_bstat_t), NULL, &done);
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100781 else /* XFS_IOC_FSBULKSTAT */
Christoph Hellwig7dce11d2010-06-23 18:11:11 +1000782 error = xfs_bulkstat(mp, &inlast, &count, xfs_bulkstat_one,
783 sizeof(xfs_bstat_t), bulkreq.ubuffer,
784 &done);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
786 if (error)
Dave Chinner24513372014-06-25 14:58:08 +1000787 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
789 if (bulkreq.ocount != NULL) {
790 if (copy_to_user(bulkreq.lastip, &inlast,
791 sizeof(xfs_ino_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000792 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
794 if (copy_to_user(bulkreq.ocount, &count, sizeof(count)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000795 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 }
797
798 return 0;
799}
800
801STATIC int
802xfs_ioc_fsgeometry_v1(
803 xfs_mount_t *mp,
804 void __user *arg)
805{
Alex Eldereeb20362011-03-01 17:50:00 +0000806 xfs_fsop_geom_t fsgeo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 int error;
808
Alex Eldereeb20362011-03-01 17:50:00 +0000809 error = xfs_fs_geometry(mp, &fsgeo, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 if (error)
Dave Chinner24513372014-06-25 14:58:08 +1000811 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
Alex Eldereeb20362011-03-01 17:50:00 +0000813 /*
814 * Caller should have passed an argument of type
815 * xfs_fsop_geom_v1_t. This is a proper subset of the
816 * xfs_fsop_geom_t that xfs_fs_geometry() fills in.
817 */
818 if (copy_to_user(arg, &fsgeo, sizeof(xfs_fsop_geom_v1_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000819 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 return 0;
821}
822
823STATIC int
824xfs_ioc_fsgeometry(
825 xfs_mount_t *mp,
826 void __user *arg)
827{
828 xfs_fsop_geom_t fsgeo;
829 int error;
830
831 error = xfs_fs_geometry(mp, &fsgeo, 4);
832 if (error)
Dave Chinner24513372014-06-25 14:58:08 +1000833 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
835 if (copy_to_user(arg, &fsgeo, sizeof(fsgeo)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000836 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 return 0;
838}
839
840/*
841 * Linux extended inode flags interface.
842 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
844STATIC unsigned int
845xfs_merge_ioc_xflags(
846 unsigned int flags,
847 unsigned int start)
848{
849 unsigned int xflags = start;
850
Eric Sandeen39058a02007-02-10 18:37:10 +1100851 if (flags & FS_IMMUTABLE_FL)
Dave Chinnere7b89482016-01-04 16:44:15 +1100852 xflags |= FS_XFLAG_IMMUTABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 else
Dave Chinnere7b89482016-01-04 16:44:15 +1100854 xflags &= ~FS_XFLAG_IMMUTABLE;
Eric Sandeen39058a02007-02-10 18:37:10 +1100855 if (flags & FS_APPEND_FL)
Dave Chinnere7b89482016-01-04 16:44:15 +1100856 xflags |= FS_XFLAG_APPEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 else
Dave Chinnere7b89482016-01-04 16:44:15 +1100858 xflags &= ~FS_XFLAG_APPEND;
Eric Sandeen39058a02007-02-10 18:37:10 +1100859 if (flags & FS_SYNC_FL)
Dave Chinnere7b89482016-01-04 16:44:15 +1100860 xflags |= FS_XFLAG_SYNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 else
Dave Chinnere7b89482016-01-04 16:44:15 +1100862 xflags &= ~FS_XFLAG_SYNC;
Eric Sandeen39058a02007-02-10 18:37:10 +1100863 if (flags & FS_NOATIME_FL)
Dave Chinnere7b89482016-01-04 16:44:15 +1100864 xflags |= FS_XFLAG_NOATIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 else
Dave Chinnere7b89482016-01-04 16:44:15 +1100866 xflags &= ~FS_XFLAG_NOATIME;
Eric Sandeen39058a02007-02-10 18:37:10 +1100867 if (flags & FS_NODUMP_FL)
Dave Chinnere7b89482016-01-04 16:44:15 +1100868 xflags |= FS_XFLAG_NODUMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 else
Dave Chinnere7b89482016-01-04 16:44:15 +1100870 xflags &= ~FS_XFLAG_NODUMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
872 return xflags;
873}
874
875STATIC unsigned int
876xfs_di2lxflags(
877 __uint16_t di_flags)
878{
879 unsigned int flags = 0;
880
881 if (di_flags & XFS_DIFLAG_IMMUTABLE)
Eric Sandeen39058a02007-02-10 18:37:10 +1100882 flags |= FS_IMMUTABLE_FL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 if (di_flags & XFS_DIFLAG_APPEND)
Eric Sandeen39058a02007-02-10 18:37:10 +1100884 flags |= FS_APPEND_FL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 if (di_flags & XFS_DIFLAG_SYNC)
Eric Sandeen39058a02007-02-10 18:37:10 +1100886 flags |= FS_SYNC_FL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 if (di_flags & XFS_DIFLAG_NOATIME)
Eric Sandeen39058a02007-02-10 18:37:10 +1100888 flags |= FS_NOATIME_FL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 if (di_flags & XFS_DIFLAG_NODUMP)
Eric Sandeen39058a02007-02-10 18:37:10 +1100890 flags |= FS_NODUMP_FL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 return flags;
892}
893
894STATIC int
Christoph Hellwigc83bfab2007-10-11 17:47:00 +1000895xfs_ioc_fsgetxattr(
896 xfs_inode_t *ip,
897 int attr,
898 void __user *arg)
899{
900 struct fsxattr fa;
901
Dan Rosenberga122eb22010-09-06 18:24:57 -0400902 memset(&fa, 0, sizeof(struct fsxattr));
903
Christoph Hellwigc83bfab2007-10-11 17:47:00 +1000904 xfs_ilock(ip, XFS_ILOCK_SHARED);
905 fa.fsx_xflags = xfs_ip2xflags(ip);
906 fa.fsx_extsize = ip->i_d.di_extsize << ip->i_mount->m_sb.sb_blocklog;
Darrick J. Wongf7ca3522016-10-03 09:11:43 -0700907 fa.fsx_cowextsize = ip->i_d.di_cowextsize <<
908 ip->i_mount->m_sb.sb_blocklog;
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000909 fa.fsx_projid = xfs_get_projid(ip);
Christoph Hellwigc83bfab2007-10-11 17:47:00 +1000910
911 if (attr) {
912 if (ip->i_afp) {
913 if (ip->i_afp->if_flags & XFS_IFEXTENTS)
Eric Sandeen5d829302016-11-08 12:59:42 +1100914 fa.fsx_nextents = xfs_iext_count(ip->i_afp);
Christoph Hellwigc83bfab2007-10-11 17:47:00 +1000915 else
916 fa.fsx_nextents = ip->i_d.di_anextents;
917 } else
918 fa.fsx_nextents = 0;
919 } else {
920 if (ip->i_df.if_flags & XFS_IFEXTENTS)
Eric Sandeen5d829302016-11-08 12:59:42 +1100921 fa.fsx_nextents = xfs_iext_count(&ip->i_df);
Christoph Hellwigc83bfab2007-10-11 17:47:00 +1000922 else
923 fa.fsx_nextents = ip->i_d.di_nextents;
924 }
925 xfs_iunlock(ip, XFS_ILOCK_SHARED);
926
927 if (copy_to_user(arg, &fa, sizeof(fa)))
928 return -EFAULT;
929 return 0;
930}
931
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000932STATIC void
933xfs_set_diflags(
934 struct xfs_inode *ip,
935 unsigned int xflags)
936{
937 unsigned int di_flags;
Dave Chinner58f88ca2016-01-04 16:44:15 +1100938 uint64_t di_flags2;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000939
940 /* can't set PREALLOC this way, just preserve it */
941 di_flags = (ip->i_d.di_flags & XFS_DIFLAG_PREALLOC);
Dave Chinnere7b89482016-01-04 16:44:15 +1100942 if (xflags & FS_XFLAG_IMMUTABLE)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000943 di_flags |= XFS_DIFLAG_IMMUTABLE;
Dave Chinnere7b89482016-01-04 16:44:15 +1100944 if (xflags & FS_XFLAG_APPEND)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000945 di_flags |= XFS_DIFLAG_APPEND;
Dave Chinnere7b89482016-01-04 16:44:15 +1100946 if (xflags & FS_XFLAG_SYNC)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000947 di_flags |= XFS_DIFLAG_SYNC;
Dave Chinnere7b89482016-01-04 16:44:15 +1100948 if (xflags & FS_XFLAG_NOATIME)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000949 di_flags |= XFS_DIFLAG_NOATIME;
Dave Chinnere7b89482016-01-04 16:44:15 +1100950 if (xflags & FS_XFLAG_NODUMP)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000951 di_flags |= XFS_DIFLAG_NODUMP;
Dave Chinnere7b89482016-01-04 16:44:15 +1100952 if (xflags & FS_XFLAG_NODEFRAG)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000953 di_flags |= XFS_DIFLAG_NODEFRAG;
Dave Chinnere7b89482016-01-04 16:44:15 +1100954 if (xflags & FS_XFLAG_FILESTREAM)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000955 di_flags |= XFS_DIFLAG_FILESTREAM;
Dave Chinnerc19b3b052016-02-09 16:54:58 +1100956 if (S_ISDIR(VFS_I(ip)->i_mode)) {
Dave Chinnere7b89482016-01-04 16:44:15 +1100957 if (xflags & FS_XFLAG_RTINHERIT)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000958 di_flags |= XFS_DIFLAG_RTINHERIT;
Dave Chinnere7b89482016-01-04 16:44:15 +1100959 if (xflags & FS_XFLAG_NOSYMLINKS)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000960 di_flags |= XFS_DIFLAG_NOSYMLINKS;
Dave Chinnere7b89482016-01-04 16:44:15 +1100961 if (xflags & FS_XFLAG_EXTSZINHERIT)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000962 di_flags |= XFS_DIFLAG_EXTSZINHERIT;
Dave Chinnere7b89482016-01-04 16:44:15 +1100963 if (xflags & FS_XFLAG_PROJINHERIT)
Dave Chinner9336e3a2014-10-02 09:18:40 +1000964 di_flags |= XFS_DIFLAG_PROJINHERIT;
Dave Chinnerc19b3b052016-02-09 16:54:58 +1100965 } else if (S_ISREG(VFS_I(ip)->i_mode)) {
Dave Chinnere7b89482016-01-04 16:44:15 +1100966 if (xflags & FS_XFLAG_REALTIME)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000967 di_flags |= XFS_DIFLAG_REALTIME;
Dave Chinnere7b89482016-01-04 16:44:15 +1100968 if (xflags & FS_XFLAG_EXTSIZE)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000969 di_flags |= XFS_DIFLAG_EXTSIZE;
970 }
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000971 ip->i_d.di_flags = di_flags;
Dave Chinner58f88ca2016-01-04 16:44:15 +1100972
973 /* diflags2 only valid for v3 inodes. */
974 if (ip->i_d.di_version < 3)
975 return;
976
Darrick J. Wongf7ca3522016-10-03 09:11:43 -0700977 di_flags2 = (ip->i_d.di_flags2 & XFS_DIFLAG2_REFLINK);
Dave Chinner58f88ca2016-01-04 16:44:15 +1100978 if (xflags & FS_XFLAG_DAX)
979 di_flags2 |= XFS_DIFLAG2_DAX;
Darrick J. Wongf7ca3522016-10-03 09:11:43 -0700980 if (xflags & FS_XFLAG_COWEXTSIZE)
981 di_flags2 |= XFS_DIFLAG2_COWEXTSIZE;
Dave Chinner58f88ca2016-01-04 16:44:15 +1100982
983 ip->i_d.di_flags2 = di_flags2;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000984}
985
Christoph Hellwigf13fae22008-07-21 16:16:15 +1000986STATIC void
987xfs_diflags_to_linux(
988 struct xfs_inode *ip)
989{
David Chinnere4f75292008-08-13 16:00:45 +1000990 struct inode *inode = VFS_I(ip);
Christoph Hellwigf13fae22008-07-21 16:16:15 +1000991 unsigned int xflags = xfs_ip2xflags(ip);
992
Dave Chinnere7b89482016-01-04 16:44:15 +1100993 if (xflags & FS_XFLAG_IMMUTABLE)
Christoph Hellwigf13fae22008-07-21 16:16:15 +1000994 inode->i_flags |= S_IMMUTABLE;
995 else
996 inode->i_flags &= ~S_IMMUTABLE;
Dave Chinnere7b89482016-01-04 16:44:15 +1100997 if (xflags & FS_XFLAG_APPEND)
Christoph Hellwigf13fae22008-07-21 16:16:15 +1000998 inode->i_flags |= S_APPEND;
999 else
1000 inode->i_flags &= ~S_APPEND;
Dave Chinnere7b89482016-01-04 16:44:15 +11001001 if (xflags & FS_XFLAG_SYNC)
Christoph Hellwigf13fae22008-07-21 16:16:15 +10001002 inode->i_flags |= S_SYNC;
1003 else
1004 inode->i_flags &= ~S_SYNC;
Dave Chinnere7b89482016-01-04 16:44:15 +11001005 if (xflags & FS_XFLAG_NOATIME)
Christoph Hellwigf13fae22008-07-21 16:16:15 +10001006 inode->i_flags |= S_NOATIME;
1007 else
1008 inode->i_flags &= ~S_NOATIME;
Dave Chinner58f88ca2016-01-04 16:44:15 +11001009 if (xflags & FS_XFLAG_DAX)
1010 inode->i_flags |= S_DAX;
1011 else
1012 inode->i_flags &= ~S_DAX;
1013
Christoph Hellwigf13fae22008-07-21 16:16:15 +10001014}
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001015
Dave Chinner29a17c02015-02-02 10:14:25 +11001016static int
1017xfs_ioctl_setattr_xflags(
1018 struct xfs_trans *tp,
1019 struct xfs_inode *ip,
1020 struct fsxattr *fa)
1021{
1022 struct xfs_mount *mp = ip->i_mount;
1023
1024 /* Can't change realtime flag if any extents are allocated. */
1025 if ((ip->i_d.di_nextents || ip->i_delayed_blks) &&
Dave Chinnere7b89482016-01-04 16:44:15 +11001026 XFS_IS_REALTIME_INODE(ip) != (fa->fsx_xflags & FS_XFLAG_REALTIME))
Dave Chinner29a17c02015-02-02 10:14:25 +11001027 return -EINVAL;
1028
1029 /* If realtime flag is set then must have realtime device */
Dave Chinnere7b89482016-01-04 16:44:15 +11001030 if (fa->fsx_xflags & FS_XFLAG_REALTIME) {
Dave Chinner29a17c02015-02-02 10:14:25 +11001031 if (mp->m_sb.sb_rblocks == 0 || mp->m_sb.sb_rextsize == 0 ||
1032 (ip->i_d.di_extsize % mp->m_sb.sb_rextsize))
1033 return -EINVAL;
1034 }
1035
Darrick J. Wong1987fd72016-10-10 16:49:29 +11001036 /* Clear reflink if we are actually able to set the rt flag. */
Darrick J. Wongc8e156a2016-10-03 09:11:50 -07001037 if ((fa->fsx_xflags & FS_XFLAG_REALTIME) && xfs_is_reflink_inode(ip))
Darrick J. Wong1987fd72016-10-10 16:49:29 +11001038 ip->i_d.di_flags2 &= ~XFS_DIFLAG2_REFLINK;
Darrick J. Wongc8e156a2016-10-03 09:11:50 -07001039
Darrick J. Wong4f435eb2016-10-03 09:11:50 -07001040 /* Don't allow us to set DAX mode for a reflinked file for now. */
1041 if ((fa->fsx_xflags & FS_XFLAG_DAX) && xfs_is_reflink_inode(ip))
1042 return -EINVAL;
1043
Dave Chinner29a17c02015-02-02 10:14:25 +11001044 /*
1045 * Can't modify an immutable/append-only file unless
1046 * we have appropriate permission.
1047 */
1048 if (((ip->i_d.di_flags & (XFS_DIFLAG_IMMUTABLE | XFS_DIFLAG_APPEND)) ||
Dave Chinnere7b89482016-01-04 16:44:15 +11001049 (fa->fsx_xflags & (FS_XFLAG_IMMUTABLE | FS_XFLAG_APPEND))) &&
Dave Chinner29a17c02015-02-02 10:14:25 +11001050 !capable(CAP_LINUX_IMMUTABLE))
1051 return -EPERM;
1052
Dave Chinner29a17c02015-02-02 10:14:25 +11001053 xfs_set_diflags(ip, fa->fsx_xflags);
1054 xfs_diflags_to_linux(ip);
1055 xfs_trans_ichgtime(tp, ip, XFS_ICHGTIME_CHG);
1056 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
Bill O'Donnellff6d6af2015-10-12 18:21:22 +11001057 XFS_STATS_INC(mp, xs_ig_attrchg);
Dave Chinner29a17c02015-02-02 10:14:25 +11001058 return 0;
1059}
1060
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001061/*
Dave Chinner3a6a8542016-03-01 09:41:33 +11001062 * If we are changing DAX flags, we have to ensure the file is clean and any
1063 * cached objects in the address space are invalidated and removed. This
1064 * requires us to lock out other IO and page faults similar to a truncate
1065 * operation. The locks need to be held until the transaction has been committed
1066 * so that the cache invalidation is atomic with respect to the DAX flag
1067 * manipulation.
1068 */
1069static int
1070xfs_ioctl_setattr_dax_invalidate(
1071 struct xfs_inode *ip,
1072 struct fsxattr *fa,
1073 int *join_flags)
1074{
1075 struct inode *inode = VFS_I(ip);
1076 int error;
1077
1078 *join_flags = 0;
1079
1080 /*
1081 * It is only valid to set the DAX flag on regular files and
Dave Chinner64485432016-03-01 09:41:33 +11001082 * directories on filesystems where the block size is equal to the page
1083 * size. On directories it serves as an inherit hint.
Dave Chinner3a6a8542016-03-01 09:41:33 +11001084 */
Dave Chinner64485432016-03-01 09:41:33 +11001085 if (fa->fsx_xflags & FS_XFLAG_DAX) {
1086 if (!(S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode)))
1087 return -EINVAL;
1088 if (ip->i_mount->m_sb.sb_blocksize != PAGE_SIZE)
1089 return -EINVAL;
1090 }
Dave Chinner3a6a8542016-03-01 09:41:33 +11001091
1092 /* If the DAX state is not changing, we have nothing to do here. */
1093 if ((fa->fsx_xflags & FS_XFLAG_DAX) && IS_DAX(inode))
1094 return 0;
1095 if (!(fa->fsx_xflags & FS_XFLAG_DAX) && !IS_DAX(inode))
1096 return 0;
1097
1098 /* lock, flush and invalidate mapping in preparation for flag change */
1099 xfs_ilock(ip, XFS_MMAPLOCK_EXCL | XFS_IOLOCK_EXCL);
1100 error = filemap_write_and_wait(inode->i_mapping);
1101 if (error)
1102 goto out_unlock;
1103 error = invalidate_inode_pages2(inode->i_mapping);
1104 if (error)
1105 goto out_unlock;
1106
1107 *join_flags = XFS_MMAPLOCK_EXCL | XFS_IOLOCK_EXCL;
1108 return 0;
1109
1110out_unlock:
1111 xfs_iunlock(ip, XFS_MMAPLOCK_EXCL | XFS_IOLOCK_EXCL);
1112 return error;
1113
1114}
1115
1116/*
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001117 * Set up the transaction structure for the setattr operation, checking that we
1118 * have permission to do so. On success, return a clean transaction and the
1119 * inode locked exclusively ready for further operation specific checks. On
1120 * failure, return an error without modifying or locking the inode.
Dave Chinner3a6a8542016-03-01 09:41:33 +11001121 *
1122 * The inode might already be IO locked on call. If this is the case, it is
1123 * indicated in @join_flags and we take full responsibility for ensuring they
1124 * are unlocked from now on. Hence if we have an error here, we still have to
1125 * unlock them. Otherwise, once they are joined to the transaction, they will
1126 * be unlocked on commit/cancel.
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001127 */
1128static struct xfs_trans *
1129xfs_ioctl_setattr_get_trans(
Dave Chinner3a6a8542016-03-01 09:41:33 +11001130 struct xfs_inode *ip,
1131 int join_flags)
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001132{
1133 struct xfs_mount *mp = ip->i_mount;
1134 struct xfs_trans *tp;
Dave Chinner3a6a8542016-03-01 09:41:33 +11001135 int error = -EROFS;
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001136
1137 if (mp->m_flags & XFS_MOUNT_RDONLY)
Dave Chinner3a6a8542016-03-01 09:41:33 +11001138 goto out_unlock;
1139 error = -EIO;
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001140 if (XFS_FORCED_SHUTDOWN(mp))
Dave Chinner3a6a8542016-03-01 09:41:33 +11001141 goto out_unlock;
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001142
Christoph Hellwig253f4912016-04-06 09:19:55 +10001143 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_ichange, 0, 0, 0, &tp);
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001144 if (error)
Christoph Hellwig253f4912016-04-06 09:19:55 +10001145 return ERR_PTR(error);
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001146
1147 xfs_ilock(ip, XFS_ILOCK_EXCL);
Dave Chinner3a6a8542016-03-01 09:41:33 +11001148 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL | join_flags);
1149 join_flags = 0;
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001150
1151 /*
1152 * CAP_FOWNER overrides the following restrictions:
1153 *
1154 * The user ID of the calling process must be equal to the file owner
1155 * ID, except in cases where the CAP_FSETID capability is applicable.
1156 */
1157 if (!inode_owner_or_capable(VFS_I(ip))) {
1158 error = -EPERM;
1159 goto out_cancel;
1160 }
1161
1162 if (mp->m_flags & XFS_MOUNT_WSYNC)
1163 xfs_trans_set_sync(tp);
1164
1165 return tp;
1166
1167out_cancel:
Christoph Hellwig4906e212015-06-04 13:47:56 +10001168 xfs_trans_cancel(tp);
Dave Chinner3a6a8542016-03-01 09:41:33 +11001169out_unlock:
1170 if (join_flags)
1171 xfs_iunlock(ip, join_flags);
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001172 return ERR_PTR(error);
1173}
1174
Iustin Pop9b94fcc2015-02-02 10:26:26 +11001175/*
1176 * extent size hint validation is somewhat cumbersome. Rules are:
1177 *
1178 * 1. extent size hint is only valid for directories and regular files
Dave Chinnere7b89482016-01-04 16:44:15 +11001179 * 2. FS_XFLAG_EXTSIZE is only valid for regular files
1180 * 3. FS_XFLAG_EXTSZINHERIT is only valid for directories.
Iustin Pop9b94fcc2015-02-02 10:26:26 +11001181 * 4. can only be changed on regular files if no extents are allocated
1182 * 5. can be changed on directories at any time
1183 * 6. extsize hint of 0 turns off hints, clears inode flags.
1184 * 7. Extent size must be a multiple of the appropriate block size.
1185 * 8. for non-realtime files, the extent size hint must be limited
1186 * to half the AG size to avoid alignment extending the extent beyond the
1187 * limits of the AG.
1188 */
kbuild test robotf92090e2015-02-05 11:13:21 +11001189static int
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001190xfs_ioctl_setattr_check_extsize(
1191 struct xfs_inode *ip,
1192 struct fsxattr *fa)
1193{
1194 struct xfs_mount *mp = ip->i_mount;
1195
Dave Chinnerc19b3b052016-02-09 16:54:58 +11001196 if ((fa->fsx_xflags & FS_XFLAG_EXTSIZE) && !S_ISREG(VFS_I(ip)->i_mode))
Iustin Pop9b94fcc2015-02-02 10:26:26 +11001197 return -EINVAL;
1198
Dave Chinnere7b89482016-01-04 16:44:15 +11001199 if ((fa->fsx_xflags & FS_XFLAG_EXTSZINHERIT) &&
Dave Chinnerc19b3b052016-02-09 16:54:58 +11001200 !S_ISDIR(VFS_I(ip)->i_mode))
Iustin Pop9b94fcc2015-02-02 10:26:26 +11001201 return -EINVAL;
1202
Dave Chinnerc19b3b052016-02-09 16:54:58 +11001203 if (S_ISREG(VFS_I(ip)->i_mode) && ip->i_d.di_nextents &&
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001204 ((ip->i_d.di_extsize << mp->m_sb.sb_blocklog) != fa->fsx_extsize))
1205 return -EINVAL;
1206
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001207 if (fa->fsx_extsize != 0) {
1208 xfs_extlen_t size;
1209 xfs_fsblock_t extsize_fsb;
1210
1211 extsize_fsb = XFS_B_TO_FSB(mp, fa->fsx_extsize);
1212 if (extsize_fsb > MAXEXTLEN)
1213 return -EINVAL;
1214
1215 if (XFS_IS_REALTIME_INODE(ip) ||
Dave Chinnere7b89482016-01-04 16:44:15 +11001216 (fa->fsx_xflags & FS_XFLAG_REALTIME)) {
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001217 size = mp->m_sb.sb_rextsize << mp->m_sb.sb_blocklog;
1218 } else {
1219 size = mp->m_sb.sb_blocksize;
1220 if (extsize_fsb > mp->m_sb.sb_agblocks / 2)
1221 return -EINVAL;
1222 }
1223
1224 if (fa->fsx_extsize % size)
1225 return -EINVAL;
Iustin Pop9b94fcc2015-02-02 10:26:26 +11001226 } else
Dave Chinnere7b89482016-01-04 16:44:15 +11001227 fa->fsx_xflags &= ~(FS_XFLAG_EXTSIZE | FS_XFLAG_EXTSZINHERIT);
Iustin Pop9b94fcc2015-02-02 10:26:26 +11001228
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001229 return 0;
1230}
1231
Darrick J. Wongf7ca3522016-10-03 09:11:43 -07001232/*
1233 * CoW extent size hint validation rules are:
1234 *
1235 * 1. CoW extent size hint can only be set if reflink is enabled on the fs.
1236 * The inode does not have to have any shared blocks, but it must be a v3.
1237 * 2. FS_XFLAG_COWEXTSIZE is only valid for directories and regular files;
1238 * for a directory, the hint is propagated to new files.
1239 * 3. Can be changed on files & directories at any time.
1240 * 4. CoW extsize hint of 0 turns off hints, clears inode flags.
1241 * 5. Extent size must be a multiple of the appropriate block size.
1242 * 6. The extent size hint must be limited to half the AG size to avoid
1243 * alignment extending the extent beyond the limits of the AG.
1244 */
1245static int
1246xfs_ioctl_setattr_check_cowextsize(
1247 struct xfs_inode *ip,
1248 struct fsxattr *fa)
1249{
1250 struct xfs_mount *mp = ip->i_mount;
1251
1252 if (!(fa->fsx_xflags & FS_XFLAG_COWEXTSIZE))
1253 return 0;
1254
1255 if (!xfs_sb_version_hasreflink(&ip->i_mount->m_sb) ||
1256 ip->i_d.di_version != 3)
1257 return -EINVAL;
1258
1259 if (!S_ISREG(VFS_I(ip)->i_mode) && !S_ISDIR(VFS_I(ip)->i_mode))
1260 return -EINVAL;
1261
1262 if (fa->fsx_cowextsize != 0) {
1263 xfs_extlen_t size;
1264 xfs_fsblock_t cowextsize_fsb;
1265
1266 cowextsize_fsb = XFS_B_TO_FSB(mp, fa->fsx_cowextsize);
1267 if (cowextsize_fsb > MAXEXTLEN)
1268 return -EINVAL;
1269
1270 size = mp->m_sb.sb_blocksize;
1271 if (cowextsize_fsb > mp->m_sb.sb_agblocks / 2)
1272 return -EINVAL;
1273
1274 if (fa->fsx_cowextsize % size)
1275 return -EINVAL;
1276 } else
1277 fa->fsx_xflags &= ~FS_XFLAG_COWEXTSIZE;
1278
1279 return 0;
1280}
1281
kbuild test robotf92090e2015-02-05 11:13:21 +11001282static int
Dave Chinner23bd0732015-02-02 10:22:53 +11001283xfs_ioctl_setattr_check_projid(
1284 struct xfs_inode *ip,
1285 struct fsxattr *fa)
1286{
1287 /* Disallow 32bit project ids if projid32bit feature is not enabled. */
1288 if (fa->fsx_projid > (__uint16_t)-1 &&
1289 !xfs_sb_version_hasprojid32bit(&ip->i_mount->m_sb))
1290 return -EINVAL;
1291
1292 /*
1293 * Project Quota ID state is only allowed to change from within the init
1294 * namespace. Enforce that restriction only if we are trying to change
1295 * the quota ID state. Everything else is allowed in user namespaces.
1296 */
1297 if (current_user_ns() == &init_user_ns)
1298 return 0;
1299
1300 if (xfs_get_projid(ip) != fa->fsx_projid)
1301 return -EINVAL;
Dave Chinnere7b89482016-01-04 16:44:15 +11001302 if ((fa->fsx_xflags & FS_XFLAG_PROJINHERIT) !=
Dave Chinner23bd0732015-02-02 10:22:53 +11001303 (ip->i_d.di_flags & XFS_DIFLAG_PROJINHERIT))
1304 return -EINVAL;
1305
1306 return 0;
1307}
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001308
1309STATIC int
1310xfs_ioctl_setattr(
1311 xfs_inode_t *ip,
Dave Chinnerfd179b92015-02-02 10:16:25 +11001312 struct fsxattr *fa)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001313{
1314 struct xfs_mount *mp = ip->i_mount;
1315 struct xfs_trans *tp;
Christoph Hellwig7d095252009-06-08 15:33:32 +02001316 struct xfs_dquot *udqp = NULL;
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001317 struct xfs_dquot *pdqp = NULL;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001318 struct xfs_dquot *olddquot = NULL;
1319 int code;
Dave Chinner3a6a8542016-03-01 09:41:33 +11001320 int join_flags = 0;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001321
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001322 trace_xfs_ioctl_setattr(ip);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001323
Dave Chinner23bd0732015-02-02 10:22:53 +11001324 code = xfs_ioctl_setattr_check_projid(ip, fa);
1325 if (code)
1326 return code;
Arkadiusz Mi?kiewicz23963e52010-08-26 10:19:43 +00001327
1328 /*
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001329 * If disk quotas is on, we make sure that the dquots do exist on disk,
1330 * before we start any other transactions. Trying to do this later
1331 * is messy. We don't care to take a readlock to look at the ids
1332 * in inode here, because we can't hold it across the trans_reserve.
1333 * If the IDs do change before we take the ilock, we're covered
1334 * because the i_*dquot fields will get updated anyway.
1335 */
Dave Chinnerfd179b92015-02-02 10:16:25 +11001336 if (XFS_IS_QUOTA_ON(mp)) {
Christoph Hellwig7d095252009-06-08 15:33:32 +02001337 code = xfs_qm_vop_dqalloc(ip, ip->i_d.di_uid,
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001338 ip->i_d.di_gid, fa->fsx_projid,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001339 XFS_QMOPT_PQUOTA, &udqp, NULL, &pdqp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001340 if (code)
1341 return code;
1342 }
1343
Dave Chinner3a6a8542016-03-01 09:41:33 +11001344 /*
1345 * Changing DAX config may require inode locking for mapping
1346 * invalidation. These need to be held all the way to transaction commit
1347 * or cancel time, so need to be passed through to
1348 * xfs_ioctl_setattr_get_trans() so it can apply them to the join call
1349 * appropriately.
1350 */
1351 code = xfs_ioctl_setattr_dax_invalidate(ip, fa, &join_flags);
1352 if (code)
1353 goto error_free_dquots;
1354
1355 tp = xfs_ioctl_setattr_get_trans(ip, join_flags);
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001356 if (IS_ERR(tp)) {
1357 code = PTR_ERR(tp);
1358 goto error_free_dquots;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001359 }
1360
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001361
Dave Chinnerfd179b92015-02-02 10:16:25 +11001362 if (XFS_IS_QUOTA_RUNNING(mp) && XFS_IS_PQUOTA_ON(mp) &&
1363 xfs_get_projid(ip) != fa->fsx_projid) {
1364 code = xfs_qm_vop_chown_reserve(tp, ip, udqp, NULL, pdqp,
1365 capable(CAP_FOWNER) ? XFS_QMOPT_FORCE_RES : 0);
1366 if (code) /* out of quota */
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001367 goto error_trans_cancel;
Dave Chinnerfd179b92015-02-02 10:16:25 +11001368 }
1369
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001370 code = xfs_ioctl_setattr_check_extsize(ip, fa);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001371 if (code)
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001372 goto error_trans_cancel;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001373
Darrick J. Wongf7ca3522016-10-03 09:11:43 -07001374 code = xfs_ioctl_setattr_check_cowextsize(ip, fa);
1375 if (code)
1376 goto error_trans_cancel;
1377
Dave Chinner29a17c02015-02-02 10:14:25 +11001378 code = xfs_ioctl_setattr_xflags(tp, ip, fa);
1379 if (code)
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001380 goto error_trans_cancel;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001381
1382 /*
Dave Chinnerfd179b92015-02-02 10:16:25 +11001383 * Change file ownership. Must be the owner or privileged. CAP_FSETID
1384 * overrides the following restrictions:
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001385 *
Dave Chinnerfd179b92015-02-02 10:16:25 +11001386 * The set-user-ID and set-group-ID bits of a file will be cleared upon
1387 * successful return from chown()
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001388 */
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001389
Dave Chinnerc19b3b052016-02-09 16:54:58 +11001390 if ((VFS_I(ip)->i_mode & (S_ISUID|S_ISGID)) &&
Dave Chinnerfd179b92015-02-02 10:16:25 +11001391 !capable_wrt_inode_uidgid(VFS_I(ip), CAP_FSETID))
Dave Chinnerc19b3b052016-02-09 16:54:58 +11001392 VFS_I(ip)->i_mode &= ~(S_ISUID|S_ISGID);
Dave Chinnerfd179b92015-02-02 10:16:25 +11001393
1394 /* Change the ownerships and register project quota modifications */
1395 if (xfs_get_projid(ip) != fa->fsx_projid) {
1396 if (XFS_IS_QUOTA_RUNNING(mp) && XFS_IS_PQUOTA_ON(mp)) {
1397 olddquot = xfs_qm_vop_chown(tp, ip,
1398 &ip->i_pdquot, pdqp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001399 }
Dave Chinnerfd179b92015-02-02 10:16:25 +11001400 ASSERT(ip->i_d.di_version > 1);
1401 xfs_set_projid(ip, fa->fsx_projid);
Christoph Hellwigf13fae22008-07-21 16:16:15 +10001402 }
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001403
Dave Chinnera8727032014-10-02 09:20:30 +10001404 /*
1405 * Only set the extent size hint if we've already determined that the
1406 * extent size hint should be set on the inode. If no extent size flags
1407 * are set on the inode then unconditionally clear the extent size hint.
1408 */
Dave Chinnerfd179b92015-02-02 10:16:25 +11001409 if (ip->i_d.di_flags & (XFS_DIFLAG_EXTSIZE | XFS_DIFLAG_EXTSZINHERIT))
1410 ip->i_d.di_extsize = fa->fsx_extsize >> mp->m_sb.sb_blocklog;
1411 else
1412 ip->i_d.di_extsize = 0;
Darrick J. Wongf7ca3522016-10-03 09:11:43 -07001413 if (ip->i_d.di_version == 3 &&
1414 (ip->i_d.di_flags2 & XFS_DIFLAG2_COWEXTSIZE))
1415 ip->i_d.di_cowextsize = fa->fsx_cowextsize >>
1416 mp->m_sb.sb_blocklog;
1417 else
1418 ip->i_d.di_cowextsize = 0;
Dave Chinnera8727032014-10-02 09:20:30 +10001419
Christoph Hellwig70393312015-06-04 13:48:08 +10001420 code = xfs_trans_commit(tp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001421
1422 /*
1423 * Release any dquot(s) the inode had kept before chown.
1424 */
Christoph Hellwig7d095252009-06-08 15:33:32 +02001425 xfs_qm_dqrele(olddquot);
1426 xfs_qm_dqrele(udqp);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001427 xfs_qm_dqrele(pdqp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001428
Christoph Hellwig288699f2010-06-23 18:11:15 +10001429 return code;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001430
Dave Chinnerd4388d3c2015-02-02 10:22:20 +11001431error_trans_cancel:
Christoph Hellwig4906e212015-06-04 13:47:56 +10001432 xfs_trans_cancel(tp);
Dave Chinner8f3d17a2015-02-02 10:15:35 +11001433error_free_dquots:
Christoph Hellwig7d095252009-06-08 15:33:32 +02001434 xfs_qm_dqrele(udqp);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001435 xfs_qm_dqrele(pdqp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001436 return code;
1437}
1438
Christoph Hellwigc83bfab2007-10-11 17:47:00 +10001439STATIC int
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001440xfs_ioc_fssetxattr(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 xfs_inode_t *ip,
1442 struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 void __user *arg)
1444{
1445 struct fsxattr fa;
Jan Karad9457dc2012-06-12 16:20:39 +02001446 int error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001447
1448 if (copy_from_user(&fa, arg, sizeof(fa)))
1449 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450
Jan Karad9457dc2012-06-12 16:20:39 +02001451 error = mnt_want_write_file(filp);
1452 if (error)
1453 return error;
Dave Chinnerfd179b92015-02-02 10:16:25 +11001454 error = xfs_ioctl_setattr(ip, &fa);
Jan Karad9457dc2012-06-12 16:20:39 +02001455 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10001456 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001457}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001459STATIC int
1460xfs_ioc_getxflags(
1461 xfs_inode_t *ip,
1462 void __user *arg)
1463{
1464 unsigned int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001466 flags = xfs_di2lxflags(ip->i_d.di_flags);
1467 if (copy_to_user(arg, &flags, sizeof(flags)))
1468 return -EFAULT;
1469 return 0;
1470}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001472STATIC int
1473xfs_ioc_setxflags(
Dave Chinnerf96291f2015-02-02 10:15:56 +11001474 struct xfs_inode *ip,
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001475 struct file *filp,
1476 void __user *arg)
1477{
Dave Chinnerf96291f2015-02-02 10:15:56 +11001478 struct xfs_trans *tp;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001479 struct fsxattr fa;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001480 unsigned int flags;
Dave Chinner3a6a8542016-03-01 09:41:33 +11001481 int join_flags = 0;
Dave Chinnerf96291f2015-02-02 10:15:56 +11001482 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001484 if (copy_from_user(&flags, arg, sizeof(flags)))
1485 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001487 if (flags & ~(FS_IMMUTABLE_FL | FS_APPEND_FL | \
1488 FS_NOATIME_FL | FS_NODUMP_FL | \
1489 FS_SYNC_FL))
1490 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001492 fa.fsx_xflags = xfs_merge_ioc_xflags(flags, xfs_ip2xflags(ip));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493
Jan Karad9457dc2012-06-12 16:20:39 +02001494 error = mnt_want_write_file(filp);
1495 if (error)
1496 return error;
Dave Chinnerf96291f2015-02-02 10:15:56 +11001497
Dave Chinner3a6a8542016-03-01 09:41:33 +11001498 /*
1499 * Changing DAX config may require inode locking for mapping
1500 * invalidation. These need to be held all the way to transaction commit
1501 * or cancel time, so need to be passed through to
1502 * xfs_ioctl_setattr_get_trans() so it can apply them to the join call
1503 * appropriately.
1504 */
1505 error = xfs_ioctl_setattr_dax_invalidate(ip, &fa, &join_flags);
1506 if (error)
1507 goto out_drop_write;
1508
1509 tp = xfs_ioctl_setattr_get_trans(ip, join_flags);
Dave Chinnerf96291f2015-02-02 10:15:56 +11001510 if (IS_ERR(tp)) {
1511 error = PTR_ERR(tp);
1512 goto out_drop_write;
1513 }
1514
1515 error = xfs_ioctl_setattr_xflags(tp, ip, &fa);
1516 if (error) {
Christoph Hellwig4906e212015-06-04 13:47:56 +10001517 xfs_trans_cancel(tp);
Dave Chinnerf96291f2015-02-02 10:15:56 +11001518 goto out_drop_write;
1519 }
1520
Christoph Hellwig70393312015-06-04 13:48:08 +10001521 error = xfs_trans_commit(tp);
Dave Chinnerf96291f2015-02-02 10:15:56 +11001522out_drop_write:
Jan Karad9457dc2012-06-12 16:20:39 +02001523 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10001524 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525}
1526
1527STATIC int
Eric Sandeen1dbba082017-01-27 23:24:28 -08001528xfs_getbmap_format(void **ap, struct getbmapx *bmv)
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001529{
Dave Chinnerb972d072014-09-29 10:46:22 +10001530 struct getbmap __user *base = (struct getbmap __user *)*ap;
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001531
1532 /* copy only getbmap portion (not getbmapx) */
1533 if (copy_to_user(base, bmv, sizeof(struct getbmap)))
Dave Chinner24513372014-06-25 14:58:08 +10001534 return -EFAULT;
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001535
1536 *ap += sizeof(struct getbmap);
1537 return 0;
1538}
1539
1540STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541xfs_ioc_getbmap(
Christoph Hellwig8f3e2052016-07-20 11:29:35 +10001542 struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 unsigned int cmd,
1544 void __user *arg)
1545{
Darrick J. Wongbe6324c2017-04-03 15:17:57 -07001546 struct getbmapx bmx = { 0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 int error;
1548
Darrick J. Wongbe6324c2017-04-03 15:17:57 -07001549 /* struct getbmap is a strict subset of struct getbmapx. */
1550 if (copy_from_user(&bmx, arg, offsetof(struct getbmapx, bmv_iflags)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001551 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001553 if (bmx.bmv_count < 2)
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001554 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001556 bmx.bmv_iflags = (cmd == XFS_IOC_GETBMAPA ? BMV_IF_ATTRFORK : 0);
Christoph Hellwig8f3e2052016-07-20 11:29:35 +10001557 if (file->f_mode & FMODE_NOCMTIME)
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001558 bmx.bmv_iflags |= BMV_IF_NO_DMAPI_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559
Christoph Hellwig8f3e2052016-07-20 11:29:35 +10001560 error = xfs_getbmap(XFS_I(file_inode(file)), &bmx, xfs_getbmap_format,
Dave Chinnerb972d072014-09-29 10:46:22 +10001561 (__force struct getbmap *)arg+1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 if (error)
Dave Chinner24513372014-06-25 14:58:08 +10001563 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001565 /* copy back header - only size of getbmap */
1566 if (copy_to_user(arg, &bmx, sizeof(struct getbmap)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001567 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 return 0;
1569}
1570
1571STATIC int
Eric Sandeen1dbba082017-01-27 23:24:28 -08001572xfs_getbmapx_format(void **ap, struct getbmapx *bmv)
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001573{
Dave Chinnerb972d072014-09-29 10:46:22 +10001574 struct getbmapx __user *base = (struct getbmapx __user *)*ap;
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001575
1576 if (copy_to_user(base, bmv, sizeof(struct getbmapx)))
Dave Chinner24513372014-06-25 14:58:08 +10001577 return -EFAULT;
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001578
1579 *ap += sizeof(struct getbmapx);
1580 return 0;
1581}
1582
1583STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584xfs_ioc_getbmapx(
Christoph Hellwig993386c12007-08-28 16:12:30 +10001585 struct xfs_inode *ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 void __user *arg)
1587{
1588 struct getbmapx bmx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 int error;
1590
1591 if (copy_from_user(&bmx, arg, sizeof(bmx)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001592 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593
1594 if (bmx.bmv_count < 2)
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001595 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001597 if (bmx.bmv_iflags & (~BMV_IF_VALID))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001598 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001600 error = xfs_getbmap(ip, &bmx, xfs_getbmapx_format,
Dave Chinnerb972d072014-09-29 10:46:22 +10001601 (__force struct getbmapx *)arg+1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 if (error)
Dave Chinner24513372014-06-25 14:58:08 +10001603 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001605 /* copy back header */
1606 if (copy_to_user(arg, &bmx, sizeof(struct getbmapx)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001607 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608
1609 return 0;
1610}
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001611
Dave Chinnera133d952013-08-12 20:49:48 +10001612int
1613xfs_ioc_swapext(
1614 xfs_swapext_t *sxp)
1615{
1616 xfs_inode_t *ip, *tip;
1617 struct fd f, tmp;
1618 int error = 0;
1619
1620 /* Pull information for the target fd */
1621 f = fdget((int)sxp->sx_fdtarget);
1622 if (!f.file) {
Dave Chinner24513372014-06-25 14:58:08 +10001623 error = -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001624 goto out;
1625 }
1626
1627 if (!(f.file->f_mode & FMODE_WRITE) ||
1628 !(f.file->f_mode & FMODE_READ) ||
1629 (f.file->f_flags & O_APPEND)) {
Dave Chinner24513372014-06-25 14:58:08 +10001630 error = -EBADF;
Dave Chinnera133d952013-08-12 20:49:48 +10001631 goto out_put_file;
1632 }
1633
1634 tmp = fdget((int)sxp->sx_fdtmp);
1635 if (!tmp.file) {
Dave Chinner24513372014-06-25 14:58:08 +10001636 error = -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001637 goto out_put_file;
1638 }
1639
1640 if (!(tmp.file->f_mode & FMODE_WRITE) ||
1641 !(tmp.file->f_mode & FMODE_READ) ||
1642 (tmp.file->f_flags & O_APPEND)) {
Dave Chinner24513372014-06-25 14:58:08 +10001643 error = -EBADF;
Dave Chinnera133d952013-08-12 20:49:48 +10001644 goto out_put_tmp_file;
1645 }
1646
1647 if (IS_SWAPFILE(file_inode(f.file)) ||
1648 IS_SWAPFILE(file_inode(tmp.file))) {
Dave Chinner24513372014-06-25 14:58:08 +10001649 error = -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001650 goto out_put_tmp_file;
1651 }
1652
Jann Horn7f1b6242016-07-20 10:30:30 +10001653 /*
1654 * We need to ensure that the fds passed in point to XFS inodes
1655 * before we cast and access them as XFS structures as we have no
1656 * control over what the user passes us here.
1657 */
1658 if (f.file->f_op != &xfs_file_operations ||
1659 tmp.file->f_op != &xfs_file_operations) {
1660 error = -EINVAL;
1661 goto out_put_tmp_file;
1662 }
1663
Dave Chinnera133d952013-08-12 20:49:48 +10001664 ip = XFS_I(file_inode(f.file));
1665 tip = XFS_I(file_inode(tmp.file));
1666
1667 if (ip->i_mount != tip->i_mount) {
Dave Chinner24513372014-06-25 14:58:08 +10001668 error = -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001669 goto out_put_tmp_file;
1670 }
1671
1672 if (ip->i_ino == tip->i_ino) {
Dave Chinner24513372014-06-25 14:58:08 +10001673 error = -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001674 goto out_put_tmp_file;
1675 }
1676
1677 if (XFS_FORCED_SHUTDOWN(ip->i_mount)) {
Dave Chinner24513372014-06-25 14:58:08 +10001678 error = -EIO;
Dave Chinnera133d952013-08-12 20:49:48 +10001679 goto out_put_tmp_file;
1680 }
1681
1682 error = xfs_swap_extents(ip, tip, sxp);
1683
1684 out_put_tmp_file:
1685 fdput(tmp);
1686 out_put_file:
1687 fdput(f);
1688 out:
1689 return error;
1690}
1691
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001692/*
1693 * Note: some of the ioctl's return positive numbers as a
1694 * byte count indicating success, such as readlink_by_handle.
1695 * So we don't "sign flip" like most other routines. This means
1696 * true errors need to be returned as a negative value.
1697 */
1698long
1699xfs_file_ioctl(
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001700 struct file *filp,
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001701 unsigned int cmd,
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001702 unsigned long p)
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001703{
Al Viro496ad9a2013-01-23 17:07:38 -05001704 struct inode *inode = file_inode(filp);
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001705 struct xfs_inode *ip = XFS_I(inode);
1706 struct xfs_mount *mp = ip->i_mount;
1707 void __user *arg = (void __user *)p;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001708 int error;
1709
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001710 trace_xfs_file_ioctl(ip);
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001711
1712 switch (cmd) {
Christoph Hellwiga46db602011-01-07 13:02:04 +00001713 case FITRIM:
1714 return xfs_ioc_trim(mp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001715 case XFS_IOC_ALLOCSP:
1716 case XFS_IOC_FREESP:
1717 case XFS_IOC_RESVSP:
1718 case XFS_IOC_UNRESVSP:
1719 case XFS_IOC_ALLOCSP64:
1720 case XFS_IOC_FREESP64:
1721 case XFS_IOC_RESVSP64:
Dave Chinner44722352010-08-24 12:02:11 +10001722 case XFS_IOC_UNRESVSP64:
1723 case XFS_IOC_ZERO_RANGE: {
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001724 xfs_flock64_t bf;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001725
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001726 if (copy_from_user(&bf, arg, sizeof(bf)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001727 return -EFAULT;
Christoph Hellwig8f3e2052016-07-20 11:29:35 +10001728 return xfs_ioc_space(filp, cmd, &bf);
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001729 }
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001730 case XFS_IOC_DIOINFO: {
1731 struct dioattr da;
1732 xfs_buftarg_t *target =
1733 XFS_IS_REALTIME_INODE(ip) ?
1734 mp->m_rtdev_targp : mp->m_ddev_targp;
1735
Eric Sandeen7c71ee72014-01-21 16:46:23 -06001736 da.d_mem = da.d_miniosz = target->bt_logical_sectorsize;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001737 da.d_maxiosz = INT_MAX & ~(da.d_miniosz - 1);
1738
1739 if (copy_to_user(arg, &da, sizeof(da)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001740 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001741 return 0;
1742 }
1743
1744 case XFS_IOC_FSBULKSTAT_SINGLE:
1745 case XFS_IOC_FSBULKSTAT:
1746 case XFS_IOC_FSINUMBERS:
1747 return xfs_ioc_bulkstat(mp, cmd, arg);
1748
1749 case XFS_IOC_FSGEOMETRY_V1:
1750 return xfs_ioc_fsgeometry_v1(mp, arg);
1751
1752 case XFS_IOC_FSGEOMETRY:
1753 return xfs_ioc_fsgeometry(mp, arg);
1754
1755 case XFS_IOC_GETVERSION:
1756 return put_user(inode->i_generation, (int __user *)arg);
1757
1758 case XFS_IOC_FSGETXATTR:
1759 return xfs_ioc_fsgetxattr(ip, 0, arg);
1760 case XFS_IOC_FSGETXATTRA:
1761 return xfs_ioc_fsgetxattr(ip, 1, arg);
Lachlan McIlroy3b2816b2008-04-18 12:43:35 +10001762 case XFS_IOC_FSSETXATTR:
Lachlan McIlroy65e67f52008-04-18 12:59:45 +10001763 return xfs_ioc_fssetxattr(ip, filp, arg);
1764 case XFS_IOC_GETXFLAGS:
1765 return xfs_ioc_getxflags(ip, arg);
1766 case XFS_IOC_SETXFLAGS:
1767 return xfs_ioc_setxflags(ip, filp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001768
1769 case XFS_IOC_FSSETDM: {
1770 struct fsdmidata dmi;
1771
1772 if (copy_from_user(&dmi, arg, sizeof(dmi)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001773 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001774
Jan Karad9457dc2012-06-12 16:20:39 +02001775 error = mnt_want_write_file(filp);
1776 if (error)
1777 return error;
1778
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001779 error = xfs_set_dmattrs(ip, dmi.fsd_dmevmask,
1780 dmi.fsd_dmstate);
Jan Karad9457dc2012-06-12 16:20:39 +02001781 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10001782 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001783 }
1784
1785 case XFS_IOC_GETBMAP:
1786 case XFS_IOC_GETBMAPA:
Christoph Hellwig8f3e2052016-07-20 11:29:35 +10001787 return xfs_ioc_getbmap(filp, cmd, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001788
1789 case XFS_IOC_GETBMAPX:
1790 return xfs_ioc_getbmapx(ip, arg);
1791
1792 case XFS_IOC_FD_TO_HANDLE:
1793 case XFS_IOC_PATH_TO_HANDLE:
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001794 case XFS_IOC_PATH_TO_FSHANDLE: {
1795 xfs_fsop_handlereq_t hreq;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001796
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001797 if (copy_from_user(&hreq, arg, sizeof(hreq)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001798 return -EFAULT;
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001799 return xfs_find_handle(cmd, &hreq);
1800 }
1801 case XFS_IOC_OPEN_BY_HANDLE: {
1802 xfs_fsop_handlereq_t hreq;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001803
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001804 if (copy_from_user(&hreq, arg, sizeof(xfs_fsop_handlereq_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001805 return -EFAULT;
Christoph Hellwigd296d302009-01-19 02:02:57 +01001806 return xfs_open_by_handle(filp, &hreq);
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001807 }
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001808 case XFS_IOC_FSSETDM_BY_HANDLE:
Christoph Hellwigd296d302009-01-19 02:02:57 +01001809 return xfs_fssetdm_by_handle(filp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001810
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001811 case XFS_IOC_READLINK_BY_HANDLE: {
1812 xfs_fsop_handlereq_t hreq;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001813
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001814 if (copy_from_user(&hreq, arg, sizeof(xfs_fsop_handlereq_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001815 return -EFAULT;
Christoph Hellwigd296d302009-01-19 02:02:57 +01001816 return xfs_readlink_by_handle(filp, &hreq);
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001817 }
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001818 case XFS_IOC_ATTRLIST_BY_HANDLE:
Christoph Hellwigd296d302009-01-19 02:02:57 +01001819 return xfs_attrlist_by_handle(filp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001820
1821 case XFS_IOC_ATTRMULTI_BY_HANDLE:
Christoph Hellwigd296d302009-01-19 02:02:57 +01001822 return xfs_attrmulti_by_handle(filp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001823
1824 case XFS_IOC_SWAPEXT: {
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001825 struct xfs_swapext sxp;
1826
1827 if (copy_from_user(&sxp, arg, sizeof(xfs_swapext_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001828 return -EFAULT;
Jan Karad9457dc2012-06-12 16:20:39 +02001829 error = mnt_want_write_file(filp);
1830 if (error)
1831 return error;
Dave Chinnera133d952013-08-12 20:49:48 +10001832 error = xfs_ioc_swapext(&sxp);
Jan Karad9457dc2012-06-12 16:20:39 +02001833 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10001834 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001835 }
1836
1837 case XFS_IOC_FSCOUNTS: {
1838 xfs_fsop_counts_t out;
1839
1840 error = xfs_fs_counts(mp, &out);
1841 if (error)
Dave Chinner24513372014-06-25 14:58:08 +10001842 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001843
1844 if (copy_to_user(arg, &out, sizeof(out)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001845 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001846 return 0;
1847 }
1848
1849 case XFS_IOC_SET_RESBLKS: {
1850 xfs_fsop_resblks_t inout;
1851 __uint64_t in;
1852
1853 if (!capable(CAP_SYS_ADMIN))
1854 return -EPERM;
1855
Eric Sandeend5db0f92010-02-05 22:59:53 +00001856 if (mp->m_flags & XFS_MOUNT_RDONLY)
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001857 return -EROFS;
Eric Sandeend5db0f92010-02-05 22:59:53 +00001858
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001859 if (copy_from_user(&inout, arg, sizeof(inout)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001860 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001861
Jan Karad9457dc2012-06-12 16:20:39 +02001862 error = mnt_want_write_file(filp);
1863 if (error)
1864 return error;
1865
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001866 /* input parameter is passed in resblks field of structure */
1867 in = inout.resblks;
1868 error = xfs_reserve_blocks(mp, &in, &inout);
Jan Karad9457dc2012-06-12 16:20:39 +02001869 mnt_drop_write_file(filp);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001870 if (error)
Dave Chinner24513372014-06-25 14:58:08 +10001871 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001872
1873 if (copy_to_user(arg, &inout, sizeof(inout)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001874 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001875 return 0;
1876 }
1877
1878 case XFS_IOC_GET_RESBLKS: {
1879 xfs_fsop_resblks_t out;
1880
1881 if (!capable(CAP_SYS_ADMIN))
1882 return -EPERM;
1883
1884 error = xfs_reserve_blocks(mp, NULL, &out);
1885 if (error)
Dave Chinner24513372014-06-25 14:58:08 +10001886 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001887
1888 if (copy_to_user(arg, &out, sizeof(out)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001889 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001890
1891 return 0;
1892 }
1893
1894 case XFS_IOC_FSGROWFSDATA: {
1895 xfs_growfs_data_t in;
1896
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001897 if (copy_from_user(&in, arg, sizeof(in)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001898 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001899
Jan Karad9457dc2012-06-12 16:20:39 +02001900 error = mnt_want_write_file(filp);
1901 if (error)
1902 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001903 error = xfs_growfs_data(mp, &in);
Jan Karad9457dc2012-06-12 16:20:39 +02001904 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10001905 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001906 }
1907
1908 case XFS_IOC_FSGROWFSLOG: {
1909 xfs_growfs_log_t in;
1910
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001911 if (copy_from_user(&in, arg, sizeof(in)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001912 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001913
Jan Karad9457dc2012-06-12 16:20:39 +02001914 error = mnt_want_write_file(filp);
1915 if (error)
1916 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001917 error = xfs_growfs_log(mp, &in);
Jan Karad9457dc2012-06-12 16:20:39 +02001918 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10001919 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001920 }
1921
1922 case XFS_IOC_FSGROWFSRT: {
1923 xfs_growfs_rt_t in;
1924
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001925 if (copy_from_user(&in, arg, sizeof(in)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001926 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001927
Jan Karad9457dc2012-06-12 16:20:39 +02001928 error = mnt_want_write_file(filp);
1929 if (error)
1930 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001931 error = xfs_growfs_rt(mp, &in);
Jan Karad9457dc2012-06-12 16:20:39 +02001932 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10001933 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001934 }
1935
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001936 case XFS_IOC_GOINGDOWN: {
1937 __uint32_t in;
1938
1939 if (!capable(CAP_SYS_ADMIN))
1940 return -EPERM;
1941
1942 if (get_user(in, (__uint32_t __user *)arg))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001943 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001944
Dave Chinner24513372014-06-25 14:58:08 +10001945 return xfs_fs_goingdown(mp, in);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001946 }
1947
1948 case XFS_IOC_ERROR_INJECTION: {
1949 xfs_error_injection_t in;
1950
1951 if (!capable(CAP_SYS_ADMIN))
1952 return -EPERM;
1953
1954 if (copy_from_user(&in, arg, sizeof(in)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001955 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001956
Dave Chinner24513372014-06-25 14:58:08 +10001957 return xfs_errortag_add(in.errtag, mp);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001958 }
1959
1960 case XFS_IOC_ERROR_CLEARALL:
1961 if (!capable(CAP_SYS_ADMIN))
1962 return -EPERM;
1963
Dave Chinner24513372014-06-25 14:58:08 +10001964 return xfs_errortag_clearall(mp, 1);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001965
Brian Foster8ca149d2012-11-07 12:21:12 -05001966 case XFS_IOC_FREE_EOFBLOCKS: {
Dwight Engenb9fe5052013-08-15 14:08:02 -04001967 struct xfs_fs_eofblocks eofb;
1968 struct xfs_eofblocks keofb;
Brian Foster8ca149d2012-11-07 12:21:12 -05001969
Dwight Engen8c567a72013-08-15 14:08:03 -04001970 if (!capable(CAP_SYS_ADMIN))
1971 return -EPERM;
1972
1973 if (mp->m_flags & XFS_MOUNT_RDONLY)
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001974 return -EROFS;
Dwight Engen8c567a72013-08-15 14:08:03 -04001975
Brian Foster8ca149d2012-11-07 12:21:12 -05001976 if (copy_from_user(&eofb, arg, sizeof(eofb)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001977 return -EFAULT;
Brian Foster8ca149d2012-11-07 12:21:12 -05001978
Dwight Engenb9fe5052013-08-15 14:08:02 -04001979 error = xfs_fs_eofblocks_from_user(&eofb, &keofb);
1980 if (error)
Dave Chinner24513372014-06-25 14:58:08 +10001981 return error;
Brian Foster8ca149d2012-11-07 12:21:12 -05001982
Dave Chinner24513372014-06-25 14:58:08 +10001983 return xfs_icache_free_eofblocks(mp, &keofb);
Brian Foster8ca149d2012-11-07 12:21:12 -05001984 }
1985
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001986 default:
1987 return -ENOTTY;
1988 }
1989}