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"
27 #include "xfs_alloc.h"
28 #include "xfs_dmapi.h"
29 #include "xfs_quota.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_dir2_sf.h"
35 #include "xfs_attr_sf.h"
36 #include "xfs_dinode.h"
37 #include "xfs_inode.h"
39 #include "xfs_btree.h"
40 #include "xfs_ialloc.h"
41 #include "xfs_rtalloc.h"
42 #include "xfs_error.h"
43 #include "xfs_itable.h"
47 #include "xfs_buf_item.h"
48 #include "xfs_utils.h"
49 #include "xfs_vnodeops.h"
51 #include <linux/capability.h>
52 #include <linux/xattr.h>
53 #include <linux/namei.h>
54 #include <linux/security.h>
57 * Bring the atime in the XFS inode uptodate.
58 * Used before logging the inode to disk or when the Linux inode goes away.
61 xfs_synchronize_atime(
66 vp = XFS_ITOV_NULL(ip);
68 ip->i_d.di_atime.t_sec = (__int32_t)vp->i_atime.tv_sec;
69 ip->i_d.di_atime.t_nsec = (__int32_t)vp->i_atime.tv_nsec;
74 * Change the requested timestamp in the given inode.
75 * We don't lock across timestamp updates, and we don't log them but
76 * we do record the fact that there is dirty information in core.
78 * NOTE -- callers MUST combine XFS_ICHGTIME_MOD or XFS_ICHGTIME_CHG
79 * with XFS_ICHGTIME_ACC to be sure that access time
80 * update will take. Calling first with XFS_ICHGTIME_ACC
81 * and then XFS_ICHGTIME_MOD may fail to modify the access
82 * timestamp if the filesystem is mounted noacctm.
89 struct inode *inode = vn_to_inode(XFS_ITOV(ip));
93 if (flags & XFS_ICHGTIME_MOD) {
95 ip->i_d.di_mtime.t_sec = (__int32_t)tv.tv_sec;
96 ip->i_d.di_mtime.t_nsec = (__int32_t)tv.tv_nsec;
98 if (flags & XFS_ICHGTIME_ACC) {
100 ip->i_d.di_atime.t_sec = (__int32_t)tv.tv_sec;
101 ip->i_d.di_atime.t_nsec = (__int32_t)tv.tv_nsec;
103 if (flags & XFS_ICHGTIME_CHG) {
105 ip->i_d.di_ctime.t_sec = (__int32_t)tv.tv_sec;
106 ip->i_d.di_ctime.t_nsec = (__int32_t)tv.tv_nsec;
110 * We update the i_update_core field _after_ changing
111 * the timestamps in order to coordinate properly with
112 * xfs_iflush() so that we don't lose timestamp updates.
113 * This keeps us from having to hold the inode lock
114 * while doing this. We use the SYNCHRONIZE macro to
115 * ensure that the compiler does not reorder the update
116 * of i_update_core above the timestamp updates above.
119 ip->i_update_core = 1;
120 if (!(inode->i_state & I_NEW))
121 mark_inode_dirty_sync(inode);
125 * Variant on the above which avoids querying the system clock
126 * in situations where we know the Linux inode timestamps have
127 * just been updated (and so we can update our inode cheaply).
138 * Atime updates for read() & friends are handled lazily now, and
139 * explicit updates must go through xfs_ichgtime()
141 ASSERT((flags & XFS_ICHGTIME_ACC) == 0);
144 * We're not supposed to change timestamps in readonly-mounted
145 * filesystems. Throw it away if anyone asks us.
147 if (unlikely(IS_RDONLY(inode)))
150 if (flags & XFS_ICHGTIME_MOD) {
151 tvp = &inode->i_mtime;
152 ip->i_d.di_mtime.t_sec = (__int32_t)tvp->tv_sec;
153 ip->i_d.di_mtime.t_nsec = (__int32_t)tvp->tv_nsec;
155 if (flags & XFS_ICHGTIME_CHG) {
156 tvp = &inode->i_ctime;
157 ip->i_d.di_ctime.t_sec = (__int32_t)tvp->tv_sec;
158 ip->i_d.di_ctime.t_nsec = (__int32_t)tvp->tv_nsec;
162 * We update the i_update_core field _after_ changing
163 * the timestamps in order to coordinate properly with
164 * xfs_iflush() so that we don't lose timestamp updates.
165 * This keeps us from having to hold the inode lock
166 * while doing this. We use the SYNCHRONIZE macro to
167 * ensure that the compiler does not reorder the update
168 * of i_update_core above the timestamp updates above.
171 ip->i_update_core = 1;
172 if (!(inode->i_state & I_NEW))
173 mark_inode_dirty_sync(inode);
178 * Pull the link count and size up from the xfs inode to the linux inode
184 struct xfs_inode *ip = XFS_I(inode);
187 inode->i_nlink = ip->i_d.di_nlink;
189 XFS_FSB_TO_BB(ip->i_mount, ip->i_d.di_nblocks +
191 /* we're under i_sem so i_size can't change under us */
192 size = XFS_ISIZE(ip);
193 if (i_size_read(inode) != size)
194 i_size_write(inode, size);
198 * Hook in SELinux. This is not quite correct yet, what we really need
199 * here (as we do for default ACLs) is a mechanism by which creation of
200 * these attrs can be journalled at inode creation time (along with the
201 * inode, of course, such that log replay can't cause these to be lost).
208 struct inode *ip = vn_to_inode(vp);
214 error = security_inode_init_security(ip, dir, &name, &value, &length);
216 if (error == -EOPNOTSUPP)
221 error = xfs_attr_set(XFS_I(ip), name, value,
222 length, ATTR_SECURE);
224 xfs_iflags_set(XFS_I(ip), XFS_IMODIFIED);
232 * Determine whether a process has a valid fs_struct (kernel daemons
233 * like knfsd don't have an fs_struct).
235 * XXX(hch): nfsd is broken, better fix it instead.
238 xfs_has_fs_struct(struct task_struct *task)
240 return (task->fs != init_task.fs);
247 struct dentry *dentry,
250 struct dentry teardown = {};
253 * If we can't add the ACL or we fail in
254 * xfs_init_security we must back out.
255 * ENOSPC can hit here, among other things.
257 teardown.d_inode = vn_to_inode(vp);
258 teardown.d_name = dentry->d_name;
261 xfs_rmdir(XFS_I(dir), &teardown);
263 xfs_remove(XFS_I(dir), &teardown);
270 struct dentry *dentry,
275 bhv_vnode_t *vp = NULL, *dvp = vn_from_inode(dir);
276 xfs_acl_t *default_acl = NULL;
277 attrexists_t test_default_acl = _ACL_DEFAULT_EXISTS;
281 * Irix uses Missed'em'V split, but doesn't want to see
282 * the upper 5 bits of (14bit) major.
284 if (unlikely(!sysv_valid_dev(rdev) || MAJOR(rdev) & ~0x1ff))
287 if (unlikely(test_default_acl && test_default_acl(dvp))) {
288 if (!_ACL_ALLOC(default_acl)) {
291 if (!_ACL_GET_DEFAULT(dvp, default_acl)) {
292 _ACL_FREE(default_acl);
297 if (IS_POSIXACL(dir) && !default_acl && xfs_has_fs_struct(current))
298 mode &= ~current->fs->umask;
300 switch (mode & S_IFMT) {
301 case S_IFCHR: case S_IFBLK: case S_IFIFO: case S_IFSOCK:
302 rdev = sysv_encode_dev(rdev);
304 error = xfs_create(XFS_I(dir), dentry, mode, rdev, &vp, NULL);
307 error = xfs_mkdir(XFS_I(dir), dentry, mode, &vp, NULL);
314 if (unlikely(!error)) {
315 error = xfs_init_security(vp, dir);
317 xfs_cleanup_inode(dir, vp, dentry, mode);
320 if (unlikely(default_acl)) {
322 error = _ACL_INHERIT(vp, mode, default_acl);
324 xfs_iflags_set(XFS_I(vp), XFS_IMODIFIED);
326 xfs_cleanup_inode(dir, vp, dentry, mode);
328 _ACL_FREE(default_acl);
331 if (likely(!error)) {
333 ip = vn_to_inode(vp);
335 if (S_ISCHR(mode) || S_ISBLK(mode))
337 else if (S_ISDIR(mode))
338 xfs_validate_fields(ip);
339 d_instantiate(dentry, ip);
340 xfs_validate_fields(dir);
348 struct dentry *dentry,
350 struct nameidata *nd)
352 return xfs_vn_mknod(dir, dentry, mode, 0);
358 struct dentry *dentry,
361 return xfs_vn_mknod(dir, dentry, mode|S_IFDIR, 0);
364 STATIC struct dentry *
367 struct dentry *dentry,
368 struct nameidata *nd)
373 if (dentry->d_name.len >= MAXNAMELEN)
374 return ERR_PTR(-ENAMETOOLONG);
376 error = xfs_lookup(XFS_I(dir), dentry, &cvp);
377 if (unlikely(error)) {
378 if (unlikely(error != ENOENT))
379 return ERR_PTR(-error);
384 return d_splice_alias(vn_to_inode(cvp), dentry);
389 struct dentry *old_dentry,
391 struct dentry *dentry)
393 struct inode *ip; /* inode of guy being linked to */
394 bhv_vnode_t *vp; /* vp of name being linked */
397 ip = old_dentry->d_inode; /* inode being linked to */
398 vp = vn_from_inode(ip);
401 error = xfs_link(XFS_I(dir), vp, dentry);
402 if (unlikely(error)) {
405 xfs_iflags_set(XFS_I(dir), XFS_IMODIFIED);
406 xfs_validate_fields(ip);
407 d_instantiate(dentry, ip);
415 struct dentry *dentry)
420 inode = dentry->d_inode;
422 error = xfs_remove(XFS_I(dir), dentry);
423 if (likely(!error)) {
424 xfs_validate_fields(dir); /* size needs update */
425 xfs_validate_fields(inode);
433 struct dentry *dentry,
437 bhv_vnode_t *cvp; /* used to lookup symlink to put in dentry */
444 (irix_symlink_mode ? 0777 & ~current->fs->umask : S_IRWXUGO);
446 error = xfs_symlink(XFS_I(dir), dentry, (char *)symname, mode,
448 if (likely(!error && cvp)) {
449 error = xfs_init_security(cvp, dir);
450 if (likely(!error)) {
451 ip = vn_to_inode(cvp);
452 d_instantiate(dentry, ip);
453 xfs_validate_fields(dir);
454 xfs_validate_fields(ip);
456 xfs_cleanup_inode(dir, cvp, dentry, 0);
465 struct dentry *dentry)
467 struct inode *inode = dentry->d_inode;
470 error = xfs_rmdir(XFS_I(dir), dentry);
471 if (likely(!error)) {
472 xfs_validate_fields(inode);
473 xfs_validate_fields(dir);
481 struct dentry *odentry,
483 struct dentry *ndentry)
485 struct inode *new_inode = ndentry->d_inode;
486 bhv_vnode_t *tvp; /* target directory */
489 tvp = vn_from_inode(ndir);
491 error = xfs_rename(XFS_I(odir), odentry, tvp, ndentry);
492 if (likely(!error)) {
494 xfs_validate_fields(new_inode);
495 xfs_validate_fields(odir);
497 xfs_validate_fields(ndir);
503 * careful here - this function can get called recursively, so
504 * we need to be very careful about how much stack we use.
505 * uio is kmalloced for this reason...
509 struct dentry *dentry,
510 struct nameidata *nd)
515 link = kmalloc(MAXPATHLEN+1, GFP_KERNEL);
519 error = -xfs_readlink(XFS_I(dentry->d_inode), link);
523 nd_set_link(nd, link);
529 nd_set_link(nd, ERR_PTR(error));
535 struct dentry *dentry,
536 struct nameidata *nd,
539 char *s = nd_get_link(nd);
545 #ifdef CONFIG_XFS_POSIX_ACL
550 struct nameidata *nd)
552 return -xfs_access(XFS_I(inode), mode << 6, NULL);
555 #define xfs_vn_permission NULL
560 struct vfsmount *mnt,
561 struct dentry *dentry,
564 struct inode *inode = dentry->d_inode;
565 bhv_vattr_t vattr = { .va_mask = XFS_AT_STAT };
568 error = xfs_getattr(XFS_I(inode), &vattr, ATTR_LAZY);
569 if (likely(!error)) {
570 stat->size = i_size_read(inode);
571 stat->dev = inode->i_sb->s_dev;
572 stat->rdev = (vattr.va_rdev == 0) ? 0 :
573 MKDEV(sysv_major(vattr.va_rdev) & 0x1ff,
574 sysv_minor(vattr.va_rdev));
575 stat->mode = vattr.va_mode;
576 stat->nlink = vattr.va_nlink;
577 stat->uid = vattr.va_uid;
578 stat->gid = vattr.va_gid;
579 stat->ino = vattr.va_nodeid;
580 stat->atime = vattr.va_atime;
581 stat->mtime = vattr.va_mtime;
582 stat->ctime = vattr.va_ctime;
583 stat->blocks = vattr.va_nblocks;
584 stat->blksize = vattr.va_blocksize;
591 struct dentry *dentry,
594 struct inode *inode = dentry->d_inode;
595 unsigned int ia_valid = attr->ia_valid;
596 bhv_vattr_t vattr = { 0 };
600 if (ia_valid & ATTR_UID) {
601 vattr.va_mask |= XFS_AT_UID;
602 vattr.va_uid = attr->ia_uid;
604 if (ia_valid & ATTR_GID) {
605 vattr.va_mask |= XFS_AT_GID;
606 vattr.va_gid = attr->ia_gid;
608 if (ia_valid & ATTR_SIZE) {
609 vattr.va_mask |= XFS_AT_SIZE;
610 vattr.va_size = attr->ia_size;
612 if (ia_valid & ATTR_ATIME) {
613 vattr.va_mask |= XFS_AT_ATIME;
614 vattr.va_atime = attr->ia_atime;
615 inode->i_atime = attr->ia_atime;
617 if (ia_valid & ATTR_MTIME) {
618 vattr.va_mask |= XFS_AT_MTIME;
619 vattr.va_mtime = attr->ia_mtime;
621 if (ia_valid & ATTR_CTIME) {
622 vattr.va_mask |= XFS_AT_CTIME;
623 vattr.va_ctime = attr->ia_ctime;
625 if (ia_valid & ATTR_MODE) {
626 vattr.va_mask |= XFS_AT_MODE;
627 vattr.va_mode = attr->ia_mode;
628 if (!in_group_p(inode->i_gid) && !capable(CAP_FSETID))
629 inode->i_mode &= ~S_ISGID;
632 if (ia_valid & (ATTR_MTIME_SET | ATTR_ATIME_SET))
635 if ((ia_valid & ATTR_NO_BLOCK))
636 flags |= ATTR_NONBLOCK;
639 error = xfs_setattr(XFS_I(inode), &vattr, flags, NULL);
641 __vn_revalidate(vn_from_inode(inode), &vattr);
649 block_truncate_page(inode->i_mapping, inode->i_size, xfs_get_blocks);
654 struct dentry *dentry,
660 bhv_vnode_t *vp = vn_from_inode(dentry->d_inode);
661 char *attr = (char *)name;
666 namesp = attr_lookup_namespace(attr, attr_namespaces, ATTR_NAMECOUNT);
669 attr += namesp->attr_namelen;
670 error = namesp->attr_capable(vp, NULL);
674 /* Convert Linux syscall to XFS internal ATTR flags */
675 if (flags & XATTR_CREATE)
676 xflags |= ATTR_CREATE;
677 if (flags & XATTR_REPLACE)
678 xflags |= ATTR_REPLACE;
679 xflags |= namesp->attr_flag;
680 return namesp->attr_set(vp, attr, (void *)data, size, xflags);
685 struct dentry *dentry,
690 bhv_vnode_t *vp = vn_from_inode(dentry->d_inode);
691 char *attr = (char *)name;
696 namesp = attr_lookup_namespace(attr, attr_namespaces, ATTR_NAMECOUNT);
699 attr += namesp->attr_namelen;
700 error = namesp->attr_capable(vp, NULL);
704 /* Convert Linux syscall to XFS internal ATTR flags */
706 xflags |= ATTR_KERNOVAL;
709 xflags |= namesp->attr_flag;
710 return namesp->attr_get(vp, attr, (void *)data, size, xflags);
715 struct dentry *dentry,
719 bhv_vnode_t *vp = vn_from_inode(dentry->d_inode);
720 int error, xflags = ATTR_KERNAMELS;
724 xflags |= ATTR_KERNOVAL;
725 xflags |= capable(CAP_SYS_ADMIN) ? ATTR_KERNFULLS : ATTR_KERNORMALS;
727 error = attr_generic_list(vp, data, size, xflags, &result);
735 struct dentry *dentry,
738 bhv_vnode_t *vp = vn_from_inode(dentry->d_inode);
739 char *attr = (char *)name;
744 namesp = attr_lookup_namespace(attr, attr_namespaces, ATTR_NAMECOUNT);
747 attr += namesp->attr_namelen;
748 error = namesp->attr_capable(vp, NULL);
751 xflags |= namesp->attr_flag;
752 return namesp->attr_remove(vp, attr, xflags);
756 const struct inode_operations xfs_inode_operations = {
757 .permission = xfs_vn_permission,
758 .truncate = xfs_vn_truncate,
759 .getattr = xfs_vn_getattr,
760 .setattr = xfs_vn_setattr,
761 .setxattr = xfs_vn_setxattr,
762 .getxattr = xfs_vn_getxattr,
763 .listxattr = xfs_vn_listxattr,
764 .removexattr = xfs_vn_removexattr,
767 const struct inode_operations xfs_dir_inode_operations = {
768 .create = xfs_vn_create,
769 .lookup = xfs_vn_lookup,
771 .unlink = xfs_vn_unlink,
772 .symlink = xfs_vn_symlink,
773 .mkdir = xfs_vn_mkdir,
774 .rmdir = xfs_vn_rmdir,
775 .mknod = xfs_vn_mknod,
776 .rename = xfs_vn_rename,
777 .permission = xfs_vn_permission,
778 .getattr = xfs_vn_getattr,
779 .setattr = xfs_vn_setattr,
780 .setxattr = xfs_vn_setxattr,
781 .getxattr = xfs_vn_getxattr,
782 .listxattr = xfs_vn_listxattr,
783 .removexattr = xfs_vn_removexattr,
786 const struct inode_operations xfs_symlink_inode_operations = {
787 .readlink = generic_readlink,
788 .follow_link = xfs_vn_follow_link,
789 .put_link = xfs_vn_put_link,
790 .permission = xfs_vn_permission,
791 .getattr = xfs_vn_getattr,
792 .setattr = xfs_vn_setattr,
793 .setxattr = xfs_vn_setxattr,
794 .getxattr = xfs_vn_getxattr,
795 .listxattr = xfs_vn_listxattr,
796 .removexattr = xfs_vn_removexattr,