blob: d58bcd28f5f873480738cf878fb372d869c24539 [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 Chinner70a9883c2013-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"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080043#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <linux/dcache.h>
45#include <linux/mount.h>
46#include <linux/namei.h>
47#include <linux/pagemap.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090048#include <linux/slab.h>
Christoph Hellwigd296d302009-01-19 02:02:57 +010049#include <linux/exportfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51/*
52 * xfs_find_handle maps from userspace xfs_fsop_handlereq structure to
53 * a file or fs handle.
54 *
55 * XFS_IOC_PATH_TO_FSHANDLE
56 * returns fs handle for a mount point or path within that mount point
57 * XFS_IOC_FD_TO_HANDLE
58 * returns full handle for a FD opened in user space
59 * XFS_IOC_PATH_TO_HANDLE
60 * returns full handle for a path
61 */
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -060062int
Linus Torvalds1da177e2005-04-16 15:20:36 -070063xfs_find_handle(
64 unsigned int cmd,
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -060065 xfs_fsop_handlereq_t *hreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -070066{
67 int hsize;
68 xfs_handle_t handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 struct inode *inode;
Dave Chinnera30b0362013-09-02 20:49:36 +100070 struct fd f = {NULL};
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010071 struct path path;
Al Viro2903ff02012-08-28 12:52:22 -040072 int error;
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010073 struct xfs_inode *ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010075 if (cmd == XFS_IOC_FD_TO_HANDLE) {
Al Viro2903ff02012-08-28 12:52:22 -040076 f = fdget(hreq->fd);
77 if (!f.file)
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010078 return -EBADF;
Al Viro496ad9a2013-01-23 17:07:38 -050079 inode = file_inode(f.file);
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010080 } else {
81 error = user_lpath((const char __user *)hreq->path, &path);
82 if (error)
83 return error;
84 inode = path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 }
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010086 ip = XFS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010088 /*
89 * We can only generate handles for inodes residing on a XFS filesystem,
90 * and only for regular files, directories or symbolic links.
91 */
92 error = -EINVAL;
93 if (inode->i_sb->s_magic != XFS_SB_MAGIC)
94 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010096 error = -EBADF;
97 if (!S_ISREG(inode->i_mode) &&
98 !S_ISDIR(inode->i_mode) &&
99 !S_ISLNK(inode->i_mode))
100 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100103 memcpy(&handle.ha_fsid, ip->i_mount->m_fixedfsid, sizeof(xfs_fsid_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100105 if (cmd == XFS_IOC_PATH_TO_FSHANDLE) {
106 /*
107 * This handle only contains an fsid, zero the rest.
108 */
109 memset(&handle.ha_fid, 0, sizeof(handle.ha_fid));
110 hsize = sizeof(xfs_fsid_t);
111 } else {
Christoph Hellwigc6143912007-09-14 15:22:37 +1000112 handle.ha_fid.fid_len = sizeof(xfs_fid_t) -
113 sizeof(handle.ha_fid.fid_len);
114 handle.ha_fid.fid_pad = 0;
115 handle.ha_fid.fid_gen = ip->i_d.di_gen;
116 handle.ha_fid.fid_ino = ip->i_ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
118 hsize = XFS_HSIZE(handle);
119 }
120
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100121 error = -EFAULT;
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600122 if (copy_to_user(hreq->ohandle, &handle, hsize) ||
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100123 copy_to_user(hreq->ohandlen, &hsize, sizeof(__s32)))
124 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100126 error = 0;
127
128 out_put:
129 if (cmd == XFS_IOC_FD_TO_HANDLE)
Al Viro2903ff02012-08-28 12:52:22 -0400130 fdput(f);
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100131 else
132 path_put(&path);
133 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134}
135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136/*
Christoph Hellwigd296d302009-01-19 02:02:57 +0100137 * No need to do permission checks on the various pathname components
138 * as the handle operations are privileged.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 */
140STATIC int
Christoph Hellwigd296d302009-01-19 02:02:57 +0100141xfs_handle_acceptable(
142 void *context,
143 struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144{
Christoph Hellwigd296d302009-01-19 02:02:57 +0100145 return 1;
146}
147
148/*
149 * Convert userspace handle data into a dentry.
150 */
151struct dentry *
152xfs_handle_to_dentry(
153 struct file *parfilp,
154 void __user *uhandle,
155 u32 hlen)
156{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 xfs_handle_t handle;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100158 struct xfs_fid64 fid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
160 /*
161 * Only allow handle opens under a directory.
162 */
Al Viro496ad9a2013-01-23 17:07:38 -0500163 if (!S_ISDIR(file_inode(parfilp)->i_mode))
Christoph Hellwigd296d302009-01-19 02:02:57 +0100164 return ERR_PTR(-ENOTDIR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Christoph Hellwigd296d302009-01-19 02:02:57 +0100166 if (hlen != sizeof(xfs_handle_t))
167 return ERR_PTR(-EINVAL);
168 if (copy_from_user(&handle, uhandle, hlen))
169 return ERR_PTR(-EFAULT);
170 if (handle.ha_fid.fid_len !=
171 sizeof(handle.ha_fid) - sizeof(handle.ha_fid.fid_len))
172 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Christoph Hellwigd296d302009-01-19 02:02:57 +0100174 memset(&fid, 0, sizeof(struct fid));
175 fid.ino = handle.ha_fid.fid_ino;
176 fid.gen = handle.ha_fid.fid_gen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Christoph Hellwigd296d302009-01-19 02:02:57 +0100178 return exportfs_decode_fh(parfilp->f_path.mnt, (struct fid *)&fid, 3,
179 FILEID_INO32_GEN | XFS_FILEID_TYPE_64FLAG,
180 xfs_handle_acceptable, NULL);
181}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Christoph Hellwigd296d302009-01-19 02:02:57 +0100183STATIC struct dentry *
184xfs_handlereq_to_dentry(
185 struct file *parfilp,
186 xfs_fsop_handlereq_t *hreq)
187{
188 return xfs_handle_to_dentry(parfilp, hreq->ihandle, hreq->ihandlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189}
190
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600191int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192xfs_open_by_handle(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 struct file *parfilp,
Christoph Hellwigd296d302009-01-19 02:02:57 +0100194 xfs_fsop_handlereq_t *hreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195{
David Howells745ca242008-11-14 10:39:22 +1100196 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 int error;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100198 int fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 int permflag;
200 struct file *filp;
201 struct inode *inode;
202 struct dentry *dentry;
Dave Chinner1a1d7722012-03-22 05:15:06 +0000203 fmode_t fmode;
Al Viro765927b2012-06-26 21:58:53 +0400204 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
206 if (!capable(CAP_SYS_ADMIN))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000207 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Christoph Hellwigd296d302009-01-19 02:02:57 +0100209 dentry = xfs_handlereq_to_dentry(parfilp, hreq);
210 if (IS_ERR(dentry))
211 return PTR_ERR(dentry);
212 inode = dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
214 /* Restrict xfs_open_by_handle to directories & regular files. */
215 if (!(S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode))) {
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000216 error = -EPERM;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100217 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 }
219
220#if BITS_PER_LONG != 32
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600221 hreq->oflags |= O_LARGEFILE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222#endif
Christoph Hellwigd296d302009-01-19 02:02:57 +0100223
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600224 permflag = hreq->oflags;
Dave Chinner1a1d7722012-03-22 05:15:06 +0000225 fmode = OPEN_FMODE(permflag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 if ((!(permflag & O_APPEND) || (permflag & O_TRUNC)) &&
Dave Chinner1a1d7722012-03-22 05:15:06 +0000227 (fmode & FMODE_WRITE) && IS_APPEND(inode)) {
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000228 error = -EPERM;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100229 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 }
231
Dave Chinner1a1d7722012-03-22 05:15:06 +0000232 if ((fmode & FMODE_WRITE) && IS_IMMUTABLE(inode)) {
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000233 error = -EACCES;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100234 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 }
236
237 /* Can't write directories. */
Dave Chinner1a1d7722012-03-22 05:15:06 +0000238 if (S_ISDIR(inode->i_mode) && (fmode & FMODE_WRITE)) {
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000239 error = -EISDIR;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100240 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 }
242
Yann Droneaud862a6292013-07-02 18:39:34 +0200243 fd = get_unused_fd_flags(0);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100244 if (fd < 0) {
245 error = fd;
246 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 }
248
Al Viro765927b2012-06-26 21:58:53 +0400249 path.mnt = parfilp->f_path.mnt;
250 path.dentry = dentry;
251 filp = dentry_open(&path, hreq->oflags, cred);
252 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 if (IS_ERR(filp)) {
Christoph Hellwigd296d302009-01-19 02:02:57 +0100254 put_unused_fd(fd);
255 return PTR_ERR(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 }
Christoph Hellwig4d4be482008-12-09 04:47:33 -0500257
Al Viro03209372011-07-25 20:54:24 -0400258 if (S_ISREG(inode->i_mode)) {
Vlad Apostolov2e2e7bb2006-11-11 18:04:47 +1100259 filp->f_flags |= O_NOATIME;
Christoph Hellwig4d4be482008-12-09 04:47:33 -0500260 filp->f_mode |= FMODE_NOCMTIME;
Vlad Apostolov2e2e7bb2006-11-11 18:04:47 +1100261 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
Christoph Hellwigd296d302009-01-19 02:02:57 +0100263 fd_install(fd, filp);
264 return fd;
265
266 out_dput:
267 dput(dentry);
268 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269}
270
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600271int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272xfs_readlink_by_handle(
Christoph Hellwigd296d302009-01-19 02:02:57 +0100273 struct file *parfilp,
274 xfs_fsop_handlereq_t *hreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275{
Christoph Hellwigd296d302009-01-19 02:02:57 +0100276 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 __u32 olen;
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000278 void *link;
279 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
281 if (!capable(CAP_SYS_ADMIN))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000282 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
Christoph Hellwigd296d302009-01-19 02:02:57 +0100284 dentry = xfs_handlereq_to_dentry(parfilp, hreq);
285 if (IS_ERR(dentry))
286 return PTR_ERR(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
288 /* Restrict this handle operation to symlinks only. */
Christoph Hellwigd296d302009-01-19 02:02:57 +0100289 if (!S_ISLNK(dentry->d_inode->i_mode)) {
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000290 error = -EINVAL;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100291 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 }
293
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600294 if (copy_from_user(&olen, hreq->ohandlen, sizeof(__u32))) {
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000295 error = -EFAULT;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100296 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000299 link = kmalloc(MAXPATHLEN+1, GFP_KERNEL);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100300 if (!link) {
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000301 error = -ENOMEM;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100302 goto out_dput;
303 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Dave Chinner24513372014-06-25 14:58:08 +1000305 error = xfs_readlink(XFS_I(dentry->d_inode), link);
Nathan Scott67fcaa72006-06-09 17:00:52 +1000306 if (error)
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000307 goto out_kfree;
Al Viro5d826c82014-03-14 13:42:45 -0400308 error = readlink_copy(hreq->ohandle, olen, link);
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000309 if (error)
310 goto out_kfree;
Nathan Scott67fcaa72006-06-09 17:00:52 +1000311
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000312 out_kfree:
313 kfree(link);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100314 out_dput:
315 dput(dentry);
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000316 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317}
318
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000319int
320xfs_set_dmattrs(
321 xfs_inode_t *ip,
322 u_int evmask,
323 u_int16_t state)
324{
325 xfs_mount_t *mp = ip->i_mount;
326 xfs_trans_t *tp;
327 int error;
328
329 if (!capable(CAP_SYS_ADMIN))
Dave Chinner24513372014-06-25 14:58:08 +1000330 return -EPERM;
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000331
332 if (XFS_FORCED_SHUTDOWN(mp))
Dave Chinner24513372014-06-25 14:58:08 +1000333 return -EIO;
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000334
335 tp = xfs_trans_alloc(mp, XFS_TRANS_SET_DMATTRS);
Jie Liu3d3c8b52013-08-12 20:49:59 +1000336 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_ichange, 0, 0);
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000337 if (error) {
338 xfs_trans_cancel(tp, 0);
339 return error;
340 }
341 xfs_ilock(ip, XFS_ILOCK_EXCL);
342 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
343
344 ip->i_d.di_dmevmask = evmask;
345 ip->i_d.di_dmstate = state;
346
347 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
348 error = xfs_trans_commit(tp, 0);
349
350 return error;
351}
352
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353STATIC int
354xfs_fssetdm_by_handle(
Christoph Hellwigd296d302009-01-19 02:02:57 +0100355 struct file *parfilp,
356 void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357{
358 int error;
359 struct fsdmidata fsd;
360 xfs_fsop_setdm_handlereq_t dmhreq;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100361 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
363 if (!capable(CAP_MKNOD))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000364 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 if (copy_from_user(&dmhreq, arg, sizeof(xfs_fsop_setdm_handlereq_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000366 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Jan Karad9457dc2012-06-12 16:20:39 +0200368 error = mnt_want_write_file(parfilp);
369 if (error)
370 return error;
371
Christoph Hellwigd296d302009-01-19 02:02:57 +0100372 dentry = xfs_handlereq_to_dentry(parfilp, &dmhreq.hreq);
Jan Karad9457dc2012-06-12 16:20:39 +0200373 if (IS_ERR(dentry)) {
374 mnt_drop_write_file(parfilp);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100375 return PTR_ERR(dentry);
Jan Karad9457dc2012-06-12 16:20:39 +0200376 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
Christoph Hellwigd296d302009-01-19 02:02:57 +0100378 if (IS_IMMUTABLE(dentry->d_inode) || IS_APPEND(dentry->d_inode)) {
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000379 error = -EPERM;
Christoph Hellwig6e7f75e2007-10-11 18:09:50 +1000380 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 }
382
383 if (copy_from_user(&fsd, dmhreq.data, sizeof(fsd))) {
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000384 error = -EFAULT;
Christoph Hellwig6e7f75e2007-10-11 18:09:50 +1000385 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 }
387
Dave Chinner24513372014-06-25 14:58:08 +1000388 error = xfs_set_dmattrs(XFS_I(dentry->d_inode), fsd.fsd_dmevmask,
Christoph Hellwig6e7f75e2007-10-11 18:09:50 +1000389 fsd.fsd_dmstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
Christoph Hellwig6e7f75e2007-10-11 18:09:50 +1000391 out:
Jan Karad9457dc2012-06-12 16:20:39 +0200392 mnt_drop_write_file(parfilp);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100393 dput(dentry);
Christoph Hellwig6e7f75e2007-10-11 18:09:50 +1000394 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395}
396
397STATIC int
398xfs_attrlist_by_handle(
Christoph Hellwigd296d302009-01-19 02:02:57 +0100399 struct file *parfilp,
400 void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401{
Christoph Hellwigd296d302009-01-19 02:02:57 +0100402 int error = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 attrlist_cursor_kern_t *cursor;
404 xfs_fsop_attrlist_handlereq_t al_hreq;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100405 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 char *kbuf;
407
408 if (!capable(CAP_SYS_ADMIN))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000409 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 if (copy_from_user(&al_hreq, arg, sizeof(xfs_fsop_attrlist_handlereq_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000411 return -EFAULT;
Dan Carpenter071c5292013-10-31 21:00:10 +0300412 if (al_hreq.buflen < sizeof(struct attrlist) ||
413 al_hreq.buflen > XATTR_LIST_MAX)
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000414 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
Christoph Hellwig90ad58a2008-06-27 13:32:19 +1000416 /*
417 * Reject flags, only allow namespaces.
418 */
419 if (al_hreq.flags & ~(ATTR_ROOT | ATTR_SECURE))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000420 return -EINVAL;
Christoph Hellwig90ad58a2008-06-27 13:32:19 +1000421
Christoph Hellwigd296d302009-01-19 02:02:57 +0100422 dentry = xfs_handlereq_to_dentry(parfilp, &al_hreq.hreq);
423 if (IS_ERR(dentry))
424 return PTR_ERR(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Dave Chinnerfdd3cce2013-09-02 20:53:00 +1000426 kbuf = kmem_zalloc_large(al_hreq.buflen, KM_SLEEP);
427 if (!kbuf)
428 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
430 cursor = (attrlist_cursor_kern_t *)&al_hreq.pos;
Dave Chinner24513372014-06-25 14:58:08 +1000431 error = xfs_attr_list(XFS_I(dentry->d_inode), kbuf, al_hreq.buflen,
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000432 al_hreq.flags, cursor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 if (error)
434 goto out_kfree;
435
436 if (copy_to_user(al_hreq.buffer, kbuf, al_hreq.buflen))
437 error = -EFAULT;
438
Dave Chinnerfdd3cce2013-09-02 20:53:00 +1000439out_kfree:
440 kmem_free(kbuf);
441out_dput:
Christoph Hellwigd296d302009-01-19 02:02:57 +0100442 dput(dentry);
443 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444}
445
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600446int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447xfs_attrmulti_attr_get(
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000448 struct inode *inode,
Dave Chinnera9273ca2010-01-20 10:47:48 +1100449 unsigned char *name,
450 unsigned char __user *ubuf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 __uint32_t *len,
452 __uint32_t flags)
453{
Dave Chinnera9273ca2010-01-20 10:47:48 +1100454 unsigned char *kbuf;
Dave Chinner24513372014-06-25 14:58:08 +1000455 int error = -EFAULT;
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000456
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 if (*len > XATTR_SIZE_MAX)
Dave Chinner24513372014-06-25 14:58:08 +1000458 return -EINVAL;
Dave Chinnerfdd3cce2013-09-02 20:53:00 +1000459 kbuf = kmem_zalloc_large(*len, KM_SLEEP);
460 if (!kbuf)
Dave Chinner24513372014-06-25 14:58:08 +1000461 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000463 error = xfs_attr_get(XFS_I(inode), name, kbuf, (int *)len, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 if (error)
465 goto out_kfree;
466
467 if (copy_to_user(ubuf, kbuf, *len))
Dave Chinner24513372014-06-25 14:58:08 +1000468 error = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
Dave Chinnerfdd3cce2013-09-02 20:53:00 +1000470out_kfree:
471 kmem_free(kbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 return error;
473}
474
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600475int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476xfs_attrmulti_attr_set(
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000477 struct inode *inode,
Dave Chinnera9273ca2010-01-20 10:47:48 +1100478 unsigned char *name,
479 const unsigned char __user *ubuf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 __uint32_t len,
481 __uint32_t flags)
482{
Dave Chinnera9273ca2010-01-20 10:47:48 +1100483 unsigned char *kbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000485 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
Dave Chinner24513372014-06-25 14:58:08 +1000486 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 if (len > XATTR_SIZE_MAX)
Dave Chinner24513372014-06-25 14:58:08 +1000488 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
Li Zefan0e639bd2009-04-08 15:08:04 +0800490 kbuf = memdup_user(ubuf, len);
491 if (IS_ERR(kbuf))
492 return PTR_ERR(kbuf);
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000493
Dave Chinner24513372014-06-25 14:58:08 +1000494 return xfs_attr_set(XFS_I(inode), name, kbuf, len, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495}
496
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600497int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498xfs_attrmulti_attr_remove(
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000499 struct inode *inode,
Dave Chinnera9273ca2010-01-20 10:47:48 +1100500 unsigned char *name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 __uint32_t flags)
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;
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000505 return xfs_attr_remove(XFS_I(inode), name, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506}
507
508STATIC int
509xfs_attrmulti_by_handle(
Dave Hansen42a74f22008-02-15 14:37:46 -0800510 struct file *parfilp,
Christoph Hellwigd296d302009-01-19 02:02:57 +0100511 void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512{
513 int error;
514 xfs_attr_multiop_t *ops;
515 xfs_fsop_attrmulti_handlereq_t am_hreq;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100516 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 unsigned int i, size;
Dave Chinnera9273ca2010-01-20 10:47:48 +1100518 unsigned char *attr_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
520 if (!capable(CAP_SYS_ADMIN))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000521 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 if (copy_from_user(&am_hreq, arg, sizeof(xfs_fsop_attrmulti_handlereq_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000523 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
Zhitong Wangfda168c2010-03-23 09:51:22 +1100525 /* overflow check */
526 if (am_hreq.opcount >= INT_MAX / sizeof(xfs_attr_multiop_t))
527 return -E2BIG;
528
Christoph Hellwigd296d302009-01-19 02:02:57 +0100529 dentry = xfs_handlereq_to_dentry(parfilp, &am_hreq.hreq);
530 if (IS_ERR(dentry))
531 return PTR_ERR(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
Dave Chinner24513372014-06-25 14:58:08 +1000533 error = -E2BIG;
Christoph Hellwige182f572008-06-27 13:32:31 +1000534 size = am_hreq.opcount * sizeof(xfs_attr_multiop_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 if (!size || size > 16 * PAGE_SIZE)
Christoph Hellwigd296d302009-01-19 02:02:57 +0100536 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Li Zefan0e639bd2009-04-08 15:08:04 +0800538 ops = memdup_user(am_hreq.ops, size);
539 if (IS_ERR(ops)) {
Dave Chinner24513372014-06-25 14:58:08 +1000540 error = PTR_ERR(ops);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100541 goto out_dput;
Li Zefan0e639bd2009-04-08 15:08:04 +0800542 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Dave Chinner24513372014-06-25 14:58:08 +1000544 error = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 attr_name = kmalloc(MAXNAMELEN, GFP_KERNEL);
546 if (!attr_name)
547 goto out_kfree_ops;
548
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 error = 0;
550 for (i = 0; i < am_hreq.opcount; i++) {
Dave Chinnera9273ca2010-01-20 10:47:48 +1100551 ops[i].am_error = strncpy_from_user((char *)attr_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 ops[i].am_attrname, MAXNAMELEN);
553 if (ops[i].am_error == 0 || ops[i].am_error == MAXNAMELEN)
Dave Chinner24513372014-06-25 14:58:08 +1000554 error = -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 if (ops[i].am_error < 0)
556 break;
557
558 switch (ops[i].am_opcode) {
559 case ATTR_OP_GET:
Christoph Hellwigd296d302009-01-19 02:02:57 +0100560 ops[i].am_error = xfs_attrmulti_attr_get(
561 dentry->d_inode, attr_name,
562 ops[i].am_attrvalue, &ops[i].am_length,
563 ops[i].am_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 break;
565 case ATTR_OP_SET:
Al Viroa561be72011-11-23 11:57:51 -0500566 ops[i].am_error = mnt_want_write_file(parfilp);
Dave Hansen42a74f22008-02-15 14:37:46 -0800567 if (ops[i].am_error)
568 break;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100569 ops[i].am_error = xfs_attrmulti_attr_set(
570 dentry->d_inode, attr_name,
571 ops[i].am_attrvalue, ops[i].am_length,
572 ops[i].am_flags);
Al Viro2a79f172011-12-09 08:06:57 -0500573 mnt_drop_write_file(parfilp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 break;
575 case ATTR_OP_REMOVE:
Al Viroa561be72011-11-23 11:57:51 -0500576 ops[i].am_error = mnt_want_write_file(parfilp);
Dave Hansen42a74f22008-02-15 14:37:46 -0800577 if (ops[i].am_error)
578 break;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100579 ops[i].am_error = xfs_attrmulti_attr_remove(
580 dentry->d_inode, attr_name,
581 ops[i].am_flags);
Al Viro2a79f172011-12-09 08:06:57 -0500582 mnt_drop_write_file(parfilp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 break;
584 default:
Dave Chinner24513372014-06-25 14:58:08 +1000585 ops[i].am_error = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 }
587 }
588
589 if (copy_to_user(am_hreq.ops, ops, size))
Dave Chinner24513372014-06-25 14:58:08 +1000590 error = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
592 kfree(attr_name);
593 out_kfree_ops:
594 kfree(ops);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100595 out_dput:
596 dput(dentry);
Dave Chinner24513372014-06-25 14:58:08 +1000597 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598}
599
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600600int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601xfs_ioc_space(
Christoph Hellwig993386c2007-08-28 16:12:30 +1000602 struct xfs_inode *ip,
Alexey Dobriyanf37ea142006-09-28 10:52:04 +1000603 struct inode *inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 struct file *filp,
605 int ioflags,
606 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 Hellwig865e9442013-10-12 00:55:08 -0700609 struct iattr iattr;
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100610 enum xfs_prealloc_flags flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 int error;
612
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600613 /*
614 * Only allow the sys admin to reserve space unless
615 * unwritten extents are enabled.
616 */
617 if (!xfs_sb_version_hasextflgbit(&ip->i_mount->m_sb) &&
618 !capable(CAP_SYS_ADMIN))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000619 return -EPERM;
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600620
Alexey Dobriyanf37ea142006-09-28 10:52:04 +1000621 if (inode->i_flags & (S_IMMUTABLE|S_APPEND))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000622 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Eric Sandeenad4a8ac2005-09-02 16:41:16 +1000624 if (!(filp->f_mode & FMODE_WRITE))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000625 return -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
Alexey Dobriyanf37ea142006-09-28 10:52:04 +1000627 if (!S_ISREG(inode->i_mode))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000628 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100630 if (filp->f_flags & O_DSYNC)
631 flags |= XFS_PREALLOC_SYNC;
632 if (ioflags & XFS_IO_INVIS)
633 flags |= XFS_PREALLOC_INVISIBLE;
634
Jan Karad9457dc2012-06-12 16:20:39 +0200635 error = mnt_want_write_file(filp);
636 if (error)
637 return error;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700638
Christoph Hellwig5f8aca82013-10-12 00:55:06 -0700639 xfs_ilock(ip, XFS_IOLOCK_EXCL);
Christoph Hellwig865e9442013-10-12 00:55:08 -0700640
641 switch (bf->l_whence) {
642 case 0: /*SEEK_SET*/
643 break;
644 case 1: /*SEEK_CUR*/
645 bf->l_start += filp->f_pos;
646 break;
647 case 2: /*SEEK_END*/
648 bf->l_start += XFS_ISIZE(ip);
649 break;
650 default:
Dave Chinner24513372014-06-25 14:58:08 +1000651 error = -EINVAL;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700652 goto out_unlock;
653 }
654
655 /*
656 * length of <= 0 for resv/unresv/zero is invalid. length for
657 * alloc/free is ignored completely and we have no idea what userspace
658 * might have set it to, so set it to zero to allow range
659 * checks to pass.
660 */
661 switch (cmd) {
662 case XFS_IOC_ZERO_RANGE:
663 case XFS_IOC_RESVSP:
664 case XFS_IOC_RESVSP64:
665 case XFS_IOC_UNRESVSP:
666 case XFS_IOC_UNRESVSP64:
667 if (bf->l_len <= 0) {
Dave Chinner24513372014-06-25 14:58:08 +1000668 error = -EINVAL;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700669 goto out_unlock;
670 }
671 break;
672 default:
673 bf->l_len = 0;
674 break;
675 }
676
677 if (bf->l_start < 0 ||
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100678 bf->l_start > inode->i_sb->s_maxbytes ||
Christoph Hellwig865e9442013-10-12 00:55:08 -0700679 bf->l_start + bf->l_len < 0 ||
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100680 bf->l_start + bf->l_len >= inode->i_sb->s_maxbytes) {
Dave Chinner24513372014-06-25 14:58:08 +1000681 error = -EINVAL;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700682 goto out_unlock;
683 }
684
685 switch (cmd) {
686 case XFS_IOC_ZERO_RANGE:
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100687 flags |= XFS_PREALLOC_SET;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700688 error = xfs_zero_file_space(ip, bf->l_start, bf->l_len);
Christoph Hellwig865e9442013-10-12 00:55:08 -0700689 break;
690 case XFS_IOC_RESVSP:
691 case XFS_IOC_RESVSP64:
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100692 flags |= XFS_PREALLOC_SET;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700693 error = xfs_alloc_file_space(ip, bf->l_start, bf->l_len,
694 XFS_BMAPI_PREALLOC);
Christoph Hellwig865e9442013-10-12 00:55:08 -0700695 break;
696 case XFS_IOC_UNRESVSP:
697 case XFS_IOC_UNRESVSP64:
698 error = xfs_free_file_space(ip, bf->l_start, bf->l_len);
699 break;
700 case XFS_IOC_ALLOCSP:
701 case XFS_IOC_ALLOCSP64:
702 case XFS_IOC_FREESP:
703 case XFS_IOC_FREESP64:
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100704 flags |= XFS_PREALLOC_CLEAR;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700705 if (bf->l_start > XFS_ISIZE(ip)) {
706 error = xfs_alloc_file_space(ip, XFS_ISIZE(ip),
707 bf->l_start - XFS_ISIZE(ip), 0);
708 if (error)
709 goto out_unlock;
710 }
711
712 iattr.ia_valid = ATTR_SIZE;
713 iattr.ia_size = bf->l_start;
714
715 error = xfs_setattr_size(ip, &iattr);
Christoph Hellwig865e9442013-10-12 00:55:08 -0700716 break;
717 default:
718 ASSERT(0);
Dave Chinner24513372014-06-25 14:58:08 +1000719 error = -EINVAL;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700720 }
721
722 if (error)
723 goto out_unlock;
724
Christoph Hellwig8add71c2015-02-02 09:53:56 +1100725 error = xfs_update_prealloc_flags(ip, flags);
Christoph Hellwig865e9442013-10-12 00:55:08 -0700726
727out_unlock:
Christoph Hellwig5f8aca82013-10-12 00:55:06 -0700728 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
Jan Karad9457dc2012-06-12 16:20:39 +0200729 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +1000730 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731}
732
733STATIC int
734xfs_ioc_bulkstat(
735 xfs_mount_t *mp,
736 unsigned int cmd,
737 void __user *arg)
738{
739 xfs_fsop_bulkreq_t bulkreq;
740 int count; /* # of records returned */
741 xfs_ino_t inlast; /* last inode number */
742 int done;
743 int error;
744
745 /* done = 1 if there are more stats to get and if bulkstat */
746 /* should be called again (unused here, but used in dmapi) */
747
748 if (!capable(CAP_SYS_ADMIN))
749 return -EPERM;
750
751 if (XFS_FORCED_SHUTDOWN(mp))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000752 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
754 if (copy_from_user(&bulkreq, arg, sizeof(xfs_fsop_bulkreq_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000755 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
757 if (copy_from_user(&inlast, bulkreq.lastip, sizeof(__s64)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000758 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
760 if ((count = bulkreq.icount) <= 0)
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000761 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100763 if (bulkreq.ubuffer == NULL)
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000764 return -EINVAL;
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100765
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 if (cmd == XFS_IOC_FSINUMBERS)
767 error = xfs_inumbers(mp, &inlast, &count,
Michal Marekfaa63e92007-07-11 11:10:19 +1000768 bulkreq.ubuffer, xfs_inumbers_fmt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 else if (cmd == XFS_IOC_FSBULKSTAT_SINGLE)
Christoph Hellwigd716f8e2014-07-24 12:07:15 +1000770 error = xfs_bulkstat_one(mp, inlast, bulkreq.ubuffer,
771 sizeof(xfs_bstat_t), NULL, &done);
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100772 else /* XFS_IOC_FSBULKSTAT */
Christoph Hellwig7dce11d2010-06-23 18:11:11 +1000773 error = xfs_bulkstat(mp, &inlast, &count, xfs_bulkstat_one,
774 sizeof(xfs_bstat_t), bulkreq.ubuffer,
775 &done);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
777 if (error)
Dave Chinner24513372014-06-25 14:58:08 +1000778 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
780 if (bulkreq.ocount != NULL) {
781 if (copy_to_user(bulkreq.lastip, &inlast,
782 sizeof(xfs_ino_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000783 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
785 if (copy_to_user(bulkreq.ocount, &count, sizeof(count)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000786 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 }
788
789 return 0;
790}
791
792STATIC int
793xfs_ioc_fsgeometry_v1(
794 xfs_mount_t *mp,
795 void __user *arg)
796{
Alex Eldereeb20362011-03-01 17:50:00 +0000797 xfs_fsop_geom_t fsgeo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 int error;
799
Alex Eldereeb20362011-03-01 17:50:00 +0000800 error = xfs_fs_geometry(mp, &fsgeo, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 if (error)
Dave Chinner24513372014-06-25 14:58:08 +1000802 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
Alex Eldereeb20362011-03-01 17:50:00 +0000804 /*
805 * Caller should have passed an argument of type
806 * xfs_fsop_geom_v1_t. This is a proper subset of the
807 * xfs_fsop_geom_t that xfs_fs_geometry() fills in.
808 */
809 if (copy_to_user(arg, &fsgeo, sizeof(xfs_fsop_geom_v1_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000810 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 return 0;
812}
813
814STATIC int
815xfs_ioc_fsgeometry(
816 xfs_mount_t *mp,
817 void __user *arg)
818{
819 xfs_fsop_geom_t fsgeo;
820 int error;
821
822 error = xfs_fs_geometry(mp, &fsgeo, 4);
823 if (error)
Dave Chinner24513372014-06-25 14:58:08 +1000824 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
826 if (copy_to_user(arg, &fsgeo, sizeof(fsgeo)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000827 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 return 0;
829}
830
831/*
832 * Linux extended inode flags interface.
833 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
835STATIC unsigned int
836xfs_merge_ioc_xflags(
837 unsigned int flags,
838 unsigned int start)
839{
840 unsigned int xflags = start;
841
Eric Sandeen39058a02007-02-10 18:37:10 +1100842 if (flags & FS_IMMUTABLE_FL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 xflags |= XFS_XFLAG_IMMUTABLE;
844 else
845 xflags &= ~XFS_XFLAG_IMMUTABLE;
Eric Sandeen39058a02007-02-10 18:37:10 +1100846 if (flags & FS_APPEND_FL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 xflags |= XFS_XFLAG_APPEND;
848 else
849 xflags &= ~XFS_XFLAG_APPEND;
Eric Sandeen39058a02007-02-10 18:37:10 +1100850 if (flags & FS_SYNC_FL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 xflags |= XFS_XFLAG_SYNC;
852 else
853 xflags &= ~XFS_XFLAG_SYNC;
Eric Sandeen39058a02007-02-10 18:37:10 +1100854 if (flags & FS_NOATIME_FL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 xflags |= XFS_XFLAG_NOATIME;
856 else
857 xflags &= ~XFS_XFLAG_NOATIME;
Eric Sandeen39058a02007-02-10 18:37:10 +1100858 if (flags & FS_NODUMP_FL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 xflags |= XFS_XFLAG_NODUMP;
860 else
861 xflags &= ~XFS_XFLAG_NODUMP;
862
863 return xflags;
864}
865
866STATIC unsigned int
867xfs_di2lxflags(
868 __uint16_t di_flags)
869{
870 unsigned int flags = 0;
871
872 if (di_flags & XFS_DIFLAG_IMMUTABLE)
Eric Sandeen39058a02007-02-10 18:37:10 +1100873 flags |= FS_IMMUTABLE_FL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 if (di_flags & XFS_DIFLAG_APPEND)
Eric Sandeen39058a02007-02-10 18:37:10 +1100875 flags |= FS_APPEND_FL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 if (di_flags & XFS_DIFLAG_SYNC)
Eric Sandeen39058a02007-02-10 18:37:10 +1100877 flags |= FS_SYNC_FL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 if (di_flags & XFS_DIFLAG_NOATIME)
Eric Sandeen39058a02007-02-10 18:37:10 +1100879 flags |= FS_NOATIME_FL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 if (di_flags & XFS_DIFLAG_NODUMP)
Eric Sandeen39058a02007-02-10 18:37:10 +1100881 flags |= FS_NODUMP_FL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 return flags;
883}
884
885STATIC int
Christoph Hellwigc83bfab2007-10-11 17:47:00 +1000886xfs_ioc_fsgetxattr(
887 xfs_inode_t *ip,
888 int attr,
889 void __user *arg)
890{
891 struct fsxattr fa;
892
Dan Rosenberga122eb22010-09-06 18:24:57 -0400893 memset(&fa, 0, sizeof(struct fsxattr));
894
Christoph Hellwigc83bfab2007-10-11 17:47:00 +1000895 xfs_ilock(ip, XFS_ILOCK_SHARED);
896 fa.fsx_xflags = xfs_ip2xflags(ip);
897 fa.fsx_extsize = ip->i_d.di_extsize << ip->i_mount->m_sb.sb_blocklog;
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000898 fa.fsx_projid = xfs_get_projid(ip);
Christoph Hellwigc83bfab2007-10-11 17:47:00 +1000899
900 if (attr) {
901 if (ip->i_afp) {
902 if (ip->i_afp->if_flags & XFS_IFEXTENTS)
903 fa.fsx_nextents = ip->i_afp->if_bytes /
904 sizeof(xfs_bmbt_rec_t);
905 else
906 fa.fsx_nextents = ip->i_d.di_anextents;
907 } else
908 fa.fsx_nextents = 0;
909 } else {
910 if (ip->i_df.if_flags & XFS_IFEXTENTS)
911 fa.fsx_nextents = ip->i_df.if_bytes /
912 sizeof(xfs_bmbt_rec_t);
913 else
914 fa.fsx_nextents = ip->i_d.di_nextents;
915 }
916 xfs_iunlock(ip, XFS_ILOCK_SHARED);
917
918 if (copy_to_user(arg, &fa, sizeof(fa)))
919 return -EFAULT;
920 return 0;
921}
922
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000923STATIC void
924xfs_set_diflags(
925 struct xfs_inode *ip,
926 unsigned int xflags)
927{
928 unsigned int di_flags;
929
930 /* can't set PREALLOC this way, just preserve it */
931 di_flags = (ip->i_d.di_flags & XFS_DIFLAG_PREALLOC);
932 if (xflags & XFS_XFLAG_IMMUTABLE)
933 di_flags |= XFS_DIFLAG_IMMUTABLE;
934 if (xflags & XFS_XFLAG_APPEND)
935 di_flags |= XFS_DIFLAG_APPEND;
936 if (xflags & XFS_XFLAG_SYNC)
937 di_flags |= XFS_DIFLAG_SYNC;
938 if (xflags & XFS_XFLAG_NOATIME)
939 di_flags |= XFS_DIFLAG_NOATIME;
940 if (xflags & XFS_XFLAG_NODUMP)
941 di_flags |= XFS_DIFLAG_NODUMP;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000942 if (xflags & XFS_XFLAG_NODEFRAG)
943 di_flags |= XFS_DIFLAG_NODEFRAG;
944 if (xflags & XFS_XFLAG_FILESTREAM)
945 di_flags |= XFS_DIFLAG_FILESTREAM;
Al Viroabbede12011-07-26 02:31:30 -0400946 if (S_ISDIR(ip->i_d.di_mode)) {
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000947 if (xflags & XFS_XFLAG_RTINHERIT)
948 di_flags |= XFS_DIFLAG_RTINHERIT;
949 if (xflags & XFS_XFLAG_NOSYMLINKS)
950 di_flags |= XFS_DIFLAG_NOSYMLINKS;
951 if (xflags & XFS_XFLAG_EXTSZINHERIT)
952 di_flags |= XFS_DIFLAG_EXTSZINHERIT;
Dave Chinner9336e3a2014-10-02 09:18:40 +1000953 if (xflags & XFS_XFLAG_PROJINHERIT)
954 di_flags |= XFS_DIFLAG_PROJINHERIT;
Al Viroabbede12011-07-26 02:31:30 -0400955 } else if (S_ISREG(ip->i_d.di_mode)) {
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000956 if (xflags & XFS_XFLAG_REALTIME)
957 di_flags |= XFS_DIFLAG_REALTIME;
958 if (xflags & XFS_XFLAG_EXTSIZE)
959 di_flags |= XFS_DIFLAG_EXTSIZE;
960 }
961
962 ip->i_d.di_flags = di_flags;
963}
964
Christoph Hellwigf13fae22008-07-21 16:16:15 +1000965STATIC void
966xfs_diflags_to_linux(
967 struct xfs_inode *ip)
968{
David Chinnere4f75292008-08-13 16:00:45 +1000969 struct inode *inode = VFS_I(ip);
Christoph Hellwigf13fae22008-07-21 16:16:15 +1000970 unsigned int xflags = xfs_ip2xflags(ip);
971
972 if (xflags & XFS_XFLAG_IMMUTABLE)
973 inode->i_flags |= S_IMMUTABLE;
974 else
975 inode->i_flags &= ~S_IMMUTABLE;
976 if (xflags & XFS_XFLAG_APPEND)
977 inode->i_flags |= S_APPEND;
978 else
979 inode->i_flags &= ~S_APPEND;
980 if (xflags & XFS_XFLAG_SYNC)
981 inode->i_flags |= S_SYNC;
982 else
983 inode->i_flags &= ~S_SYNC;
984 if (xflags & XFS_XFLAG_NOATIME)
985 inode->i_flags |= S_NOATIME;
986 else
987 inode->i_flags &= ~S_NOATIME;
988}
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000989
990#define FSX_PROJID 1
991#define FSX_EXTSIZE 2
992#define FSX_XFLAGS 4
993#define FSX_NONBLOCK 8
994
995STATIC int
996xfs_ioctl_setattr(
997 xfs_inode_t *ip,
998 struct fsxattr *fa,
999 int mask)
1000{
1001 struct xfs_mount *mp = ip->i_mount;
1002 struct xfs_trans *tp;
1003 unsigned int lock_flags = 0;
Christoph Hellwig7d095252009-06-08 15:33:32 +02001004 struct xfs_dquot *udqp = NULL;
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001005 struct xfs_dquot *pdqp = NULL;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001006 struct xfs_dquot *olddquot = NULL;
1007 int code;
1008
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001009 trace_xfs_ioctl_setattr(ip);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001010
1011 if (mp->m_flags & XFS_MOUNT_RDONLY)
Dave Chinner24513372014-06-25 14:58:08 +10001012 return -EROFS;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001013 if (XFS_FORCED_SHUTDOWN(mp))
Dave Chinner24513372014-06-25 14:58:08 +10001014 return -EIO;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001015
1016 /*
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001017 * Disallow 32bit project ids when projid32bit feature is not enabled.
Arkadiusz Mi?kiewicz23963e52010-08-26 10:19:43 +00001018 */
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001019 if ((mask & FSX_PROJID) && (fa->fsx_projid > (__uint16_t)-1) &&
1020 !xfs_sb_version_hasprojid32bit(&ip->i_mount->m_sb))
Dave Chinner24513372014-06-25 14:58:08 +10001021 return -EINVAL;
Arkadiusz Mi?kiewicz23963e52010-08-26 10:19:43 +00001022
1023 /*
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001024 * If disk quotas is on, we make sure that the dquots do exist on disk,
1025 * before we start any other transactions. Trying to do this later
1026 * is messy. We don't care to take a readlock to look at the ids
1027 * in inode here, because we can't hold it across the trans_reserve.
1028 * If the IDs do change before we take the ilock, we're covered
1029 * because the i_*dquot fields will get updated anyway.
1030 */
1031 if (XFS_IS_QUOTA_ON(mp) && (mask & FSX_PROJID)) {
Christoph Hellwig7d095252009-06-08 15:33:32 +02001032 code = xfs_qm_vop_dqalloc(ip, ip->i_d.di_uid,
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001033 ip->i_d.di_gid, fa->fsx_projid,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001034 XFS_QMOPT_PQUOTA, &udqp, NULL, &pdqp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001035 if (code)
1036 return code;
1037 }
1038
1039 /*
1040 * For the other attributes, we acquire the inode lock and
1041 * first do an error checking pass.
1042 */
1043 tp = xfs_trans_alloc(mp, XFS_TRANS_SETATTR_NOT_SIZE);
Jie Liu3d3c8b52013-08-12 20:49:59 +10001044 code = xfs_trans_reserve(tp, &M_RES(mp)->tr_ichange, 0, 0);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001045 if (code)
1046 goto error_return;
1047
1048 lock_flags = XFS_ILOCK_EXCL;
1049 xfs_ilock(ip, lock_flags);
1050
1051 /*
1052 * CAP_FOWNER overrides the following restrictions:
1053 *
1054 * The user ID of the calling process must be equal
1055 * to the file owner ID, except in cases where the
1056 * CAP_FSETID capability is applicable.
1057 */
Dwight Engenfd5e2aa2013-08-15 14:08:00 -04001058 if (!inode_owner_or_capable(VFS_I(ip))) {
Dave Chinner24513372014-06-25 14:58:08 +10001059 code = -EPERM;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001060 goto error_return;
1061 }
1062
1063 /*
1064 * Do a quota reservation only if projid is actually going to change.
Dwight Engenfd5e2aa2013-08-15 14:08:00 -04001065 * Only allow changing of projid from init_user_ns since it is a
1066 * non user namespace aware identifier.
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001067 */
1068 if (mask & FSX_PROJID) {
Dwight Engenfd5e2aa2013-08-15 14:08:00 -04001069 if (current_user_ns() != &init_user_ns) {
Dave Chinner24513372014-06-25 14:58:08 +10001070 code = -EINVAL;
Dwight Engenfd5e2aa2013-08-15 14:08:00 -04001071 goto error_return;
1072 }
1073
Christoph Hellwig7d095252009-06-08 15:33:32 +02001074 if (XFS_IS_QUOTA_RUNNING(mp) &&
1075 XFS_IS_PQUOTA_ON(mp) &&
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001076 xfs_get_projid(ip) != fa->fsx_projid) {
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001077 ASSERT(tp);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001078 code = xfs_qm_vop_chown_reserve(tp, ip, udqp, NULL,
1079 pdqp, capable(CAP_FOWNER) ?
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001080 XFS_QMOPT_FORCE_RES : 0);
1081 if (code) /* out of quota */
1082 goto error_return;
1083 }
1084 }
1085
1086 if (mask & FSX_EXTSIZE) {
1087 /*
1088 * Can't change extent size if any extents are allocated.
1089 */
1090 if (ip->i_d.di_nextents &&
1091 ((ip->i_d.di_extsize << mp->m_sb.sb_blocklog) !=
1092 fa->fsx_extsize)) {
Dave Chinner24513372014-06-25 14:58:08 +10001093 code = -EINVAL; /* EFBIG? */
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001094 goto error_return;
1095 }
1096
1097 /*
1098 * Extent size must be a multiple of the appropriate block
Dave Chinner53158372011-01-27 12:18:18 +11001099 * size, if set at all. It must also be smaller than the
1100 * maximum extent size supported by the filesystem.
1101 *
1102 * Also, for non-realtime files, limit the extent size hint to
1103 * half the size of the AGs in the filesystem so alignment
1104 * doesn't result in extents larger than an AG.
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001105 */
1106 if (fa->fsx_extsize != 0) {
Dave Chinner53158372011-01-27 12:18:18 +11001107 xfs_extlen_t size;
1108 xfs_fsblock_t extsize_fsb;
1109
1110 extsize_fsb = XFS_B_TO_FSB(mp, fa->fsx_extsize);
1111 if (extsize_fsb > MAXEXTLEN) {
Dave Chinner24513372014-06-25 14:58:08 +10001112 code = -EINVAL;
Dave Chinner53158372011-01-27 12:18:18 +11001113 goto error_return;
1114 }
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001115
1116 if (XFS_IS_REALTIME_INODE(ip) ||
1117 ((mask & FSX_XFLAGS) &&
1118 (fa->fsx_xflags & XFS_XFLAG_REALTIME))) {
1119 size = mp->m_sb.sb_rextsize <<
1120 mp->m_sb.sb_blocklog;
1121 } else {
1122 size = mp->m_sb.sb_blocksize;
Dave Chinner53158372011-01-27 12:18:18 +11001123 if (extsize_fsb > mp->m_sb.sb_agblocks / 2) {
Dave Chinner24513372014-06-25 14:58:08 +10001124 code = -EINVAL;
Dave Chinner53158372011-01-27 12:18:18 +11001125 goto error_return;
1126 }
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001127 }
1128
1129 if (fa->fsx_extsize % size) {
Dave Chinner24513372014-06-25 14:58:08 +10001130 code = -EINVAL;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001131 goto error_return;
1132 }
1133 }
1134 }
1135
1136
1137 if (mask & FSX_XFLAGS) {
1138 /*
1139 * Can't change realtime flag if any extents are allocated.
1140 */
1141 if ((ip->i_d.di_nextents || ip->i_delayed_blks) &&
1142 (XFS_IS_REALTIME_INODE(ip)) !=
1143 (fa->fsx_xflags & XFS_XFLAG_REALTIME)) {
Dave Chinner24513372014-06-25 14:58:08 +10001144 code = -EINVAL; /* EFBIG? */
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001145 goto error_return;
1146 }
1147
1148 /*
1149 * If realtime flag is set then must have realtime data.
1150 */
1151 if ((fa->fsx_xflags & XFS_XFLAG_REALTIME)) {
1152 if ((mp->m_sb.sb_rblocks == 0) ||
1153 (mp->m_sb.sb_rextsize == 0) ||
1154 (ip->i_d.di_extsize % mp->m_sb.sb_rextsize)) {
Dave Chinner24513372014-06-25 14:58:08 +10001155 code = -EINVAL;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001156 goto error_return;
1157 }
1158 }
1159
1160 /*
1161 * Can't modify an immutable/append-only file unless
1162 * we have appropriate permission.
1163 */
1164 if ((ip->i_d.di_flags &
1165 (XFS_DIFLAG_IMMUTABLE|XFS_DIFLAG_APPEND) ||
1166 (fa->fsx_xflags &
1167 (XFS_XFLAG_IMMUTABLE | XFS_XFLAG_APPEND))) &&
1168 !capable(CAP_LINUX_IMMUTABLE)) {
Dave Chinner24513372014-06-25 14:58:08 +10001169 code = -EPERM;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001170 goto error_return;
1171 }
1172 }
1173
Christoph Hellwigddc34152011-09-19 15:00:54 +00001174 xfs_trans_ijoin(tp, ip, 0);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001175
1176 /*
1177 * Change file ownership. Must be the owner or privileged.
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001178 */
1179 if (mask & FSX_PROJID) {
1180 /*
1181 * CAP_FSETID overrides the following restrictions:
1182 *
1183 * The set-user-ID and set-group-ID bits of a file will be
1184 * cleared upon successful return from chown()
1185 */
1186 if ((ip->i_d.di_mode & (S_ISUID|S_ISGID)) &&
Andy Lutomirski23adbe12014-06-10 12:45:42 -07001187 !capable_wrt_inode_uidgid(VFS_I(ip), CAP_FSETID))
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001188 ip->i_d.di_mode &= ~(S_ISUID|S_ISGID);
1189
1190 /*
1191 * Change the ownerships and register quota modifications
1192 * in the transaction.
1193 */
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001194 if (xfs_get_projid(ip) != fa->fsx_projid) {
Christoph Hellwig7d095252009-06-08 15:33:32 +02001195 if (XFS_IS_QUOTA_RUNNING(mp) && XFS_IS_PQUOTA_ON(mp)) {
1196 olddquot = xfs_qm_vop_chown(tp, ip,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001197 &ip->i_pdquot, pdqp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001198 }
Dave Chinner263997a2014-05-20 07:46:40 +10001199 ASSERT(ip->i_d.di_version > 1);
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001200 xfs_set_projid(ip, fa->fsx_projid);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001201 }
1202
1203 }
1204
Christoph Hellwigf13fae22008-07-21 16:16:15 +10001205 if (mask & FSX_XFLAGS) {
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001206 xfs_set_diflags(ip, fa->fsx_xflags);
Christoph Hellwigf13fae22008-07-21 16:16:15 +10001207 xfs_diflags_to_linux(ip);
1208 }
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001209
Dave Chinnera8727032014-10-02 09:20:30 +10001210 /*
1211 * Only set the extent size hint if we've already determined that the
1212 * extent size hint should be set on the inode. If no extent size flags
1213 * are set on the inode then unconditionally clear the extent size hint.
1214 */
1215 if (mask & FSX_EXTSIZE) {
1216 int extsize = 0;
1217
1218 if (ip->i_d.di_flags &
1219 (XFS_DIFLAG_EXTSIZE | XFS_DIFLAG_EXTSZINHERIT))
1220 extsize = fa->fsx_extsize >> mp->m_sb.sb_blocklog;
1221 ip->i_d.di_extsize = extsize;
1222 }
1223
Dave Chinnerdcd79a12010-09-28 12:27:25 +10001224 xfs_trans_ichgtime(tp, ip, XFS_ICHGTIME_CHG);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001225 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001226
1227 XFS_STATS_INC(xs_ig_attrchg);
1228
1229 /*
1230 * If this is a synchronous mount, make sure that the
1231 * transaction goes to disk before returning to the user.
1232 * This is slightly sub-optimal in that truncates require
1233 * two sync transactions instead of one for wsync filesystems.
1234 * One for the truncate and one for the timestamps since we
1235 * don't want to change the timestamps unless we're sure the
1236 * truncate worked. Truncates are less than 1% of the laddis
1237 * mix so this probably isn't worth the trouble to optimize.
1238 */
1239 if (mp->m_flags & XFS_MOUNT_WSYNC)
1240 xfs_trans_set_sync(tp);
1241 code = xfs_trans_commit(tp, 0);
1242 xfs_iunlock(ip, lock_flags);
1243
1244 /*
1245 * Release any dquot(s) the inode had kept before chown.
1246 */
Christoph Hellwig7d095252009-06-08 15:33:32 +02001247 xfs_qm_dqrele(olddquot);
1248 xfs_qm_dqrele(udqp);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001249 xfs_qm_dqrele(pdqp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001250
Christoph Hellwig288699f2010-06-23 18:11:15 +10001251 return code;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001252
1253 error_return:
Christoph Hellwig7d095252009-06-08 15:33:32 +02001254 xfs_qm_dqrele(udqp);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001255 xfs_qm_dqrele(pdqp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001256 xfs_trans_cancel(tp, 0);
1257 if (lock_flags)
1258 xfs_iunlock(ip, lock_flags);
1259 return code;
1260}
1261
Christoph Hellwigc83bfab2007-10-11 17:47:00 +10001262STATIC int
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001263xfs_ioc_fssetxattr(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 xfs_inode_t *ip,
1265 struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 void __user *arg)
1267{
1268 struct fsxattr fa;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001269 unsigned int mask;
Jan Karad9457dc2012-06-12 16:20:39 +02001270 int error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001271
1272 if (copy_from_user(&fa, arg, sizeof(fa)))
1273 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001275 mask = FSX_XFLAGS | FSX_EXTSIZE | FSX_PROJID;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001276 if (filp->f_flags & (O_NDELAY|O_NONBLOCK))
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001277 mask |= FSX_NONBLOCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
Jan Karad9457dc2012-06-12 16:20:39 +02001279 error = mnt_want_write_file(filp);
1280 if (error)
1281 return error;
1282 error = xfs_ioctl_setattr(ip, &fa, mask);
1283 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10001284 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001285}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001287STATIC int
1288xfs_ioc_getxflags(
1289 xfs_inode_t *ip,
1290 void __user *arg)
1291{
1292 unsigned int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001294 flags = xfs_di2lxflags(ip->i_d.di_flags);
1295 if (copy_to_user(arg, &flags, sizeof(flags)))
1296 return -EFAULT;
1297 return 0;
1298}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001300STATIC int
1301xfs_ioc_setxflags(
1302 xfs_inode_t *ip,
1303 struct file *filp,
1304 void __user *arg)
1305{
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001306 struct fsxattr fa;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001307 unsigned int flags;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001308 unsigned int mask;
Jan Karad9457dc2012-06-12 16:20:39 +02001309 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001311 if (copy_from_user(&flags, arg, sizeof(flags)))
1312 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001314 if (flags & ~(FS_IMMUTABLE_FL | FS_APPEND_FL | \
1315 FS_NOATIME_FL | FS_NODUMP_FL | \
1316 FS_SYNC_FL))
1317 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001319 mask = FSX_XFLAGS;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001320 if (filp->f_flags & (O_NDELAY|O_NONBLOCK))
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001321 mask |= FSX_NONBLOCK;
1322 fa.fsx_xflags = xfs_merge_ioc_xflags(flags, xfs_ip2xflags(ip));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323
Jan Karad9457dc2012-06-12 16:20:39 +02001324 error = mnt_want_write_file(filp);
1325 if (error)
1326 return error;
1327 error = xfs_ioctl_setattr(ip, &fa, mask);
1328 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10001329 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330}
1331
1332STATIC int
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001333xfs_getbmap_format(void **ap, struct getbmapx *bmv, int *full)
1334{
Dave Chinnerb972d072014-09-29 10:46:22 +10001335 struct getbmap __user *base = (struct getbmap __user *)*ap;
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001336
1337 /* copy only getbmap portion (not getbmapx) */
1338 if (copy_to_user(base, bmv, sizeof(struct getbmap)))
Dave Chinner24513372014-06-25 14:58:08 +10001339 return -EFAULT;
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001340
1341 *ap += sizeof(struct getbmap);
1342 return 0;
1343}
1344
1345STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346xfs_ioc_getbmap(
Christoph Hellwig993386c2007-08-28 16:12:30 +10001347 struct xfs_inode *ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 int ioflags,
1349 unsigned int cmd,
1350 void __user *arg)
1351{
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001352 struct getbmapx bmx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 int error;
1354
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001355 if (copy_from_user(&bmx, arg, sizeof(struct getbmapx)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001356 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001358 if (bmx.bmv_count < 2)
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001359 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001361 bmx.bmv_iflags = (cmd == XFS_IOC_GETBMAPA ? BMV_IF_ATTRFORK : 0);
Dave Chinnerb92cc592014-08-04 13:28:20 +10001362 if (ioflags & XFS_IO_INVIS)
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001363 bmx.bmv_iflags |= BMV_IF_NO_DMAPI_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001365 error = xfs_getbmap(ip, &bmx, xfs_getbmap_format,
Dave Chinnerb972d072014-09-29 10:46:22 +10001366 (__force struct getbmap *)arg+1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 if (error)
Dave Chinner24513372014-06-25 14:58:08 +10001368 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001370 /* copy back header - only size of getbmap */
1371 if (copy_to_user(arg, &bmx, sizeof(struct getbmap)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001372 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 return 0;
1374}
1375
1376STATIC int
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001377xfs_getbmapx_format(void **ap, struct getbmapx *bmv, int *full)
1378{
Dave Chinnerb972d072014-09-29 10:46:22 +10001379 struct getbmapx __user *base = (struct getbmapx __user *)*ap;
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001380
1381 if (copy_to_user(base, bmv, sizeof(struct getbmapx)))
Dave Chinner24513372014-06-25 14:58:08 +10001382 return -EFAULT;
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001383
1384 *ap += sizeof(struct getbmapx);
1385 return 0;
1386}
1387
1388STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389xfs_ioc_getbmapx(
Christoph Hellwig993386c2007-08-28 16:12:30 +10001390 struct xfs_inode *ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 void __user *arg)
1392{
1393 struct getbmapx bmx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 int error;
1395
1396 if (copy_from_user(&bmx, arg, sizeof(bmx)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001397 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398
1399 if (bmx.bmv_count < 2)
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001400 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001402 if (bmx.bmv_iflags & (~BMV_IF_VALID))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001403 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001405 error = xfs_getbmap(ip, &bmx, xfs_getbmapx_format,
Dave Chinnerb972d072014-09-29 10:46:22 +10001406 (__force struct getbmapx *)arg+1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 if (error)
Dave Chinner24513372014-06-25 14:58:08 +10001408 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001410 /* copy back header */
1411 if (copy_to_user(arg, &bmx, sizeof(struct getbmapx)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001412 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413
1414 return 0;
1415}
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001416
Dave Chinnera133d952013-08-12 20:49:48 +10001417int
1418xfs_ioc_swapext(
1419 xfs_swapext_t *sxp)
1420{
1421 xfs_inode_t *ip, *tip;
1422 struct fd f, tmp;
1423 int error = 0;
1424
1425 /* Pull information for the target fd */
1426 f = fdget((int)sxp->sx_fdtarget);
1427 if (!f.file) {
Dave Chinner24513372014-06-25 14:58:08 +10001428 error = -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001429 goto out;
1430 }
1431
1432 if (!(f.file->f_mode & FMODE_WRITE) ||
1433 !(f.file->f_mode & FMODE_READ) ||
1434 (f.file->f_flags & O_APPEND)) {
Dave Chinner24513372014-06-25 14:58:08 +10001435 error = -EBADF;
Dave Chinnera133d952013-08-12 20:49:48 +10001436 goto out_put_file;
1437 }
1438
1439 tmp = fdget((int)sxp->sx_fdtmp);
1440 if (!tmp.file) {
Dave Chinner24513372014-06-25 14:58:08 +10001441 error = -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001442 goto out_put_file;
1443 }
1444
1445 if (!(tmp.file->f_mode & FMODE_WRITE) ||
1446 !(tmp.file->f_mode & FMODE_READ) ||
1447 (tmp.file->f_flags & O_APPEND)) {
Dave Chinner24513372014-06-25 14:58:08 +10001448 error = -EBADF;
Dave Chinnera133d952013-08-12 20:49:48 +10001449 goto out_put_tmp_file;
1450 }
1451
1452 if (IS_SWAPFILE(file_inode(f.file)) ||
1453 IS_SWAPFILE(file_inode(tmp.file))) {
Dave Chinner24513372014-06-25 14:58:08 +10001454 error = -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001455 goto out_put_tmp_file;
1456 }
1457
1458 ip = XFS_I(file_inode(f.file));
1459 tip = XFS_I(file_inode(tmp.file));
1460
1461 if (ip->i_mount != tip->i_mount) {
Dave Chinner24513372014-06-25 14:58:08 +10001462 error = -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001463 goto out_put_tmp_file;
1464 }
1465
1466 if (ip->i_ino == tip->i_ino) {
Dave Chinner24513372014-06-25 14:58:08 +10001467 error = -EINVAL;
Dave Chinnera133d952013-08-12 20:49:48 +10001468 goto out_put_tmp_file;
1469 }
1470
1471 if (XFS_FORCED_SHUTDOWN(ip->i_mount)) {
Dave Chinner24513372014-06-25 14:58:08 +10001472 error = -EIO;
Dave Chinnera133d952013-08-12 20:49:48 +10001473 goto out_put_tmp_file;
1474 }
1475
1476 error = xfs_swap_extents(ip, tip, sxp);
1477
1478 out_put_tmp_file:
1479 fdput(tmp);
1480 out_put_file:
1481 fdput(f);
1482 out:
1483 return error;
1484}
1485
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001486/*
1487 * Note: some of the ioctl's return positive numbers as a
1488 * byte count indicating success, such as readlink_by_handle.
1489 * So we don't "sign flip" like most other routines. This means
1490 * true errors need to be returned as a negative value.
1491 */
1492long
1493xfs_file_ioctl(
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001494 struct file *filp,
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001495 unsigned int cmd,
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001496 unsigned long p)
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001497{
Al Viro496ad9a2013-01-23 17:07:38 -05001498 struct inode *inode = file_inode(filp);
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001499 struct xfs_inode *ip = XFS_I(inode);
1500 struct xfs_mount *mp = ip->i_mount;
1501 void __user *arg = (void __user *)p;
1502 int ioflags = 0;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001503 int error;
1504
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001505 if (filp->f_mode & FMODE_NOCMTIME)
Dave Chinnerb92cc592014-08-04 13:28:20 +10001506 ioflags |= XFS_IO_INVIS;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001507
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001508 trace_xfs_file_ioctl(ip);
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001509
1510 switch (cmd) {
Christoph Hellwiga46db602011-01-07 13:02:04 +00001511 case FITRIM:
1512 return xfs_ioc_trim(mp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001513 case XFS_IOC_ALLOCSP:
1514 case XFS_IOC_FREESP:
1515 case XFS_IOC_RESVSP:
1516 case XFS_IOC_UNRESVSP:
1517 case XFS_IOC_ALLOCSP64:
1518 case XFS_IOC_FREESP64:
1519 case XFS_IOC_RESVSP64:
Dave Chinner44722352010-08-24 12:02:11 +10001520 case XFS_IOC_UNRESVSP64:
1521 case XFS_IOC_ZERO_RANGE: {
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001522 xfs_flock64_t bf;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001523
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001524 if (copy_from_user(&bf, arg, sizeof(bf)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001525 return -EFAULT;
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001526 return xfs_ioc_space(ip, inode, filp, ioflags, cmd, &bf);
1527 }
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001528 case XFS_IOC_DIOINFO: {
1529 struct dioattr da;
1530 xfs_buftarg_t *target =
1531 XFS_IS_REALTIME_INODE(ip) ?
1532 mp->m_rtdev_targp : mp->m_ddev_targp;
1533
Eric Sandeen7c71ee72014-01-21 16:46:23 -06001534 da.d_mem = da.d_miniosz = target->bt_logical_sectorsize;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001535 da.d_maxiosz = INT_MAX & ~(da.d_miniosz - 1);
1536
1537 if (copy_to_user(arg, &da, sizeof(da)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001538 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001539 return 0;
1540 }
1541
1542 case XFS_IOC_FSBULKSTAT_SINGLE:
1543 case XFS_IOC_FSBULKSTAT:
1544 case XFS_IOC_FSINUMBERS:
1545 return xfs_ioc_bulkstat(mp, cmd, arg);
1546
1547 case XFS_IOC_FSGEOMETRY_V1:
1548 return xfs_ioc_fsgeometry_v1(mp, arg);
1549
1550 case XFS_IOC_FSGEOMETRY:
1551 return xfs_ioc_fsgeometry(mp, arg);
1552
1553 case XFS_IOC_GETVERSION:
1554 return put_user(inode->i_generation, (int __user *)arg);
1555
1556 case XFS_IOC_FSGETXATTR:
1557 return xfs_ioc_fsgetxattr(ip, 0, arg);
1558 case XFS_IOC_FSGETXATTRA:
1559 return xfs_ioc_fsgetxattr(ip, 1, arg);
Lachlan McIlroy3b2816b2008-04-18 12:43:35 +10001560 case XFS_IOC_FSSETXATTR:
Lachlan McIlroy65e67f52008-04-18 12:59:45 +10001561 return xfs_ioc_fssetxattr(ip, filp, arg);
1562 case XFS_IOC_GETXFLAGS:
1563 return xfs_ioc_getxflags(ip, arg);
1564 case XFS_IOC_SETXFLAGS:
1565 return xfs_ioc_setxflags(ip, filp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001566
1567 case XFS_IOC_FSSETDM: {
1568 struct fsdmidata dmi;
1569
1570 if (copy_from_user(&dmi, arg, sizeof(dmi)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001571 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001572
Jan Karad9457dc2012-06-12 16:20:39 +02001573 error = mnt_want_write_file(filp);
1574 if (error)
1575 return error;
1576
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001577 error = xfs_set_dmattrs(ip, dmi.fsd_dmevmask,
1578 dmi.fsd_dmstate);
Jan Karad9457dc2012-06-12 16:20:39 +02001579 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10001580 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001581 }
1582
1583 case XFS_IOC_GETBMAP:
1584 case XFS_IOC_GETBMAPA:
1585 return xfs_ioc_getbmap(ip, ioflags, cmd, arg);
1586
1587 case XFS_IOC_GETBMAPX:
1588 return xfs_ioc_getbmapx(ip, arg);
1589
1590 case XFS_IOC_FD_TO_HANDLE:
1591 case XFS_IOC_PATH_TO_HANDLE:
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001592 case XFS_IOC_PATH_TO_FSHANDLE: {
1593 xfs_fsop_handlereq_t hreq;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001594
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001595 if (copy_from_user(&hreq, arg, sizeof(hreq)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001596 return -EFAULT;
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001597 return xfs_find_handle(cmd, &hreq);
1598 }
1599 case XFS_IOC_OPEN_BY_HANDLE: {
1600 xfs_fsop_handlereq_t hreq;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001601
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001602 if (copy_from_user(&hreq, arg, sizeof(xfs_fsop_handlereq_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001603 return -EFAULT;
Christoph Hellwigd296d302009-01-19 02:02:57 +01001604 return xfs_open_by_handle(filp, &hreq);
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001605 }
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001606 case XFS_IOC_FSSETDM_BY_HANDLE:
Christoph Hellwigd296d302009-01-19 02:02:57 +01001607 return xfs_fssetdm_by_handle(filp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001608
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001609 case XFS_IOC_READLINK_BY_HANDLE: {
1610 xfs_fsop_handlereq_t hreq;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001611
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001612 if (copy_from_user(&hreq, arg, sizeof(xfs_fsop_handlereq_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001613 return -EFAULT;
Christoph Hellwigd296d302009-01-19 02:02:57 +01001614 return xfs_readlink_by_handle(filp, &hreq);
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001615 }
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001616 case XFS_IOC_ATTRLIST_BY_HANDLE:
Christoph Hellwigd296d302009-01-19 02:02:57 +01001617 return xfs_attrlist_by_handle(filp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001618
1619 case XFS_IOC_ATTRMULTI_BY_HANDLE:
Christoph Hellwigd296d302009-01-19 02:02:57 +01001620 return xfs_attrmulti_by_handle(filp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001621
1622 case XFS_IOC_SWAPEXT: {
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001623 struct xfs_swapext sxp;
1624
1625 if (copy_from_user(&sxp, arg, sizeof(xfs_swapext_t)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001626 return -EFAULT;
Jan Karad9457dc2012-06-12 16:20:39 +02001627 error = mnt_want_write_file(filp);
1628 if (error)
1629 return error;
Dave Chinnera133d952013-08-12 20:49:48 +10001630 error = xfs_ioc_swapext(&sxp);
Jan Karad9457dc2012-06-12 16:20:39 +02001631 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10001632 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001633 }
1634
1635 case XFS_IOC_FSCOUNTS: {
1636 xfs_fsop_counts_t out;
1637
1638 error = xfs_fs_counts(mp, &out);
1639 if (error)
Dave Chinner24513372014-06-25 14:58:08 +10001640 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001641
1642 if (copy_to_user(arg, &out, sizeof(out)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001643 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001644 return 0;
1645 }
1646
1647 case XFS_IOC_SET_RESBLKS: {
1648 xfs_fsop_resblks_t inout;
1649 __uint64_t in;
1650
1651 if (!capable(CAP_SYS_ADMIN))
1652 return -EPERM;
1653
Eric Sandeend5db0f92010-02-05 22:59:53 +00001654 if (mp->m_flags & XFS_MOUNT_RDONLY)
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001655 return -EROFS;
Eric Sandeend5db0f92010-02-05 22:59:53 +00001656
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001657 if (copy_from_user(&inout, arg, sizeof(inout)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001658 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001659
Jan Karad9457dc2012-06-12 16:20:39 +02001660 error = mnt_want_write_file(filp);
1661 if (error)
1662 return error;
1663
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001664 /* input parameter is passed in resblks field of structure */
1665 in = inout.resblks;
1666 error = xfs_reserve_blocks(mp, &in, &inout);
Jan Karad9457dc2012-06-12 16:20:39 +02001667 mnt_drop_write_file(filp);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001668 if (error)
Dave Chinner24513372014-06-25 14:58:08 +10001669 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001670
1671 if (copy_to_user(arg, &inout, sizeof(inout)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001672 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001673 return 0;
1674 }
1675
1676 case XFS_IOC_GET_RESBLKS: {
1677 xfs_fsop_resblks_t out;
1678
1679 if (!capable(CAP_SYS_ADMIN))
1680 return -EPERM;
1681
1682 error = xfs_reserve_blocks(mp, NULL, &out);
1683 if (error)
Dave Chinner24513372014-06-25 14:58:08 +10001684 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001685
1686 if (copy_to_user(arg, &out, sizeof(out)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001687 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001688
1689 return 0;
1690 }
1691
1692 case XFS_IOC_FSGROWFSDATA: {
1693 xfs_growfs_data_t in;
1694
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001695 if (copy_from_user(&in, arg, sizeof(in)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001696 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001697
Jan Karad9457dc2012-06-12 16:20:39 +02001698 error = mnt_want_write_file(filp);
1699 if (error)
1700 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001701 error = xfs_growfs_data(mp, &in);
Jan Karad9457dc2012-06-12 16:20:39 +02001702 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10001703 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001704 }
1705
1706 case XFS_IOC_FSGROWFSLOG: {
1707 xfs_growfs_log_t in;
1708
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001709 if (copy_from_user(&in, arg, sizeof(in)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001710 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001711
Jan Karad9457dc2012-06-12 16:20:39 +02001712 error = mnt_want_write_file(filp);
1713 if (error)
1714 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001715 error = xfs_growfs_log(mp, &in);
Jan Karad9457dc2012-06-12 16:20:39 +02001716 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10001717 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001718 }
1719
1720 case XFS_IOC_FSGROWFSRT: {
1721 xfs_growfs_rt_t in;
1722
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001723 if (copy_from_user(&in, arg, sizeof(in)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001724 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001725
Jan Karad9457dc2012-06-12 16:20:39 +02001726 error = mnt_want_write_file(filp);
1727 if (error)
1728 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001729 error = xfs_growfs_rt(mp, &in);
Jan Karad9457dc2012-06-12 16:20:39 +02001730 mnt_drop_write_file(filp);
Dave Chinner24513372014-06-25 14:58:08 +10001731 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001732 }
1733
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001734 case XFS_IOC_GOINGDOWN: {
1735 __uint32_t in;
1736
1737 if (!capable(CAP_SYS_ADMIN))
1738 return -EPERM;
1739
1740 if (get_user(in, (__uint32_t __user *)arg))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001741 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001742
Dave Chinner24513372014-06-25 14:58:08 +10001743 return xfs_fs_goingdown(mp, in);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001744 }
1745
1746 case XFS_IOC_ERROR_INJECTION: {
1747 xfs_error_injection_t in;
1748
1749 if (!capable(CAP_SYS_ADMIN))
1750 return -EPERM;
1751
1752 if (copy_from_user(&in, arg, sizeof(in)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001753 return -EFAULT;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001754
Dave Chinner24513372014-06-25 14:58:08 +10001755 return xfs_errortag_add(in.errtag, mp);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001756 }
1757
1758 case XFS_IOC_ERROR_CLEARALL:
1759 if (!capable(CAP_SYS_ADMIN))
1760 return -EPERM;
1761
Dave Chinner24513372014-06-25 14:58:08 +10001762 return xfs_errortag_clearall(mp, 1);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001763
Brian Foster8ca149d2012-11-07 12:21:12 -05001764 case XFS_IOC_FREE_EOFBLOCKS: {
Dwight Engenb9fe5052013-08-15 14:08:02 -04001765 struct xfs_fs_eofblocks eofb;
1766 struct xfs_eofblocks keofb;
Brian Foster8ca149d2012-11-07 12:21:12 -05001767
Dwight Engen8c567a72013-08-15 14:08:03 -04001768 if (!capable(CAP_SYS_ADMIN))
1769 return -EPERM;
1770
1771 if (mp->m_flags & XFS_MOUNT_RDONLY)
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001772 return -EROFS;
Dwight Engen8c567a72013-08-15 14:08:03 -04001773
Brian Foster8ca149d2012-11-07 12:21:12 -05001774 if (copy_from_user(&eofb, arg, sizeof(eofb)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001775 return -EFAULT;
Brian Foster8ca149d2012-11-07 12:21:12 -05001776
Dwight Engenb9fe5052013-08-15 14:08:02 -04001777 error = xfs_fs_eofblocks_from_user(&eofb, &keofb);
1778 if (error)
Dave Chinner24513372014-06-25 14:58:08 +10001779 return error;
Brian Foster8ca149d2012-11-07 12:21:12 -05001780
Dave Chinner24513372014-06-25 14:58:08 +10001781 return xfs_icache_free_eofblocks(mp, &keofb);
Brian Foster8ca149d2012-11-07 12:21:12 -05001782 }
1783
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001784 default:
1785 return -ENOTTY;
1786 }
1787}