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
21 #include "xfs_trans.h"
24 #include "xfs_alloc.h"
25 #include "xfs_mount.h"
26 #include "xfs_bmap_btree.h"
27 #include "xfs_dinode.h"
28 #include "xfs_inode.h"
29 #include "xfs_ioctl.h"
30 #include "xfs_rtalloc.h"
31 #include "xfs_itable.h"
32 #include "xfs_error.h"
35 #include "xfs_buf_item.h"
36 #include "xfs_utils.h"
37 #include "xfs_dfrag.h"
38 #include "xfs_fsops.h"
39 #include "xfs_vnodeops.h"
40 #include "xfs_discard.h"
41 #include "xfs_quota.h"
42 #include "xfs_inode_item.h"
43 #include "xfs_export.h"
44 #include "xfs_trace.h"
46 #include <linux/capability.h>
47 #include <linux/dcache.h>
48 #include <linux/mount.h>
49 #include <linux/namei.h>
50 #include <linux/pagemap.h>
51 #include <linux/slab.h>
52 #include <linux/exportfs.h>
55 * xfs_find_handle maps from userspace xfs_fsop_handlereq structure to
56 * a file or fs handle.
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
68 xfs_fsop_handlereq_t
*hreq
)
73 struct file
*file
= NULL
;
78 if (cmd
== XFS_IOC_FD_TO_HANDLE
) {
79 file
= fget(hreq
->fd
);
82 inode
= file
->f_path
.dentry
->d_inode
;
84 error
= user_lpath((const char __user
*)hreq
->path
, &path
);
87 inode
= path
.dentry
->d_inode
;
92 * We can only generate handles for inodes residing on a XFS filesystem,
93 * and only for regular files, directories or symbolic links.
96 if (inode
->i_sb
->s_magic
!= XFS_SB_MAGIC
)
100 if (!S_ISREG(inode
->i_mode
) &&
101 !S_ISDIR(inode
->i_mode
) &&
102 !S_ISLNK(inode
->i_mode
))
106 memcpy(&handle
.ha_fsid
, ip
->i_mount
->m_fixedfsid
, sizeof(xfs_fsid_t
));
108 if (cmd
== XFS_IOC_PATH_TO_FSHANDLE
) {
110 * This handle only contains an fsid, zero the rest.
112 memset(&handle
.ha_fid
, 0, sizeof(handle
.ha_fid
));
113 hsize
= sizeof(xfs_fsid_t
);
117 lock_mode
= xfs_ilock_map_shared(ip
);
118 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
;
123 xfs_iunlock_map_shared(ip
, lock_mode
);
125 hsize
= XFS_HSIZE(handle
);
129 if (copy_to_user(hreq
->ohandle
, &handle
, hsize
) ||
130 copy_to_user(hreq
->ohandlen
, &hsize
, sizeof(__s32
)))
136 if (cmd
== XFS_IOC_FD_TO_HANDLE
)
144 * No need to do permission checks on the various pathname components
145 * as the handle operations are privileged.
148 xfs_handle_acceptable(
150 struct dentry
*dentry
)
156 * Convert userspace handle data into a dentry.
159 xfs_handle_to_dentry(
160 struct file
*parfilp
,
161 void __user
*uhandle
,
165 struct xfs_fid64 fid
;
168 * Only allow handle opens under a directory.
170 if (!S_ISDIR(parfilp
->f_path
.dentry
->d_inode
->i_mode
))
171 return ERR_PTR(-ENOTDIR
);
173 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
);
181 memset(&fid
, 0, sizeof(struct fid
));
182 fid
.ino
= handle
.ha_fid
.fid_ino
;
183 fid
.gen
= handle
.ha_fid
.fid_gen
;
185 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
);
190 STATIC
struct dentry
*
191 xfs_handlereq_to_dentry(
192 struct file
*parfilp
,
193 xfs_fsop_handlereq_t
*hreq
)
195 return xfs_handle_to_dentry(parfilp
, hreq
->ihandle
, hreq
->ihandlen
);
200 struct file
*parfilp
,
201 xfs_fsop_handlereq_t
*hreq
)
203 const struct cred
*cred
= current_cred();
209 struct dentry
*dentry
;
213 if (!capable(CAP_SYS_ADMIN
))
214 return -XFS_ERROR(EPERM
);
216 dentry
= xfs_handlereq_to_dentry(parfilp
, hreq
);
218 return PTR_ERR(dentry
);
219 inode
= dentry
->d_inode
;
221 /* Restrict xfs_open_by_handle to directories & regular files. */
222 if (!(S_ISREG(inode
->i_mode
) || S_ISDIR(inode
->i_mode
))) {
223 error
= -XFS_ERROR(EPERM
);
227 #if BITS_PER_LONG != 32
228 hreq
->oflags
|= O_LARGEFILE
;
231 permflag
= hreq
->oflags
;
232 fmode
= OPEN_FMODE(permflag
);
233 if ((!(permflag
& O_APPEND
) || (permflag
& O_TRUNC
)) &&
234 (fmode
& FMODE_WRITE
) && IS_APPEND(inode
)) {
235 error
= -XFS_ERROR(EPERM
);
239 if ((fmode
& FMODE_WRITE
) && IS_IMMUTABLE(inode
)) {
240 error
= -XFS_ERROR(EACCES
);
244 /* Can't write directories. */
245 if (S_ISDIR(inode
->i_mode
) && (fmode
& FMODE_WRITE
)) {
246 error
= -XFS_ERROR(EISDIR
);
250 fd
= get_unused_fd();
256 path
.mnt
= parfilp
->f_path
.mnt
;
257 path
.dentry
= dentry
;
258 filp
= dentry_open(&path
, hreq
->oflags
, cred
);
262 return PTR_ERR(filp
);
265 if (S_ISREG(inode
->i_mode
)) {
266 filp
->f_flags
|= O_NOATIME
;
267 filp
->f_mode
|= FMODE_NOCMTIME
;
270 fd_install(fd
, filp
);
279 * This is a copy from fs/namei.c:vfs_readlink(), except for removing it's
280 * unused first argument.
295 if (len
> (unsigned) buflen
)
297 if (copy_to_user(buffer
, link
, len
))
305 xfs_readlink_by_handle(
306 struct file
*parfilp
,
307 xfs_fsop_handlereq_t
*hreq
)
309 struct dentry
*dentry
;
314 if (!capable(CAP_SYS_ADMIN
))
315 return -XFS_ERROR(EPERM
);
317 dentry
= xfs_handlereq_to_dentry(parfilp
, hreq
);
319 return PTR_ERR(dentry
);
321 /* Restrict this handle operation to symlinks only. */
322 if (!S_ISLNK(dentry
->d_inode
->i_mode
)) {
323 error
= -XFS_ERROR(EINVAL
);
327 if (copy_from_user(&olen
, hreq
->ohandlen
, sizeof(__u32
))) {
328 error
= -XFS_ERROR(EFAULT
);
332 link
= kmalloc(MAXPATHLEN
+1, GFP_KERNEL
);
334 error
= -XFS_ERROR(ENOMEM
);
338 error
= -xfs_readlink(XFS_I(dentry
->d_inode
), link
);
341 error
= do_readlink(hreq
->ohandle
, olen
, link
);
353 xfs_fssetdm_by_handle(
354 struct file
*parfilp
,
358 struct fsdmidata fsd
;
359 xfs_fsop_setdm_handlereq_t dmhreq
;
360 struct dentry
*dentry
;
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
);
367 error
= mnt_want_write_file(parfilp
);
371 dentry
= xfs_handlereq_to_dentry(parfilp
, &dmhreq
.hreq
);
372 if (IS_ERR(dentry
)) {
373 mnt_drop_write_file(parfilp
);
374 return PTR_ERR(dentry
);
377 if (IS_IMMUTABLE(dentry
->d_inode
) || IS_APPEND(dentry
->d_inode
)) {
378 error
= -XFS_ERROR(EPERM
);
382 if (copy_from_user(&fsd
, dmhreq
.data
, sizeof(fsd
))) {
383 error
= -XFS_ERROR(EFAULT
);
387 error
= -xfs_set_dmattrs(XFS_I(dentry
->d_inode
), fsd
.fsd_dmevmask
,
391 mnt_drop_write_file(parfilp
);
397 xfs_attrlist_by_handle(
398 struct file
*parfilp
,
402 attrlist_cursor_kern_t
*cursor
;
403 xfs_fsop_attrlist_handlereq_t al_hreq
;
404 struct dentry
*dentry
;
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
);
415 * Reject flags, only allow namespaces.
417 if (al_hreq
.flags
& ~(ATTR_ROOT
| ATTR_SECURE
))
418 return -XFS_ERROR(EINVAL
);
420 dentry
= xfs_handlereq_to_dentry(parfilp
, &al_hreq
.hreq
);
422 return PTR_ERR(dentry
);
424 kbuf
= kzalloc(al_hreq
.buflen
, GFP_KERNEL
);
428 cursor
= (attrlist_cursor_kern_t
*)&al_hreq
.pos
;
429 error
= -xfs_attr_list(XFS_I(dentry
->d_inode
), kbuf
, al_hreq
.buflen
,
430 al_hreq
.flags
, cursor
);
434 if (copy_to_user(al_hreq
.buffer
, kbuf
, al_hreq
.buflen
))
445 xfs_attrmulti_attr_get(
448 unsigned char __user
*ubuf
,
455 if (*len
> XATTR_SIZE_MAX
)
457 kbuf
= kmem_zalloc(*len
, KM_SLEEP
| KM_MAYFAIL
);
459 kbuf
= kmem_zalloc_large(*len
);
464 error
= xfs_attr_get(XFS_I(inode
), name
, kbuf
, (int *)len
, flags
);
468 if (copy_to_user(ubuf
, kbuf
, *len
))
472 if (is_vmalloc_addr(kbuf
))
473 kmem_free_large(kbuf
);
480 xfs_attrmulti_attr_set(
483 const unsigned char __user
*ubuf
,
490 if (IS_IMMUTABLE(inode
) || IS_APPEND(inode
))
492 if (len
> XATTR_SIZE_MAX
)
495 kbuf
= memdup_user(ubuf
, len
);
497 return PTR_ERR(kbuf
);
499 error
= xfs_attr_set(XFS_I(inode
), name
, kbuf
, len
, flags
);
505 xfs_attrmulti_attr_remove(
510 if (IS_IMMUTABLE(inode
) || IS_APPEND(inode
))
512 return xfs_attr_remove(XFS_I(inode
), name
, flags
);
516 xfs_attrmulti_by_handle(
517 struct file
*parfilp
,
521 xfs_attr_multiop_t
*ops
;
522 xfs_fsop_attrmulti_handlereq_t am_hreq
;
523 struct dentry
*dentry
;
524 unsigned int i
, size
;
525 unsigned char *attr_name
;
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
);
533 if (am_hreq
.opcount
>= INT_MAX
/ sizeof(xfs_attr_multiop_t
))
536 dentry
= xfs_handlereq_to_dentry(parfilp
, &am_hreq
.hreq
);
538 return PTR_ERR(dentry
);
541 size
= am_hreq
.opcount
* sizeof(xfs_attr_multiop_t
);
542 if (!size
|| size
> 16 * PAGE_SIZE
)
545 ops
= memdup_user(am_hreq
.ops
, size
);
547 error
= PTR_ERR(ops
);
551 attr_name
= kmalloc(MAXNAMELEN
, GFP_KERNEL
);
556 for (i
= 0; i
< am_hreq
.opcount
; i
++) {
557 ops
[i
].am_error
= strncpy_from_user((char *)attr_name
,
558 ops
[i
].am_attrname
, MAXNAMELEN
);
559 if (ops
[i
].am_error
== 0 || ops
[i
].am_error
== MAXNAMELEN
)
561 if (ops
[i
].am_error
< 0)
564 switch (ops
[i
].am_opcode
) {
566 ops
[i
].am_error
= xfs_attrmulti_attr_get(
567 dentry
->d_inode
, attr_name
,
568 ops
[i
].am_attrvalue
, &ops
[i
].am_length
,
572 ops
[i
].am_error
= mnt_want_write_file(parfilp
);
575 ops
[i
].am_error
= xfs_attrmulti_attr_set(
576 dentry
->d_inode
, attr_name
,
577 ops
[i
].am_attrvalue
, ops
[i
].am_length
,
579 mnt_drop_write_file(parfilp
);
582 ops
[i
].am_error
= mnt_want_write_file(parfilp
);
585 ops
[i
].am_error
= xfs_attrmulti_attr_remove(
586 dentry
->d_inode
, attr_name
,
588 mnt_drop_write_file(parfilp
);
591 ops
[i
].am_error
= EINVAL
;
595 if (copy_to_user(am_hreq
.ops
, ops
, size
))
596 error
= XFS_ERROR(EFAULT
);
608 struct xfs_inode
*ip
,
619 * Only allow the sys admin to reserve space unless
620 * unwritten extents are enabled.
622 if (!xfs_sb_version_hasextflgbit(&ip
->i_mount
->m_sb
) &&
623 !capable(CAP_SYS_ADMIN
))
624 return -XFS_ERROR(EPERM
);
626 if (inode
->i_flags
& (S_IMMUTABLE
|S_APPEND
))
627 return -XFS_ERROR(EPERM
);
629 if (!(filp
->f_mode
& FMODE_WRITE
))
630 return -XFS_ERROR(EBADF
);
632 if (!S_ISREG(inode
->i_mode
))
633 return -XFS_ERROR(EINVAL
);
635 if (filp
->f_flags
& (O_NDELAY
|O_NONBLOCK
))
636 attr_flags
|= XFS_ATTR_NONBLOCK
;
638 if (filp
->f_flags
& O_DSYNC
)
639 attr_flags
|= XFS_ATTR_SYNC
;
641 if (ioflags
& IO_INVIS
)
642 attr_flags
|= XFS_ATTR_DMI
;
644 error
= mnt_want_write_file(filp
);
647 error
= xfs_change_file_space(ip
, cmd
, bf
, filp
->f_pos
, attr_flags
);
648 mnt_drop_write_file(filp
);
658 xfs_fsop_bulkreq_t bulkreq
;
659 int count
; /* # of records returned */
660 xfs_ino_t inlast
; /* last inode number */
664 /* done = 1 if there are more stats to get and if bulkstat */
665 /* should be called again (unused here, but used in dmapi) */
667 if (!capable(CAP_SYS_ADMIN
))
670 if (XFS_FORCED_SHUTDOWN(mp
))
671 return -XFS_ERROR(EIO
);
673 if (copy_from_user(&bulkreq
, arg
, sizeof(xfs_fsop_bulkreq_t
)))
674 return -XFS_ERROR(EFAULT
);
676 if (copy_from_user(&inlast
, bulkreq
.lastip
, sizeof(__s64
)))
677 return -XFS_ERROR(EFAULT
);
679 if ((count
= bulkreq
.icount
) <= 0)
680 return -XFS_ERROR(EINVAL
);
682 if (bulkreq
.ubuffer
== NULL
)
683 return -XFS_ERROR(EINVAL
);
685 if (cmd
== XFS_IOC_FSINUMBERS
)
686 error
= xfs_inumbers(mp
, &inlast
, &count
,
687 bulkreq
.ubuffer
, xfs_inumbers_fmt
);
688 else if (cmd
== XFS_IOC_FSBULKSTAT_SINGLE
)
689 error
= xfs_bulkstat_single(mp
, &inlast
,
690 bulkreq
.ubuffer
, &done
);
691 else /* XFS_IOC_FSBULKSTAT */
692 error
= xfs_bulkstat(mp
, &inlast
, &count
, xfs_bulkstat_one
,
693 sizeof(xfs_bstat_t
), bulkreq
.ubuffer
,
699 if (bulkreq
.ocount
!= NULL
) {
700 if (copy_to_user(bulkreq
.lastip
, &inlast
,
702 return -XFS_ERROR(EFAULT
);
704 if (copy_to_user(bulkreq
.ocount
, &count
, sizeof(count
)))
705 return -XFS_ERROR(EFAULT
);
712 xfs_ioc_fsgeometry_v1(
716 xfs_fsop_geom_t fsgeo
;
719 error
= xfs_fs_geometry(mp
, &fsgeo
, 3);
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.
728 if (copy_to_user(arg
, &fsgeo
, sizeof(xfs_fsop_geom_v1_t
)))
729 return -XFS_ERROR(EFAULT
);
738 xfs_fsop_geom_t fsgeo
;
741 error
= xfs_fs_geometry(mp
, &fsgeo
, 4);
745 if (copy_to_user(arg
, &fsgeo
, sizeof(fsgeo
)))
746 return -XFS_ERROR(EFAULT
);
751 * Linux extended inode flags interface.
755 xfs_merge_ioc_xflags(
759 unsigned int xflags
= start
;
761 if (flags
& FS_IMMUTABLE_FL
)
762 xflags
|= XFS_XFLAG_IMMUTABLE
;
764 xflags
&= ~XFS_XFLAG_IMMUTABLE
;
765 if (flags
& FS_APPEND_FL
)
766 xflags
|= XFS_XFLAG_APPEND
;
768 xflags
&= ~XFS_XFLAG_APPEND
;
769 if (flags
& FS_SYNC_FL
)
770 xflags
|= XFS_XFLAG_SYNC
;
772 xflags
&= ~XFS_XFLAG_SYNC
;
773 if (flags
& FS_NOATIME_FL
)
774 xflags
|= XFS_XFLAG_NOATIME
;
776 xflags
&= ~XFS_XFLAG_NOATIME
;
777 if (flags
& FS_NODUMP_FL
)
778 xflags
|= XFS_XFLAG_NODUMP
;
780 xflags
&= ~XFS_XFLAG_NODUMP
;
789 unsigned int flags
= 0;
791 if (di_flags
& XFS_DIFLAG_IMMUTABLE
)
792 flags
|= FS_IMMUTABLE_FL
;
793 if (di_flags
& XFS_DIFLAG_APPEND
)
794 flags
|= FS_APPEND_FL
;
795 if (di_flags
& XFS_DIFLAG_SYNC
)
797 if (di_flags
& XFS_DIFLAG_NOATIME
)
798 flags
|= FS_NOATIME_FL
;
799 if (di_flags
& XFS_DIFLAG_NODUMP
)
800 flags
|= FS_NODUMP_FL
;
812 memset(&fa
, 0, sizeof(struct fsxattr
));
814 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
;
817 fa
.fsx_projid
= xfs_get_projid(ip
);
821 if (ip
->i_afp
->if_flags
& XFS_IFEXTENTS
)
822 fa
.fsx_nextents
= ip
->i_afp
->if_bytes
/
823 sizeof(xfs_bmbt_rec_t
);
825 fa
.fsx_nextents
= ip
->i_d
.di_anextents
;
829 if (ip
->i_df
.if_flags
& XFS_IFEXTENTS
)
830 fa
.fsx_nextents
= ip
->i_df
.if_bytes
/
831 sizeof(xfs_bmbt_rec_t
);
833 fa
.fsx_nextents
= ip
->i_d
.di_nextents
;
835 xfs_iunlock(ip
, XFS_ILOCK_SHARED
);
837 if (copy_to_user(arg
, &fa
, sizeof(fa
)))
844 struct xfs_inode
*ip
,
847 unsigned int di_flags
;
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
;
867 if (S_ISDIR(ip
->i_d
.di_mode
)) {
868 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
;
874 } else if (S_ISREG(ip
->i_d
.di_mode
)) {
875 if (xflags
& XFS_XFLAG_REALTIME
)
876 di_flags
|= XFS_DIFLAG_REALTIME
;
877 if (xflags
& XFS_XFLAG_EXTSIZE
)
878 di_flags
|= XFS_DIFLAG_EXTSIZE
;
881 ip
->i_d
.di_flags
= di_flags
;
885 xfs_diflags_to_linux(
886 struct xfs_inode
*ip
)
888 struct inode
*inode
= VFS_I(ip
);
889 unsigned int xflags
= xfs_ip2xflags(ip
);
891 if (xflags
& XFS_XFLAG_IMMUTABLE
)
892 inode
->i_flags
|= S_IMMUTABLE
;
894 inode
->i_flags
&= ~S_IMMUTABLE
;
895 if (xflags
& XFS_XFLAG_APPEND
)
896 inode
->i_flags
|= S_APPEND
;
898 inode
->i_flags
&= ~S_APPEND
;
899 if (xflags
& XFS_XFLAG_SYNC
)
900 inode
->i_flags
|= S_SYNC
;
902 inode
->i_flags
&= ~S_SYNC
;
903 if (xflags
& XFS_XFLAG_NOATIME
)
904 inode
->i_flags
|= S_NOATIME
;
906 inode
->i_flags
&= ~S_NOATIME
;
910 #define FSX_EXTSIZE 2
912 #define FSX_NONBLOCK 8
920 struct xfs_mount
*mp
= ip
->i_mount
;
921 struct xfs_trans
*tp
;
922 unsigned int lock_flags
= 0;
923 struct xfs_dquot
*udqp
= NULL
;
924 struct xfs_dquot
*gdqp
= NULL
;
925 struct xfs_dquot
*olddquot
= NULL
;
928 trace_xfs_ioctl_setattr(ip
);
930 if (mp
->m_flags
& XFS_MOUNT_RDONLY
)
931 return XFS_ERROR(EROFS
);
932 if (XFS_FORCED_SHUTDOWN(mp
))
933 return XFS_ERROR(EIO
);
936 * Disallow 32bit project ids when projid32bit feature is not enabled.
938 if ((mask
& FSX_PROJID
) && (fa
->fsx_projid
> (__uint16_t
)-1) &&
939 !xfs_sb_version_hasprojid32bit(&ip
->i_mount
->m_sb
))
940 return XFS_ERROR(EINVAL
);
943 * 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.
950 if (XFS_IS_QUOTA_ON(mp
) && (mask
& FSX_PROJID
)) {
951 code
= xfs_qm_vop_dqalloc(ip
, ip
->i_d
.di_uid
,
952 ip
->i_d
.di_gid
, fa
->fsx_projid
,
953 XFS_QMOPT_PQUOTA
, &udqp
, &gdqp
);
959 * For the other attributes, we acquire the inode lock and
960 * first do an error checking pass.
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);
967 lock_flags
= XFS_ILOCK_EXCL
;
968 xfs_ilock(ip
, lock_flags
);
971 * CAP_FOWNER overrides the following restrictions:
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.
977 if (current_fsuid() != ip
->i_d
.di_uid
&& !capable(CAP_FOWNER
)) {
978 code
= XFS_ERROR(EPERM
);
983 * Do a quota reservation only if projid is actually going to change.
985 if (mask
& FSX_PROJID
) {
986 if (XFS_IS_QUOTA_RUNNING(mp
) &&
987 XFS_IS_PQUOTA_ON(mp
) &&
988 xfs_get_projid(ip
) != fa
->fsx_projid
) {
990 code
= xfs_qm_vop_chown_reserve(tp
, ip
, udqp
, gdqp
,
991 capable(CAP_FOWNER
) ?
992 XFS_QMOPT_FORCE_RES
: 0);
993 if (code
) /* out of quota */
998 if (mask
& FSX_EXTSIZE
) {
1000 * Can't change extent size if any extents are allocated.
1002 if (ip
->i_d
.di_nextents
&&
1003 ((ip
->i_d
.di_extsize
<< mp
->m_sb
.sb_blocklog
) !=
1005 code
= XFS_ERROR(EINVAL
); /* EFBIG? */
1010 * Extent size must be a multiple of the appropriate block
1011 * size, if set at all. It must also be smaller than the
1012 * maximum extent size supported by the filesystem.
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.
1018 if (fa
->fsx_extsize
!= 0) {
1020 xfs_fsblock_t extsize_fsb
;
1022 extsize_fsb
= XFS_B_TO_FSB(mp
, fa
->fsx_extsize
);
1023 if (extsize_fsb
> MAXEXTLEN
) {
1024 code
= XFS_ERROR(EINVAL
);
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
;
1034 size
= mp
->m_sb
.sb_blocksize
;
1035 if (extsize_fsb
> mp
->m_sb
.sb_agblocks
/ 2) {
1036 code
= XFS_ERROR(EINVAL
);
1041 if (fa
->fsx_extsize
% size
) {
1042 code
= XFS_ERROR(EINVAL
);
1049 if (mask
& FSX_XFLAGS
) {
1051 * Can't change realtime flag if any extents are allocated.
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? */
1061 * If realtime flag is set then must have realtime data.
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
);
1073 * Can't modify an immutable/append-only file unless
1074 * we have appropriate permission.
1076 if ((ip
->i_d
.di_flags
&
1077 (XFS_DIFLAG_IMMUTABLE
|XFS_DIFLAG_APPEND
) ||
1079 (XFS_XFLAG_IMMUTABLE
| XFS_XFLAG_APPEND
))) &&
1080 !capable(CAP_LINUX_IMMUTABLE
)) {
1081 code
= XFS_ERROR(EPERM
);
1086 xfs_trans_ijoin(tp
, ip
, 0);
1089 * Change file ownership. Must be the owner or privileged.
1091 if (mask
& FSX_PROJID
) {
1093 * CAP_FSETID overrides the following restrictions:
1095 * The set-user-ID and set-group-ID bits of a file will be
1096 * cleared upon successful return from chown()
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
);
1103 * Change the ownerships and register quota modifications
1104 * in the transaction.
1106 if (xfs_get_projid(ip
) != fa
->fsx_projid
) {
1107 if (XFS_IS_QUOTA_RUNNING(mp
) && XFS_IS_PQUOTA_ON(mp
)) {
1108 olddquot
= xfs_qm_vop_chown(tp
, ip
,
1109 &ip
->i_gdquot
, gdqp
);
1111 xfs_set_projid(ip
, fa
->fsx_projid
);
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.
1118 if (ip
->i_d
.di_version
== 1)
1119 xfs_bump_ino_vers2(tp
, ip
);
1124 if (mask
& FSX_EXTSIZE
)
1125 ip
->i_d
.di_extsize
= fa
->fsx_extsize
>> mp
->m_sb
.sb_blocklog
;
1126 if (mask
& FSX_XFLAGS
) {
1127 xfs_set_diflags(ip
, fa
->fsx_xflags
);
1128 xfs_diflags_to_linux(ip
);
1131 xfs_trans_ichgtime(tp
, ip
, XFS_ICHGTIME_CHG
);
1132 xfs_trans_log_inode(tp
, ip
, XFS_ILOG_CORE
);
1134 XFS_STATS_INC(xs_ig_attrchg
);
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.
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
);
1152 * Release any dquot(s) the inode had kept before chown.
1154 xfs_qm_dqrele(olddquot
);
1155 xfs_qm_dqrele(udqp
);
1156 xfs_qm_dqrele(gdqp
);
1161 xfs_qm_dqrele(udqp
);
1162 xfs_qm_dqrele(gdqp
);
1163 xfs_trans_cancel(tp
, 0);
1165 xfs_iunlock(ip
, lock_flags
);
1179 if (copy_from_user(&fa
, arg
, sizeof(fa
)))
1182 mask
= FSX_XFLAGS
| FSX_EXTSIZE
| FSX_PROJID
;
1183 if (filp
->f_flags
& (O_NDELAY
|O_NONBLOCK
))
1184 mask
|= FSX_NONBLOCK
;
1186 error
= mnt_want_write_file(filp
);
1189 error
= xfs_ioctl_setattr(ip
, &fa
, mask
);
1190 mnt_drop_write_file(filp
);
1201 flags
= xfs_di2lxflags(ip
->i_d
.di_flags
);
1202 if (copy_to_user(arg
, &flags
, sizeof(flags
)))
1218 if (copy_from_user(&flags
, arg
, sizeof(flags
)))
1221 if (flags
& ~(FS_IMMUTABLE_FL
| FS_APPEND_FL
| \
1222 FS_NOATIME_FL
| FS_NODUMP_FL
| \
1227 if (filp
->f_flags
& (O_NDELAY
|O_NONBLOCK
))
1228 mask
|= FSX_NONBLOCK
;
1229 fa
.fsx_xflags
= xfs_merge_ioc_xflags(flags
, xfs_ip2xflags(ip
));
1231 error
= mnt_want_write_file(filp
);
1234 error
= xfs_ioctl_setattr(ip
, &fa
, mask
);
1235 mnt_drop_write_file(filp
);
1240 xfs_getbmap_format(void **ap
, struct getbmapx
*bmv
, int *full
)
1242 struct getbmap __user
*base
= *ap
;
1244 /* copy only getbmap portion (not getbmapx) */
1245 if (copy_to_user(base
, bmv
, sizeof(struct getbmap
)))
1246 return XFS_ERROR(EFAULT
);
1248 *ap
+= sizeof(struct getbmap
);
1254 struct xfs_inode
*ip
,
1259 struct getbmapx bmx
;
1262 if (copy_from_user(&bmx
, arg
, sizeof(struct getbmapx
)))
1263 return -XFS_ERROR(EFAULT
);
1265 if (bmx
.bmv_count
< 2)
1266 return -XFS_ERROR(EINVAL
);
1268 bmx
.bmv_iflags
= (cmd
== XFS_IOC_GETBMAPA
? BMV_IF_ATTRFORK
: 0);
1269 if (ioflags
& IO_INVIS
)
1270 bmx
.bmv_iflags
|= BMV_IF_NO_DMAPI_READ
;
1272 error
= xfs_getbmap(ip
, &bmx
, xfs_getbmap_format
,
1273 (struct getbmap
*)arg
+1);
1277 /* copy back header - only size of getbmap */
1278 if (copy_to_user(arg
, &bmx
, sizeof(struct getbmap
)))
1279 return -XFS_ERROR(EFAULT
);
1284 xfs_getbmapx_format(void **ap
, struct getbmapx
*bmv
, int *full
)
1286 struct getbmapx __user
*base
= *ap
;
1288 if (copy_to_user(base
, bmv
, sizeof(struct getbmapx
)))
1289 return XFS_ERROR(EFAULT
);
1291 *ap
+= sizeof(struct getbmapx
);
1297 struct xfs_inode
*ip
,
1300 struct getbmapx bmx
;
1303 if (copy_from_user(&bmx
, arg
, sizeof(bmx
)))
1304 return -XFS_ERROR(EFAULT
);
1306 if (bmx
.bmv_count
< 2)
1307 return -XFS_ERROR(EINVAL
);
1309 if (bmx
.bmv_iflags
& (~BMV_IF_VALID
))
1310 return -XFS_ERROR(EINVAL
);
1312 error
= xfs_getbmap(ip
, &bmx
, xfs_getbmapx_format
,
1313 (struct getbmapx
*)arg
+1);
1317 /* copy back header */
1318 if (copy_to_user(arg
, &bmx
, sizeof(struct getbmapx
)))
1319 return -XFS_ERROR(EFAULT
);
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.
1336 struct inode
*inode
= filp
->f_path
.dentry
->d_inode
;
1337 struct xfs_inode
*ip
= XFS_I(inode
);
1338 struct xfs_mount
*mp
= ip
->i_mount
;
1339 void __user
*arg
= (void __user
*)p
;
1343 if (filp
->f_mode
& FMODE_NOCMTIME
)
1344 ioflags
|= IO_INVIS
;
1346 trace_xfs_file_ioctl(ip
);
1350 return xfs_ioc_trim(mp
, arg
);
1351 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
:
1358 case XFS_IOC_UNRESVSP64
:
1359 case XFS_IOC_ZERO_RANGE
: {
1362 if (copy_from_user(&bf
, arg
, sizeof(bf
)))
1363 return -XFS_ERROR(EFAULT
);
1364 return xfs_ioc_space(ip
, inode
, filp
, ioflags
, cmd
, &bf
);
1366 case XFS_IOC_DIOINFO
: {
1368 xfs_buftarg_t
*target
=
1369 XFS_IS_REALTIME_INODE(ip
) ?
1370 mp
->m_rtdev_targp
: mp
->m_ddev_targp
;
1372 da
.d_mem
= da
.d_miniosz
= 1 << target
->bt_sshift
;
1373 da
.d_maxiosz
= INT_MAX
& ~(da
.d_miniosz
- 1);
1375 if (copy_to_user(arg
, &da
, sizeof(da
)))
1376 return -XFS_ERROR(EFAULT
);
1380 case XFS_IOC_FSBULKSTAT_SINGLE
:
1381 case XFS_IOC_FSBULKSTAT
:
1382 case XFS_IOC_FSINUMBERS
:
1383 return xfs_ioc_bulkstat(mp
, cmd
, arg
);
1385 case XFS_IOC_FSGEOMETRY_V1
:
1386 return xfs_ioc_fsgeometry_v1(mp
, arg
);
1388 case XFS_IOC_FSGEOMETRY
:
1389 return xfs_ioc_fsgeometry(mp
, arg
);
1391 case XFS_IOC_GETVERSION
:
1392 return put_user(inode
->i_generation
, (int __user
*)arg
);
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
);
1398 case XFS_IOC_FSSETXATTR
:
1399 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
);
1405 case XFS_IOC_FSSETDM
: {
1406 struct fsdmidata dmi
;
1408 if (copy_from_user(&dmi
, arg
, sizeof(dmi
)))
1409 return -XFS_ERROR(EFAULT
);
1411 error
= mnt_want_write_file(filp
);
1415 error
= xfs_set_dmattrs(ip
, dmi
.fsd_dmevmask
,
1417 mnt_drop_write_file(filp
);
1421 case XFS_IOC_GETBMAP
:
1422 case XFS_IOC_GETBMAPA
:
1423 return xfs_ioc_getbmap(ip
, ioflags
, cmd
, arg
);
1425 case XFS_IOC_GETBMAPX
:
1426 return xfs_ioc_getbmapx(ip
, arg
);
1428 case XFS_IOC_FD_TO_HANDLE
:
1429 case XFS_IOC_PATH_TO_HANDLE
:
1430 case XFS_IOC_PATH_TO_FSHANDLE
: {
1431 xfs_fsop_handlereq_t hreq
;
1433 if (copy_from_user(&hreq
, arg
, sizeof(hreq
)))
1434 return -XFS_ERROR(EFAULT
);
1435 return xfs_find_handle(cmd
, &hreq
);
1437 case XFS_IOC_OPEN_BY_HANDLE
: {
1438 xfs_fsop_handlereq_t hreq
;
1440 if (copy_from_user(&hreq
, arg
, sizeof(xfs_fsop_handlereq_t
)))
1441 return -XFS_ERROR(EFAULT
);
1442 return xfs_open_by_handle(filp
, &hreq
);
1444 case XFS_IOC_FSSETDM_BY_HANDLE
:
1445 return xfs_fssetdm_by_handle(filp
, arg
);
1447 case XFS_IOC_READLINK_BY_HANDLE
: {
1448 xfs_fsop_handlereq_t hreq
;
1450 if (copy_from_user(&hreq
, arg
, sizeof(xfs_fsop_handlereq_t
)))
1451 return -XFS_ERROR(EFAULT
);
1452 return xfs_readlink_by_handle(filp
, &hreq
);
1454 case XFS_IOC_ATTRLIST_BY_HANDLE
:
1455 return xfs_attrlist_by_handle(filp
, arg
);
1457 case XFS_IOC_ATTRMULTI_BY_HANDLE
:
1458 return xfs_attrmulti_by_handle(filp
, arg
);
1460 case XFS_IOC_SWAPEXT
: {
1461 struct xfs_swapext sxp
;
1463 if (copy_from_user(&sxp
, arg
, sizeof(xfs_swapext_t
)))
1464 return -XFS_ERROR(EFAULT
);
1465 error
= mnt_want_write_file(filp
);
1468 error
= xfs_swapext(&sxp
);
1469 mnt_drop_write_file(filp
);
1473 case XFS_IOC_FSCOUNTS
: {
1474 xfs_fsop_counts_t out
;
1476 error
= xfs_fs_counts(mp
, &out
);
1480 if (copy_to_user(arg
, &out
, sizeof(out
)))
1481 return -XFS_ERROR(EFAULT
);
1485 case XFS_IOC_SET_RESBLKS
: {
1486 xfs_fsop_resblks_t inout
;
1489 if (!capable(CAP_SYS_ADMIN
))
1492 if (mp
->m_flags
& XFS_MOUNT_RDONLY
)
1493 return -XFS_ERROR(EROFS
);
1495 if (copy_from_user(&inout
, arg
, sizeof(inout
)))
1496 return -XFS_ERROR(EFAULT
);
1498 error
= mnt_want_write_file(filp
);
1502 /* input parameter is passed in resblks field of structure */
1504 error
= xfs_reserve_blocks(mp
, &in
, &inout
);
1505 mnt_drop_write_file(filp
);
1509 if (copy_to_user(arg
, &inout
, sizeof(inout
)))
1510 return -XFS_ERROR(EFAULT
);
1514 case XFS_IOC_GET_RESBLKS
: {
1515 xfs_fsop_resblks_t out
;
1517 if (!capable(CAP_SYS_ADMIN
))
1520 error
= xfs_reserve_blocks(mp
, NULL
, &out
);
1524 if (copy_to_user(arg
, &out
, sizeof(out
)))
1525 return -XFS_ERROR(EFAULT
);
1530 case XFS_IOC_FSGROWFSDATA
: {
1531 xfs_growfs_data_t in
;
1533 if (copy_from_user(&in
, arg
, sizeof(in
)))
1534 return -XFS_ERROR(EFAULT
);
1536 error
= mnt_want_write_file(filp
);
1539 error
= xfs_growfs_data(mp
, &in
);
1540 mnt_drop_write_file(filp
);
1544 case XFS_IOC_FSGROWFSLOG
: {
1545 xfs_growfs_log_t in
;
1547 if (copy_from_user(&in
, arg
, sizeof(in
)))
1548 return -XFS_ERROR(EFAULT
);
1550 error
= mnt_want_write_file(filp
);
1553 error
= xfs_growfs_log(mp
, &in
);
1554 mnt_drop_write_file(filp
);
1558 case XFS_IOC_FSGROWFSRT
: {
1561 if (copy_from_user(&in
, arg
, sizeof(in
)))
1562 return -XFS_ERROR(EFAULT
);
1564 error
= mnt_want_write_file(filp
);
1567 error
= xfs_growfs_rt(mp
, &in
);
1568 mnt_drop_write_file(filp
);
1572 case XFS_IOC_GOINGDOWN
: {
1575 if (!capable(CAP_SYS_ADMIN
))
1578 if (get_user(in
, (__uint32_t __user
*)arg
))
1579 return -XFS_ERROR(EFAULT
);
1581 error
= xfs_fs_goingdown(mp
, in
);
1585 case XFS_IOC_ERROR_INJECTION
: {
1586 xfs_error_injection_t in
;
1588 if (!capable(CAP_SYS_ADMIN
))
1591 if (copy_from_user(&in
, arg
, sizeof(in
)))
1592 return -XFS_ERROR(EFAULT
);
1594 error
= xfs_errortag_add(in
.errtag
, mp
);
1598 case XFS_IOC_ERROR_CLEARALL
:
1599 if (!capable(CAP_SYS_ADMIN
))
1602 error
= xfs_errortag_clearall(mp
, 1);