blob: c6c62d12a934ce1ceb895fa525f439989bcbbeb2 [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"
Dave Chinner70a9883c2013-10-23 10:36:05 +110021#include "xfs_shared.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "xfs_log.h"
23#include "xfs_trans.h"
24#include "xfs_sb.h"
Nathan Scotta844f452005-11-02 14:38:42 +110025#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include "xfs_alloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include "xfs_bmap_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "xfs_dinode.h"
30#include "xfs_inode.h"
Hannes Eder7bf446f2009-03-05 15:20:25 +010031#include "xfs_ioctl.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "xfs_rtalloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include "xfs_itable.h"
Nathan Scotta844f452005-11-02 14:38:42 +110034#include "xfs_error.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "xfs_attr.h"
Nathan Scotta844f452005-11-02 14:38:42 +110036#include "xfs_bmap.h"
Dave Chinner68988112013-08-12 20:49:42 +100037#include "xfs_bmap_util.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include "xfs_buf_item.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include "xfs_fsops.h"
Christoph Hellwiga46db602011-01-07 13:02:04 +000040#include "xfs_discard.h"
Christoph Hellwig25fe55e2008-07-18 17:13:20 +100041#include "xfs_quota.h"
42#include "xfs_inode_item.h"
Christoph Hellwigd296d302009-01-19 02:02:57 +010043#include "xfs_export.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000044#include "xfs_trace.h"
Brian Foster8ca149d2012-11-07 12:21:12 -050045#include "xfs_icache.h"
Dave Chinnerc24b5df2013-08-12 20:49:45 +100046#include "xfs_symlink.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080048#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <linux/dcache.h>
50#include <linux/mount.h>
51#include <linux/namei.h>
52#include <linux/pagemap.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090053#include <linux/slab.h>
Christoph Hellwigd296d302009-01-19 02:02:57 +010054#include <linux/exportfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56/*
57 * xfs_find_handle maps from userspace xfs_fsop_handlereq structure to
58 * a file or fs handle.
59 *
60 * XFS_IOC_PATH_TO_FSHANDLE
61 * returns fs handle for a mount point or path within that mount point
62 * XFS_IOC_FD_TO_HANDLE
63 * returns full handle for a FD opened in user space
64 * XFS_IOC_PATH_TO_HANDLE
65 * returns full handle for a path
66 */
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -060067int
Linus Torvalds1da177e2005-04-16 15:20:36 -070068xfs_find_handle(
69 unsigned int cmd,
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -060070 xfs_fsop_handlereq_t *hreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071{
72 int hsize;
73 xfs_handle_t handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 struct inode *inode;
Dave Chinnera30b0362013-09-02 20:49:36 +100075 struct fd f = {NULL};
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010076 struct path path;
Al Viro2903ff02012-08-28 12:52:22 -040077 int error;
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010078 struct xfs_inode *ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010080 if (cmd == XFS_IOC_FD_TO_HANDLE) {
Al Viro2903ff02012-08-28 12:52:22 -040081 f = fdget(hreq->fd);
82 if (!f.file)
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010083 return -EBADF;
Al Viro496ad9a2013-01-23 17:07:38 -050084 inode = file_inode(f.file);
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010085 } else {
86 error = user_lpath((const char __user *)hreq->path, &path);
87 if (error)
88 return error;
89 inode = path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 }
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010091 ip = XFS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010093 /*
94 * We can only generate handles for inodes residing on a XFS filesystem,
95 * and only for regular files, directories or symbolic links.
96 */
97 error = -EINVAL;
98 if (inode->i_sb->s_magic != XFS_SB_MAGIC)
99 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100101 error = -EBADF;
102 if (!S_ISREG(inode->i_mode) &&
103 !S_ISDIR(inode->i_mode) &&
104 !S_ISLNK(inode->i_mode))
105 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100108 memcpy(&handle.ha_fsid, ip->i_mount->m_fixedfsid, sizeof(xfs_fsid_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100110 if (cmd == XFS_IOC_PATH_TO_FSHANDLE) {
111 /*
112 * This handle only contains an fsid, zero the rest.
113 */
114 memset(&handle.ha_fid, 0, sizeof(handle.ha_fid));
115 hsize = sizeof(xfs_fsid_t);
116 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 int lock_mode;
118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 lock_mode = xfs_ilock_map_shared(ip);
Christoph Hellwigc6143912007-09-14 15:22:37 +1000120 handle.ha_fid.fid_len = sizeof(xfs_fid_t) -
121 sizeof(handle.ha_fid.fid_len);
122 handle.ha_fid.fid_pad = 0;
123 handle.ha_fid.fid_gen = ip->i_d.di_gen;
124 handle.ha_fid.fid_ino = ip->i_ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 xfs_iunlock_map_shared(ip, lock_mode);
126
127 hsize = XFS_HSIZE(handle);
128 }
129
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100130 error = -EFAULT;
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600131 if (copy_to_user(hreq->ohandle, &handle, hsize) ||
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100132 copy_to_user(hreq->ohandlen, &hsize, sizeof(__s32)))
133 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100135 error = 0;
136
137 out_put:
138 if (cmd == XFS_IOC_FD_TO_HANDLE)
Al Viro2903ff02012-08-28 12:52:22 -0400139 fdput(f);
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100140 else
141 path_put(&path);
142 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143}
144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145/*
Christoph Hellwigd296d302009-01-19 02:02:57 +0100146 * No need to do permission checks on the various pathname components
147 * as the handle operations are privileged.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 */
149STATIC int
Christoph Hellwigd296d302009-01-19 02:02:57 +0100150xfs_handle_acceptable(
151 void *context,
152 struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
Christoph Hellwigd296d302009-01-19 02:02:57 +0100154 return 1;
155}
156
157/*
158 * Convert userspace handle data into a dentry.
159 */
160struct dentry *
161xfs_handle_to_dentry(
162 struct file *parfilp,
163 void __user *uhandle,
164 u32 hlen)
165{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 xfs_handle_t handle;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100167 struct xfs_fid64 fid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169 /*
170 * Only allow handle opens under a directory.
171 */
Al Viro496ad9a2013-01-23 17:07:38 -0500172 if (!S_ISDIR(file_inode(parfilp)->i_mode))
Christoph Hellwigd296d302009-01-19 02:02:57 +0100173 return ERR_PTR(-ENOTDIR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Christoph Hellwigd296d302009-01-19 02:02:57 +0100175 if (hlen != sizeof(xfs_handle_t))
176 return ERR_PTR(-EINVAL);
177 if (copy_from_user(&handle, uhandle, hlen))
178 return ERR_PTR(-EFAULT);
179 if (handle.ha_fid.fid_len !=
180 sizeof(handle.ha_fid) - sizeof(handle.ha_fid.fid_len))
181 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Christoph Hellwigd296d302009-01-19 02:02:57 +0100183 memset(&fid, 0, sizeof(struct fid));
184 fid.ino = handle.ha_fid.fid_ino;
185 fid.gen = handle.ha_fid.fid_gen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Christoph Hellwigd296d302009-01-19 02:02:57 +0100187 return exportfs_decode_fh(parfilp->f_path.mnt, (struct fid *)&fid, 3,
188 FILEID_INO32_GEN | XFS_FILEID_TYPE_64FLAG,
189 xfs_handle_acceptable, NULL);
190}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Christoph Hellwigd296d302009-01-19 02:02:57 +0100192STATIC struct dentry *
193xfs_handlereq_to_dentry(
194 struct file *parfilp,
195 xfs_fsop_handlereq_t *hreq)
196{
197 return xfs_handle_to_dentry(parfilp, hreq->ihandle, hreq->ihandlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198}
199
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600200int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201xfs_open_by_handle(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 struct file *parfilp,
Christoph Hellwigd296d302009-01-19 02:02:57 +0100203 xfs_fsop_handlereq_t *hreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204{
David Howells745ca242008-11-14 10:39:22 +1100205 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 int error;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100207 int fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 int permflag;
209 struct file *filp;
210 struct inode *inode;
211 struct dentry *dentry;
Dave Chinner1a1d7722012-03-22 05:15:06 +0000212 fmode_t fmode;
Al Viro765927b2012-06-26 21:58:53 +0400213 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
215 if (!capable(CAP_SYS_ADMIN))
216 return -XFS_ERROR(EPERM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Christoph Hellwigd296d302009-01-19 02:02:57 +0100218 dentry = xfs_handlereq_to_dentry(parfilp, hreq);
219 if (IS_ERR(dentry))
220 return PTR_ERR(dentry);
221 inode = dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
223 /* Restrict xfs_open_by_handle to directories & regular files. */
224 if (!(S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode))) {
Christoph Hellwigd296d302009-01-19 02:02:57 +0100225 error = -XFS_ERROR(EPERM);
226 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 }
228
229#if BITS_PER_LONG != 32
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600230 hreq->oflags |= O_LARGEFILE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231#endif
Christoph Hellwigd296d302009-01-19 02:02:57 +0100232
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600233 permflag = hreq->oflags;
Dave Chinner1a1d7722012-03-22 05:15:06 +0000234 fmode = OPEN_FMODE(permflag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 if ((!(permflag & O_APPEND) || (permflag & O_TRUNC)) &&
Dave Chinner1a1d7722012-03-22 05:15:06 +0000236 (fmode & FMODE_WRITE) && IS_APPEND(inode)) {
Christoph Hellwigd296d302009-01-19 02:02:57 +0100237 error = -XFS_ERROR(EPERM);
238 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 }
240
Dave Chinner1a1d7722012-03-22 05:15:06 +0000241 if ((fmode & FMODE_WRITE) && IS_IMMUTABLE(inode)) {
Christoph Hellwigd296d302009-01-19 02:02:57 +0100242 error = -XFS_ERROR(EACCES);
243 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 }
245
246 /* Can't write directories. */
Dave Chinner1a1d7722012-03-22 05:15:06 +0000247 if (S_ISDIR(inode->i_mode) && (fmode & FMODE_WRITE)) {
Christoph Hellwigd296d302009-01-19 02:02:57 +0100248 error = -XFS_ERROR(EISDIR);
249 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 }
251
Yann Droneaud862a6292013-07-02 18:39:34 +0200252 fd = get_unused_fd_flags(0);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100253 if (fd < 0) {
254 error = fd;
255 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 }
257
Al Viro765927b2012-06-26 21:58:53 +0400258 path.mnt = parfilp->f_path.mnt;
259 path.dentry = dentry;
260 filp = dentry_open(&path, hreq->oflags, cred);
261 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 if (IS_ERR(filp)) {
Christoph Hellwigd296d302009-01-19 02:02:57 +0100263 put_unused_fd(fd);
264 return PTR_ERR(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 }
Christoph Hellwig4d4be482008-12-09 04:47:33 -0500266
Al Viro03209372011-07-25 20:54:24 -0400267 if (S_ISREG(inode->i_mode)) {
Vlad Apostolov2e2e7bb2006-11-11 18:04:47 +1100268 filp->f_flags |= O_NOATIME;
Christoph Hellwig4d4be482008-12-09 04:47:33 -0500269 filp->f_mode |= FMODE_NOCMTIME;
Vlad Apostolov2e2e7bb2006-11-11 18:04:47 +1100270 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
Christoph Hellwigd296d302009-01-19 02:02:57 +0100272 fd_install(fd, filp);
273 return fd;
274
275 out_dput:
276 dput(dentry);
277 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278}
279
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000280/*
281 * This is a copy from fs/namei.c:vfs_readlink(), except for removing it's
282 * unused first argument.
283 */
284STATIC int
285do_readlink(
286 char __user *buffer,
287 int buflen,
288 const char *link)
289{
290 int len;
291
292 len = PTR_ERR(link);
293 if (IS_ERR(link))
294 goto out;
295
296 len = strlen(link);
297 if (len > (unsigned) buflen)
298 len = buflen;
299 if (copy_to_user(buffer, link, len))
300 len = -EFAULT;
301 out:
302 return len;
303}
304
305
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600306int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307xfs_readlink_by_handle(
Christoph Hellwigd296d302009-01-19 02:02:57 +0100308 struct file *parfilp,
309 xfs_fsop_handlereq_t *hreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310{
Christoph Hellwigd296d302009-01-19 02:02:57 +0100311 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 __u32 olen;
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000313 void *link;
314 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
316 if (!capable(CAP_SYS_ADMIN))
317 return -XFS_ERROR(EPERM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Christoph Hellwigd296d302009-01-19 02:02:57 +0100319 dentry = xfs_handlereq_to_dentry(parfilp, hreq);
320 if (IS_ERR(dentry))
321 return PTR_ERR(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
323 /* Restrict this handle operation to symlinks only. */
Christoph Hellwigd296d302009-01-19 02:02:57 +0100324 if (!S_ISLNK(dentry->d_inode->i_mode)) {
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000325 error = -XFS_ERROR(EINVAL);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100326 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 }
328
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600329 if (copy_from_user(&olen, hreq->ohandlen, sizeof(__u32))) {
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000330 error = -XFS_ERROR(EFAULT);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100331 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000334 link = kmalloc(MAXPATHLEN+1, GFP_KERNEL);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100335 if (!link) {
336 error = -XFS_ERROR(ENOMEM);
337 goto out_dput;
338 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
Christoph Hellwigd296d302009-01-19 02:02:57 +0100340 error = -xfs_readlink(XFS_I(dentry->d_inode), link);
Nathan Scott67fcaa72006-06-09 17:00:52 +1000341 if (error)
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000342 goto out_kfree;
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600343 error = do_readlink(hreq->ohandle, olen, link);
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000344 if (error)
345 goto out_kfree;
Nathan Scott67fcaa72006-06-09 17:00:52 +1000346
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000347 out_kfree:
348 kfree(link);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100349 out_dput:
350 dput(dentry);
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000351 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352}
353
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000354int
355xfs_set_dmattrs(
356 xfs_inode_t *ip,
357 u_int evmask,
358 u_int16_t state)
359{
360 xfs_mount_t *mp = ip->i_mount;
361 xfs_trans_t *tp;
362 int error;
363
364 if (!capable(CAP_SYS_ADMIN))
365 return XFS_ERROR(EPERM);
366
367 if (XFS_FORCED_SHUTDOWN(mp))
368 return XFS_ERROR(EIO);
369
370 tp = xfs_trans_alloc(mp, XFS_TRANS_SET_DMATTRS);
Jie Liu3d3c8b52013-08-12 20:49:59 +1000371 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_ichange, 0, 0);
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000372 if (error) {
373 xfs_trans_cancel(tp, 0);
374 return error;
375 }
376 xfs_ilock(ip, XFS_ILOCK_EXCL);
377 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
378
379 ip->i_d.di_dmevmask = evmask;
380 ip->i_d.di_dmstate = state;
381
382 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
383 error = xfs_trans_commit(tp, 0);
384
385 return error;
386}
387
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388STATIC int
389xfs_fssetdm_by_handle(
Christoph Hellwigd296d302009-01-19 02:02:57 +0100390 struct file *parfilp,
391 void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392{
393 int error;
394 struct fsdmidata fsd;
395 xfs_fsop_setdm_handlereq_t dmhreq;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100396 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
398 if (!capable(CAP_MKNOD))
399 return -XFS_ERROR(EPERM);
400 if (copy_from_user(&dmhreq, arg, sizeof(xfs_fsop_setdm_handlereq_t)))
401 return -XFS_ERROR(EFAULT);
402
Jan Karad9457dc2012-06-12 16:20:39 +0200403 error = mnt_want_write_file(parfilp);
404 if (error)
405 return error;
406
Christoph Hellwigd296d302009-01-19 02:02:57 +0100407 dentry = xfs_handlereq_to_dentry(parfilp, &dmhreq.hreq);
Jan Karad9457dc2012-06-12 16:20:39 +0200408 if (IS_ERR(dentry)) {
409 mnt_drop_write_file(parfilp);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100410 return PTR_ERR(dentry);
Jan Karad9457dc2012-06-12 16:20:39 +0200411 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
Christoph Hellwigd296d302009-01-19 02:02:57 +0100413 if (IS_IMMUTABLE(dentry->d_inode) || IS_APPEND(dentry->d_inode)) {
Christoph Hellwig6e7f75e2007-10-11 18:09:50 +1000414 error = -XFS_ERROR(EPERM);
415 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 }
417
418 if (copy_from_user(&fsd, dmhreq.data, sizeof(fsd))) {
Christoph Hellwig6e7f75e2007-10-11 18:09:50 +1000419 error = -XFS_ERROR(EFAULT);
420 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 }
422
Christoph Hellwigd296d302009-01-19 02:02:57 +0100423 error = -xfs_set_dmattrs(XFS_I(dentry->d_inode), fsd.fsd_dmevmask,
Christoph Hellwig6e7f75e2007-10-11 18:09:50 +1000424 fsd.fsd_dmstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Christoph Hellwig6e7f75e2007-10-11 18:09:50 +1000426 out:
Jan Karad9457dc2012-06-12 16:20:39 +0200427 mnt_drop_write_file(parfilp);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100428 dput(dentry);
Christoph Hellwig6e7f75e2007-10-11 18:09:50 +1000429 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430}
431
432STATIC int
433xfs_attrlist_by_handle(
Christoph Hellwigd296d302009-01-19 02:02:57 +0100434 struct file *parfilp,
435 void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436{
Christoph Hellwigd296d302009-01-19 02:02:57 +0100437 int error = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 attrlist_cursor_kern_t *cursor;
439 xfs_fsop_attrlist_handlereq_t al_hreq;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100440 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 char *kbuf;
442
443 if (!capable(CAP_SYS_ADMIN))
444 return -XFS_ERROR(EPERM);
445 if (copy_from_user(&al_hreq, arg, sizeof(xfs_fsop_attrlist_handlereq_t)))
446 return -XFS_ERROR(EFAULT);
447 if (al_hreq.buflen > XATTR_LIST_MAX)
448 return -XFS_ERROR(EINVAL);
449
Christoph Hellwig90ad58a2008-06-27 13:32:19 +1000450 /*
451 * Reject flags, only allow namespaces.
452 */
453 if (al_hreq.flags & ~(ATTR_ROOT | ATTR_SECURE))
454 return -XFS_ERROR(EINVAL);
455
Christoph Hellwigd296d302009-01-19 02:02:57 +0100456 dentry = xfs_handlereq_to_dentry(parfilp, &al_hreq.hreq);
457 if (IS_ERR(dentry))
458 return PTR_ERR(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
Dave Chinnerfdd3cce2013-09-02 20:53:00 +1000460 kbuf = kmem_zalloc_large(al_hreq.buflen, KM_SLEEP);
461 if (!kbuf)
462 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
464 cursor = (attrlist_cursor_kern_t *)&al_hreq.pos;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100465 error = -xfs_attr_list(XFS_I(dentry->d_inode), kbuf, al_hreq.buflen,
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000466 al_hreq.flags, cursor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 if (error)
468 goto out_kfree;
469
470 if (copy_to_user(al_hreq.buffer, kbuf, al_hreq.buflen))
471 error = -EFAULT;
472
Dave Chinnerfdd3cce2013-09-02 20:53:00 +1000473out_kfree:
474 kmem_free(kbuf);
475out_dput:
Christoph Hellwigd296d302009-01-19 02:02:57 +0100476 dput(dentry);
477 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478}
479
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600480int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481xfs_attrmulti_attr_get(
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000482 struct inode *inode,
Dave Chinnera9273ca2010-01-20 10:47:48 +1100483 unsigned char *name,
484 unsigned char __user *ubuf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 __uint32_t *len,
486 __uint32_t flags)
487{
Dave Chinnera9273ca2010-01-20 10:47:48 +1100488 unsigned char *kbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 int error = EFAULT;
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000490
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 if (*len > XATTR_SIZE_MAX)
492 return EINVAL;
Dave Chinnerfdd3cce2013-09-02 20:53:00 +1000493 kbuf = kmem_zalloc_large(*len, KM_SLEEP);
494 if (!kbuf)
495 return ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000497 error = xfs_attr_get(XFS_I(inode), name, kbuf, (int *)len, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 if (error)
499 goto out_kfree;
500
501 if (copy_to_user(ubuf, kbuf, *len))
502 error = EFAULT;
503
Dave Chinnerfdd3cce2013-09-02 20:53:00 +1000504out_kfree:
505 kmem_free(kbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 return error;
507}
508
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600509int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510xfs_attrmulti_attr_set(
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000511 struct inode *inode,
Dave Chinnera9273ca2010-01-20 10:47:48 +1100512 unsigned char *name,
513 const unsigned char __user *ubuf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 __uint32_t len,
515 __uint32_t flags)
516{
Dave Chinnera9273ca2010-01-20 10:47:48 +1100517 unsigned char *kbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 int error = EFAULT;
519
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000520 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 return EPERM;
522 if (len > XATTR_SIZE_MAX)
523 return EINVAL;
524
Li Zefan0e639bd2009-04-08 15:08:04 +0800525 kbuf = memdup_user(ubuf, len);
526 if (IS_ERR(kbuf))
527 return PTR_ERR(kbuf);
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000528
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000529 error = xfs_attr_set(XFS_I(inode), name, kbuf, len, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 return error;
532}
533
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600534int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535xfs_attrmulti_attr_remove(
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000536 struct inode *inode,
Dave Chinnera9273ca2010-01-20 10:47:48 +1100537 unsigned char *name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 __uint32_t flags)
539{
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000540 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 return EPERM;
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000542 return xfs_attr_remove(XFS_I(inode), name, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543}
544
545STATIC int
546xfs_attrmulti_by_handle(
Dave Hansen42a74f22008-02-15 14:37:46 -0800547 struct file *parfilp,
Christoph Hellwigd296d302009-01-19 02:02:57 +0100548 void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549{
550 int error;
551 xfs_attr_multiop_t *ops;
552 xfs_fsop_attrmulti_handlereq_t am_hreq;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100553 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 unsigned int i, size;
Dave Chinnera9273ca2010-01-20 10:47:48 +1100555 unsigned char *attr_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
557 if (!capable(CAP_SYS_ADMIN))
558 return -XFS_ERROR(EPERM);
559 if (copy_from_user(&am_hreq, arg, sizeof(xfs_fsop_attrmulti_handlereq_t)))
560 return -XFS_ERROR(EFAULT);
561
Zhitong Wangfda168c2010-03-23 09:51:22 +1100562 /* overflow check */
563 if (am_hreq.opcount >= INT_MAX / sizeof(xfs_attr_multiop_t))
564 return -E2BIG;
565
Christoph Hellwigd296d302009-01-19 02:02:57 +0100566 dentry = xfs_handlereq_to_dentry(parfilp, &am_hreq.hreq);
567 if (IS_ERR(dentry))
568 return PTR_ERR(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
570 error = E2BIG;
Christoph Hellwige182f572008-06-27 13:32:31 +1000571 size = am_hreq.opcount * sizeof(xfs_attr_multiop_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 if (!size || size > 16 * PAGE_SIZE)
Christoph Hellwigd296d302009-01-19 02:02:57 +0100573 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
Li Zefan0e639bd2009-04-08 15:08:04 +0800575 ops = memdup_user(am_hreq.ops, size);
576 if (IS_ERR(ops)) {
577 error = PTR_ERR(ops);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100578 goto out_dput;
Li Zefan0e639bd2009-04-08 15:08:04 +0800579 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
581 attr_name = kmalloc(MAXNAMELEN, GFP_KERNEL);
582 if (!attr_name)
583 goto out_kfree_ops;
584
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 error = 0;
586 for (i = 0; i < am_hreq.opcount; i++) {
Dave Chinnera9273ca2010-01-20 10:47:48 +1100587 ops[i].am_error = strncpy_from_user((char *)attr_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 ops[i].am_attrname, MAXNAMELEN);
589 if (ops[i].am_error == 0 || ops[i].am_error == MAXNAMELEN)
590 error = -ERANGE;
591 if (ops[i].am_error < 0)
592 break;
593
594 switch (ops[i].am_opcode) {
595 case ATTR_OP_GET:
Christoph Hellwigd296d302009-01-19 02:02:57 +0100596 ops[i].am_error = xfs_attrmulti_attr_get(
597 dentry->d_inode, attr_name,
598 ops[i].am_attrvalue, &ops[i].am_length,
599 ops[i].am_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 break;
601 case ATTR_OP_SET:
Al Viroa561be72011-11-23 11:57:51 -0500602 ops[i].am_error = mnt_want_write_file(parfilp);
Dave Hansen42a74f22008-02-15 14:37:46 -0800603 if (ops[i].am_error)
604 break;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100605 ops[i].am_error = xfs_attrmulti_attr_set(
606 dentry->d_inode, attr_name,
607 ops[i].am_attrvalue, ops[i].am_length,
608 ops[i].am_flags);
Al Viro2a79f172011-12-09 08:06:57 -0500609 mnt_drop_write_file(parfilp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 break;
611 case ATTR_OP_REMOVE:
Al Viroa561be72011-11-23 11:57:51 -0500612 ops[i].am_error = mnt_want_write_file(parfilp);
Dave Hansen42a74f22008-02-15 14:37:46 -0800613 if (ops[i].am_error)
614 break;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100615 ops[i].am_error = xfs_attrmulti_attr_remove(
616 dentry->d_inode, attr_name,
617 ops[i].am_flags);
Al Viro2a79f172011-12-09 08:06:57 -0500618 mnt_drop_write_file(parfilp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 break;
620 default:
621 ops[i].am_error = EINVAL;
622 }
623 }
624
625 if (copy_to_user(am_hreq.ops, ops, size))
626 error = XFS_ERROR(EFAULT);
627
628 kfree(attr_name);
629 out_kfree_ops:
630 kfree(ops);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100631 out_dput:
632 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 return -error;
634}
635
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600636int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637xfs_ioc_space(
Christoph Hellwig993386c2007-08-28 16:12:30 +1000638 struct xfs_inode *ip,
Alexey Dobriyanf37ea142006-09-28 10:52:04 +1000639 struct inode *inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 struct file *filp,
641 int ioflags,
642 unsigned int cmd,
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600643 xfs_flock64_t *bf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644{
Christoph Hellwig865e9442013-10-12 00:55:08 -0700645 struct xfs_mount *mp = ip->i_mount;
646 struct xfs_trans *tp;
647 struct iattr iattr;
648 bool setprealloc = false;
649 bool clrprealloc = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 int error;
651
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600652 /*
653 * Only allow the sys admin to reserve space unless
654 * unwritten extents are enabled.
655 */
656 if (!xfs_sb_version_hasextflgbit(&ip->i_mount->m_sb) &&
657 !capable(CAP_SYS_ADMIN))
658 return -XFS_ERROR(EPERM);
659
Alexey Dobriyanf37ea142006-09-28 10:52:04 +1000660 if (inode->i_flags & (S_IMMUTABLE|S_APPEND))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 return -XFS_ERROR(EPERM);
662
Eric Sandeenad4a8ac2005-09-02 16:41:16 +1000663 if (!(filp->f_mode & FMODE_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 return -XFS_ERROR(EBADF);
665
Alexey Dobriyanf37ea142006-09-28 10:52:04 +1000666 if (!S_ISREG(inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 return -XFS_ERROR(EINVAL);
668
Jan Karad9457dc2012-06-12 16:20:39 +0200669 error = mnt_want_write_file(filp);
670 if (error)
671 return error;
Christoph Hellwig865e9442013-10-12 00:55:08 -0700672
Christoph Hellwig5f8aca82013-10-12 00:55:06 -0700673 xfs_ilock(ip, XFS_IOLOCK_EXCL);
Christoph Hellwig865e9442013-10-12 00:55:08 -0700674
675 switch (bf->l_whence) {
676 case 0: /*SEEK_SET*/
677 break;
678 case 1: /*SEEK_CUR*/
679 bf->l_start += filp->f_pos;
680 break;
681 case 2: /*SEEK_END*/
682 bf->l_start += XFS_ISIZE(ip);
683 break;
684 default:
685 error = XFS_ERROR(EINVAL);
686 goto out_unlock;
687 }
688
689 /*
690 * length of <= 0 for resv/unresv/zero is invalid. length for
691 * alloc/free is ignored completely and we have no idea what userspace
692 * might have set it to, so set it to zero to allow range
693 * checks to pass.
694 */
695 switch (cmd) {
696 case XFS_IOC_ZERO_RANGE:
697 case XFS_IOC_RESVSP:
698 case XFS_IOC_RESVSP64:
699 case XFS_IOC_UNRESVSP:
700 case XFS_IOC_UNRESVSP64:
701 if (bf->l_len <= 0) {
702 error = XFS_ERROR(EINVAL);
703 goto out_unlock;
704 }
705 break;
706 default:
707 bf->l_len = 0;
708 break;
709 }
710
711 if (bf->l_start < 0 ||
712 bf->l_start > mp->m_super->s_maxbytes ||
713 bf->l_start + bf->l_len < 0 ||
714 bf->l_start + bf->l_len >= mp->m_super->s_maxbytes) {
715 error = XFS_ERROR(EINVAL);
716 goto out_unlock;
717 }
718
719 switch (cmd) {
720 case XFS_IOC_ZERO_RANGE:
721 error = xfs_zero_file_space(ip, bf->l_start, bf->l_len);
722 if (!error)
723 setprealloc = true;
724 break;
725 case XFS_IOC_RESVSP:
726 case XFS_IOC_RESVSP64:
727 error = xfs_alloc_file_space(ip, bf->l_start, bf->l_len,
728 XFS_BMAPI_PREALLOC);
729 if (!error)
730 setprealloc = true;
731 break;
732 case XFS_IOC_UNRESVSP:
733 case XFS_IOC_UNRESVSP64:
734 error = xfs_free_file_space(ip, bf->l_start, bf->l_len);
735 break;
736 case XFS_IOC_ALLOCSP:
737 case XFS_IOC_ALLOCSP64:
738 case XFS_IOC_FREESP:
739 case XFS_IOC_FREESP64:
740 if (bf->l_start > XFS_ISIZE(ip)) {
741 error = xfs_alloc_file_space(ip, XFS_ISIZE(ip),
742 bf->l_start - XFS_ISIZE(ip), 0);
743 if (error)
744 goto out_unlock;
745 }
746
747 iattr.ia_valid = ATTR_SIZE;
748 iattr.ia_size = bf->l_start;
749
750 error = xfs_setattr_size(ip, &iattr);
751 if (!error)
752 clrprealloc = true;
753 break;
754 default:
755 ASSERT(0);
756 error = XFS_ERROR(EINVAL);
757 }
758
759 if (error)
760 goto out_unlock;
761
762 tp = xfs_trans_alloc(mp, XFS_TRANS_WRITEID);
763 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_writeid, 0, 0);
764 if (error) {
765 xfs_trans_cancel(tp, 0);
766 goto out_unlock;
767 }
768
769 xfs_ilock(ip, XFS_ILOCK_EXCL);
770 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
771
772 if (!(ioflags & IO_INVIS)) {
773 ip->i_d.di_mode &= ~S_ISUID;
774 if (ip->i_d.di_mode & S_IXGRP)
775 ip->i_d.di_mode &= ~S_ISGID;
776 xfs_trans_ichgtime(tp, ip, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
777 }
778
779 if (setprealloc)
780 ip->i_d.di_flags |= XFS_DIFLAG_PREALLOC;
781 else if (clrprealloc)
782 ip->i_d.di_flags &= ~XFS_DIFLAG_PREALLOC;
783
784 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
785 if (filp->f_flags & O_DSYNC)
786 xfs_trans_set_sync(tp);
787 error = xfs_trans_commit(tp, 0);
788
789out_unlock:
Christoph Hellwig5f8aca82013-10-12 00:55:06 -0700790 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
Jan Karad9457dc2012-06-12 16:20:39 +0200791 mnt_drop_write_file(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 return -error;
793}
794
795STATIC int
796xfs_ioc_bulkstat(
797 xfs_mount_t *mp,
798 unsigned int cmd,
799 void __user *arg)
800{
801 xfs_fsop_bulkreq_t bulkreq;
802 int count; /* # of records returned */
803 xfs_ino_t inlast; /* last inode number */
804 int done;
805 int error;
806
807 /* done = 1 if there are more stats to get and if bulkstat */
808 /* should be called again (unused here, but used in dmapi) */
809
810 if (!capable(CAP_SYS_ADMIN))
811 return -EPERM;
812
813 if (XFS_FORCED_SHUTDOWN(mp))
814 return -XFS_ERROR(EIO);
815
816 if (copy_from_user(&bulkreq, arg, sizeof(xfs_fsop_bulkreq_t)))
817 return -XFS_ERROR(EFAULT);
818
819 if (copy_from_user(&inlast, bulkreq.lastip, sizeof(__s64)))
820 return -XFS_ERROR(EFAULT);
821
822 if ((count = bulkreq.icount) <= 0)
823 return -XFS_ERROR(EINVAL);
824
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100825 if (bulkreq.ubuffer == NULL)
826 return -XFS_ERROR(EINVAL);
827
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 if (cmd == XFS_IOC_FSINUMBERS)
829 error = xfs_inumbers(mp, &inlast, &count,
Michal Marekfaa63e92007-07-11 11:10:19 +1000830 bulkreq.ubuffer, xfs_inumbers_fmt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 else if (cmd == XFS_IOC_FSBULKSTAT_SINGLE)
832 error = xfs_bulkstat_single(mp, &inlast,
833 bulkreq.ubuffer, &done);
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100834 else /* XFS_IOC_FSBULKSTAT */
Christoph Hellwig7dce11d2010-06-23 18:11:11 +1000835 error = xfs_bulkstat(mp, &inlast, &count, xfs_bulkstat_one,
836 sizeof(xfs_bstat_t), bulkreq.ubuffer,
837 &done);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
839 if (error)
840 return -error;
841
842 if (bulkreq.ocount != NULL) {
843 if (copy_to_user(bulkreq.lastip, &inlast,
844 sizeof(xfs_ino_t)))
845 return -XFS_ERROR(EFAULT);
846
847 if (copy_to_user(bulkreq.ocount, &count, sizeof(count)))
848 return -XFS_ERROR(EFAULT);
849 }
850
851 return 0;
852}
853
854STATIC int
855xfs_ioc_fsgeometry_v1(
856 xfs_mount_t *mp,
857 void __user *arg)
858{
Alex Eldereeb20362011-03-01 17:50:00 +0000859 xfs_fsop_geom_t fsgeo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 int error;
861
Alex Eldereeb20362011-03-01 17:50:00 +0000862 error = xfs_fs_geometry(mp, &fsgeo, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 if (error)
864 return -error;
865
Alex Eldereeb20362011-03-01 17:50:00 +0000866 /*
867 * Caller should have passed an argument of type
868 * xfs_fsop_geom_v1_t. This is a proper subset of the
869 * xfs_fsop_geom_t that xfs_fs_geometry() fills in.
870 */
871 if (copy_to_user(arg, &fsgeo, sizeof(xfs_fsop_geom_v1_t)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 return -XFS_ERROR(EFAULT);
873 return 0;
874}
875
876STATIC int
877xfs_ioc_fsgeometry(
878 xfs_mount_t *mp,
879 void __user *arg)
880{
881 xfs_fsop_geom_t fsgeo;
882 int error;
883
884 error = xfs_fs_geometry(mp, &fsgeo, 4);
885 if (error)
886 return -error;
887
888 if (copy_to_user(arg, &fsgeo, sizeof(fsgeo)))
889 return -XFS_ERROR(EFAULT);
890 return 0;
891}
892
893/*
894 * Linux extended inode flags interface.
895 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
897STATIC unsigned int
898xfs_merge_ioc_xflags(
899 unsigned int flags,
900 unsigned int start)
901{
902 unsigned int xflags = start;
903
Eric Sandeen39058a02007-02-10 18:37:10 +1100904 if (flags & FS_IMMUTABLE_FL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 xflags |= XFS_XFLAG_IMMUTABLE;
906 else
907 xflags &= ~XFS_XFLAG_IMMUTABLE;
Eric Sandeen39058a02007-02-10 18:37:10 +1100908 if (flags & FS_APPEND_FL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 xflags |= XFS_XFLAG_APPEND;
910 else
911 xflags &= ~XFS_XFLAG_APPEND;
Eric Sandeen39058a02007-02-10 18:37:10 +1100912 if (flags & FS_SYNC_FL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 xflags |= XFS_XFLAG_SYNC;
914 else
915 xflags &= ~XFS_XFLAG_SYNC;
Eric Sandeen39058a02007-02-10 18:37:10 +1100916 if (flags & FS_NOATIME_FL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 xflags |= XFS_XFLAG_NOATIME;
918 else
919 xflags &= ~XFS_XFLAG_NOATIME;
Eric Sandeen39058a02007-02-10 18:37:10 +1100920 if (flags & FS_NODUMP_FL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 xflags |= XFS_XFLAG_NODUMP;
922 else
923 xflags &= ~XFS_XFLAG_NODUMP;
924
925 return xflags;
926}
927
928STATIC unsigned int
929xfs_di2lxflags(
930 __uint16_t di_flags)
931{
932 unsigned int flags = 0;
933
934 if (di_flags & XFS_DIFLAG_IMMUTABLE)
Eric Sandeen39058a02007-02-10 18:37:10 +1100935 flags |= FS_IMMUTABLE_FL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 if (di_flags & XFS_DIFLAG_APPEND)
Eric Sandeen39058a02007-02-10 18:37:10 +1100937 flags |= FS_APPEND_FL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 if (di_flags & XFS_DIFLAG_SYNC)
Eric Sandeen39058a02007-02-10 18:37:10 +1100939 flags |= FS_SYNC_FL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 if (di_flags & XFS_DIFLAG_NOATIME)
Eric Sandeen39058a02007-02-10 18:37:10 +1100941 flags |= FS_NOATIME_FL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 if (di_flags & XFS_DIFLAG_NODUMP)
Eric Sandeen39058a02007-02-10 18:37:10 +1100943 flags |= FS_NODUMP_FL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 return flags;
945}
946
947STATIC int
Christoph Hellwigc83bfab2007-10-11 17:47:00 +1000948xfs_ioc_fsgetxattr(
949 xfs_inode_t *ip,
950 int attr,
951 void __user *arg)
952{
953 struct fsxattr fa;
954
Dan Rosenberga122eb22010-09-06 18:24:57 -0400955 memset(&fa, 0, sizeof(struct fsxattr));
956
Christoph Hellwigc83bfab2007-10-11 17:47:00 +1000957 xfs_ilock(ip, XFS_ILOCK_SHARED);
958 fa.fsx_xflags = xfs_ip2xflags(ip);
959 fa.fsx_extsize = ip->i_d.di_extsize << ip->i_mount->m_sb.sb_blocklog;
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000960 fa.fsx_projid = xfs_get_projid(ip);
Christoph Hellwigc83bfab2007-10-11 17:47:00 +1000961
962 if (attr) {
963 if (ip->i_afp) {
964 if (ip->i_afp->if_flags & XFS_IFEXTENTS)
965 fa.fsx_nextents = ip->i_afp->if_bytes /
966 sizeof(xfs_bmbt_rec_t);
967 else
968 fa.fsx_nextents = ip->i_d.di_anextents;
969 } else
970 fa.fsx_nextents = 0;
971 } else {
972 if (ip->i_df.if_flags & XFS_IFEXTENTS)
973 fa.fsx_nextents = ip->i_df.if_bytes /
974 sizeof(xfs_bmbt_rec_t);
975 else
976 fa.fsx_nextents = ip->i_d.di_nextents;
977 }
978 xfs_iunlock(ip, XFS_ILOCK_SHARED);
979
980 if (copy_to_user(arg, &fa, sizeof(fa)))
981 return -EFAULT;
982 return 0;
983}
984
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000985STATIC void
986xfs_set_diflags(
987 struct xfs_inode *ip,
988 unsigned int xflags)
989{
990 unsigned int di_flags;
991
992 /* can't set PREALLOC this way, just preserve it */
993 di_flags = (ip->i_d.di_flags & XFS_DIFLAG_PREALLOC);
994 if (xflags & XFS_XFLAG_IMMUTABLE)
995 di_flags |= XFS_DIFLAG_IMMUTABLE;
996 if (xflags & XFS_XFLAG_APPEND)
997 di_flags |= XFS_DIFLAG_APPEND;
998 if (xflags & XFS_XFLAG_SYNC)
999 di_flags |= XFS_DIFLAG_SYNC;
1000 if (xflags & XFS_XFLAG_NOATIME)
1001 di_flags |= XFS_DIFLAG_NOATIME;
1002 if (xflags & XFS_XFLAG_NODUMP)
1003 di_flags |= XFS_DIFLAG_NODUMP;
1004 if (xflags & XFS_XFLAG_PROJINHERIT)
1005 di_flags |= XFS_DIFLAG_PROJINHERIT;
1006 if (xflags & XFS_XFLAG_NODEFRAG)
1007 di_flags |= XFS_DIFLAG_NODEFRAG;
1008 if (xflags & XFS_XFLAG_FILESTREAM)
1009 di_flags |= XFS_DIFLAG_FILESTREAM;
Al Viroabbede12011-07-26 02:31:30 -04001010 if (S_ISDIR(ip->i_d.di_mode)) {
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001011 if (xflags & XFS_XFLAG_RTINHERIT)
1012 di_flags |= XFS_DIFLAG_RTINHERIT;
1013 if (xflags & XFS_XFLAG_NOSYMLINKS)
1014 di_flags |= XFS_DIFLAG_NOSYMLINKS;
1015 if (xflags & XFS_XFLAG_EXTSZINHERIT)
1016 di_flags |= XFS_DIFLAG_EXTSZINHERIT;
Al Viroabbede12011-07-26 02:31:30 -04001017 } else if (S_ISREG(ip->i_d.di_mode)) {
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001018 if (xflags & XFS_XFLAG_REALTIME)
1019 di_flags |= XFS_DIFLAG_REALTIME;
1020 if (xflags & XFS_XFLAG_EXTSIZE)
1021 di_flags |= XFS_DIFLAG_EXTSIZE;
1022 }
1023
1024 ip->i_d.di_flags = di_flags;
1025}
1026
Christoph Hellwigf13fae22008-07-21 16:16:15 +10001027STATIC void
1028xfs_diflags_to_linux(
1029 struct xfs_inode *ip)
1030{
David Chinnere4f75292008-08-13 16:00:45 +10001031 struct inode *inode = VFS_I(ip);
Christoph Hellwigf13fae22008-07-21 16:16:15 +10001032 unsigned int xflags = xfs_ip2xflags(ip);
1033
1034 if (xflags & XFS_XFLAG_IMMUTABLE)
1035 inode->i_flags |= S_IMMUTABLE;
1036 else
1037 inode->i_flags &= ~S_IMMUTABLE;
1038 if (xflags & XFS_XFLAG_APPEND)
1039 inode->i_flags |= S_APPEND;
1040 else
1041 inode->i_flags &= ~S_APPEND;
1042 if (xflags & XFS_XFLAG_SYNC)
1043 inode->i_flags |= S_SYNC;
1044 else
1045 inode->i_flags &= ~S_SYNC;
1046 if (xflags & XFS_XFLAG_NOATIME)
1047 inode->i_flags |= S_NOATIME;
1048 else
1049 inode->i_flags &= ~S_NOATIME;
1050}
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001051
1052#define FSX_PROJID 1
1053#define FSX_EXTSIZE 2
1054#define FSX_XFLAGS 4
1055#define FSX_NONBLOCK 8
1056
1057STATIC int
1058xfs_ioctl_setattr(
1059 xfs_inode_t *ip,
1060 struct fsxattr *fa,
1061 int mask)
1062{
1063 struct xfs_mount *mp = ip->i_mount;
1064 struct xfs_trans *tp;
1065 unsigned int lock_flags = 0;
Christoph Hellwig7d095252009-06-08 15:33:32 +02001066 struct xfs_dquot *udqp = NULL;
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001067 struct xfs_dquot *pdqp = NULL;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001068 struct xfs_dquot *olddquot = NULL;
1069 int code;
1070
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001071 trace_xfs_ioctl_setattr(ip);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001072
1073 if (mp->m_flags & XFS_MOUNT_RDONLY)
1074 return XFS_ERROR(EROFS);
1075 if (XFS_FORCED_SHUTDOWN(mp))
1076 return XFS_ERROR(EIO);
1077
1078 /*
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001079 * Disallow 32bit project ids when projid32bit feature is not enabled.
Arkadiusz Mi?kiewicz23963e52010-08-26 10:19:43 +00001080 */
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001081 if ((mask & FSX_PROJID) && (fa->fsx_projid > (__uint16_t)-1) &&
1082 !xfs_sb_version_hasprojid32bit(&ip->i_mount->m_sb))
Arkadiusz Mi?kiewicz23963e52010-08-26 10:19:43 +00001083 return XFS_ERROR(EINVAL);
1084
1085 /*
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001086 * If disk quotas is on, we make sure that the dquots do exist on disk,
1087 * before we start any other transactions. Trying to do this later
1088 * is messy. We don't care to take a readlock to look at the ids
1089 * in inode here, because we can't hold it across the trans_reserve.
1090 * If the IDs do change before we take the ilock, we're covered
1091 * because the i_*dquot fields will get updated anyway.
1092 */
1093 if (XFS_IS_QUOTA_ON(mp) && (mask & FSX_PROJID)) {
Christoph Hellwig7d095252009-06-08 15:33:32 +02001094 code = xfs_qm_vop_dqalloc(ip, ip->i_d.di_uid,
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001095 ip->i_d.di_gid, fa->fsx_projid,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001096 XFS_QMOPT_PQUOTA, &udqp, NULL, &pdqp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001097 if (code)
1098 return code;
1099 }
1100
1101 /*
1102 * For the other attributes, we acquire the inode lock and
1103 * first do an error checking pass.
1104 */
1105 tp = xfs_trans_alloc(mp, XFS_TRANS_SETATTR_NOT_SIZE);
Jie Liu3d3c8b52013-08-12 20:49:59 +10001106 code = xfs_trans_reserve(tp, &M_RES(mp)->tr_ichange, 0, 0);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001107 if (code)
1108 goto error_return;
1109
1110 lock_flags = XFS_ILOCK_EXCL;
1111 xfs_ilock(ip, lock_flags);
1112
1113 /*
1114 * CAP_FOWNER overrides the following restrictions:
1115 *
1116 * The user ID of the calling process must be equal
1117 * to the file owner ID, except in cases where the
1118 * CAP_FSETID capability is applicable.
1119 */
Dwight Engenfd5e2aa2013-08-15 14:08:00 -04001120 if (!inode_owner_or_capable(VFS_I(ip))) {
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001121 code = XFS_ERROR(EPERM);
1122 goto error_return;
1123 }
1124
1125 /*
1126 * Do a quota reservation only if projid is actually going to change.
Dwight Engenfd5e2aa2013-08-15 14:08:00 -04001127 * Only allow changing of projid from init_user_ns since it is a
1128 * non user namespace aware identifier.
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001129 */
1130 if (mask & FSX_PROJID) {
Dwight Engenfd5e2aa2013-08-15 14:08:00 -04001131 if (current_user_ns() != &init_user_ns) {
1132 code = XFS_ERROR(EINVAL);
1133 goto error_return;
1134 }
1135
Christoph Hellwig7d095252009-06-08 15:33:32 +02001136 if (XFS_IS_QUOTA_RUNNING(mp) &&
1137 XFS_IS_PQUOTA_ON(mp) &&
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001138 xfs_get_projid(ip) != fa->fsx_projid) {
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001139 ASSERT(tp);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001140 code = xfs_qm_vop_chown_reserve(tp, ip, udqp, NULL,
1141 pdqp, capable(CAP_FOWNER) ?
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001142 XFS_QMOPT_FORCE_RES : 0);
1143 if (code) /* out of quota */
1144 goto error_return;
1145 }
1146 }
1147
1148 if (mask & FSX_EXTSIZE) {
1149 /*
1150 * Can't change extent size if any extents are allocated.
1151 */
1152 if (ip->i_d.di_nextents &&
1153 ((ip->i_d.di_extsize << mp->m_sb.sb_blocklog) !=
1154 fa->fsx_extsize)) {
1155 code = XFS_ERROR(EINVAL); /* EFBIG? */
1156 goto error_return;
1157 }
1158
1159 /*
1160 * Extent size must be a multiple of the appropriate block
Dave Chinner53158372011-01-27 12:18:18 +11001161 * size, if set at all. It must also be smaller than the
1162 * maximum extent size supported by the filesystem.
1163 *
1164 * Also, for non-realtime files, limit the extent size hint to
1165 * half the size of the AGs in the filesystem so alignment
1166 * doesn't result in extents larger than an AG.
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001167 */
1168 if (fa->fsx_extsize != 0) {
Dave Chinner53158372011-01-27 12:18:18 +11001169 xfs_extlen_t size;
1170 xfs_fsblock_t extsize_fsb;
1171
1172 extsize_fsb = XFS_B_TO_FSB(mp, fa->fsx_extsize);
1173 if (extsize_fsb > MAXEXTLEN) {
1174 code = XFS_ERROR(EINVAL);
1175 goto error_return;
1176 }
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001177
1178 if (XFS_IS_REALTIME_INODE(ip) ||
1179 ((mask & FSX_XFLAGS) &&
1180 (fa->fsx_xflags & XFS_XFLAG_REALTIME))) {
1181 size = mp->m_sb.sb_rextsize <<
1182 mp->m_sb.sb_blocklog;
1183 } else {
1184 size = mp->m_sb.sb_blocksize;
Dave Chinner53158372011-01-27 12:18:18 +11001185 if (extsize_fsb > mp->m_sb.sb_agblocks / 2) {
1186 code = XFS_ERROR(EINVAL);
1187 goto error_return;
1188 }
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001189 }
1190
1191 if (fa->fsx_extsize % size) {
1192 code = XFS_ERROR(EINVAL);
1193 goto error_return;
1194 }
1195 }
1196 }
1197
1198
1199 if (mask & FSX_XFLAGS) {
1200 /*
1201 * Can't change realtime flag if any extents are allocated.
1202 */
1203 if ((ip->i_d.di_nextents || ip->i_delayed_blks) &&
1204 (XFS_IS_REALTIME_INODE(ip)) !=
1205 (fa->fsx_xflags & XFS_XFLAG_REALTIME)) {
1206 code = XFS_ERROR(EINVAL); /* EFBIG? */
1207 goto error_return;
1208 }
1209
1210 /*
1211 * If realtime flag is set then must have realtime data.
1212 */
1213 if ((fa->fsx_xflags & XFS_XFLAG_REALTIME)) {
1214 if ((mp->m_sb.sb_rblocks == 0) ||
1215 (mp->m_sb.sb_rextsize == 0) ||
1216 (ip->i_d.di_extsize % mp->m_sb.sb_rextsize)) {
1217 code = XFS_ERROR(EINVAL);
1218 goto error_return;
1219 }
1220 }
1221
1222 /*
1223 * Can't modify an immutable/append-only file unless
1224 * we have appropriate permission.
1225 */
1226 if ((ip->i_d.di_flags &
1227 (XFS_DIFLAG_IMMUTABLE|XFS_DIFLAG_APPEND) ||
1228 (fa->fsx_xflags &
1229 (XFS_XFLAG_IMMUTABLE | XFS_XFLAG_APPEND))) &&
1230 !capable(CAP_LINUX_IMMUTABLE)) {
1231 code = XFS_ERROR(EPERM);
1232 goto error_return;
1233 }
1234 }
1235
Christoph Hellwigddc34152011-09-19 15:00:54 +00001236 xfs_trans_ijoin(tp, ip, 0);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001237
1238 /*
1239 * Change file ownership. Must be the owner or privileged.
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001240 */
1241 if (mask & FSX_PROJID) {
1242 /*
1243 * CAP_FSETID overrides the following restrictions:
1244 *
1245 * The set-user-ID and set-group-ID bits of a file will be
1246 * cleared upon successful return from chown()
1247 */
1248 if ((ip->i_d.di_mode & (S_ISUID|S_ISGID)) &&
Dwight Engenfd5e2aa2013-08-15 14:08:00 -04001249 !inode_capable(VFS_I(ip), CAP_FSETID))
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001250 ip->i_d.di_mode &= ~(S_ISUID|S_ISGID);
1251
1252 /*
1253 * Change the ownerships and register quota modifications
1254 * in the transaction.
1255 */
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001256 if (xfs_get_projid(ip) != fa->fsx_projid) {
Christoph Hellwig7d095252009-06-08 15:33:32 +02001257 if (XFS_IS_QUOTA_RUNNING(mp) && XFS_IS_PQUOTA_ON(mp)) {
1258 olddquot = xfs_qm_vop_chown(tp, ip,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001259 &ip->i_pdquot, pdqp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001260 }
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001261 xfs_set_projid(ip, fa->fsx_projid);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001262
1263 /*
1264 * We may have to rev the inode as well as
1265 * the superblock version number since projids didn't
1266 * exist before DINODE_VERSION_2 and SB_VERSION_NLINK.
1267 */
Christoph Hellwig51ce16d2008-11-28 14:23:39 +11001268 if (ip->i_d.di_version == 1)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001269 xfs_bump_ino_vers2(tp, ip);
1270 }
1271
1272 }
1273
1274 if (mask & FSX_EXTSIZE)
1275 ip->i_d.di_extsize = fa->fsx_extsize >> mp->m_sb.sb_blocklog;
Christoph Hellwigf13fae22008-07-21 16:16:15 +10001276 if (mask & FSX_XFLAGS) {
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001277 xfs_set_diflags(ip, fa->fsx_xflags);
Christoph Hellwigf13fae22008-07-21 16:16:15 +10001278 xfs_diflags_to_linux(ip);
1279 }
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001280
Dave Chinnerdcd79a12010-09-28 12:27:25 +10001281 xfs_trans_ichgtime(tp, ip, XFS_ICHGTIME_CHG);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001282 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001283
1284 XFS_STATS_INC(xs_ig_attrchg);
1285
1286 /*
1287 * If this is a synchronous mount, make sure that the
1288 * transaction goes to disk before returning to the user.
1289 * This is slightly sub-optimal in that truncates require
1290 * two sync transactions instead of one for wsync filesystems.
1291 * One for the truncate and one for the timestamps since we
1292 * don't want to change the timestamps unless we're sure the
1293 * truncate worked. Truncates are less than 1% of the laddis
1294 * mix so this probably isn't worth the trouble to optimize.
1295 */
1296 if (mp->m_flags & XFS_MOUNT_WSYNC)
1297 xfs_trans_set_sync(tp);
1298 code = xfs_trans_commit(tp, 0);
1299 xfs_iunlock(ip, lock_flags);
1300
1301 /*
1302 * Release any dquot(s) the inode had kept before chown.
1303 */
Christoph Hellwig7d095252009-06-08 15:33:32 +02001304 xfs_qm_dqrele(olddquot);
1305 xfs_qm_dqrele(udqp);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001306 xfs_qm_dqrele(pdqp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001307
Christoph Hellwig288699f2010-06-23 18:11:15 +10001308 return code;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001309
1310 error_return:
Christoph Hellwig7d095252009-06-08 15:33:32 +02001311 xfs_qm_dqrele(udqp);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001312 xfs_qm_dqrele(pdqp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001313 xfs_trans_cancel(tp, 0);
1314 if (lock_flags)
1315 xfs_iunlock(ip, lock_flags);
1316 return code;
1317}
1318
Christoph Hellwigc83bfab2007-10-11 17:47:00 +10001319STATIC int
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001320xfs_ioc_fssetxattr(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 xfs_inode_t *ip,
1322 struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 void __user *arg)
1324{
1325 struct fsxattr fa;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001326 unsigned int mask;
Jan Karad9457dc2012-06-12 16:20:39 +02001327 int error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001328
1329 if (copy_from_user(&fa, arg, sizeof(fa)))
1330 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001332 mask = FSX_XFLAGS | FSX_EXTSIZE | FSX_PROJID;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001333 if (filp->f_flags & (O_NDELAY|O_NONBLOCK))
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001334 mask |= FSX_NONBLOCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
Jan Karad9457dc2012-06-12 16:20:39 +02001336 error = mnt_want_write_file(filp);
1337 if (error)
1338 return error;
1339 error = xfs_ioctl_setattr(ip, &fa, mask);
1340 mnt_drop_write_file(filp);
1341 return -error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001342}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001344STATIC int
1345xfs_ioc_getxflags(
1346 xfs_inode_t *ip,
1347 void __user *arg)
1348{
1349 unsigned int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001351 flags = xfs_di2lxflags(ip->i_d.di_flags);
1352 if (copy_to_user(arg, &flags, sizeof(flags)))
1353 return -EFAULT;
1354 return 0;
1355}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001357STATIC int
1358xfs_ioc_setxflags(
1359 xfs_inode_t *ip,
1360 struct file *filp,
1361 void __user *arg)
1362{
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001363 struct fsxattr fa;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001364 unsigned int flags;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001365 unsigned int mask;
Jan Karad9457dc2012-06-12 16:20:39 +02001366 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001368 if (copy_from_user(&flags, arg, sizeof(flags)))
1369 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001371 if (flags & ~(FS_IMMUTABLE_FL | FS_APPEND_FL | \
1372 FS_NOATIME_FL | FS_NODUMP_FL | \
1373 FS_SYNC_FL))
1374 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001376 mask = FSX_XFLAGS;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001377 if (filp->f_flags & (O_NDELAY|O_NONBLOCK))
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001378 mask |= FSX_NONBLOCK;
1379 fa.fsx_xflags = xfs_merge_ioc_xflags(flags, xfs_ip2xflags(ip));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
Jan Karad9457dc2012-06-12 16:20:39 +02001381 error = mnt_want_write_file(filp);
1382 if (error)
1383 return error;
1384 error = xfs_ioctl_setattr(ip, &fa, mask);
1385 mnt_drop_write_file(filp);
1386 return -error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387}
1388
1389STATIC int
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001390xfs_getbmap_format(void **ap, struct getbmapx *bmv, int *full)
1391{
1392 struct getbmap __user *base = *ap;
1393
1394 /* copy only getbmap portion (not getbmapx) */
1395 if (copy_to_user(base, bmv, sizeof(struct getbmap)))
1396 return XFS_ERROR(EFAULT);
1397
1398 *ap += sizeof(struct getbmap);
1399 return 0;
1400}
1401
1402STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403xfs_ioc_getbmap(
Christoph Hellwig993386c2007-08-28 16:12:30 +10001404 struct xfs_inode *ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 int ioflags,
1406 unsigned int cmd,
1407 void __user *arg)
1408{
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001409 struct getbmapx bmx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 int error;
1411
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001412 if (copy_from_user(&bmx, arg, sizeof(struct getbmapx)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 return -XFS_ERROR(EFAULT);
1414
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001415 if (bmx.bmv_count < 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 return -XFS_ERROR(EINVAL);
1417
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001418 bmx.bmv_iflags = (cmd == XFS_IOC_GETBMAPA ? BMV_IF_ATTRFORK : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 if (ioflags & IO_INVIS)
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001420 bmx.bmv_iflags |= BMV_IF_NO_DMAPI_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001422 error = xfs_getbmap(ip, &bmx, xfs_getbmap_format,
1423 (struct getbmap *)arg+1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 if (error)
1425 return -error;
1426
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001427 /* copy back header - only size of getbmap */
1428 if (copy_to_user(arg, &bmx, sizeof(struct getbmap)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 return -XFS_ERROR(EFAULT);
1430 return 0;
1431}
1432
1433STATIC int
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001434xfs_getbmapx_format(void **ap, struct getbmapx *bmv, int *full)
1435{
1436 struct getbmapx __user *base = *ap;
1437
1438 if (copy_to_user(base, bmv, sizeof(struct getbmapx)))
1439 return XFS_ERROR(EFAULT);
1440
1441 *ap += sizeof(struct getbmapx);
1442 return 0;
1443}
1444
1445STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446xfs_ioc_getbmapx(
Christoph Hellwig993386c2007-08-28 16:12:30 +10001447 struct xfs_inode *ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 void __user *arg)
1449{
1450 struct getbmapx bmx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 int error;
1452
1453 if (copy_from_user(&bmx, arg, sizeof(bmx)))
1454 return -XFS_ERROR(EFAULT);
1455
1456 if (bmx.bmv_count < 2)
1457 return -XFS_ERROR(EINVAL);
1458
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001459 if (bmx.bmv_iflags & (~BMV_IF_VALID))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 return -XFS_ERROR(EINVAL);
1461
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001462 error = xfs_getbmap(ip, &bmx, xfs_getbmapx_format,
1463 (struct getbmapx *)arg+1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 if (error)
1465 return -error;
1466
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001467 /* copy back header */
1468 if (copy_to_user(arg, &bmx, sizeof(struct getbmapx)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 return -XFS_ERROR(EFAULT);
1470
1471 return 0;
1472}
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001473
Dave Chinnera133d952013-08-12 20:49:48 +10001474int
1475xfs_ioc_swapext(
1476 xfs_swapext_t *sxp)
1477{
1478 xfs_inode_t *ip, *tip;
1479 struct fd f, tmp;
1480 int error = 0;
1481
1482 /* Pull information for the target fd */
1483 f = fdget((int)sxp->sx_fdtarget);
1484 if (!f.file) {
1485 error = XFS_ERROR(EINVAL);
1486 goto out;
1487 }
1488
1489 if (!(f.file->f_mode & FMODE_WRITE) ||
1490 !(f.file->f_mode & FMODE_READ) ||
1491 (f.file->f_flags & O_APPEND)) {
1492 error = XFS_ERROR(EBADF);
1493 goto out_put_file;
1494 }
1495
1496 tmp = fdget((int)sxp->sx_fdtmp);
1497 if (!tmp.file) {
1498 error = XFS_ERROR(EINVAL);
1499 goto out_put_file;
1500 }
1501
1502 if (!(tmp.file->f_mode & FMODE_WRITE) ||
1503 !(tmp.file->f_mode & FMODE_READ) ||
1504 (tmp.file->f_flags & O_APPEND)) {
1505 error = XFS_ERROR(EBADF);
1506 goto out_put_tmp_file;
1507 }
1508
1509 if (IS_SWAPFILE(file_inode(f.file)) ||
1510 IS_SWAPFILE(file_inode(tmp.file))) {
1511 error = XFS_ERROR(EINVAL);
1512 goto out_put_tmp_file;
1513 }
1514
1515 ip = XFS_I(file_inode(f.file));
1516 tip = XFS_I(file_inode(tmp.file));
1517
1518 if (ip->i_mount != tip->i_mount) {
1519 error = XFS_ERROR(EINVAL);
1520 goto out_put_tmp_file;
1521 }
1522
1523 if (ip->i_ino == tip->i_ino) {
1524 error = XFS_ERROR(EINVAL);
1525 goto out_put_tmp_file;
1526 }
1527
1528 if (XFS_FORCED_SHUTDOWN(ip->i_mount)) {
1529 error = XFS_ERROR(EIO);
1530 goto out_put_tmp_file;
1531 }
1532
1533 error = xfs_swap_extents(ip, tip, sxp);
1534
1535 out_put_tmp_file:
1536 fdput(tmp);
1537 out_put_file:
1538 fdput(f);
1539 out:
1540 return error;
1541}
1542
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001543/*
1544 * Note: some of the ioctl's return positive numbers as a
1545 * byte count indicating success, such as readlink_by_handle.
1546 * So we don't "sign flip" like most other routines. This means
1547 * true errors need to be returned as a negative value.
1548 */
1549long
1550xfs_file_ioctl(
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001551 struct file *filp,
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001552 unsigned int cmd,
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001553 unsigned long p)
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001554{
Al Viro496ad9a2013-01-23 17:07:38 -05001555 struct inode *inode = file_inode(filp);
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001556 struct xfs_inode *ip = XFS_I(inode);
1557 struct xfs_mount *mp = ip->i_mount;
1558 void __user *arg = (void __user *)p;
1559 int ioflags = 0;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001560 int error;
1561
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001562 if (filp->f_mode & FMODE_NOCMTIME)
1563 ioflags |= IO_INVIS;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001564
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001565 trace_xfs_file_ioctl(ip);
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001566
1567 switch (cmd) {
Christoph Hellwiga46db602011-01-07 13:02:04 +00001568 case FITRIM:
1569 return xfs_ioc_trim(mp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001570 case XFS_IOC_ALLOCSP:
1571 case XFS_IOC_FREESP:
1572 case XFS_IOC_RESVSP:
1573 case XFS_IOC_UNRESVSP:
1574 case XFS_IOC_ALLOCSP64:
1575 case XFS_IOC_FREESP64:
1576 case XFS_IOC_RESVSP64:
Dave Chinner44722352010-08-24 12:02:11 +10001577 case XFS_IOC_UNRESVSP64:
1578 case XFS_IOC_ZERO_RANGE: {
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001579 xfs_flock64_t bf;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001580
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001581 if (copy_from_user(&bf, arg, sizeof(bf)))
1582 return -XFS_ERROR(EFAULT);
1583 return xfs_ioc_space(ip, inode, filp, ioflags, cmd, &bf);
1584 }
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001585 case XFS_IOC_DIOINFO: {
1586 struct dioattr da;
1587 xfs_buftarg_t *target =
1588 XFS_IS_REALTIME_INODE(ip) ?
1589 mp->m_rtdev_targp : mp->m_ddev_targp;
1590
1591 da.d_mem = da.d_miniosz = 1 << target->bt_sshift;
1592 da.d_maxiosz = INT_MAX & ~(da.d_miniosz - 1);
1593
1594 if (copy_to_user(arg, &da, sizeof(da)))
1595 return -XFS_ERROR(EFAULT);
1596 return 0;
1597 }
1598
1599 case XFS_IOC_FSBULKSTAT_SINGLE:
1600 case XFS_IOC_FSBULKSTAT:
1601 case XFS_IOC_FSINUMBERS:
1602 return xfs_ioc_bulkstat(mp, cmd, arg);
1603
1604 case XFS_IOC_FSGEOMETRY_V1:
1605 return xfs_ioc_fsgeometry_v1(mp, arg);
1606
1607 case XFS_IOC_FSGEOMETRY:
1608 return xfs_ioc_fsgeometry(mp, arg);
1609
1610 case XFS_IOC_GETVERSION:
1611 return put_user(inode->i_generation, (int __user *)arg);
1612
1613 case XFS_IOC_FSGETXATTR:
1614 return xfs_ioc_fsgetxattr(ip, 0, arg);
1615 case XFS_IOC_FSGETXATTRA:
1616 return xfs_ioc_fsgetxattr(ip, 1, arg);
Lachlan McIlroy3b2816b2008-04-18 12:43:35 +10001617 case XFS_IOC_FSSETXATTR:
Lachlan McIlroy65e67f52008-04-18 12:59:45 +10001618 return xfs_ioc_fssetxattr(ip, filp, arg);
1619 case XFS_IOC_GETXFLAGS:
1620 return xfs_ioc_getxflags(ip, arg);
1621 case XFS_IOC_SETXFLAGS:
1622 return xfs_ioc_setxflags(ip, filp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001623
1624 case XFS_IOC_FSSETDM: {
1625 struct fsdmidata dmi;
1626
1627 if (copy_from_user(&dmi, arg, sizeof(dmi)))
1628 return -XFS_ERROR(EFAULT);
1629
Jan Karad9457dc2012-06-12 16:20:39 +02001630 error = mnt_want_write_file(filp);
1631 if (error)
1632 return error;
1633
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001634 error = xfs_set_dmattrs(ip, dmi.fsd_dmevmask,
1635 dmi.fsd_dmstate);
Jan Karad9457dc2012-06-12 16:20:39 +02001636 mnt_drop_write_file(filp);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001637 return -error;
1638 }
1639
1640 case XFS_IOC_GETBMAP:
1641 case XFS_IOC_GETBMAPA:
1642 return xfs_ioc_getbmap(ip, ioflags, cmd, arg);
1643
1644 case XFS_IOC_GETBMAPX:
1645 return xfs_ioc_getbmapx(ip, arg);
1646
1647 case XFS_IOC_FD_TO_HANDLE:
1648 case XFS_IOC_PATH_TO_HANDLE:
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001649 case XFS_IOC_PATH_TO_FSHANDLE: {
1650 xfs_fsop_handlereq_t hreq;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001651
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001652 if (copy_from_user(&hreq, arg, sizeof(hreq)))
1653 return -XFS_ERROR(EFAULT);
1654 return xfs_find_handle(cmd, &hreq);
1655 }
1656 case XFS_IOC_OPEN_BY_HANDLE: {
1657 xfs_fsop_handlereq_t hreq;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001658
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001659 if (copy_from_user(&hreq, arg, sizeof(xfs_fsop_handlereq_t)))
1660 return -XFS_ERROR(EFAULT);
Christoph Hellwigd296d302009-01-19 02:02:57 +01001661 return xfs_open_by_handle(filp, &hreq);
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001662 }
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001663 case XFS_IOC_FSSETDM_BY_HANDLE:
Christoph Hellwigd296d302009-01-19 02:02:57 +01001664 return xfs_fssetdm_by_handle(filp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001665
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001666 case XFS_IOC_READLINK_BY_HANDLE: {
1667 xfs_fsop_handlereq_t hreq;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001668
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001669 if (copy_from_user(&hreq, arg, sizeof(xfs_fsop_handlereq_t)))
1670 return -XFS_ERROR(EFAULT);
Christoph Hellwigd296d302009-01-19 02:02:57 +01001671 return xfs_readlink_by_handle(filp, &hreq);
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001672 }
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001673 case XFS_IOC_ATTRLIST_BY_HANDLE:
Christoph Hellwigd296d302009-01-19 02:02:57 +01001674 return xfs_attrlist_by_handle(filp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001675
1676 case XFS_IOC_ATTRMULTI_BY_HANDLE:
Christoph Hellwigd296d302009-01-19 02:02:57 +01001677 return xfs_attrmulti_by_handle(filp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001678
1679 case XFS_IOC_SWAPEXT: {
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001680 struct xfs_swapext sxp;
1681
1682 if (copy_from_user(&sxp, arg, sizeof(xfs_swapext_t)))
1683 return -XFS_ERROR(EFAULT);
Jan Karad9457dc2012-06-12 16:20:39 +02001684 error = mnt_want_write_file(filp);
1685 if (error)
1686 return error;
Dave Chinnera133d952013-08-12 20:49:48 +10001687 error = xfs_ioc_swapext(&sxp);
Jan Karad9457dc2012-06-12 16:20:39 +02001688 mnt_drop_write_file(filp);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001689 return -error;
1690 }
1691
1692 case XFS_IOC_FSCOUNTS: {
1693 xfs_fsop_counts_t out;
1694
1695 error = xfs_fs_counts(mp, &out);
1696 if (error)
1697 return -error;
1698
1699 if (copy_to_user(arg, &out, sizeof(out)))
1700 return -XFS_ERROR(EFAULT);
1701 return 0;
1702 }
1703
1704 case XFS_IOC_SET_RESBLKS: {
1705 xfs_fsop_resblks_t inout;
1706 __uint64_t in;
1707
1708 if (!capable(CAP_SYS_ADMIN))
1709 return -EPERM;
1710
Eric Sandeend5db0f92010-02-05 22:59:53 +00001711 if (mp->m_flags & XFS_MOUNT_RDONLY)
1712 return -XFS_ERROR(EROFS);
1713
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001714 if (copy_from_user(&inout, arg, sizeof(inout)))
1715 return -XFS_ERROR(EFAULT);
1716
Jan Karad9457dc2012-06-12 16:20:39 +02001717 error = mnt_want_write_file(filp);
1718 if (error)
1719 return error;
1720
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001721 /* input parameter is passed in resblks field of structure */
1722 in = inout.resblks;
1723 error = xfs_reserve_blocks(mp, &in, &inout);
Jan Karad9457dc2012-06-12 16:20:39 +02001724 mnt_drop_write_file(filp);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001725 if (error)
1726 return -error;
1727
1728 if (copy_to_user(arg, &inout, sizeof(inout)))
1729 return -XFS_ERROR(EFAULT);
1730 return 0;
1731 }
1732
1733 case XFS_IOC_GET_RESBLKS: {
1734 xfs_fsop_resblks_t out;
1735
1736 if (!capable(CAP_SYS_ADMIN))
1737 return -EPERM;
1738
1739 error = xfs_reserve_blocks(mp, NULL, &out);
1740 if (error)
1741 return -error;
1742
1743 if (copy_to_user(arg, &out, sizeof(out)))
1744 return -XFS_ERROR(EFAULT);
1745
1746 return 0;
1747 }
1748
1749 case XFS_IOC_FSGROWFSDATA: {
1750 xfs_growfs_data_t in;
1751
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001752 if (copy_from_user(&in, arg, sizeof(in)))
1753 return -XFS_ERROR(EFAULT);
1754
Jan Karad9457dc2012-06-12 16:20:39 +02001755 error = mnt_want_write_file(filp);
1756 if (error)
1757 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001758 error = xfs_growfs_data(mp, &in);
Jan Karad9457dc2012-06-12 16:20:39 +02001759 mnt_drop_write_file(filp);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001760 return -error;
1761 }
1762
1763 case XFS_IOC_FSGROWFSLOG: {
1764 xfs_growfs_log_t in;
1765
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001766 if (copy_from_user(&in, arg, sizeof(in)))
1767 return -XFS_ERROR(EFAULT);
1768
Jan Karad9457dc2012-06-12 16:20:39 +02001769 error = mnt_want_write_file(filp);
1770 if (error)
1771 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001772 error = xfs_growfs_log(mp, &in);
Jan Karad9457dc2012-06-12 16:20:39 +02001773 mnt_drop_write_file(filp);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001774 return -error;
1775 }
1776
1777 case XFS_IOC_FSGROWFSRT: {
1778 xfs_growfs_rt_t in;
1779
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001780 if (copy_from_user(&in, arg, sizeof(in)))
1781 return -XFS_ERROR(EFAULT);
1782
Jan Karad9457dc2012-06-12 16:20:39 +02001783 error = mnt_want_write_file(filp);
1784 if (error)
1785 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001786 error = xfs_growfs_rt(mp, &in);
Jan Karad9457dc2012-06-12 16:20:39 +02001787 mnt_drop_write_file(filp);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001788 return -error;
1789 }
1790
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001791 case XFS_IOC_GOINGDOWN: {
1792 __uint32_t in;
1793
1794 if (!capable(CAP_SYS_ADMIN))
1795 return -EPERM;
1796
1797 if (get_user(in, (__uint32_t __user *)arg))
1798 return -XFS_ERROR(EFAULT);
1799
1800 error = xfs_fs_goingdown(mp, in);
1801 return -error;
1802 }
1803
1804 case XFS_IOC_ERROR_INJECTION: {
1805 xfs_error_injection_t in;
1806
1807 if (!capable(CAP_SYS_ADMIN))
1808 return -EPERM;
1809
1810 if (copy_from_user(&in, arg, sizeof(in)))
1811 return -XFS_ERROR(EFAULT);
1812
1813 error = xfs_errortag_add(in.errtag, mp);
1814 return -error;
1815 }
1816
1817 case XFS_IOC_ERROR_CLEARALL:
1818 if (!capable(CAP_SYS_ADMIN))
1819 return -EPERM;
1820
1821 error = xfs_errortag_clearall(mp, 1);
1822 return -error;
1823
Brian Foster8ca149d2012-11-07 12:21:12 -05001824 case XFS_IOC_FREE_EOFBLOCKS: {
Dwight Engenb9fe5052013-08-15 14:08:02 -04001825 struct xfs_fs_eofblocks eofb;
1826 struct xfs_eofblocks keofb;
Brian Foster8ca149d2012-11-07 12:21:12 -05001827
Dwight Engen8c567a72013-08-15 14:08:03 -04001828 if (!capable(CAP_SYS_ADMIN))
1829 return -EPERM;
1830
1831 if (mp->m_flags & XFS_MOUNT_RDONLY)
1832 return -XFS_ERROR(EROFS);
1833
Brian Foster8ca149d2012-11-07 12:21:12 -05001834 if (copy_from_user(&eofb, arg, sizeof(eofb)))
1835 return -XFS_ERROR(EFAULT);
1836
Dwight Engenb9fe5052013-08-15 14:08:02 -04001837 error = xfs_fs_eofblocks_from_user(&eofb, &keofb);
1838 if (error)
1839 return -error;
Brian Foster8ca149d2012-11-07 12:21:12 -05001840
Dwight Engenb9fe5052013-08-15 14:08:02 -04001841 return -xfs_icache_free_eofblocks(mp, &keofb);
Brian Foster8ca149d2012-11-07 12:21:12 -05001842 }
1843
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001844 default:
1845 return -ENOTTY;
1846 }
1847}