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
23 #include "xfs_trans.h"
28 #include "xfs_alloc.h"
29 #include "xfs_dmapi.h"
30 #include "xfs_mount.h"
31 #include "xfs_bmap_btree.h"
32 #include "xfs_alloc_btree.h"
33 #include "xfs_ialloc_btree.h"
34 #include "xfs_dir_sf.h"
35 #include "xfs_attr_sf.h"
36 #include "xfs_dir2_sf.h"
37 #include "xfs_dinode.h"
38 #include "xfs_inode.h"
39 #include "xfs_btree.h"
40 #include "xfs_ialloc.h"
41 #include "xfs_rtalloc.h"
42 #include "xfs_itable.h"
43 #include "xfs_error.h"
50 #include "xfs_buf_item.h"
51 #include "xfs_utils.h"
52 #include "xfs_dfrag.h"
53 #include "xfs_fsops.h"
55 #include <linux/capability.h>
56 #include <linux/dcache.h>
57 #include <linux/mount.h>
58 #include <linux/namei.h>
59 #include <linux/pagemap.h>
62 * xfs_find_handle maps from userspace xfs_fsop_handlereq structure to
63 * a file or fs handle.
65 * XFS_IOC_PATH_TO_FSHANDLE
66 * returns fs handle for a mount point or path within that mount point
67 * XFS_IOC_FD_TO_HANDLE
68 * returns full handle for a FD opened in user space
69 * XFS_IOC_PATH_TO_HANDLE
70 * returns full handle for a path
79 xfs_fsop_handlereq_t hreq;
83 if (copy_from_user(&hreq, arg, sizeof(hreq)))
84 return -XFS_ERROR(EFAULT);
86 memset((char *)&handle, 0, sizeof(handle));
89 case XFS_IOC_PATH_TO_FSHANDLE:
90 case XFS_IOC_PATH_TO_HANDLE: {
94 error = user_path_walk_link((const char __user *)hreq.path, &nd);
99 ASSERT(nd.dentry->d_inode);
100 inode = igrab(nd.dentry->d_inode);
105 case XFS_IOC_FD_TO_HANDLE: {
108 file = fget(hreq.fd);
112 ASSERT(file->f_dentry);
113 ASSERT(file->f_dentry->d_inode);
114 inode = igrab(file->f_dentry->d_inode);
121 return -XFS_ERROR(EINVAL);
124 if (inode->i_sb->s_magic != XFS_SB_MAGIC) {
125 /* we're not in XFS anymore, Toto */
127 return -XFS_ERROR(EINVAL);
130 switch (inode->i_mode & S_IFMT) {
137 return -XFS_ERROR(EBADF);
140 /* we need the vnode */
141 vp = LINVFS_GET_VP(inode);
143 /* now we can grab the fsid */
144 memcpy(&handle.ha_fsid, vp->v_vfsp->vfs_altfsid, sizeof(xfs_fsid_t));
145 hsize = sizeof(xfs_fsid_t);
147 if (cmd != XFS_IOC_PATH_TO_FSHANDLE) {
151 /* need to get access to the xfs_inode to read the generation */
154 lock_mode = xfs_ilock_map_shared(ip);
156 /* fill in fid section of handle from inode */
157 handle.ha_fid.xfs_fid_len = sizeof(xfs_fid_t) -
158 sizeof(handle.ha_fid.xfs_fid_len);
159 handle.ha_fid.xfs_fid_pad = 0;
160 handle.ha_fid.xfs_fid_gen = ip->i_d.di_gen;
161 handle.ha_fid.xfs_fid_ino = ip->i_ino;
163 xfs_iunlock_map_shared(ip, lock_mode);
165 hsize = XFS_HSIZE(handle);
168 /* now copy our handle into the user buffer & write out the size */
169 if (copy_to_user(hreq.ohandle, &handle, hsize) ||
170 copy_to_user(hreq.ohandlen, &hsize, sizeof(__s32))) {
172 return -XFS_ERROR(EFAULT);
181 * Convert userspace handle data into vnode (and inode).
182 * We [ab]use the fact that all the fsop_handlereq ioctl calls
183 * have a data structure argument whose first component is always
184 * a xfs_fsop_handlereq_t, so we can cast to and from this type.
185 * This allows us to optimise the copy_from_user calls and gives
186 * a handy, shared routine.
188 * If no error, caller must always VN_RELE the returned vp.
191 xfs_vget_fsop_handlereq(
193 struct inode *parinode, /* parent inode pointer */
194 xfs_fsop_handlereq_t *hreq,
196 struct inode **inode)
201 xfs_handle_t *handlep;
204 struct inode *inodep;
211 * Only allow handle opens under a directory.
213 if (!S_ISDIR(parinode->i_mode))
214 return XFS_ERROR(ENOTDIR);
216 hanp = hreq->ihandle;
217 hlen = hreq->ihandlen;
220 if (hlen < sizeof(handlep->ha_fsid) || hlen > sizeof(*handlep))
221 return XFS_ERROR(EINVAL);
222 if (copy_from_user(handlep, hanp, hlen))
223 return XFS_ERROR(EFAULT);
224 if (hlen < sizeof(*handlep))
225 memset(((char *)handlep) + hlen, 0, sizeof(*handlep) - hlen);
226 if (hlen > sizeof(handlep->ha_fsid)) {
227 if (handlep->ha_fid.xfs_fid_len !=
228 (hlen - sizeof(handlep->ha_fsid)
229 - sizeof(handlep->ha_fid.xfs_fid_len))
230 || handlep->ha_fid.xfs_fid_pad)
231 return XFS_ERROR(EINVAL);
235 * Crack the handle, obtain the inode # & generation #
237 xfid = (struct xfs_fid *)&handlep->ha_fid;
238 if (xfid->xfs_fid_len == sizeof(*xfid) - sizeof(xfid->xfs_fid_len)) {
239 ino = xfid->xfs_fid_ino;
240 igen = xfid->xfs_fid_gen;
242 return XFS_ERROR(EINVAL);
246 * Get the XFS inode, building a vnode to go with it.
248 error = xfs_iget(mp, NULL, ino, 0, XFS_ILOCK_SHARED, &ip, 0);
252 return XFS_ERROR(EIO);
253 if (ip->i_d.di_mode == 0 || ip->i_d.di_gen != igen) {
254 xfs_iput_new(ip, XFS_ILOCK_SHARED);
255 return XFS_ERROR(ENOENT);
259 inodep = LINVFS_GET_IP(vpp);
260 xfs_iunlock(ip, XFS_ILOCK_SHARED);
271 struct file *parfilp,
272 struct inode *parinode)
279 struct dentry *dentry;
281 xfs_fsop_handlereq_t hreq;
283 if (!capable(CAP_SYS_ADMIN))
284 return -XFS_ERROR(EPERM);
285 if (copy_from_user(&hreq, arg, sizeof(xfs_fsop_handlereq_t)))
286 return -XFS_ERROR(EFAULT);
288 error = xfs_vget_fsop_handlereq(mp, parinode, &hreq, &vp, &inode);
292 /* Restrict xfs_open_by_handle to directories & regular files. */
293 if (!(S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode))) {
295 return -XFS_ERROR(EINVAL);
298 #if BITS_PER_LONG != 32
299 hreq.oflags |= O_LARGEFILE;
301 /* Put open permission in namei format. */
302 permflag = hreq.oflags;
303 if ((permflag+1) & O_ACCMODE)
305 if (permflag & O_TRUNC)
308 if ((!(permflag & O_APPEND) || (permflag & O_TRUNC)) &&
309 (permflag & FMODE_WRITE) && IS_APPEND(inode)) {
311 return -XFS_ERROR(EPERM);
314 if ((permflag & FMODE_WRITE) && IS_IMMUTABLE(inode)) {
316 return -XFS_ERROR(EACCES);
319 /* Can't write directories. */
320 if ( S_ISDIR(inode->i_mode) && (permflag & FMODE_WRITE)) {
322 return -XFS_ERROR(EISDIR);
325 if ((new_fd = get_unused_fd()) < 0) {
330 dentry = d_alloc_anon(inode);
331 if (dentry == NULL) {
333 put_unused_fd(new_fd);
334 return -XFS_ERROR(ENOMEM);
337 /* Ensure umount returns EBUSY on umounts while this file is open. */
338 mntget(parfilp->f_vfsmnt);
340 /* Create file pointer. */
341 filp = dentry_open(dentry, parfilp->f_vfsmnt, hreq.oflags);
343 put_unused_fd(new_fd);
344 return -XFS_ERROR(-PTR_ERR(filp));
346 if (inode->i_mode & S_IFREG)
347 filp->f_op = &linvfs_invis_file_operations;
349 fd_install(new_fd, filp);
354 xfs_readlink_by_handle(
357 struct file *parfilp,
358 struct inode *parinode)
364 xfs_fsop_handlereq_t hreq;
368 if (!capable(CAP_SYS_ADMIN))
369 return -XFS_ERROR(EPERM);
370 if (copy_from_user(&hreq, arg, sizeof(xfs_fsop_handlereq_t)))
371 return -XFS_ERROR(EFAULT);
373 error = xfs_vget_fsop_handlereq(mp, parinode, &hreq, &vp, &inode);
377 /* Restrict this handle operation to symlinks only. */
378 if (!S_ISLNK(inode->i_mode)) {
380 return -XFS_ERROR(EINVAL);
383 if (copy_from_user(&olen, hreq.ohandlen, sizeof(__u32))) {
385 return -XFS_ERROR(EFAULT);
388 aiov.iov_base = hreq.ohandle;
390 auio.uio_iov = &aiov;
393 auio.uio_segflg = UIO_USERSPACE;
394 auio.uio_resid = olen;
396 VOP_READLINK(vp, &auio, IO_INVIS, NULL, error);
399 return (olen - auio.uio_resid);
403 xfs_fssetdm_by_handle(
406 struct file *parfilp,
407 struct inode *parinode)
410 struct fsdmidata fsd;
411 xfs_fsop_setdm_handlereq_t dmhreq;
416 if (!capable(CAP_MKNOD))
417 return -XFS_ERROR(EPERM);
418 if (copy_from_user(&dmhreq, arg, sizeof(xfs_fsop_setdm_handlereq_t)))
419 return -XFS_ERROR(EFAULT);
421 error = xfs_vget_fsop_handlereq(mp, parinode, &dmhreq.hreq, &vp, &inode);
425 if (IS_IMMUTABLE(inode) || IS_APPEND(inode)) {
427 return -XFS_ERROR(EPERM);
430 if (copy_from_user(&fsd, dmhreq.data, sizeof(fsd))) {
432 return -XFS_ERROR(EFAULT);
435 bdp = bhv_base_unlocked(VN_BHV_HEAD(vp));
436 error = xfs_set_dmattrs(bdp, fsd.fsd_dmevmask, fsd.fsd_dmstate, NULL);
445 xfs_attrlist_by_handle(
448 struct file *parfilp,
449 struct inode *parinode)
452 attrlist_cursor_kern_t *cursor;
453 xfs_fsop_attrlist_handlereq_t al_hreq;
458 if (!capable(CAP_SYS_ADMIN))
459 return -XFS_ERROR(EPERM);
460 if (copy_from_user(&al_hreq, arg, sizeof(xfs_fsop_attrlist_handlereq_t)))
461 return -XFS_ERROR(EFAULT);
462 if (al_hreq.buflen > XATTR_LIST_MAX)
463 return -XFS_ERROR(EINVAL);
465 error = xfs_vget_fsop_handlereq(mp, parinode, &al_hreq.hreq,
470 kbuf = kmalloc(al_hreq.buflen, GFP_KERNEL);
474 cursor = (attrlist_cursor_kern_t *)&al_hreq.pos;
475 VOP_ATTR_LIST(vp, kbuf, al_hreq.buflen, al_hreq.flags,
476 cursor, NULL, error);
480 if (copy_to_user(al_hreq.buffer, kbuf, al_hreq.buflen))
492 xfs_attrmulti_attr_get(
502 if (*len > XATTR_SIZE_MAX)
504 kbuf = kmalloc(*len, GFP_KERNEL);
508 VOP_ATTR_GET(vp, name, kbuf, len, flags, NULL, error);
512 if (copy_to_user(ubuf, kbuf, *len))
521 xfs_attrmulti_attr_set(
524 const char __user *ubuf,
531 if (IS_RDONLY(&vp->v_inode))
533 if (IS_IMMUTABLE(&vp->v_inode) || IS_APPEND(&vp->v_inode))
535 if (len > XATTR_SIZE_MAX)
538 kbuf = kmalloc(len, GFP_KERNEL);
542 if (copy_from_user(kbuf, ubuf, len))
545 VOP_ATTR_SET(vp, name, kbuf, len, flags, NULL, error);
553 xfs_attrmulti_attr_remove(
561 if (IS_RDONLY(&vp->v_inode))
563 if (IS_IMMUTABLE(&vp->v_inode) || IS_APPEND(&vp->v_inode))
566 VOP_ATTR_REMOVE(vp, name, flags, NULL, error);
571 xfs_attrmulti_by_handle(
574 struct file *parfilp,
575 struct inode *parinode)
578 xfs_attr_multiop_t *ops;
579 xfs_fsop_attrmulti_handlereq_t am_hreq;
582 unsigned int i, size;
585 if (!capable(CAP_SYS_ADMIN))
586 return -XFS_ERROR(EPERM);
587 if (copy_from_user(&am_hreq, arg, sizeof(xfs_fsop_attrmulti_handlereq_t)))
588 return -XFS_ERROR(EFAULT);
590 error = xfs_vget_fsop_handlereq(mp, parinode, &am_hreq.hreq, &vp, &inode);
595 size = am_hreq.opcount * sizeof(attr_multiop_t);
596 if (!size || size > 16 * PAGE_SIZE)
600 ops = kmalloc(size, GFP_KERNEL);
605 if (copy_from_user(ops, am_hreq.ops, size))
608 attr_name = kmalloc(MAXNAMELEN, GFP_KERNEL);
614 for (i = 0; i < am_hreq.opcount; i++) {
615 ops[i].am_error = strncpy_from_user(attr_name,
616 ops[i].am_attrname, MAXNAMELEN);
617 if (ops[i].am_error == 0 || ops[i].am_error == MAXNAMELEN)
619 if (ops[i].am_error < 0)
622 switch (ops[i].am_opcode) {
624 ops[i].am_error = xfs_attrmulti_attr_get(vp,
625 attr_name, ops[i].am_attrvalue,
626 &ops[i].am_length, ops[i].am_flags);
629 ops[i].am_error = xfs_attrmulti_attr_set(vp,
630 attr_name, ops[i].am_attrvalue,
631 ops[i].am_length, ops[i].am_flags);
634 ops[i].am_error = xfs_attrmulti_attr_remove(vp,
635 attr_name, ops[i].am_flags);
638 ops[i].am_error = EINVAL;
642 if (copy_to_user(am_hreq.ops, ops, size))
643 error = XFS_ERROR(EFAULT);
654 /* prototypes for a few of the stack-hungry cases that have
655 * their own functions. Functions are defined after their use
656 * so gcc doesn't get fancy and inline them with -03 */
674 xfs_ioc_fsgeometry_v1(
718 vp = LINVFS_GET_VP(inode);
720 vn_trace_entry(vp, "xfs_ioctl", (inst_t *)__return_address);
722 ip = XFS_BHVTOI(bdp);
727 case XFS_IOC_ALLOCSP:
730 case XFS_IOC_UNRESVSP:
731 case XFS_IOC_ALLOCSP64:
732 case XFS_IOC_FREESP64:
733 case XFS_IOC_RESVSP64:
734 case XFS_IOC_UNRESVSP64:
736 * Only allow the sys admin to reserve space unless
737 * unwritten extents are enabled.
739 if (!XFS_SB_VERSION_HASEXTFLGBIT(&mp->m_sb) &&
740 !capable(CAP_SYS_ADMIN))
743 return xfs_ioc_space(bdp, vp, filp, ioflags, cmd, arg);
745 case XFS_IOC_DIOINFO: {
747 xfs_buftarg_t *target =
748 (ip->i_d.di_flags & XFS_DIFLAG_REALTIME) ?
749 mp->m_rtdev_targp : mp->m_ddev_targp;
751 da.d_mem = da.d_miniosz = 1 << target->bt_sshift;
752 da.d_maxiosz = INT_MAX & ~(da.d_miniosz - 1);
754 if (copy_to_user(arg, &da, sizeof(da)))
755 return -XFS_ERROR(EFAULT);
759 case XFS_IOC_FSBULKSTAT_SINGLE:
760 case XFS_IOC_FSBULKSTAT:
761 case XFS_IOC_FSINUMBERS:
762 return xfs_ioc_bulkstat(mp, cmd, arg);
764 case XFS_IOC_FSGEOMETRY_V1:
765 return xfs_ioc_fsgeometry_v1(mp, arg);
767 case XFS_IOC_FSGEOMETRY:
768 return xfs_ioc_fsgeometry(mp, arg);
770 case XFS_IOC_GETVERSION:
771 case XFS_IOC_GETXFLAGS:
772 case XFS_IOC_SETXFLAGS:
773 case XFS_IOC_FSGETXATTR:
774 case XFS_IOC_FSSETXATTR:
775 case XFS_IOC_FSGETXATTRA:
776 return xfs_ioc_xattr(vp, ip, filp, cmd, arg);
778 case XFS_IOC_FSSETDM: {
779 struct fsdmidata dmi;
781 if (copy_from_user(&dmi, arg, sizeof(dmi)))
782 return -XFS_ERROR(EFAULT);
784 error = xfs_set_dmattrs(bdp, dmi.fsd_dmevmask, dmi.fsd_dmstate,
789 case XFS_IOC_GETBMAP:
790 case XFS_IOC_GETBMAPA:
791 return xfs_ioc_getbmap(bdp, filp, ioflags, cmd, arg);
793 case XFS_IOC_GETBMAPX:
794 return xfs_ioc_getbmapx(bdp, arg);
796 case XFS_IOC_FD_TO_HANDLE:
797 case XFS_IOC_PATH_TO_HANDLE:
798 case XFS_IOC_PATH_TO_FSHANDLE:
799 return xfs_find_handle(cmd, arg);
801 case XFS_IOC_OPEN_BY_HANDLE:
802 return xfs_open_by_handle(mp, arg, filp, inode);
804 case XFS_IOC_FSSETDM_BY_HANDLE:
805 return xfs_fssetdm_by_handle(mp, arg, filp, inode);
807 case XFS_IOC_READLINK_BY_HANDLE:
808 return xfs_readlink_by_handle(mp, arg, filp, inode);
810 case XFS_IOC_ATTRLIST_BY_HANDLE:
811 return xfs_attrlist_by_handle(mp, arg, filp, inode);
813 case XFS_IOC_ATTRMULTI_BY_HANDLE:
814 return xfs_attrmulti_by_handle(mp, arg, filp, inode);
816 case XFS_IOC_SWAPEXT: {
817 error = xfs_swapext((struct xfs_swapext __user *)arg);
821 case XFS_IOC_FSCOUNTS: {
822 xfs_fsop_counts_t out;
824 error = xfs_fs_counts(mp, &out);
828 if (copy_to_user(arg, &out, sizeof(out)))
829 return -XFS_ERROR(EFAULT);
833 case XFS_IOC_SET_RESBLKS: {
834 xfs_fsop_resblks_t inout;
837 if (!capable(CAP_SYS_ADMIN))
840 if (copy_from_user(&inout, arg, sizeof(inout)))
841 return -XFS_ERROR(EFAULT);
843 /* input parameter is passed in resblks field of structure */
845 error = xfs_reserve_blocks(mp, &in, &inout);
849 if (copy_to_user(arg, &inout, sizeof(inout)))
850 return -XFS_ERROR(EFAULT);
854 case XFS_IOC_GET_RESBLKS: {
855 xfs_fsop_resblks_t out;
857 if (!capable(CAP_SYS_ADMIN))
860 error = xfs_reserve_blocks(mp, NULL, &out);
864 if (copy_to_user(arg, &out, sizeof(out)))
865 return -XFS_ERROR(EFAULT);
870 case XFS_IOC_FSGROWFSDATA: {
871 xfs_growfs_data_t in;
873 if (!capable(CAP_SYS_ADMIN))
876 if (copy_from_user(&in, arg, sizeof(in)))
877 return -XFS_ERROR(EFAULT);
879 error = xfs_growfs_data(mp, &in);
883 case XFS_IOC_FSGROWFSLOG: {
886 if (!capable(CAP_SYS_ADMIN))
889 if (copy_from_user(&in, arg, sizeof(in)))
890 return -XFS_ERROR(EFAULT);
892 error = xfs_growfs_log(mp, &in);
896 case XFS_IOC_FSGROWFSRT: {
899 if (!capable(CAP_SYS_ADMIN))
902 if (copy_from_user(&in, arg, sizeof(in)))
903 return -XFS_ERROR(EFAULT);
905 error = xfs_growfs_rt(mp, &in);
910 if (!capable(CAP_SYS_ADMIN))
913 if (inode->i_sb->s_frozen == SB_UNFROZEN)
914 freeze_bdev(inode->i_sb->s_bdev);
918 if (!capable(CAP_SYS_ADMIN))
920 if (inode->i_sb->s_frozen != SB_UNFROZEN)
921 thaw_bdev(inode->i_sb->s_bdev, inode->i_sb);
924 case XFS_IOC_GOINGDOWN: {
927 if (!capable(CAP_SYS_ADMIN))
930 if (get_user(in, (__uint32_t __user *)arg))
931 return -XFS_ERROR(EFAULT);
933 error = xfs_fs_goingdown(mp, in);
937 case XFS_IOC_ERROR_INJECTION: {
938 xfs_error_injection_t in;
940 if (!capable(CAP_SYS_ADMIN))
943 if (copy_from_user(&in, arg, sizeof(in)))
944 return -XFS_ERROR(EFAULT);
946 error = xfs_errortag_add(in.errtag, mp);
950 case XFS_IOC_ERROR_CLEARALL:
951 if (!capable(CAP_SYS_ADMIN))
954 error = xfs_errortag_clearall(mp);
975 if (vp->v_inode.i_flags & (S_IMMUTABLE|S_APPEND))
976 return -XFS_ERROR(EPERM);
978 if (!(filp->f_mode & FMODE_WRITE))
979 return -XFS_ERROR(EBADF);
982 return -XFS_ERROR(EINVAL);
984 if (copy_from_user(&bf, arg, sizeof(bf)))
985 return -XFS_ERROR(EFAULT);
987 if (filp->f_flags & (O_NDELAY|O_NONBLOCK))
988 attr_flags |= ATTR_NONBLOCK;
989 if (ioflags & IO_INVIS)
990 attr_flags |= ATTR_DMI;
992 error = xfs_change_file_space(bdp, cmd, &bf, filp->f_pos,
1003 xfs_fsop_bulkreq_t bulkreq;
1004 int count; /* # of records returned */
1005 xfs_ino_t inlast; /* last inode number */
1009 /* done = 1 if there are more stats to get and if bulkstat */
1010 /* should be called again (unused here, but used in dmapi) */
1012 if (!capable(CAP_SYS_ADMIN))
1015 if (XFS_FORCED_SHUTDOWN(mp))
1016 return -XFS_ERROR(EIO);
1018 if (copy_from_user(&bulkreq, arg, sizeof(xfs_fsop_bulkreq_t)))
1019 return -XFS_ERROR(EFAULT);
1021 if (copy_from_user(&inlast, bulkreq.lastip, sizeof(__s64)))
1022 return -XFS_ERROR(EFAULT);
1024 if ((count = bulkreq.icount) <= 0)
1025 return -XFS_ERROR(EINVAL);
1027 if (cmd == XFS_IOC_FSINUMBERS)
1028 error = xfs_inumbers(mp, &inlast, &count,
1030 else if (cmd == XFS_IOC_FSBULKSTAT_SINGLE)
1031 error = xfs_bulkstat_single(mp, &inlast,
1032 bulkreq.ubuffer, &done);
1033 else { /* XFS_IOC_FSBULKSTAT */
1034 if (count == 1 && inlast != 0) {
1036 error = xfs_bulkstat_single(mp, &inlast,
1037 bulkreq.ubuffer, &done);
1039 error = xfs_bulkstat(mp, &inlast, &count,
1040 (bulkstat_one_pf)xfs_bulkstat_one, NULL,
1041 sizeof(xfs_bstat_t), bulkreq.ubuffer,
1042 BULKSTAT_FG_QUICK, &done);
1049 if (bulkreq.ocount != NULL) {
1050 if (copy_to_user(bulkreq.lastip, &inlast,
1052 return -XFS_ERROR(EFAULT);
1054 if (copy_to_user(bulkreq.ocount, &count, sizeof(count)))
1055 return -XFS_ERROR(EFAULT);
1062 xfs_ioc_fsgeometry_v1(
1066 xfs_fsop_geom_v1_t fsgeo;
1069 error = xfs_fs_geometry(mp, (xfs_fsop_geom_t *)&fsgeo, 3);
1073 if (copy_to_user(arg, &fsgeo, sizeof(fsgeo)))
1074 return -XFS_ERROR(EFAULT);
1083 xfs_fsop_geom_t fsgeo;
1086 error = xfs_fs_geometry(mp, &fsgeo, 4);
1090 if (copy_to_user(arg, &fsgeo, sizeof(fsgeo)))
1091 return -XFS_ERROR(EFAULT);
1096 * Linux extended inode flags interface.
1098 #define LINUX_XFLAG_SYNC 0x00000008 /* Synchronous updates */
1099 #define LINUX_XFLAG_IMMUTABLE 0x00000010 /* Immutable file */
1100 #define LINUX_XFLAG_APPEND 0x00000020 /* writes to file may only append */
1101 #define LINUX_XFLAG_NODUMP 0x00000040 /* do not dump file */
1102 #define LINUX_XFLAG_NOATIME 0x00000080 /* do not update atime */
1105 xfs_merge_ioc_xflags(
1109 unsigned int xflags = start;
1111 if (flags & LINUX_XFLAG_IMMUTABLE)
1112 xflags |= XFS_XFLAG_IMMUTABLE;
1114 xflags &= ~XFS_XFLAG_IMMUTABLE;
1115 if (flags & LINUX_XFLAG_APPEND)
1116 xflags |= XFS_XFLAG_APPEND;
1118 xflags &= ~XFS_XFLAG_APPEND;
1119 if (flags & LINUX_XFLAG_SYNC)
1120 xflags |= XFS_XFLAG_SYNC;
1122 xflags &= ~XFS_XFLAG_SYNC;
1123 if (flags & LINUX_XFLAG_NOATIME)
1124 xflags |= XFS_XFLAG_NOATIME;
1126 xflags &= ~XFS_XFLAG_NOATIME;
1127 if (flags & LINUX_XFLAG_NODUMP)
1128 xflags |= XFS_XFLAG_NODUMP;
1130 xflags &= ~XFS_XFLAG_NODUMP;
1137 __uint16_t di_flags)
1139 unsigned int flags = 0;
1141 if (di_flags & XFS_DIFLAG_IMMUTABLE)
1142 flags |= LINUX_XFLAG_IMMUTABLE;
1143 if (di_flags & XFS_DIFLAG_APPEND)
1144 flags |= LINUX_XFLAG_APPEND;
1145 if (di_flags & XFS_DIFLAG_SYNC)
1146 flags |= LINUX_XFLAG_SYNC;
1147 if (di_flags & XFS_DIFLAG_NOATIME)
1148 flags |= LINUX_XFLAG_NOATIME;
1149 if (di_flags & XFS_DIFLAG_NODUMP)
1150 flags |= LINUX_XFLAG_NODUMP;
1169 case XFS_IOC_FSGETXATTR: {
1170 va.va_mask = XFS_AT_XFLAGS | XFS_AT_EXTSIZE | \
1171 XFS_AT_NEXTENTS | XFS_AT_PROJID;
1172 VOP_GETATTR(vp, &va, 0, NULL, error);
1176 fa.fsx_xflags = va.va_xflags;
1177 fa.fsx_extsize = va.va_extsize;
1178 fa.fsx_nextents = va.va_nextents;
1179 fa.fsx_projid = va.va_projid;
1181 if (copy_to_user(arg, &fa, sizeof(fa)))
1182 return -XFS_ERROR(EFAULT);
1186 case XFS_IOC_FSSETXATTR: {
1187 if (copy_from_user(&fa, arg, sizeof(fa)))
1188 return -XFS_ERROR(EFAULT);
1191 if (filp->f_flags & (O_NDELAY|O_NONBLOCK))
1192 attr_flags |= ATTR_NONBLOCK;
1194 va.va_mask = XFS_AT_XFLAGS | XFS_AT_EXTSIZE | XFS_AT_PROJID;
1195 va.va_xflags = fa.fsx_xflags;
1196 va.va_extsize = fa.fsx_extsize;
1197 va.va_projid = fa.fsx_projid;
1199 VOP_SETATTR(vp, &va, attr_flags, NULL, error);
1201 vn_revalidate(vp); /* update Linux inode flags */
1205 case XFS_IOC_FSGETXATTRA: {
1206 va.va_mask = XFS_AT_XFLAGS | XFS_AT_EXTSIZE | \
1207 XFS_AT_ANEXTENTS | XFS_AT_PROJID;
1208 VOP_GETATTR(vp, &va, 0, NULL, error);
1212 fa.fsx_xflags = va.va_xflags;
1213 fa.fsx_extsize = va.va_extsize;
1214 fa.fsx_nextents = va.va_anextents;
1215 fa.fsx_projid = va.va_projid;
1217 if (copy_to_user(arg, &fa, sizeof(fa)))
1218 return -XFS_ERROR(EFAULT);
1222 case XFS_IOC_GETXFLAGS: {
1223 flags = xfs_di2lxflags(ip->i_d.di_flags);
1224 if (copy_to_user(arg, &flags, sizeof(flags)))
1225 return -XFS_ERROR(EFAULT);
1229 case XFS_IOC_SETXFLAGS: {
1230 if (copy_from_user(&flags, arg, sizeof(flags)))
1231 return -XFS_ERROR(EFAULT);
1233 if (flags & ~(LINUX_XFLAG_IMMUTABLE | LINUX_XFLAG_APPEND | \
1234 LINUX_XFLAG_NOATIME | LINUX_XFLAG_NODUMP | \
1236 return -XFS_ERROR(EOPNOTSUPP);
1239 if (filp->f_flags & (O_NDELAY|O_NONBLOCK))
1240 attr_flags |= ATTR_NONBLOCK;
1242 va.va_mask = XFS_AT_XFLAGS;
1243 va.va_xflags = xfs_merge_ioc_xflags(flags,
1246 VOP_SETATTR(vp, &va, attr_flags, NULL, error);
1248 vn_revalidate(vp); /* update Linux inode flags */
1252 case XFS_IOC_GETVERSION: {
1253 flags = LINVFS_GET_IP(vp)->i_generation;
1254 if (copy_to_user(arg, &flags, sizeof(flags)))
1255 return -XFS_ERROR(EFAULT);
1276 if (copy_from_user(&bm, arg, sizeof(bm)))
1277 return -XFS_ERROR(EFAULT);
1279 if (bm.bmv_count < 2)
1280 return -XFS_ERROR(EINVAL);
1282 iflags = (cmd == XFS_IOC_GETBMAPA ? BMV_IF_ATTRFORK : 0);
1283 if (ioflags & IO_INVIS)
1284 iflags |= BMV_IF_NO_DMAPI_READ;
1286 error = xfs_getbmap(bdp, &bm, (struct getbmap __user *)arg+1, iflags);
1290 if (copy_to_user(arg, &bm, sizeof(bm)))
1291 return -XFS_ERROR(EFAULT);
1300 struct getbmapx bmx;
1305 if (copy_from_user(&bmx, arg, sizeof(bmx)))
1306 return -XFS_ERROR(EFAULT);
1308 if (bmx.bmv_count < 2)
1309 return -XFS_ERROR(EINVAL);
1312 * Map input getbmapx structure to a getbmap
1313 * structure for xfs_getbmap.
1315 GETBMAP_CONVERT(bmx, bm);
1317 iflags = bmx.bmv_iflags;
1319 if (iflags & (~BMV_IF_VALID))
1320 return -XFS_ERROR(EINVAL);
1322 iflags |= BMV_IF_EXTENDED;
1324 error = xfs_getbmap(bdp, &bm, (struct getbmapx __user *)arg+1, iflags);
1328 GETBMAP_CONVERT(bm, bmx);
1330 if (copy_to_user(arg, &bmx, sizeof(bmx)))
1331 return -XFS_ERROR(EFAULT);