2 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
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
7 * published by the Free Software Foundation.
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.
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
20 #include "xfs_format.h"
22 #include "xfs_trans.h"
25 #include "xfs_alloc.h"
26 #include "xfs_mount.h"
27 #include "xfs_bmap_btree.h"
28 #include "xfs_dinode.h"
29 #include "xfs_inode.h"
30 #include "xfs_ioctl.h"
31 #include "xfs_rtalloc.h"
32 #include "xfs_itable.h"
33 #include "xfs_error.h"
36 #include "xfs_bmap_util.h"
37 #include "xfs_buf_item.h"
38 #include "xfs_fsops.h"
39 #include "xfs_discard.h"
40 #include "xfs_quota.h"
41 #include "xfs_inode_item.h"
42 #include "xfs_export.h"
43 #include "xfs_trace.h"
44 #include "xfs_icache.h"
45 #include "xfs_symlink.h"
47 #include <linux/capability.h>
48 #include <linux/dcache.h>
49 #include <linux/mount.h>
50 #include <linux/namei.h>
51 #include <linux/pagemap.h>
52 #include <linux/slab.h>
53 #include <linux/exportfs.h>
56 * xfs_find_handle maps from userspace xfs_fsop_handlereq structure to
57 * a file or fs handle.
59 * XFS_IOC_PATH_TO_FSHANDLE
60 * returns fs handle for a mount point or path within that mount point
61 * XFS_IOC_FD_TO_HANDLE
62 * returns full handle for a FD opened in user space
63 * XFS_IOC_PATH_TO_HANDLE
64 * returns full handle for a path
69 xfs_fsop_handlereq_t
*hreq
)
79 if (cmd
== XFS_IOC_FD_TO_HANDLE
) {
83 inode
= file_inode(f
.file
);
85 error
= user_lpath((const char __user
*)hreq
->path
, &path
);
88 inode
= path
.dentry
->d_inode
;
93 * We can only generate handles for inodes residing on a XFS filesystem,
94 * and only for regular files, directories or symbolic links.
97 if (inode
->i_sb
->s_magic
!= XFS_SB_MAGIC
)
101 if (!S_ISREG(inode
->i_mode
) &&
102 !S_ISDIR(inode
->i_mode
) &&
103 !S_ISLNK(inode
->i_mode
))
107 memcpy(&handle
.ha_fsid
, ip
->i_mount
->m_fixedfsid
, sizeof(xfs_fsid_t
));
109 if (cmd
== XFS_IOC_PATH_TO_FSHANDLE
) {
111 * This handle only contains an fsid, zero the rest.
113 memset(&handle
.ha_fid
, 0, sizeof(handle
.ha_fid
));
114 hsize
= sizeof(xfs_fsid_t
);
118 lock_mode
= xfs_ilock_map_shared(ip
);
119 handle
.ha_fid
.fid_len
= sizeof(xfs_fid_t
) -
120 sizeof(handle
.ha_fid
.fid_len
);
121 handle
.ha_fid
.fid_pad
= 0;
122 handle
.ha_fid
.fid_gen
= ip
->i_d
.di_gen
;
123 handle
.ha_fid
.fid_ino
= ip
->i_ino
;
124 xfs_iunlock_map_shared(ip
, lock_mode
);
126 hsize
= XFS_HSIZE(handle
);
130 if (copy_to_user(hreq
->ohandle
, &handle
, hsize
) ||
131 copy_to_user(hreq
->ohandlen
, &hsize
, sizeof(__s32
)))
137 if (cmd
== XFS_IOC_FD_TO_HANDLE
)
145 * No need to do permission checks on the various pathname components
146 * as the handle operations are privileged.
149 xfs_handle_acceptable(
151 struct dentry
*dentry
)
157 * Convert userspace handle data into a dentry.
160 xfs_handle_to_dentry(
161 struct file
*parfilp
,
162 void __user
*uhandle
,
166 struct xfs_fid64 fid
;
169 * Only allow handle opens under a directory.
171 if (!S_ISDIR(file_inode(parfilp
)->i_mode
))
172 return ERR_PTR(-ENOTDIR
);
174 if (hlen
!= sizeof(xfs_handle_t
))
175 return ERR_PTR(-EINVAL
);
176 if (copy_from_user(&handle
, uhandle
, hlen
))
177 return ERR_PTR(-EFAULT
);
178 if (handle
.ha_fid
.fid_len
!=
179 sizeof(handle
.ha_fid
) - sizeof(handle
.ha_fid
.fid_len
))
180 return ERR_PTR(-EINVAL
);
182 memset(&fid
, 0, sizeof(struct fid
));
183 fid
.ino
= handle
.ha_fid
.fid_ino
;
184 fid
.gen
= handle
.ha_fid
.fid_gen
;
186 return exportfs_decode_fh(parfilp
->f_path
.mnt
, (struct fid
*)&fid
, 3,
187 FILEID_INO32_GEN
| XFS_FILEID_TYPE_64FLAG
,
188 xfs_handle_acceptable
, NULL
);
191 STATIC
struct dentry
*
192 xfs_handlereq_to_dentry(
193 struct file
*parfilp
,
194 xfs_fsop_handlereq_t
*hreq
)
196 return xfs_handle_to_dentry(parfilp
, hreq
->ihandle
, hreq
->ihandlen
);
201 struct file
*parfilp
,
202 xfs_fsop_handlereq_t
*hreq
)
204 const struct cred
*cred
= current_cred();
210 struct dentry
*dentry
;
214 if (!capable(CAP_SYS_ADMIN
))
215 return -XFS_ERROR(EPERM
);
217 dentry
= xfs_handlereq_to_dentry(parfilp
, hreq
);
219 return PTR_ERR(dentry
);
220 inode
= dentry
->d_inode
;
222 /* Restrict xfs_open_by_handle to directories & regular files. */
223 if (!(S_ISREG(inode
->i_mode
) || S_ISDIR(inode
->i_mode
))) {
224 error
= -XFS_ERROR(EPERM
);
228 #if BITS_PER_LONG != 32
229 hreq
->oflags
|= O_LARGEFILE
;
232 permflag
= hreq
->oflags
;
233 fmode
= OPEN_FMODE(permflag
);
234 if ((!(permflag
& O_APPEND
) || (permflag
& O_TRUNC
)) &&
235 (fmode
& FMODE_WRITE
) && IS_APPEND(inode
)) {
236 error
= -XFS_ERROR(EPERM
);
240 if ((fmode
& FMODE_WRITE
) && IS_IMMUTABLE(inode
)) {
241 error
= -XFS_ERROR(EACCES
);
245 /* Can't write directories. */
246 if (S_ISDIR(inode
->i_mode
) && (fmode
& FMODE_WRITE
)) {
247 error
= -XFS_ERROR(EISDIR
);
251 fd
= get_unused_fd_flags(0);
257 path
.mnt
= parfilp
->f_path
.mnt
;
258 path
.dentry
= dentry
;
259 filp
= dentry_open(&path
, hreq
->oflags
, cred
);
263 return PTR_ERR(filp
);
266 if (S_ISREG(inode
->i_mode
)) {
267 filp
->f_flags
|= O_NOATIME
;
268 filp
->f_mode
|= FMODE_NOCMTIME
;
271 fd_install(fd
, filp
);
280 * This is a copy from fs/namei.c:vfs_readlink(), except for removing it's
281 * unused first argument.
296 if (len
> (unsigned) buflen
)
298 if (copy_to_user(buffer
, link
, len
))
306 xfs_readlink_by_handle(
307 struct file
*parfilp
,
308 xfs_fsop_handlereq_t
*hreq
)
310 struct dentry
*dentry
;
315 if (!capable(CAP_SYS_ADMIN
))
316 return -XFS_ERROR(EPERM
);
318 dentry
= xfs_handlereq_to_dentry(parfilp
, hreq
);
320 return PTR_ERR(dentry
);
322 /* Restrict this handle operation to symlinks only. */
323 if (!S_ISLNK(dentry
->d_inode
->i_mode
)) {
324 error
= -XFS_ERROR(EINVAL
);
328 if (copy_from_user(&olen
, hreq
->ohandlen
, sizeof(__u32
))) {
329 error
= -XFS_ERROR(EFAULT
);
333 link
= kmalloc(MAXPATHLEN
+1, GFP_KERNEL
);
335 error
= -XFS_ERROR(ENOMEM
);
339 error
= -xfs_readlink(XFS_I(dentry
->d_inode
), link
);
342 error
= do_readlink(hreq
->ohandle
, olen
, link
);
359 xfs_mount_t
*mp
= ip
->i_mount
;
363 if (!capable(CAP_SYS_ADMIN
))
364 return XFS_ERROR(EPERM
);
366 if (XFS_FORCED_SHUTDOWN(mp
))
367 return XFS_ERROR(EIO
);
369 tp
= xfs_trans_alloc(mp
, XFS_TRANS_SET_DMATTRS
);
370 error
= xfs_trans_reserve(tp
, &M_RES(mp
)->tr_ichange
, 0, 0);
372 xfs_trans_cancel(tp
, 0);
375 xfs_ilock(ip
, XFS_ILOCK_EXCL
);
376 xfs_trans_ijoin(tp
, ip
, XFS_ILOCK_EXCL
);
378 ip
->i_d
.di_dmevmask
= evmask
;
379 ip
->i_d
.di_dmstate
= state
;
381 xfs_trans_log_inode(tp
, ip
, XFS_ILOG_CORE
);
382 error
= xfs_trans_commit(tp
, 0);
388 xfs_fssetdm_by_handle(
389 struct file
*parfilp
,
393 struct fsdmidata fsd
;
394 xfs_fsop_setdm_handlereq_t dmhreq
;
395 struct dentry
*dentry
;
397 if (!capable(CAP_MKNOD
))
398 return -XFS_ERROR(EPERM
);
399 if (copy_from_user(&dmhreq
, arg
, sizeof(xfs_fsop_setdm_handlereq_t
)))
400 return -XFS_ERROR(EFAULT
);
402 error
= mnt_want_write_file(parfilp
);
406 dentry
= xfs_handlereq_to_dentry(parfilp
, &dmhreq
.hreq
);
407 if (IS_ERR(dentry
)) {
408 mnt_drop_write_file(parfilp
);
409 return PTR_ERR(dentry
);
412 if (IS_IMMUTABLE(dentry
->d_inode
) || IS_APPEND(dentry
->d_inode
)) {
413 error
= -XFS_ERROR(EPERM
);
417 if (copy_from_user(&fsd
, dmhreq
.data
, sizeof(fsd
))) {
418 error
= -XFS_ERROR(EFAULT
);
422 error
= -xfs_set_dmattrs(XFS_I(dentry
->d_inode
), fsd
.fsd_dmevmask
,
426 mnt_drop_write_file(parfilp
);
432 xfs_attrlist_by_handle(
433 struct file
*parfilp
,
437 attrlist_cursor_kern_t
*cursor
;
438 xfs_fsop_attrlist_handlereq_t al_hreq
;
439 struct dentry
*dentry
;
442 if (!capable(CAP_SYS_ADMIN
))
443 return -XFS_ERROR(EPERM
);
444 if (copy_from_user(&al_hreq
, arg
, sizeof(xfs_fsop_attrlist_handlereq_t
)))
445 return -XFS_ERROR(EFAULT
);
446 if (al_hreq
.buflen
< sizeof(struct attrlist
) ||
447 al_hreq
.buflen
> XATTR_LIST_MAX
)
448 return -XFS_ERROR(EINVAL
);
451 * Reject flags, only allow namespaces.
453 if (al_hreq
.flags
& ~(ATTR_ROOT
| ATTR_SECURE
))
454 return -XFS_ERROR(EINVAL
);
456 dentry
= xfs_handlereq_to_dentry(parfilp
, &al_hreq
.hreq
);
458 return PTR_ERR(dentry
);
460 kbuf
= kmem_zalloc_large(al_hreq
.buflen
, KM_SLEEP
);
464 cursor
= (attrlist_cursor_kern_t
*)&al_hreq
.pos
;
465 error
= -xfs_attr_list(XFS_I(dentry
->d_inode
), kbuf
, al_hreq
.buflen
,
466 al_hreq
.flags
, cursor
);
470 if (copy_to_user(al_hreq
.buffer
, kbuf
, al_hreq
.buflen
))
481 xfs_attrmulti_attr_get(
484 unsigned char __user
*ubuf
,
491 if (*len
> XATTR_SIZE_MAX
)
493 kbuf
= kmem_zalloc_large(*len
, KM_SLEEP
);
497 error
= xfs_attr_get(XFS_I(inode
), name
, kbuf
, (int *)len
, flags
);
501 if (copy_to_user(ubuf
, kbuf
, *len
))
510 xfs_attrmulti_attr_set(
513 const unsigned char __user
*ubuf
,
520 if (IS_IMMUTABLE(inode
) || IS_APPEND(inode
))
522 if (len
> XATTR_SIZE_MAX
)
525 kbuf
= memdup_user(ubuf
, len
);
527 return PTR_ERR(kbuf
);
529 error
= xfs_attr_set(XFS_I(inode
), name
, kbuf
, len
, flags
);
535 xfs_attrmulti_attr_remove(
540 if (IS_IMMUTABLE(inode
) || IS_APPEND(inode
))
542 return xfs_attr_remove(XFS_I(inode
), name
, flags
);
546 xfs_attrmulti_by_handle(
547 struct file
*parfilp
,
551 xfs_attr_multiop_t
*ops
;
552 xfs_fsop_attrmulti_handlereq_t am_hreq
;
553 struct dentry
*dentry
;
554 unsigned int i
, size
;
555 unsigned char *attr_name
;
557 if (!capable(CAP_SYS_ADMIN
))
558 return -XFS_ERROR(EPERM
);
559 if (copy_from_user(&am_hreq
, arg
, sizeof(xfs_fsop_attrmulti_handlereq_t
)))
560 return -XFS_ERROR(EFAULT
);
563 if (am_hreq
.opcount
>= INT_MAX
/ sizeof(xfs_attr_multiop_t
))
566 dentry
= xfs_handlereq_to_dentry(parfilp
, &am_hreq
.hreq
);
568 return PTR_ERR(dentry
);
571 size
= am_hreq
.opcount
* sizeof(xfs_attr_multiop_t
);
572 if (!size
|| size
> 16 * PAGE_SIZE
)
575 ops
= memdup_user(am_hreq
.ops
, size
);
577 error
= PTR_ERR(ops
);
581 attr_name
= kmalloc(MAXNAMELEN
, GFP_KERNEL
);
586 for (i
= 0; i
< am_hreq
.opcount
; i
++) {
587 ops
[i
].am_error
= strncpy_from_user((char *)attr_name
,
588 ops
[i
].am_attrname
, MAXNAMELEN
);
589 if (ops
[i
].am_error
== 0 || ops
[i
].am_error
== MAXNAMELEN
)
591 if (ops
[i
].am_error
< 0)
594 switch (ops
[i
].am_opcode
) {
596 ops
[i
].am_error
= xfs_attrmulti_attr_get(
597 dentry
->d_inode
, attr_name
,
598 ops
[i
].am_attrvalue
, &ops
[i
].am_length
,
602 ops
[i
].am_error
= mnt_want_write_file(parfilp
);
605 ops
[i
].am_error
= xfs_attrmulti_attr_set(
606 dentry
->d_inode
, attr_name
,
607 ops
[i
].am_attrvalue
, ops
[i
].am_length
,
609 mnt_drop_write_file(parfilp
);
612 ops
[i
].am_error
= mnt_want_write_file(parfilp
);
615 ops
[i
].am_error
= xfs_attrmulti_attr_remove(
616 dentry
->d_inode
, attr_name
,
618 mnt_drop_write_file(parfilp
);
621 ops
[i
].am_error
= EINVAL
;
625 if (copy_to_user(am_hreq
.ops
, ops
, size
))
626 error
= XFS_ERROR(EFAULT
);
638 struct xfs_inode
*ip
,
649 * Only allow the sys admin to reserve space unless
650 * unwritten extents are enabled.
652 if (!xfs_sb_version_hasextflgbit(&ip
->i_mount
->m_sb
) &&
653 !capable(CAP_SYS_ADMIN
))
654 return -XFS_ERROR(EPERM
);
656 if (inode
->i_flags
& (S_IMMUTABLE
|S_APPEND
))
657 return -XFS_ERROR(EPERM
);
659 if (!(filp
->f_mode
& FMODE_WRITE
))
660 return -XFS_ERROR(EBADF
);
662 if (!S_ISREG(inode
->i_mode
))
663 return -XFS_ERROR(EINVAL
);
665 if (filp
->f_flags
& (O_NDELAY
|O_NONBLOCK
))
666 attr_flags
|= XFS_ATTR_NONBLOCK
;
668 if (filp
->f_flags
& O_DSYNC
)
669 attr_flags
|= XFS_ATTR_SYNC
;
671 if (ioflags
& IO_INVIS
)
672 attr_flags
|= XFS_ATTR_DMI
;
674 error
= mnt_want_write_file(filp
);
677 error
= xfs_change_file_space(ip
, cmd
, bf
, filp
->f_pos
, attr_flags
);
678 mnt_drop_write_file(filp
);
688 xfs_fsop_bulkreq_t bulkreq
;
689 int count
; /* # of records returned */
690 xfs_ino_t inlast
; /* last inode number */
694 /* done = 1 if there are more stats to get and if bulkstat */
695 /* should be called again (unused here, but used in dmapi) */
697 if (!capable(CAP_SYS_ADMIN
))
700 if (XFS_FORCED_SHUTDOWN(mp
))
701 return -XFS_ERROR(EIO
);
703 if (copy_from_user(&bulkreq
, arg
, sizeof(xfs_fsop_bulkreq_t
)))
704 return -XFS_ERROR(EFAULT
);
706 if (copy_from_user(&inlast
, bulkreq
.lastip
, sizeof(__s64
)))
707 return -XFS_ERROR(EFAULT
);
709 if ((count
= bulkreq
.icount
) <= 0)
710 return -XFS_ERROR(EINVAL
);
712 if (bulkreq
.ubuffer
== NULL
)
713 return -XFS_ERROR(EINVAL
);
715 if (cmd
== XFS_IOC_FSINUMBERS
)
716 error
= xfs_inumbers(mp
, &inlast
, &count
,
717 bulkreq
.ubuffer
, xfs_inumbers_fmt
);
718 else if (cmd
== XFS_IOC_FSBULKSTAT_SINGLE
)
719 error
= xfs_bulkstat_single(mp
, &inlast
,
720 bulkreq
.ubuffer
, &done
);
721 else /* XFS_IOC_FSBULKSTAT */
722 error
= xfs_bulkstat(mp
, &inlast
, &count
, xfs_bulkstat_one
,
723 sizeof(xfs_bstat_t
), bulkreq
.ubuffer
,
729 if (bulkreq
.ocount
!= NULL
) {
730 if (copy_to_user(bulkreq
.lastip
, &inlast
,
732 return -XFS_ERROR(EFAULT
);
734 if (copy_to_user(bulkreq
.ocount
, &count
, sizeof(count
)))
735 return -XFS_ERROR(EFAULT
);
742 xfs_ioc_fsgeometry_v1(
746 xfs_fsop_geom_t fsgeo
;
749 error
= xfs_fs_geometry(mp
, &fsgeo
, 3);
754 * Caller should have passed an argument of type
755 * xfs_fsop_geom_v1_t. This is a proper subset of the
756 * xfs_fsop_geom_t that xfs_fs_geometry() fills in.
758 if (copy_to_user(arg
, &fsgeo
, sizeof(xfs_fsop_geom_v1_t
)))
759 return -XFS_ERROR(EFAULT
);
768 xfs_fsop_geom_t fsgeo
;
771 error
= xfs_fs_geometry(mp
, &fsgeo
, 4);
775 if (copy_to_user(arg
, &fsgeo
, sizeof(fsgeo
)))
776 return -XFS_ERROR(EFAULT
);
781 * Linux extended inode flags interface.
785 xfs_merge_ioc_xflags(
789 unsigned int xflags
= start
;
791 if (flags
& FS_IMMUTABLE_FL
)
792 xflags
|= XFS_XFLAG_IMMUTABLE
;
794 xflags
&= ~XFS_XFLAG_IMMUTABLE
;
795 if (flags
& FS_APPEND_FL
)
796 xflags
|= XFS_XFLAG_APPEND
;
798 xflags
&= ~XFS_XFLAG_APPEND
;
799 if (flags
& FS_SYNC_FL
)
800 xflags
|= XFS_XFLAG_SYNC
;
802 xflags
&= ~XFS_XFLAG_SYNC
;
803 if (flags
& FS_NOATIME_FL
)
804 xflags
|= XFS_XFLAG_NOATIME
;
806 xflags
&= ~XFS_XFLAG_NOATIME
;
807 if (flags
& FS_NODUMP_FL
)
808 xflags
|= XFS_XFLAG_NODUMP
;
810 xflags
&= ~XFS_XFLAG_NODUMP
;
819 unsigned int flags
= 0;
821 if (di_flags
& XFS_DIFLAG_IMMUTABLE
)
822 flags
|= FS_IMMUTABLE_FL
;
823 if (di_flags
& XFS_DIFLAG_APPEND
)
824 flags
|= FS_APPEND_FL
;
825 if (di_flags
& XFS_DIFLAG_SYNC
)
827 if (di_flags
& XFS_DIFLAG_NOATIME
)
828 flags
|= FS_NOATIME_FL
;
829 if (di_flags
& XFS_DIFLAG_NODUMP
)
830 flags
|= FS_NODUMP_FL
;
842 memset(&fa
, 0, sizeof(struct fsxattr
));
844 xfs_ilock(ip
, XFS_ILOCK_SHARED
);
845 fa
.fsx_xflags
= xfs_ip2xflags(ip
);
846 fa
.fsx_extsize
= ip
->i_d
.di_extsize
<< ip
->i_mount
->m_sb
.sb_blocklog
;
847 fa
.fsx_projid
= xfs_get_projid(ip
);
851 if (ip
->i_afp
->if_flags
& XFS_IFEXTENTS
)
852 fa
.fsx_nextents
= ip
->i_afp
->if_bytes
/
853 sizeof(xfs_bmbt_rec_t
);
855 fa
.fsx_nextents
= ip
->i_d
.di_anextents
;
859 if (ip
->i_df
.if_flags
& XFS_IFEXTENTS
)
860 fa
.fsx_nextents
= ip
->i_df
.if_bytes
/
861 sizeof(xfs_bmbt_rec_t
);
863 fa
.fsx_nextents
= ip
->i_d
.di_nextents
;
865 xfs_iunlock(ip
, XFS_ILOCK_SHARED
);
867 if (copy_to_user(arg
, &fa
, sizeof(fa
)))
874 struct xfs_inode
*ip
,
877 unsigned int di_flags
;
879 /* can't set PREALLOC this way, just preserve it */
880 di_flags
= (ip
->i_d
.di_flags
& XFS_DIFLAG_PREALLOC
);
881 if (xflags
& XFS_XFLAG_IMMUTABLE
)
882 di_flags
|= XFS_DIFLAG_IMMUTABLE
;
883 if (xflags
& XFS_XFLAG_APPEND
)
884 di_flags
|= XFS_DIFLAG_APPEND
;
885 if (xflags
& XFS_XFLAG_SYNC
)
886 di_flags
|= XFS_DIFLAG_SYNC
;
887 if (xflags
& XFS_XFLAG_NOATIME
)
888 di_flags
|= XFS_DIFLAG_NOATIME
;
889 if (xflags
& XFS_XFLAG_NODUMP
)
890 di_flags
|= XFS_DIFLAG_NODUMP
;
891 if (xflags
& XFS_XFLAG_PROJINHERIT
)
892 di_flags
|= XFS_DIFLAG_PROJINHERIT
;
893 if (xflags
& XFS_XFLAG_NODEFRAG
)
894 di_flags
|= XFS_DIFLAG_NODEFRAG
;
895 if (xflags
& XFS_XFLAG_FILESTREAM
)
896 di_flags
|= XFS_DIFLAG_FILESTREAM
;
897 if (S_ISDIR(ip
->i_d
.di_mode
)) {
898 if (xflags
& XFS_XFLAG_RTINHERIT
)
899 di_flags
|= XFS_DIFLAG_RTINHERIT
;
900 if (xflags
& XFS_XFLAG_NOSYMLINKS
)
901 di_flags
|= XFS_DIFLAG_NOSYMLINKS
;
902 if (xflags
& XFS_XFLAG_EXTSZINHERIT
)
903 di_flags
|= XFS_DIFLAG_EXTSZINHERIT
;
904 } else if (S_ISREG(ip
->i_d
.di_mode
)) {
905 if (xflags
& XFS_XFLAG_REALTIME
)
906 di_flags
|= XFS_DIFLAG_REALTIME
;
907 if (xflags
& XFS_XFLAG_EXTSIZE
)
908 di_flags
|= XFS_DIFLAG_EXTSIZE
;
911 ip
->i_d
.di_flags
= di_flags
;
915 xfs_diflags_to_linux(
916 struct xfs_inode
*ip
)
918 struct inode
*inode
= VFS_I(ip
);
919 unsigned int xflags
= xfs_ip2xflags(ip
);
921 if (xflags
& XFS_XFLAG_IMMUTABLE
)
922 inode
->i_flags
|= S_IMMUTABLE
;
924 inode
->i_flags
&= ~S_IMMUTABLE
;
925 if (xflags
& XFS_XFLAG_APPEND
)
926 inode
->i_flags
|= S_APPEND
;
928 inode
->i_flags
&= ~S_APPEND
;
929 if (xflags
& XFS_XFLAG_SYNC
)
930 inode
->i_flags
|= S_SYNC
;
932 inode
->i_flags
&= ~S_SYNC
;
933 if (xflags
& XFS_XFLAG_NOATIME
)
934 inode
->i_flags
|= S_NOATIME
;
936 inode
->i_flags
&= ~S_NOATIME
;
940 #define FSX_EXTSIZE 2
942 #define FSX_NONBLOCK 8
950 struct xfs_mount
*mp
= ip
->i_mount
;
951 struct xfs_trans
*tp
;
952 unsigned int lock_flags
= 0;
953 struct xfs_dquot
*udqp
= NULL
;
954 struct xfs_dquot
*pdqp
= NULL
;
955 struct xfs_dquot
*olddquot
= NULL
;
958 trace_xfs_ioctl_setattr(ip
);
960 if (mp
->m_flags
& XFS_MOUNT_RDONLY
)
961 return XFS_ERROR(EROFS
);
962 if (XFS_FORCED_SHUTDOWN(mp
))
963 return XFS_ERROR(EIO
);
966 * Disallow 32bit project ids when projid32bit feature is not enabled.
968 if ((mask
& FSX_PROJID
) && (fa
->fsx_projid
> (__uint16_t
)-1) &&
969 !xfs_sb_version_hasprojid32bit(&ip
->i_mount
->m_sb
))
970 return XFS_ERROR(EINVAL
);
973 * If disk quotas is on, we make sure that the dquots do exist on disk,
974 * before we start any other transactions. Trying to do this later
975 * is messy. We don't care to take a readlock to look at the ids
976 * in inode here, because we can't hold it across the trans_reserve.
977 * If the IDs do change before we take the ilock, we're covered
978 * because the i_*dquot fields will get updated anyway.
980 if (XFS_IS_QUOTA_ON(mp
) && (mask
& FSX_PROJID
)) {
981 code
= xfs_qm_vop_dqalloc(ip
, ip
->i_d
.di_uid
,
982 ip
->i_d
.di_gid
, fa
->fsx_projid
,
983 XFS_QMOPT_PQUOTA
, &udqp
, NULL
, &pdqp
);
989 * For the other attributes, we acquire the inode lock and
990 * first do an error checking pass.
992 tp
= xfs_trans_alloc(mp
, XFS_TRANS_SETATTR_NOT_SIZE
);
993 code
= xfs_trans_reserve(tp
, &M_RES(mp
)->tr_ichange
, 0, 0);
997 lock_flags
= XFS_ILOCK_EXCL
;
998 xfs_ilock(ip
, lock_flags
);
1001 * CAP_FOWNER overrides the following restrictions:
1003 * The user ID of the calling process must be equal
1004 * to the file owner ID, except in cases where the
1005 * CAP_FSETID capability is applicable.
1007 if (!inode_owner_or_capable(VFS_I(ip
))) {
1008 code
= XFS_ERROR(EPERM
);
1013 * Do a quota reservation only if projid is actually going to change.
1014 * Only allow changing of projid from init_user_ns since it is a
1015 * non user namespace aware identifier.
1017 if (mask
& FSX_PROJID
) {
1018 if (current_user_ns() != &init_user_ns
) {
1019 code
= XFS_ERROR(EINVAL
);
1023 if (XFS_IS_QUOTA_RUNNING(mp
) &&
1024 XFS_IS_PQUOTA_ON(mp
) &&
1025 xfs_get_projid(ip
) != fa
->fsx_projid
) {
1027 code
= xfs_qm_vop_chown_reserve(tp
, ip
, udqp
, NULL
,
1028 pdqp
, capable(CAP_FOWNER
) ?
1029 XFS_QMOPT_FORCE_RES
: 0);
1030 if (code
) /* out of quota */
1035 if (mask
& FSX_EXTSIZE
) {
1037 * Can't change extent size if any extents are allocated.
1039 if (ip
->i_d
.di_nextents
&&
1040 ((ip
->i_d
.di_extsize
<< mp
->m_sb
.sb_blocklog
) !=
1042 code
= XFS_ERROR(EINVAL
); /* EFBIG? */
1047 * Extent size must be a multiple of the appropriate block
1048 * size, if set at all. It must also be smaller than the
1049 * maximum extent size supported by the filesystem.
1051 * Also, for non-realtime files, limit the extent size hint to
1052 * half the size of the AGs in the filesystem so alignment
1053 * doesn't result in extents larger than an AG.
1055 if (fa
->fsx_extsize
!= 0) {
1057 xfs_fsblock_t extsize_fsb
;
1059 extsize_fsb
= XFS_B_TO_FSB(mp
, fa
->fsx_extsize
);
1060 if (extsize_fsb
> MAXEXTLEN
) {
1061 code
= XFS_ERROR(EINVAL
);
1065 if (XFS_IS_REALTIME_INODE(ip
) ||
1066 ((mask
& FSX_XFLAGS
) &&
1067 (fa
->fsx_xflags
& XFS_XFLAG_REALTIME
))) {
1068 size
= mp
->m_sb
.sb_rextsize
<<
1069 mp
->m_sb
.sb_blocklog
;
1071 size
= mp
->m_sb
.sb_blocksize
;
1072 if (extsize_fsb
> mp
->m_sb
.sb_agblocks
/ 2) {
1073 code
= XFS_ERROR(EINVAL
);
1078 if (fa
->fsx_extsize
% size
) {
1079 code
= XFS_ERROR(EINVAL
);
1086 if (mask
& FSX_XFLAGS
) {
1088 * Can't change realtime flag if any extents are allocated.
1090 if ((ip
->i_d
.di_nextents
|| ip
->i_delayed_blks
) &&
1091 (XFS_IS_REALTIME_INODE(ip
)) !=
1092 (fa
->fsx_xflags
& XFS_XFLAG_REALTIME
)) {
1093 code
= XFS_ERROR(EINVAL
); /* EFBIG? */
1098 * If realtime flag is set then must have realtime data.
1100 if ((fa
->fsx_xflags
& XFS_XFLAG_REALTIME
)) {
1101 if ((mp
->m_sb
.sb_rblocks
== 0) ||
1102 (mp
->m_sb
.sb_rextsize
== 0) ||
1103 (ip
->i_d
.di_extsize
% mp
->m_sb
.sb_rextsize
)) {
1104 code
= XFS_ERROR(EINVAL
);
1110 * Can't modify an immutable/append-only file unless
1111 * we have appropriate permission.
1113 if ((ip
->i_d
.di_flags
&
1114 (XFS_DIFLAG_IMMUTABLE
|XFS_DIFLAG_APPEND
) ||
1116 (XFS_XFLAG_IMMUTABLE
| XFS_XFLAG_APPEND
))) &&
1117 !capable(CAP_LINUX_IMMUTABLE
)) {
1118 code
= XFS_ERROR(EPERM
);
1123 xfs_trans_ijoin(tp
, ip
, 0);
1126 * Change file ownership. Must be the owner or privileged.
1128 if (mask
& FSX_PROJID
) {
1130 * CAP_FSETID overrides the following restrictions:
1132 * The set-user-ID and set-group-ID bits of a file will be
1133 * cleared upon successful return from chown()
1135 if ((ip
->i_d
.di_mode
& (S_ISUID
|S_ISGID
)) &&
1136 !capable_wrt_inode_uidgid(VFS_I(ip
), CAP_FSETID
))
1137 ip
->i_d
.di_mode
&= ~(S_ISUID
|S_ISGID
);
1140 * Change the ownerships and register quota modifications
1141 * in the transaction.
1143 if (xfs_get_projid(ip
) != fa
->fsx_projid
) {
1144 if (XFS_IS_QUOTA_RUNNING(mp
) && XFS_IS_PQUOTA_ON(mp
)) {
1145 olddquot
= xfs_qm_vop_chown(tp
, ip
,
1146 &ip
->i_pdquot
, pdqp
);
1148 xfs_set_projid(ip
, fa
->fsx_projid
);
1151 * We may have to rev the inode as well as
1152 * the superblock version number since projids didn't
1153 * exist before DINODE_VERSION_2 and SB_VERSION_NLINK.
1155 if (ip
->i_d
.di_version
== 1)
1156 xfs_bump_ino_vers2(tp
, ip
);
1161 if (mask
& FSX_EXTSIZE
)
1162 ip
->i_d
.di_extsize
= fa
->fsx_extsize
>> mp
->m_sb
.sb_blocklog
;
1163 if (mask
& FSX_XFLAGS
) {
1164 xfs_set_diflags(ip
, fa
->fsx_xflags
);
1165 xfs_diflags_to_linux(ip
);
1168 xfs_trans_ichgtime(tp
, ip
, XFS_ICHGTIME_CHG
);
1169 xfs_trans_log_inode(tp
, ip
, XFS_ILOG_CORE
);
1171 XFS_STATS_INC(xs_ig_attrchg
);
1174 * If this is a synchronous mount, make sure that the
1175 * transaction goes to disk before returning to the user.
1176 * This is slightly sub-optimal in that truncates require
1177 * two sync transactions instead of one for wsync filesystems.
1178 * One for the truncate and one for the timestamps since we
1179 * don't want to change the timestamps unless we're sure the
1180 * truncate worked. Truncates are less than 1% of the laddis
1181 * mix so this probably isn't worth the trouble to optimize.
1183 if (mp
->m_flags
& XFS_MOUNT_WSYNC
)
1184 xfs_trans_set_sync(tp
);
1185 code
= xfs_trans_commit(tp
, 0);
1186 xfs_iunlock(ip
, lock_flags
);
1189 * Release any dquot(s) the inode had kept before chown.
1191 xfs_qm_dqrele(olddquot
);
1192 xfs_qm_dqrele(udqp
);
1193 xfs_qm_dqrele(pdqp
);
1198 xfs_qm_dqrele(udqp
);
1199 xfs_qm_dqrele(pdqp
);
1200 xfs_trans_cancel(tp
, 0);
1202 xfs_iunlock(ip
, lock_flags
);
1216 if (copy_from_user(&fa
, arg
, sizeof(fa
)))
1219 mask
= FSX_XFLAGS
| FSX_EXTSIZE
| FSX_PROJID
;
1220 if (filp
->f_flags
& (O_NDELAY
|O_NONBLOCK
))
1221 mask
|= FSX_NONBLOCK
;
1223 error
= mnt_want_write_file(filp
);
1226 error
= xfs_ioctl_setattr(ip
, &fa
, mask
);
1227 mnt_drop_write_file(filp
);
1238 flags
= xfs_di2lxflags(ip
->i_d
.di_flags
);
1239 if (copy_to_user(arg
, &flags
, sizeof(flags
)))
1255 if (copy_from_user(&flags
, arg
, sizeof(flags
)))
1258 if (flags
& ~(FS_IMMUTABLE_FL
| FS_APPEND_FL
| \
1259 FS_NOATIME_FL
| FS_NODUMP_FL
| \
1264 if (filp
->f_flags
& (O_NDELAY
|O_NONBLOCK
))
1265 mask
|= FSX_NONBLOCK
;
1266 fa
.fsx_xflags
= xfs_merge_ioc_xflags(flags
, xfs_ip2xflags(ip
));
1268 error
= mnt_want_write_file(filp
);
1271 error
= xfs_ioctl_setattr(ip
, &fa
, mask
);
1272 mnt_drop_write_file(filp
);
1277 xfs_getbmap_format(void **ap
, struct getbmapx
*bmv
, int *full
)
1279 struct getbmap __user
*base
= *ap
;
1281 /* copy only getbmap portion (not getbmapx) */
1282 if (copy_to_user(base
, bmv
, sizeof(struct getbmap
)))
1283 return XFS_ERROR(EFAULT
);
1285 *ap
+= sizeof(struct getbmap
);
1291 struct xfs_inode
*ip
,
1296 struct getbmapx bmx
;
1299 if (copy_from_user(&bmx
, arg
, sizeof(struct getbmapx
)))
1300 return -XFS_ERROR(EFAULT
);
1302 if (bmx
.bmv_count
< 2)
1303 return -XFS_ERROR(EINVAL
);
1305 bmx
.bmv_iflags
= (cmd
== XFS_IOC_GETBMAPA
? BMV_IF_ATTRFORK
: 0);
1306 if (ioflags
& IO_INVIS
)
1307 bmx
.bmv_iflags
|= BMV_IF_NO_DMAPI_READ
;
1309 error
= xfs_getbmap(ip
, &bmx
, xfs_getbmap_format
,
1310 (struct getbmap
*)arg
+1);
1314 /* copy back header - only size of getbmap */
1315 if (copy_to_user(arg
, &bmx
, sizeof(struct getbmap
)))
1316 return -XFS_ERROR(EFAULT
);
1321 xfs_getbmapx_format(void **ap
, struct getbmapx
*bmv
, int *full
)
1323 struct getbmapx __user
*base
= *ap
;
1325 if (copy_to_user(base
, bmv
, sizeof(struct getbmapx
)))
1326 return XFS_ERROR(EFAULT
);
1328 *ap
+= sizeof(struct getbmapx
);
1334 struct xfs_inode
*ip
,
1337 struct getbmapx bmx
;
1340 if (copy_from_user(&bmx
, arg
, sizeof(bmx
)))
1341 return -XFS_ERROR(EFAULT
);
1343 if (bmx
.bmv_count
< 2)
1344 return -XFS_ERROR(EINVAL
);
1346 if (bmx
.bmv_iflags
& (~BMV_IF_VALID
))
1347 return -XFS_ERROR(EINVAL
);
1349 error
= xfs_getbmap(ip
, &bmx
, xfs_getbmapx_format
,
1350 (struct getbmapx
*)arg
+1);
1354 /* copy back header */
1355 if (copy_to_user(arg
, &bmx
, sizeof(struct getbmapx
)))
1356 return -XFS_ERROR(EFAULT
);
1365 xfs_inode_t
*ip
, *tip
;
1369 /* Pull information for the target fd */
1370 f
= fdget((int)sxp
->sx_fdtarget
);
1372 error
= XFS_ERROR(EINVAL
);
1376 if (!(f
.file
->f_mode
& FMODE_WRITE
) ||
1377 !(f
.file
->f_mode
& FMODE_READ
) ||
1378 (f
.file
->f_flags
& O_APPEND
)) {
1379 error
= XFS_ERROR(EBADF
);
1383 tmp
= fdget((int)sxp
->sx_fdtmp
);
1385 error
= XFS_ERROR(EINVAL
);
1389 if (!(tmp
.file
->f_mode
& FMODE_WRITE
) ||
1390 !(tmp
.file
->f_mode
& FMODE_READ
) ||
1391 (tmp
.file
->f_flags
& O_APPEND
)) {
1392 error
= XFS_ERROR(EBADF
);
1393 goto out_put_tmp_file
;
1396 if (IS_SWAPFILE(file_inode(f
.file
)) ||
1397 IS_SWAPFILE(file_inode(tmp
.file
))) {
1398 error
= XFS_ERROR(EINVAL
);
1399 goto out_put_tmp_file
;
1402 ip
= XFS_I(file_inode(f
.file
));
1403 tip
= XFS_I(file_inode(tmp
.file
));
1405 if (ip
->i_mount
!= tip
->i_mount
) {
1406 error
= XFS_ERROR(EINVAL
);
1407 goto out_put_tmp_file
;
1410 if (ip
->i_ino
== tip
->i_ino
) {
1411 error
= XFS_ERROR(EINVAL
);
1412 goto out_put_tmp_file
;
1415 if (XFS_FORCED_SHUTDOWN(ip
->i_mount
)) {
1416 error
= XFS_ERROR(EIO
);
1417 goto out_put_tmp_file
;
1420 error
= xfs_swap_extents(ip
, tip
, sxp
);
1431 * Note: some of the ioctl's return positive numbers as a
1432 * byte count indicating success, such as readlink_by_handle.
1433 * So we don't "sign flip" like most other routines. This means
1434 * true errors need to be returned as a negative value.
1442 struct inode
*inode
= file_inode(filp
);
1443 struct xfs_inode
*ip
= XFS_I(inode
);
1444 struct xfs_mount
*mp
= ip
->i_mount
;
1445 void __user
*arg
= (void __user
*)p
;
1449 if (filp
->f_mode
& FMODE_NOCMTIME
)
1450 ioflags
|= IO_INVIS
;
1452 trace_xfs_file_ioctl(ip
);
1456 return xfs_ioc_trim(mp
, arg
);
1457 case XFS_IOC_ALLOCSP
:
1458 case XFS_IOC_FREESP
:
1459 case XFS_IOC_RESVSP
:
1460 case XFS_IOC_UNRESVSP
:
1461 case XFS_IOC_ALLOCSP64
:
1462 case XFS_IOC_FREESP64
:
1463 case XFS_IOC_RESVSP64
:
1464 case XFS_IOC_UNRESVSP64
:
1465 case XFS_IOC_ZERO_RANGE
: {
1468 if (copy_from_user(&bf
, arg
, sizeof(bf
)))
1469 return -XFS_ERROR(EFAULT
);
1470 return xfs_ioc_space(ip
, inode
, filp
, ioflags
, cmd
, &bf
);
1472 case XFS_IOC_DIOINFO
: {
1474 xfs_buftarg_t
*target
=
1475 XFS_IS_REALTIME_INODE(ip
) ?
1476 mp
->m_rtdev_targp
: mp
->m_ddev_targp
;
1478 da
.d_mem
= da
.d_miniosz
= 1 << target
->bt_sshift
;
1479 da
.d_maxiosz
= INT_MAX
& ~(da
.d_miniosz
- 1);
1481 if (copy_to_user(arg
, &da
, sizeof(da
)))
1482 return -XFS_ERROR(EFAULT
);
1486 case XFS_IOC_FSBULKSTAT_SINGLE
:
1487 case XFS_IOC_FSBULKSTAT
:
1488 case XFS_IOC_FSINUMBERS
:
1489 return xfs_ioc_bulkstat(mp
, cmd
, arg
);
1491 case XFS_IOC_FSGEOMETRY_V1
:
1492 return xfs_ioc_fsgeometry_v1(mp
, arg
);
1494 case XFS_IOC_FSGEOMETRY
:
1495 return xfs_ioc_fsgeometry(mp
, arg
);
1497 case XFS_IOC_GETVERSION
:
1498 return put_user(inode
->i_generation
, (int __user
*)arg
);
1500 case XFS_IOC_FSGETXATTR
:
1501 return xfs_ioc_fsgetxattr(ip
, 0, arg
);
1502 case XFS_IOC_FSGETXATTRA
:
1503 return xfs_ioc_fsgetxattr(ip
, 1, arg
);
1504 case XFS_IOC_FSSETXATTR
:
1505 return xfs_ioc_fssetxattr(ip
, filp
, arg
);
1506 case XFS_IOC_GETXFLAGS
:
1507 return xfs_ioc_getxflags(ip
, arg
);
1508 case XFS_IOC_SETXFLAGS
:
1509 return xfs_ioc_setxflags(ip
, filp
, arg
);
1511 case XFS_IOC_FSSETDM
: {
1512 struct fsdmidata dmi
;
1514 if (copy_from_user(&dmi
, arg
, sizeof(dmi
)))
1515 return -XFS_ERROR(EFAULT
);
1517 error
= mnt_want_write_file(filp
);
1521 error
= xfs_set_dmattrs(ip
, dmi
.fsd_dmevmask
,
1523 mnt_drop_write_file(filp
);
1527 case XFS_IOC_GETBMAP
:
1528 case XFS_IOC_GETBMAPA
:
1529 return xfs_ioc_getbmap(ip
, ioflags
, cmd
, arg
);
1531 case XFS_IOC_GETBMAPX
:
1532 return xfs_ioc_getbmapx(ip
, arg
);
1534 case XFS_IOC_FD_TO_HANDLE
:
1535 case XFS_IOC_PATH_TO_HANDLE
:
1536 case XFS_IOC_PATH_TO_FSHANDLE
: {
1537 xfs_fsop_handlereq_t hreq
;
1539 if (copy_from_user(&hreq
, arg
, sizeof(hreq
)))
1540 return -XFS_ERROR(EFAULT
);
1541 return xfs_find_handle(cmd
, &hreq
);
1543 case XFS_IOC_OPEN_BY_HANDLE
: {
1544 xfs_fsop_handlereq_t hreq
;
1546 if (copy_from_user(&hreq
, arg
, sizeof(xfs_fsop_handlereq_t
)))
1547 return -XFS_ERROR(EFAULT
);
1548 return xfs_open_by_handle(filp
, &hreq
);
1550 case XFS_IOC_FSSETDM_BY_HANDLE
:
1551 return xfs_fssetdm_by_handle(filp
, arg
);
1553 case XFS_IOC_READLINK_BY_HANDLE
: {
1554 xfs_fsop_handlereq_t hreq
;
1556 if (copy_from_user(&hreq
, arg
, sizeof(xfs_fsop_handlereq_t
)))
1557 return -XFS_ERROR(EFAULT
);
1558 return xfs_readlink_by_handle(filp
, &hreq
);
1560 case XFS_IOC_ATTRLIST_BY_HANDLE
:
1561 return xfs_attrlist_by_handle(filp
, arg
);
1563 case XFS_IOC_ATTRMULTI_BY_HANDLE
:
1564 return xfs_attrmulti_by_handle(filp
, arg
);
1566 case XFS_IOC_SWAPEXT
: {
1567 struct xfs_swapext sxp
;
1569 if (copy_from_user(&sxp
, arg
, sizeof(xfs_swapext_t
)))
1570 return -XFS_ERROR(EFAULT
);
1571 error
= mnt_want_write_file(filp
);
1574 error
= xfs_ioc_swapext(&sxp
);
1575 mnt_drop_write_file(filp
);
1579 case XFS_IOC_FSCOUNTS
: {
1580 xfs_fsop_counts_t out
;
1582 error
= xfs_fs_counts(mp
, &out
);
1586 if (copy_to_user(arg
, &out
, sizeof(out
)))
1587 return -XFS_ERROR(EFAULT
);
1591 case XFS_IOC_SET_RESBLKS
: {
1592 xfs_fsop_resblks_t inout
;
1595 if (!capable(CAP_SYS_ADMIN
))
1598 if (mp
->m_flags
& XFS_MOUNT_RDONLY
)
1599 return -XFS_ERROR(EROFS
);
1601 if (copy_from_user(&inout
, arg
, sizeof(inout
)))
1602 return -XFS_ERROR(EFAULT
);
1604 error
= mnt_want_write_file(filp
);
1608 /* input parameter is passed in resblks field of structure */
1610 error
= xfs_reserve_blocks(mp
, &in
, &inout
);
1611 mnt_drop_write_file(filp
);
1615 if (copy_to_user(arg
, &inout
, sizeof(inout
)))
1616 return -XFS_ERROR(EFAULT
);
1620 case XFS_IOC_GET_RESBLKS
: {
1621 xfs_fsop_resblks_t out
;
1623 if (!capable(CAP_SYS_ADMIN
))
1626 error
= xfs_reserve_blocks(mp
, NULL
, &out
);
1630 if (copy_to_user(arg
, &out
, sizeof(out
)))
1631 return -XFS_ERROR(EFAULT
);
1636 case XFS_IOC_FSGROWFSDATA
: {
1637 xfs_growfs_data_t in
;
1639 if (copy_from_user(&in
, arg
, sizeof(in
)))
1640 return -XFS_ERROR(EFAULT
);
1642 error
= mnt_want_write_file(filp
);
1645 error
= xfs_growfs_data(mp
, &in
);
1646 mnt_drop_write_file(filp
);
1650 case XFS_IOC_FSGROWFSLOG
: {
1651 xfs_growfs_log_t in
;
1653 if (copy_from_user(&in
, arg
, sizeof(in
)))
1654 return -XFS_ERROR(EFAULT
);
1656 error
= mnt_want_write_file(filp
);
1659 error
= xfs_growfs_log(mp
, &in
);
1660 mnt_drop_write_file(filp
);
1664 case XFS_IOC_FSGROWFSRT
: {
1667 if (copy_from_user(&in
, arg
, sizeof(in
)))
1668 return -XFS_ERROR(EFAULT
);
1670 error
= mnt_want_write_file(filp
);
1673 error
= xfs_growfs_rt(mp
, &in
);
1674 mnt_drop_write_file(filp
);
1678 case XFS_IOC_GOINGDOWN
: {
1681 if (!capable(CAP_SYS_ADMIN
))
1684 if (get_user(in
, (__uint32_t __user
*)arg
))
1685 return -XFS_ERROR(EFAULT
);
1687 error
= xfs_fs_goingdown(mp
, in
);
1691 case XFS_IOC_ERROR_INJECTION
: {
1692 xfs_error_injection_t in
;
1694 if (!capable(CAP_SYS_ADMIN
))
1697 if (copy_from_user(&in
, arg
, sizeof(in
)))
1698 return -XFS_ERROR(EFAULT
);
1700 error
= xfs_errortag_add(in
.errtag
, mp
);
1704 case XFS_IOC_ERROR_CLEARALL
:
1705 if (!capable(CAP_SYS_ADMIN
))
1708 error
= xfs_errortag_clearall(mp
, 1);
1711 case XFS_IOC_FREE_EOFBLOCKS
: {
1712 struct xfs_fs_eofblocks eofb
;
1713 struct xfs_eofblocks keofb
;
1715 if (!capable(CAP_SYS_ADMIN
))
1718 if (mp
->m_flags
& XFS_MOUNT_RDONLY
)
1719 return -XFS_ERROR(EROFS
);
1721 if (!capable(CAP_SYS_ADMIN
))
1724 if (mp
->m_flags
& XFS_MOUNT_RDONLY
)
1725 return -XFS_ERROR(EROFS
);
1727 if (copy_from_user(&eofb
, arg
, sizeof(eofb
)))
1728 return -XFS_ERROR(EFAULT
);
1730 error
= xfs_fs_eofblocks_from_user(&eofb
, &keofb
);
1734 return -xfs_icache_free_eofblocks(mp
, &keofb
);