blob: 3124efafb8bf441d474e7688874b24e132786d83 [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"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "xfs_buf_item.h"
37#include "xfs_utils.h"
38#include "xfs_dfrag.h"
39#include "xfs_fsops.h"
Christoph Hellwig993386c12007-08-28 16:12:30 +100040#include "xfs_vnodeops.h"
Christoph Hellwiga46db602011-01-07 13:02:04 +000041#include "xfs_discard.h"
Christoph Hellwig25fe55e2008-07-18 17:13:20 +100042#include "xfs_quota.h"
43#include "xfs_inode_item.h"
Christoph Hellwigd296d302009-01-19 02:02:57 +010044#include "xfs_export.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000045#include "xfs_trace.h"
Brian Foster8ca149d2012-11-07 12:21:12 -050046#include "xfs_icache.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 Chinner531c3bd2012-10-25 17:22:30 +110075 struct fd f = {0};
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
354STATIC int
355xfs_fssetdm_by_handle(
Christoph Hellwigd296d302009-01-19 02:02:57 +0100356 struct file *parfilp,
357 void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358{
359 int error;
360 struct fsdmidata fsd;
361 xfs_fsop_setdm_handlereq_t dmhreq;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100362 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
364 if (!capable(CAP_MKNOD))
365 return -XFS_ERROR(EPERM);
366 if (copy_from_user(&dmhreq, arg, sizeof(xfs_fsop_setdm_handlereq_t)))
367 return -XFS_ERROR(EFAULT);
368
Jan Karad9457dc2012-06-12 16:20:39 +0200369 error = mnt_want_write_file(parfilp);
370 if (error)
371 return error;
372
Christoph Hellwigd296d302009-01-19 02:02:57 +0100373 dentry = xfs_handlereq_to_dentry(parfilp, &dmhreq.hreq);
Jan Karad9457dc2012-06-12 16:20:39 +0200374 if (IS_ERR(dentry)) {
375 mnt_drop_write_file(parfilp);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100376 return PTR_ERR(dentry);
Jan Karad9457dc2012-06-12 16:20:39 +0200377 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Christoph Hellwigd296d302009-01-19 02:02:57 +0100379 if (IS_IMMUTABLE(dentry->d_inode) || IS_APPEND(dentry->d_inode)) {
Christoph Hellwig6e7f75e2007-10-11 18:09:50 +1000380 error = -XFS_ERROR(EPERM);
381 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 }
383
384 if (copy_from_user(&fsd, dmhreq.data, sizeof(fsd))) {
Christoph Hellwig6e7f75e2007-10-11 18:09:50 +1000385 error = -XFS_ERROR(EFAULT);
386 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 }
388
Christoph Hellwigd296d302009-01-19 02:02:57 +0100389 error = -xfs_set_dmattrs(XFS_I(dentry->d_inode), fsd.fsd_dmevmask,
Christoph Hellwig6e7f75e2007-10-11 18:09:50 +1000390 fsd.fsd_dmstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
Christoph Hellwig6e7f75e2007-10-11 18:09:50 +1000392 out:
Jan Karad9457dc2012-06-12 16:20:39 +0200393 mnt_drop_write_file(parfilp);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100394 dput(dentry);
Christoph Hellwig6e7f75e2007-10-11 18:09:50 +1000395 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396}
397
398STATIC int
399xfs_attrlist_by_handle(
Christoph Hellwigd296d302009-01-19 02:02:57 +0100400 struct file *parfilp,
401 void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402{
Christoph Hellwigd296d302009-01-19 02:02:57 +0100403 int error = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 attrlist_cursor_kern_t *cursor;
405 xfs_fsop_attrlist_handlereq_t al_hreq;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100406 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 char *kbuf;
408
409 if (!capable(CAP_SYS_ADMIN))
410 return -XFS_ERROR(EPERM);
411 if (copy_from_user(&al_hreq, arg, sizeof(xfs_fsop_attrlist_handlereq_t)))
412 return -XFS_ERROR(EFAULT);
413 if (al_hreq.buflen > XATTR_LIST_MAX)
414 return -XFS_ERROR(EINVAL);
415
Christoph Hellwig90ad58a2008-06-27 13:32:19 +1000416 /*
417 * Reject flags, only allow namespaces.
418 */
419 if (al_hreq.flags & ~(ATTR_ROOT | ATTR_SECURE))
420 return -XFS_ERROR(EINVAL);
421
Christoph Hellwigd296d302009-01-19 02:02:57 +0100422 dentry = xfs_handlereq_to_dentry(parfilp, &al_hreq.hreq);
423 if (IS_ERR(dentry))
424 return PTR_ERR(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Eric Sandeendd700d92013-04-04 00:05:13 -0500426 kbuf = kmem_zalloc(al_hreq.buflen, KM_SLEEP | KM_MAYFAIL);
427 if (!kbuf) {
428 kbuf = kmem_zalloc_large(al_hreq.buflen);
429 if (!kbuf)
430 goto out_dput;
431 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
433 cursor = (attrlist_cursor_kern_t *)&al_hreq.pos;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100434 error = -xfs_attr_list(XFS_I(dentry->d_inode), kbuf, al_hreq.buflen,
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000435 al_hreq.flags, cursor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 if (error)
437 goto out_kfree;
438
439 if (copy_to_user(al_hreq.buffer, kbuf, al_hreq.buflen))
440 error = -EFAULT;
441
442 out_kfree:
Eric Sandeendd700d92013-04-04 00:05:13 -0500443 if (is_vmalloc_addr(kbuf))
444 kmem_free_large(kbuf);
445 else
446 kmem_free(kbuf);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100447 out_dput:
448 dput(dentry);
449 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450}
451
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600452int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453xfs_attrmulti_attr_get(
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000454 struct inode *inode,
Dave Chinnera9273ca2010-01-20 10:47:48 +1100455 unsigned char *name,
456 unsigned char __user *ubuf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 __uint32_t *len,
458 __uint32_t flags)
459{
Dave Chinnera9273ca2010-01-20 10:47:48 +1100460 unsigned char *kbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 int error = EFAULT;
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000462
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 if (*len > XATTR_SIZE_MAX)
464 return EINVAL;
Dave Chinnerad650f52012-03-07 04:50:21 +0000465 kbuf = kmem_zalloc(*len, KM_SLEEP | KM_MAYFAIL);
466 if (!kbuf) {
467 kbuf = kmem_zalloc_large(*len);
468 if (!kbuf)
469 return ENOMEM;
470 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000472 error = xfs_attr_get(XFS_I(inode), name, kbuf, (int *)len, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 if (error)
474 goto out_kfree;
475
476 if (copy_to_user(ubuf, kbuf, *len))
477 error = EFAULT;
478
479 out_kfree:
Dave Chinnerad650f52012-03-07 04:50:21 +0000480 if (is_vmalloc_addr(kbuf))
481 kmem_free_large(kbuf);
482 else
483 kmem_free(kbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 return error;
485}
486
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600487int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488xfs_attrmulti_attr_set(
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000489 struct inode *inode,
Dave Chinnera9273ca2010-01-20 10:47:48 +1100490 unsigned char *name,
491 const unsigned char __user *ubuf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 __uint32_t len,
493 __uint32_t flags)
494{
Dave Chinnera9273ca2010-01-20 10:47:48 +1100495 unsigned char *kbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 int error = EFAULT;
497
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000498 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 return EPERM;
500 if (len > XATTR_SIZE_MAX)
501 return EINVAL;
502
Li Zefan0e639bd2009-04-08 15:08:04 +0800503 kbuf = memdup_user(ubuf, len);
504 if (IS_ERR(kbuf))
505 return PTR_ERR(kbuf);
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000506
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000507 error = xfs_attr_set(XFS_I(inode), name, kbuf, len, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 return error;
510}
511
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600512int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513xfs_attrmulti_attr_remove(
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000514 struct inode *inode,
Dave Chinnera9273ca2010-01-20 10:47:48 +1100515 unsigned char *name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 __uint32_t flags)
517{
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000518 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 return EPERM;
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000520 return xfs_attr_remove(XFS_I(inode), name, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521}
522
523STATIC int
524xfs_attrmulti_by_handle(
Dave Hansen42a74f22008-02-15 14:37:46 -0800525 struct file *parfilp,
Christoph Hellwigd296d302009-01-19 02:02:57 +0100526 void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527{
528 int error;
529 xfs_attr_multiop_t *ops;
530 xfs_fsop_attrmulti_handlereq_t am_hreq;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100531 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 unsigned int i, size;
Dave Chinnera9273ca2010-01-20 10:47:48 +1100533 unsigned char *attr_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
535 if (!capable(CAP_SYS_ADMIN))
536 return -XFS_ERROR(EPERM);
537 if (copy_from_user(&am_hreq, arg, sizeof(xfs_fsop_attrmulti_handlereq_t)))
538 return -XFS_ERROR(EFAULT);
539
Zhitong Wangfda168c2010-03-23 09:51:22 +1100540 /* overflow check */
541 if (am_hreq.opcount >= INT_MAX / sizeof(xfs_attr_multiop_t))
542 return -E2BIG;
543
Christoph Hellwigd296d302009-01-19 02:02:57 +0100544 dentry = xfs_handlereq_to_dentry(parfilp, &am_hreq.hreq);
545 if (IS_ERR(dentry))
546 return PTR_ERR(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
548 error = E2BIG;
Christoph Hellwige182f572008-06-27 13:32:31 +1000549 size = am_hreq.opcount * sizeof(xfs_attr_multiop_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 if (!size || size > 16 * PAGE_SIZE)
Christoph Hellwigd296d302009-01-19 02:02:57 +0100551 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
Li Zefan0e639bd2009-04-08 15:08:04 +0800553 ops = memdup_user(am_hreq.ops, size);
554 if (IS_ERR(ops)) {
555 error = PTR_ERR(ops);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100556 goto out_dput;
Li Zefan0e639bd2009-04-08 15:08:04 +0800557 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
559 attr_name = kmalloc(MAXNAMELEN, GFP_KERNEL);
560 if (!attr_name)
561 goto out_kfree_ops;
562
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 error = 0;
564 for (i = 0; i < am_hreq.opcount; i++) {
Dave Chinnera9273ca2010-01-20 10:47:48 +1100565 ops[i].am_error = strncpy_from_user((char *)attr_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 ops[i].am_attrname, MAXNAMELEN);
567 if (ops[i].am_error == 0 || ops[i].am_error == MAXNAMELEN)
568 error = -ERANGE;
569 if (ops[i].am_error < 0)
570 break;
571
572 switch (ops[i].am_opcode) {
573 case ATTR_OP_GET:
Christoph Hellwigd296d302009-01-19 02:02:57 +0100574 ops[i].am_error = xfs_attrmulti_attr_get(
575 dentry->d_inode, attr_name,
576 ops[i].am_attrvalue, &ops[i].am_length,
577 ops[i].am_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 break;
579 case ATTR_OP_SET:
Al Viroa561be72011-11-23 11:57:51 -0500580 ops[i].am_error = mnt_want_write_file(parfilp);
Dave Hansen42a74f22008-02-15 14:37:46 -0800581 if (ops[i].am_error)
582 break;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100583 ops[i].am_error = xfs_attrmulti_attr_set(
584 dentry->d_inode, attr_name,
585 ops[i].am_attrvalue, ops[i].am_length,
586 ops[i].am_flags);
Al Viro2a79f172011-12-09 08:06:57 -0500587 mnt_drop_write_file(parfilp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 break;
589 case ATTR_OP_REMOVE:
Al Viroa561be72011-11-23 11:57:51 -0500590 ops[i].am_error = mnt_want_write_file(parfilp);
Dave Hansen42a74f22008-02-15 14:37:46 -0800591 if (ops[i].am_error)
592 break;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100593 ops[i].am_error = xfs_attrmulti_attr_remove(
594 dentry->d_inode, attr_name,
595 ops[i].am_flags);
Al Viro2a79f172011-12-09 08:06:57 -0500596 mnt_drop_write_file(parfilp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 break;
598 default:
599 ops[i].am_error = EINVAL;
600 }
601 }
602
603 if (copy_to_user(am_hreq.ops, ops, size))
604 error = XFS_ERROR(EFAULT);
605
606 kfree(attr_name);
607 out_kfree_ops:
608 kfree(ops);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100609 out_dput:
610 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 return -error;
612}
613
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600614int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615xfs_ioc_space(
Christoph Hellwig993386c12007-08-28 16:12:30 +1000616 struct xfs_inode *ip,
Alexey Dobriyanf37ea142006-09-28 10:52:04 +1000617 struct inode *inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 struct file *filp,
619 int ioflags,
620 unsigned int cmd,
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600621 xfs_flock64_t *bf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 int attr_flags = 0;
624 int error;
625
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600626 /*
627 * Only allow the sys admin to reserve space unless
628 * unwritten extents are enabled.
629 */
630 if (!xfs_sb_version_hasextflgbit(&ip->i_mount->m_sb) &&
631 !capable(CAP_SYS_ADMIN))
632 return -XFS_ERROR(EPERM);
633
Alexey Dobriyanf37ea142006-09-28 10:52:04 +1000634 if (inode->i_flags & (S_IMMUTABLE|S_APPEND))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 return -XFS_ERROR(EPERM);
636
Eric Sandeenad4a8ac2005-09-02 16:41:16 +1000637 if (!(filp->f_mode & FMODE_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 return -XFS_ERROR(EBADF);
639
Alexey Dobriyanf37ea142006-09-28 10:52:04 +1000640 if (!S_ISREG(inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 return -XFS_ERROR(EINVAL);
642
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 if (filp->f_flags & (O_NDELAY|O_NONBLOCK))
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000644 attr_flags |= XFS_ATTR_NONBLOCK;
Dave Chinner82878892011-03-26 09:13:08 +1100645
646 if (filp->f_flags & O_DSYNC)
647 attr_flags |= XFS_ATTR_SYNC;
648
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 if (ioflags & IO_INVIS)
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000650 attr_flags |= XFS_ATTR_DMI;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
Jan Karad9457dc2012-06-12 16:20:39 +0200652 error = mnt_want_write_file(filp);
653 if (error)
654 return error;
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600655 error = xfs_change_file_space(ip, cmd, bf, filp->f_pos, attr_flags);
Jan Karad9457dc2012-06-12 16:20:39 +0200656 mnt_drop_write_file(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 return -error;
658}
659
660STATIC int
661xfs_ioc_bulkstat(
662 xfs_mount_t *mp,
663 unsigned int cmd,
664 void __user *arg)
665{
666 xfs_fsop_bulkreq_t bulkreq;
667 int count; /* # of records returned */
668 xfs_ino_t inlast; /* last inode number */
669 int done;
670 int error;
671
672 /* done = 1 if there are more stats to get and if bulkstat */
673 /* should be called again (unused here, but used in dmapi) */
674
675 if (!capable(CAP_SYS_ADMIN))
676 return -EPERM;
677
678 if (XFS_FORCED_SHUTDOWN(mp))
679 return -XFS_ERROR(EIO);
680
681 if (copy_from_user(&bulkreq, arg, sizeof(xfs_fsop_bulkreq_t)))
682 return -XFS_ERROR(EFAULT);
683
684 if (copy_from_user(&inlast, bulkreq.lastip, sizeof(__s64)))
685 return -XFS_ERROR(EFAULT);
686
687 if ((count = bulkreq.icount) <= 0)
688 return -XFS_ERROR(EINVAL);
689
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100690 if (bulkreq.ubuffer == NULL)
691 return -XFS_ERROR(EINVAL);
692
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 if (cmd == XFS_IOC_FSINUMBERS)
694 error = xfs_inumbers(mp, &inlast, &count,
Michal Marekfaa63e92007-07-11 11:10:19 +1000695 bulkreq.ubuffer, xfs_inumbers_fmt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 else if (cmd == XFS_IOC_FSBULKSTAT_SINGLE)
697 error = xfs_bulkstat_single(mp, &inlast,
698 bulkreq.ubuffer, &done);
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100699 else /* XFS_IOC_FSBULKSTAT */
Christoph Hellwig7dce11d2010-06-23 18:11:11 +1000700 error = xfs_bulkstat(mp, &inlast, &count, xfs_bulkstat_one,
701 sizeof(xfs_bstat_t), bulkreq.ubuffer,
702 &done);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
704 if (error)
705 return -error;
706
707 if (bulkreq.ocount != NULL) {
708 if (copy_to_user(bulkreq.lastip, &inlast,
709 sizeof(xfs_ino_t)))
710 return -XFS_ERROR(EFAULT);
711
712 if (copy_to_user(bulkreq.ocount, &count, sizeof(count)))
713 return -XFS_ERROR(EFAULT);
714 }
715
716 return 0;
717}
718
719STATIC int
720xfs_ioc_fsgeometry_v1(
721 xfs_mount_t *mp,
722 void __user *arg)
723{
Alex Eldereeb20362011-03-01 17:50:00 +0000724 xfs_fsop_geom_t fsgeo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 int error;
726
Alex Eldereeb20362011-03-01 17:50:00 +0000727 error = xfs_fs_geometry(mp, &fsgeo, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 if (error)
729 return -error;
730
Alex Eldereeb20362011-03-01 17:50:00 +0000731 /*
732 * Caller should have passed an argument of type
733 * xfs_fsop_geom_v1_t. This is a proper subset of the
734 * xfs_fsop_geom_t that xfs_fs_geometry() fills in.
735 */
736 if (copy_to_user(arg, &fsgeo, sizeof(xfs_fsop_geom_v1_t)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 return -XFS_ERROR(EFAULT);
738 return 0;
739}
740
741STATIC int
742xfs_ioc_fsgeometry(
743 xfs_mount_t *mp,
744 void __user *arg)
745{
746 xfs_fsop_geom_t fsgeo;
747 int error;
748
749 error = xfs_fs_geometry(mp, &fsgeo, 4);
750 if (error)
751 return -error;
752
753 if (copy_to_user(arg, &fsgeo, sizeof(fsgeo)))
754 return -XFS_ERROR(EFAULT);
755 return 0;
756}
757
758/*
759 * Linux extended inode flags interface.
760 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
762STATIC unsigned int
763xfs_merge_ioc_xflags(
764 unsigned int flags,
765 unsigned int start)
766{
767 unsigned int xflags = start;
768
Eric Sandeen39058a02007-02-10 18:37:10 +1100769 if (flags & FS_IMMUTABLE_FL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 xflags |= XFS_XFLAG_IMMUTABLE;
771 else
772 xflags &= ~XFS_XFLAG_IMMUTABLE;
Eric Sandeen39058a02007-02-10 18:37:10 +1100773 if (flags & FS_APPEND_FL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 xflags |= XFS_XFLAG_APPEND;
775 else
776 xflags &= ~XFS_XFLAG_APPEND;
Eric Sandeen39058a02007-02-10 18:37:10 +1100777 if (flags & FS_SYNC_FL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 xflags |= XFS_XFLAG_SYNC;
779 else
780 xflags &= ~XFS_XFLAG_SYNC;
Eric Sandeen39058a02007-02-10 18:37:10 +1100781 if (flags & FS_NOATIME_FL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 xflags |= XFS_XFLAG_NOATIME;
783 else
784 xflags &= ~XFS_XFLAG_NOATIME;
Eric Sandeen39058a02007-02-10 18:37:10 +1100785 if (flags & FS_NODUMP_FL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 xflags |= XFS_XFLAG_NODUMP;
787 else
788 xflags &= ~XFS_XFLAG_NODUMP;
789
790 return xflags;
791}
792
793STATIC unsigned int
794xfs_di2lxflags(
795 __uint16_t di_flags)
796{
797 unsigned int flags = 0;
798
799 if (di_flags & XFS_DIFLAG_IMMUTABLE)
Eric Sandeen39058a02007-02-10 18:37:10 +1100800 flags |= FS_IMMUTABLE_FL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 if (di_flags & XFS_DIFLAG_APPEND)
Eric Sandeen39058a02007-02-10 18:37:10 +1100802 flags |= FS_APPEND_FL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 if (di_flags & XFS_DIFLAG_SYNC)
Eric Sandeen39058a02007-02-10 18:37:10 +1100804 flags |= FS_SYNC_FL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 if (di_flags & XFS_DIFLAG_NOATIME)
Eric Sandeen39058a02007-02-10 18:37:10 +1100806 flags |= FS_NOATIME_FL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 if (di_flags & XFS_DIFLAG_NODUMP)
Eric Sandeen39058a02007-02-10 18:37:10 +1100808 flags |= FS_NODUMP_FL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 return flags;
810}
811
812STATIC int
Christoph Hellwigc83bfab2007-10-11 17:47:00 +1000813xfs_ioc_fsgetxattr(
814 xfs_inode_t *ip,
815 int attr,
816 void __user *arg)
817{
818 struct fsxattr fa;
819
Dan Rosenberga122eb22010-09-06 18:24:57 -0400820 memset(&fa, 0, sizeof(struct fsxattr));
821
Christoph Hellwigc83bfab2007-10-11 17:47:00 +1000822 xfs_ilock(ip, XFS_ILOCK_SHARED);
823 fa.fsx_xflags = xfs_ip2xflags(ip);
824 fa.fsx_extsize = ip->i_d.di_extsize << ip->i_mount->m_sb.sb_blocklog;
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000825 fa.fsx_projid = xfs_get_projid(ip);
Christoph Hellwigc83bfab2007-10-11 17:47:00 +1000826
827 if (attr) {
828 if (ip->i_afp) {
829 if (ip->i_afp->if_flags & XFS_IFEXTENTS)
830 fa.fsx_nextents = ip->i_afp->if_bytes /
831 sizeof(xfs_bmbt_rec_t);
832 else
833 fa.fsx_nextents = ip->i_d.di_anextents;
834 } else
835 fa.fsx_nextents = 0;
836 } else {
837 if (ip->i_df.if_flags & XFS_IFEXTENTS)
838 fa.fsx_nextents = ip->i_df.if_bytes /
839 sizeof(xfs_bmbt_rec_t);
840 else
841 fa.fsx_nextents = ip->i_d.di_nextents;
842 }
843 xfs_iunlock(ip, XFS_ILOCK_SHARED);
844
845 if (copy_to_user(arg, &fa, sizeof(fa)))
846 return -EFAULT;
847 return 0;
848}
849
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000850STATIC void
851xfs_set_diflags(
852 struct xfs_inode *ip,
853 unsigned int xflags)
854{
855 unsigned int di_flags;
856
857 /* can't set PREALLOC this way, just preserve it */
858 di_flags = (ip->i_d.di_flags & XFS_DIFLAG_PREALLOC);
859 if (xflags & XFS_XFLAG_IMMUTABLE)
860 di_flags |= XFS_DIFLAG_IMMUTABLE;
861 if (xflags & XFS_XFLAG_APPEND)
862 di_flags |= XFS_DIFLAG_APPEND;
863 if (xflags & XFS_XFLAG_SYNC)
864 di_flags |= XFS_DIFLAG_SYNC;
865 if (xflags & XFS_XFLAG_NOATIME)
866 di_flags |= XFS_DIFLAG_NOATIME;
867 if (xflags & XFS_XFLAG_NODUMP)
868 di_flags |= XFS_DIFLAG_NODUMP;
869 if (xflags & XFS_XFLAG_PROJINHERIT)
870 di_flags |= XFS_DIFLAG_PROJINHERIT;
871 if (xflags & XFS_XFLAG_NODEFRAG)
872 di_flags |= XFS_DIFLAG_NODEFRAG;
873 if (xflags & XFS_XFLAG_FILESTREAM)
874 di_flags |= XFS_DIFLAG_FILESTREAM;
Al Viroabbede12011-07-26 02:31:30 -0400875 if (S_ISDIR(ip->i_d.di_mode)) {
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000876 if (xflags & XFS_XFLAG_RTINHERIT)
877 di_flags |= XFS_DIFLAG_RTINHERIT;
878 if (xflags & XFS_XFLAG_NOSYMLINKS)
879 di_flags |= XFS_DIFLAG_NOSYMLINKS;
880 if (xflags & XFS_XFLAG_EXTSZINHERIT)
881 di_flags |= XFS_DIFLAG_EXTSZINHERIT;
Al Viroabbede12011-07-26 02:31:30 -0400882 } else if (S_ISREG(ip->i_d.di_mode)) {
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000883 if (xflags & XFS_XFLAG_REALTIME)
884 di_flags |= XFS_DIFLAG_REALTIME;
885 if (xflags & XFS_XFLAG_EXTSIZE)
886 di_flags |= XFS_DIFLAG_EXTSIZE;
887 }
888
889 ip->i_d.di_flags = di_flags;
890}
891
Christoph Hellwigf13fae22008-07-21 16:16:15 +1000892STATIC void
893xfs_diflags_to_linux(
894 struct xfs_inode *ip)
895{
David Chinnere4f75292008-08-13 16:00:45 +1000896 struct inode *inode = VFS_I(ip);
Christoph Hellwigf13fae22008-07-21 16:16:15 +1000897 unsigned int xflags = xfs_ip2xflags(ip);
898
899 if (xflags & XFS_XFLAG_IMMUTABLE)
900 inode->i_flags |= S_IMMUTABLE;
901 else
902 inode->i_flags &= ~S_IMMUTABLE;
903 if (xflags & XFS_XFLAG_APPEND)
904 inode->i_flags |= S_APPEND;
905 else
906 inode->i_flags &= ~S_APPEND;
907 if (xflags & XFS_XFLAG_SYNC)
908 inode->i_flags |= S_SYNC;
909 else
910 inode->i_flags &= ~S_SYNC;
911 if (xflags & XFS_XFLAG_NOATIME)
912 inode->i_flags |= S_NOATIME;
913 else
914 inode->i_flags &= ~S_NOATIME;
915}
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000916
917#define FSX_PROJID 1
918#define FSX_EXTSIZE 2
919#define FSX_XFLAGS 4
920#define FSX_NONBLOCK 8
921
922STATIC int
923xfs_ioctl_setattr(
924 xfs_inode_t *ip,
925 struct fsxattr *fa,
926 int mask)
927{
928 struct xfs_mount *mp = ip->i_mount;
929 struct xfs_trans *tp;
930 unsigned int lock_flags = 0;
Christoph Hellwig7d095252009-06-08 15:33:32 +0200931 struct xfs_dquot *udqp = NULL;
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500932 struct xfs_dquot *pdqp = NULL;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000933 struct xfs_dquot *olddquot = NULL;
934 int code;
935
Christoph Hellwigcca28fb2010-06-24 11:57:09 +1000936 trace_xfs_ioctl_setattr(ip);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000937
938 if (mp->m_flags & XFS_MOUNT_RDONLY)
939 return XFS_ERROR(EROFS);
940 if (XFS_FORCED_SHUTDOWN(mp))
941 return XFS_ERROR(EIO);
942
943 /*
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000944 * Disallow 32bit project ids when projid32bit feature is not enabled.
Arkadiusz Mi?kiewicz23963e52010-08-26 10:19:43 +0000945 */
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000946 if ((mask & FSX_PROJID) && (fa->fsx_projid > (__uint16_t)-1) &&
947 !xfs_sb_version_hasprojid32bit(&ip->i_mount->m_sb))
Arkadiusz Mi?kiewicz23963e52010-08-26 10:19:43 +0000948 return XFS_ERROR(EINVAL);
949
950 /*
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000951 * If disk quotas is on, we make sure that the dquots do exist on disk,
952 * before we start any other transactions. Trying to do this later
953 * is messy. We don't care to take a readlock to look at the ids
954 * in inode here, because we can't hold it across the trans_reserve.
955 * If the IDs do change before we take the ilock, we're covered
956 * because the i_*dquot fields will get updated anyway.
957 */
958 if (XFS_IS_QUOTA_ON(mp) && (mask & FSX_PROJID)) {
Christoph Hellwig7d095252009-06-08 15:33:32 +0200959 code = xfs_qm_vop_dqalloc(ip, ip->i_d.di_uid,
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000960 ip->i_d.di_gid, fa->fsx_projid,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500961 XFS_QMOPT_PQUOTA, &udqp, NULL, &pdqp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000962 if (code)
963 return code;
964 }
965
966 /*
967 * For the other attributes, we acquire the inode lock and
968 * first do an error checking pass.
969 */
970 tp = xfs_trans_alloc(mp, XFS_TRANS_SETATTR_NOT_SIZE);
971 code = xfs_trans_reserve(tp, 0, XFS_ICHANGE_LOG_RES(mp), 0, 0, 0);
972 if (code)
973 goto error_return;
974
975 lock_flags = XFS_ILOCK_EXCL;
976 xfs_ilock(ip, lock_flags);
977
978 /*
979 * CAP_FOWNER overrides the following restrictions:
980 *
981 * The user ID of the calling process must be equal
982 * to the file owner ID, except in cases where the
983 * CAP_FSETID capability is applicable.
984 */
David Howells91b7771252008-10-31 15:50:04 +1100985 if (current_fsuid() != ip->i_d.di_uid && !capable(CAP_FOWNER)) {
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000986 code = XFS_ERROR(EPERM);
987 goto error_return;
988 }
989
990 /*
991 * Do a quota reservation only if projid is actually going to change.
992 */
993 if (mask & FSX_PROJID) {
Christoph Hellwig7d095252009-06-08 15:33:32 +0200994 if (XFS_IS_QUOTA_RUNNING(mp) &&
995 XFS_IS_PQUOTA_ON(mp) &&
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000996 xfs_get_projid(ip) != fa->fsx_projid) {
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000997 ASSERT(tp);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500998 code = xfs_qm_vop_chown_reserve(tp, ip, udqp, NULL,
999 pdqp, capable(CAP_FOWNER) ?
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001000 XFS_QMOPT_FORCE_RES : 0);
1001 if (code) /* out of quota */
1002 goto error_return;
1003 }
1004 }
1005
1006 if (mask & FSX_EXTSIZE) {
1007 /*
1008 * Can't change extent size if any extents are allocated.
1009 */
1010 if (ip->i_d.di_nextents &&
1011 ((ip->i_d.di_extsize << mp->m_sb.sb_blocklog) !=
1012 fa->fsx_extsize)) {
1013 code = XFS_ERROR(EINVAL); /* EFBIG? */
1014 goto error_return;
1015 }
1016
1017 /*
1018 * Extent size must be a multiple of the appropriate block
Dave Chinner53158372011-01-27 12:18:18 +11001019 * size, if set at all. It must also be smaller than the
1020 * maximum extent size supported by the filesystem.
1021 *
1022 * Also, for non-realtime files, limit the extent size hint to
1023 * half the size of the AGs in the filesystem so alignment
1024 * doesn't result in extents larger than an AG.
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001025 */
1026 if (fa->fsx_extsize != 0) {
Dave Chinner53158372011-01-27 12:18:18 +11001027 xfs_extlen_t size;
1028 xfs_fsblock_t extsize_fsb;
1029
1030 extsize_fsb = XFS_B_TO_FSB(mp, fa->fsx_extsize);
1031 if (extsize_fsb > MAXEXTLEN) {
1032 code = XFS_ERROR(EINVAL);
1033 goto error_return;
1034 }
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001035
1036 if (XFS_IS_REALTIME_INODE(ip) ||
1037 ((mask & FSX_XFLAGS) &&
1038 (fa->fsx_xflags & XFS_XFLAG_REALTIME))) {
1039 size = mp->m_sb.sb_rextsize <<
1040 mp->m_sb.sb_blocklog;
1041 } else {
1042 size = mp->m_sb.sb_blocksize;
Dave Chinner53158372011-01-27 12:18:18 +11001043 if (extsize_fsb > mp->m_sb.sb_agblocks / 2) {
1044 code = XFS_ERROR(EINVAL);
1045 goto error_return;
1046 }
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001047 }
1048
1049 if (fa->fsx_extsize % size) {
1050 code = XFS_ERROR(EINVAL);
1051 goto error_return;
1052 }
1053 }
1054 }
1055
1056
1057 if (mask & FSX_XFLAGS) {
1058 /*
1059 * Can't change realtime flag if any extents are allocated.
1060 */
1061 if ((ip->i_d.di_nextents || ip->i_delayed_blks) &&
1062 (XFS_IS_REALTIME_INODE(ip)) !=
1063 (fa->fsx_xflags & XFS_XFLAG_REALTIME)) {
1064 code = XFS_ERROR(EINVAL); /* EFBIG? */
1065 goto error_return;
1066 }
1067
1068 /*
1069 * If realtime flag is set then must have realtime data.
1070 */
1071 if ((fa->fsx_xflags & XFS_XFLAG_REALTIME)) {
1072 if ((mp->m_sb.sb_rblocks == 0) ||
1073 (mp->m_sb.sb_rextsize == 0) ||
1074 (ip->i_d.di_extsize % mp->m_sb.sb_rextsize)) {
1075 code = XFS_ERROR(EINVAL);
1076 goto error_return;
1077 }
1078 }
1079
1080 /*
1081 * Can't modify an immutable/append-only file unless
1082 * we have appropriate permission.
1083 */
1084 if ((ip->i_d.di_flags &
1085 (XFS_DIFLAG_IMMUTABLE|XFS_DIFLAG_APPEND) ||
1086 (fa->fsx_xflags &
1087 (XFS_XFLAG_IMMUTABLE | XFS_XFLAG_APPEND))) &&
1088 !capable(CAP_LINUX_IMMUTABLE)) {
1089 code = XFS_ERROR(EPERM);
1090 goto error_return;
1091 }
1092 }
1093
Christoph Hellwigddc34152011-09-19 15:00:54 +00001094 xfs_trans_ijoin(tp, ip, 0);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001095
1096 /*
1097 * Change file ownership. Must be the owner or privileged.
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001098 */
1099 if (mask & FSX_PROJID) {
1100 /*
1101 * CAP_FSETID overrides the following restrictions:
1102 *
1103 * The set-user-ID and set-group-ID bits of a file will be
1104 * cleared upon successful return from chown()
1105 */
1106 if ((ip->i_d.di_mode & (S_ISUID|S_ISGID)) &&
1107 !capable(CAP_FSETID))
1108 ip->i_d.di_mode &= ~(S_ISUID|S_ISGID);
1109
1110 /*
1111 * Change the ownerships and register quota modifications
1112 * in the transaction.
1113 */
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001114 if (xfs_get_projid(ip) != fa->fsx_projid) {
Christoph Hellwig7d095252009-06-08 15:33:32 +02001115 if (XFS_IS_QUOTA_RUNNING(mp) && XFS_IS_PQUOTA_ON(mp)) {
1116 olddquot = xfs_qm_vop_chown(tp, ip,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001117 &ip->i_pdquot, pdqp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001118 }
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001119 xfs_set_projid(ip, fa->fsx_projid);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001120
1121 /*
1122 * We may have to rev the inode as well as
1123 * the superblock version number since projids didn't
1124 * exist before DINODE_VERSION_2 and SB_VERSION_NLINK.
1125 */
Christoph Hellwig51ce16d2008-11-28 14:23:39 +11001126 if (ip->i_d.di_version == 1)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001127 xfs_bump_ino_vers2(tp, ip);
1128 }
1129
1130 }
1131
1132 if (mask & FSX_EXTSIZE)
1133 ip->i_d.di_extsize = fa->fsx_extsize >> mp->m_sb.sb_blocklog;
Christoph Hellwigf13fae22008-07-21 16:16:15 +10001134 if (mask & FSX_XFLAGS) {
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001135 xfs_set_diflags(ip, fa->fsx_xflags);
Christoph Hellwigf13fae22008-07-21 16:16:15 +10001136 xfs_diflags_to_linux(ip);
1137 }
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001138
Dave Chinnerdcd79a12010-09-28 12:27:25 +10001139 xfs_trans_ichgtime(tp, ip, XFS_ICHGTIME_CHG);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001140 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001141
1142 XFS_STATS_INC(xs_ig_attrchg);
1143
1144 /*
1145 * If this is a synchronous mount, make sure that the
1146 * transaction goes to disk before returning to the user.
1147 * This is slightly sub-optimal in that truncates require
1148 * two sync transactions instead of one for wsync filesystems.
1149 * One for the truncate and one for the timestamps since we
1150 * don't want to change the timestamps unless we're sure the
1151 * truncate worked. Truncates are less than 1% of the laddis
1152 * mix so this probably isn't worth the trouble to optimize.
1153 */
1154 if (mp->m_flags & XFS_MOUNT_WSYNC)
1155 xfs_trans_set_sync(tp);
1156 code = xfs_trans_commit(tp, 0);
1157 xfs_iunlock(ip, lock_flags);
1158
1159 /*
1160 * Release any dquot(s) the inode had kept before chown.
1161 */
Christoph Hellwig7d095252009-06-08 15:33:32 +02001162 xfs_qm_dqrele(olddquot);
1163 xfs_qm_dqrele(udqp);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001164 xfs_qm_dqrele(pdqp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001165
Christoph Hellwig288699f2010-06-23 18:11:15 +10001166 return code;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001167
1168 error_return:
Christoph Hellwig7d095252009-06-08 15:33:32 +02001169 xfs_qm_dqrele(udqp);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001170 xfs_qm_dqrele(pdqp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001171 xfs_trans_cancel(tp, 0);
1172 if (lock_flags)
1173 xfs_iunlock(ip, lock_flags);
1174 return code;
1175}
1176
Christoph Hellwigc83bfab2007-10-11 17:47:00 +10001177STATIC int
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001178xfs_ioc_fssetxattr(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 xfs_inode_t *ip,
1180 struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 void __user *arg)
1182{
1183 struct fsxattr fa;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001184 unsigned int mask;
Jan Karad9457dc2012-06-12 16:20:39 +02001185 int error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001186
1187 if (copy_from_user(&fa, arg, sizeof(fa)))
1188 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001190 mask = FSX_XFLAGS | FSX_EXTSIZE | FSX_PROJID;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001191 if (filp->f_flags & (O_NDELAY|O_NONBLOCK))
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001192 mask |= FSX_NONBLOCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
Jan Karad9457dc2012-06-12 16:20:39 +02001194 error = mnt_want_write_file(filp);
1195 if (error)
1196 return error;
1197 error = xfs_ioctl_setattr(ip, &fa, mask);
1198 mnt_drop_write_file(filp);
1199 return -error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001200}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001202STATIC int
1203xfs_ioc_getxflags(
1204 xfs_inode_t *ip,
1205 void __user *arg)
1206{
1207 unsigned int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001209 flags = xfs_di2lxflags(ip->i_d.di_flags);
1210 if (copy_to_user(arg, &flags, sizeof(flags)))
1211 return -EFAULT;
1212 return 0;
1213}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001215STATIC int
1216xfs_ioc_setxflags(
1217 xfs_inode_t *ip,
1218 struct file *filp,
1219 void __user *arg)
1220{
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001221 struct fsxattr fa;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001222 unsigned int flags;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001223 unsigned int mask;
Jan Karad9457dc2012-06-12 16:20:39 +02001224 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001226 if (copy_from_user(&flags, arg, sizeof(flags)))
1227 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001229 if (flags & ~(FS_IMMUTABLE_FL | FS_APPEND_FL | \
1230 FS_NOATIME_FL | FS_NODUMP_FL | \
1231 FS_SYNC_FL))
1232 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001234 mask = FSX_XFLAGS;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001235 if (filp->f_flags & (O_NDELAY|O_NONBLOCK))
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001236 mask |= FSX_NONBLOCK;
1237 fa.fsx_xflags = xfs_merge_ioc_xflags(flags, xfs_ip2xflags(ip));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
Jan Karad9457dc2012-06-12 16:20:39 +02001239 error = mnt_want_write_file(filp);
1240 if (error)
1241 return error;
1242 error = xfs_ioctl_setattr(ip, &fa, mask);
1243 mnt_drop_write_file(filp);
1244 return -error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245}
1246
1247STATIC int
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001248xfs_getbmap_format(void **ap, struct getbmapx *bmv, int *full)
1249{
1250 struct getbmap __user *base = *ap;
1251
1252 /* copy only getbmap portion (not getbmapx) */
1253 if (copy_to_user(base, bmv, sizeof(struct getbmap)))
1254 return XFS_ERROR(EFAULT);
1255
1256 *ap += sizeof(struct getbmap);
1257 return 0;
1258}
1259
1260STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261xfs_ioc_getbmap(
Christoph Hellwig993386c12007-08-28 16:12:30 +10001262 struct xfs_inode *ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 int ioflags,
1264 unsigned int cmd,
1265 void __user *arg)
1266{
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001267 struct getbmapx bmx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 int error;
1269
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001270 if (copy_from_user(&bmx, arg, sizeof(struct getbmapx)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 return -XFS_ERROR(EFAULT);
1272
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001273 if (bmx.bmv_count < 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 return -XFS_ERROR(EINVAL);
1275
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001276 bmx.bmv_iflags = (cmd == XFS_IOC_GETBMAPA ? BMV_IF_ATTRFORK : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 if (ioflags & IO_INVIS)
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001278 bmx.bmv_iflags |= BMV_IF_NO_DMAPI_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001280 error = xfs_getbmap(ip, &bmx, xfs_getbmap_format,
1281 (struct getbmap *)arg+1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 if (error)
1283 return -error;
1284
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001285 /* copy back header - only size of getbmap */
1286 if (copy_to_user(arg, &bmx, sizeof(struct getbmap)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 return -XFS_ERROR(EFAULT);
1288 return 0;
1289}
1290
1291STATIC int
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001292xfs_getbmapx_format(void **ap, struct getbmapx *bmv, int *full)
1293{
1294 struct getbmapx __user *base = *ap;
1295
1296 if (copy_to_user(base, bmv, sizeof(struct getbmapx)))
1297 return XFS_ERROR(EFAULT);
1298
1299 *ap += sizeof(struct getbmapx);
1300 return 0;
1301}
1302
1303STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304xfs_ioc_getbmapx(
Christoph Hellwig993386c12007-08-28 16:12:30 +10001305 struct xfs_inode *ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 void __user *arg)
1307{
1308 struct getbmapx bmx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 int error;
1310
1311 if (copy_from_user(&bmx, arg, sizeof(bmx)))
1312 return -XFS_ERROR(EFAULT);
1313
1314 if (bmx.bmv_count < 2)
1315 return -XFS_ERROR(EINVAL);
1316
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001317 if (bmx.bmv_iflags & (~BMV_IF_VALID))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 return -XFS_ERROR(EINVAL);
1319
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001320 error = xfs_getbmap(ip, &bmx, xfs_getbmapx_format,
1321 (struct getbmapx *)arg+1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 if (error)
1323 return -error;
1324
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001325 /* copy back header */
1326 if (copy_to_user(arg, &bmx, sizeof(struct getbmapx)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 return -XFS_ERROR(EFAULT);
1328
1329 return 0;
1330}
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001331
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001332/*
1333 * Note: some of the ioctl's return positive numbers as a
1334 * byte count indicating success, such as readlink_by_handle.
1335 * So we don't "sign flip" like most other routines. This means
1336 * true errors need to be returned as a negative value.
1337 */
1338long
1339xfs_file_ioctl(
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001340 struct file *filp,
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001341 unsigned int cmd,
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001342 unsigned long p)
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001343{
Al Viro496ad9a2013-01-23 17:07:38 -05001344 struct inode *inode = file_inode(filp);
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001345 struct xfs_inode *ip = XFS_I(inode);
1346 struct xfs_mount *mp = ip->i_mount;
1347 void __user *arg = (void __user *)p;
1348 int ioflags = 0;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001349 int error;
1350
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001351 if (filp->f_mode & FMODE_NOCMTIME)
1352 ioflags |= IO_INVIS;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001353
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001354 trace_xfs_file_ioctl(ip);
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001355
1356 switch (cmd) {
Christoph Hellwiga46db602011-01-07 13:02:04 +00001357 case FITRIM:
1358 return xfs_ioc_trim(mp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001359 case XFS_IOC_ALLOCSP:
1360 case XFS_IOC_FREESP:
1361 case XFS_IOC_RESVSP:
1362 case XFS_IOC_UNRESVSP:
1363 case XFS_IOC_ALLOCSP64:
1364 case XFS_IOC_FREESP64:
1365 case XFS_IOC_RESVSP64:
Dave Chinner44722352010-08-24 12:02:11 +10001366 case XFS_IOC_UNRESVSP64:
1367 case XFS_IOC_ZERO_RANGE: {
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001368 xfs_flock64_t bf;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001369
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001370 if (copy_from_user(&bf, arg, sizeof(bf)))
1371 return -XFS_ERROR(EFAULT);
1372 return xfs_ioc_space(ip, inode, filp, ioflags, cmd, &bf);
1373 }
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001374 case XFS_IOC_DIOINFO: {
1375 struct dioattr da;
1376 xfs_buftarg_t *target =
1377 XFS_IS_REALTIME_INODE(ip) ?
1378 mp->m_rtdev_targp : mp->m_ddev_targp;
1379
1380 da.d_mem = da.d_miniosz = 1 << target->bt_sshift;
1381 da.d_maxiosz = INT_MAX & ~(da.d_miniosz - 1);
1382
1383 if (copy_to_user(arg, &da, sizeof(da)))
1384 return -XFS_ERROR(EFAULT);
1385 return 0;
1386 }
1387
1388 case XFS_IOC_FSBULKSTAT_SINGLE:
1389 case XFS_IOC_FSBULKSTAT:
1390 case XFS_IOC_FSINUMBERS:
1391 return xfs_ioc_bulkstat(mp, cmd, arg);
1392
1393 case XFS_IOC_FSGEOMETRY_V1:
1394 return xfs_ioc_fsgeometry_v1(mp, arg);
1395
1396 case XFS_IOC_FSGEOMETRY:
1397 return xfs_ioc_fsgeometry(mp, arg);
1398
1399 case XFS_IOC_GETVERSION:
1400 return put_user(inode->i_generation, (int __user *)arg);
1401
1402 case XFS_IOC_FSGETXATTR:
1403 return xfs_ioc_fsgetxattr(ip, 0, arg);
1404 case XFS_IOC_FSGETXATTRA:
1405 return xfs_ioc_fsgetxattr(ip, 1, arg);
Lachlan McIlroy3b2816b2008-04-18 12:43:35 +10001406 case XFS_IOC_FSSETXATTR:
Lachlan McIlroy65e67f52008-04-18 12:59:45 +10001407 return xfs_ioc_fssetxattr(ip, filp, arg);
1408 case XFS_IOC_GETXFLAGS:
1409 return xfs_ioc_getxflags(ip, arg);
1410 case XFS_IOC_SETXFLAGS:
1411 return xfs_ioc_setxflags(ip, filp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001412
1413 case XFS_IOC_FSSETDM: {
1414 struct fsdmidata dmi;
1415
1416 if (copy_from_user(&dmi, arg, sizeof(dmi)))
1417 return -XFS_ERROR(EFAULT);
1418
Jan Karad9457dc2012-06-12 16:20:39 +02001419 error = mnt_want_write_file(filp);
1420 if (error)
1421 return error;
1422
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001423 error = xfs_set_dmattrs(ip, dmi.fsd_dmevmask,
1424 dmi.fsd_dmstate);
Jan Karad9457dc2012-06-12 16:20:39 +02001425 mnt_drop_write_file(filp);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001426 return -error;
1427 }
1428
1429 case XFS_IOC_GETBMAP:
1430 case XFS_IOC_GETBMAPA:
1431 return xfs_ioc_getbmap(ip, ioflags, cmd, arg);
1432
1433 case XFS_IOC_GETBMAPX:
1434 return xfs_ioc_getbmapx(ip, arg);
1435
1436 case XFS_IOC_FD_TO_HANDLE:
1437 case XFS_IOC_PATH_TO_HANDLE:
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001438 case XFS_IOC_PATH_TO_FSHANDLE: {
1439 xfs_fsop_handlereq_t hreq;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001440
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001441 if (copy_from_user(&hreq, arg, sizeof(hreq)))
1442 return -XFS_ERROR(EFAULT);
1443 return xfs_find_handle(cmd, &hreq);
1444 }
1445 case XFS_IOC_OPEN_BY_HANDLE: {
1446 xfs_fsop_handlereq_t hreq;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001447
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001448 if (copy_from_user(&hreq, arg, sizeof(xfs_fsop_handlereq_t)))
1449 return -XFS_ERROR(EFAULT);
Christoph Hellwigd296d302009-01-19 02:02:57 +01001450 return xfs_open_by_handle(filp, &hreq);
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001451 }
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001452 case XFS_IOC_FSSETDM_BY_HANDLE:
Christoph Hellwigd296d302009-01-19 02:02:57 +01001453 return xfs_fssetdm_by_handle(filp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001454
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001455 case XFS_IOC_READLINK_BY_HANDLE: {
1456 xfs_fsop_handlereq_t hreq;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001457
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001458 if (copy_from_user(&hreq, arg, sizeof(xfs_fsop_handlereq_t)))
1459 return -XFS_ERROR(EFAULT);
Christoph Hellwigd296d302009-01-19 02:02:57 +01001460 return xfs_readlink_by_handle(filp, &hreq);
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001461 }
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001462 case XFS_IOC_ATTRLIST_BY_HANDLE:
Christoph Hellwigd296d302009-01-19 02:02:57 +01001463 return xfs_attrlist_by_handle(filp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001464
1465 case XFS_IOC_ATTRMULTI_BY_HANDLE:
Christoph Hellwigd296d302009-01-19 02:02:57 +01001466 return xfs_attrmulti_by_handle(filp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001467
1468 case XFS_IOC_SWAPEXT: {
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001469 struct xfs_swapext sxp;
1470
1471 if (copy_from_user(&sxp, arg, sizeof(xfs_swapext_t)))
1472 return -XFS_ERROR(EFAULT);
Jan Karad9457dc2012-06-12 16:20:39 +02001473 error = mnt_want_write_file(filp);
1474 if (error)
1475 return error;
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001476 error = xfs_swapext(&sxp);
Jan Karad9457dc2012-06-12 16:20:39 +02001477 mnt_drop_write_file(filp);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001478 return -error;
1479 }
1480
1481 case XFS_IOC_FSCOUNTS: {
1482 xfs_fsop_counts_t out;
1483
1484 error = xfs_fs_counts(mp, &out);
1485 if (error)
1486 return -error;
1487
1488 if (copy_to_user(arg, &out, sizeof(out)))
1489 return -XFS_ERROR(EFAULT);
1490 return 0;
1491 }
1492
1493 case XFS_IOC_SET_RESBLKS: {
1494 xfs_fsop_resblks_t inout;
1495 __uint64_t in;
1496
1497 if (!capable(CAP_SYS_ADMIN))
1498 return -EPERM;
1499
Eric Sandeend5db0f92010-02-05 22:59:53 +00001500 if (mp->m_flags & XFS_MOUNT_RDONLY)
1501 return -XFS_ERROR(EROFS);
1502
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001503 if (copy_from_user(&inout, arg, sizeof(inout)))
1504 return -XFS_ERROR(EFAULT);
1505
Jan Karad9457dc2012-06-12 16:20:39 +02001506 error = mnt_want_write_file(filp);
1507 if (error)
1508 return error;
1509
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001510 /* input parameter is passed in resblks field of structure */
1511 in = inout.resblks;
1512 error = xfs_reserve_blocks(mp, &in, &inout);
Jan Karad9457dc2012-06-12 16:20:39 +02001513 mnt_drop_write_file(filp);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001514 if (error)
1515 return -error;
1516
1517 if (copy_to_user(arg, &inout, sizeof(inout)))
1518 return -XFS_ERROR(EFAULT);
1519 return 0;
1520 }
1521
1522 case XFS_IOC_GET_RESBLKS: {
1523 xfs_fsop_resblks_t out;
1524
1525 if (!capable(CAP_SYS_ADMIN))
1526 return -EPERM;
1527
1528 error = xfs_reserve_blocks(mp, NULL, &out);
1529 if (error)
1530 return -error;
1531
1532 if (copy_to_user(arg, &out, sizeof(out)))
1533 return -XFS_ERROR(EFAULT);
1534
1535 return 0;
1536 }
1537
1538 case XFS_IOC_FSGROWFSDATA: {
1539 xfs_growfs_data_t in;
1540
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001541 if (copy_from_user(&in, arg, sizeof(in)))
1542 return -XFS_ERROR(EFAULT);
1543
Jan Karad9457dc2012-06-12 16:20:39 +02001544 error = mnt_want_write_file(filp);
1545 if (error)
1546 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001547 error = xfs_growfs_data(mp, &in);
Jan Karad9457dc2012-06-12 16:20:39 +02001548 mnt_drop_write_file(filp);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001549 return -error;
1550 }
1551
1552 case XFS_IOC_FSGROWFSLOG: {
1553 xfs_growfs_log_t in;
1554
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001555 if (copy_from_user(&in, arg, sizeof(in)))
1556 return -XFS_ERROR(EFAULT);
1557
Jan Karad9457dc2012-06-12 16:20:39 +02001558 error = mnt_want_write_file(filp);
1559 if (error)
1560 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001561 error = xfs_growfs_log(mp, &in);
Jan Karad9457dc2012-06-12 16:20:39 +02001562 mnt_drop_write_file(filp);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001563 return -error;
1564 }
1565
1566 case XFS_IOC_FSGROWFSRT: {
1567 xfs_growfs_rt_t in;
1568
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001569 if (copy_from_user(&in, arg, sizeof(in)))
1570 return -XFS_ERROR(EFAULT);
1571
Jan Karad9457dc2012-06-12 16:20:39 +02001572 error = mnt_want_write_file(filp);
1573 if (error)
1574 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001575 error = xfs_growfs_rt(mp, &in);
Jan Karad9457dc2012-06-12 16:20:39 +02001576 mnt_drop_write_file(filp);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001577 return -error;
1578 }
1579
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001580 case XFS_IOC_GOINGDOWN: {
1581 __uint32_t in;
1582
1583 if (!capable(CAP_SYS_ADMIN))
1584 return -EPERM;
1585
1586 if (get_user(in, (__uint32_t __user *)arg))
1587 return -XFS_ERROR(EFAULT);
1588
1589 error = xfs_fs_goingdown(mp, in);
1590 return -error;
1591 }
1592
1593 case XFS_IOC_ERROR_INJECTION: {
1594 xfs_error_injection_t in;
1595
1596 if (!capable(CAP_SYS_ADMIN))
1597 return -EPERM;
1598
1599 if (copy_from_user(&in, arg, sizeof(in)))
1600 return -XFS_ERROR(EFAULT);
1601
1602 error = xfs_errortag_add(in.errtag, mp);
1603 return -error;
1604 }
1605
1606 case XFS_IOC_ERROR_CLEARALL:
1607 if (!capable(CAP_SYS_ADMIN))
1608 return -EPERM;
1609
1610 error = xfs_errortag_clearall(mp, 1);
1611 return -error;
1612
Brian Foster8ca149d2012-11-07 12:21:12 -05001613 case XFS_IOC_FREE_EOFBLOCKS: {
1614 struct xfs_eofblocks eofb;
1615
1616 if (copy_from_user(&eofb, arg, sizeof(eofb)))
1617 return -XFS_ERROR(EFAULT);
1618
1619 if (eofb.eof_version != XFS_EOFBLOCKS_VERSION)
1620 return -XFS_ERROR(EINVAL);
1621
1622 if (eofb.eof_flags & ~XFS_EOF_FLAGS_VALID)
1623 return -XFS_ERROR(EINVAL);
1624
Brian Foster3e3f9f52012-11-07 12:21:13 -05001625 if (memchr_inv(&eofb.pad32, 0, sizeof(eofb.pad32)) ||
1626 memchr_inv(eofb.pad64, 0, sizeof(eofb.pad64)))
Brian Foster8ca149d2012-11-07 12:21:12 -05001627 return -XFS_ERROR(EINVAL);
1628
1629 error = xfs_icache_free_eofblocks(mp, &eofb);
1630 return -error;
1631 }
1632
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001633 default:
1634 return -ENOTTY;
1635 }
1636}