xfs: disaggregate xfs_ioctl_setattr
[deliverable/linux.git] / fs / xfs / xfs_ioctl.c
CommitLineData
1da177e4 1/*
7b718769
NS
2 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
1da177e4 4 *
7b718769
NS
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
1da177e4
LT
7 * published by the Free Software Foundation.
8 *
7b718769
NS
9 * 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.
1da177e4 13 *
7b718769
NS
14 * 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
1da177e4 17 */
1da177e4 18#include "xfs.h"
1da177e4 19#include "xfs_fs.h"
70a9883c 20#include "xfs_shared.h"
239880ef
DC
21#include "xfs_format.h"
22#include "xfs_log_format.h"
23#include "xfs_trans_resv.h"
1da177e4 24#include "xfs_mount.h"
1da177e4 25#include "xfs_inode.h"
7bf446f8 26#include "xfs_ioctl.h"
a4fbe6ab 27#include "xfs_alloc.h"
1da177e4 28#include "xfs_rtalloc.h"
1da177e4 29#include "xfs_itable.h"
a844f451 30#include "xfs_error.h"
1da177e4 31#include "xfs_attr.h"
a844f451 32#include "xfs_bmap.h"
68988114 33#include "xfs_bmap_util.h"
1da177e4 34#include "xfs_fsops.h"
a46db608 35#include "xfs_discard.h"
25fe55e8 36#include "xfs_quota.h"
d296d30a 37#include "xfs_export.h"
0b1b213f 38#include "xfs_trace.h"
8ca149de 39#include "xfs_icache.h"
c24b5dfa 40#include "xfs_symlink.h"
a4fbe6ab 41#include "xfs_trans.h"
1da177e4 42
16f7e0fe 43#include <linux/capability.h>
1da177e4
LT
44#include <linux/dcache.h>
45#include <linux/mount.h>
46#include <linux/namei.h>
47#include <linux/pagemap.h>
5a0e3ad6 48#include <linux/slab.h>
d296d30a 49#include <linux/exportfs.h>
1da177e4
LT
50
51/*
52 * xfs_find_handle maps from userspace xfs_fsop_handlereq structure to
53 * a file or fs handle.
54 *
55 * XFS_IOC_PATH_TO_FSHANDLE
56 * returns fs handle for a mount point or path within that mount point
57 * XFS_IOC_FD_TO_HANDLE
58 * returns full handle for a FD opened in user space
59 * XFS_IOC_PATH_TO_HANDLE
60 * returns full handle for a path
61 */
d5547f9f 62int
1da177e4
LT
63xfs_find_handle(
64 unsigned int cmd,
743bb465 65 xfs_fsop_handlereq_t *hreq)
1da177e4
LT
66{
67 int hsize;
68 xfs_handle_t handle;
1da177e4 69 struct inode *inode;
a30b0367 70 struct fd f = {NULL};
4346cdd4 71 struct path path;
2903ff01 72 int error;
4346cdd4 73 struct xfs_inode *ip;
1da177e4 74
4346cdd4 75 if (cmd == XFS_IOC_FD_TO_HANDLE) {
2903ff01
AV
76 f = fdget(hreq->fd);
77 if (!f.file)
4346cdd4 78 return -EBADF;
496ad9aa 79 inode = file_inode(f.file);
4346cdd4
CH
80 } else {
81 error = user_lpath((const char __user *)hreq->path, &path);
82 if (error)
83 return error;
84 inode = path.dentry->d_inode;
1da177e4 85 }
4346cdd4
CH
86 ip = XFS_I(inode);
87
88 /*
89 * We can only generate handles for inodes residing on a XFS filesystem,
90 * and only for regular files, directories or symbolic links.
91 */
92 error = -EINVAL;
93 if (inode->i_sb->s_magic != XFS_SB_MAGIC)
94 goto out_put;
95
96 error = -EBADF;
97 if (!S_ISREG(inode->i_mode) &&
98 !S_ISDIR(inode->i_mode) &&
99 !S_ISLNK(inode->i_mode))
100 goto out_put;
101
102
103 memcpy(&handle.ha_fsid, ip->i_mount->m_fixedfsid, sizeof(xfs_fsid_t));
104
105 if (cmd == XFS_IOC_PATH_TO_FSHANDLE) {
106 /*
107 * This handle only contains an fsid, zero the rest.
108 */
109 memset(&handle.ha_fid, 0, sizeof(handle.ha_fid));
110 hsize = sizeof(xfs_fsid_t);
111 } else {
c6143911
CH
112 handle.ha_fid.fid_len = sizeof(xfs_fid_t) -
113 sizeof(handle.ha_fid.fid_len);
114 handle.ha_fid.fid_pad = 0;
115 handle.ha_fid.fid_gen = ip->i_d.di_gen;
116 handle.ha_fid.fid_ino = ip->i_ino;
1da177e4
LT
117
118 hsize = XFS_HSIZE(handle);
119 }
120
4346cdd4 121 error = -EFAULT;
743bb465 122 if (copy_to_user(hreq->ohandle, &handle, hsize) ||
4346cdd4
CH
123 copy_to_user(hreq->ohandlen, &hsize, sizeof(__s32)))
124 goto out_put;
1da177e4 125
4346cdd4
CH
126 error = 0;
127
128 out_put:
129 if (cmd == XFS_IOC_FD_TO_HANDLE)
2903ff01 130 fdput(f);
4346cdd4
CH
131 else
132 path_put(&path);
133 return error;
1da177e4
LT
134}
135
1da177e4 136/*
d296d30a
CH
137 * No need to do permission checks on the various pathname components
138 * as the handle operations are privileged.
1da177e4
LT
139 */
140STATIC int
d296d30a
CH
141xfs_handle_acceptable(
142 void *context,
143 struct dentry *dentry)
144{
145 return 1;
146}
147
148/*
149 * Convert userspace handle data into a dentry.
150 */
151struct dentry *
152xfs_handle_to_dentry(
153 struct file *parfilp,
154 void __user *uhandle,
155 u32 hlen)
1da177e4 156{
1da177e4 157 xfs_handle_t handle;
d296d30a 158 struct xfs_fid64 fid;
1da177e4
LT
159
160 /*
161 * Only allow handle opens under a directory.
162 */
496ad9aa 163 if (!S_ISDIR(file_inode(parfilp)->i_mode))
d296d30a
CH
164 return ERR_PTR(-ENOTDIR);
165
166 if (hlen != sizeof(xfs_handle_t))
167 return ERR_PTR(-EINVAL);
168 if (copy_from_user(&handle, uhandle, hlen))
169 return ERR_PTR(-EFAULT);
170 if (handle.ha_fid.fid_len !=
171 sizeof(handle.ha_fid) - sizeof(handle.ha_fid.fid_len))
172 return ERR_PTR(-EINVAL);
173
174 memset(&fid, 0, sizeof(struct fid));
175 fid.ino = handle.ha_fid.fid_ino;
176 fid.gen = handle.ha_fid.fid_gen;
177
178 return exportfs_decode_fh(parfilp->f_path.mnt, (struct fid *)&fid, 3,
179 FILEID_INO32_GEN | XFS_FILEID_TYPE_64FLAG,
180 xfs_handle_acceptable, NULL);
181}
1da177e4 182
d296d30a
CH
183STATIC struct dentry *
184xfs_handlereq_to_dentry(
185 struct file *parfilp,
186 xfs_fsop_handlereq_t *hreq)
187{
188 return xfs_handle_to_dentry(parfilp, hreq->ihandle, hreq->ihandlen);
1da177e4
LT
189}
190
d5547f9f 191int
1da177e4 192xfs_open_by_handle(
1da177e4 193 struct file *parfilp,
d296d30a 194 xfs_fsop_handlereq_t *hreq)
1da177e4 195{
745ca247 196 const struct cred *cred = current_cred();
1da177e4 197 int error;
d296d30a 198 int fd;
1da177e4
LT
199 int permflag;
200 struct file *filp;
201 struct inode *inode;
202 struct dentry *dentry;
1a1d7724 203 fmode_t fmode;
765927b2 204 struct path path;
1da177e4
LT
205
206 if (!capable(CAP_SYS_ADMIN))
b474c7ae 207 return -EPERM;
1da177e4 208
d296d30a
CH
209 dentry = xfs_handlereq_to_dentry(parfilp, hreq);
210 if (IS_ERR(dentry))
211 return PTR_ERR(dentry);
212 inode = dentry->d_inode;
1da177e4
LT
213
214 /* Restrict xfs_open_by_handle to directories & regular files. */
215 if (!(S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode))) {
b474c7ae 216 error = -EPERM;
d296d30a 217 goto out_dput;
1da177e4
LT
218 }
219
220#if BITS_PER_LONG != 32
743bb465 221 hreq->oflags |= O_LARGEFILE;
1da177e4 222#endif
d296d30a 223
743bb465 224 permflag = hreq->oflags;
1a1d7724 225 fmode = OPEN_FMODE(permflag);
1da177e4 226 if ((!(permflag & O_APPEND) || (permflag & O_TRUNC)) &&
1a1d7724 227 (fmode & FMODE_WRITE) && IS_APPEND(inode)) {
b474c7ae 228 error = -EPERM;
d296d30a 229 goto out_dput;
1da177e4
LT
230 }
231
1a1d7724 232 if ((fmode & FMODE_WRITE) && IS_IMMUTABLE(inode)) {
b474c7ae 233 error = -EACCES;
d296d30a 234 goto out_dput;
1da177e4
LT
235 }
236
237 /* Can't write directories. */
1a1d7724 238 if (S_ISDIR(inode->i_mode) && (fmode & FMODE_WRITE)) {
b474c7ae 239 error = -EISDIR;
d296d30a 240 goto out_dput;
1da177e4
LT
241 }
242
862a6293 243 fd = get_unused_fd_flags(0);
d296d30a
CH
244 if (fd < 0) {
245 error = fd;
246 goto out_dput;
1da177e4
LT
247 }
248
765927b2
AV
249 path.mnt = parfilp->f_path.mnt;
250 path.dentry = dentry;
251 filp = dentry_open(&path, hreq->oflags, cred);
252 dput(dentry);
1da177e4 253 if (IS_ERR(filp)) {
d296d30a
CH
254 put_unused_fd(fd);
255 return PTR_ERR(filp);
1da177e4 256 }
4d4be482 257
03209378 258 if (S_ISREG(inode->i_mode)) {
2e2e7bb1 259 filp->f_flags |= O_NOATIME;
4d4be482 260 filp->f_mode |= FMODE_NOCMTIME;
2e2e7bb1 261 }
1da177e4 262
d296d30a
CH
263 fd_install(fd, filp);
264 return fd;
265
266 out_dput:
267 dput(dentry);
268 return error;
1da177e4
LT
269}
270
d5547f9f 271int
1da177e4 272xfs_readlink_by_handle(
d296d30a
CH
273 struct file *parfilp,
274 xfs_fsop_handlereq_t *hreq)
1da177e4 275{
d296d30a 276 struct dentry *dentry;
1da177e4 277 __u32 olen;
804c83c3
CH
278 void *link;
279 int error;
1da177e4
LT
280
281 if (!capable(CAP_SYS_ADMIN))
b474c7ae 282 return -EPERM;
1da177e4 283
d296d30a
CH
284 dentry = xfs_handlereq_to_dentry(parfilp, hreq);
285 if (IS_ERR(dentry))
286 return PTR_ERR(dentry);
1da177e4
LT
287
288 /* Restrict this handle operation to symlinks only. */
d296d30a 289 if (!S_ISLNK(dentry->d_inode->i_mode)) {
b474c7ae 290 error = -EINVAL;
d296d30a 291 goto out_dput;
1da177e4
LT
292 }
293
743bb465 294 if (copy_from_user(&olen, hreq->ohandlen, sizeof(__u32))) {
b474c7ae 295 error = -EFAULT;
d296d30a 296 goto out_dput;
1da177e4 297 }
1da177e4 298
804c83c3 299 link = kmalloc(MAXPATHLEN+1, GFP_KERNEL);
d296d30a 300 if (!link) {
b474c7ae 301 error = -ENOMEM;
d296d30a
CH
302 goto out_dput;
303 }
1da177e4 304
2451337d 305 error = xfs_readlink(XFS_I(dentry->d_inode), link);
67fcaa73 306 if (error)
804c83c3 307 goto out_kfree;
5d826c84 308 error = readlink_copy(hreq->ohandle, olen, link);
804c83c3
CH
309 if (error)
310 goto out_kfree;
67fcaa73 311
804c83c3
CH
312 out_kfree:
313 kfree(link);
d296d30a
CH
314 out_dput:
315 dput(dentry);
804c83c3 316 return error;
1da177e4
LT
317}
318
c24b5dfa
DC
319int
320xfs_set_dmattrs(
321 xfs_inode_t *ip,
322 u_int evmask,
323 u_int16_t state)
324{
325 xfs_mount_t *mp = ip->i_mount;
326 xfs_trans_t *tp;
327 int error;
328
329 if (!capable(CAP_SYS_ADMIN))
2451337d 330 return -EPERM;
c24b5dfa
DC
331
332 if (XFS_FORCED_SHUTDOWN(mp))
2451337d 333 return -EIO;
c24b5dfa
DC
334
335 tp = xfs_trans_alloc(mp, XFS_TRANS_SET_DMATTRS);
3d3c8b52 336 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_ichange, 0, 0);
c24b5dfa
DC
337 if (error) {
338 xfs_trans_cancel(tp, 0);
339 return error;
340 }
341 xfs_ilock(ip, XFS_ILOCK_EXCL);
342 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
343
344 ip->i_d.di_dmevmask = evmask;
345 ip->i_d.di_dmstate = state;
346
347 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
348 error = xfs_trans_commit(tp, 0);
349
350 return error;
351}
352
1da177e4
LT
353STATIC int
354xfs_fssetdm_by_handle(
d296d30a
CH
355 struct file *parfilp,
356 void __user *arg)
1da177e4
LT
357{
358 int error;
359 struct fsdmidata fsd;
360 xfs_fsop_setdm_handlereq_t dmhreq;
d296d30a 361 struct dentry *dentry;
1da177e4
LT
362
363 if (!capable(CAP_MKNOD))
b474c7ae 364 return -EPERM;
1da177e4 365 if (copy_from_user(&dmhreq, arg, sizeof(xfs_fsop_setdm_handlereq_t)))
b474c7ae 366 return -EFAULT;
1da177e4 367
d9457dc0
JK
368 error = mnt_want_write_file(parfilp);
369 if (error)
370 return error;
371
d296d30a 372 dentry = xfs_handlereq_to_dentry(parfilp, &dmhreq.hreq);
d9457dc0
JK
373 if (IS_ERR(dentry)) {
374 mnt_drop_write_file(parfilp);
d296d30a 375 return PTR_ERR(dentry);
d9457dc0 376 }
1da177e4 377
d296d30a 378 if (IS_IMMUTABLE(dentry->d_inode) || IS_APPEND(dentry->d_inode)) {
b474c7ae 379 error = -EPERM;
6e7f75ea 380 goto out;
1da177e4
LT
381 }
382
383 if (copy_from_user(&fsd, dmhreq.data, sizeof(fsd))) {
b474c7ae 384 error = -EFAULT;
6e7f75ea 385 goto out;
1da177e4
LT
386 }
387
2451337d 388 error = xfs_set_dmattrs(XFS_I(dentry->d_inode), fsd.fsd_dmevmask,
6e7f75ea 389 fsd.fsd_dmstate);
1da177e4 390
6e7f75ea 391 out:
d9457dc0 392 mnt_drop_write_file(parfilp);
d296d30a 393 dput(dentry);
6e7f75ea 394 return error;
1da177e4
LT
395}
396
397STATIC int
398xfs_attrlist_by_handle(
d296d30a
CH
399 struct file *parfilp,
400 void __user *arg)
1da177e4 401{
d296d30a 402 int error = -ENOMEM;
1da177e4
LT
403 attrlist_cursor_kern_t *cursor;
404 xfs_fsop_attrlist_handlereq_t al_hreq;
d296d30a 405 struct dentry *dentry;
1da177e4
LT
406 char *kbuf;
407
408 if (!capable(CAP_SYS_ADMIN))
b474c7ae 409 return -EPERM;
1da177e4 410 if (copy_from_user(&al_hreq, arg, sizeof(xfs_fsop_attrlist_handlereq_t)))
b474c7ae 411 return -EFAULT;
071c529e
DC
412 if (al_hreq.buflen < sizeof(struct attrlist) ||
413 al_hreq.buflen > XATTR_LIST_MAX)
b474c7ae 414 return -EINVAL;
1da177e4 415
90ad58a8
CH
416 /*
417 * Reject flags, only allow namespaces.
418 */
419 if (al_hreq.flags & ~(ATTR_ROOT | ATTR_SECURE))
b474c7ae 420 return -EINVAL;
90ad58a8 421
d296d30a
CH
422 dentry = xfs_handlereq_to_dentry(parfilp, &al_hreq.hreq);
423 if (IS_ERR(dentry))
424 return PTR_ERR(dentry);
1da177e4 425
fdd3ccee
DC
426 kbuf = kmem_zalloc_large(al_hreq.buflen, KM_SLEEP);
427 if (!kbuf)
428 goto out_dput;
1da177e4
LT
429
430 cursor = (attrlist_cursor_kern_t *)&al_hreq.pos;
2451337d 431 error = xfs_attr_list(XFS_I(dentry->d_inode), kbuf, al_hreq.buflen,
739bfb2a 432 al_hreq.flags, cursor);
1da177e4
LT
433 if (error)
434 goto out_kfree;
435
436 if (copy_to_user(al_hreq.buffer, kbuf, al_hreq.buflen))
437 error = -EFAULT;
438
fdd3ccee
DC
439out_kfree:
440 kmem_free(kbuf);
441out_dput:
d296d30a
CH
442 dput(dentry);
443 return error;
1da177e4
LT
444}
445
28750975 446int
1da177e4 447xfs_attrmulti_attr_get(
739bfb2a 448 struct inode *inode,
a9273ca5
DC
449 unsigned char *name,
450 unsigned char __user *ubuf,
1da177e4
LT
451 __uint32_t *len,
452 __uint32_t flags)
453{
a9273ca5 454 unsigned char *kbuf;
2451337d 455 int error = -EFAULT;
e8b0ebaa 456
1da177e4 457 if (*len > XATTR_SIZE_MAX)
2451337d 458 return -EINVAL;
fdd3ccee
DC
459 kbuf = kmem_zalloc_large(*len, KM_SLEEP);
460 if (!kbuf)
2451337d 461 return -ENOMEM;
1da177e4 462
e8b0ebaa 463 error = xfs_attr_get(XFS_I(inode), name, kbuf, (int *)len, flags);
1da177e4
LT
464 if (error)
465 goto out_kfree;
466
467 if (copy_to_user(ubuf, kbuf, *len))
2451337d 468 error = -EFAULT;
1da177e4 469
fdd3ccee
DC
470out_kfree:
471 kmem_free(kbuf);
1da177e4
LT
472 return error;
473}
474
28750975 475int
1da177e4 476xfs_attrmulti_attr_set(
739bfb2a 477 struct inode *inode,
a9273ca5
DC
478 unsigned char *name,
479 const unsigned char __user *ubuf,
1da177e4
LT
480 __uint32_t len,
481 __uint32_t flags)
482{
a9273ca5 483 unsigned char *kbuf;
1da177e4 484
739bfb2a 485 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
2451337d 486 return -EPERM;
1da177e4 487 if (len > XATTR_SIZE_MAX)
2451337d 488 return -EINVAL;
1da177e4 489
0e639bde
LZ
490 kbuf = memdup_user(ubuf, len);
491 if (IS_ERR(kbuf))
492 return PTR_ERR(kbuf);
e8b0ebaa 493
2451337d 494 return xfs_attr_set(XFS_I(inode), name, kbuf, len, flags);
1da177e4
LT
495}
496
28750975 497int
1da177e4 498xfs_attrmulti_attr_remove(
739bfb2a 499 struct inode *inode,
a9273ca5 500 unsigned char *name,
1da177e4
LT
501 __uint32_t flags)
502{
739bfb2a 503 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
2451337d 504 return -EPERM;
739bfb2a 505 return xfs_attr_remove(XFS_I(inode), name, flags);
1da177e4
LT
506}
507
508STATIC int
509xfs_attrmulti_by_handle(
42a74f20 510 struct file *parfilp,
d296d30a 511 void __user *arg)
1da177e4
LT
512{
513 int error;
514 xfs_attr_multiop_t *ops;
515 xfs_fsop_attrmulti_handlereq_t am_hreq;
d296d30a 516 struct dentry *dentry;
1da177e4 517 unsigned int i, size;
a9273ca5 518 unsigned char *attr_name;
1da177e4
LT
519
520 if (!capable(CAP_SYS_ADMIN))
b474c7ae 521 return -EPERM;
1da177e4 522 if (copy_from_user(&am_hreq, arg, sizeof(xfs_fsop_attrmulti_handlereq_t)))
b474c7ae 523 return -EFAULT;
1da177e4 524
fda168c2
ZW
525 /* overflow check */
526 if (am_hreq.opcount >= INT_MAX / sizeof(xfs_attr_multiop_t))
527 return -E2BIG;
528
d296d30a
CH
529 dentry = xfs_handlereq_to_dentry(parfilp, &am_hreq.hreq);
530 if (IS_ERR(dentry))
531 return PTR_ERR(dentry);
1da177e4 532
2451337d 533 error = -E2BIG;
e182f57a 534 size = am_hreq.opcount * sizeof(xfs_attr_multiop_t);
1da177e4 535 if (!size || size > 16 * PAGE_SIZE)
d296d30a 536 goto out_dput;
1da177e4 537
0e639bde
LZ
538 ops = memdup_user(am_hreq.ops, size);
539 if (IS_ERR(ops)) {
2451337d 540 error = PTR_ERR(ops);
d296d30a 541 goto out_dput;
0e639bde 542 }
1da177e4 543
2451337d 544 error = -ENOMEM;
1da177e4
LT
545 attr_name = kmalloc(MAXNAMELEN, GFP_KERNEL);
546 if (!attr_name)
547 goto out_kfree_ops;
548
1da177e4
LT
549 error = 0;
550 for (i = 0; i < am_hreq.opcount; i++) {
a9273ca5 551 ops[i].am_error = strncpy_from_user((char *)attr_name,
1da177e4
LT
552 ops[i].am_attrname, MAXNAMELEN);
553 if (ops[i].am_error == 0 || ops[i].am_error == MAXNAMELEN)
2451337d 554 error = -ERANGE;
1da177e4
LT
555 if (ops[i].am_error < 0)
556 break;
557
558 switch (ops[i].am_opcode) {
559 case ATTR_OP_GET:
d296d30a
CH
560 ops[i].am_error = xfs_attrmulti_attr_get(
561 dentry->d_inode, attr_name,
562 ops[i].am_attrvalue, &ops[i].am_length,
563 ops[i].am_flags);
1da177e4
LT
564 break;
565 case ATTR_OP_SET:
a561be71 566 ops[i].am_error = mnt_want_write_file(parfilp);
42a74f20
DH
567 if (ops[i].am_error)
568 break;
d296d30a
CH
569 ops[i].am_error = xfs_attrmulti_attr_set(
570 dentry->d_inode, attr_name,
571 ops[i].am_attrvalue, ops[i].am_length,
572 ops[i].am_flags);
2a79f17e 573 mnt_drop_write_file(parfilp);
1da177e4
LT
574 break;
575 case ATTR_OP_REMOVE:
a561be71 576 ops[i].am_error = mnt_want_write_file(parfilp);
42a74f20
DH
577 if (ops[i].am_error)
578 break;
d296d30a
CH
579 ops[i].am_error = xfs_attrmulti_attr_remove(
580 dentry->d_inode, attr_name,
581 ops[i].am_flags);
2a79f17e 582 mnt_drop_write_file(parfilp);
1da177e4
LT
583 break;
584 default:
2451337d 585 ops[i].am_error = -EINVAL;
1da177e4
LT
586 }
587 }
588
589 if (copy_to_user(am_hreq.ops, ops, size))
2451337d 590 error = -EFAULT;
1da177e4
LT
591
592 kfree(attr_name);
593 out_kfree_ops:
594 kfree(ops);
d296d30a
CH
595 out_dput:
596 dput(dentry);
2451337d 597 return error;
1da177e4
LT
598}
599
d5547f9f 600int
1da177e4 601xfs_ioc_space(
993386c1 602 struct xfs_inode *ip,
f37ea149 603 struct inode *inode,
1da177e4
LT
604 struct file *filp,
605 int ioflags,
606 unsigned int cmd,
743bb465 607 xfs_flock64_t *bf)
1da177e4 608{
865e9446
CH
609 struct xfs_mount *mp = ip->i_mount;
610 struct xfs_trans *tp;
611 struct iattr iattr;
612 bool setprealloc = false;
613 bool clrprealloc = false;
1da177e4
LT
614 int error;
615
743bb465 616 /*
617 * Only allow the sys admin to reserve space unless
618 * unwritten extents are enabled.
619 */
620 if (!xfs_sb_version_hasextflgbit(&ip->i_mount->m_sb) &&
621 !capable(CAP_SYS_ADMIN))
b474c7ae 622 return -EPERM;
743bb465 623
f37ea149 624 if (inode->i_flags & (S_IMMUTABLE|S_APPEND))
b474c7ae 625 return -EPERM;
1da177e4 626
ad4a8ac4 627 if (!(filp->f_mode & FMODE_WRITE))
b474c7ae 628 return -EBADF;
1da177e4 629
f37ea149 630 if (!S_ISREG(inode->i_mode))
b474c7ae 631 return -EINVAL;
1da177e4 632
d9457dc0
JK
633 error = mnt_want_write_file(filp);
634 if (error)
635 return error;
865e9446 636
5f8aca8b 637 xfs_ilock(ip, XFS_IOLOCK_EXCL);
865e9446
CH
638
639 switch (bf->l_whence) {
640 case 0: /*SEEK_SET*/
641 break;
642 case 1: /*SEEK_CUR*/
643 bf->l_start += filp->f_pos;
644 break;
645 case 2: /*SEEK_END*/
646 bf->l_start += XFS_ISIZE(ip);
647 break;
648 default:
2451337d 649 error = -EINVAL;
865e9446
CH
650 goto out_unlock;
651 }
652
653 /*
654 * length of <= 0 for resv/unresv/zero is invalid. length for
655 * alloc/free is ignored completely and we have no idea what userspace
656 * might have set it to, so set it to zero to allow range
657 * checks to pass.
658 */
659 switch (cmd) {
660 case XFS_IOC_ZERO_RANGE:
661 case XFS_IOC_RESVSP:
662 case XFS_IOC_RESVSP64:
663 case XFS_IOC_UNRESVSP:
664 case XFS_IOC_UNRESVSP64:
665 if (bf->l_len <= 0) {
2451337d 666 error = -EINVAL;
865e9446
CH
667 goto out_unlock;
668 }
669 break;
670 default:
671 bf->l_len = 0;
672 break;
673 }
674
675 if (bf->l_start < 0 ||
676 bf->l_start > mp->m_super->s_maxbytes ||
677 bf->l_start + bf->l_len < 0 ||
678 bf->l_start + bf->l_len >= mp->m_super->s_maxbytes) {
2451337d 679 error = -EINVAL;
865e9446
CH
680 goto out_unlock;
681 }
682
683 switch (cmd) {
684 case XFS_IOC_ZERO_RANGE:
685 error = xfs_zero_file_space(ip, bf->l_start, bf->l_len);
686 if (!error)
687 setprealloc = true;
688 break;
689 case XFS_IOC_RESVSP:
690 case XFS_IOC_RESVSP64:
691 error = xfs_alloc_file_space(ip, bf->l_start, bf->l_len,
692 XFS_BMAPI_PREALLOC);
693 if (!error)
694 setprealloc = true;
695 break;
696 case XFS_IOC_UNRESVSP:
697 case XFS_IOC_UNRESVSP64:
698 error = xfs_free_file_space(ip, bf->l_start, bf->l_len);
699 break;
700 case XFS_IOC_ALLOCSP:
701 case XFS_IOC_ALLOCSP64:
702 case XFS_IOC_FREESP:
703 case XFS_IOC_FREESP64:
704 if (bf->l_start > XFS_ISIZE(ip)) {
705 error = xfs_alloc_file_space(ip, XFS_ISIZE(ip),
706 bf->l_start - XFS_ISIZE(ip), 0);
707 if (error)
708 goto out_unlock;
709 }
710
711 iattr.ia_valid = ATTR_SIZE;
712 iattr.ia_size = bf->l_start;
713
714 error = xfs_setattr_size(ip, &iattr);
715 if (!error)
716 clrprealloc = true;
717 break;
718 default:
719 ASSERT(0);
2451337d 720 error = -EINVAL;
865e9446
CH
721 }
722
723 if (error)
724 goto out_unlock;
725
726 tp = xfs_trans_alloc(mp, XFS_TRANS_WRITEID);
727 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_writeid, 0, 0);
728 if (error) {
729 xfs_trans_cancel(tp, 0);
730 goto out_unlock;
731 }
732
733 xfs_ilock(ip, XFS_ILOCK_EXCL);
734 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
735
b92cc59f 736 if (!(ioflags & XFS_IO_INVIS)) {
865e9446
CH
737 ip->i_d.di_mode &= ~S_ISUID;
738 if (ip->i_d.di_mode & S_IXGRP)
739 ip->i_d.di_mode &= ~S_ISGID;
740 xfs_trans_ichgtime(tp, ip, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
741 }
742
743 if (setprealloc)
744 ip->i_d.di_flags |= XFS_DIFLAG_PREALLOC;
745 else if (clrprealloc)
746 ip->i_d.di_flags &= ~XFS_DIFLAG_PREALLOC;
747
748 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
749 if (filp->f_flags & O_DSYNC)
750 xfs_trans_set_sync(tp);
751 error = xfs_trans_commit(tp, 0);
752
753out_unlock:
5f8aca8b 754 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
d9457dc0 755 mnt_drop_write_file(filp);
2451337d 756 return error;
1da177e4
LT
757}
758
759STATIC int
760xfs_ioc_bulkstat(
761 xfs_mount_t *mp,
762 unsigned int cmd,
763 void __user *arg)
764{
765 xfs_fsop_bulkreq_t bulkreq;
766 int count; /* # of records returned */
767 xfs_ino_t inlast; /* last inode number */
768 int done;
769 int error;
770
771 /* done = 1 if there are more stats to get and if bulkstat */
772 /* should be called again (unused here, but used in dmapi) */
773
774 if (!capable(CAP_SYS_ADMIN))
775 return -EPERM;
776
777 if (XFS_FORCED_SHUTDOWN(mp))
b474c7ae 778 return -EIO;
1da177e4
LT
779
780 if (copy_from_user(&bulkreq, arg, sizeof(xfs_fsop_bulkreq_t)))
b474c7ae 781 return -EFAULT;
1da177e4
LT
782
783 if (copy_from_user(&inlast, bulkreq.lastip, sizeof(__s64)))
b474c7ae 784 return -EFAULT;
1da177e4
LT
785
786 if ((count = bulkreq.icount) <= 0)
b474c7ae 787 return -EINVAL;
1da177e4 788
cd57e594 789 if (bulkreq.ubuffer == NULL)
b474c7ae 790 return -EINVAL;
cd57e594 791
1da177e4
LT
792 if (cmd == XFS_IOC_FSINUMBERS)
793 error = xfs_inumbers(mp, &inlast, &count,
faa63e95 794 bulkreq.ubuffer, xfs_inumbers_fmt);
1da177e4 795 else if (cmd == XFS_IOC_FSBULKSTAT_SINGLE)
d716f8ee
CH
796 error = xfs_bulkstat_one(mp, inlast, bulkreq.ubuffer,
797 sizeof(xfs_bstat_t), NULL, &done);
cd57e594 798 else /* XFS_IOC_FSBULKSTAT */
7dce11db
CH
799 error = xfs_bulkstat(mp, &inlast, &count, xfs_bulkstat_one,
800 sizeof(xfs_bstat_t), bulkreq.ubuffer,
801 &done);
1da177e4
LT
802
803 if (error)
2451337d 804 return error;
1da177e4
LT
805
806 if (bulkreq.ocount != NULL) {
807 if (copy_to_user(bulkreq.lastip, &inlast,
808 sizeof(xfs_ino_t)))
b474c7ae 809 return -EFAULT;
1da177e4
LT
810
811 if (copy_to_user(bulkreq.ocount, &count, sizeof(count)))
b474c7ae 812 return -EFAULT;
1da177e4
LT
813 }
814
815 return 0;
816}
817
818STATIC int
819xfs_ioc_fsgeometry_v1(
820 xfs_mount_t *mp,
821 void __user *arg)
822{
eeb2036b 823 xfs_fsop_geom_t fsgeo;
1da177e4
LT
824 int error;
825
eeb2036b 826 error = xfs_fs_geometry(mp, &fsgeo, 3);
1da177e4 827 if (error)
2451337d 828 return error;
1da177e4 829
eeb2036b
AE
830 /*
831 * Caller should have passed an argument of type
832 * xfs_fsop_geom_v1_t. This is a proper subset of the
833 * xfs_fsop_geom_t that xfs_fs_geometry() fills in.
834 */
835 if (copy_to_user(arg, &fsgeo, sizeof(xfs_fsop_geom_v1_t)))
b474c7ae 836 return -EFAULT;
1da177e4
LT
837 return 0;
838}
839
840STATIC int
841xfs_ioc_fsgeometry(
842 xfs_mount_t *mp,
843 void __user *arg)
844{
845 xfs_fsop_geom_t fsgeo;
846 int error;
847
848 error = xfs_fs_geometry(mp, &fsgeo, 4);
849 if (error)
2451337d 850 return error;
1da177e4
LT
851
852 if (copy_to_user(arg, &fsgeo, sizeof(fsgeo)))
b474c7ae 853 return -EFAULT;
1da177e4
LT
854 return 0;
855}
856
857/*
858 * Linux extended inode flags interface.
859 */
1da177e4
LT
860
861STATIC unsigned int
862xfs_merge_ioc_xflags(
863 unsigned int flags,
864 unsigned int start)
865{
866 unsigned int xflags = start;
867
39058a0e 868 if (flags & FS_IMMUTABLE_FL)
1da177e4
LT
869 xflags |= XFS_XFLAG_IMMUTABLE;
870 else
871 xflags &= ~XFS_XFLAG_IMMUTABLE;
39058a0e 872 if (flags & FS_APPEND_FL)
1da177e4
LT
873 xflags |= XFS_XFLAG_APPEND;
874 else
875 xflags &= ~XFS_XFLAG_APPEND;
39058a0e 876 if (flags & FS_SYNC_FL)
1da177e4
LT
877 xflags |= XFS_XFLAG_SYNC;
878 else
879 xflags &= ~XFS_XFLAG_SYNC;
39058a0e 880 if (flags & FS_NOATIME_FL)
1da177e4
LT
881 xflags |= XFS_XFLAG_NOATIME;
882 else
883 xflags &= ~XFS_XFLAG_NOATIME;
39058a0e 884 if (flags & FS_NODUMP_FL)
1da177e4
LT
885 xflags |= XFS_XFLAG_NODUMP;
886 else
887 xflags &= ~XFS_XFLAG_NODUMP;
888
889 return xflags;
890}
891
892STATIC unsigned int
893xfs_di2lxflags(
894 __uint16_t di_flags)
895{
896 unsigned int flags = 0;
897
898 if (di_flags & XFS_DIFLAG_IMMUTABLE)
39058a0e 899 flags |= FS_IMMUTABLE_FL;
1da177e4 900 if (di_flags & XFS_DIFLAG_APPEND)
39058a0e 901 flags |= FS_APPEND_FL;
1da177e4 902 if (di_flags & XFS_DIFLAG_SYNC)
39058a0e 903 flags |= FS_SYNC_FL;
1da177e4 904 if (di_flags & XFS_DIFLAG_NOATIME)
39058a0e 905 flags |= FS_NOATIME_FL;
1da177e4 906 if (di_flags & XFS_DIFLAG_NODUMP)
39058a0e 907 flags |= FS_NODUMP_FL;
1da177e4
LT
908 return flags;
909}
910
c83bfab1
CH
911STATIC int
912xfs_ioc_fsgetxattr(
913 xfs_inode_t *ip,
914 int attr,
915 void __user *arg)
916{
917 struct fsxattr fa;
918
a122eb2f
DR
919 memset(&fa, 0, sizeof(struct fsxattr));
920
c83bfab1
CH
921 xfs_ilock(ip, XFS_ILOCK_SHARED);
922 fa.fsx_xflags = xfs_ip2xflags(ip);
923 fa.fsx_extsize = ip->i_d.di_extsize << ip->i_mount->m_sb.sb_blocklog;
6743099c 924 fa.fsx_projid = xfs_get_projid(ip);
c83bfab1
CH
925
926 if (attr) {
927 if (ip->i_afp) {
928 if (ip->i_afp->if_flags & XFS_IFEXTENTS)
929 fa.fsx_nextents = ip->i_afp->if_bytes /
930 sizeof(xfs_bmbt_rec_t);
931 else
932 fa.fsx_nextents = ip->i_d.di_anextents;
933 } else
934 fa.fsx_nextents = 0;
935 } else {
936 if (ip->i_df.if_flags & XFS_IFEXTENTS)
937 fa.fsx_nextents = ip->i_df.if_bytes /
938 sizeof(xfs_bmbt_rec_t);
939 else
940 fa.fsx_nextents = ip->i_d.di_nextents;
941 }
942 xfs_iunlock(ip, XFS_ILOCK_SHARED);
943
944 if (copy_to_user(arg, &fa, sizeof(fa)))
945 return -EFAULT;
946 return 0;
947}
948
25fe55e8
CH
949STATIC void
950xfs_set_diflags(
951 struct xfs_inode *ip,
952 unsigned int xflags)
953{
954 unsigned int di_flags;
955
956 /* can't set PREALLOC this way, just preserve it */
957 di_flags = (ip->i_d.di_flags & XFS_DIFLAG_PREALLOC);
958 if (xflags & XFS_XFLAG_IMMUTABLE)
959 di_flags |= XFS_DIFLAG_IMMUTABLE;
960 if (xflags & XFS_XFLAG_APPEND)
961 di_flags |= XFS_DIFLAG_APPEND;
962 if (xflags & XFS_XFLAG_SYNC)
963 di_flags |= XFS_DIFLAG_SYNC;
964 if (xflags & XFS_XFLAG_NOATIME)
965 di_flags |= XFS_DIFLAG_NOATIME;
966 if (xflags & XFS_XFLAG_NODUMP)
967 di_flags |= XFS_DIFLAG_NODUMP;
25fe55e8
CH
968 if (xflags & XFS_XFLAG_NODEFRAG)
969 di_flags |= XFS_DIFLAG_NODEFRAG;
970 if (xflags & XFS_XFLAG_FILESTREAM)
971 di_flags |= XFS_DIFLAG_FILESTREAM;
abbede1b 972 if (S_ISDIR(ip->i_d.di_mode)) {
25fe55e8
CH
973 if (xflags & XFS_XFLAG_RTINHERIT)
974 di_flags |= XFS_DIFLAG_RTINHERIT;
975 if (xflags & XFS_XFLAG_NOSYMLINKS)
976 di_flags |= XFS_DIFLAG_NOSYMLINKS;
977 if (xflags & XFS_XFLAG_EXTSZINHERIT)
978 di_flags |= XFS_DIFLAG_EXTSZINHERIT;
9336e3a7
DC
979 if (xflags & XFS_XFLAG_PROJINHERIT)
980 di_flags |= XFS_DIFLAG_PROJINHERIT;
abbede1b 981 } else if (S_ISREG(ip->i_d.di_mode)) {
25fe55e8
CH
982 if (xflags & XFS_XFLAG_REALTIME)
983 di_flags |= XFS_DIFLAG_REALTIME;
984 if (xflags & XFS_XFLAG_EXTSIZE)
985 di_flags |= XFS_DIFLAG_EXTSIZE;
986 }
987
988 ip->i_d.di_flags = di_flags;
989}
990
f13fae2d
CH
991STATIC void
992xfs_diflags_to_linux(
993 struct xfs_inode *ip)
994{
e4f75291 995 struct inode *inode = VFS_I(ip);
f13fae2d
CH
996 unsigned int xflags = xfs_ip2xflags(ip);
997
998 if (xflags & XFS_XFLAG_IMMUTABLE)
999 inode->i_flags |= S_IMMUTABLE;
1000 else
1001 inode->i_flags &= ~S_IMMUTABLE;
1002 if (xflags & XFS_XFLAG_APPEND)
1003 inode->i_flags |= S_APPEND;
1004 else
1005 inode->i_flags &= ~S_APPEND;
1006 if (xflags & XFS_XFLAG_SYNC)
1007 inode->i_flags |= S_SYNC;
1008 else
1009 inode->i_flags &= ~S_SYNC;
1010 if (xflags & XFS_XFLAG_NOATIME)
1011 inode->i_flags |= S_NOATIME;
1012 else
1013 inode->i_flags &= ~S_NOATIME;
1014}
25fe55e8 1015
29a17c00
DC
1016static int
1017xfs_ioctl_setattr_xflags(
1018 struct xfs_trans *tp,
1019 struct xfs_inode *ip,
1020 struct fsxattr *fa)
1021{
1022 struct xfs_mount *mp = ip->i_mount;
1023
1024 /* Can't change realtime flag if any extents are allocated. */
1025 if ((ip->i_d.di_nextents || ip->i_delayed_blks) &&
1026 XFS_IS_REALTIME_INODE(ip) != (fa->fsx_xflags & XFS_XFLAG_REALTIME))
1027 return -EINVAL;
1028
1029 /* If realtime flag is set then must have realtime device */
1030 if (fa->fsx_xflags & XFS_XFLAG_REALTIME) {
1031 if (mp->m_sb.sb_rblocks == 0 || mp->m_sb.sb_rextsize == 0 ||
1032 (ip->i_d.di_extsize % mp->m_sb.sb_rextsize))
1033 return -EINVAL;
1034 }
1035
1036 /*
1037 * Can't modify an immutable/append-only file unless
1038 * we have appropriate permission.
1039 */
1040 if (((ip->i_d.di_flags & (XFS_DIFLAG_IMMUTABLE | XFS_DIFLAG_APPEND)) ||
1041 (fa->fsx_xflags & (XFS_XFLAG_IMMUTABLE | XFS_XFLAG_APPEND))) &&
1042 !capable(CAP_LINUX_IMMUTABLE))
1043 return -EPERM;
1044
29a17c00
DC
1045 xfs_set_diflags(ip, fa->fsx_xflags);
1046 xfs_diflags_to_linux(ip);
1047 xfs_trans_ichgtime(tp, ip, XFS_ICHGTIME_CHG);
1048 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1049 XFS_STATS_INC(xs_ig_attrchg);
1050 return 0;
1051}
1052
8f3d17ab
DC
1053/*
1054 * Set up the transaction structure for the setattr operation, checking that we
1055 * have permission to do so. On success, return a clean transaction and the
1056 * inode locked exclusively ready for further operation specific checks. On
1057 * failure, return an error without modifying or locking the inode.
1058 */
1059static struct xfs_trans *
1060xfs_ioctl_setattr_get_trans(
1061 struct xfs_inode *ip)
1062{
1063 struct xfs_mount *mp = ip->i_mount;
1064 struct xfs_trans *tp;
1065 int error;
1066
1067 if (mp->m_flags & XFS_MOUNT_RDONLY)
1068 return ERR_PTR(-EROFS);
1069 if (XFS_FORCED_SHUTDOWN(mp))
1070 return ERR_PTR(-EIO);
1071
1072 tp = xfs_trans_alloc(mp, XFS_TRANS_SETATTR_NOT_SIZE);
1073 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_ichange, 0, 0);
1074 if (error)
1075 goto out_cancel;
1076
1077 xfs_ilock(ip, XFS_ILOCK_EXCL);
1078 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
1079
1080 /*
1081 * CAP_FOWNER overrides the following restrictions:
1082 *
1083 * The user ID of the calling process must be equal to the file owner
1084 * ID, except in cases where the CAP_FSETID capability is applicable.
1085 */
1086 if (!inode_owner_or_capable(VFS_I(ip))) {
1087 error = -EPERM;
1088 goto out_cancel;
1089 }
1090
1091 if (mp->m_flags & XFS_MOUNT_WSYNC)
1092 xfs_trans_set_sync(tp);
1093
1094 return tp;
1095
1096out_cancel:
1097 xfs_trans_cancel(tp, 0);
1098 return ERR_PTR(error);
1099}
1100
25fe55e8
CH
1101#define FSX_PROJID 1
1102#define FSX_EXTSIZE 2
1103#define FSX_XFLAGS 4
25fe55e8
CH
1104
1105STATIC int
1106xfs_ioctl_setattr(
1107 xfs_inode_t *ip,
1108 struct fsxattr *fa,
1109 int mask)
1110{
1111 struct xfs_mount *mp = ip->i_mount;
1112 struct xfs_trans *tp;
7d095257 1113 struct xfs_dquot *udqp = NULL;
92f8ff73 1114 struct xfs_dquot *pdqp = NULL;
25fe55e8
CH
1115 struct xfs_dquot *olddquot = NULL;
1116 int code;
1117
cca28fb8 1118 trace_xfs_ioctl_setattr(ip);
25fe55e8 1119
23963e54 1120 /*
6743099c 1121 * Disallow 32bit project ids when projid32bit feature is not enabled.
23963e54 1122 */
6743099c
AM
1123 if ((mask & FSX_PROJID) && (fa->fsx_projid > (__uint16_t)-1) &&
1124 !xfs_sb_version_hasprojid32bit(&ip->i_mount->m_sb))
2451337d 1125 return -EINVAL;
23963e54 1126
25fe55e8
CH
1127 /*
1128 * If disk quotas is on, we make sure that the dquots do exist on disk,
1129 * before we start any other transactions. Trying to do this later
1130 * is messy. We don't care to take a readlock to look at the ids
1131 * in inode here, because we can't hold it across the trans_reserve.
1132 * If the IDs do change before we take the ilock, we're covered
1133 * because the i_*dquot fields will get updated anyway.
1134 */
1135 if (XFS_IS_QUOTA_ON(mp) && (mask & FSX_PROJID)) {
7d095257 1136 code = xfs_qm_vop_dqalloc(ip, ip->i_d.di_uid,
25fe55e8 1137 ip->i_d.di_gid, fa->fsx_projid,
92f8ff73 1138 XFS_QMOPT_PQUOTA, &udqp, NULL, &pdqp);
25fe55e8
CH
1139 if (code)
1140 return code;
1141 }
1142
8f3d17ab
DC
1143 tp = xfs_ioctl_setattr_get_trans(ip);
1144 if (IS_ERR(tp)) {
1145 code = PTR_ERR(tp);
1146 goto error_free_dquots;
25fe55e8
CH
1147 }
1148
1149 /*
1150 * Do a quota reservation only if projid is actually going to change.
fd5e2aa8
DE
1151 * Only allow changing of projid from init_user_ns since it is a
1152 * non user namespace aware identifier.
25fe55e8
CH
1153 */
1154 if (mask & FSX_PROJID) {
fd5e2aa8 1155 if (current_user_ns() != &init_user_ns) {
2451337d 1156 code = -EINVAL;
fd5e2aa8
DE
1157 goto error_return;
1158 }
1159
7d095257
CH
1160 if (XFS_IS_QUOTA_RUNNING(mp) &&
1161 XFS_IS_PQUOTA_ON(mp) &&
6743099c 1162 xfs_get_projid(ip) != fa->fsx_projid) {
25fe55e8 1163 ASSERT(tp);
92f8ff73
CS
1164 code = xfs_qm_vop_chown_reserve(tp, ip, udqp, NULL,
1165 pdqp, capable(CAP_FOWNER) ?
25fe55e8
CH
1166 XFS_QMOPT_FORCE_RES : 0);
1167 if (code) /* out of quota */
1168 goto error_return;
1169 }
1170 }
1171
1172 if (mask & FSX_EXTSIZE) {
1173 /*
1174 * Can't change extent size if any extents are allocated.
1175 */
1176 if (ip->i_d.di_nextents &&
1177 ((ip->i_d.di_extsize << mp->m_sb.sb_blocklog) !=
1178 fa->fsx_extsize)) {
2451337d 1179 code = -EINVAL; /* EFBIG? */
25fe55e8
CH
1180 goto error_return;
1181 }
1182
1183 /*
1184 * Extent size must be a multiple of the appropriate block
5315837d
DC
1185 * size, if set at all. It must also be smaller than the
1186 * maximum extent size supported by the filesystem.
1187 *
1188 * Also, for non-realtime files, limit the extent size hint to
1189 * half the size of the AGs in the filesystem so alignment
1190 * doesn't result in extents larger than an AG.
25fe55e8
CH
1191 */
1192 if (fa->fsx_extsize != 0) {
5315837d
DC
1193 xfs_extlen_t size;
1194 xfs_fsblock_t extsize_fsb;
1195
1196 extsize_fsb = XFS_B_TO_FSB(mp, fa->fsx_extsize);
1197 if (extsize_fsb > MAXEXTLEN) {
2451337d 1198 code = -EINVAL;
5315837d
DC
1199 goto error_return;
1200 }
25fe55e8
CH
1201
1202 if (XFS_IS_REALTIME_INODE(ip) ||
1203 ((mask & FSX_XFLAGS) &&
1204 (fa->fsx_xflags & XFS_XFLAG_REALTIME))) {
1205 size = mp->m_sb.sb_rextsize <<
1206 mp->m_sb.sb_blocklog;
1207 } else {
1208 size = mp->m_sb.sb_blocksize;
5315837d 1209 if (extsize_fsb > mp->m_sb.sb_agblocks / 2) {
2451337d 1210 code = -EINVAL;
5315837d
DC
1211 goto error_return;
1212 }
25fe55e8
CH
1213 }
1214
1215 if (fa->fsx_extsize % size) {
2451337d 1216 code = -EINVAL;
25fe55e8
CH
1217 goto error_return;
1218 }
1219 }
1220 }
1221
1222
29a17c00
DC
1223 code = xfs_ioctl_setattr_xflags(tp, ip, fa);
1224 if (code)
1225 goto error_return;
25fe55e8
CH
1226
1227 /*
1228 * Change file ownership. Must be the owner or privileged.
25fe55e8
CH
1229 */
1230 if (mask & FSX_PROJID) {
1231 /*
1232 * CAP_FSETID overrides the following restrictions:
1233 *
1234 * The set-user-ID and set-group-ID bits of a file will be
1235 * cleared upon successful return from chown()
1236 */
1237 if ((ip->i_d.di_mode & (S_ISUID|S_ISGID)) &&
23adbe12 1238 !capable_wrt_inode_uidgid(VFS_I(ip), CAP_FSETID))
25fe55e8
CH
1239 ip->i_d.di_mode &= ~(S_ISUID|S_ISGID);
1240
1241 /*
1242 * Change the ownerships and register quota modifications
1243 * in the transaction.
1244 */
6743099c 1245 if (xfs_get_projid(ip) != fa->fsx_projid) {
7d095257
CH
1246 if (XFS_IS_QUOTA_RUNNING(mp) && XFS_IS_PQUOTA_ON(mp)) {
1247 olddquot = xfs_qm_vop_chown(tp, ip,
92f8ff73 1248 &ip->i_pdquot, pdqp);
25fe55e8 1249 }
263997a6 1250 ASSERT(ip->i_d.di_version > 1);
6743099c 1251 xfs_set_projid(ip, fa->fsx_projid);
25fe55e8
CH
1252 }
1253
1254 }
1255
a872703f
DC
1256 /*
1257 * Only set the extent size hint if we've already determined that the
1258 * extent size hint should be set on the inode. If no extent size flags
1259 * are set on the inode then unconditionally clear the extent size hint.
1260 */
1261 if (mask & FSX_EXTSIZE) {
1262 int extsize = 0;
1263
1264 if (ip->i_d.di_flags &
1265 (XFS_DIFLAG_EXTSIZE | XFS_DIFLAG_EXTSZINHERIT))
1266 extsize = fa->fsx_extsize >> mp->m_sb.sb_blocklog;
1267 ip->i_d.di_extsize = extsize;
1268 }
1269
25fe55e8 1270 code = xfs_trans_commit(tp, 0);
25fe55e8
CH
1271
1272 /*
1273 * Release any dquot(s) the inode had kept before chown.
1274 */
7d095257
CH
1275 xfs_qm_dqrele(olddquot);
1276 xfs_qm_dqrele(udqp);
92f8ff73 1277 xfs_qm_dqrele(pdqp);
25fe55e8 1278
288699fe 1279 return code;
25fe55e8 1280
8f3d17ab
DC
1281error_return:
1282 xfs_trans_cancel(tp, 0);
1283error_free_dquots:
7d095257 1284 xfs_qm_dqrele(udqp);
92f8ff73 1285 xfs_qm_dqrele(pdqp);
25fe55e8
CH
1286 return code;
1287}
1288
1da177e4 1289STATIC int
df26cfe8 1290xfs_ioc_fssetxattr(
1da177e4
LT
1291 xfs_inode_t *ip,
1292 struct file *filp,
1da177e4
LT
1293 void __user *arg)
1294{
1295 struct fsxattr fa;
25fe55e8 1296 unsigned int mask;
d9457dc0 1297 int error;
df26cfe8
LM
1298
1299 if (copy_from_user(&fa, arg, sizeof(fa)))
1300 return -EFAULT;
1da177e4 1301
25fe55e8 1302 mask = FSX_XFLAGS | FSX_EXTSIZE | FSX_PROJID;
1da177e4 1303
d9457dc0
JK
1304 error = mnt_want_write_file(filp);
1305 if (error)
1306 return error;
1307 error = xfs_ioctl_setattr(ip, &fa, mask);
1308 mnt_drop_write_file(filp);
2451337d 1309 return error;
df26cfe8 1310}
1da177e4 1311
df26cfe8
LM
1312STATIC int
1313xfs_ioc_getxflags(
1314 xfs_inode_t *ip,
1315 void __user *arg)
1316{
1317 unsigned int flags;
1da177e4 1318
df26cfe8
LM
1319 flags = xfs_di2lxflags(ip->i_d.di_flags);
1320 if (copy_to_user(arg, &flags, sizeof(flags)))
1321 return -EFAULT;
1322 return 0;
1323}
1da177e4 1324
df26cfe8
LM
1325STATIC int
1326xfs_ioc_setxflags(
f96291f6 1327 struct xfs_inode *ip,
df26cfe8
LM
1328 struct file *filp,
1329 void __user *arg)
1330{
f96291f6 1331 struct xfs_trans *tp;
25fe55e8 1332 struct fsxattr fa;
df26cfe8 1333 unsigned int flags;
f96291f6 1334 int error;
1da177e4 1335
df26cfe8
LM
1336 if (copy_from_user(&flags, arg, sizeof(flags)))
1337 return -EFAULT;
1da177e4 1338
df26cfe8
LM
1339 if (flags & ~(FS_IMMUTABLE_FL | FS_APPEND_FL | \
1340 FS_NOATIME_FL | FS_NODUMP_FL | \
1341 FS_SYNC_FL))
1342 return -EOPNOTSUPP;
1da177e4 1343
25fe55e8 1344 fa.fsx_xflags = xfs_merge_ioc_xflags(flags, xfs_ip2xflags(ip));
1da177e4 1345
d9457dc0
JK
1346 error = mnt_want_write_file(filp);
1347 if (error)
1348 return error;
f96291f6
DC
1349
1350 tp = xfs_ioctl_setattr_get_trans(ip);
1351 if (IS_ERR(tp)) {
1352 error = PTR_ERR(tp);
1353 goto out_drop_write;
1354 }
1355
1356 error = xfs_ioctl_setattr_xflags(tp, ip, &fa);
1357 if (error) {
1358 xfs_trans_cancel(tp, 0);
1359 goto out_drop_write;
1360 }
1361
1362 error = xfs_trans_commit(tp, 0);
1363out_drop_write:
d9457dc0 1364 mnt_drop_write_file(filp);
2451337d 1365 return error;
1da177e4
LT
1366}
1367
8a7141a8
ES
1368STATIC int
1369xfs_getbmap_format(void **ap, struct getbmapx *bmv, int *full)
1370{
b972d079 1371 struct getbmap __user *base = (struct getbmap __user *)*ap;
8a7141a8
ES
1372
1373 /* copy only getbmap portion (not getbmapx) */
1374 if (copy_to_user(base, bmv, sizeof(struct getbmap)))
2451337d 1375 return -EFAULT;
8a7141a8
ES
1376
1377 *ap += sizeof(struct getbmap);
1378 return 0;
1379}
1380
1da177e4
LT
1381STATIC int
1382xfs_ioc_getbmap(
993386c1 1383 struct xfs_inode *ip,
1da177e4
LT
1384 int ioflags,
1385 unsigned int cmd,
1386 void __user *arg)
1387{
8a7141a8 1388 struct getbmapx bmx;
1da177e4
LT
1389 int error;
1390
8a7141a8 1391 if (copy_from_user(&bmx, arg, sizeof(struct getbmapx)))
b474c7ae 1392 return -EFAULT;
1da177e4 1393
8a7141a8 1394 if (bmx.bmv_count < 2)
b474c7ae 1395 return -EINVAL;
1da177e4 1396
8a7141a8 1397 bmx.bmv_iflags = (cmd == XFS_IOC_GETBMAPA ? BMV_IF_ATTRFORK : 0);
b92cc59f 1398 if (ioflags & XFS_IO_INVIS)
8a7141a8 1399 bmx.bmv_iflags |= BMV_IF_NO_DMAPI_READ;
1da177e4 1400
8a7141a8 1401 error = xfs_getbmap(ip, &bmx, xfs_getbmap_format,
b972d079 1402 (__force struct getbmap *)arg+1);
1da177e4 1403 if (error)
2451337d 1404 return error;
1da177e4 1405
8a7141a8
ES
1406 /* copy back header - only size of getbmap */
1407 if (copy_to_user(arg, &bmx, sizeof(struct getbmap)))
b474c7ae 1408 return -EFAULT;
1da177e4
LT
1409 return 0;
1410}
1411
8a7141a8
ES
1412STATIC int
1413xfs_getbmapx_format(void **ap, struct getbmapx *bmv, int *full)
1414{
b972d079 1415 struct getbmapx __user *base = (struct getbmapx __user *)*ap;
8a7141a8
ES
1416
1417 if (copy_to_user(base, bmv, sizeof(struct getbmapx)))
2451337d 1418 return -EFAULT;
8a7141a8
ES
1419
1420 *ap += sizeof(struct getbmapx);
1421 return 0;
1422}
1423
1da177e4
LT
1424STATIC int
1425xfs_ioc_getbmapx(
993386c1 1426 struct xfs_inode *ip,
1da177e4
LT
1427 void __user *arg)
1428{
1429 struct getbmapx bmx;
1da177e4
LT
1430 int error;
1431
1432 if (copy_from_user(&bmx, arg, sizeof(bmx)))
b474c7ae 1433 return -EFAULT;
1da177e4
LT
1434
1435 if (bmx.bmv_count < 2)
b474c7ae 1436 return -EINVAL;
1da177e4 1437
8a7141a8 1438 if (bmx.bmv_iflags & (~BMV_IF_VALID))
b474c7ae 1439 return -EINVAL;
1da177e4 1440
8a7141a8 1441 error = xfs_getbmap(ip, &bmx, xfs_getbmapx_format,
b972d079 1442 (__force struct getbmapx *)arg+1);
1da177e4 1443 if (error)
2451337d 1444 return error;
1da177e4 1445
8a7141a8
ES
1446 /* copy back header */
1447 if (copy_to_user(arg, &bmx, sizeof(struct getbmapx)))
b474c7ae 1448 return -EFAULT;
1da177e4
LT
1449
1450 return 0;
1451}
df26cfe8 1452
a133d952
DC
1453int
1454xfs_ioc_swapext(
1455 xfs_swapext_t *sxp)
1456{
1457 xfs_inode_t *ip, *tip;
1458 struct fd f, tmp;
1459 int error = 0;
1460
1461 /* Pull information for the target fd */
1462 f = fdget((int)sxp->sx_fdtarget);
1463 if (!f.file) {
2451337d 1464 error = -EINVAL;
a133d952
DC
1465 goto out;
1466 }
1467
1468 if (!(f.file->f_mode & FMODE_WRITE) ||
1469 !(f.file->f_mode & FMODE_READ) ||
1470 (f.file->f_flags & O_APPEND)) {
2451337d 1471 error = -EBADF;
a133d952
DC
1472 goto out_put_file;
1473 }
1474
1475 tmp = fdget((int)sxp->sx_fdtmp);
1476 if (!tmp.file) {
2451337d 1477 error = -EINVAL;
a133d952
DC
1478 goto out_put_file;
1479 }
1480
1481 if (!(tmp.file->f_mode & FMODE_WRITE) ||
1482 !(tmp.file->f_mode & FMODE_READ) ||
1483 (tmp.file->f_flags & O_APPEND)) {
2451337d 1484 error = -EBADF;
a133d952
DC
1485 goto out_put_tmp_file;
1486 }
1487
1488 if (IS_SWAPFILE(file_inode(f.file)) ||
1489 IS_SWAPFILE(file_inode(tmp.file))) {
2451337d 1490 error = -EINVAL;
a133d952
DC
1491 goto out_put_tmp_file;
1492 }
1493
1494 ip = XFS_I(file_inode(f.file));
1495 tip = XFS_I(file_inode(tmp.file));
1496
1497 if (ip->i_mount != tip->i_mount) {
2451337d 1498 error = -EINVAL;
a133d952
DC
1499 goto out_put_tmp_file;
1500 }
1501
1502 if (ip->i_ino == tip->i_ino) {
2451337d 1503 error = -EINVAL;
a133d952
DC
1504 goto out_put_tmp_file;
1505 }
1506
1507 if (XFS_FORCED_SHUTDOWN(ip->i_mount)) {
2451337d 1508 error = -EIO;
a133d952
DC
1509 goto out_put_tmp_file;
1510 }
1511
1512 error = xfs_swap_extents(ip, tip, sxp);
1513
1514 out_put_tmp_file:
1515 fdput(tmp);
1516 out_put_file:
1517 fdput(f);
1518 out:
1519 return error;
1520}
1521
4d4be482
CH
1522/*
1523 * Note: some of the ioctl's return positive numbers as a
1524 * byte count indicating success, such as readlink_by_handle.
1525 * So we don't "sign flip" like most other routines. This means
1526 * true errors need to be returned as a negative value.
1527 */
1528long
1529xfs_file_ioctl(
df26cfe8 1530 struct file *filp,
df26cfe8 1531 unsigned int cmd,
4d4be482 1532 unsigned long p)
df26cfe8 1533{
496ad9aa 1534 struct inode *inode = file_inode(filp);
4d4be482
CH
1535 struct xfs_inode *ip = XFS_I(inode);
1536 struct xfs_mount *mp = ip->i_mount;
1537 void __user *arg = (void __user *)p;
1538 int ioflags = 0;
df26cfe8
LM
1539 int error;
1540
4d4be482 1541 if (filp->f_mode & FMODE_NOCMTIME)
b92cc59f 1542 ioflags |= XFS_IO_INVIS;
df26cfe8 1543
cca28fb8 1544 trace_xfs_file_ioctl(ip);
4d4be482
CH
1545
1546 switch (cmd) {
a46db608
CH
1547 case FITRIM:
1548 return xfs_ioc_trim(mp, arg);
df26cfe8
LM
1549 case XFS_IOC_ALLOCSP:
1550 case XFS_IOC_FREESP:
1551 case XFS_IOC_RESVSP:
1552 case XFS_IOC_UNRESVSP:
1553 case XFS_IOC_ALLOCSP64:
1554 case XFS_IOC_FREESP64:
1555 case XFS_IOC_RESVSP64:
44722352
DC
1556 case XFS_IOC_UNRESVSP64:
1557 case XFS_IOC_ZERO_RANGE: {
743bb465 1558 xfs_flock64_t bf;
df26cfe8 1559
743bb465 1560 if (copy_from_user(&bf, arg, sizeof(bf)))
b474c7ae 1561 return -EFAULT;
743bb465 1562 return xfs_ioc_space(ip, inode, filp, ioflags, cmd, &bf);
1563 }
df26cfe8
LM
1564 case XFS_IOC_DIOINFO: {
1565 struct dioattr da;
1566 xfs_buftarg_t *target =
1567 XFS_IS_REALTIME_INODE(ip) ?
1568 mp->m_rtdev_targp : mp->m_ddev_targp;
1569
7c71ee78 1570 da.d_mem = da.d_miniosz = target->bt_logical_sectorsize;
df26cfe8
LM
1571 da.d_maxiosz = INT_MAX & ~(da.d_miniosz - 1);
1572
1573 if (copy_to_user(arg, &da, sizeof(da)))
b474c7ae 1574 return -EFAULT;
df26cfe8
LM
1575 return 0;
1576 }
1577
1578 case XFS_IOC_FSBULKSTAT_SINGLE:
1579 case XFS_IOC_FSBULKSTAT:
1580 case XFS_IOC_FSINUMBERS:
1581 return xfs_ioc_bulkstat(mp, cmd, arg);
1582
1583 case XFS_IOC_FSGEOMETRY_V1:
1584 return xfs_ioc_fsgeometry_v1(mp, arg);
1585
1586 case XFS_IOC_FSGEOMETRY:
1587 return xfs_ioc_fsgeometry(mp, arg);
1588
1589 case XFS_IOC_GETVERSION:
1590 return put_user(inode->i_generation, (int __user *)arg);
1591
1592 case XFS_IOC_FSGETXATTR:
1593 return xfs_ioc_fsgetxattr(ip, 0, arg);
1594 case XFS_IOC_FSGETXATTRA:
1595 return xfs_ioc_fsgetxattr(ip, 1, arg);
65e67f51
LM
1596 case XFS_IOC_FSSETXATTR:
1597 return xfs_ioc_fssetxattr(ip, filp, arg);
df26cfe8 1598 case XFS_IOC_GETXFLAGS:
65e67f51 1599 return xfs_ioc_getxflags(ip, arg);
df26cfe8 1600 case XFS_IOC_SETXFLAGS:
65e67f51 1601 return xfs_ioc_setxflags(ip, filp, arg);
df26cfe8
LM
1602
1603 case XFS_IOC_FSSETDM: {
1604 struct fsdmidata dmi;
1605
1606 if (copy_from_user(&dmi, arg, sizeof(dmi)))
b474c7ae 1607 return -EFAULT;
df26cfe8 1608
d9457dc0
JK
1609 error = mnt_want_write_file(filp);
1610 if (error)
1611 return error;
1612
df26cfe8
LM
1613 error = xfs_set_dmattrs(ip, dmi.fsd_dmevmask,
1614 dmi.fsd_dmstate);
d9457dc0 1615 mnt_drop_write_file(filp);
2451337d 1616 return error;
df26cfe8
LM
1617 }
1618
1619 case XFS_IOC_GETBMAP:
1620 case XFS_IOC_GETBMAPA:
1621 return xfs_ioc_getbmap(ip, ioflags, cmd, arg);
1622
1623 case XFS_IOC_GETBMAPX:
1624 return xfs_ioc_getbmapx(ip, arg);
1625
1626 case XFS_IOC_FD_TO_HANDLE:
1627 case XFS_IOC_PATH_TO_HANDLE:
743bb465 1628 case XFS_IOC_PATH_TO_FSHANDLE: {
1629 xfs_fsop_handlereq_t hreq;
df26cfe8 1630
743bb465 1631 if (copy_from_user(&hreq, arg, sizeof(hreq)))
b474c7ae 1632 return -EFAULT;
743bb465 1633 return xfs_find_handle(cmd, &hreq);
1634 }
1635 case XFS_IOC_OPEN_BY_HANDLE: {
1636 xfs_fsop_handlereq_t hreq;
df26cfe8 1637
743bb465 1638 if (copy_from_user(&hreq, arg, sizeof(xfs_fsop_handlereq_t)))
b474c7ae 1639 return -EFAULT;
d296d30a 1640 return xfs_open_by_handle(filp, &hreq);
743bb465 1641 }
df26cfe8 1642 case XFS_IOC_FSSETDM_BY_HANDLE:
d296d30a 1643 return xfs_fssetdm_by_handle(filp, arg);
df26cfe8 1644
743bb465 1645 case XFS_IOC_READLINK_BY_HANDLE: {
1646 xfs_fsop_handlereq_t hreq;
df26cfe8 1647
743bb465 1648 if (copy_from_user(&hreq, arg, sizeof(xfs_fsop_handlereq_t)))
b474c7ae 1649 return -EFAULT;
d296d30a 1650 return xfs_readlink_by_handle(filp, &hreq);
743bb465 1651 }
df26cfe8 1652 case XFS_IOC_ATTRLIST_BY_HANDLE:
d296d30a 1653 return xfs_attrlist_by_handle(filp, arg);
df26cfe8
LM
1654
1655 case XFS_IOC_ATTRMULTI_BY_HANDLE:
d296d30a 1656 return xfs_attrmulti_by_handle(filp, arg);
df26cfe8
LM
1657
1658 case XFS_IOC_SWAPEXT: {
743bb465 1659 struct xfs_swapext sxp;
1660
1661 if (copy_from_user(&sxp, arg, sizeof(xfs_swapext_t)))
b474c7ae 1662 return -EFAULT;
d9457dc0
JK
1663 error = mnt_want_write_file(filp);
1664 if (error)
1665 return error;
a133d952 1666 error = xfs_ioc_swapext(&sxp);
d9457dc0 1667 mnt_drop_write_file(filp);
2451337d 1668 return error;
df26cfe8
LM
1669 }
1670
1671 case XFS_IOC_FSCOUNTS: {
1672 xfs_fsop_counts_t out;
1673
1674 error = xfs_fs_counts(mp, &out);
1675 if (error)
2451337d 1676 return error;
df26cfe8
LM
1677
1678 if (copy_to_user(arg, &out, sizeof(out)))
b474c7ae 1679 return -EFAULT;
df26cfe8
LM
1680 return 0;
1681 }
1682
1683 case XFS_IOC_SET_RESBLKS: {
1684 xfs_fsop_resblks_t inout;
1685 __uint64_t in;
1686
1687 if (!capable(CAP_SYS_ADMIN))
1688 return -EPERM;
1689
d5db0f97 1690 if (mp->m_flags & XFS_MOUNT_RDONLY)
b474c7ae 1691 return -EROFS;
d5db0f97 1692
df26cfe8 1693 if (copy_from_user(&inout, arg, sizeof(inout)))
b474c7ae 1694 return -EFAULT;
df26cfe8 1695
d9457dc0
JK
1696 error = mnt_want_write_file(filp);
1697 if (error)
1698 return error;
1699
df26cfe8
LM
1700 /* input parameter is passed in resblks field of structure */
1701 in = inout.resblks;
1702 error = xfs_reserve_blocks(mp, &in, &inout);
d9457dc0 1703 mnt_drop_write_file(filp);
df26cfe8 1704 if (error)
2451337d 1705 return error;
df26cfe8
LM
1706
1707 if (copy_to_user(arg, &inout, sizeof(inout)))
b474c7ae 1708 return -EFAULT;
df26cfe8
LM
1709 return 0;
1710 }
1711
1712 case XFS_IOC_GET_RESBLKS: {
1713 xfs_fsop_resblks_t out;
1714
1715 if (!capable(CAP_SYS_ADMIN))
1716 return -EPERM;
1717
1718 error = xfs_reserve_blocks(mp, NULL, &out);
1719 if (error)
2451337d 1720 return error;
df26cfe8
LM
1721
1722 if (copy_to_user(arg, &out, sizeof(out)))
b474c7ae 1723 return -EFAULT;
df26cfe8
LM
1724
1725 return 0;
1726 }
1727
1728 case XFS_IOC_FSGROWFSDATA: {
1729 xfs_growfs_data_t in;
1730
df26cfe8 1731 if (copy_from_user(&in, arg, sizeof(in)))
b474c7ae 1732 return -EFAULT;
df26cfe8 1733
d9457dc0
JK
1734 error = mnt_want_write_file(filp);
1735 if (error)
1736 return error;
df26cfe8 1737 error = xfs_growfs_data(mp, &in);
d9457dc0 1738 mnt_drop_write_file(filp);
2451337d 1739 return error;
df26cfe8
LM
1740 }
1741
1742 case XFS_IOC_FSGROWFSLOG: {
1743 xfs_growfs_log_t in;
1744
df26cfe8 1745 if (copy_from_user(&in, arg, sizeof(in)))
b474c7ae 1746 return -EFAULT;
df26cfe8 1747
d9457dc0
JK
1748 error = mnt_want_write_file(filp);
1749 if (error)
1750 return error;
df26cfe8 1751 error = xfs_growfs_log(mp, &in);
d9457dc0 1752 mnt_drop_write_file(filp);
2451337d 1753 return error;
df26cfe8
LM
1754 }
1755
1756 case XFS_IOC_FSGROWFSRT: {
1757 xfs_growfs_rt_t in;
1758
df26cfe8 1759 if (copy_from_user(&in, arg, sizeof(in)))
b474c7ae 1760 return -EFAULT;
df26cfe8 1761
d9457dc0
JK
1762 error = mnt_want_write_file(filp);
1763 if (error)
1764 return error;
df26cfe8 1765 error = xfs_growfs_rt(mp, &in);
d9457dc0 1766 mnt_drop_write_file(filp);
2451337d 1767 return error;
df26cfe8
LM
1768 }
1769
df26cfe8
LM
1770 case XFS_IOC_GOINGDOWN: {
1771 __uint32_t in;
1772
1773 if (!capable(CAP_SYS_ADMIN))
1774 return -EPERM;
1775
1776 if (get_user(in, (__uint32_t __user *)arg))
b474c7ae 1777 return -EFAULT;
df26cfe8 1778
2451337d 1779 return xfs_fs_goingdown(mp, in);
df26cfe8
LM
1780 }
1781
1782 case XFS_IOC_ERROR_INJECTION: {
1783 xfs_error_injection_t in;
1784
1785 if (!capable(CAP_SYS_ADMIN))
1786 return -EPERM;
1787
1788 if (copy_from_user(&in, arg, sizeof(in)))
b474c7ae 1789 return -EFAULT;
df26cfe8 1790
2451337d 1791 return xfs_errortag_add(in.errtag, mp);
df26cfe8
LM
1792 }
1793
1794 case XFS_IOC_ERROR_CLEARALL:
1795 if (!capable(CAP_SYS_ADMIN))
1796 return -EPERM;
1797
2451337d 1798 return xfs_errortag_clearall(mp, 1);
df26cfe8 1799
8ca149de 1800 case XFS_IOC_FREE_EOFBLOCKS: {
b9fe5052
DE
1801 struct xfs_fs_eofblocks eofb;
1802 struct xfs_eofblocks keofb;
8ca149de 1803
8c567a7f
DE
1804 if (!capable(CAP_SYS_ADMIN))
1805 return -EPERM;
1806
1807 if (mp->m_flags & XFS_MOUNT_RDONLY)
b474c7ae 1808 return -EROFS;
8c567a7f 1809
8ca149de 1810 if (copy_from_user(&eofb, arg, sizeof(eofb)))
b474c7ae 1811 return -EFAULT;
8ca149de 1812
b9fe5052
DE
1813 error = xfs_fs_eofblocks_from_user(&eofb, &keofb);
1814 if (error)
2451337d 1815 return error;
8ca149de 1816
2451337d 1817 return xfs_icache_free_eofblocks(mp, &keofb);
8ca149de
BF
1818 }
1819
df26cfe8
LM
1820 default:
1821 return -ENOTTY;
1822 }
1823}
This page took 1.047104 seconds and 5 git commands to generate.