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_quota.h"
31 #include "xfs_mount.h"
32 #include "xfs_bmap_btree.h"
33 #include "xfs_alloc_btree.h"
34 #include "xfs_ialloc_btree.h"
35 #include "xfs_dir_sf.h"
36 #include "xfs_dir2_sf.h"
37 #include "xfs_attr_sf.h"
38 #include "xfs_dinode.h"
39 #include "xfs_inode.h"
41 #include "xfs_btree.h"
42 #include "xfs_ialloc.h"
43 #include "xfs_rtalloc.h"
44 #include "xfs_error.h"
45 #include "xfs_itable.h"
51 #include "xfs_buf_item.h"
52 #include "xfs_utils.h"
54 #include <linux/capability.h>
55 #include <linux/xattr.h>
56 #include <linux/namei.h>
57 #include <linux/security.h>
60 * Get a XFS inode from a given vnode.
68 bdp = bhv_lookup_range(VN_BHV_HEAD(vp),
69 VNODE_POSITION_XFS, VNODE_POSITION_XFS);
70 if (unlikely(bdp == NULL))
72 return XFS_BHVTOI(bdp);
76 * Bring the atime in the XFS inode uptodate.
77 * Used before logging the inode to disk or when the Linux inode goes away.
80 xfs_synchronize_atime(
85 vp = XFS_ITOV_NULL(ip);
87 struct inode *inode = &vp->v_inode;
88 ip->i_d.di_atime.t_sec = (__int32_t)inode->i_atime.tv_sec;
89 ip->i_d.di_atime.t_nsec = (__int32_t)inode->i_atime.tv_nsec;
94 * Change the requested timestamp in the given inode.
95 * We don't lock across timestamp updates, and we don't log them but
96 * we do record the fact that there is dirty information in core.
98 * NOTE -- callers MUST combine XFS_ICHGTIME_MOD or XFS_ICHGTIME_CHG
99 * with XFS_ICHGTIME_ACC to be sure that access time
100 * update will take. Calling first with XFS_ICHGTIME_ACC
101 * and then XFS_ICHGTIME_MOD may fail to modify the access
102 * timestamp if the filesystem is mounted noacctm.
109 struct inode *inode = LINVFS_GET_IP(XFS_ITOV(ip));
113 if (flags & XFS_ICHGTIME_MOD) {
115 ip->i_d.di_mtime.t_sec = (__int32_t)tv.tv_sec;
116 ip->i_d.di_mtime.t_nsec = (__int32_t)tv.tv_nsec;
118 if (flags & XFS_ICHGTIME_ACC) {
120 ip->i_d.di_atime.t_sec = (__int32_t)tv.tv_sec;
121 ip->i_d.di_atime.t_nsec = (__int32_t)tv.tv_nsec;
123 if (flags & XFS_ICHGTIME_CHG) {
125 ip->i_d.di_ctime.t_sec = (__int32_t)tv.tv_sec;
126 ip->i_d.di_ctime.t_nsec = (__int32_t)tv.tv_nsec;
130 * We update the i_update_core field _after_ changing
131 * the timestamps in order to coordinate properly with
132 * xfs_iflush() so that we don't lose timestamp updates.
133 * This keeps us from having to hold the inode lock
134 * while doing this. We use the SYNCHRONIZE macro to
135 * ensure that the compiler does not reorder the update
136 * of i_update_core above the timestamp updates above.
139 ip->i_update_core = 1;
140 if (!(inode->i_state & I_LOCK))
141 mark_inode_dirty_sync(inode);
145 * Variant on the above which avoids querying the system clock
146 * in situations where we know the Linux inode timestamps have
147 * just been updated (and so we can update our inode cheaply).
158 * Atime updates for read() & friends are handled lazily now, and
159 * explicit updates must go through xfs_ichgtime()
161 ASSERT((flags & XFS_ICHGTIME_ACC) == 0);
164 * We're not supposed to change timestamps in readonly-mounted
165 * filesystems. Throw it away if anyone asks us.
167 if (unlikely(IS_RDONLY(inode)))
170 if (flags & XFS_ICHGTIME_MOD) {
171 tvp = &inode->i_mtime;
172 ip->i_d.di_mtime.t_sec = (__int32_t)tvp->tv_sec;
173 ip->i_d.di_mtime.t_nsec = (__int32_t)tvp->tv_nsec;
175 if (flags & XFS_ICHGTIME_CHG) {
176 tvp = &inode->i_ctime;
177 ip->i_d.di_ctime.t_sec = (__int32_t)tvp->tv_sec;
178 ip->i_d.di_ctime.t_nsec = (__int32_t)tvp->tv_nsec;
182 * We update the i_update_core field _after_ changing
183 * the timestamps in order to coordinate properly with
184 * xfs_iflush() so that we don't lose timestamp updates.
185 * This keeps us from having to hold the inode lock
186 * while doing this. We use the SYNCHRONIZE macro to
187 * ensure that the compiler does not reorder the update
188 * of i_update_core above the timestamp updates above.
191 ip->i_update_core = 1;
192 if (!(inode->i_state & I_LOCK))
193 mark_inode_dirty_sync(inode);
198 * Pull the link count and size up from the xfs inode to the linux inode
204 vnode_t *vp = LINVFS_GET_VP(ip);
208 va.va_mask = XFS_AT_NLINK|XFS_AT_SIZE|XFS_AT_NBLOCKS;
209 VOP_GETATTR(vp, &va, ATTR_LAZY, NULL, error);
210 if (likely(!error)) {
211 ip->i_nlink = va.va_nlink;
212 ip->i_blocks = va.va_nblocks;
214 /* we're under i_mutex so i_size can't change under us */
215 if (i_size_read(ip) != va.va_size)
216 i_size_write(ip, va.va_size);
221 * Hook in SELinux. This is not quite correct yet, what we really need
222 * here (as we do for default ACLs) is a mechanism by which creation of
223 * these attrs can be journalled at inode creation time (along with the
224 * inode, of course, such that log replay can't cause these to be lost).
227 linvfs_init_security(
231 struct inode *ip = LINVFS_GET_IP(vp);
237 error = security_inode_init_security(ip, dir, &name, &value, &length);
239 if (error == -EOPNOTSUPP)
244 VOP_ATTR_SET(vp, name, value, length, ATTR_SECURE, NULL, error);
254 * Determine whether a process has a valid fs_struct (kernel daemons
255 * like knfsd don't have an fs_struct).
257 * XXX(hch): nfsd is broken, better fix it instead.
260 has_fs_struct(struct task_struct *task)
262 return (task->fs != init_task.fs);
269 struct dentry *dentry,
272 struct dentry teardown = {};
276 * If we can't add the ACL or we fail in
277 * linvfs_init_security we must back out.
278 * ENOSPC can hit here, among other things.
280 teardown.d_inode = LINVFS_GET_IP(vp);
281 teardown.d_name = dentry->d_name;
284 VOP_RMDIR(dvp, &teardown, NULL, err2);
286 VOP_REMOVE(dvp, &teardown, NULL, err2);
293 struct dentry *dentry,
299 vnode_t *vp = NULL, *dvp = LINVFS_GET_VP(dir);
300 xfs_acl_t *default_acl = NULL;
301 attrexists_t test_default_acl = _ACL_DEFAULT_EXISTS;
305 * Irix uses Missed'em'V split, but doesn't want to see
306 * the upper 5 bits of (14bit) major.
308 if (!sysv_valid_dev(rdev) || MAJOR(rdev) & ~0x1ff)
311 if (test_default_acl && test_default_acl(dvp)) {
312 if (!_ACL_ALLOC(default_acl))
314 if (!_ACL_GET_DEFAULT(dvp, default_acl)) {
315 _ACL_FREE(default_acl);
320 if (IS_POSIXACL(dir) && !default_acl && has_fs_struct(current))
321 mode &= ~current->fs->umask;
323 memset(&va, 0, sizeof(va));
324 va.va_mask = XFS_AT_TYPE|XFS_AT_MODE;
327 switch (mode & S_IFMT) {
328 case S_IFCHR: case S_IFBLK: case S_IFIFO: case S_IFSOCK:
329 va.va_rdev = sysv_encode_dev(rdev);
330 va.va_mask |= XFS_AT_RDEV;
333 VOP_CREATE(dvp, dentry, &va, &vp, NULL, error);
336 VOP_MKDIR(dvp, dentry, &va, &vp, NULL, error);
345 error = linvfs_init_security(vp, dir);
347 cleanup_inode(dvp, vp, dentry, mode);
352 error = _ACL_INHERIT(vp, &va, default_acl);
356 cleanup_inode(dvp, vp, dentry, mode);
358 _ACL_FREE(default_acl);
363 ip = LINVFS_GET_IP(vp);
365 if (S_ISCHR(mode) || S_ISBLK(mode))
367 else if (S_ISDIR(mode))
369 d_instantiate(dentry, ip);
370 validate_fields(dir);
378 struct dentry *dentry,
380 struct nameidata *nd)
382 return linvfs_mknod(dir, dentry, mode, 0);
388 struct dentry *dentry,
391 return linvfs_mknod(dir, dentry, mode|S_IFDIR, 0);
394 STATIC struct dentry *
397 struct dentry *dentry,
398 struct nameidata *nd)
400 struct vnode *vp = LINVFS_GET_VP(dir), *cvp;
403 if (dentry->d_name.len >= MAXNAMELEN)
404 return ERR_PTR(-ENAMETOOLONG);
406 VOP_LOOKUP(vp, dentry, &cvp, 0, NULL, NULL, error);
408 if (unlikely(error != ENOENT))
409 return ERR_PTR(-error);
414 return d_splice_alias(LINVFS_GET_IP(cvp), dentry);
419 struct dentry *old_dentry,
421 struct dentry *dentry)
423 struct inode *ip; /* inode of guy being linked to */
424 vnode_t *tdvp; /* target directory for new name/link */
425 vnode_t *vp; /* vp of name being linked */
428 ip = old_dentry->d_inode; /* inode being linked to */
429 if (S_ISDIR(ip->i_mode))
432 tdvp = LINVFS_GET_VP(dir);
433 vp = LINVFS_GET_VP(ip);
435 VOP_LINK(tdvp, vp, dentry, NULL, error);
440 d_instantiate(dentry, ip);
448 struct dentry *dentry)
451 vnode_t *dvp; /* directory containing name to remove */
454 inode = dentry->d_inode;
455 dvp = LINVFS_GET_VP(dir);
457 VOP_REMOVE(dvp, dentry, NULL, error);
459 validate_fields(dir); /* For size only */
460 validate_fields(inode);
469 struct dentry *dentry,
474 vnode_t *dvp; /* directory containing name of symlink */
475 vnode_t *cvp; /* used to lookup symlink to put in dentry */
478 dvp = LINVFS_GET_VP(dir);
481 memset(&va, 0, sizeof(va));
482 va.va_mode = S_IFLNK |
483 (irix_symlink_mode ? 0777 & ~current->fs->umask : S_IRWXUGO);
484 va.va_mask = XFS_AT_TYPE|XFS_AT_MODE;
487 VOP_SYMLINK(dvp, dentry, &va, (char *)symname, &cvp, NULL, error);
488 if (likely(!error && cvp)) {
489 error = linvfs_init_security(cvp, dir);
490 if (likely(!error)) {
491 ip = LINVFS_GET_IP(cvp);
492 d_instantiate(dentry, ip);
493 validate_fields(dir);
503 struct dentry *dentry)
505 struct inode *inode = dentry->d_inode;
506 vnode_t *dvp = LINVFS_GET_VP(dir);
509 VOP_RMDIR(dvp, dentry, NULL, error);
511 validate_fields(inode);
512 validate_fields(dir);
520 struct dentry *odentry,
522 struct dentry *ndentry)
524 struct inode *new_inode = ndentry->d_inode;
525 vnode_t *fvp; /* from directory */
526 vnode_t *tvp; /* target directory */
529 fvp = LINVFS_GET_VP(odir);
530 tvp = LINVFS_GET_VP(ndir);
532 VOP_RENAME(fvp, odentry, tvp, ndentry, NULL, error);
537 validate_fields(new_inode);
539 validate_fields(odir);
541 validate_fields(ndir);
546 * careful here - this function can get called recursively, so
547 * we need to be very careful about how much stack we use.
548 * uio is kmalloced for this reason...
552 struct dentry *dentry,
553 struct nameidata *nd)
564 link = (char *)kmalloc(MAXPATHLEN+1, GFP_KERNEL);
566 nd_set_link(nd, ERR_PTR(-ENOMEM));
570 uio = (uio_t *)kmalloc(sizeof(uio_t), GFP_KERNEL);
573 nd_set_link(nd, ERR_PTR(-ENOMEM));
577 vp = LINVFS_GET_VP(dentry->d_inode);
580 iov.iov_len = MAXPATHLEN;
584 uio->uio_segflg = UIO_SYSSPACE;
585 uio->uio_resid = MAXPATHLEN;
588 VOP_READLINK(vp, uio, 0, NULL, error);
591 link = ERR_PTR(-error);
593 link[MAXPATHLEN - uio->uio_resid] = '\0';
597 nd_set_link(nd, link);
603 struct dentry *dentry,
604 struct nameidata *nd,
607 char *s = nd_get_link(nd);
613 #ifdef CONFIG_XFS_POSIX_ACL
618 struct nameidata *nd)
620 vnode_t *vp = LINVFS_GET_VP(inode);
623 mode <<= 6; /* convert from linux to vnode access bits */
624 VOP_ACCESS(vp, mode, NULL, error);
628 #define linvfs_permission NULL
633 struct vfsmount *mnt,
634 struct dentry *dentry,
637 struct inode *inode = dentry->d_inode;
638 vnode_t *vp = LINVFS_GET_VP(inode);
641 if (unlikely(vp->v_flag & VMODIFIED))
642 error = vn_revalidate(vp);
644 generic_fillattr(inode, stat);
650 struct dentry *dentry,
653 struct inode *inode = dentry->d_inode;
654 unsigned int ia_valid = attr->ia_valid;
655 vnode_t *vp = LINVFS_GET_VP(inode);
660 memset(&vattr, 0, sizeof(vattr_t));
661 if (ia_valid & ATTR_UID) {
662 vattr.va_mask |= XFS_AT_UID;
663 vattr.va_uid = attr->ia_uid;
665 if (ia_valid & ATTR_GID) {
666 vattr.va_mask |= XFS_AT_GID;
667 vattr.va_gid = attr->ia_gid;
669 if (ia_valid & ATTR_SIZE) {
670 vattr.va_mask |= XFS_AT_SIZE;
671 vattr.va_size = attr->ia_size;
673 if (ia_valid & ATTR_ATIME) {
674 vattr.va_mask |= XFS_AT_ATIME;
675 vattr.va_atime = attr->ia_atime;
677 if (ia_valid & ATTR_MTIME) {
678 vattr.va_mask |= XFS_AT_MTIME;
679 vattr.va_mtime = attr->ia_mtime;
681 if (ia_valid & ATTR_CTIME) {
682 vattr.va_mask |= XFS_AT_CTIME;
683 vattr.va_ctime = attr->ia_ctime;
685 if (ia_valid & ATTR_MODE) {
686 vattr.va_mask |= XFS_AT_MODE;
687 vattr.va_mode = attr->ia_mode;
688 if (!in_group_p(inode->i_gid) && !capable(CAP_FSETID))
689 inode->i_mode &= ~S_ISGID;
692 if (ia_valid & (ATTR_MTIME_SET | ATTR_ATIME_SET))
695 if ((ia_valid & ATTR_NO_BLOCK))
696 flags |= ATTR_NONBLOCK;
699 VOP_SETATTR(vp, &vattr, flags, NULL, error);
710 block_truncate_page(inode->i_mapping, inode->i_size, linvfs_get_block);
715 struct dentry *dentry,
721 vnode_t *vp = LINVFS_GET_VP(dentry->d_inode);
722 char *attr = (char *)name;
727 namesp = attr_lookup_namespace(attr, attr_namespaces, ATTR_NAMECOUNT);
730 attr += namesp->attr_namelen;
731 error = namesp->attr_capable(vp, NULL);
735 /* Convert Linux syscall to XFS internal ATTR flags */
736 if (flags & XATTR_CREATE)
737 xflags |= ATTR_CREATE;
738 if (flags & XATTR_REPLACE)
739 xflags |= ATTR_REPLACE;
740 xflags |= namesp->attr_flag;
741 return namesp->attr_set(vp, attr, (void *)data, size, xflags);
746 struct dentry *dentry,
751 vnode_t *vp = LINVFS_GET_VP(dentry->d_inode);
752 char *attr = (char *)name;
757 namesp = attr_lookup_namespace(attr, attr_namespaces, ATTR_NAMECOUNT);
760 attr += namesp->attr_namelen;
761 error = namesp->attr_capable(vp, NULL);
765 /* Convert Linux syscall to XFS internal ATTR flags */
767 xflags |= ATTR_KERNOVAL;
770 xflags |= namesp->attr_flag;
771 return namesp->attr_get(vp, attr, (void *)data, size, xflags);
776 struct dentry *dentry,
780 vnode_t *vp = LINVFS_GET_VP(dentry->d_inode);
781 int error, xflags = ATTR_KERNAMELS;
785 xflags |= ATTR_KERNOVAL;
786 xflags |= capable(CAP_SYS_ADMIN) ? ATTR_KERNFULLS : ATTR_KERNORMALS;
788 error = attr_generic_list(vp, data, size, xflags, &result);
796 struct dentry *dentry,
799 vnode_t *vp = LINVFS_GET_VP(dentry->d_inode);
800 char *attr = (char *)name;
805 namesp = attr_lookup_namespace(attr, attr_namespaces, ATTR_NAMECOUNT);
808 attr += namesp->attr_namelen;
809 error = namesp->attr_capable(vp, NULL);
812 xflags |= namesp->attr_flag;
813 return namesp->attr_remove(vp, attr, xflags);
817 struct inode_operations linvfs_file_inode_operations = {
818 .permission = linvfs_permission,
819 .truncate = linvfs_truncate,
820 .getattr = linvfs_getattr,
821 .setattr = linvfs_setattr,
822 .setxattr = linvfs_setxattr,
823 .getxattr = linvfs_getxattr,
824 .listxattr = linvfs_listxattr,
825 .removexattr = linvfs_removexattr,
828 struct inode_operations linvfs_dir_inode_operations = {
829 .create = linvfs_create,
830 .lookup = linvfs_lookup,
832 .unlink = linvfs_unlink,
833 .symlink = linvfs_symlink,
834 .mkdir = linvfs_mkdir,
835 .rmdir = linvfs_rmdir,
836 .mknod = linvfs_mknod,
837 .rename = linvfs_rename,
838 .permission = linvfs_permission,
839 .getattr = linvfs_getattr,
840 .setattr = linvfs_setattr,
841 .setxattr = linvfs_setxattr,
842 .getxattr = linvfs_getxattr,
843 .listxattr = linvfs_listxattr,
844 .removexattr = linvfs_removexattr,
847 struct inode_operations linvfs_symlink_inode_operations = {
848 .readlink = generic_readlink,
849 .follow_link = linvfs_follow_link,
850 .put_link = linvfs_put_link,
851 .permission = linvfs_permission,
852 .getattr = linvfs_getattr,
853 .setattr = linvfs_setattr,
854 .setxattr = linvfs_setxattr,
855 .getxattr = linvfs_getxattr,
856 .listxattr = linvfs_listxattr,
857 .removexattr = linvfs_removexattr,