blob: 45287419dc3719934d774373640358fd8c67dce5 [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 Chinner6ca1c902013-08-12 20:49:26 +100020#include "xfs_format.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include "xfs_log.h"
22#include "xfs_trans.h"
23#include "xfs_sb.h"
Nathan Scotta844f452005-11-02 14:38:42 +110024#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include "xfs_alloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_bmap_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include "xfs_dinode.h"
29#include "xfs_inode.h"
Hannes Eder7bf446f2009-03-05 15:20:25 +010030#include "xfs_ioctl.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "xfs_rtalloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "xfs_itable.h"
Nathan Scotta844f452005-11-02 14:38:42 +110033#include "xfs_error.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "xfs_attr.h"
Nathan Scotta844f452005-11-02 14:38:42 +110035#include "xfs_bmap.h"
Dave Chinner68988112013-08-12 20:49:42 +100036#include "xfs_bmap_util.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include "xfs_buf_item.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include "xfs_fsops.h"
Christoph Hellwiga46db602011-01-07 13:02:04 +000039#include "xfs_discard.h"
Christoph Hellwig25fe55e2008-07-18 17:13:20 +100040#include "xfs_quota.h"
41#include "xfs_inode_item.h"
Christoph Hellwigd296d302009-01-19 02:02:57 +010042#include "xfs_export.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000043#include "xfs_trace.h"
Brian Foster8ca149d2012-11-07 12:21:12 -050044#include "xfs_icache.h"
Dave Chinnerc24b5df2013-08-12 20:49:45 +100045#include "xfs_symlink.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080047#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/dcache.h>
49#include <linux/mount.h>
50#include <linux/namei.h>
51#include <linux/pagemap.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090052#include <linux/slab.h>
Christoph Hellwigd296d302009-01-19 02:02:57 +010053#include <linux/exportfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55/*
56 * xfs_find_handle maps from userspace xfs_fsop_handlereq structure to
57 * a file or fs handle.
58 *
59 * XFS_IOC_PATH_TO_FSHANDLE
60 * returns fs handle for a mount point or path within that mount point
61 * XFS_IOC_FD_TO_HANDLE
62 * returns full handle for a FD opened in user space
63 * XFS_IOC_PATH_TO_HANDLE
64 * returns full handle for a path
65 */
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -060066int
Linus Torvalds1da177e2005-04-16 15:20:36 -070067xfs_find_handle(
68 unsigned int cmd,
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -060069 xfs_fsop_handlereq_t *hreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070{
71 int hsize;
72 xfs_handle_t handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 struct inode *inode;
Dave Chinnera30b0362013-09-02 20:49:36 +100074 struct fd f = {NULL};
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010075 struct path path;
Al Viro2903ff02012-08-28 12:52:22 -040076 int error;
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010077 struct xfs_inode *ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010079 if (cmd == XFS_IOC_FD_TO_HANDLE) {
Al Viro2903ff02012-08-28 12:52:22 -040080 f = fdget(hreq->fd);
81 if (!f.file)
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010082 return -EBADF;
Al Viro496ad9a2013-01-23 17:07:38 -050083 inode = file_inode(f.file);
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010084 } else {
85 error = user_lpath((const char __user *)hreq->path, &path);
86 if (error)
87 return error;
88 inode = path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 }
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010090 ip = XFS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010092 /*
93 * We can only generate handles for inodes residing on a XFS filesystem,
94 * and only for regular files, directories or symbolic links.
95 */
96 error = -EINVAL;
97 if (inode->i_sb->s_magic != XFS_SB_MAGIC)
98 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100100 error = -EBADF;
101 if (!S_ISREG(inode->i_mode) &&
102 !S_ISDIR(inode->i_mode) &&
103 !S_ISLNK(inode->i_mode))
104 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100107 memcpy(&handle.ha_fsid, ip->i_mount->m_fixedfsid, sizeof(xfs_fsid_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100109 if (cmd == XFS_IOC_PATH_TO_FSHANDLE) {
110 /*
111 * This handle only contains an fsid, zero the rest.
112 */
113 memset(&handle.ha_fid, 0, sizeof(handle.ha_fid));
114 hsize = sizeof(xfs_fsid_t);
115 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 int lock_mode;
117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 lock_mode = xfs_ilock_map_shared(ip);
Christoph Hellwigc6143912007-09-14 15:22:37 +1000119 handle.ha_fid.fid_len = sizeof(xfs_fid_t) -
120 sizeof(handle.ha_fid.fid_len);
121 handle.ha_fid.fid_pad = 0;
122 handle.ha_fid.fid_gen = ip->i_d.di_gen;
123 handle.ha_fid.fid_ino = ip->i_ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 xfs_iunlock_map_shared(ip, lock_mode);
125
126 hsize = XFS_HSIZE(handle);
127 }
128
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100129 error = -EFAULT;
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600130 if (copy_to_user(hreq->ohandle, &handle, hsize) ||
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100131 copy_to_user(hreq->ohandlen, &hsize, sizeof(__s32)))
132 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100134 error = 0;
135
136 out_put:
137 if (cmd == XFS_IOC_FD_TO_HANDLE)
Al Viro2903ff02012-08-28 12:52:22 -0400138 fdput(f);
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100139 else
140 path_put(&path);
141 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142}
143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144/*
Christoph Hellwigd296d302009-01-19 02:02:57 +0100145 * No need to do permission checks on the various pathname components
146 * as the handle operations are privileged.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 */
148STATIC int
Christoph Hellwigd296d302009-01-19 02:02:57 +0100149xfs_handle_acceptable(
150 void *context,
151 struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
Christoph Hellwigd296d302009-01-19 02:02:57 +0100153 return 1;
154}
155
156/*
157 * Convert userspace handle data into a dentry.
158 */
159struct dentry *
160xfs_handle_to_dentry(
161 struct file *parfilp,
162 void __user *uhandle,
163 u32 hlen)
164{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 xfs_handle_t handle;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100166 struct xfs_fid64 fid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
168 /*
169 * Only allow handle opens under a directory.
170 */
Al Viro496ad9a2013-01-23 17:07:38 -0500171 if (!S_ISDIR(file_inode(parfilp)->i_mode))
Christoph Hellwigd296d302009-01-19 02:02:57 +0100172 return ERR_PTR(-ENOTDIR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Christoph Hellwigd296d302009-01-19 02:02:57 +0100174 if (hlen != sizeof(xfs_handle_t))
175 return ERR_PTR(-EINVAL);
176 if (copy_from_user(&handle, uhandle, hlen))
177 return ERR_PTR(-EFAULT);
178 if (handle.ha_fid.fid_len !=
179 sizeof(handle.ha_fid) - sizeof(handle.ha_fid.fid_len))
180 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Christoph Hellwigd296d302009-01-19 02:02:57 +0100182 memset(&fid, 0, sizeof(struct fid));
183 fid.ino = handle.ha_fid.fid_ino;
184 fid.gen = handle.ha_fid.fid_gen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Christoph Hellwigd296d302009-01-19 02:02:57 +0100186 return exportfs_decode_fh(parfilp->f_path.mnt, (struct fid *)&fid, 3,
187 FILEID_INO32_GEN | XFS_FILEID_TYPE_64FLAG,
188 xfs_handle_acceptable, NULL);
189}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
Christoph Hellwigd296d302009-01-19 02:02:57 +0100191STATIC struct dentry *
192xfs_handlereq_to_dentry(
193 struct file *parfilp,
194 xfs_fsop_handlereq_t *hreq)
195{
196 return xfs_handle_to_dentry(parfilp, hreq->ihandle, hreq->ihandlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197}
198
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600199int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200xfs_open_by_handle(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 struct file *parfilp,
Christoph Hellwigd296d302009-01-19 02:02:57 +0100202 xfs_fsop_handlereq_t *hreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203{
David Howells745ca242008-11-14 10:39:22 +1100204 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 int error;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100206 int fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 int permflag;
208 struct file *filp;
209 struct inode *inode;
210 struct dentry *dentry;
Dave Chinner1a1d7722012-03-22 05:15:06 +0000211 fmode_t fmode;
Al Viro765927b2012-06-26 21:58:53 +0400212 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
214 if (!capable(CAP_SYS_ADMIN))
215 return -XFS_ERROR(EPERM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Christoph Hellwigd296d302009-01-19 02:02:57 +0100217 dentry = xfs_handlereq_to_dentry(parfilp, hreq);
218 if (IS_ERR(dentry))
219 return PTR_ERR(dentry);
220 inode = dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
222 /* Restrict xfs_open_by_handle to directories & regular files. */
223 if (!(S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode))) {
Christoph Hellwigd296d302009-01-19 02:02:57 +0100224 error = -XFS_ERROR(EPERM);
225 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 }
227
228#if BITS_PER_LONG != 32
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600229 hreq->oflags |= O_LARGEFILE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230#endif
Christoph Hellwigd296d302009-01-19 02:02:57 +0100231
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600232 permflag = hreq->oflags;
Dave Chinner1a1d7722012-03-22 05:15:06 +0000233 fmode = OPEN_FMODE(permflag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 if ((!(permflag & O_APPEND) || (permflag & O_TRUNC)) &&
Dave Chinner1a1d7722012-03-22 05:15:06 +0000235 (fmode & FMODE_WRITE) && IS_APPEND(inode)) {
Christoph Hellwigd296d302009-01-19 02:02:57 +0100236 error = -XFS_ERROR(EPERM);
237 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 }
239
Dave Chinner1a1d7722012-03-22 05:15:06 +0000240 if ((fmode & FMODE_WRITE) && IS_IMMUTABLE(inode)) {
Christoph Hellwigd296d302009-01-19 02:02:57 +0100241 error = -XFS_ERROR(EACCES);
242 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 }
244
245 /* Can't write directories. */
Dave Chinner1a1d7722012-03-22 05:15:06 +0000246 if (S_ISDIR(inode->i_mode) && (fmode & FMODE_WRITE)) {
Christoph Hellwigd296d302009-01-19 02:02:57 +0100247 error = -XFS_ERROR(EISDIR);
248 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 }
250
Yann Droneaud862a6292013-07-02 18:39:34 +0200251 fd = get_unused_fd_flags(0);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100252 if (fd < 0) {
253 error = fd;
254 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 }
256
Al Viro765927b2012-06-26 21:58:53 +0400257 path.mnt = parfilp->f_path.mnt;
258 path.dentry = dentry;
259 filp = dentry_open(&path, hreq->oflags, cred);
260 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 if (IS_ERR(filp)) {
Christoph Hellwigd296d302009-01-19 02:02:57 +0100262 put_unused_fd(fd);
263 return PTR_ERR(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 }
Christoph Hellwig4d4be482008-12-09 04:47:33 -0500265
Al Viro03209372011-07-25 20:54:24 -0400266 if (S_ISREG(inode->i_mode)) {
Vlad Apostolov2e2e7bb2006-11-11 18:04:47 +1100267 filp->f_flags |= O_NOATIME;
Christoph Hellwig4d4be482008-12-09 04:47:33 -0500268 filp->f_mode |= FMODE_NOCMTIME;
Vlad Apostolov2e2e7bb2006-11-11 18:04:47 +1100269 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Christoph Hellwigd296d302009-01-19 02:02:57 +0100271 fd_install(fd, filp);
272 return fd;
273
274 out_dput:
275 dput(dentry);
276 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277}
278
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000279/*
280 * This is a copy from fs/namei.c:vfs_readlink(), except for removing it's
281 * unused first argument.
282 */
283STATIC int
284do_readlink(
285 char __user *buffer,
286 int buflen,
287 const char *link)
288{
289 int len;
290
291 len = PTR_ERR(link);
292 if (IS_ERR(link))
293 goto out;
294
295 len = strlen(link);
296 if (len > (unsigned) buflen)
297 len = buflen;
298 if (copy_to_user(buffer, link, len))
299 len = -EFAULT;
300 out:
301 return len;
302}
303
304
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600305int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306xfs_readlink_by_handle(
Christoph Hellwigd296d302009-01-19 02:02:57 +0100307 struct file *parfilp,
308 xfs_fsop_handlereq_t *hreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309{
Christoph Hellwigd296d302009-01-19 02:02:57 +0100310 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 __u32 olen;
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000312 void *link;
313 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
315 if (!capable(CAP_SYS_ADMIN))
316 return -XFS_ERROR(EPERM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
Christoph Hellwigd296d302009-01-19 02:02:57 +0100318 dentry = xfs_handlereq_to_dentry(parfilp, hreq);
319 if (IS_ERR(dentry))
320 return PTR_ERR(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
322 /* Restrict this handle operation to symlinks only. */
Christoph Hellwigd296d302009-01-19 02:02:57 +0100323 if (!S_ISLNK(dentry->d_inode->i_mode)) {
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000324 error = -XFS_ERROR(EINVAL);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100325 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 }
327
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600328 if (copy_from_user(&olen, hreq->ohandlen, sizeof(__u32))) {
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000329 error = -XFS_ERROR(EFAULT);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100330 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000333 link = kmalloc(MAXPATHLEN+1, GFP_KERNEL);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100334 if (!link) {
335 error = -XFS_ERROR(ENOMEM);
336 goto out_dput;
337 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Christoph Hellwigd296d302009-01-19 02:02:57 +0100339 error = -xfs_readlink(XFS_I(dentry->d_inode), link);
Nathan Scott67fcaa72006-06-09 17:00:52 +1000340 if (error)
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000341 goto out_kfree;
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600342 error = do_readlink(hreq->ohandle, olen, link);
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000343 if (error)
344 goto out_kfree;
Nathan Scott67fcaa72006-06-09 17:00:52 +1000345
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000346 out_kfree:
347 kfree(link);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100348 out_dput:
349 dput(dentry);
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000350 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351}
352
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000353int
354xfs_set_dmattrs(
355 xfs_inode_t *ip,
356 u_int evmask,
357 u_int16_t state)
358{
359 xfs_mount_t *mp = ip->i_mount;
360 xfs_trans_t *tp;
361 int error;
362
363 if (!capable(CAP_SYS_ADMIN))
364 return XFS_ERROR(EPERM);
365
366 if (XFS_FORCED_SHUTDOWN(mp))
367 return XFS_ERROR(EIO);
368
369 tp = xfs_trans_alloc(mp, XFS_TRANS_SET_DMATTRS);
Jie Liu3d3c8b52013-08-12 20:49:59 +1000370 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_ichange, 0, 0);
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000371 if (error) {
372 xfs_trans_cancel(tp, 0);
373 return error;
374 }
375 xfs_ilock(ip, XFS_ILOCK_EXCL);
376 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
377
378 ip->i_d.di_dmevmask = evmask;
379 ip->i_d.di_dmstate = state;
380
381 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
382 error = xfs_trans_commit(tp, 0);
383
384 return error;
385}
386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387STATIC int
388xfs_fssetdm_by_handle(
Christoph Hellwigd296d302009-01-19 02:02:57 +0100389 struct file *parfilp,
390 void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391{
392 int error;
393 struct fsdmidata fsd;
394 xfs_fsop_setdm_handlereq_t dmhreq;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100395 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
397 if (!capable(CAP_MKNOD))
398 return -XFS_ERROR(EPERM);
399 if (copy_from_user(&dmhreq, arg, sizeof(xfs_fsop_setdm_handlereq_t)))
400 return -XFS_ERROR(EFAULT);
401
Jan Karad9457dc2012-06-12 16:20:39 +0200402 error = mnt_want_write_file(parfilp);
403 if (error)
404 return error;
405
Christoph Hellwigd296d302009-01-19 02:02:57 +0100406 dentry = xfs_handlereq_to_dentry(parfilp, &dmhreq.hreq);
Jan Karad9457dc2012-06-12 16:20:39 +0200407 if (IS_ERR(dentry)) {
408 mnt_drop_write_file(parfilp);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100409 return PTR_ERR(dentry);
Jan Karad9457dc2012-06-12 16:20:39 +0200410 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Christoph Hellwigd296d302009-01-19 02:02:57 +0100412 if (IS_IMMUTABLE(dentry->d_inode) || IS_APPEND(dentry->d_inode)) {
Christoph Hellwig6e7f75e2007-10-11 18:09:50 +1000413 error = -XFS_ERROR(EPERM);
414 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 }
416
417 if (copy_from_user(&fsd, dmhreq.data, sizeof(fsd))) {
Christoph Hellwig6e7f75e2007-10-11 18:09:50 +1000418 error = -XFS_ERROR(EFAULT);
419 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 }
421
Christoph Hellwigd296d302009-01-19 02:02:57 +0100422 error = -xfs_set_dmattrs(XFS_I(dentry->d_inode), fsd.fsd_dmevmask,
Christoph Hellwig6e7f75e2007-10-11 18:09:50 +1000423 fsd.fsd_dmstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
Christoph Hellwig6e7f75e2007-10-11 18:09:50 +1000425 out:
Jan Karad9457dc2012-06-12 16:20:39 +0200426 mnt_drop_write_file(parfilp);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100427 dput(dentry);
Christoph Hellwig6e7f75e2007-10-11 18:09:50 +1000428 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429}
430
431STATIC int
432xfs_attrlist_by_handle(
Christoph Hellwigd296d302009-01-19 02:02:57 +0100433 struct file *parfilp,
434 void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435{
Christoph Hellwigd296d302009-01-19 02:02:57 +0100436 int error = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 attrlist_cursor_kern_t *cursor;
438 xfs_fsop_attrlist_handlereq_t al_hreq;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100439 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 char *kbuf;
441
442 if (!capable(CAP_SYS_ADMIN))
443 return -XFS_ERROR(EPERM);
444 if (copy_from_user(&al_hreq, arg, sizeof(xfs_fsop_attrlist_handlereq_t)))
445 return -XFS_ERROR(EFAULT);
446 if (al_hreq.buflen > XATTR_LIST_MAX)
447 return -XFS_ERROR(EINVAL);
448
Christoph Hellwig90ad58a2008-06-27 13:32:19 +1000449 /*
450 * Reject flags, only allow namespaces.
451 */
452 if (al_hreq.flags & ~(ATTR_ROOT | ATTR_SECURE))
453 return -XFS_ERROR(EINVAL);
454
Christoph Hellwigd296d302009-01-19 02:02:57 +0100455 dentry = xfs_handlereq_to_dentry(parfilp, &al_hreq.hreq);
456 if (IS_ERR(dentry))
457 return PTR_ERR(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
Dave Chinnerfdd3cce2013-09-02 20:53:00 +1000459 kbuf = kmem_zalloc_large(al_hreq.buflen, KM_SLEEP);
460 if (!kbuf)
461 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
463 cursor = (attrlist_cursor_kern_t *)&al_hreq.pos;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100464 error = -xfs_attr_list(XFS_I(dentry->d_inode), kbuf, al_hreq.buflen,
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000465 al_hreq.flags, cursor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 if (error)
467 goto out_kfree;
468
469 if (copy_to_user(al_hreq.buffer, kbuf, al_hreq.buflen))
470 error = -EFAULT;
471
Dave Chinnerfdd3cce2013-09-02 20:53:00 +1000472out_kfree:
473 kmem_free(kbuf);
474out_dput:
Christoph Hellwigd296d302009-01-19 02:02:57 +0100475 dput(dentry);
476 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477}
478
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600479int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480xfs_attrmulti_attr_get(
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000481 struct inode *inode,
Dave Chinnera9273ca2010-01-20 10:47:48 +1100482 unsigned char *name,
483 unsigned char __user *ubuf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 __uint32_t *len,
485 __uint32_t flags)
486{
Dave Chinnera9273ca2010-01-20 10:47:48 +1100487 unsigned char *kbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 int error = EFAULT;
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000489
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 if (*len > XATTR_SIZE_MAX)
491 return EINVAL;
Dave Chinnerfdd3cce2013-09-02 20:53:00 +1000492 kbuf = kmem_zalloc_large(*len, KM_SLEEP);
493 if (!kbuf)
494 return ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000496 error = xfs_attr_get(XFS_I(inode), name, kbuf, (int *)len, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 if (error)
498 goto out_kfree;
499
500 if (copy_to_user(ubuf, kbuf, *len))
501 error = EFAULT;
502
Dave Chinnerfdd3cce2013-09-02 20:53:00 +1000503out_kfree:
504 kmem_free(kbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 return error;
506}
507
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600508int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509xfs_attrmulti_attr_set(
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000510 struct inode *inode,
Dave Chinnera9273ca2010-01-20 10:47:48 +1100511 unsigned char *name,
512 const unsigned char __user *ubuf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 __uint32_t len,
514 __uint32_t flags)
515{
Dave Chinnera9273ca2010-01-20 10:47:48 +1100516 unsigned char *kbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 int error = EFAULT;
518
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000519 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 return EPERM;
521 if (len > XATTR_SIZE_MAX)
522 return EINVAL;
523
Li Zefan0e639bd2009-04-08 15:08:04 +0800524 kbuf = memdup_user(ubuf, len);
525 if (IS_ERR(kbuf))
526 return PTR_ERR(kbuf);
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000527
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000528 error = xfs_attr_set(XFS_I(inode), name, kbuf, len, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 return error;
531}
532
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600533int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534xfs_attrmulti_attr_remove(
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000535 struct inode *inode,
Dave Chinnera9273ca2010-01-20 10:47:48 +1100536 unsigned char *name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 __uint32_t flags)
538{
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000539 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 return EPERM;
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000541 return xfs_attr_remove(XFS_I(inode), name, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542}
543
544STATIC int
545xfs_attrmulti_by_handle(
Dave Hansen42a74f22008-02-15 14:37:46 -0800546 struct file *parfilp,
Christoph Hellwigd296d302009-01-19 02:02:57 +0100547 void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548{
549 int error;
550 xfs_attr_multiop_t *ops;
551 xfs_fsop_attrmulti_handlereq_t am_hreq;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100552 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 unsigned int i, size;
Dave Chinnera9273ca2010-01-20 10:47:48 +1100554 unsigned char *attr_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
556 if (!capable(CAP_SYS_ADMIN))
557 return -XFS_ERROR(EPERM);
558 if (copy_from_user(&am_hreq, arg, sizeof(xfs_fsop_attrmulti_handlereq_t)))
559 return -XFS_ERROR(EFAULT);
560
Zhitong Wangfda168c2010-03-23 09:51:22 +1100561 /* overflow check */
562 if (am_hreq.opcount >= INT_MAX / sizeof(xfs_attr_multiop_t))
563 return -E2BIG;
564
Christoph Hellwigd296d302009-01-19 02:02:57 +0100565 dentry = xfs_handlereq_to_dentry(parfilp, &am_hreq.hreq);
566 if (IS_ERR(dentry))
567 return PTR_ERR(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
569 error = E2BIG;
Christoph Hellwige182f572008-06-27 13:32:31 +1000570 size = am_hreq.opcount * sizeof(xfs_attr_multiop_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 if (!size || size > 16 * PAGE_SIZE)
Christoph Hellwigd296d302009-01-19 02:02:57 +0100572 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
Li Zefan0e639bd2009-04-08 15:08:04 +0800574 ops = memdup_user(am_hreq.ops, size);
575 if (IS_ERR(ops)) {
576 error = PTR_ERR(ops);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100577 goto out_dput;
Li Zefan0e639bd2009-04-08 15:08:04 +0800578 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
580 attr_name = kmalloc(MAXNAMELEN, GFP_KERNEL);
581 if (!attr_name)
582 goto out_kfree_ops;
583
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 error = 0;
585 for (i = 0; i < am_hreq.opcount; i++) {
Dave Chinnera9273ca2010-01-20 10:47:48 +1100586 ops[i].am_error = strncpy_from_user((char *)attr_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 ops[i].am_attrname, MAXNAMELEN);
588 if (ops[i].am_error == 0 || ops[i].am_error == MAXNAMELEN)
589 error = -ERANGE;
590 if (ops[i].am_error < 0)
591 break;
592
593 switch (ops[i].am_opcode) {
594 case ATTR_OP_GET:
Christoph Hellwigd296d302009-01-19 02:02:57 +0100595 ops[i].am_error = xfs_attrmulti_attr_get(
596 dentry->d_inode, attr_name,
597 ops[i].am_attrvalue, &ops[i].am_length,
598 ops[i].am_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 break;
600 case ATTR_OP_SET:
Al Viroa561be72011-11-23 11:57:51 -0500601 ops[i].am_error = mnt_want_write_file(parfilp);
Dave Hansen42a74f22008-02-15 14:37:46 -0800602 if (ops[i].am_error)
603 break;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100604 ops[i].am_error = xfs_attrmulti_attr_set(
605 dentry->d_inode, attr_name,
606 ops[i].am_attrvalue, ops[i].am_length,
607 ops[i].am_flags);
Al Viro2a79f172011-12-09 08:06:57 -0500608 mnt_drop_write_file(parfilp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 break;
610 case ATTR_OP_REMOVE:
Al Viroa561be72011-11-23 11:57:51 -0500611 ops[i].am_error = mnt_want_write_file(parfilp);
Dave Hansen42a74f22008-02-15 14:37:46 -0800612 if (ops[i].am_error)
613 break;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100614 ops[i].am_error = xfs_attrmulti_attr_remove(
615 dentry->d_inode, attr_name,
616 ops[i].am_flags);
Al Viro2a79f172011-12-09 08:06:57 -0500617 mnt_drop_write_file(parfilp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 break;
619 default:
620 ops[i].am_error = EINVAL;
621 }
622 }
623
624 if (copy_to_user(am_hreq.ops, ops, size))
625 error = XFS_ERROR(EFAULT);
626
627 kfree(attr_name);
628 out_kfree_ops:
629 kfree(ops);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100630 out_dput:
631 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 return -error;
633}
634
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600635int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636xfs_ioc_space(
Christoph Hellwig993386c2007-08-28 16:12:30 +1000637 struct xfs_inode *ip,
Alexey Dobriyanf37ea142006-09-28 10:52:04 +1000638 struct inode *inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 struct file *filp,
640 int ioflags,
641 unsigned int cmd,
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600642 xfs_flock64_t *bf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 int attr_flags = 0;
645 int error;
646
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600647 /*
648 * Only allow the sys admin to reserve space unless
649 * unwritten extents are enabled.
650 */
651 if (!xfs_sb_version_hasextflgbit(&ip->i_mount->m_sb) &&
652 !capable(CAP_SYS_ADMIN))
653 return -XFS_ERROR(EPERM);
654
Alexey Dobriyanf37ea142006-09-28 10:52:04 +1000655 if (inode->i_flags & (S_IMMUTABLE|S_APPEND))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 return -XFS_ERROR(EPERM);
657
Eric Sandeenad4a8ac2005-09-02 16:41:16 +1000658 if (!(filp->f_mode & FMODE_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 return -XFS_ERROR(EBADF);
660
Alexey Dobriyanf37ea142006-09-28 10:52:04 +1000661 if (!S_ISREG(inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 return -XFS_ERROR(EINVAL);
663
Dave Chinner82878892011-03-26 09:13:08 +1100664 if (filp->f_flags & O_DSYNC)
665 attr_flags |= XFS_ATTR_SYNC;
666
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 if (ioflags & IO_INVIS)
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000668 attr_flags |= XFS_ATTR_DMI;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
Jan Karad9457dc2012-06-12 16:20:39 +0200670 error = mnt_want_write_file(filp);
671 if (error)
672 return error;
Christoph Hellwig5f8aca82013-10-12 00:55:06 -0700673 xfs_ilock(ip, XFS_IOLOCK_EXCL);
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600674 error = xfs_change_file_space(ip, cmd, bf, filp->f_pos, attr_flags);
Christoph Hellwig5f8aca82013-10-12 00:55:06 -0700675 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
Jan Karad9457dc2012-06-12 16:20:39 +0200676 mnt_drop_write_file(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 return -error;
678}
679
680STATIC int
681xfs_ioc_bulkstat(
682 xfs_mount_t *mp,
683 unsigned int cmd,
684 void __user *arg)
685{
686 xfs_fsop_bulkreq_t bulkreq;
687 int count; /* # of records returned */
688 xfs_ino_t inlast; /* last inode number */
689 int done;
690 int error;
691
692 /* done = 1 if there are more stats to get and if bulkstat */
693 /* should be called again (unused here, but used in dmapi) */
694
695 if (!capable(CAP_SYS_ADMIN))
696 return -EPERM;
697
698 if (XFS_FORCED_SHUTDOWN(mp))
699 return -XFS_ERROR(EIO);
700
701 if (copy_from_user(&bulkreq, arg, sizeof(xfs_fsop_bulkreq_t)))
702 return -XFS_ERROR(EFAULT);
703
704 if (copy_from_user(&inlast, bulkreq.lastip, sizeof(__s64)))
705 return -XFS_ERROR(EFAULT);
706
707 if ((count = bulkreq.icount) <= 0)
708 return -XFS_ERROR(EINVAL);
709
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100710 if (bulkreq.ubuffer == NULL)
711 return -XFS_ERROR(EINVAL);
712
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 if (cmd == XFS_IOC_FSINUMBERS)
714 error = xfs_inumbers(mp, &inlast, &count,
Michal Marekfaa63e92007-07-11 11:10:19 +1000715 bulkreq.ubuffer, xfs_inumbers_fmt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 else if (cmd == XFS_IOC_FSBULKSTAT_SINGLE)
717 error = xfs_bulkstat_single(mp, &inlast,
718 bulkreq.ubuffer, &done);
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100719 else /* XFS_IOC_FSBULKSTAT */
Christoph Hellwig7dce11d2010-06-23 18:11:11 +1000720 error = xfs_bulkstat(mp, &inlast, &count, xfs_bulkstat_one,
721 sizeof(xfs_bstat_t), bulkreq.ubuffer,
722 &done);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
724 if (error)
725 return -error;
726
727 if (bulkreq.ocount != NULL) {
728 if (copy_to_user(bulkreq.lastip, &inlast,
729 sizeof(xfs_ino_t)))
730 return -XFS_ERROR(EFAULT);
731
732 if (copy_to_user(bulkreq.ocount, &count, sizeof(count)))
733 return -XFS_ERROR(EFAULT);
734 }
735
736 return 0;
737}
738
739STATIC int
740xfs_ioc_fsgeometry_v1(
741 xfs_mount_t *mp,
742 void __user *arg)
743{
Alex Eldereeb20362011-03-01 17:50:00 +0000744 xfs_fsop_geom_t fsgeo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 int error;
746
Alex Eldereeb20362011-03-01 17:50:00 +0000747 error = xfs_fs_geometry(mp, &fsgeo, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 if (error)
749 return -error;
750
Alex Eldereeb20362011-03-01 17:50:00 +0000751 /*
752 * Caller should have passed an argument of type
753 * xfs_fsop_geom_v1_t. This is a proper subset of the
754 * xfs_fsop_geom_t that xfs_fs_geometry() fills in.
755 */
756 if (copy_to_user(arg, &fsgeo, sizeof(xfs_fsop_geom_v1_t)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 return -XFS_ERROR(EFAULT);
758 return 0;
759}
760
761STATIC int
762xfs_ioc_fsgeometry(
763 xfs_mount_t *mp,
764 void __user *arg)
765{
766 xfs_fsop_geom_t fsgeo;
767 int error;
768
769 error = xfs_fs_geometry(mp, &fsgeo, 4);
770 if (error)
771 return -error;
772
773 if (copy_to_user(arg, &fsgeo, sizeof(fsgeo)))
774 return -XFS_ERROR(EFAULT);
775 return 0;
776}
777
778/*
779 * Linux extended inode flags interface.
780 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
782STATIC unsigned int
783xfs_merge_ioc_xflags(
784 unsigned int flags,
785 unsigned int start)
786{
787 unsigned int xflags = start;
788
Eric Sandeen39058a02007-02-10 18:37:10 +1100789 if (flags & FS_IMMUTABLE_FL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 xflags |= XFS_XFLAG_IMMUTABLE;
791 else
792 xflags &= ~XFS_XFLAG_IMMUTABLE;
Eric Sandeen39058a02007-02-10 18:37:10 +1100793 if (flags & FS_APPEND_FL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 xflags |= XFS_XFLAG_APPEND;
795 else
796 xflags &= ~XFS_XFLAG_APPEND;
Eric Sandeen39058a02007-02-10 18:37:10 +1100797 if (flags & FS_SYNC_FL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 xflags |= XFS_XFLAG_SYNC;
799 else
800 xflags &= ~XFS_XFLAG_SYNC;
Eric Sandeen39058a02007-02-10 18:37:10 +1100801 if (flags & FS_NOATIME_FL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 xflags |= XFS_XFLAG_NOATIME;
803 else
804 xflags &= ~XFS_XFLAG_NOATIME;
Eric Sandeen39058a02007-02-10 18:37:10 +1100805 if (flags & FS_NODUMP_FL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 xflags |= XFS_XFLAG_NODUMP;
807 else
808 xflags &= ~XFS_XFLAG_NODUMP;
809
810 return xflags;
811}
812
813STATIC unsigned int
814xfs_di2lxflags(
815 __uint16_t di_flags)
816{
817 unsigned int flags = 0;
818
819 if (di_flags & XFS_DIFLAG_IMMUTABLE)
Eric Sandeen39058a02007-02-10 18:37:10 +1100820 flags |= FS_IMMUTABLE_FL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 if (di_flags & XFS_DIFLAG_APPEND)
Eric Sandeen39058a02007-02-10 18:37:10 +1100822 flags |= FS_APPEND_FL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 if (di_flags & XFS_DIFLAG_SYNC)
Eric Sandeen39058a02007-02-10 18:37:10 +1100824 flags |= FS_SYNC_FL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 if (di_flags & XFS_DIFLAG_NOATIME)
Eric Sandeen39058a02007-02-10 18:37:10 +1100826 flags |= FS_NOATIME_FL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 if (di_flags & XFS_DIFLAG_NODUMP)
Eric Sandeen39058a02007-02-10 18:37:10 +1100828 flags |= FS_NODUMP_FL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 return flags;
830}
831
832STATIC int
Christoph Hellwigc83bfab2007-10-11 17:47:00 +1000833xfs_ioc_fsgetxattr(
834 xfs_inode_t *ip,
835 int attr,
836 void __user *arg)
837{
838 struct fsxattr fa;
839
Dan Rosenberga122eb22010-09-06 18:24:57 -0400840 memset(&fa, 0, sizeof(struct fsxattr));
841
Christoph Hellwigc83bfab2007-10-11 17:47:00 +1000842 xfs_ilock(ip, XFS_ILOCK_SHARED);
843 fa.fsx_xflags = xfs_ip2xflags(ip);
844 fa.fsx_extsize = ip->i_d.di_extsize << ip->i_mount->m_sb.sb_blocklog;
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000845 fa.fsx_projid = xfs_get_projid(ip);
Christoph Hellwigc83bfab2007-10-11 17:47:00 +1000846
847 if (attr) {
848 if (ip->i_afp) {
849 if (ip->i_afp->if_flags & XFS_IFEXTENTS)
850 fa.fsx_nextents = ip->i_afp->if_bytes /
851 sizeof(xfs_bmbt_rec_t);
852 else
853 fa.fsx_nextents = ip->i_d.di_anextents;
854 } else
855 fa.fsx_nextents = 0;
856 } else {
857 if (ip->i_df.if_flags & XFS_IFEXTENTS)
858 fa.fsx_nextents = ip->i_df.if_bytes /
859 sizeof(xfs_bmbt_rec_t);
860 else
861 fa.fsx_nextents = ip->i_d.di_nextents;
862 }
863 xfs_iunlock(ip, XFS_ILOCK_SHARED);
864
865 if (copy_to_user(arg, &fa, sizeof(fa)))
866 return -EFAULT;
867 return 0;
868}
869
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000870STATIC void
871xfs_set_diflags(
872 struct xfs_inode *ip,
873 unsigned int xflags)
874{
875 unsigned int di_flags;
876
877 /* can't set PREALLOC this way, just preserve it */
878 di_flags = (ip->i_d.di_flags & XFS_DIFLAG_PREALLOC);
879 if (xflags & XFS_XFLAG_IMMUTABLE)
880 di_flags |= XFS_DIFLAG_IMMUTABLE;
881 if (xflags & XFS_XFLAG_APPEND)
882 di_flags |= XFS_DIFLAG_APPEND;
883 if (xflags & XFS_XFLAG_SYNC)
884 di_flags |= XFS_DIFLAG_SYNC;
885 if (xflags & XFS_XFLAG_NOATIME)
886 di_flags |= XFS_DIFLAG_NOATIME;
887 if (xflags & XFS_XFLAG_NODUMP)
888 di_flags |= XFS_DIFLAG_NODUMP;
889 if (xflags & XFS_XFLAG_PROJINHERIT)
890 di_flags |= XFS_DIFLAG_PROJINHERIT;
891 if (xflags & XFS_XFLAG_NODEFRAG)
892 di_flags |= XFS_DIFLAG_NODEFRAG;
893 if (xflags & XFS_XFLAG_FILESTREAM)
894 di_flags |= XFS_DIFLAG_FILESTREAM;
Al Viroabbede12011-07-26 02:31:30 -0400895 if (S_ISDIR(ip->i_d.di_mode)) {
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000896 if (xflags & XFS_XFLAG_RTINHERIT)
897 di_flags |= XFS_DIFLAG_RTINHERIT;
898 if (xflags & XFS_XFLAG_NOSYMLINKS)
899 di_flags |= XFS_DIFLAG_NOSYMLINKS;
900 if (xflags & XFS_XFLAG_EXTSZINHERIT)
901 di_flags |= XFS_DIFLAG_EXTSZINHERIT;
Al Viroabbede12011-07-26 02:31:30 -0400902 } else if (S_ISREG(ip->i_d.di_mode)) {
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000903 if (xflags & XFS_XFLAG_REALTIME)
904 di_flags |= XFS_DIFLAG_REALTIME;
905 if (xflags & XFS_XFLAG_EXTSIZE)
906 di_flags |= XFS_DIFLAG_EXTSIZE;
907 }
908
909 ip->i_d.di_flags = di_flags;
910}
911
Christoph Hellwigf13fae22008-07-21 16:16:15 +1000912STATIC void
913xfs_diflags_to_linux(
914 struct xfs_inode *ip)
915{
David Chinnere4f75292008-08-13 16:00:45 +1000916 struct inode *inode = VFS_I(ip);
Christoph Hellwigf13fae22008-07-21 16:16:15 +1000917 unsigned int xflags = xfs_ip2xflags(ip);
918
919 if (xflags & XFS_XFLAG_IMMUTABLE)
920 inode->i_flags |= S_IMMUTABLE;
921 else
922 inode->i_flags &= ~S_IMMUTABLE;
923 if (xflags & XFS_XFLAG_APPEND)
924 inode->i_flags |= S_APPEND;
925 else
926 inode->i_flags &= ~S_APPEND;
927 if (xflags & XFS_XFLAG_SYNC)
928 inode->i_flags |= S_SYNC;
929 else
930 inode->i_flags &= ~S_SYNC;
931 if (xflags & XFS_XFLAG_NOATIME)
932 inode->i_flags |= S_NOATIME;
933 else
934 inode->i_flags &= ~S_NOATIME;
935}
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000936
937#define FSX_PROJID 1
938#define FSX_EXTSIZE 2
939#define FSX_XFLAGS 4
940#define FSX_NONBLOCK 8
941
942STATIC int
943xfs_ioctl_setattr(
944 xfs_inode_t *ip,
945 struct fsxattr *fa,
946 int mask)
947{
948 struct xfs_mount *mp = ip->i_mount;
949 struct xfs_trans *tp;
950 unsigned int lock_flags = 0;
Christoph Hellwig7d095252009-06-08 15:33:32 +0200951 struct xfs_dquot *udqp = NULL;
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500952 struct xfs_dquot *pdqp = NULL;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000953 struct xfs_dquot *olddquot = NULL;
954 int code;
955
Christoph Hellwigcca28fb2010-06-24 11:57:09 +1000956 trace_xfs_ioctl_setattr(ip);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000957
958 if (mp->m_flags & XFS_MOUNT_RDONLY)
959 return XFS_ERROR(EROFS);
960 if (XFS_FORCED_SHUTDOWN(mp))
961 return XFS_ERROR(EIO);
962
963 /*
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000964 * Disallow 32bit project ids when projid32bit feature is not enabled.
Arkadiusz Mi?kiewicz23963e52010-08-26 10:19:43 +0000965 */
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000966 if ((mask & FSX_PROJID) && (fa->fsx_projid > (__uint16_t)-1) &&
967 !xfs_sb_version_hasprojid32bit(&ip->i_mount->m_sb))
Arkadiusz Mi?kiewicz23963e52010-08-26 10:19:43 +0000968 return XFS_ERROR(EINVAL);
969
970 /*
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000971 * If disk quotas is on, we make sure that the dquots do exist on disk,
972 * before we start any other transactions. Trying to do this later
973 * is messy. We don't care to take a readlock to look at the ids
974 * in inode here, because we can't hold it across the trans_reserve.
975 * If the IDs do change before we take the ilock, we're covered
976 * because the i_*dquot fields will get updated anyway.
977 */
978 if (XFS_IS_QUOTA_ON(mp) && (mask & FSX_PROJID)) {
Christoph Hellwig7d095252009-06-08 15:33:32 +0200979 code = xfs_qm_vop_dqalloc(ip, ip->i_d.di_uid,
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000980 ip->i_d.di_gid, fa->fsx_projid,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500981 XFS_QMOPT_PQUOTA, &udqp, NULL, &pdqp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000982 if (code)
983 return code;
984 }
985
986 /*
987 * For the other attributes, we acquire the inode lock and
988 * first do an error checking pass.
989 */
990 tp = xfs_trans_alloc(mp, XFS_TRANS_SETATTR_NOT_SIZE);
Jie Liu3d3c8b52013-08-12 20:49:59 +1000991 code = xfs_trans_reserve(tp, &M_RES(mp)->tr_ichange, 0, 0);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000992 if (code)
993 goto error_return;
994
995 lock_flags = XFS_ILOCK_EXCL;
996 xfs_ilock(ip, lock_flags);
997
998 /*
999 * CAP_FOWNER overrides the following restrictions:
1000 *
1001 * The user ID of the calling process must be equal
1002 * to the file owner ID, except in cases where the
1003 * CAP_FSETID capability is applicable.
1004 */
Dwight Engenfd5e2aa2013-08-15 14:08:00 -04001005 if (!inode_owner_or_capable(VFS_I(ip))) {
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001006 code = XFS_ERROR(EPERM);
1007 goto error_return;
1008 }
1009
1010 /*
1011 * Do a quota reservation only if projid is actually going to change.
Dwight Engenfd5e2aa2013-08-15 14:08:00 -04001012 * Only allow changing of projid from init_user_ns since it is a
1013 * non user namespace aware identifier.
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001014 */
1015 if (mask & FSX_PROJID) {
Dwight Engenfd5e2aa2013-08-15 14:08:00 -04001016 if (current_user_ns() != &init_user_ns) {
1017 code = XFS_ERROR(EINVAL);
1018 goto error_return;
1019 }
1020
Christoph Hellwig7d095252009-06-08 15:33:32 +02001021 if (XFS_IS_QUOTA_RUNNING(mp) &&
1022 XFS_IS_PQUOTA_ON(mp) &&
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001023 xfs_get_projid(ip) != fa->fsx_projid) {
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001024 ASSERT(tp);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001025 code = xfs_qm_vop_chown_reserve(tp, ip, udqp, NULL,
1026 pdqp, capable(CAP_FOWNER) ?
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001027 XFS_QMOPT_FORCE_RES : 0);
1028 if (code) /* out of quota */
1029 goto error_return;
1030 }
1031 }
1032
1033 if (mask & FSX_EXTSIZE) {
1034 /*
1035 * Can't change extent size if any extents are allocated.
1036 */
1037 if (ip->i_d.di_nextents &&
1038 ((ip->i_d.di_extsize << mp->m_sb.sb_blocklog) !=
1039 fa->fsx_extsize)) {
1040 code = XFS_ERROR(EINVAL); /* EFBIG? */
1041 goto error_return;
1042 }
1043
1044 /*
1045 * Extent size must be a multiple of the appropriate block
Dave Chinner53158372011-01-27 12:18:18 +11001046 * size, if set at all. It must also be smaller than the
1047 * maximum extent size supported by the filesystem.
1048 *
1049 * Also, for non-realtime files, limit the extent size hint to
1050 * half the size of the AGs in the filesystem so alignment
1051 * doesn't result in extents larger than an AG.
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001052 */
1053 if (fa->fsx_extsize != 0) {
Dave Chinner53158372011-01-27 12:18:18 +11001054 xfs_extlen_t size;
1055 xfs_fsblock_t extsize_fsb;
1056
1057 extsize_fsb = XFS_B_TO_FSB(mp, fa->fsx_extsize);
1058 if (extsize_fsb > MAXEXTLEN) {
1059 code = XFS_ERROR(EINVAL);
1060 goto error_return;
1061 }
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001062
1063 if (XFS_IS_REALTIME_INODE(ip) ||
1064 ((mask & FSX_XFLAGS) &&
1065 (fa->fsx_xflags & XFS_XFLAG_REALTIME))) {
1066 size = mp->m_sb.sb_rextsize <<
1067 mp->m_sb.sb_blocklog;
1068 } else {
1069 size = mp->m_sb.sb_blocksize;
Dave Chinner53158372011-01-27 12:18:18 +11001070 if (extsize_fsb > mp->m_sb.sb_agblocks / 2) {
1071 code = XFS_ERROR(EINVAL);
1072 goto error_return;
1073 }
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001074 }
1075
1076 if (fa->fsx_extsize % size) {
1077 code = XFS_ERROR(EINVAL);
1078 goto error_return;
1079 }
1080 }
1081 }
1082
1083
1084 if (mask & FSX_XFLAGS) {
1085 /*
1086 * Can't change realtime flag if any extents are allocated.
1087 */
1088 if ((ip->i_d.di_nextents || ip->i_delayed_blks) &&
1089 (XFS_IS_REALTIME_INODE(ip)) !=
1090 (fa->fsx_xflags & XFS_XFLAG_REALTIME)) {
1091 code = XFS_ERROR(EINVAL); /* EFBIG? */
1092 goto error_return;
1093 }
1094
1095 /*
1096 * If realtime flag is set then must have realtime data.
1097 */
1098 if ((fa->fsx_xflags & XFS_XFLAG_REALTIME)) {
1099 if ((mp->m_sb.sb_rblocks == 0) ||
1100 (mp->m_sb.sb_rextsize == 0) ||
1101 (ip->i_d.di_extsize % mp->m_sb.sb_rextsize)) {
1102 code = XFS_ERROR(EINVAL);
1103 goto error_return;
1104 }
1105 }
1106
1107 /*
1108 * Can't modify an immutable/append-only file unless
1109 * we have appropriate permission.
1110 */
1111 if ((ip->i_d.di_flags &
1112 (XFS_DIFLAG_IMMUTABLE|XFS_DIFLAG_APPEND) ||
1113 (fa->fsx_xflags &
1114 (XFS_XFLAG_IMMUTABLE | XFS_XFLAG_APPEND))) &&
1115 !capable(CAP_LINUX_IMMUTABLE)) {
1116 code = XFS_ERROR(EPERM);
1117 goto error_return;
1118 }
1119 }
1120
Christoph Hellwigddc34152011-09-19 15:00:54 +00001121 xfs_trans_ijoin(tp, ip, 0);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001122
1123 /*
1124 * Change file ownership. Must be the owner or privileged.
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001125 */
1126 if (mask & FSX_PROJID) {
1127 /*
1128 * CAP_FSETID overrides the following restrictions:
1129 *
1130 * The set-user-ID and set-group-ID bits of a file will be
1131 * cleared upon successful return from chown()
1132 */
1133 if ((ip->i_d.di_mode & (S_ISUID|S_ISGID)) &&
Dwight Engenfd5e2aa2013-08-15 14:08:00 -04001134 !inode_capable(VFS_I(ip), CAP_FSETID))
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001135 ip->i_d.di_mode &= ~(S_ISUID|S_ISGID);
1136
1137 /*
1138 * Change the ownerships and register quota modifications
1139 * in the transaction.
1140 */
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001141 if (xfs_get_projid(ip) != fa->fsx_projid) {
Christoph Hellwig7d095252009-06-08 15:33:32 +02001142 if (XFS_IS_QUOTA_RUNNING(mp) && XFS_IS_PQUOTA_ON(mp)) {
1143 olddquot = xfs_qm_vop_chown(tp, ip,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001144 &ip->i_pdquot, pdqp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001145 }
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001146 xfs_set_projid(ip, fa->fsx_projid);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001147
1148 /*
1149 * We may have to rev the inode as well as
1150 * the superblock version number since projids didn't
1151 * exist before DINODE_VERSION_2 and SB_VERSION_NLINK.
1152 */
Christoph Hellwig51ce16d2008-11-28 14:23:39 +11001153 if (ip->i_d.di_version == 1)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001154 xfs_bump_ino_vers2(tp, ip);
1155 }
1156
1157 }
1158
1159 if (mask & FSX_EXTSIZE)
1160 ip->i_d.di_extsize = fa->fsx_extsize >> mp->m_sb.sb_blocklog;
Christoph Hellwigf13fae22008-07-21 16:16:15 +10001161 if (mask & FSX_XFLAGS) {
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001162 xfs_set_diflags(ip, fa->fsx_xflags);
Christoph Hellwigf13fae22008-07-21 16:16:15 +10001163 xfs_diflags_to_linux(ip);
1164 }
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001165
Dave Chinnerdcd79a12010-09-28 12:27:25 +10001166 xfs_trans_ichgtime(tp, ip, XFS_ICHGTIME_CHG);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001167 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001168
1169 XFS_STATS_INC(xs_ig_attrchg);
1170
1171 /*
1172 * If this is a synchronous mount, make sure that the
1173 * transaction goes to disk before returning to the user.
1174 * This is slightly sub-optimal in that truncates require
1175 * two sync transactions instead of one for wsync filesystems.
1176 * One for the truncate and one for the timestamps since we
1177 * don't want to change the timestamps unless we're sure the
1178 * truncate worked. Truncates are less than 1% of the laddis
1179 * mix so this probably isn't worth the trouble to optimize.
1180 */
1181 if (mp->m_flags & XFS_MOUNT_WSYNC)
1182 xfs_trans_set_sync(tp);
1183 code = xfs_trans_commit(tp, 0);
1184 xfs_iunlock(ip, lock_flags);
1185
1186 /*
1187 * Release any dquot(s) the inode had kept before chown.
1188 */
Christoph Hellwig7d095252009-06-08 15:33:32 +02001189 xfs_qm_dqrele(olddquot);
1190 xfs_qm_dqrele(udqp);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001191 xfs_qm_dqrele(pdqp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001192
Christoph Hellwig288699f2010-06-23 18:11:15 +10001193 return code;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001194
1195 error_return:
Christoph Hellwig7d095252009-06-08 15:33:32 +02001196 xfs_qm_dqrele(udqp);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001197 xfs_qm_dqrele(pdqp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001198 xfs_trans_cancel(tp, 0);
1199 if (lock_flags)
1200 xfs_iunlock(ip, lock_flags);
1201 return code;
1202}
1203
Christoph Hellwigc83bfab2007-10-11 17:47:00 +10001204STATIC int
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001205xfs_ioc_fssetxattr(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 xfs_inode_t *ip,
1207 struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 void __user *arg)
1209{
1210 struct fsxattr fa;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001211 unsigned int mask;
Jan Karad9457dc2012-06-12 16:20:39 +02001212 int error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001213
1214 if (copy_from_user(&fa, arg, sizeof(fa)))
1215 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001217 mask = FSX_XFLAGS | FSX_EXTSIZE | FSX_PROJID;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001218 if (filp->f_flags & (O_NDELAY|O_NONBLOCK))
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001219 mask |= FSX_NONBLOCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220
Jan Karad9457dc2012-06-12 16:20:39 +02001221 error = mnt_want_write_file(filp);
1222 if (error)
1223 return error;
1224 error = xfs_ioctl_setattr(ip, &fa, mask);
1225 mnt_drop_write_file(filp);
1226 return -error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001227}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001229STATIC int
1230xfs_ioc_getxflags(
1231 xfs_inode_t *ip,
1232 void __user *arg)
1233{
1234 unsigned int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001236 flags = xfs_di2lxflags(ip->i_d.di_flags);
1237 if (copy_to_user(arg, &flags, sizeof(flags)))
1238 return -EFAULT;
1239 return 0;
1240}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001242STATIC int
1243xfs_ioc_setxflags(
1244 xfs_inode_t *ip,
1245 struct file *filp,
1246 void __user *arg)
1247{
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001248 struct fsxattr fa;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001249 unsigned int flags;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001250 unsigned int mask;
Jan Karad9457dc2012-06-12 16:20:39 +02001251 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001253 if (copy_from_user(&flags, arg, sizeof(flags)))
1254 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001256 if (flags & ~(FS_IMMUTABLE_FL | FS_APPEND_FL | \
1257 FS_NOATIME_FL | FS_NODUMP_FL | \
1258 FS_SYNC_FL))
1259 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001261 mask = FSX_XFLAGS;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001262 if (filp->f_flags & (O_NDELAY|O_NONBLOCK))
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001263 mask |= FSX_NONBLOCK;
1264 fa.fsx_xflags = xfs_merge_ioc_xflags(flags, xfs_ip2xflags(ip));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
Jan Karad9457dc2012-06-12 16:20:39 +02001266 error = mnt_want_write_file(filp);
1267 if (error)
1268 return error;
1269 error = xfs_ioctl_setattr(ip, &fa, mask);
1270 mnt_drop_write_file(filp);
1271 return -error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272}
1273
1274STATIC int
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001275xfs_getbmap_format(void **ap, struct getbmapx *bmv, int *full)
1276{
1277 struct getbmap __user *base = *ap;
1278
1279 /* copy only getbmap portion (not getbmapx) */
1280 if (copy_to_user(base, bmv, sizeof(struct getbmap)))
1281 return XFS_ERROR(EFAULT);
1282
1283 *ap += sizeof(struct getbmap);
1284 return 0;
1285}
1286
1287STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288xfs_ioc_getbmap(
Christoph Hellwig993386c2007-08-28 16:12:30 +10001289 struct xfs_inode *ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 int ioflags,
1291 unsigned int cmd,
1292 void __user *arg)
1293{
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001294 struct getbmapx bmx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 int error;
1296
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001297 if (copy_from_user(&bmx, arg, sizeof(struct getbmapx)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 return -XFS_ERROR(EFAULT);
1299
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001300 if (bmx.bmv_count < 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 return -XFS_ERROR(EINVAL);
1302
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001303 bmx.bmv_iflags = (cmd == XFS_IOC_GETBMAPA ? BMV_IF_ATTRFORK : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 if (ioflags & IO_INVIS)
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001305 bmx.bmv_iflags |= BMV_IF_NO_DMAPI_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001307 error = xfs_getbmap(ip, &bmx, xfs_getbmap_format,
1308 (struct getbmap *)arg+1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 if (error)
1310 return -error;
1311
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001312 /* copy back header - only size of getbmap */
1313 if (copy_to_user(arg, &bmx, sizeof(struct getbmap)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 return -XFS_ERROR(EFAULT);
1315 return 0;
1316}
1317
1318STATIC int
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001319xfs_getbmapx_format(void **ap, struct getbmapx *bmv, int *full)
1320{
1321 struct getbmapx __user *base = *ap;
1322
1323 if (copy_to_user(base, bmv, sizeof(struct getbmapx)))
1324 return XFS_ERROR(EFAULT);
1325
1326 *ap += sizeof(struct getbmapx);
1327 return 0;
1328}
1329
1330STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331xfs_ioc_getbmapx(
Christoph Hellwig993386c2007-08-28 16:12:30 +10001332 struct xfs_inode *ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 void __user *arg)
1334{
1335 struct getbmapx bmx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 int error;
1337
1338 if (copy_from_user(&bmx, arg, sizeof(bmx)))
1339 return -XFS_ERROR(EFAULT);
1340
1341 if (bmx.bmv_count < 2)
1342 return -XFS_ERROR(EINVAL);
1343
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001344 if (bmx.bmv_iflags & (~BMV_IF_VALID))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 return -XFS_ERROR(EINVAL);
1346
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001347 error = xfs_getbmap(ip, &bmx, xfs_getbmapx_format,
1348 (struct getbmapx *)arg+1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 if (error)
1350 return -error;
1351
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001352 /* copy back header */
1353 if (copy_to_user(arg, &bmx, sizeof(struct getbmapx)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 return -XFS_ERROR(EFAULT);
1355
1356 return 0;
1357}
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001358
Dave Chinnera133d952013-08-12 20:49:48 +10001359int
1360xfs_ioc_swapext(
1361 xfs_swapext_t *sxp)
1362{
1363 xfs_inode_t *ip, *tip;
1364 struct fd f, tmp;
1365 int error = 0;
1366
1367 /* Pull information for the target fd */
1368 f = fdget((int)sxp->sx_fdtarget);
1369 if (!f.file) {
1370 error = XFS_ERROR(EINVAL);
1371 goto out;
1372 }
1373
1374 if (!(f.file->f_mode & FMODE_WRITE) ||
1375 !(f.file->f_mode & FMODE_READ) ||
1376 (f.file->f_flags & O_APPEND)) {
1377 error = XFS_ERROR(EBADF);
1378 goto out_put_file;
1379 }
1380
1381 tmp = fdget((int)sxp->sx_fdtmp);
1382 if (!tmp.file) {
1383 error = XFS_ERROR(EINVAL);
1384 goto out_put_file;
1385 }
1386
1387 if (!(tmp.file->f_mode & FMODE_WRITE) ||
1388 !(tmp.file->f_mode & FMODE_READ) ||
1389 (tmp.file->f_flags & O_APPEND)) {
1390 error = XFS_ERROR(EBADF);
1391 goto out_put_tmp_file;
1392 }
1393
1394 if (IS_SWAPFILE(file_inode(f.file)) ||
1395 IS_SWAPFILE(file_inode(tmp.file))) {
1396 error = XFS_ERROR(EINVAL);
1397 goto out_put_tmp_file;
1398 }
1399
1400 ip = XFS_I(file_inode(f.file));
1401 tip = XFS_I(file_inode(tmp.file));
1402
1403 if (ip->i_mount != tip->i_mount) {
1404 error = XFS_ERROR(EINVAL);
1405 goto out_put_tmp_file;
1406 }
1407
1408 if (ip->i_ino == tip->i_ino) {
1409 error = XFS_ERROR(EINVAL);
1410 goto out_put_tmp_file;
1411 }
1412
1413 if (XFS_FORCED_SHUTDOWN(ip->i_mount)) {
1414 error = XFS_ERROR(EIO);
1415 goto out_put_tmp_file;
1416 }
1417
1418 error = xfs_swap_extents(ip, tip, sxp);
1419
1420 out_put_tmp_file:
1421 fdput(tmp);
1422 out_put_file:
1423 fdput(f);
1424 out:
1425 return error;
1426}
1427
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001428/*
1429 * Note: some of the ioctl's return positive numbers as a
1430 * byte count indicating success, such as readlink_by_handle.
1431 * So we don't "sign flip" like most other routines. This means
1432 * true errors need to be returned as a negative value.
1433 */
1434long
1435xfs_file_ioctl(
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001436 struct file *filp,
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001437 unsigned int cmd,
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001438 unsigned long p)
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001439{
Al Viro496ad9a2013-01-23 17:07:38 -05001440 struct inode *inode = file_inode(filp);
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001441 struct xfs_inode *ip = XFS_I(inode);
1442 struct xfs_mount *mp = ip->i_mount;
1443 void __user *arg = (void __user *)p;
1444 int ioflags = 0;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001445 int error;
1446
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001447 if (filp->f_mode & FMODE_NOCMTIME)
1448 ioflags |= IO_INVIS;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001449
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001450 trace_xfs_file_ioctl(ip);
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001451
1452 switch (cmd) {
Christoph Hellwiga46db602011-01-07 13:02:04 +00001453 case FITRIM:
1454 return xfs_ioc_trim(mp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001455 case XFS_IOC_ALLOCSP:
1456 case XFS_IOC_FREESP:
1457 case XFS_IOC_RESVSP:
1458 case XFS_IOC_UNRESVSP:
1459 case XFS_IOC_ALLOCSP64:
1460 case XFS_IOC_FREESP64:
1461 case XFS_IOC_RESVSP64:
Dave Chinner44722352010-08-24 12:02:11 +10001462 case XFS_IOC_UNRESVSP64:
1463 case XFS_IOC_ZERO_RANGE: {
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001464 xfs_flock64_t bf;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001465
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001466 if (copy_from_user(&bf, arg, sizeof(bf)))
1467 return -XFS_ERROR(EFAULT);
1468 return xfs_ioc_space(ip, inode, filp, ioflags, cmd, &bf);
1469 }
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001470 case XFS_IOC_DIOINFO: {
1471 struct dioattr da;
1472 xfs_buftarg_t *target =
1473 XFS_IS_REALTIME_INODE(ip) ?
1474 mp->m_rtdev_targp : mp->m_ddev_targp;
1475
1476 da.d_mem = da.d_miniosz = 1 << target->bt_sshift;
1477 da.d_maxiosz = INT_MAX & ~(da.d_miniosz - 1);
1478
1479 if (copy_to_user(arg, &da, sizeof(da)))
1480 return -XFS_ERROR(EFAULT);
1481 return 0;
1482 }
1483
1484 case XFS_IOC_FSBULKSTAT_SINGLE:
1485 case XFS_IOC_FSBULKSTAT:
1486 case XFS_IOC_FSINUMBERS:
1487 return xfs_ioc_bulkstat(mp, cmd, arg);
1488
1489 case XFS_IOC_FSGEOMETRY_V1:
1490 return xfs_ioc_fsgeometry_v1(mp, arg);
1491
1492 case XFS_IOC_FSGEOMETRY:
1493 return xfs_ioc_fsgeometry(mp, arg);
1494
1495 case XFS_IOC_GETVERSION:
1496 return put_user(inode->i_generation, (int __user *)arg);
1497
1498 case XFS_IOC_FSGETXATTR:
1499 return xfs_ioc_fsgetxattr(ip, 0, arg);
1500 case XFS_IOC_FSGETXATTRA:
1501 return xfs_ioc_fsgetxattr(ip, 1, arg);
Lachlan McIlroy3b2816b2008-04-18 12:43:35 +10001502 case XFS_IOC_FSSETXATTR:
Lachlan McIlroy65e67f52008-04-18 12:59:45 +10001503 return xfs_ioc_fssetxattr(ip, filp, arg);
1504 case XFS_IOC_GETXFLAGS:
1505 return xfs_ioc_getxflags(ip, arg);
1506 case XFS_IOC_SETXFLAGS:
1507 return xfs_ioc_setxflags(ip, filp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001508
1509 case XFS_IOC_FSSETDM: {
1510 struct fsdmidata dmi;
1511
1512 if (copy_from_user(&dmi, arg, sizeof(dmi)))
1513 return -XFS_ERROR(EFAULT);
1514
Jan Karad9457dc2012-06-12 16:20:39 +02001515 error = mnt_want_write_file(filp);
1516 if (error)
1517 return error;
1518
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001519 error = xfs_set_dmattrs(ip, dmi.fsd_dmevmask,
1520 dmi.fsd_dmstate);
Jan Karad9457dc2012-06-12 16:20:39 +02001521 mnt_drop_write_file(filp);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001522 return -error;
1523 }
1524
1525 case XFS_IOC_GETBMAP:
1526 case XFS_IOC_GETBMAPA:
1527 return xfs_ioc_getbmap(ip, ioflags, cmd, arg);
1528
1529 case XFS_IOC_GETBMAPX:
1530 return xfs_ioc_getbmapx(ip, arg);
1531
1532 case XFS_IOC_FD_TO_HANDLE:
1533 case XFS_IOC_PATH_TO_HANDLE:
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001534 case XFS_IOC_PATH_TO_FSHANDLE: {
1535 xfs_fsop_handlereq_t hreq;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001536
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001537 if (copy_from_user(&hreq, arg, sizeof(hreq)))
1538 return -XFS_ERROR(EFAULT);
1539 return xfs_find_handle(cmd, &hreq);
1540 }
1541 case XFS_IOC_OPEN_BY_HANDLE: {
1542 xfs_fsop_handlereq_t hreq;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001543
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001544 if (copy_from_user(&hreq, arg, sizeof(xfs_fsop_handlereq_t)))
1545 return -XFS_ERROR(EFAULT);
Christoph Hellwigd296d302009-01-19 02:02:57 +01001546 return xfs_open_by_handle(filp, &hreq);
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001547 }
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001548 case XFS_IOC_FSSETDM_BY_HANDLE:
Christoph Hellwigd296d302009-01-19 02:02:57 +01001549 return xfs_fssetdm_by_handle(filp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001550
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001551 case XFS_IOC_READLINK_BY_HANDLE: {
1552 xfs_fsop_handlereq_t hreq;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001553
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001554 if (copy_from_user(&hreq, arg, sizeof(xfs_fsop_handlereq_t)))
1555 return -XFS_ERROR(EFAULT);
Christoph Hellwigd296d302009-01-19 02:02:57 +01001556 return xfs_readlink_by_handle(filp, &hreq);
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001557 }
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001558 case XFS_IOC_ATTRLIST_BY_HANDLE:
Christoph Hellwigd296d302009-01-19 02:02:57 +01001559 return xfs_attrlist_by_handle(filp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001560
1561 case XFS_IOC_ATTRMULTI_BY_HANDLE:
Christoph Hellwigd296d302009-01-19 02:02:57 +01001562 return xfs_attrmulti_by_handle(filp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001563
1564 case XFS_IOC_SWAPEXT: {
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001565 struct xfs_swapext sxp;
1566
1567 if (copy_from_user(&sxp, arg, sizeof(xfs_swapext_t)))
1568 return -XFS_ERROR(EFAULT);
Jan Karad9457dc2012-06-12 16:20:39 +02001569 error = mnt_want_write_file(filp);
1570 if (error)
1571 return error;
Dave Chinnera133d952013-08-12 20:49:48 +10001572 error = xfs_ioc_swapext(&sxp);
Jan Karad9457dc2012-06-12 16:20:39 +02001573 mnt_drop_write_file(filp);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001574 return -error;
1575 }
1576
1577 case XFS_IOC_FSCOUNTS: {
1578 xfs_fsop_counts_t out;
1579
1580 error = xfs_fs_counts(mp, &out);
1581 if (error)
1582 return -error;
1583
1584 if (copy_to_user(arg, &out, sizeof(out)))
1585 return -XFS_ERROR(EFAULT);
1586 return 0;
1587 }
1588
1589 case XFS_IOC_SET_RESBLKS: {
1590 xfs_fsop_resblks_t inout;
1591 __uint64_t in;
1592
1593 if (!capable(CAP_SYS_ADMIN))
1594 return -EPERM;
1595
Eric Sandeend5db0f92010-02-05 22:59:53 +00001596 if (mp->m_flags & XFS_MOUNT_RDONLY)
1597 return -XFS_ERROR(EROFS);
1598
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001599 if (copy_from_user(&inout, arg, sizeof(inout)))
1600 return -XFS_ERROR(EFAULT);
1601
Jan Karad9457dc2012-06-12 16:20:39 +02001602 error = mnt_want_write_file(filp);
1603 if (error)
1604 return error;
1605
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001606 /* input parameter is passed in resblks field of structure */
1607 in = inout.resblks;
1608 error = xfs_reserve_blocks(mp, &in, &inout);
Jan Karad9457dc2012-06-12 16:20:39 +02001609 mnt_drop_write_file(filp);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001610 if (error)
1611 return -error;
1612
1613 if (copy_to_user(arg, &inout, sizeof(inout)))
1614 return -XFS_ERROR(EFAULT);
1615 return 0;
1616 }
1617
1618 case XFS_IOC_GET_RESBLKS: {
1619 xfs_fsop_resblks_t out;
1620
1621 if (!capable(CAP_SYS_ADMIN))
1622 return -EPERM;
1623
1624 error = xfs_reserve_blocks(mp, NULL, &out);
1625 if (error)
1626 return -error;
1627
1628 if (copy_to_user(arg, &out, sizeof(out)))
1629 return -XFS_ERROR(EFAULT);
1630
1631 return 0;
1632 }
1633
1634 case XFS_IOC_FSGROWFSDATA: {
1635 xfs_growfs_data_t in;
1636
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001637 if (copy_from_user(&in, arg, sizeof(in)))
1638 return -XFS_ERROR(EFAULT);
1639
Jan Karad9457dc2012-06-12 16:20:39 +02001640 error = mnt_want_write_file(filp);
1641 if (error)
1642 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001643 error = xfs_growfs_data(mp, &in);
Jan Karad9457dc2012-06-12 16:20:39 +02001644 mnt_drop_write_file(filp);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001645 return -error;
1646 }
1647
1648 case XFS_IOC_FSGROWFSLOG: {
1649 xfs_growfs_log_t in;
1650
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001651 if (copy_from_user(&in, arg, sizeof(in)))
1652 return -XFS_ERROR(EFAULT);
1653
Jan Karad9457dc2012-06-12 16:20:39 +02001654 error = mnt_want_write_file(filp);
1655 if (error)
1656 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001657 error = xfs_growfs_log(mp, &in);
Jan Karad9457dc2012-06-12 16:20:39 +02001658 mnt_drop_write_file(filp);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001659 return -error;
1660 }
1661
1662 case XFS_IOC_FSGROWFSRT: {
1663 xfs_growfs_rt_t in;
1664
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001665 if (copy_from_user(&in, arg, sizeof(in)))
1666 return -XFS_ERROR(EFAULT);
1667
Jan Karad9457dc2012-06-12 16:20:39 +02001668 error = mnt_want_write_file(filp);
1669 if (error)
1670 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001671 error = xfs_growfs_rt(mp, &in);
Jan Karad9457dc2012-06-12 16:20:39 +02001672 mnt_drop_write_file(filp);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001673 return -error;
1674 }
1675
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001676 case XFS_IOC_GOINGDOWN: {
1677 __uint32_t in;
1678
1679 if (!capable(CAP_SYS_ADMIN))
1680 return -EPERM;
1681
1682 if (get_user(in, (__uint32_t __user *)arg))
1683 return -XFS_ERROR(EFAULT);
1684
1685 error = xfs_fs_goingdown(mp, in);
1686 return -error;
1687 }
1688
1689 case XFS_IOC_ERROR_INJECTION: {
1690 xfs_error_injection_t in;
1691
1692 if (!capable(CAP_SYS_ADMIN))
1693 return -EPERM;
1694
1695 if (copy_from_user(&in, arg, sizeof(in)))
1696 return -XFS_ERROR(EFAULT);
1697
1698 error = xfs_errortag_add(in.errtag, mp);
1699 return -error;
1700 }
1701
1702 case XFS_IOC_ERROR_CLEARALL:
1703 if (!capable(CAP_SYS_ADMIN))
1704 return -EPERM;
1705
1706 error = xfs_errortag_clearall(mp, 1);
1707 return -error;
1708
Brian Foster8ca149d2012-11-07 12:21:12 -05001709 case XFS_IOC_FREE_EOFBLOCKS: {
Dwight Engenb9fe5052013-08-15 14:08:02 -04001710 struct xfs_fs_eofblocks eofb;
1711 struct xfs_eofblocks keofb;
Brian Foster8ca149d2012-11-07 12:21:12 -05001712
Dwight Engen8c567a72013-08-15 14:08:03 -04001713 if (!capable(CAP_SYS_ADMIN))
1714 return -EPERM;
1715
1716 if (mp->m_flags & XFS_MOUNT_RDONLY)
1717 return -XFS_ERROR(EROFS);
1718
Brian Foster8ca149d2012-11-07 12:21:12 -05001719 if (copy_from_user(&eofb, arg, sizeof(eofb)))
1720 return -XFS_ERROR(EFAULT);
1721
Dwight Engenb9fe5052013-08-15 14:08:02 -04001722 error = xfs_fs_eofblocks_from_user(&eofb, &keofb);
1723 if (error)
1724 return -error;
Brian Foster8ca149d2012-11-07 12:21:12 -05001725
Dwight Engenb9fe5052013-08-15 14:08:02 -04001726 return -xfs_icache_free_eofblocks(mp, &keofb);
Brian Foster8ca149d2012-11-07 12:21:12 -05001727 }
1728
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001729 default:
1730 return -ENOTTY;
1731 }
1732}