Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 2 | * Copyright (c) 2000-2005 Silicon Graphics, Inc. |
| 3 | * All Rights Reserved. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 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 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * published by the Free Software Foundation. |
| 8 | * |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 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. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | * |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 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 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include "xfs.h" |
| 19 | #include "xfs_fs.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 20 | #include "xfs_bit.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include "xfs_log.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 22 | #include "xfs_inum.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include "xfs_trans.h" |
| 24 | #include "xfs_sb.h" |
| 25 | #include "xfs_ag.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include "xfs_dir2.h" |
| 27 | #include "xfs_alloc.h" |
| 28 | #include "xfs_dmapi.h" |
| 29 | #include "xfs_quota.h" |
| 30 | #include "xfs_mount.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #include "xfs_bmap_btree.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 32 | #include "xfs_alloc_btree.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | #include "xfs_ialloc_btree.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | #include "xfs_dir2_sf.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 35 | #include "xfs_attr_sf.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | #include "xfs_dinode.h" |
| 37 | #include "xfs_inode.h" |
| 38 | #include "xfs_bmap.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 39 | #include "xfs_btree.h" |
| 40 | #include "xfs_ialloc.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | #include "xfs_rtalloc.h" |
| 42 | #include "xfs_error.h" |
| 43 | #include "xfs_itable.h" |
| 44 | #include "xfs_rw.h" |
| 45 | #include "xfs_acl.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | #include "xfs_attr.h" |
| 47 | #include "xfs_buf_item.h" |
| 48 | #include "xfs_utils.h" |
Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 49 | #include "xfs_vnodeops.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | |
Randy Dunlap | 16f7e0f | 2006-01-11 12:17:46 -0800 | [diff] [blame] | 51 | #include <linux/capability.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | #include <linux/xattr.h> |
| 53 | #include <linux/namei.h> |
Nathan Scott | 446ada4 | 2006-01-11 15:35:44 +1100 | [diff] [blame] | 54 | #include <linux/security.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | |
Nathan Scott | 4aeb664 | 2005-11-02 11:43:58 +1100 | [diff] [blame] | 56 | /* |
Christoph Hellwig | 42fe2b1 | 2006-01-11 15:35:17 +1100 | [diff] [blame] | 57 | * Bring the atime in the XFS inode uptodate. |
| 58 | * Used before logging the inode to disk or when the Linux inode goes away. |
| 59 | */ |
| 60 | void |
| 61 | xfs_synchronize_atime( |
| 62 | xfs_inode_t *ip) |
| 63 | { |
Nathan Scott | 67fcaa7 | 2006-06-09 17:00:52 +1000 | [diff] [blame] | 64 | bhv_vnode_t *vp; |
Christoph Hellwig | 42fe2b1 | 2006-01-11 15:35:17 +1100 | [diff] [blame] | 65 | |
| 66 | vp = XFS_ITOV_NULL(ip); |
| 67 | if (vp) { |
Christoph Hellwig | 0a74cd1 | 2007-08-29 11:53:12 +1000 | [diff] [blame^] | 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; |
Christoph Hellwig | 42fe2b1 | 2006-01-11 15:35:17 +1100 | [diff] [blame] | 70 | } |
| 71 | } |
| 72 | |
| 73 | /* |
Nathan Scott | 4aeb664 | 2005-11-02 11:43:58 +1100 | [diff] [blame] | 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. |
| 77 | * |
| 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. |
| 83 | */ |
| 84 | void |
| 85 | xfs_ichgtime( |
| 86 | xfs_inode_t *ip, |
| 87 | int flags) |
| 88 | { |
Nathan Scott | ec86dc0 | 2006-03-17 17:25:36 +1100 | [diff] [blame] | 89 | struct inode *inode = vn_to_inode(XFS_ITOV(ip)); |
Nathan Scott | 4aeb664 | 2005-11-02 11:43:58 +1100 | [diff] [blame] | 90 | timespec_t tv; |
| 91 | |
Nathan Scott | 4aeb664 | 2005-11-02 11:43:58 +1100 | [diff] [blame] | 92 | nanotime(&tv); |
| 93 | if (flags & XFS_ICHGTIME_MOD) { |
| 94 | inode->i_mtime = tv; |
| 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; |
| 97 | } |
| 98 | if (flags & XFS_ICHGTIME_ACC) { |
| 99 | inode->i_atime = tv; |
| 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; |
| 102 | } |
| 103 | if (flags & XFS_ICHGTIME_CHG) { |
| 104 | inode->i_ctime = tv; |
| 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; |
| 107 | } |
| 108 | |
| 109 | /* |
| 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. |
| 117 | */ |
| 118 | SYNCHRONIZE(); |
| 119 | ip->i_update_core = 1; |
| 120 | if (!(inode->i_state & I_LOCK)) |
| 121 | mark_inode_dirty_sync(inode); |
| 122 | } |
| 123 | |
| 124 | /* |
| 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). |
Nathan Scott | 4aeb664 | 2005-11-02 11:43:58 +1100 | [diff] [blame] | 128 | */ |
| 129 | void |
| 130 | xfs_ichgtime_fast( |
| 131 | xfs_inode_t *ip, |
| 132 | struct inode *inode, |
| 133 | int flags) |
| 134 | { |
| 135 | timespec_t *tvp; |
| 136 | |
| 137 | /* |
Christoph Hellwig | 42fe2b1 | 2006-01-11 15:35:17 +1100 | [diff] [blame] | 138 | * Atime updates for read() & friends are handled lazily now, and |
| 139 | * explicit updates must go through xfs_ichgtime() |
| 140 | */ |
| 141 | ASSERT((flags & XFS_ICHGTIME_ACC) == 0); |
| 142 | |
| 143 | /* |
Nathan Scott | 4aeb664 | 2005-11-02 11:43:58 +1100 | [diff] [blame] | 144 | * We're not supposed to change timestamps in readonly-mounted |
| 145 | * filesystems. Throw it away if anyone asks us. |
| 146 | */ |
| 147 | if (unlikely(IS_RDONLY(inode))) |
| 148 | return; |
| 149 | |
Nathan Scott | 4aeb664 | 2005-11-02 11:43:58 +1100 | [diff] [blame] | 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; |
| 154 | } |
Nathan Scott | 4aeb664 | 2005-11-02 11:43:58 +1100 | [diff] [blame] | 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; |
| 159 | } |
| 160 | |
| 161 | /* |
| 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. |
| 169 | */ |
| 170 | SYNCHRONIZE(); |
| 171 | ip->i_update_core = 1; |
| 172 | if (!(inode->i_state & I_LOCK)) |
| 173 | mark_inode_dirty_sync(inode); |
| 174 | } |
| 175 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | |
| 177 | /* |
| 178 | * Pull the link count and size up from the xfs inode to the linux inode |
| 179 | */ |
| 180 | STATIC void |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 181 | xfs_validate_fields( |
Nathan Scott | 220b528 | 2006-03-14 13:33:36 +1100 | [diff] [blame] | 182 | struct inode *ip, |
Nathan Scott | 8285fb5 | 2006-06-09 17:07:12 +1000 | [diff] [blame] | 183 | bhv_vattr_t *vattr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | { |
Nathan Scott | 220b528 | 2006-03-14 13:33:36 +1100 | [diff] [blame] | 185 | vattr->va_mask = XFS_AT_NLINK|XFS_AT_SIZE|XFS_AT_NBLOCKS; |
Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 186 | if (!xfs_getattr(XFS_I(ip), vattr, ATTR_LAZY)) { |
Nathan Scott | 220b528 | 2006-03-14 13:33:36 +1100 | [diff] [blame] | 187 | ip->i_nlink = vattr->va_nlink; |
| 188 | ip->i_blocks = vattr->va_nblocks; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | |
Nathan Scott | 220b528 | 2006-03-14 13:33:36 +1100 | [diff] [blame] | 190 | /* we're under i_sem so i_size can't change under us */ |
| 191 | if (i_size_read(ip) != vattr->va_size) |
| 192 | i_size_write(ip, vattr->va_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | } |
| 194 | } |
| 195 | |
| 196 | /* |
Nathan Scott | 446ada4 | 2006-01-11 15:35:44 +1100 | [diff] [blame] | 197 | * Hook in SELinux. This is not quite correct yet, what we really need |
| 198 | * here (as we do for default ACLs) is a mechanism by which creation of |
| 199 | * these attrs can be journalled at inode creation time (along with the |
| 200 | * inode, of course, such that log replay can't cause these to be lost). |
| 201 | */ |
| 202 | STATIC int |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 203 | xfs_init_security( |
Nathan Scott | 67fcaa7 | 2006-06-09 17:00:52 +1000 | [diff] [blame] | 204 | bhv_vnode_t *vp, |
Nathan Scott | 446ada4 | 2006-01-11 15:35:44 +1100 | [diff] [blame] | 205 | struct inode *dir) |
| 206 | { |
Nathan Scott | ec86dc0 | 2006-03-17 17:25:36 +1100 | [diff] [blame] | 207 | struct inode *ip = vn_to_inode(vp); |
Nathan Scott | 446ada4 | 2006-01-11 15:35:44 +1100 | [diff] [blame] | 208 | size_t length; |
| 209 | void *value; |
| 210 | char *name; |
| 211 | int error; |
| 212 | |
| 213 | error = security_inode_init_security(ip, dir, &name, &value, &length); |
| 214 | if (error) { |
| 215 | if (error == -EOPNOTSUPP) |
| 216 | return 0; |
| 217 | return -error; |
| 218 | } |
| 219 | |
Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 220 | error = xfs_attr_set(XFS_I(ip), name, value, |
| 221 | length, ATTR_SECURE); |
Nathan Scott | 446ada4 | 2006-01-11 15:35:44 +1100 | [diff] [blame] | 222 | if (!error) |
Christoph Hellwig | b3aea4e | 2007-08-29 11:44:37 +1000 | [diff] [blame] | 223 | xfs_iflags_set(XFS_I(ip), XFS_IMODIFIED); |
Nathan Scott | 446ada4 | 2006-01-11 15:35:44 +1100 | [diff] [blame] | 224 | |
| 225 | kfree(name); |
| 226 | kfree(value); |
| 227 | return error; |
| 228 | } |
| 229 | |
| 230 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | * Determine whether a process has a valid fs_struct (kernel daemons |
| 232 | * like knfsd don't have an fs_struct). |
| 233 | * |
| 234 | * XXX(hch): nfsd is broken, better fix it instead. |
| 235 | */ |
David Chinner | 7989cb8 | 2007-02-10 18:34:56 +1100 | [diff] [blame] | 236 | STATIC_INLINE int |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 237 | xfs_has_fs_struct(struct task_struct *task) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | { |
| 239 | return (task->fs != init_task.fs); |
| 240 | } |
| 241 | |
David Chinner | 7989cb8 | 2007-02-10 18:34:56 +1100 | [diff] [blame] | 242 | STATIC void |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 243 | xfs_cleanup_inode( |
Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 244 | struct inode *dir, |
Nathan Scott | 67fcaa7 | 2006-06-09 17:00:52 +1000 | [diff] [blame] | 245 | bhv_vnode_t *vp, |
Nathan Scott | 220b528 | 2006-03-14 13:33:36 +1100 | [diff] [blame] | 246 | struct dentry *dentry, |
Yingping Lu | 3a69c7d | 2006-02-01 12:14:34 +1100 | [diff] [blame] | 247 | int mode) |
| 248 | { |
| 249 | struct dentry teardown = {}; |
Yingping Lu | 3a69c7d | 2006-02-01 12:14:34 +1100 | [diff] [blame] | 250 | |
| 251 | /* Oh, the horror. |
Nathan Scott | 220b528 | 2006-03-14 13:33:36 +1100 | [diff] [blame] | 252 | * If we can't add the ACL or we fail in |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 253 | * xfs_init_security we must back out. |
Yingping Lu | 3a69c7d | 2006-02-01 12:14:34 +1100 | [diff] [blame] | 254 | * ENOSPC can hit here, among other things. |
| 255 | */ |
Nathan Scott | ec86dc0 | 2006-03-17 17:25:36 +1100 | [diff] [blame] | 256 | teardown.d_inode = vn_to_inode(vp); |
Yingping Lu | 3a69c7d | 2006-02-01 12:14:34 +1100 | [diff] [blame] | 257 | teardown.d_name = dentry->d_name; |
| 258 | |
| 259 | if (S_ISDIR(mode)) |
Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 260 | xfs_rmdir(XFS_I(dir), &teardown); |
Yingping Lu | 3a69c7d | 2006-02-01 12:14:34 +1100 | [diff] [blame] | 261 | else |
Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 262 | xfs_remove(XFS_I(dir), &teardown); |
Yingping Lu | 3a69c7d | 2006-02-01 12:14:34 +1100 | [diff] [blame] | 263 | VN_RELE(vp); |
| 264 | } |
| 265 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | STATIC int |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 267 | xfs_vn_mknod( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | struct inode *dir, |
| 269 | struct dentry *dentry, |
| 270 | int mode, |
| 271 | dev_t rdev) |
| 272 | { |
| 273 | struct inode *ip; |
Nathan Scott | 8285fb5 | 2006-06-09 17:07:12 +1000 | [diff] [blame] | 274 | bhv_vattr_t vattr = { 0 }; |
Nathan Scott | 67fcaa7 | 2006-06-09 17:00:52 +1000 | [diff] [blame] | 275 | bhv_vnode_t *vp = NULL, *dvp = vn_from_inode(dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | xfs_acl_t *default_acl = NULL; |
| 277 | attrexists_t test_default_acl = _ACL_DEFAULT_EXISTS; |
| 278 | int error; |
| 279 | |
| 280 | /* |
| 281 | * Irix uses Missed'em'V split, but doesn't want to see |
| 282 | * the upper 5 bits of (14bit) major. |
| 283 | */ |
Nathan Scott | 220b528 | 2006-03-14 13:33:36 +1100 | [diff] [blame] | 284 | if (unlikely(!sysv_valid_dev(rdev) || MAJOR(rdev) & ~0x1ff)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | return -EINVAL; |
| 286 | |
Nathan Scott | 220b528 | 2006-03-14 13:33:36 +1100 | [diff] [blame] | 287 | if (unlikely(test_default_acl && test_default_acl(dvp))) { |
| 288 | if (!_ACL_ALLOC(default_acl)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | return -ENOMEM; |
Nathan Scott | 220b528 | 2006-03-14 13:33:36 +1100 | [diff] [blame] | 290 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | if (!_ACL_GET_DEFAULT(dvp, default_acl)) { |
| 292 | _ACL_FREE(default_acl); |
| 293 | default_acl = NULL; |
| 294 | } |
| 295 | } |
| 296 | |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 297 | if (IS_POSIXACL(dir) && !default_acl && xfs_has_fs_struct(current)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | mode &= ~current->fs->umask; |
| 299 | |
Nathan Scott | 524fbf5 | 2006-03-14 14:07:53 +1100 | [diff] [blame] | 300 | vattr.va_mask = XFS_AT_TYPE|XFS_AT_MODE; |
| 301 | vattr.va_mode = mode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | |
| 303 | switch (mode & S_IFMT) { |
| 304 | case S_IFCHR: case S_IFBLK: case S_IFIFO: case S_IFSOCK: |
Nathan Scott | 524fbf5 | 2006-03-14 14:07:53 +1100 | [diff] [blame] | 305 | vattr.va_rdev = sysv_encode_dev(rdev); |
| 306 | vattr.va_mask |= XFS_AT_RDEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | /*FALLTHROUGH*/ |
| 308 | case S_IFREG: |
Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 309 | error = xfs_create(XFS_I(dir), dentry, &vattr, &vp, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | break; |
| 311 | case S_IFDIR: |
Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 312 | error = xfs_mkdir(XFS_I(dir), dentry, &vattr, &vp, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | break; |
| 314 | default: |
| 315 | error = EINVAL; |
| 316 | break; |
| 317 | } |
| 318 | |
Nathan Scott | 220b528 | 2006-03-14 13:33:36 +1100 | [diff] [blame] | 319 | if (unlikely(!error)) { |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 320 | error = xfs_init_security(vp, dir); |
Yingping Lu | 3a69c7d | 2006-02-01 12:14:34 +1100 | [diff] [blame] | 321 | if (error) |
Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 322 | xfs_cleanup_inode(dir, vp, dentry, mode); |
Yingping Lu | 3a69c7d | 2006-02-01 12:14:34 +1100 | [diff] [blame] | 323 | } |
Nathan Scott | 446ada4 | 2006-01-11 15:35:44 +1100 | [diff] [blame] | 324 | |
Nathan Scott | 220b528 | 2006-03-14 13:33:36 +1100 | [diff] [blame] | 325 | if (unlikely(default_acl)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | if (!error) { |
Nathan Scott | 524fbf5 | 2006-03-14 14:07:53 +1100 | [diff] [blame] | 327 | error = _ACL_INHERIT(vp, &vattr, default_acl); |
Nathan Scott | 220b528 | 2006-03-14 13:33:36 +1100 | [diff] [blame] | 328 | if (!error) |
Christoph Hellwig | 0a74cd1 | 2007-08-29 11:53:12 +1000 | [diff] [blame^] | 329 | xfs_iflags_set(XFS_I(vp), XFS_IMODIFIED); |
Yingping Lu | 3a69c7d | 2006-02-01 12:14:34 +1100 | [diff] [blame] | 330 | else |
Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 331 | xfs_cleanup_inode(dir, vp, dentry, mode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | } |
| 333 | _ACL_FREE(default_acl); |
| 334 | } |
| 335 | |
Nathan Scott | 220b528 | 2006-03-14 13:33:36 +1100 | [diff] [blame] | 336 | if (likely(!error)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | ASSERT(vp); |
Nathan Scott | ec86dc0 | 2006-03-17 17:25:36 +1100 | [diff] [blame] | 338 | ip = vn_to_inode(vp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | |
| 340 | if (S_ISCHR(mode) || S_ISBLK(mode)) |
| 341 | ip->i_rdev = rdev; |
| 342 | else if (S_ISDIR(mode)) |
Nathan Scott | 524fbf5 | 2006-03-14 14:07:53 +1100 | [diff] [blame] | 343 | xfs_validate_fields(ip, &vattr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | d_instantiate(dentry, ip); |
Nathan Scott | 524fbf5 | 2006-03-14 14:07:53 +1100 | [diff] [blame] | 345 | xfs_validate_fields(dir, &vattr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | } |
| 347 | return -error; |
| 348 | } |
| 349 | |
| 350 | STATIC int |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 351 | xfs_vn_create( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | struct inode *dir, |
| 353 | struct dentry *dentry, |
| 354 | int mode, |
| 355 | struct nameidata *nd) |
| 356 | { |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 357 | return xfs_vn_mknod(dir, dentry, mode, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | } |
| 359 | |
| 360 | STATIC int |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 361 | xfs_vn_mkdir( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | struct inode *dir, |
| 363 | struct dentry *dentry, |
| 364 | int mode) |
| 365 | { |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 366 | return xfs_vn_mknod(dir, dentry, mode|S_IFDIR, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | } |
| 368 | |
| 369 | STATIC struct dentry * |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 370 | xfs_vn_lookup( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | struct inode *dir, |
| 372 | struct dentry *dentry, |
| 373 | struct nameidata *nd) |
| 374 | { |
Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 375 | bhv_vnode_t *cvp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | int error; |
| 377 | |
| 378 | if (dentry->d_name.len >= MAXNAMELEN) |
| 379 | return ERR_PTR(-ENAMETOOLONG); |
| 380 | |
Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 381 | error = xfs_lookup(XFS_I(dir), dentry, &cvp); |
Nathan Scott | 67fcaa7 | 2006-06-09 17:00:52 +1000 | [diff] [blame] | 382 | if (unlikely(error)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | if (unlikely(error != ENOENT)) |
| 384 | return ERR_PTR(-error); |
| 385 | d_add(dentry, NULL); |
| 386 | return NULL; |
| 387 | } |
| 388 | |
Nathan Scott | ec86dc0 | 2006-03-17 17:25:36 +1100 | [diff] [blame] | 389 | return d_splice_alias(vn_to_inode(cvp), dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | } |
| 391 | |
| 392 | STATIC int |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 393 | xfs_vn_link( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | struct dentry *old_dentry, |
| 395 | struct inode *dir, |
| 396 | struct dentry *dentry) |
| 397 | { |
| 398 | struct inode *ip; /* inode of guy being linked to */ |
Nathan Scott | 67fcaa7 | 2006-06-09 17:00:52 +1000 | [diff] [blame] | 399 | bhv_vnode_t *vp; /* vp of name being linked */ |
Nathan Scott | 8285fb5 | 2006-06-09 17:07:12 +1000 | [diff] [blame] | 400 | bhv_vattr_t vattr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | int error; |
| 402 | |
| 403 | ip = old_dentry->d_inode; /* inode being linked to */ |
Nathan Scott | ec86dc0 | 2006-03-17 17:25:36 +1100 | [diff] [blame] | 404 | vp = vn_from_inode(ip); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | |
Nathan Scott | 97dfd70 | 2006-06-27 16:13:46 +1000 | [diff] [blame] | 406 | VN_HOLD(vp); |
Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 407 | error = xfs_link(XFS_I(dir), vp, dentry); |
Nathan Scott | 97dfd70 | 2006-06-27 16:13:46 +1000 | [diff] [blame] | 408 | if (unlikely(error)) { |
| 409 | VN_RELE(vp); |
| 410 | } else { |
Christoph Hellwig | b3aea4e | 2007-08-29 11:44:37 +1000 | [diff] [blame] | 411 | xfs_iflags_set(XFS_I(dir), XFS_IMODIFIED); |
Nathan Scott | 524fbf5 | 2006-03-14 14:07:53 +1100 | [diff] [blame] | 412 | xfs_validate_fields(ip, &vattr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | d_instantiate(dentry, ip); |
| 414 | } |
| 415 | return -error; |
| 416 | } |
| 417 | |
| 418 | STATIC int |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 419 | xfs_vn_unlink( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 420 | struct inode *dir, |
| 421 | struct dentry *dentry) |
| 422 | { |
| 423 | struct inode *inode; |
Nathan Scott | 8285fb5 | 2006-06-09 17:07:12 +1000 | [diff] [blame] | 424 | bhv_vattr_t vattr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | int error; |
| 426 | |
| 427 | inode = dentry->d_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | |
Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 429 | error = xfs_remove(XFS_I(dir), dentry); |
Nathan Scott | 220b528 | 2006-03-14 13:33:36 +1100 | [diff] [blame] | 430 | if (likely(!error)) { |
Nathan Scott | 524fbf5 | 2006-03-14 14:07:53 +1100 | [diff] [blame] | 431 | xfs_validate_fields(dir, &vattr); /* size needs update */ |
| 432 | xfs_validate_fields(inode, &vattr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | return -error; |
| 435 | } |
| 436 | |
| 437 | STATIC int |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 438 | xfs_vn_symlink( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | struct inode *dir, |
| 440 | struct dentry *dentry, |
| 441 | const char *symname) |
| 442 | { |
| 443 | struct inode *ip; |
Nathan Scott | 8285fb5 | 2006-06-09 17:07:12 +1000 | [diff] [blame] | 444 | bhv_vattr_t va = { 0 }; |
Nathan Scott | 67fcaa7 | 2006-06-09 17:00:52 +1000 | [diff] [blame] | 445 | bhv_vnode_t *cvp; /* used to lookup symlink to put in dentry */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 | int error; |
| 447 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 448 | cvp = NULL; |
| 449 | |
Nathan Scott | 67fcaa7 | 2006-06-09 17:00:52 +1000 | [diff] [blame] | 450 | va.va_mode = S_IFLNK | |
Christoph Hellwig | 0432dab | 2005-09-02 16:46:51 +1000 | [diff] [blame] | 451 | (irix_symlink_mode ? 0777 & ~current->fs->umask : S_IRWXUGO); |
Nathan Scott | 67fcaa7 | 2006-06-09 17:00:52 +1000 | [diff] [blame] | 452 | va.va_mask = XFS_AT_TYPE|XFS_AT_MODE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | |
Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 454 | error = xfs_symlink(XFS_I(dir), dentry, &va, |
| 455 | (char *)symname, &cvp, NULL); |
Nathan Scott | 5424570 | 2006-01-16 15:54:05 +1100 | [diff] [blame] | 456 | if (likely(!error && cvp)) { |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 457 | error = xfs_init_security(cvp, dir); |
Nathan Scott | 5424570 | 2006-01-16 15:54:05 +1100 | [diff] [blame] | 458 | if (likely(!error)) { |
Nathan Scott | ec86dc0 | 2006-03-17 17:25:36 +1100 | [diff] [blame] | 459 | ip = vn_to_inode(cvp); |
Nathan Scott | 5424570 | 2006-01-16 15:54:05 +1100 | [diff] [blame] | 460 | d_instantiate(dentry, ip); |
Nathan Scott | 67fcaa7 | 2006-06-09 17:00:52 +1000 | [diff] [blame] | 461 | xfs_validate_fields(dir, &va); |
| 462 | xfs_validate_fields(ip, &va); |
Nathan Scott | ce9d37c | 2006-03-17 17:26:34 +1100 | [diff] [blame] | 463 | } else { |
Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 464 | xfs_cleanup_inode(dir, cvp, dentry, 0); |
Nathan Scott | 5424570 | 2006-01-16 15:54:05 +1100 | [diff] [blame] | 465 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 | } |
| 467 | return -error; |
| 468 | } |
| 469 | |
| 470 | STATIC int |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 471 | xfs_vn_rmdir( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | struct inode *dir, |
| 473 | struct dentry *dentry) |
| 474 | { |
| 475 | struct inode *inode = dentry->d_inode; |
Nathan Scott | 8285fb5 | 2006-06-09 17:07:12 +1000 | [diff] [blame] | 476 | bhv_vattr_t vattr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 477 | int error; |
| 478 | |
Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 479 | error = xfs_rmdir(XFS_I(dir), dentry); |
Nathan Scott | 220b528 | 2006-03-14 13:33:36 +1100 | [diff] [blame] | 480 | if (likely(!error)) { |
Nathan Scott | 524fbf5 | 2006-03-14 14:07:53 +1100 | [diff] [blame] | 481 | xfs_validate_fields(inode, &vattr); |
| 482 | xfs_validate_fields(dir, &vattr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | } |
| 484 | return -error; |
| 485 | } |
| 486 | |
| 487 | STATIC int |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 488 | xfs_vn_rename( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | struct inode *odir, |
| 490 | struct dentry *odentry, |
| 491 | struct inode *ndir, |
| 492 | struct dentry *ndentry) |
| 493 | { |
| 494 | struct inode *new_inode = ndentry->d_inode; |
Nathan Scott | 67fcaa7 | 2006-06-09 17:00:52 +1000 | [diff] [blame] | 495 | bhv_vnode_t *tvp; /* target directory */ |
Nathan Scott | 8285fb5 | 2006-06-09 17:07:12 +1000 | [diff] [blame] | 496 | bhv_vattr_t vattr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | int error; |
| 498 | |
Nathan Scott | ec86dc0 | 2006-03-17 17:25:36 +1100 | [diff] [blame] | 499 | tvp = vn_from_inode(ndir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | |
Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 501 | error = xfs_rename(XFS_I(odir), odentry, tvp, ndentry); |
Nathan Scott | 220b528 | 2006-03-14 13:33:36 +1100 | [diff] [blame] | 502 | if (likely(!error)) { |
| 503 | if (new_inode) |
Nathan Scott | 524fbf5 | 2006-03-14 14:07:53 +1100 | [diff] [blame] | 504 | xfs_validate_fields(new_inode, &vattr); |
| 505 | xfs_validate_fields(odir, &vattr); |
Nathan Scott | 220b528 | 2006-03-14 13:33:36 +1100 | [diff] [blame] | 506 | if (ndir != odir) |
Nathan Scott | 524fbf5 | 2006-03-14 14:07:53 +1100 | [diff] [blame] | 507 | xfs_validate_fields(ndir, &vattr); |
Nathan Scott | 220b528 | 2006-03-14 13:33:36 +1100 | [diff] [blame] | 508 | } |
Nathan Scott | 220b528 | 2006-03-14 13:33:36 +1100 | [diff] [blame] | 509 | return -error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 | } |
| 511 | |
| 512 | /* |
| 513 | * careful here - this function can get called recursively, so |
| 514 | * we need to be very careful about how much stack we use. |
| 515 | * uio is kmalloced for this reason... |
| 516 | */ |
Al Viro | 008b150 | 2005-08-20 00:17:39 +0100 | [diff] [blame] | 517 | STATIC void * |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 518 | xfs_vn_follow_link( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 519 | struct dentry *dentry, |
| 520 | struct nameidata *nd) |
| 521 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 522 | char *link; |
Christoph Hellwig | 804c83c | 2007-08-28 13:59:03 +1000 | [diff] [blame] | 523 | int error = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | |
Panagiotis Issaris | f52720c | 2006-09-27 01:49:39 -0700 | [diff] [blame] | 525 | link = kmalloc(MAXPATHLEN+1, GFP_KERNEL); |
Christoph Hellwig | 804c83c | 2007-08-28 13:59:03 +1000 | [diff] [blame] | 526 | if (!link) |
| 527 | goto out_err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | |
Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 529 | error = -xfs_readlink(XFS_I(dentry->d_inode), link); |
Christoph Hellwig | 804c83c | 2007-08-28 13:59:03 +1000 | [diff] [blame] | 530 | if (unlikely(error)) |
| 531 | goto out_kfree; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 532 | |
| 533 | nd_set_link(nd, link); |
Al Viro | 008b150 | 2005-08-20 00:17:39 +0100 | [diff] [blame] | 534 | return NULL; |
Christoph Hellwig | 804c83c | 2007-08-28 13:59:03 +1000 | [diff] [blame] | 535 | |
| 536 | out_kfree: |
| 537 | kfree(link); |
| 538 | out_err: |
| 539 | nd_set_link(nd, ERR_PTR(error)); |
| 540 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | } |
| 542 | |
Nathan Scott | cde410a | 2005-09-05 11:47:01 +1000 | [diff] [blame] | 543 | STATIC void |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 544 | xfs_vn_put_link( |
Nathan Scott | cde410a | 2005-09-05 11:47:01 +1000 | [diff] [blame] | 545 | struct dentry *dentry, |
| 546 | struct nameidata *nd, |
| 547 | void *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | { |
Nathan Scott | cde410a | 2005-09-05 11:47:01 +1000 | [diff] [blame] | 549 | char *s = nd_get_link(nd); |
| 550 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 551 | if (!IS_ERR(s)) |
| 552 | kfree(s); |
| 553 | } |
| 554 | |
| 555 | #ifdef CONFIG_XFS_POSIX_ACL |
| 556 | STATIC int |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 557 | xfs_vn_permission( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | struct inode *inode, |
| 559 | int mode, |
| 560 | struct nameidata *nd) |
| 561 | { |
Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 562 | return -xfs_access(XFS_I(inode), mode << 6, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | } |
| 564 | #else |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 565 | #define xfs_vn_permission NULL |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | #endif |
| 567 | |
| 568 | STATIC int |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 569 | xfs_vn_getattr( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | struct vfsmount *mnt, |
| 571 | struct dentry *dentry, |
| 572 | struct kstat *stat) |
| 573 | { |
| 574 | struct inode *inode = dentry->d_inode; |
Nathan Scott | 69e23b9 | 2006-09-28 11:01:22 +1000 | [diff] [blame] | 575 | bhv_vattr_t vattr = { .va_mask = XFS_AT_STAT }; |
| 576 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 577 | |
Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 578 | error = xfs_getattr(XFS_I(inode), &vattr, ATTR_LAZY); |
Nathan Scott | 69e23b9 | 2006-09-28 11:01:22 +1000 | [diff] [blame] | 579 | if (likely(!error)) { |
| 580 | stat->size = i_size_read(inode); |
| 581 | stat->dev = inode->i_sb->s_dev; |
| 582 | stat->rdev = (vattr.va_rdev == 0) ? 0 : |
| 583 | MKDEV(sysv_major(vattr.va_rdev) & 0x1ff, |
| 584 | sysv_minor(vattr.va_rdev)); |
| 585 | stat->mode = vattr.va_mode; |
| 586 | stat->nlink = vattr.va_nlink; |
| 587 | stat->uid = vattr.va_uid; |
| 588 | stat->gid = vattr.va_gid; |
| 589 | stat->ino = vattr.va_nodeid; |
| 590 | stat->atime = vattr.va_atime; |
| 591 | stat->mtime = vattr.va_mtime; |
| 592 | stat->ctime = vattr.va_ctime; |
| 593 | stat->blocks = vattr.va_nblocks; |
| 594 | stat->blksize = vattr.va_blocksize; |
| 595 | } |
Nathan Scott | b76963f | 2006-06-09 14:58:20 +1000 | [diff] [blame] | 596 | return -error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | } |
| 598 | |
| 599 | STATIC int |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 600 | xfs_vn_setattr( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 601 | struct dentry *dentry, |
| 602 | struct iattr *attr) |
| 603 | { |
| 604 | struct inode *inode = dentry->d_inode; |
| 605 | unsigned int ia_valid = attr->ia_valid; |
Nathan Scott | 8285fb5 | 2006-06-09 17:07:12 +1000 | [diff] [blame] | 606 | bhv_vattr_t vattr = { 0 }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 607 | int flags = 0; |
| 608 | int error; |
| 609 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 | if (ia_valid & ATTR_UID) { |
| 611 | vattr.va_mask |= XFS_AT_UID; |
| 612 | vattr.va_uid = attr->ia_uid; |
| 613 | } |
| 614 | if (ia_valid & ATTR_GID) { |
| 615 | vattr.va_mask |= XFS_AT_GID; |
| 616 | vattr.va_gid = attr->ia_gid; |
| 617 | } |
| 618 | if (ia_valid & ATTR_SIZE) { |
| 619 | vattr.va_mask |= XFS_AT_SIZE; |
| 620 | vattr.va_size = attr->ia_size; |
| 621 | } |
| 622 | if (ia_valid & ATTR_ATIME) { |
| 623 | vattr.va_mask |= XFS_AT_ATIME; |
| 624 | vattr.va_atime = attr->ia_atime; |
Nathan Scott | 8c0b511 | 2006-04-11 15:12:45 +1000 | [diff] [blame] | 625 | inode->i_atime = attr->ia_atime; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 626 | } |
| 627 | if (ia_valid & ATTR_MTIME) { |
| 628 | vattr.va_mask |= XFS_AT_MTIME; |
| 629 | vattr.va_mtime = attr->ia_mtime; |
| 630 | } |
| 631 | if (ia_valid & ATTR_CTIME) { |
| 632 | vattr.va_mask |= XFS_AT_CTIME; |
| 633 | vattr.va_ctime = attr->ia_ctime; |
| 634 | } |
| 635 | if (ia_valid & ATTR_MODE) { |
| 636 | vattr.va_mask |= XFS_AT_MODE; |
| 637 | vattr.va_mode = attr->ia_mode; |
| 638 | if (!in_group_p(inode->i_gid) && !capable(CAP_FSETID)) |
| 639 | inode->i_mode &= ~S_ISGID; |
| 640 | } |
| 641 | |
| 642 | if (ia_valid & (ATTR_MTIME_SET | ATTR_ATIME_SET)) |
| 643 | flags |= ATTR_UTIME; |
| 644 | #ifdef ATTR_NO_BLOCK |
| 645 | if ((ia_valid & ATTR_NO_BLOCK)) |
| 646 | flags |= ATTR_NONBLOCK; |
| 647 | #endif |
| 648 | |
Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 649 | error = xfs_setattr(XFS_I(inode), &vattr, flags, NULL); |
Nathan Scott | 220b528 | 2006-03-14 13:33:36 +1100 | [diff] [blame] | 650 | if (likely(!error)) |
Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 651 | __vn_revalidate(vn_from_inode(inode), &vattr); |
Nathan Scott | 220b528 | 2006-03-14 13:33:36 +1100 | [diff] [blame] | 652 | return -error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 653 | } |
| 654 | |
| 655 | STATIC void |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 656 | xfs_vn_truncate( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 657 | struct inode *inode) |
| 658 | { |
Nathan Scott | c253666 | 2006-03-29 10:44:40 +1000 | [diff] [blame] | 659 | block_truncate_page(inode->i_mapping, inode->i_size, xfs_get_blocks); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 660 | } |
| 661 | |
| 662 | STATIC int |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 663 | xfs_vn_setxattr( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 664 | struct dentry *dentry, |
| 665 | const char *name, |
| 666 | const void *data, |
| 667 | size_t size, |
| 668 | int flags) |
| 669 | { |
Nathan Scott | 67fcaa7 | 2006-06-09 17:00:52 +1000 | [diff] [blame] | 670 | bhv_vnode_t *vp = vn_from_inode(dentry->d_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 671 | char *attr = (char *)name; |
| 672 | attrnames_t *namesp; |
| 673 | int xflags = 0; |
| 674 | int error; |
| 675 | |
| 676 | namesp = attr_lookup_namespace(attr, attr_namespaces, ATTR_NAMECOUNT); |
| 677 | if (!namesp) |
| 678 | return -EOPNOTSUPP; |
| 679 | attr += namesp->attr_namelen; |
| 680 | error = namesp->attr_capable(vp, NULL); |
| 681 | if (error) |
| 682 | return error; |
| 683 | |
| 684 | /* Convert Linux syscall to XFS internal ATTR flags */ |
| 685 | if (flags & XATTR_CREATE) |
| 686 | xflags |= ATTR_CREATE; |
| 687 | if (flags & XATTR_REPLACE) |
| 688 | xflags |= ATTR_REPLACE; |
| 689 | xflags |= namesp->attr_flag; |
| 690 | return namesp->attr_set(vp, attr, (void *)data, size, xflags); |
| 691 | } |
| 692 | |
| 693 | STATIC ssize_t |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 694 | xfs_vn_getxattr( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 695 | struct dentry *dentry, |
| 696 | const char *name, |
| 697 | void *data, |
| 698 | size_t size) |
| 699 | { |
Nathan Scott | 67fcaa7 | 2006-06-09 17:00:52 +1000 | [diff] [blame] | 700 | bhv_vnode_t *vp = vn_from_inode(dentry->d_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 701 | char *attr = (char *)name; |
| 702 | attrnames_t *namesp; |
| 703 | int xflags = 0; |
| 704 | ssize_t error; |
| 705 | |
| 706 | namesp = attr_lookup_namespace(attr, attr_namespaces, ATTR_NAMECOUNT); |
| 707 | if (!namesp) |
| 708 | return -EOPNOTSUPP; |
| 709 | attr += namesp->attr_namelen; |
| 710 | error = namesp->attr_capable(vp, NULL); |
| 711 | if (error) |
| 712 | return error; |
| 713 | |
| 714 | /* Convert Linux syscall to XFS internal ATTR flags */ |
| 715 | if (!size) { |
| 716 | xflags |= ATTR_KERNOVAL; |
| 717 | data = NULL; |
| 718 | } |
| 719 | xflags |= namesp->attr_flag; |
| 720 | return namesp->attr_get(vp, attr, (void *)data, size, xflags); |
| 721 | } |
| 722 | |
| 723 | STATIC ssize_t |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 724 | xfs_vn_listxattr( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 725 | struct dentry *dentry, |
| 726 | char *data, |
| 727 | size_t size) |
| 728 | { |
Nathan Scott | 67fcaa7 | 2006-06-09 17:00:52 +1000 | [diff] [blame] | 729 | bhv_vnode_t *vp = vn_from_inode(dentry->d_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 730 | int error, xflags = ATTR_KERNAMELS; |
| 731 | ssize_t result; |
| 732 | |
| 733 | if (!size) |
| 734 | xflags |= ATTR_KERNOVAL; |
| 735 | xflags |= capable(CAP_SYS_ADMIN) ? ATTR_KERNFULLS : ATTR_KERNORMALS; |
| 736 | |
| 737 | error = attr_generic_list(vp, data, size, xflags, &result); |
| 738 | if (error < 0) |
| 739 | return error; |
| 740 | return result; |
| 741 | } |
| 742 | |
| 743 | STATIC int |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 744 | xfs_vn_removexattr( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 745 | struct dentry *dentry, |
| 746 | const char *name) |
| 747 | { |
Nathan Scott | 67fcaa7 | 2006-06-09 17:00:52 +1000 | [diff] [blame] | 748 | bhv_vnode_t *vp = vn_from_inode(dentry->d_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 749 | char *attr = (char *)name; |
| 750 | attrnames_t *namesp; |
| 751 | int xflags = 0; |
| 752 | int error; |
| 753 | |
| 754 | namesp = attr_lookup_namespace(attr, attr_namespaces, ATTR_NAMECOUNT); |
| 755 | if (!namesp) |
| 756 | return -EOPNOTSUPP; |
| 757 | attr += namesp->attr_namelen; |
| 758 | error = namesp->attr_capable(vp, NULL); |
| 759 | if (error) |
| 760 | return error; |
| 761 | xflags |= namesp->attr_flag; |
| 762 | return namesp->attr_remove(vp, attr, xflags); |
| 763 | } |
| 764 | |
| 765 | |
Arjan van de Ven | c5ef1c4 | 2007-02-12 00:55:40 -0800 | [diff] [blame] | 766 | const struct inode_operations xfs_inode_operations = { |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 767 | .permission = xfs_vn_permission, |
| 768 | .truncate = xfs_vn_truncate, |
| 769 | .getattr = xfs_vn_getattr, |
| 770 | .setattr = xfs_vn_setattr, |
| 771 | .setxattr = xfs_vn_setxattr, |
| 772 | .getxattr = xfs_vn_getxattr, |
| 773 | .listxattr = xfs_vn_listxattr, |
| 774 | .removexattr = xfs_vn_removexattr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 775 | }; |
| 776 | |
Arjan van de Ven | c5ef1c4 | 2007-02-12 00:55:40 -0800 | [diff] [blame] | 777 | const struct inode_operations xfs_dir_inode_operations = { |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 778 | .create = xfs_vn_create, |
| 779 | .lookup = xfs_vn_lookup, |
| 780 | .link = xfs_vn_link, |
| 781 | .unlink = xfs_vn_unlink, |
| 782 | .symlink = xfs_vn_symlink, |
| 783 | .mkdir = xfs_vn_mkdir, |
| 784 | .rmdir = xfs_vn_rmdir, |
| 785 | .mknod = xfs_vn_mknod, |
| 786 | .rename = xfs_vn_rename, |
| 787 | .permission = xfs_vn_permission, |
| 788 | .getattr = xfs_vn_getattr, |
| 789 | .setattr = xfs_vn_setattr, |
| 790 | .setxattr = xfs_vn_setxattr, |
| 791 | .getxattr = xfs_vn_getxattr, |
| 792 | .listxattr = xfs_vn_listxattr, |
| 793 | .removexattr = xfs_vn_removexattr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 794 | }; |
| 795 | |
Arjan van de Ven | c5ef1c4 | 2007-02-12 00:55:40 -0800 | [diff] [blame] | 796 | const struct inode_operations xfs_symlink_inode_operations = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | .readlink = generic_readlink, |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 798 | .follow_link = xfs_vn_follow_link, |
| 799 | .put_link = xfs_vn_put_link, |
| 800 | .permission = xfs_vn_permission, |
| 801 | .getattr = xfs_vn_getattr, |
| 802 | .setattr = xfs_vn_setattr, |
| 803 | .setxattr = xfs_vn_setxattr, |
| 804 | .getxattr = xfs_vn_getxattr, |
| 805 | .listxattr = xfs_vn_listxattr, |
| 806 | .removexattr = xfs_vn_removexattr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 807 | }; |