blob: 8305f2ac6773a8ee5efd1b0e24546e4194807187 [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"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "xfs_log.h"
21#include "xfs_trans.h"
22#include "xfs_sb.h"
Nathan Scotta844f452005-11-02 14:38:42 +110023#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "xfs_alloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include "xfs_bmap_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_dinode.h"
28#include "xfs_inode.h"
Hannes Eder7bf446f2009-03-05 15:20:25 +010029#include "xfs_ioctl.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "xfs_rtalloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "xfs_itable.h"
Nathan Scotta844f452005-11-02 14:38:42 +110032#include "xfs_error.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include "xfs_attr.h"
Nathan Scotta844f452005-11-02 14:38:42 +110034#include "xfs_bmap.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "xfs_buf_item.h"
36#include "xfs_utils.h"
37#include "xfs_dfrag.h"
38#include "xfs_fsops.h"
Christoph Hellwig993386c2007-08-28 16:12:30 +100039#include "xfs_vnodeops.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"
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080046#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <linux/dcache.h>
48#include <linux/mount.h>
49#include <linux/namei.h>
50#include <linux/pagemap.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090051#include <linux/slab.h>
Christoph Hellwigd296d302009-01-19 02:02:57 +010052#include <linux/exportfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54/*
55 * xfs_find_handle maps from userspace xfs_fsop_handlereq structure to
56 * a file or fs handle.
57 *
58 * XFS_IOC_PATH_TO_FSHANDLE
59 * returns fs handle for a mount point or path within that mount point
60 * XFS_IOC_FD_TO_HANDLE
61 * returns full handle for a FD opened in user space
62 * XFS_IOC_PATH_TO_HANDLE
63 * returns full handle for a path
64 */
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -060065int
Linus Torvalds1da177e2005-04-16 15:20:36 -070066xfs_find_handle(
67 unsigned int cmd,
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -060068 xfs_fsop_handlereq_t *hreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069{
70 int hsize;
71 xfs_handle_t handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 struct inode *inode;
Al Viro2903ff02012-08-28 12:52:22 -040073 struct fd f;
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010074 struct path path;
Al Viro2903ff02012-08-28 12:52:22 -040075 int error;
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010076 struct xfs_inode *ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010078 if (cmd == XFS_IOC_FD_TO_HANDLE) {
Al Viro2903ff02012-08-28 12:52:22 -040079 f = fdget(hreq->fd);
80 if (!f.file)
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010081 return -EBADF;
Al Viro2903ff02012-08-28 12:52:22 -040082 inode = f.file->f_path.dentry->d_inode;
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010083 } else {
84 error = user_lpath((const char __user *)hreq->path, &path);
85 if (error)
86 return error;
87 inode = path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 }
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010089 ip = XFS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010091 /*
92 * We can only generate handles for inodes residing on a XFS filesystem,
93 * and only for regular files, directories or symbolic links.
94 */
95 error = -EINVAL;
96 if (inode->i_sb->s_magic != XFS_SB_MAGIC)
97 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Christoph Hellwig4346cdd2009-02-08 21:51:14 +010099 error = -EBADF;
100 if (!S_ISREG(inode->i_mode) &&
101 !S_ISDIR(inode->i_mode) &&
102 !S_ISLNK(inode->i_mode))
103 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100106 memcpy(&handle.ha_fsid, ip->i_mount->m_fixedfsid, sizeof(xfs_fsid_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100108 if (cmd == XFS_IOC_PATH_TO_FSHANDLE) {
109 /*
110 * This handle only contains an fsid, zero the rest.
111 */
112 memset(&handle.ha_fid, 0, sizeof(handle.ha_fid));
113 hsize = sizeof(xfs_fsid_t);
114 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 int lock_mode;
116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 lock_mode = xfs_ilock_map_shared(ip);
Christoph Hellwigc6143912007-09-14 15:22:37 +1000118 handle.ha_fid.fid_len = sizeof(xfs_fid_t) -
119 sizeof(handle.ha_fid.fid_len);
120 handle.ha_fid.fid_pad = 0;
121 handle.ha_fid.fid_gen = ip->i_d.di_gen;
122 handle.ha_fid.fid_ino = ip->i_ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 xfs_iunlock_map_shared(ip, lock_mode);
124
125 hsize = XFS_HSIZE(handle);
126 }
127
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100128 error = -EFAULT;
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600129 if (copy_to_user(hreq->ohandle, &handle, hsize) ||
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100130 copy_to_user(hreq->ohandlen, &hsize, sizeof(__s32)))
131 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100133 error = 0;
134
135 out_put:
136 if (cmd == XFS_IOC_FD_TO_HANDLE)
Al Viro2903ff02012-08-28 12:52:22 -0400137 fdput(f);
Christoph Hellwig4346cdd2009-02-08 21:51:14 +0100138 else
139 path_put(&path);
140 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141}
142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143/*
Christoph Hellwigd296d302009-01-19 02:02:57 +0100144 * No need to do permission checks on the various pathname components
145 * as the handle operations are privileged.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 */
147STATIC int
Christoph Hellwigd296d302009-01-19 02:02:57 +0100148xfs_handle_acceptable(
149 void *context,
150 struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
Christoph Hellwigd296d302009-01-19 02:02:57 +0100152 return 1;
153}
154
155/*
156 * Convert userspace handle data into a dentry.
157 */
158struct dentry *
159xfs_handle_to_dentry(
160 struct file *parfilp,
161 void __user *uhandle,
162 u32 hlen)
163{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 xfs_handle_t handle;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100165 struct xfs_fid64 fid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
167 /*
168 * Only allow handle opens under a directory.
169 */
Christoph Hellwigd296d302009-01-19 02:02:57 +0100170 if (!S_ISDIR(parfilp->f_path.dentry->d_inode->i_mode))
171 return ERR_PTR(-ENOTDIR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Christoph Hellwigd296d302009-01-19 02:02:57 +0100173 if (hlen != sizeof(xfs_handle_t))
174 return ERR_PTR(-EINVAL);
175 if (copy_from_user(&handle, uhandle, hlen))
176 return ERR_PTR(-EFAULT);
177 if (handle.ha_fid.fid_len !=
178 sizeof(handle.ha_fid) - sizeof(handle.ha_fid.fid_len))
179 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
Christoph Hellwigd296d302009-01-19 02:02:57 +0100181 memset(&fid, 0, sizeof(struct fid));
182 fid.ino = handle.ha_fid.fid_ino;
183 fid.gen = handle.ha_fid.fid_gen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Christoph Hellwigd296d302009-01-19 02:02:57 +0100185 return exportfs_decode_fh(parfilp->f_path.mnt, (struct fid *)&fid, 3,
186 FILEID_INO32_GEN | XFS_FILEID_TYPE_64FLAG,
187 xfs_handle_acceptable, NULL);
188}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Christoph Hellwigd296d302009-01-19 02:02:57 +0100190STATIC struct dentry *
191xfs_handlereq_to_dentry(
192 struct file *parfilp,
193 xfs_fsop_handlereq_t *hreq)
194{
195 return xfs_handle_to_dentry(parfilp, hreq->ihandle, hreq->ihandlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196}
197
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600198int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199xfs_open_by_handle(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 struct file *parfilp,
Christoph Hellwigd296d302009-01-19 02:02:57 +0100201 xfs_fsop_handlereq_t *hreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
David Howells745ca242008-11-14 10:39:22 +1100203 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 int error;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100205 int fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 int permflag;
207 struct file *filp;
208 struct inode *inode;
209 struct dentry *dentry;
Dave Chinner1a1d7722012-03-22 05:15:06 +0000210 fmode_t fmode;
Al Viro765927b2012-06-26 21:58:53 +0400211 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
213 if (!capable(CAP_SYS_ADMIN))
214 return -XFS_ERROR(EPERM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Christoph Hellwigd296d302009-01-19 02:02:57 +0100216 dentry = xfs_handlereq_to_dentry(parfilp, hreq);
217 if (IS_ERR(dentry))
218 return PTR_ERR(dentry);
219 inode = dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
221 /* Restrict xfs_open_by_handle to directories & regular files. */
222 if (!(S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode))) {
Christoph Hellwigd296d302009-01-19 02:02:57 +0100223 error = -XFS_ERROR(EPERM);
224 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 }
226
227#if BITS_PER_LONG != 32
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600228 hreq->oflags |= O_LARGEFILE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229#endif
Christoph Hellwigd296d302009-01-19 02:02:57 +0100230
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600231 permflag = hreq->oflags;
Dave Chinner1a1d7722012-03-22 05:15:06 +0000232 fmode = OPEN_FMODE(permflag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 if ((!(permflag & O_APPEND) || (permflag & O_TRUNC)) &&
Dave Chinner1a1d7722012-03-22 05:15:06 +0000234 (fmode & FMODE_WRITE) && IS_APPEND(inode)) {
Christoph Hellwigd296d302009-01-19 02:02:57 +0100235 error = -XFS_ERROR(EPERM);
236 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 }
238
Dave Chinner1a1d7722012-03-22 05:15:06 +0000239 if ((fmode & FMODE_WRITE) && IS_IMMUTABLE(inode)) {
Christoph Hellwigd296d302009-01-19 02:02:57 +0100240 error = -XFS_ERROR(EACCES);
241 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 }
243
244 /* Can't write directories. */
Dave Chinner1a1d7722012-03-22 05:15:06 +0000245 if (S_ISDIR(inode->i_mode) && (fmode & FMODE_WRITE)) {
Christoph Hellwigd296d302009-01-19 02:02:57 +0100246 error = -XFS_ERROR(EISDIR);
247 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 }
249
Christoph Hellwigd296d302009-01-19 02:02:57 +0100250 fd = get_unused_fd();
251 if (fd < 0) {
252 error = fd;
253 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 }
255
Al Viro765927b2012-06-26 21:58:53 +0400256 path.mnt = parfilp->f_path.mnt;
257 path.dentry = dentry;
258 filp = dentry_open(&path, hreq->oflags, cred);
259 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 if (IS_ERR(filp)) {
Christoph Hellwigd296d302009-01-19 02:02:57 +0100261 put_unused_fd(fd);
262 return PTR_ERR(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 }
Christoph Hellwig4d4be482008-12-09 04:47:33 -0500264
Al Viro03209372011-07-25 20:54:24 -0400265 if (S_ISREG(inode->i_mode)) {
Vlad Apostolov2e2e7bb2006-11-11 18:04:47 +1100266 filp->f_flags |= O_NOATIME;
Christoph Hellwig4d4be482008-12-09 04:47:33 -0500267 filp->f_mode |= FMODE_NOCMTIME;
Vlad Apostolov2e2e7bb2006-11-11 18:04:47 +1100268 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Christoph Hellwigd296d302009-01-19 02:02:57 +0100270 fd_install(fd, filp);
271 return fd;
272
273 out_dput:
274 dput(dentry);
275 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276}
277
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000278/*
279 * This is a copy from fs/namei.c:vfs_readlink(), except for removing it's
280 * unused first argument.
281 */
282STATIC int
283do_readlink(
284 char __user *buffer,
285 int buflen,
286 const char *link)
287{
288 int len;
289
290 len = PTR_ERR(link);
291 if (IS_ERR(link))
292 goto out;
293
294 len = strlen(link);
295 if (len > (unsigned) buflen)
296 len = buflen;
297 if (copy_to_user(buffer, link, len))
298 len = -EFAULT;
299 out:
300 return len;
301}
302
303
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600304int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305xfs_readlink_by_handle(
Christoph Hellwigd296d302009-01-19 02:02:57 +0100306 struct file *parfilp,
307 xfs_fsop_handlereq_t *hreq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
Christoph Hellwigd296d302009-01-19 02:02:57 +0100309 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 __u32 olen;
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000311 void *link;
312 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
314 if (!capable(CAP_SYS_ADMIN))
315 return -XFS_ERROR(EPERM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Christoph Hellwigd296d302009-01-19 02:02:57 +0100317 dentry = xfs_handlereq_to_dentry(parfilp, hreq);
318 if (IS_ERR(dentry))
319 return PTR_ERR(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
321 /* Restrict this handle operation to symlinks only. */
Christoph Hellwigd296d302009-01-19 02:02:57 +0100322 if (!S_ISLNK(dentry->d_inode->i_mode)) {
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000323 error = -XFS_ERROR(EINVAL);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100324 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 }
326
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600327 if (copy_from_user(&olen, hreq->ohandlen, sizeof(__u32))) {
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000328 error = -XFS_ERROR(EFAULT);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100329 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000332 link = kmalloc(MAXPATHLEN+1, GFP_KERNEL);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100333 if (!link) {
334 error = -XFS_ERROR(ENOMEM);
335 goto out_dput;
336 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
Christoph Hellwigd296d302009-01-19 02:02:57 +0100338 error = -xfs_readlink(XFS_I(dentry->d_inode), link);
Nathan Scott67fcaa72006-06-09 17:00:52 +1000339 if (error)
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000340 goto out_kfree;
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600341 error = do_readlink(hreq->ohandle, olen, link);
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000342 if (error)
343 goto out_kfree;
Nathan Scott67fcaa72006-06-09 17:00:52 +1000344
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000345 out_kfree:
346 kfree(link);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100347 out_dput:
348 dput(dentry);
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000349 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350}
351
352STATIC int
353xfs_fssetdm_by_handle(
Christoph Hellwigd296d302009-01-19 02:02:57 +0100354 struct file *parfilp,
355 void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356{
357 int error;
358 struct fsdmidata fsd;
359 xfs_fsop_setdm_handlereq_t dmhreq;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100360 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
362 if (!capable(CAP_MKNOD))
363 return -XFS_ERROR(EPERM);
364 if (copy_from_user(&dmhreq, arg, sizeof(xfs_fsop_setdm_handlereq_t)))
365 return -XFS_ERROR(EFAULT);
366
Jan Karad9457dc2012-06-12 16:20:39 +0200367 error = mnt_want_write_file(parfilp);
368 if (error)
369 return error;
370
Christoph Hellwigd296d302009-01-19 02:02:57 +0100371 dentry = xfs_handlereq_to_dentry(parfilp, &dmhreq.hreq);
Jan Karad9457dc2012-06-12 16:20:39 +0200372 if (IS_ERR(dentry)) {
373 mnt_drop_write_file(parfilp);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100374 return PTR_ERR(dentry);
Jan Karad9457dc2012-06-12 16:20:39 +0200375 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
Christoph Hellwigd296d302009-01-19 02:02:57 +0100377 if (IS_IMMUTABLE(dentry->d_inode) || IS_APPEND(dentry->d_inode)) {
Christoph Hellwig6e7f75e2007-10-11 18:09:50 +1000378 error = -XFS_ERROR(EPERM);
379 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 }
381
382 if (copy_from_user(&fsd, dmhreq.data, sizeof(fsd))) {
Christoph Hellwig6e7f75e2007-10-11 18:09:50 +1000383 error = -XFS_ERROR(EFAULT);
384 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 }
386
Christoph Hellwigd296d302009-01-19 02:02:57 +0100387 error = -xfs_set_dmattrs(XFS_I(dentry->d_inode), fsd.fsd_dmevmask,
Christoph Hellwig6e7f75e2007-10-11 18:09:50 +1000388 fsd.fsd_dmstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
Christoph Hellwig6e7f75e2007-10-11 18:09:50 +1000390 out:
Jan Karad9457dc2012-06-12 16:20:39 +0200391 mnt_drop_write_file(parfilp);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100392 dput(dentry);
Christoph Hellwig6e7f75e2007-10-11 18:09:50 +1000393 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394}
395
396STATIC int
397xfs_attrlist_by_handle(
Christoph Hellwigd296d302009-01-19 02:02:57 +0100398 struct file *parfilp,
399 void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400{
Christoph Hellwigd296d302009-01-19 02:02:57 +0100401 int error = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 attrlist_cursor_kern_t *cursor;
403 xfs_fsop_attrlist_handlereq_t al_hreq;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100404 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 char *kbuf;
406
407 if (!capable(CAP_SYS_ADMIN))
408 return -XFS_ERROR(EPERM);
409 if (copy_from_user(&al_hreq, arg, sizeof(xfs_fsop_attrlist_handlereq_t)))
410 return -XFS_ERROR(EFAULT);
411 if (al_hreq.buflen > XATTR_LIST_MAX)
412 return -XFS_ERROR(EINVAL);
413
Christoph Hellwig90ad58a2008-06-27 13:32:19 +1000414 /*
415 * Reject flags, only allow namespaces.
416 */
417 if (al_hreq.flags & ~(ATTR_ROOT | ATTR_SECURE))
418 return -XFS_ERROR(EINVAL);
419
Christoph Hellwigd296d302009-01-19 02:02:57 +0100420 dentry = xfs_handlereq_to_dentry(parfilp, &al_hreq.hreq);
421 if (IS_ERR(dentry))
422 return PTR_ERR(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Kulikov Vasiliy6762b932010-10-30 14:26:17 +0000424 kbuf = kzalloc(al_hreq.buflen, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 if (!kbuf)
Christoph Hellwigd296d302009-01-19 02:02:57 +0100426 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
428 cursor = (attrlist_cursor_kern_t *)&al_hreq.pos;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100429 error = -xfs_attr_list(XFS_I(dentry->d_inode), kbuf, al_hreq.buflen,
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000430 al_hreq.flags, cursor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 if (error)
432 goto out_kfree;
433
434 if (copy_to_user(al_hreq.buffer, kbuf, al_hreq.buflen))
435 error = -EFAULT;
436
437 out_kfree:
438 kfree(kbuf);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100439 out_dput:
440 dput(dentry);
441 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442}
443
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600444int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445xfs_attrmulti_attr_get(
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000446 struct inode *inode,
Dave Chinnera9273ca2010-01-20 10:47:48 +1100447 unsigned char *name,
448 unsigned char __user *ubuf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 __uint32_t *len,
450 __uint32_t flags)
451{
Dave Chinnera9273ca2010-01-20 10:47:48 +1100452 unsigned char *kbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 int error = EFAULT;
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000454
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 if (*len > XATTR_SIZE_MAX)
456 return EINVAL;
Dave Chinnerad650f52012-03-07 04:50:21 +0000457 kbuf = kmem_zalloc(*len, KM_SLEEP | KM_MAYFAIL);
458 if (!kbuf) {
459 kbuf = kmem_zalloc_large(*len);
460 if (!kbuf)
461 return ENOMEM;
462 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000464 error = xfs_attr_get(XFS_I(inode), name, kbuf, (int *)len, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 if (error)
466 goto out_kfree;
467
468 if (copy_to_user(ubuf, kbuf, *len))
469 error = EFAULT;
470
471 out_kfree:
Dave Chinnerad650f52012-03-07 04:50:21 +0000472 if (is_vmalloc_addr(kbuf))
473 kmem_free_large(kbuf);
474 else
475 kmem_free(kbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 return error;
477}
478
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600479int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480xfs_attrmulti_attr_set(
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000481 struct inode *inode,
Dave Chinnera9273ca2010-01-20 10:47:48 +1100482 unsigned char *name,
483 const unsigned char __user *ubuf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 __uint32_t len,
485 __uint32_t flags)
486{
Dave Chinnera9273ca2010-01-20 10:47:48 +1100487 unsigned char *kbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 int error = EFAULT;
489
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000490 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 return EPERM;
492 if (len > XATTR_SIZE_MAX)
493 return EINVAL;
494
Li Zefan0e639bd2009-04-08 15:08:04 +0800495 kbuf = memdup_user(ubuf, len);
496 if (IS_ERR(kbuf))
497 return PTR_ERR(kbuf);
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000498
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000499 error = xfs_attr_set(XFS_I(inode), name, kbuf, len, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 return error;
502}
503
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600504int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505xfs_attrmulti_attr_remove(
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000506 struct inode *inode,
Dave Chinnera9273ca2010-01-20 10:47:48 +1100507 unsigned char *name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 __uint32_t flags)
509{
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000510 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 return EPERM;
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000512 return xfs_attr_remove(XFS_I(inode), name, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513}
514
515STATIC int
516xfs_attrmulti_by_handle(
Dave Hansen42a74f22008-02-15 14:37:46 -0800517 struct file *parfilp,
Christoph Hellwigd296d302009-01-19 02:02:57 +0100518 void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519{
520 int error;
521 xfs_attr_multiop_t *ops;
522 xfs_fsop_attrmulti_handlereq_t am_hreq;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100523 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 unsigned int i, size;
Dave Chinnera9273ca2010-01-20 10:47:48 +1100525 unsigned char *attr_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
527 if (!capable(CAP_SYS_ADMIN))
528 return -XFS_ERROR(EPERM);
529 if (copy_from_user(&am_hreq, arg, sizeof(xfs_fsop_attrmulti_handlereq_t)))
530 return -XFS_ERROR(EFAULT);
531
Zhitong Wangfda168c2010-03-23 09:51:22 +1100532 /* overflow check */
533 if (am_hreq.opcount >= INT_MAX / sizeof(xfs_attr_multiop_t))
534 return -E2BIG;
535
Christoph Hellwigd296d302009-01-19 02:02:57 +0100536 dentry = xfs_handlereq_to_dentry(parfilp, &am_hreq.hreq);
537 if (IS_ERR(dentry))
538 return PTR_ERR(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
540 error = E2BIG;
Christoph Hellwige182f572008-06-27 13:32:31 +1000541 size = am_hreq.opcount * sizeof(xfs_attr_multiop_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 if (!size || size > 16 * PAGE_SIZE)
Christoph Hellwigd296d302009-01-19 02:02:57 +0100543 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
Li Zefan0e639bd2009-04-08 15:08:04 +0800545 ops = memdup_user(am_hreq.ops, size);
546 if (IS_ERR(ops)) {
547 error = PTR_ERR(ops);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100548 goto out_dput;
Li Zefan0e639bd2009-04-08 15:08:04 +0800549 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
551 attr_name = kmalloc(MAXNAMELEN, GFP_KERNEL);
552 if (!attr_name)
553 goto out_kfree_ops;
554
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 error = 0;
556 for (i = 0; i < am_hreq.opcount; i++) {
Dave Chinnera9273ca2010-01-20 10:47:48 +1100557 ops[i].am_error = strncpy_from_user((char *)attr_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 ops[i].am_attrname, MAXNAMELEN);
559 if (ops[i].am_error == 0 || ops[i].am_error == MAXNAMELEN)
560 error = -ERANGE;
561 if (ops[i].am_error < 0)
562 break;
563
564 switch (ops[i].am_opcode) {
565 case ATTR_OP_GET:
Christoph Hellwigd296d302009-01-19 02:02:57 +0100566 ops[i].am_error = xfs_attrmulti_attr_get(
567 dentry->d_inode, attr_name,
568 ops[i].am_attrvalue, &ops[i].am_length,
569 ops[i].am_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 break;
571 case ATTR_OP_SET:
Al Viroa561be72011-11-23 11:57:51 -0500572 ops[i].am_error = mnt_want_write_file(parfilp);
Dave Hansen42a74f22008-02-15 14:37:46 -0800573 if (ops[i].am_error)
574 break;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100575 ops[i].am_error = xfs_attrmulti_attr_set(
576 dentry->d_inode, attr_name,
577 ops[i].am_attrvalue, ops[i].am_length,
578 ops[i].am_flags);
Al Viro2a79f172011-12-09 08:06:57 -0500579 mnt_drop_write_file(parfilp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 break;
581 case ATTR_OP_REMOVE:
Al Viroa561be72011-11-23 11:57:51 -0500582 ops[i].am_error = mnt_want_write_file(parfilp);
Dave Hansen42a74f22008-02-15 14:37:46 -0800583 if (ops[i].am_error)
584 break;
Christoph Hellwigd296d302009-01-19 02:02:57 +0100585 ops[i].am_error = xfs_attrmulti_attr_remove(
586 dentry->d_inode, attr_name,
587 ops[i].am_flags);
Al Viro2a79f172011-12-09 08:06:57 -0500588 mnt_drop_write_file(parfilp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 break;
590 default:
591 ops[i].am_error = EINVAL;
592 }
593 }
594
595 if (copy_to_user(am_hreq.ops, ops, size))
596 error = XFS_ERROR(EFAULT);
597
598 kfree(attr_name);
599 out_kfree_ops:
600 kfree(ops);
Christoph Hellwigd296d302009-01-19 02:02:57 +0100601 out_dput:
602 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 return -error;
604}
605
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600606int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607xfs_ioc_space(
Christoph Hellwig993386c2007-08-28 16:12:30 +1000608 struct xfs_inode *ip,
Alexey Dobriyanf37ea142006-09-28 10:52:04 +1000609 struct inode *inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 struct file *filp,
611 int ioflags,
612 unsigned int cmd,
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600613 xfs_flock64_t *bf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 int attr_flags = 0;
616 int error;
617
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600618 /*
619 * Only allow the sys admin to reserve space unless
620 * unwritten extents are enabled.
621 */
622 if (!xfs_sb_version_hasextflgbit(&ip->i_mount->m_sb) &&
623 !capable(CAP_SYS_ADMIN))
624 return -XFS_ERROR(EPERM);
625
Alexey Dobriyanf37ea142006-09-28 10:52:04 +1000626 if (inode->i_flags & (S_IMMUTABLE|S_APPEND))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 return -XFS_ERROR(EPERM);
628
Eric Sandeenad4a8ac2005-09-02 16:41:16 +1000629 if (!(filp->f_mode & FMODE_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 return -XFS_ERROR(EBADF);
631
Alexey Dobriyanf37ea142006-09-28 10:52:04 +1000632 if (!S_ISREG(inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 return -XFS_ERROR(EINVAL);
634
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 if (filp->f_flags & (O_NDELAY|O_NONBLOCK))
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000636 attr_flags |= XFS_ATTR_NONBLOCK;
Dave Chinner82878892011-03-26 09:13:08 +1100637
638 if (filp->f_flags & O_DSYNC)
639 attr_flags |= XFS_ATTR_SYNC;
640
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 if (ioflags & IO_INVIS)
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000642 attr_flags |= XFS_ATTR_DMI;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
Jan Karad9457dc2012-06-12 16:20:39 +0200644 error = mnt_want_write_file(filp);
645 if (error)
646 return error;
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600647 error = xfs_change_file_space(ip, cmd, bf, filp->f_pos, attr_flags);
Jan Karad9457dc2012-06-12 16:20:39 +0200648 mnt_drop_write_file(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 return -error;
650}
651
652STATIC int
653xfs_ioc_bulkstat(
654 xfs_mount_t *mp,
655 unsigned int cmd,
656 void __user *arg)
657{
658 xfs_fsop_bulkreq_t bulkreq;
659 int count; /* # of records returned */
660 xfs_ino_t inlast; /* last inode number */
661 int done;
662 int error;
663
664 /* done = 1 if there are more stats to get and if bulkstat */
665 /* should be called again (unused here, but used in dmapi) */
666
667 if (!capable(CAP_SYS_ADMIN))
668 return -EPERM;
669
670 if (XFS_FORCED_SHUTDOWN(mp))
671 return -XFS_ERROR(EIO);
672
673 if (copy_from_user(&bulkreq, arg, sizeof(xfs_fsop_bulkreq_t)))
674 return -XFS_ERROR(EFAULT);
675
676 if (copy_from_user(&inlast, bulkreq.lastip, sizeof(__s64)))
677 return -XFS_ERROR(EFAULT);
678
679 if ((count = bulkreq.icount) <= 0)
680 return -XFS_ERROR(EINVAL);
681
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100682 if (bulkreq.ubuffer == NULL)
683 return -XFS_ERROR(EINVAL);
684
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 if (cmd == XFS_IOC_FSINUMBERS)
686 error = xfs_inumbers(mp, &inlast, &count,
Michal Marekfaa63e92007-07-11 11:10:19 +1000687 bulkreq.ubuffer, xfs_inumbers_fmt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 else if (cmd == XFS_IOC_FSBULKSTAT_SINGLE)
689 error = xfs_bulkstat_single(mp, &inlast,
690 bulkreq.ubuffer, &done);
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100691 else /* XFS_IOC_FSBULKSTAT */
Christoph Hellwig7dce11d2010-06-23 18:11:11 +1000692 error = xfs_bulkstat(mp, &inlast, &count, xfs_bulkstat_one,
693 sizeof(xfs_bstat_t), bulkreq.ubuffer,
694 &done);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
696 if (error)
697 return -error;
698
699 if (bulkreq.ocount != NULL) {
700 if (copy_to_user(bulkreq.lastip, &inlast,
701 sizeof(xfs_ino_t)))
702 return -XFS_ERROR(EFAULT);
703
704 if (copy_to_user(bulkreq.ocount, &count, sizeof(count)))
705 return -XFS_ERROR(EFAULT);
706 }
707
708 return 0;
709}
710
711STATIC int
712xfs_ioc_fsgeometry_v1(
713 xfs_mount_t *mp,
714 void __user *arg)
715{
Alex Eldereeb20362011-03-01 17:50:00 +0000716 xfs_fsop_geom_t fsgeo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 int error;
718
Alex Eldereeb20362011-03-01 17:50:00 +0000719 error = xfs_fs_geometry(mp, &fsgeo, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 if (error)
721 return -error;
722
Alex Eldereeb20362011-03-01 17:50:00 +0000723 /*
724 * Caller should have passed an argument of type
725 * xfs_fsop_geom_v1_t. This is a proper subset of the
726 * xfs_fsop_geom_t that xfs_fs_geometry() fills in.
727 */
728 if (copy_to_user(arg, &fsgeo, sizeof(xfs_fsop_geom_v1_t)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 return -XFS_ERROR(EFAULT);
730 return 0;
731}
732
733STATIC int
734xfs_ioc_fsgeometry(
735 xfs_mount_t *mp,
736 void __user *arg)
737{
738 xfs_fsop_geom_t fsgeo;
739 int error;
740
741 error = xfs_fs_geometry(mp, &fsgeo, 4);
742 if (error)
743 return -error;
744
745 if (copy_to_user(arg, &fsgeo, sizeof(fsgeo)))
746 return -XFS_ERROR(EFAULT);
747 return 0;
748}
749
750/*
751 * Linux extended inode flags interface.
752 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
754STATIC unsigned int
755xfs_merge_ioc_xflags(
756 unsigned int flags,
757 unsigned int start)
758{
759 unsigned int xflags = start;
760
Eric Sandeen39058a02007-02-10 18:37:10 +1100761 if (flags & FS_IMMUTABLE_FL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 xflags |= XFS_XFLAG_IMMUTABLE;
763 else
764 xflags &= ~XFS_XFLAG_IMMUTABLE;
Eric Sandeen39058a02007-02-10 18:37:10 +1100765 if (flags & FS_APPEND_FL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 xflags |= XFS_XFLAG_APPEND;
767 else
768 xflags &= ~XFS_XFLAG_APPEND;
Eric Sandeen39058a02007-02-10 18:37:10 +1100769 if (flags & FS_SYNC_FL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 xflags |= XFS_XFLAG_SYNC;
771 else
772 xflags &= ~XFS_XFLAG_SYNC;
Eric Sandeen39058a02007-02-10 18:37:10 +1100773 if (flags & FS_NOATIME_FL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 xflags |= XFS_XFLAG_NOATIME;
775 else
776 xflags &= ~XFS_XFLAG_NOATIME;
Eric Sandeen39058a02007-02-10 18:37:10 +1100777 if (flags & FS_NODUMP_FL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 xflags |= XFS_XFLAG_NODUMP;
779 else
780 xflags &= ~XFS_XFLAG_NODUMP;
781
782 return xflags;
783}
784
785STATIC unsigned int
786xfs_di2lxflags(
787 __uint16_t di_flags)
788{
789 unsigned int flags = 0;
790
791 if (di_flags & XFS_DIFLAG_IMMUTABLE)
Eric Sandeen39058a02007-02-10 18:37:10 +1100792 flags |= FS_IMMUTABLE_FL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 if (di_flags & XFS_DIFLAG_APPEND)
Eric Sandeen39058a02007-02-10 18:37:10 +1100794 flags |= FS_APPEND_FL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 if (di_flags & XFS_DIFLAG_SYNC)
Eric Sandeen39058a02007-02-10 18:37:10 +1100796 flags |= FS_SYNC_FL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 if (di_flags & XFS_DIFLAG_NOATIME)
Eric Sandeen39058a02007-02-10 18:37:10 +1100798 flags |= FS_NOATIME_FL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 if (di_flags & XFS_DIFLAG_NODUMP)
Eric Sandeen39058a02007-02-10 18:37:10 +1100800 flags |= FS_NODUMP_FL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 return flags;
802}
803
804STATIC int
Christoph Hellwigc83bfab2007-10-11 17:47:00 +1000805xfs_ioc_fsgetxattr(
806 xfs_inode_t *ip,
807 int attr,
808 void __user *arg)
809{
810 struct fsxattr fa;
811
Dan Rosenberga122eb22010-09-06 18:24:57 -0400812 memset(&fa, 0, sizeof(struct fsxattr));
813
Christoph Hellwigc83bfab2007-10-11 17:47:00 +1000814 xfs_ilock(ip, XFS_ILOCK_SHARED);
815 fa.fsx_xflags = xfs_ip2xflags(ip);
816 fa.fsx_extsize = ip->i_d.di_extsize << ip->i_mount->m_sb.sb_blocklog;
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000817 fa.fsx_projid = xfs_get_projid(ip);
Christoph Hellwigc83bfab2007-10-11 17:47:00 +1000818
819 if (attr) {
820 if (ip->i_afp) {
821 if (ip->i_afp->if_flags & XFS_IFEXTENTS)
822 fa.fsx_nextents = ip->i_afp->if_bytes /
823 sizeof(xfs_bmbt_rec_t);
824 else
825 fa.fsx_nextents = ip->i_d.di_anextents;
826 } else
827 fa.fsx_nextents = 0;
828 } else {
829 if (ip->i_df.if_flags & XFS_IFEXTENTS)
830 fa.fsx_nextents = ip->i_df.if_bytes /
831 sizeof(xfs_bmbt_rec_t);
832 else
833 fa.fsx_nextents = ip->i_d.di_nextents;
834 }
835 xfs_iunlock(ip, XFS_ILOCK_SHARED);
836
837 if (copy_to_user(arg, &fa, sizeof(fa)))
838 return -EFAULT;
839 return 0;
840}
841
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000842STATIC void
843xfs_set_diflags(
844 struct xfs_inode *ip,
845 unsigned int xflags)
846{
847 unsigned int di_flags;
848
849 /* can't set PREALLOC this way, just preserve it */
850 di_flags = (ip->i_d.di_flags & XFS_DIFLAG_PREALLOC);
851 if (xflags & XFS_XFLAG_IMMUTABLE)
852 di_flags |= XFS_DIFLAG_IMMUTABLE;
853 if (xflags & XFS_XFLAG_APPEND)
854 di_flags |= XFS_DIFLAG_APPEND;
855 if (xflags & XFS_XFLAG_SYNC)
856 di_flags |= XFS_DIFLAG_SYNC;
857 if (xflags & XFS_XFLAG_NOATIME)
858 di_flags |= XFS_DIFLAG_NOATIME;
859 if (xflags & XFS_XFLAG_NODUMP)
860 di_flags |= XFS_DIFLAG_NODUMP;
861 if (xflags & XFS_XFLAG_PROJINHERIT)
862 di_flags |= XFS_DIFLAG_PROJINHERIT;
863 if (xflags & XFS_XFLAG_NODEFRAG)
864 di_flags |= XFS_DIFLAG_NODEFRAG;
865 if (xflags & XFS_XFLAG_FILESTREAM)
866 di_flags |= XFS_DIFLAG_FILESTREAM;
Al Viroabbede12011-07-26 02:31:30 -0400867 if (S_ISDIR(ip->i_d.di_mode)) {
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000868 if (xflags & XFS_XFLAG_RTINHERIT)
869 di_flags |= XFS_DIFLAG_RTINHERIT;
870 if (xflags & XFS_XFLAG_NOSYMLINKS)
871 di_flags |= XFS_DIFLAG_NOSYMLINKS;
872 if (xflags & XFS_XFLAG_EXTSZINHERIT)
873 di_flags |= XFS_DIFLAG_EXTSZINHERIT;
Al Viroabbede12011-07-26 02:31:30 -0400874 } else if (S_ISREG(ip->i_d.di_mode)) {
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000875 if (xflags & XFS_XFLAG_REALTIME)
876 di_flags |= XFS_DIFLAG_REALTIME;
877 if (xflags & XFS_XFLAG_EXTSIZE)
878 di_flags |= XFS_DIFLAG_EXTSIZE;
879 }
880
881 ip->i_d.di_flags = di_flags;
882}
883
Christoph Hellwigf13fae22008-07-21 16:16:15 +1000884STATIC void
885xfs_diflags_to_linux(
886 struct xfs_inode *ip)
887{
David Chinnere4f75292008-08-13 16:00:45 +1000888 struct inode *inode = VFS_I(ip);
Christoph Hellwigf13fae22008-07-21 16:16:15 +1000889 unsigned int xflags = xfs_ip2xflags(ip);
890
891 if (xflags & XFS_XFLAG_IMMUTABLE)
892 inode->i_flags |= S_IMMUTABLE;
893 else
894 inode->i_flags &= ~S_IMMUTABLE;
895 if (xflags & XFS_XFLAG_APPEND)
896 inode->i_flags |= S_APPEND;
897 else
898 inode->i_flags &= ~S_APPEND;
899 if (xflags & XFS_XFLAG_SYNC)
900 inode->i_flags |= S_SYNC;
901 else
902 inode->i_flags &= ~S_SYNC;
903 if (xflags & XFS_XFLAG_NOATIME)
904 inode->i_flags |= S_NOATIME;
905 else
906 inode->i_flags &= ~S_NOATIME;
907}
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000908
909#define FSX_PROJID 1
910#define FSX_EXTSIZE 2
911#define FSX_XFLAGS 4
912#define FSX_NONBLOCK 8
913
914STATIC int
915xfs_ioctl_setattr(
916 xfs_inode_t *ip,
917 struct fsxattr *fa,
918 int mask)
919{
920 struct xfs_mount *mp = ip->i_mount;
921 struct xfs_trans *tp;
922 unsigned int lock_flags = 0;
Christoph Hellwig7d095252009-06-08 15:33:32 +0200923 struct xfs_dquot *udqp = NULL;
924 struct xfs_dquot *gdqp = NULL;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000925 struct xfs_dquot *olddquot = NULL;
926 int code;
927
Christoph Hellwigcca28fb2010-06-24 11:57:09 +1000928 trace_xfs_ioctl_setattr(ip);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000929
930 if (mp->m_flags & XFS_MOUNT_RDONLY)
931 return XFS_ERROR(EROFS);
932 if (XFS_FORCED_SHUTDOWN(mp))
933 return XFS_ERROR(EIO);
934
935 /*
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000936 * Disallow 32bit project ids when projid32bit feature is not enabled.
Arkadiusz Mi?kiewicz23963e52010-08-26 10:19:43 +0000937 */
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000938 if ((mask & FSX_PROJID) && (fa->fsx_projid > (__uint16_t)-1) &&
939 !xfs_sb_version_hasprojid32bit(&ip->i_mount->m_sb))
Arkadiusz Mi?kiewicz23963e52010-08-26 10:19:43 +0000940 return XFS_ERROR(EINVAL);
941
942 /*
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000943 * If disk quotas is on, we make sure that the dquots do exist on disk,
944 * before we start any other transactions. Trying to do this later
945 * is messy. We don't care to take a readlock to look at the ids
946 * in inode here, because we can't hold it across the trans_reserve.
947 * If the IDs do change before we take the ilock, we're covered
948 * because the i_*dquot fields will get updated anyway.
949 */
950 if (XFS_IS_QUOTA_ON(mp) && (mask & FSX_PROJID)) {
Christoph Hellwig7d095252009-06-08 15:33:32 +0200951 code = xfs_qm_vop_dqalloc(ip, ip->i_d.di_uid,
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000952 ip->i_d.di_gid, fa->fsx_projid,
953 XFS_QMOPT_PQUOTA, &udqp, &gdqp);
954 if (code)
955 return code;
956 }
957
958 /*
959 * For the other attributes, we acquire the inode lock and
960 * first do an error checking pass.
961 */
962 tp = xfs_trans_alloc(mp, XFS_TRANS_SETATTR_NOT_SIZE);
963 code = xfs_trans_reserve(tp, 0, XFS_ICHANGE_LOG_RES(mp), 0, 0, 0);
964 if (code)
965 goto error_return;
966
967 lock_flags = XFS_ILOCK_EXCL;
968 xfs_ilock(ip, lock_flags);
969
970 /*
971 * CAP_FOWNER overrides the following restrictions:
972 *
973 * The user ID of the calling process must be equal
974 * to the file owner ID, except in cases where the
975 * CAP_FSETID capability is applicable.
976 */
David Howells91b7771252008-10-31 15:50:04 +1100977 if (current_fsuid() != ip->i_d.di_uid && !capable(CAP_FOWNER)) {
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000978 code = XFS_ERROR(EPERM);
979 goto error_return;
980 }
981
982 /*
983 * Do a quota reservation only if projid is actually going to change.
984 */
985 if (mask & FSX_PROJID) {
Christoph Hellwig7d095252009-06-08 15:33:32 +0200986 if (XFS_IS_QUOTA_RUNNING(mp) &&
987 XFS_IS_PQUOTA_ON(mp) &&
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000988 xfs_get_projid(ip) != fa->fsx_projid) {
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000989 ASSERT(tp);
Christoph Hellwig7d095252009-06-08 15:33:32 +0200990 code = xfs_qm_vop_chown_reserve(tp, ip, udqp, gdqp,
Christoph Hellwig25fe55e2008-07-18 17:13:20 +1000991 capable(CAP_FOWNER) ?
992 XFS_QMOPT_FORCE_RES : 0);
993 if (code) /* out of quota */
994 goto error_return;
995 }
996 }
997
998 if (mask & FSX_EXTSIZE) {
999 /*
1000 * Can't change extent size if any extents are allocated.
1001 */
1002 if (ip->i_d.di_nextents &&
1003 ((ip->i_d.di_extsize << mp->m_sb.sb_blocklog) !=
1004 fa->fsx_extsize)) {
1005 code = XFS_ERROR(EINVAL); /* EFBIG? */
1006 goto error_return;
1007 }
1008
1009 /*
1010 * Extent size must be a multiple of the appropriate block
Dave Chinner53158372011-01-27 12:18:18 +11001011 * size, if set at all. It must also be smaller than the
1012 * maximum extent size supported by the filesystem.
1013 *
1014 * Also, for non-realtime files, limit the extent size hint to
1015 * half the size of the AGs in the filesystem so alignment
1016 * doesn't result in extents larger than an AG.
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001017 */
1018 if (fa->fsx_extsize != 0) {
Dave Chinner53158372011-01-27 12:18:18 +11001019 xfs_extlen_t size;
1020 xfs_fsblock_t extsize_fsb;
1021
1022 extsize_fsb = XFS_B_TO_FSB(mp, fa->fsx_extsize);
1023 if (extsize_fsb > MAXEXTLEN) {
1024 code = XFS_ERROR(EINVAL);
1025 goto error_return;
1026 }
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001027
1028 if (XFS_IS_REALTIME_INODE(ip) ||
1029 ((mask & FSX_XFLAGS) &&
1030 (fa->fsx_xflags & XFS_XFLAG_REALTIME))) {
1031 size = mp->m_sb.sb_rextsize <<
1032 mp->m_sb.sb_blocklog;
1033 } else {
1034 size = mp->m_sb.sb_blocksize;
Dave Chinner53158372011-01-27 12:18:18 +11001035 if (extsize_fsb > mp->m_sb.sb_agblocks / 2) {
1036 code = XFS_ERROR(EINVAL);
1037 goto error_return;
1038 }
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001039 }
1040
1041 if (fa->fsx_extsize % size) {
1042 code = XFS_ERROR(EINVAL);
1043 goto error_return;
1044 }
1045 }
1046 }
1047
1048
1049 if (mask & FSX_XFLAGS) {
1050 /*
1051 * Can't change realtime flag if any extents are allocated.
1052 */
1053 if ((ip->i_d.di_nextents || ip->i_delayed_blks) &&
1054 (XFS_IS_REALTIME_INODE(ip)) !=
1055 (fa->fsx_xflags & XFS_XFLAG_REALTIME)) {
1056 code = XFS_ERROR(EINVAL); /* EFBIG? */
1057 goto error_return;
1058 }
1059
1060 /*
1061 * If realtime flag is set then must have realtime data.
1062 */
1063 if ((fa->fsx_xflags & XFS_XFLAG_REALTIME)) {
1064 if ((mp->m_sb.sb_rblocks == 0) ||
1065 (mp->m_sb.sb_rextsize == 0) ||
1066 (ip->i_d.di_extsize % mp->m_sb.sb_rextsize)) {
1067 code = XFS_ERROR(EINVAL);
1068 goto error_return;
1069 }
1070 }
1071
1072 /*
1073 * Can't modify an immutable/append-only file unless
1074 * we have appropriate permission.
1075 */
1076 if ((ip->i_d.di_flags &
1077 (XFS_DIFLAG_IMMUTABLE|XFS_DIFLAG_APPEND) ||
1078 (fa->fsx_xflags &
1079 (XFS_XFLAG_IMMUTABLE | XFS_XFLAG_APPEND))) &&
1080 !capable(CAP_LINUX_IMMUTABLE)) {
1081 code = XFS_ERROR(EPERM);
1082 goto error_return;
1083 }
1084 }
1085
Christoph Hellwigddc34152011-09-19 15:00:54 +00001086 xfs_trans_ijoin(tp, ip, 0);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001087
1088 /*
1089 * Change file ownership. Must be the owner or privileged.
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001090 */
1091 if (mask & FSX_PROJID) {
1092 /*
1093 * CAP_FSETID overrides the following restrictions:
1094 *
1095 * The set-user-ID and set-group-ID bits of a file will be
1096 * cleared upon successful return from chown()
1097 */
1098 if ((ip->i_d.di_mode & (S_ISUID|S_ISGID)) &&
1099 !capable(CAP_FSETID))
1100 ip->i_d.di_mode &= ~(S_ISUID|S_ISGID);
1101
1102 /*
1103 * Change the ownerships and register quota modifications
1104 * in the transaction.
1105 */
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001106 if (xfs_get_projid(ip) != fa->fsx_projid) {
Christoph Hellwig7d095252009-06-08 15:33:32 +02001107 if (XFS_IS_QUOTA_RUNNING(mp) && XFS_IS_PQUOTA_ON(mp)) {
1108 olddquot = xfs_qm_vop_chown(tp, ip,
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001109 &ip->i_gdquot, gdqp);
1110 }
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001111 xfs_set_projid(ip, fa->fsx_projid);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001112
1113 /*
1114 * We may have to rev the inode as well as
1115 * the superblock version number since projids didn't
1116 * exist before DINODE_VERSION_2 and SB_VERSION_NLINK.
1117 */
Christoph Hellwig51ce16d2008-11-28 14:23:39 +11001118 if (ip->i_d.di_version == 1)
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001119 xfs_bump_ino_vers2(tp, ip);
1120 }
1121
1122 }
1123
1124 if (mask & FSX_EXTSIZE)
1125 ip->i_d.di_extsize = fa->fsx_extsize >> mp->m_sb.sb_blocklog;
Christoph Hellwigf13fae22008-07-21 16:16:15 +10001126 if (mask & FSX_XFLAGS) {
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001127 xfs_set_diflags(ip, fa->fsx_xflags);
Christoph Hellwigf13fae22008-07-21 16:16:15 +10001128 xfs_diflags_to_linux(ip);
1129 }
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001130
Dave Chinnerdcd79a12010-09-28 12:27:25 +10001131 xfs_trans_ichgtime(tp, ip, XFS_ICHGTIME_CHG);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001132 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001133
1134 XFS_STATS_INC(xs_ig_attrchg);
1135
1136 /*
1137 * If this is a synchronous mount, make sure that the
1138 * transaction goes to disk before returning to the user.
1139 * This is slightly sub-optimal in that truncates require
1140 * two sync transactions instead of one for wsync filesystems.
1141 * One for the truncate and one for the timestamps since we
1142 * don't want to change the timestamps unless we're sure the
1143 * truncate worked. Truncates are less than 1% of the laddis
1144 * mix so this probably isn't worth the trouble to optimize.
1145 */
1146 if (mp->m_flags & XFS_MOUNT_WSYNC)
1147 xfs_trans_set_sync(tp);
1148 code = xfs_trans_commit(tp, 0);
1149 xfs_iunlock(ip, lock_flags);
1150
1151 /*
1152 * Release any dquot(s) the inode had kept before chown.
1153 */
Christoph Hellwig7d095252009-06-08 15:33:32 +02001154 xfs_qm_dqrele(olddquot);
1155 xfs_qm_dqrele(udqp);
1156 xfs_qm_dqrele(gdqp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001157
Christoph Hellwig288699f2010-06-23 18:11:15 +10001158 return code;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001159
1160 error_return:
Christoph Hellwig7d095252009-06-08 15:33:32 +02001161 xfs_qm_dqrele(udqp);
1162 xfs_qm_dqrele(gdqp);
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001163 xfs_trans_cancel(tp, 0);
1164 if (lock_flags)
1165 xfs_iunlock(ip, lock_flags);
1166 return code;
1167}
1168
Christoph Hellwigc83bfab2007-10-11 17:47:00 +10001169STATIC int
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001170xfs_ioc_fssetxattr(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 xfs_inode_t *ip,
1172 struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 void __user *arg)
1174{
1175 struct fsxattr fa;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001176 unsigned int mask;
Jan Karad9457dc2012-06-12 16:20:39 +02001177 int error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001178
1179 if (copy_from_user(&fa, arg, sizeof(fa)))
1180 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001182 mask = FSX_XFLAGS | FSX_EXTSIZE | FSX_PROJID;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001183 if (filp->f_flags & (O_NDELAY|O_NONBLOCK))
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001184 mask |= FSX_NONBLOCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185
Jan Karad9457dc2012-06-12 16:20:39 +02001186 error = mnt_want_write_file(filp);
1187 if (error)
1188 return error;
1189 error = xfs_ioctl_setattr(ip, &fa, mask);
1190 mnt_drop_write_file(filp);
1191 return -error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001192}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001194STATIC int
1195xfs_ioc_getxflags(
1196 xfs_inode_t *ip,
1197 void __user *arg)
1198{
1199 unsigned int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001201 flags = xfs_di2lxflags(ip->i_d.di_flags);
1202 if (copy_to_user(arg, &flags, sizeof(flags)))
1203 return -EFAULT;
1204 return 0;
1205}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001207STATIC int
1208xfs_ioc_setxflags(
1209 xfs_inode_t *ip,
1210 struct file *filp,
1211 void __user *arg)
1212{
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001213 struct fsxattr fa;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001214 unsigned int flags;
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001215 unsigned int mask;
Jan Karad9457dc2012-06-12 16:20:39 +02001216 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001218 if (copy_from_user(&flags, arg, sizeof(flags)))
1219 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001221 if (flags & ~(FS_IMMUTABLE_FL | FS_APPEND_FL | \
1222 FS_NOATIME_FL | FS_NODUMP_FL | \
1223 FS_SYNC_FL))
1224 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001226 mask = FSX_XFLAGS;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001227 if (filp->f_flags & (O_NDELAY|O_NONBLOCK))
Christoph Hellwig25fe55e2008-07-18 17:13:20 +10001228 mask |= FSX_NONBLOCK;
1229 fa.fsx_xflags = xfs_merge_ioc_xflags(flags, xfs_ip2xflags(ip));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
Jan Karad9457dc2012-06-12 16:20:39 +02001231 error = mnt_want_write_file(filp);
1232 if (error)
1233 return error;
1234 error = xfs_ioctl_setattr(ip, &fa, mask);
1235 mnt_drop_write_file(filp);
1236 return -error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237}
1238
1239STATIC int
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001240xfs_getbmap_format(void **ap, struct getbmapx *bmv, int *full)
1241{
1242 struct getbmap __user *base = *ap;
1243
1244 /* copy only getbmap portion (not getbmapx) */
1245 if (copy_to_user(base, bmv, sizeof(struct getbmap)))
1246 return XFS_ERROR(EFAULT);
1247
1248 *ap += sizeof(struct getbmap);
1249 return 0;
1250}
1251
1252STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253xfs_ioc_getbmap(
Christoph Hellwig993386c2007-08-28 16:12:30 +10001254 struct xfs_inode *ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 int ioflags,
1256 unsigned int cmd,
1257 void __user *arg)
1258{
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001259 struct getbmapx bmx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 int error;
1261
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001262 if (copy_from_user(&bmx, arg, sizeof(struct getbmapx)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 return -XFS_ERROR(EFAULT);
1264
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001265 if (bmx.bmv_count < 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 return -XFS_ERROR(EINVAL);
1267
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001268 bmx.bmv_iflags = (cmd == XFS_IOC_GETBMAPA ? BMV_IF_ATTRFORK : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 if (ioflags & IO_INVIS)
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001270 bmx.bmv_iflags |= BMV_IF_NO_DMAPI_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001272 error = xfs_getbmap(ip, &bmx, xfs_getbmap_format,
1273 (struct getbmap *)arg+1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 if (error)
1275 return -error;
1276
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001277 /* copy back header - only size of getbmap */
1278 if (copy_to_user(arg, &bmx, sizeof(struct getbmap)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 return -XFS_ERROR(EFAULT);
1280 return 0;
1281}
1282
1283STATIC int
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001284xfs_getbmapx_format(void **ap, struct getbmapx *bmv, int *full)
1285{
1286 struct getbmapx __user *base = *ap;
1287
1288 if (copy_to_user(base, bmv, sizeof(struct getbmapx)))
1289 return XFS_ERROR(EFAULT);
1290
1291 *ap += sizeof(struct getbmapx);
1292 return 0;
1293}
1294
1295STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296xfs_ioc_getbmapx(
Christoph Hellwig993386c2007-08-28 16:12:30 +10001297 struct xfs_inode *ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 void __user *arg)
1299{
1300 struct getbmapx bmx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 int error;
1302
1303 if (copy_from_user(&bmx, arg, sizeof(bmx)))
1304 return -XFS_ERROR(EFAULT);
1305
1306 if (bmx.bmv_count < 2)
1307 return -XFS_ERROR(EINVAL);
1308
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001309 if (bmx.bmv_iflags & (~BMV_IF_VALID))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 return -XFS_ERROR(EINVAL);
1311
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001312 error = xfs_getbmap(ip, &bmx, xfs_getbmapx_format,
1313 (struct getbmapx *)arg+1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 if (error)
1315 return -error;
1316
Eric Sandeen8a7141a2008-11-28 14:23:35 +11001317 /* copy back header */
1318 if (copy_to_user(arg, &bmx, sizeof(struct getbmapx)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 return -XFS_ERROR(EFAULT);
1320
1321 return 0;
1322}
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001323
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001324/*
1325 * Note: some of the ioctl's return positive numbers as a
1326 * byte count indicating success, such as readlink_by_handle.
1327 * So we don't "sign flip" like most other routines. This means
1328 * true errors need to be returned as a negative value.
1329 */
1330long
1331xfs_file_ioctl(
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001332 struct file *filp,
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001333 unsigned int cmd,
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001334 unsigned long p)
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001335{
1336 struct inode *inode = filp->f_path.dentry->d_inode;
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001337 struct xfs_inode *ip = XFS_I(inode);
1338 struct xfs_mount *mp = ip->i_mount;
1339 void __user *arg = (void __user *)p;
1340 int ioflags = 0;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001341 int error;
1342
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001343 if (filp->f_mode & FMODE_NOCMTIME)
1344 ioflags |= IO_INVIS;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001345
Christoph Hellwigcca28fb2010-06-24 11:57:09 +10001346 trace_xfs_file_ioctl(ip);
Christoph Hellwig4d4be482008-12-09 04:47:33 -05001347
1348 switch (cmd) {
Christoph Hellwiga46db602011-01-07 13:02:04 +00001349 case FITRIM:
1350 return xfs_ioc_trim(mp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001351 case XFS_IOC_ALLOCSP:
1352 case XFS_IOC_FREESP:
1353 case XFS_IOC_RESVSP:
1354 case XFS_IOC_UNRESVSP:
1355 case XFS_IOC_ALLOCSP64:
1356 case XFS_IOC_FREESP64:
1357 case XFS_IOC_RESVSP64:
Dave Chinner44722352010-08-24 12:02:11 +10001358 case XFS_IOC_UNRESVSP64:
1359 case XFS_IOC_ZERO_RANGE: {
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001360 xfs_flock64_t bf;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001361
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001362 if (copy_from_user(&bf, arg, sizeof(bf)))
1363 return -XFS_ERROR(EFAULT);
1364 return xfs_ioc_space(ip, inode, filp, ioflags, cmd, &bf);
1365 }
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001366 case XFS_IOC_DIOINFO: {
1367 struct dioattr da;
1368 xfs_buftarg_t *target =
1369 XFS_IS_REALTIME_INODE(ip) ?
1370 mp->m_rtdev_targp : mp->m_ddev_targp;
1371
1372 da.d_mem = da.d_miniosz = 1 << target->bt_sshift;
1373 da.d_maxiosz = INT_MAX & ~(da.d_miniosz - 1);
1374
1375 if (copy_to_user(arg, &da, sizeof(da)))
1376 return -XFS_ERROR(EFAULT);
1377 return 0;
1378 }
1379
1380 case XFS_IOC_FSBULKSTAT_SINGLE:
1381 case XFS_IOC_FSBULKSTAT:
1382 case XFS_IOC_FSINUMBERS:
1383 return xfs_ioc_bulkstat(mp, cmd, arg);
1384
1385 case XFS_IOC_FSGEOMETRY_V1:
1386 return xfs_ioc_fsgeometry_v1(mp, arg);
1387
1388 case XFS_IOC_FSGEOMETRY:
1389 return xfs_ioc_fsgeometry(mp, arg);
1390
1391 case XFS_IOC_GETVERSION:
1392 return put_user(inode->i_generation, (int __user *)arg);
1393
1394 case XFS_IOC_FSGETXATTR:
1395 return xfs_ioc_fsgetxattr(ip, 0, arg);
1396 case XFS_IOC_FSGETXATTRA:
1397 return xfs_ioc_fsgetxattr(ip, 1, arg);
Lachlan McIlroy3b2816b2008-04-18 12:43:35 +10001398 case XFS_IOC_FSSETXATTR:
Lachlan McIlroy65e67f52008-04-18 12:59:45 +10001399 return xfs_ioc_fssetxattr(ip, filp, arg);
1400 case XFS_IOC_GETXFLAGS:
1401 return xfs_ioc_getxflags(ip, arg);
1402 case XFS_IOC_SETXFLAGS:
1403 return xfs_ioc_setxflags(ip, filp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001404
1405 case XFS_IOC_FSSETDM: {
1406 struct fsdmidata dmi;
1407
1408 if (copy_from_user(&dmi, arg, sizeof(dmi)))
1409 return -XFS_ERROR(EFAULT);
1410
Jan Karad9457dc2012-06-12 16:20:39 +02001411 error = mnt_want_write_file(filp);
1412 if (error)
1413 return error;
1414
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001415 error = xfs_set_dmattrs(ip, dmi.fsd_dmevmask,
1416 dmi.fsd_dmstate);
Jan Karad9457dc2012-06-12 16:20:39 +02001417 mnt_drop_write_file(filp);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001418 return -error;
1419 }
1420
1421 case XFS_IOC_GETBMAP:
1422 case XFS_IOC_GETBMAPA:
1423 return xfs_ioc_getbmap(ip, ioflags, cmd, arg);
1424
1425 case XFS_IOC_GETBMAPX:
1426 return xfs_ioc_getbmapx(ip, arg);
1427
1428 case XFS_IOC_FD_TO_HANDLE:
1429 case XFS_IOC_PATH_TO_HANDLE:
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001430 case XFS_IOC_PATH_TO_FSHANDLE: {
1431 xfs_fsop_handlereq_t hreq;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001432
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001433 if (copy_from_user(&hreq, arg, sizeof(hreq)))
1434 return -XFS_ERROR(EFAULT);
1435 return xfs_find_handle(cmd, &hreq);
1436 }
1437 case XFS_IOC_OPEN_BY_HANDLE: {
1438 xfs_fsop_handlereq_t hreq;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001439
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001440 if (copy_from_user(&hreq, arg, sizeof(xfs_fsop_handlereq_t)))
1441 return -XFS_ERROR(EFAULT);
Christoph Hellwigd296d302009-01-19 02:02:57 +01001442 return xfs_open_by_handle(filp, &hreq);
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001443 }
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001444 case XFS_IOC_FSSETDM_BY_HANDLE:
Christoph Hellwigd296d302009-01-19 02:02:57 +01001445 return xfs_fssetdm_by_handle(filp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001446
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001447 case XFS_IOC_READLINK_BY_HANDLE: {
1448 xfs_fsop_handlereq_t hreq;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001449
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001450 if (copy_from_user(&hreq, arg, sizeof(xfs_fsop_handlereq_t)))
1451 return -XFS_ERROR(EFAULT);
Christoph Hellwigd296d302009-01-19 02:02:57 +01001452 return xfs_readlink_by_handle(filp, &hreq);
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001453 }
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001454 case XFS_IOC_ATTRLIST_BY_HANDLE:
Christoph Hellwigd296d302009-01-19 02:02:57 +01001455 return xfs_attrlist_by_handle(filp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001456
1457 case XFS_IOC_ATTRMULTI_BY_HANDLE:
Christoph Hellwigd296d302009-01-19 02:02:57 +01001458 return xfs_attrmulti_by_handle(filp, arg);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001459
1460 case XFS_IOC_SWAPEXT: {
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001461 struct xfs_swapext sxp;
1462
1463 if (copy_from_user(&sxp, arg, sizeof(xfs_swapext_t)))
1464 return -XFS_ERROR(EFAULT);
Jan Karad9457dc2012-06-12 16:20:39 +02001465 error = mnt_want_write_file(filp);
1466 if (error)
1467 return error;
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -06001468 error = xfs_swapext(&sxp);
Jan Karad9457dc2012-06-12 16:20:39 +02001469 mnt_drop_write_file(filp);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001470 return -error;
1471 }
1472
1473 case XFS_IOC_FSCOUNTS: {
1474 xfs_fsop_counts_t out;
1475
1476 error = xfs_fs_counts(mp, &out);
1477 if (error)
1478 return -error;
1479
1480 if (copy_to_user(arg, &out, sizeof(out)))
1481 return -XFS_ERROR(EFAULT);
1482 return 0;
1483 }
1484
1485 case XFS_IOC_SET_RESBLKS: {
1486 xfs_fsop_resblks_t inout;
1487 __uint64_t in;
1488
1489 if (!capable(CAP_SYS_ADMIN))
1490 return -EPERM;
1491
Eric Sandeend5db0f92010-02-05 22:59:53 +00001492 if (mp->m_flags & XFS_MOUNT_RDONLY)
1493 return -XFS_ERROR(EROFS);
1494
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001495 if (copy_from_user(&inout, arg, sizeof(inout)))
1496 return -XFS_ERROR(EFAULT);
1497
Jan Karad9457dc2012-06-12 16:20:39 +02001498 error = mnt_want_write_file(filp);
1499 if (error)
1500 return error;
1501
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001502 /* input parameter is passed in resblks field of structure */
1503 in = inout.resblks;
1504 error = xfs_reserve_blocks(mp, &in, &inout);
Jan Karad9457dc2012-06-12 16:20:39 +02001505 mnt_drop_write_file(filp);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001506 if (error)
1507 return -error;
1508
1509 if (copy_to_user(arg, &inout, sizeof(inout)))
1510 return -XFS_ERROR(EFAULT);
1511 return 0;
1512 }
1513
1514 case XFS_IOC_GET_RESBLKS: {
1515 xfs_fsop_resblks_t out;
1516
1517 if (!capable(CAP_SYS_ADMIN))
1518 return -EPERM;
1519
1520 error = xfs_reserve_blocks(mp, NULL, &out);
1521 if (error)
1522 return -error;
1523
1524 if (copy_to_user(arg, &out, sizeof(out)))
1525 return -XFS_ERROR(EFAULT);
1526
1527 return 0;
1528 }
1529
1530 case XFS_IOC_FSGROWFSDATA: {
1531 xfs_growfs_data_t in;
1532
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001533 if (copy_from_user(&in, arg, sizeof(in)))
1534 return -XFS_ERROR(EFAULT);
1535
Jan Karad9457dc2012-06-12 16:20:39 +02001536 error = mnt_want_write_file(filp);
1537 if (error)
1538 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001539 error = xfs_growfs_data(mp, &in);
Jan Karad9457dc2012-06-12 16:20:39 +02001540 mnt_drop_write_file(filp);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001541 return -error;
1542 }
1543
1544 case XFS_IOC_FSGROWFSLOG: {
1545 xfs_growfs_log_t in;
1546
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001547 if (copy_from_user(&in, arg, sizeof(in)))
1548 return -XFS_ERROR(EFAULT);
1549
Jan Karad9457dc2012-06-12 16:20:39 +02001550 error = mnt_want_write_file(filp);
1551 if (error)
1552 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001553 error = xfs_growfs_log(mp, &in);
Jan Karad9457dc2012-06-12 16:20:39 +02001554 mnt_drop_write_file(filp);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001555 return -error;
1556 }
1557
1558 case XFS_IOC_FSGROWFSRT: {
1559 xfs_growfs_rt_t in;
1560
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001561 if (copy_from_user(&in, arg, sizeof(in)))
1562 return -XFS_ERROR(EFAULT);
1563
Jan Karad9457dc2012-06-12 16:20:39 +02001564 error = mnt_want_write_file(filp);
1565 if (error)
1566 return error;
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001567 error = xfs_growfs_rt(mp, &in);
Jan Karad9457dc2012-06-12 16:20:39 +02001568 mnt_drop_write_file(filp);
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001569 return -error;
1570 }
1571
Lachlan McIlroydf26cfe2008-04-18 11:44:03 +10001572 case XFS_IOC_GOINGDOWN: {
1573 __uint32_t in;
1574
1575 if (!capable(CAP_SYS_ADMIN))
1576 return -EPERM;
1577
1578 if (get_user(in, (__uint32_t __user *)arg))
1579 return -XFS_ERROR(EFAULT);
1580
1581 error = xfs_fs_goingdown(mp, in);
1582 return -error;
1583 }
1584
1585 case XFS_IOC_ERROR_INJECTION: {
1586 xfs_error_injection_t in;
1587
1588 if (!capable(CAP_SYS_ADMIN))
1589 return -EPERM;
1590
1591 if (copy_from_user(&in, arg, sizeof(in)))
1592 return -XFS_ERROR(EFAULT);
1593
1594 error = xfs_errortag_add(in.errtag, mp);
1595 return -error;
1596 }
1597
1598 case XFS_IOC_ERROR_CLEARALL:
1599 if (!capable(CAP_SYS_ADMIN))
1600 return -EPERM;
1601
1602 error = xfs_errortag_clearall(mp, 1);
1603 return -error;
1604
1605 default:
1606 return -ENOTTY;
1607 }
1608}