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> |
David Chinner | 3ed6526 | 2007-11-23 16:29:25 +1100 | [diff] [blame] | 55 | #include <linux/falloc.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | |
Nathan Scott | 4aeb664 | 2005-11-02 11:43:58 +1100 | [diff] [blame] | 57 | /* |
Christoph Hellwig | 42fe2b1 | 2006-01-11 15:35:17 +1100 | [diff] [blame] | 58 | * Bring the atime in the XFS inode uptodate. |
| 59 | * Used before logging the inode to disk or when the Linux inode goes away. |
| 60 | */ |
| 61 | void |
| 62 | xfs_synchronize_atime( |
| 63 | xfs_inode_t *ip) |
| 64 | { |
Nathan Scott | 67fcaa7 | 2006-06-09 17:00:52 +1000 | [diff] [blame] | 65 | bhv_vnode_t *vp; |
Christoph Hellwig | 42fe2b1 | 2006-01-11 15:35:17 +1100 | [diff] [blame] | 66 | |
| 67 | vp = XFS_ITOV_NULL(ip); |
| 68 | if (vp) { |
Christoph Hellwig | 0a74cd1 | 2007-08-29 11:53:12 +1000 | [diff] [blame] | 69 | ip->i_d.di_atime.t_sec = (__int32_t)vp->i_atime.tv_sec; |
| 70 | 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] | 71 | } |
| 72 | } |
| 73 | |
| 74 | /* |
David Chinner | 5d51eff | 2007-11-23 16:29:18 +1100 | [diff] [blame] | 75 | * If the linux inode exists, mark it dirty. |
| 76 | * Used when commiting a dirty inode into a transaction so that |
| 77 | * the inode will get written back by the linux code |
| 78 | */ |
| 79 | void |
| 80 | xfs_mark_inode_dirty_sync( |
| 81 | xfs_inode_t *ip) |
| 82 | { |
| 83 | bhv_vnode_t *vp; |
| 84 | |
| 85 | vp = XFS_ITOV_NULL(ip); |
| 86 | if (vp) |
| 87 | mark_inode_dirty_sync(vn_to_inode(vp)); |
| 88 | } |
| 89 | |
| 90 | /* |
Nathan Scott | 4aeb664 | 2005-11-02 11:43:58 +1100 | [diff] [blame] | 91 | * Change the requested timestamp in the given inode. |
| 92 | * We don't lock across timestamp updates, and we don't log them but |
| 93 | * we do record the fact that there is dirty information in core. |
| 94 | * |
| 95 | * NOTE -- callers MUST combine XFS_ICHGTIME_MOD or XFS_ICHGTIME_CHG |
| 96 | * with XFS_ICHGTIME_ACC to be sure that access time |
| 97 | * update will take. Calling first with XFS_ICHGTIME_ACC |
| 98 | * and then XFS_ICHGTIME_MOD may fail to modify the access |
| 99 | * timestamp if the filesystem is mounted noacctm. |
| 100 | */ |
| 101 | void |
| 102 | xfs_ichgtime( |
| 103 | xfs_inode_t *ip, |
| 104 | int flags) |
| 105 | { |
Nathan Scott | ec86dc0 | 2006-03-17 17:25:36 +1100 | [diff] [blame] | 106 | struct inode *inode = vn_to_inode(XFS_ITOV(ip)); |
Nathan Scott | 4aeb664 | 2005-11-02 11:43:58 +1100 | [diff] [blame] | 107 | timespec_t tv; |
| 108 | |
Nathan Scott | 4aeb664 | 2005-11-02 11:43:58 +1100 | [diff] [blame] | 109 | nanotime(&tv); |
| 110 | if (flags & XFS_ICHGTIME_MOD) { |
| 111 | inode->i_mtime = tv; |
| 112 | ip->i_d.di_mtime.t_sec = (__int32_t)tv.tv_sec; |
| 113 | ip->i_d.di_mtime.t_nsec = (__int32_t)tv.tv_nsec; |
| 114 | } |
| 115 | if (flags & XFS_ICHGTIME_ACC) { |
| 116 | inode->i_atime = tv; |
| 117 | ip->i_d.di_atime.t_sec = (__int32_t)tv.tv_sec; |
| 118 | ip->i_d.di_atime.t_nsec = (__int32_t)tv.tv_nsec; |
| 119 | } |
| 120 | if (flags & XFS_ICHGTIME_CHG) { |
| 121 | inode->i_ctime = tv; |
| 122 | ip->i_d.di_ctime.t_sec = (__int32_t)tv.tv_sec; |
| 123 | ip->i_d.di_ctime.t_nsec = (__int32_t)tv.tv_nsec; |
| 124 | } |
| 125 | |
| 126 | /* |
| 127 | * We update the i_update_core field _after_ changing |
| 128 | * the timestamps in order to coordinate properly with |
| 129 | * xfs_iflush() so that we don't lose timestamp updates. |
| 130 | * This keeps us from having to hold the inode lock |
| 131 | * while doing this. We use the SYNCHRONIZE macro to |
| 132 | * ensure that the compiler does not reorder the update |
| 133 | * of i_update_core above the timestamp updates above. |
| 134 | */ |
| 135 | SYNCHRONIZE(); |
| 136 | ip->i_update_core = 1; |
David Chinner | cf10e82 | 2007-12-07 14:09:11 +1100 | [diff] [blame] | 137 | if (!(inode->i_state & I_NEW)) |
Nathan Scott | 4aeb664 | 2005-11-02 11:43:58 +1100 | [diff] [blame] | 138 | mark_inode_dirty_sync(inode); |
| 139 | } |
| 140 | |
| 141 | /* |
| 142 | * Variant on the above which avoids querying the system clock |
| 143 | * in situations where we know the Linux inode timestamps have |
| 144 | * just been updated (and so we can update our inode cheaply). |
Nathan Scott | 4aeb664 | 2005-11-02 11:43:58 +1100 | [diff] [blame] | 145 | */ |
| 146 | void |
| 147 | xfs_ichgtime_fast( |
| 148 | xfs_inode_t *ip, |
| 149 | struct inode *inode, |
| 150 | int flags) |
| 151 | { |
| 152 | timespec_t *tvp; |
| 153 | |
| 154 | /* |
Christoph Hellwig | 42fe2b1 | 2006-01-11 15:35:17 +1100 | [diff] [blame] | 155 | * Atime updates for read() & friends are handled lazily now, and |
| 156 | * explicit updates must go through xfs_ichgtime() |
| 157 | */ |
| 158 | ASSERT((flags & XFS_ICHGTIME_ACC) == 0); |
| 159 | |
| 160 | /* |
Nathan Scott | 4aeb664 | 2005-11-02 11:43:58 +1100 | [diff] [blame] | 161 | * We're not supposed to change timestamps in readonly-mounted |
| 162 | * filesystems. Throw it away if anyone asks us. |
| 163 | */ |
| 164 | if (unlikely(IS_RDONLY(inode))) |
| 165 | return; |
| 166 | |
Nathan Scott | 4aeb664 | 2005-11-02 11:43:58 +1100 | [diff] [blame] | 167 | if (flags & XFS_ICHGTIME_MOD) { |
| 168 | tvp = &inode->i_mtime; |
| 169 | ip->i_d.di_mtime.t_sec = (__int32_t)tvp->tv_sec; |
| 170 | ip->i_d.di_mtime.t_nsec = (__int32_t)tvp->tv_nsec; |
| 171 | } |
Nathan Scott | 4aeb664 | 2005-11-02 11:43:58 +1100 | [diff] [blame] | 172 | if (flags & XFS_ICHGTIME_CHG) { |
| 173 | tvp = &inode->i_ctime; |
| 174 | ip->i_d.di_ctime.t_sec = (__int32_t)tvp->tv_sec; |
| 175 | ip->i_d.di_ctime.t_nsec = (__int32_t)tvp->tv_nsec; |
| 176 | } |
| 177 | |
| 178 | /* |
| 179 | * We update the i_update_core field _after_ changing |
| 180 | * the timestamps in order to coordinate properly with |
| 181 | * xfs_iflush() so that we don't lose timestamp updates. |
| 182 | * This keeps us from having to hold the inode lock |
| 183 | * while doing this. We use the SYNCHRONIZE macro to |
| 184 | * ensure that the compiler does not reorder the update |
| 185 | * of i_update_core above the timestamp updates above. |
| 186 | */ |
| 187 | SYNCHRONIZE(); |
| 188 | ip->i_update_core = 1; |
David Chinner | cf10e82 | 2007-12-07 14:09:11 +1100 | [diff] [blame] | 189 | if (!(inode->i_state & I_NEW)) |
Nathan Scott | 4aeb664 | 2005-11-02 11:43:58 +1100 | [diff] [blame] | 190 | mark_inode_dirty_sync(inode); |
| 191 | } |
| 192 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | |
| 194 | /* |
| 195 | * Pull the link count and size up from the xfs inode to the linux inode |
| 196 | */ |
| 197 | STATIC void |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 198 | xfs_validate_fields( |
Christoph Hellwig | 6572bc2 | 2007-09-19 15:27:39 +1000 | [diff] [blame] | 199 | struct inode *inode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | { |
Christoph Hellwig | 6572bc2 | 2007-09-19 15:27:39 +1000 | [diff] [blame] | 201 | struct xfs_inode *ip = XFS_I(inode); |
| 202 | loff_t size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | |
Christoph Hellwig | 6572bc2 | 2007-09-19 15:27:39 +1000 | [diff] [blame] | 204 | inode->i_nlink = ip->i_d.di_nlink; |
Christoph Hellwig | 6572bc2 | 2007-09-19 15:27:39 +1000 | [diff] [blame] | 205 | /* we're under i_sem so i_size can't change under us */ |
| 206 | size = XFS_ISIZE(ip); |
| 207 | if (i_size_read(inode) != size) |
| 208 | i_size_write(inode, size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | } |
| 210 | |
| 211 | /* |
Nathan Scott | 446ada4 | 2006-01-11 15:35:44 +1100 | [diff] [blame] | 212 | * Hook in SELinux. This is not quite correct yet, what we really need |
| 213 | * here (as we do for default ACLs) is a mechanism by which creation of |
| 214 | * these attrs can be journalled at inode creation time (along with the |
| 215 | * inode, of course, such that log replay can't cause these to be lost). |
| 216 | */ |
| 217 | STATIC int |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 218 | xfs_init_security( |
Nathan Scott | 67fcaa7 | 2006-06-09 17:00:52 +1000 | [diff] [blame] | 219 | bhv_vnode_t *vp, |
Nathan Scott | 446ada4 | 2006-01-11 15:35:44 +1100 | [diff] [blame] | 220 | struct inode *dir) |
| 221 | { |
Nathan Scott | ec86dc0 | 2006-03-17 17:25:36 +1100 | [diff] [blame] | 222 | struct inode *ip = vn_to_inode(vp); |
Nathan Scott | 446ada4 | 2006-01-11 15:35:44 +1100 | [diff] [blame] | 223 | size_t length; |
| 224 | void *value; |
| 225 | char *name; |
| 226 | int error; |
| 227 | |
| 228 | error = security_inode_init_security(ip, dir, &name, &value, &length); |
| 229 | if (error) { |
| 230 | if (error == -EOPNOTSUPP) |
| 231 | return 0; |
| 232 | return -error; |
| 233 | } |
| 234 | |
Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 235 | error = xfs_attr_set(XFS_I(ip), name, value, |
| 236 | length, ATTR_SECURE); |
Nathan Scott | 446ada4 | 2006-01-11 15:35:44 +1100 | [diff] [blame] | 237 | if (!error) |
Christoph Hellwig | b3aea4e | 2007-08-29 11:44:37 +1000 | [diff] [blame] | 238 | xfs_iflags_set(XFS_I(ip), XFS_IMODIFIED); |
Nathan Scott | 446ada4 | 2006-01-11 15:35:44 +1100 | [diff] [blame] | 239 | |
| 240 | kfree(name); |
| 241 | kfree(value); |
| 242 | return error; |
| 243 | } |
| 244 | |
| 245 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | * Determine whether a process has a valid fs_struct (kernel daemons |
| 247 | * like knfsd don't have an fs_struct). |
| 248 | * |
| 249 | * XXX(hch): nfsd is broken, better fix it instead. |
| 250 | */ |
David Chinner | 7989cb8 | 2007-02-10 18:34:56 +1100 | [diff] [blame] | 251 | STATIC_INLINE int |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 252 | xfs_has_fs_struct(struct task_struct *task) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | { |
| 254 | return (task->fs != init_task.fs); |
| 255 | } |
| 256 | |
David Chinner | 7989cb8 | 2007-02-10 18:34:56 +1100 | [diff] [blame] | 257 | STATIC void |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 258 | xfs_cleanup_inode( |
Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 259 | struct inode *dir, |
Nathan Scott | 67fcaa7 | 2006-06-09 17:00:52 +1000 | [diff] [blame] | 260 | bhv_vnode_t *vp, |
Nathan Scott | 220b528 | 2006-03-14 13:33:36 +1100 | [diff] [blame] | 261 | struct dentry *dentry, |
Yingping Lu | 3a69c7d | 2006-02-01 12:14:34 +1100 | [diff] [blame] | 262 | int mode) |
| 263 | { |
| 264 | struct dentry teardown = {}; |
Yingping Lu | 3a69c7d | 2006-02-01 12:14:34 +1100 | [diff] [blame] | 265 | |
| 266 | /* Oh, the horror. |
Nathan Scott | 220b528 | 2006-03-14 13:33:36 +1100 | [diff] [blame] | 267 | * If we can't add the ACL or we fail in |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 268 | * xfs_init_security we must back out. |
Yingping Lu | 3a69c7d | 2006-02-01 12:14:34 +1100 | [diff] [blame] | 269 | * ENOSPC can hit here, among other things. |
| 270 | */ |
Nathan Scott | ec86dc0 | 2006-03-17 17:25:36 +1100 | [diff] [blame] | 271 | teardown.d_inode = vn_to_inode(vp); |
Yingping Lu | 3a69c7d | 2006-02-01 12:14:34 +1100 | [diff] [blame] | 272 | teardown.d_name = dentry->d_name; |
| 273 | |
| 274 | if (S_ISDIR(mode)) |
Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 275 | xfs_rmdir(XFS_I(dir), &teardown); |
Yingping Lu | 3a69c7d | 2006-02-01 12:14:34 +1100 | [diff] [blame] | 276 | else |
Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 277 | xfs_remove(XFS_I(dir), &teardown); |
Yingping Lu | 3a69c7d | 2006-02-01 12:14:34 +1100 | [diff] [blame] | 278 | VN_RELE(vp); |
| 279 | } |
| 280 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | STATIC int |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 282 | xfs_vn_mknod( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | struct inode *dir, |
| 284 | struct dentry *dentry, |
| 285 | int mode, |
| 286 | dev_t rdev) |
| 287 | { |
| 288 | struct inode *ip; |
Nathan Scott | 67fcaa7 | 2006-06-09 17:00:52 +1000 | [diff] [blame] | 289 | bhv_vnode_t *vp = NULL, *dvp = vn_from_inode(dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | xfs_acl_t *default_acl = NULL; |
| 291 | attrexists_t test_default_acl = _ACL_DEFAULT_EXISTS; |
| 292 | int error; |
| 293 | |
| 294 | /* |
| 295 | * Irix uses Missed'em'V split, but doesn't want to see |
| 296 | * the upper 5 bits of (14bit) major. |
| 297 | */ |
Nathan Scott | 220b528 | 2006-03-14 13:33:36 +1100 | [diff] [blame] | 298 | if (unlikely(!sysv_valid_dev(rdev) || MAJOR(rdev) & ~0x1ff)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | return -EINVAL; |
| 300 | |
Nathan Scott | 220b528 | 2006-03-14 13:33:36 +1100 | [diff] [blame] | 301 | if (unlikely(test_default_acl && test_default_acl(dvp))) { |
| 302 | if (!_ACL_ALLOC(default_acl)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | return -ENOMEM; |
Nathan Scott | 220b528 | 2006-03-14 13:33:36 +1100 | [diff] [blame] | 304 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 305 | if (!_ACL_GET_DEFAULT(dvp, default_acl)) { |
| 306 | _ACL_FREE(default_acl); |
| 307 | default_acl = NULL; |
| 308 | } |
| 309 | } |
| 310 | |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 311 | if (IS_POSIXACL(dir) && !default_acl && xfs_has_fs_struct(current)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | mode &= ~current->fs->umask; |
| 313 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | switch (mode & S_IFMT) { |
| 315 | case S_IFCHR: case S_IFBLK: case S_IFIFO: case S_IFSOCK: |
Christoph Hellwig | 3e5daf0 | 2007-10-11 18:09:12 +1000 | [diff] [blame] | 316 | rdev = sysv_encode_dev(rdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | case S_IFREG: |
Christoph Hellwig | 3e5daf0 | 2007-10-11 18:09:12 +1000 | [diff] [blame] | 318 | error = xfs_create(XFS_I(dir), dentry, mode, rdev, &vp, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | break; |
| 320 | case S_IFDIR: |
Christoph Hellwig | 3e5daf0 | 2007-10-11 18:09:12 +1000 | [diff] [blame] | 321 | error = xfs_mkdir(XFS_I(dir), dentry, mode, &vp, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | break; |
| 323 | default: |
| 324 | error = EINVAL; |
| 325 | break; |
| 326 | } |
| 327 | |
Nathan Scott | 220b528 | 2006-03-14 13:33:36 +1100 | [diff] [blame] | 328 | if (unlikely(!error)) { |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 329 | error = xfs_init_security(vp, dir); |
Yingping Lu | 3a69c7d | 2006-02-01 12:14:34 +1100 | [diff] [blame] | 330 | if (error) |
Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 331 | xfs_cleanup_inode(dir, vp, dentry, mode); |
Yingping Lu | 3a69c7d | 2006-02-01 12:14:34 +1100 | [diff] [blame] | 332 | } |
Nathan Scott | 446ada4 | 2006-01-11 15:35:44 +1100 | [diff] [blame] | 333 | |
Nathan Scott | 220b528 | 2006-03-14 13:33:36 +1100 | [diff] [blame] | 334 | if (unlikely(default_acl)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | if (!error) { |
Christoph Hellwig | 3e5daf0 | 2007-10-11 18:09:12 +1000 | [diff] [blame] | 336 | error = _ACL_INHERIT(vp, mode, default_acl); |
Nathan Scott | 220b528 | 2006-03-14 13:33:36 +1100 | [diff] [blame] | 337 | if (!error) |
Christoph Hellwig | 0a74cd1 | 2007-08-29 11:53:12 +1000 | [diff] [blame] | 338 | xfs_iflags_set(XFS_I(vp), XFS_IMODIFIED); |
Yingping Lu | 3a69c7d | 2006-02-01 12:14:34 +1100 | [diff] [blame] | 339 | else |
Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 340 | xfs_cleanup_inode(dir, vp, dentry, mode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | } |
| 342 | _ACL_FREE(default_acl); |
| 343 | } |
| 344 | |
Nathan Scott | 220b528 | 2006-03-14 13:33:36 +1100 | [diff] [blame] | 345 | if (likely(!error)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | ASSERT(vp); |
Nathan Scott | ec86dc0 | 2006-03-17 17:25:36 +1100 | [diff] [blame] | 347 | ip = vn_to_inode(vp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | |
Christoph Hellwig | bad60fd | 2007-12-21 10:58:56 +1100 | [diff] [blame] | 349 | if (S_ISDIR(mode)) |
Christoph Hellwig | 6572bc2 | 2007-09-19 15:27:39 +1000 | [diff] [blame] | 350 | xfs_validate_fields(ip); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | d_instantiate(dentry, ip); |
Christoph Hellwig | 6572bc2 | 2007-09-19 15:27:39 +1000 | [diff] [blame] | 352 | xfs_validate_fields(dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | } |
| 354 | return -error; |
| 355 | } |
| 356 | |
| 357 | STATIC int |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 358 | xfs_vn_create( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | struct inode *dir, |
| 360 | struct dentry *dentry, |
| 361 | int mode, |
| 362 | struct nameidata *nd) |
| 363 | { |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 364 | return xfs_vn_mknod(dir, dentry, mode, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | } |
| 366 | |
| 367 | STATIC int |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 368 | xfs_vn_mkdir( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | struct inode *dir, |
| 370 | struct dentry *dentry, |
| 371 | int mode) |
| 372 | { |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 373 | return xfs_vn_mknod(dir, dentry, mode|S_IFDIR, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | } |
| 375 | |
| 376 | STATIC struct dentry * |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 377 | xfs_vn_lookup( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | struct inode *dir, |
| 379 | struct dentry *dentry, |
| 380 | struct nameidata *nd) |
| 381 | { |
Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 382 | bhv_vnode_t *cvp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | int error; |
| 384 | |
| 385 | if (dentry->d_name.len >= MAXNAMELEN) |
| 386 | return ERR_PTR(-ENAMETOOLONG); |
| 387 | |
Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 388 | error = xfs_lookup(XFS_I(dir), dentry, &cvp); |
Nathan Scott | 67fcaa7 | 2006-06-09 17:00:52 +1000 | [diff] [blame] | 389 | if (unlikely(error)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | if (unlikely(error != ENOENT)) |
| 391 | return ERR_PTR(-error); |
| 392 | d_add(dentry, NULL); |
| 393 | return NULL; |
| 394 | } |
| 395 | |
Nathan Scott | ec86dc0 | 2006-03-17 17:25:36 +1100 | [diff] [blame] | 396 | return d_splice_alias(vn_to_inode(cvp), dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | } |
| 398 | |
| 399 | STATIC int |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 400 | xfs_vn_link( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | struct dentry *old_dentry, |
| 402 | struct inode *dir, |
| 403 | struct dentry *dentry) |
| 404 | { |
| 405 | struct inode *ip; /* inode of guy being linked to */ |
Nathan Scott | 67fcaa7 | 2006-06-09 17:00:52 +1000 | [diff] [blame] | 406 | bhv_vnode_t *vp; /* vp of name being linked */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | int error; |
| 408 | |
| 409 | ip = old_dentry->d_inode; /* inode being linked to */ |
Nathan Scott | ec86dc0 | 2006-03-17 17:25:36 +1100 | [diff] [blame] | 410 | vp = vn_from_inode(ip); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | |
Nathan Scott | 97dfd70 | 2006-06-27 16:13:46 +1000 | [diff] [blame] | 412 | VN_HOLD(vp); |
Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 413 | error = xfs_link(XFS_I(dir), vp, dentry); |
Nathan Scott | 97dfd70 | 2006-06-27 16:13:46 +1000 | [diff] [blame] | 414 | if (unlikely(error)) { |
| 415 | VN_RELE(vp); |
| 416 | } else { |
Christoph Hellwig | b3aea4e | 2007-08-29 11:44:37 +1000 | [diff] [blame] | 417 | xfs_iflags_set(XFS_I(dir), XFS_IMODIFIED); |
Christoph Hellwig | 6572bc2 | 2007-09-19 15:27:39 +1000 | [diff] [blame] | 418 | xfs_validate_fields(ip); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | d_instantiate(dentry, ip); |
| 420 | } |
| 421 | return -error; |
| 422 | } |
| 423 | |
| 424 | STATIC int |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 425 | xfs_vn_unlink( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | struct inode *dir, |
| 427 | struct dentry *dentry) |
| 428 | { |
| 429 | struct inode *inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | int error; |
| 431 | |
| 432 | inode = dentry->d_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 | |
Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 434 | error = xfs_remove(XFS_I(dir), dentry); |
Nathan Scott | 220b528 | 2006-03-14 13:33:36 +1100 | [diff] [blame] | 435 | if (likely(!error)) { |
Christoph Hellwig | 6572bc2 | 2007-09-19 15:27:39 +1000 | [diff] [blame] | 436 | xfs_validate_fields(dir); /* size needs update */ |
| 437 | xfs_validate_fields(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | return -error; |
| 440 | } |
| 441 | |
| 442 | STATIC int |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 443 | xfs_vn_symlink( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | struct inode *dir, |
| 445 | struct dentry *dentry, |
| 446 | const char *symname) |
| 447 | { |
| 448 | struct inode *ip; |
Nathan Scott | 67fcaa7 | 2006-06-09 17:00:52 +1000 | [diff] [blame] | 449 | bhv_vnode_t *cvp; /* used to lookup symlink to put in dentry */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | int error; |
Christoph Hellwig | 3e5daf0 | 2007-10-11 18:09:12 +1000 | [diff] [blame] | 451 | mode_t mode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | cvp = NULL; |
| 454 | |
Christoph Hellwig | 3e5daf0 | 2007-10-11 18:09:12 +1000 | [diff] [blame] | 455 | mode = S_IFLNK | |
Christoph Hellwig | 0432dab | 2005-09-02 16:46:51 +1000 | [diff] [blame] | 456 | (irix_symlink_mode ? 0777 & ~current->fs->umask : S_IRWXUGO); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | |
Christoph Hellwig | 3e5daf0 | 2007-10-11 18:09:12 +1000 | [diff] [blame] | 458 | error = xfs_symlink(XFS_I(dir), dentry, (char *)symname, mode, |
| 459 | &cvp, NULL); |
Nathan Scott | 5424570 | 2006-01-16 15:54:05 +1100 | [diff] [blame] | 460 | if (likely(!error && cvp)) { |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 461 | error = xfs_init_security(cvp, dir); |
Nathan Scott | 5424570 | 2006-01-16 15:54:05 +1100 | [diff] [blame] | 462 | if (likely(!error)) { |
Nathan Scott | ec86dc0 | 2006-03-17 17:25:36 +1100 | [diff] [blame] | 463 | ip = vn_to_inode(cvp); |
Nathan Scott | 5424570 | 2006-01-16 15:54:05 +1100 | [diff] [blame] | 464 | d_instantiate(dentry, ip); |
Christoph Hellwig | 6572bc2 | 2007-09-19 15:27:39 +1000 | [diff] [blame] | 465 | xfs_validate_fields(dir); |
| 466 | xfs_validate_fields(ip); |
Nathan Scott | ce9d37c | 2006-03-17 17:26:34 +1100 | [diff] [blame] | 467 | } else { |
Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 468 | xfs_cleanup_inode(dir, cvp, dentry, 0); |
Nathan Scott | 5424570 | 2006-01-16 15:54:05 +1100 | [diff] [blame] | 469 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | } |
| 471 | return -error; |
| 472 | } |
| 473 | |
| 474 | STATIC int |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 475 | xfs_vn_rmdir( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | struct inode *dir, |
| 477 | struct dentry *dentry) |
| 478 | { |
| 479 | struct inode *inode = dentry->d_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | int error; |
| 481 | |
Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 482 | error = xfs_rmdir(XFS_I(dir), dentry); |
Nathan Scott | 220b528 | 2006-03-14 13:33:36 +1100 | [diff] [blame] | 483 | if (likely(!error)) { |
Christoph Hellwig | 6572bc2 | 2007-09-19 15:27:39 +1000 | [diff] [blame] | 484 | xfs_validate_fields(inode); |
| 485 | xfs_validate_fields(dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | } |
| 487 | return -error; |
| 488 | } |
| 489 | |
| 490 | STATIC int |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 491 | xfs_vn_rename( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | struct inode *odir, |
| 493 | struct dentry *odentry, |
| 494 | struct inode *ndir, |
| 495 | struct dentry *ndentry) |
| 496 | { |
| 497 | struct inode *new_inode = ndentry->d_inode; |
Nathan Scott | 67fcaa7 | 2006-06-09 17:00:52 +1000 | [diff] [blame] | 498 | bhv_vnode_t *tvp; /* target directory */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 | int error; |
| 500 | |
Nathan Scott | ec86dc0 | 2006-03-17 17:25:36 +1100 | [diff] [blame] | 501 | tvp = vn_from_inode(ndir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | |
Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 503 | error = xfs_rename(XFS_I(odir), odentry, tvp, ndentry); |
Nathan Scott | 220b528 | 2006-03-14 13:33:36 +1100 | [diff] [blame] | 504 | if (likely(!error)) { |
| 505 | if (new_inode) |
Christoph Hellwig | 6572bc2 | 2007-09-19 15:27:39 +1000 | [diff] [blame] | 506 | xfs_validate_fields(new_inode); |
| 507 | xfs_validate_fields(odir); |
Nathan Scott | 220b528 | 2006-03-14 13:33:36 +1100 | [diff] [blame] | 508 | if (ndir != odir) |
Christoph Hellwig | 6572bc2 | 2007-09-19 15:27:39 +1000 | [diff] [blame] | 509 | xfs_validate_fields(ndir); |
Nathan Scott | 220b528 | 2006-03-14 13:33:36 +1100 | [diff] [blame] | 510 | } |
Nathan Scott | 220b528 | 2006-03-14 13:33:36 +1100 | [diff] [blame] | 511 | return -error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 512 | } |
| 513 | |
| 514 | /* |
| 515 | * careful here - this function can get called recursively, so |
| 516 | * we need to be very careful about how much stack we use. |
| 517 | * uio is kmalloced for this reason... |
| 518 | */ |
Al Viro | 008b150 | 2005-08-20 00:17:39 +0100 | [diff] [blame] | 519 | STATIC void * |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 520 | xfs_vn_follow_link( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | struct dentry *dentry, |
| 522 | struct nameidata *nd) |
| 523 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | char *link; |
Christoph Hellwig | 804c83c | 2007-08-28 13:59:03 +1000 | [diff] [blame] | 525 | int error = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | |
Panagiotis Issaris | f52720c | 2006-09-27 01:49:39 -0700 | [diff] [blame] | 527 | link = kmalloc(MAXPATHLEN+1, GFP_KERNEL); |
Christoph Hellwig | 804c83c | 2007-08-28 13:59:03 +1000 | [diff] [blame] | 528 | if (!link) |
| 529 | goto out_err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | |
Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 531 | error = -xfs_readlink(XFS_I(dentry->d_inode), link); |
Christoph Hellwig | 804c83c | 2007-08-28 13:59:03 +1000 | [diff] [blame] | 532 | if (unlikely(error)) |
| 533 | goto out_kfree; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 534 | |
| 535 | nd_set_link(nd, link); |
Al Viro | 008b150 | 2005-08-20 00:17:39 +0100 | [diff] [blame] | 536 | return NULL; |
Christoph Hellwig | 804c83c | 2007-08-28 13:59:03 +1000 | [diff] [blame] | 537 | |
| 538 | out_kfree: |
| 539 | kfree(link); |
| 540 | out_err: |
| 541 | nd_set_link(nd, ERR_PTR(error)); |
| 542 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | } |
| 544 | |
Nathan Scott | cde410a | 2005-09-05 11:47:01 +1000 | [diff] [blame] | 545 | STATIC void |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 546 | xfs_vn_put_link( |
Nathan Scott | cde410a | 2005-09-05 11:47:01 +1000 | [diff] [blame] | 547 | struct dentry *dentry, |
| 548 | struct nameidata *nd, |
| 549 | void *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | { |
Nathan Scott | cde410a | 2005-09-05 11:47:01 +1000 | [diff] [blame] | 551 | char *s = nd_get_link(nd); |
| 552 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 | if (!IS_ERR(s)) |
| 554 | kfree(s); |
| 555 | } |
| 556 | |
| 557 | #ifdef CONFIG_XFS_POSIX_ACL |
| 558 | STATIC int |
Christoph Hellwig | 4576758 | 2008-02-05 12:13:24 +1100 | [diff] [blame] | 559 | xfs_check_acl( |
| 560 | struct inode *inode, |
| 561 | int mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | { |
Christoph Hellwig | 4576758 | 2008-02-05 12:13:24 +1100 | [diff] [blame] | 563 | struct xfs_inode *ip = XFS_I(inode); |
| 564 | int error; |
| 565 | |
| 566 | xfs_itrace_entry(ip); |
| 567 | |
| 568 | if (XFS_IFORK_Q(ip)) { |
| 569 | error = xfs_acl_iaccess(ip, mask, NULL); |
| 570 | if (error != -1) |
| 571 | return -error; |
| 572 | } |
| 573 | |
| 574 | return -EAGAIN; |
| 575 | } |
| 576 | |
| 577 | STATIC int |
| 578 | xfs_vn_permission( |
| 579 | struct inode *inode, |
| 580 | int mask, |
| 581 | struct nameidata *nd) |
| 582 | { |
| 583 | return generic_permission(inode, mask, xfs_check_acl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 584 | } |
| 585 | #else |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 586 | #define xfs_vn_permission NULL |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | #endif |
| 588 | |
| 589 | STATIC int |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 590 | xfs_vn_getattr( |
Christoph Hellwig | c43f408 | 2007-10-11 17:46:39 +1000 | [diff] [blame] | 591 | struct vfsmount *mnt, |
| 592 | struct dentry *dentry, |
| 593 | struct kstat *stat) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 594 | { |
Christoph Hellwig | c43f408 | 2007-10-11 17:46:39 +1000 | [diff] [blame] | 595 | struct inode *inode = dentry->d_inode; |
| 596 | struct xfs_inode *ip = XFS_I(inode); |
| 597 | struct xfs_mount *mp = ip->i_mount; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | |
Christoph Hellwig | c43f408 | 2007-10-11 17:46:39 +1000 | [diff] [blame] | 599 | xfs_itrace_entry(ip); |
| 600 | |
| 601 | if (XFS_FORCED_SHUTDOWN(mp)) |
| 602 | return XFS_ERROR(EIO); |
| 603 | |
| 604 | stat->size = XFS_ISIZE(ip); |
| 605 | stat->dev = inode->i_sb->s_dev; |
| 606 | stat->mode = ip->i_d.di_mode; |
| 607 | stat->nlink = ip->i_d.di_nlink; |
| 608 | stat->uid = ip->i_d.di_uid; |
| 609 | stat->gid = ip->i_d.di_gid; |
| 610 | stat->ino = ip->i_ino; |
| 611 | #if XFS_BIG_INUMS |
| 612 | stat->ino += mp->m_inoadd; |
| 613 | #endif |
| 614 | stat->atime = inode->i_atime; |
| 615 | stat->mtime.tv_sec = ip->i_d.di_mtime.t_sec; |
| 616 | stat->mtime.tv_nsec = ip->i_d.di_mtime.t_nsec; |
| 617 | stat->ctime.tv_sec = ip->i_d.di_ctime.t_sec; |
| 618 | stat->ctime.tv_nsec = ip->i_d.di_ctime.t_nsec; |
| 619 | stat->blocks = |
| 620 | XFS_FSB_TO_BB(mp, ip->i_d.di_nblocks + ip->i_delayed_blks); |
| 621 | |
| 622 | |
| 623 | switch (inode->i_mode & S_IFMT) { |
| 624 | case S_IFBLK: |
| 625 | case S_IFCHR: |
| 626 | stat->blksize = BLKDEV_IOSIZE; |
| 627 | stat->rdev = MKDEV(sysv_major(ip->i_df.if_u2.if_rdev) & 0x1ff, |
| 628 | sysv_minor(ip->i_df.if_u2.if_rdev)); |
| 629 | break; |
| 630 | default: |
Eric Sandeen | 71ddabb | 2007-11-23 16:29:42 +1100 | [diff] [blame] | 631 | if (XFS_IS_REALTIME_INODE(ip)) { |
Christoph Hellwig | c43f408 | 2007-10-11 17:46:39 +1000 | [diff] [blame] | 632 | /* |
| 633 | * If the file blocks are being allocated from a |
| 634 | * realtime volume, then return the inode's realtime |
| 635 | * extent size or the realtime volume's extent size. |
| 636 | */ |
| 637 | stat->blksize = |
| 638 | xfs_get_extsz_hint(ip) << mp->m_sb.sb_blocklog; |
| 639 | } else |
| 640 | stat->blksize = xfs_preferred_iosize(mp); |
| 641 | stat->rdev = 0; |
| 642 | break; |
Nathan Scott | 69e23b9 | 2006-09-28 11:01:22 +1000 | [diff] [blame] | 643 | } |
Christoph Hellwig | c43f408 | 2007-10-11 17:46:39 +1000 | [diff] [blame] | 644 | |
| 645 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 646 | } |
| 647 | |
| 648 | STATIC int |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 649 | xfs_vn_setattr( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | struct dentry *dentry, |
| 651 | struct iattr *attr) |
| 652 | { |
| 653 | struct inode *inode = dentry->d_inode; |
| 654 | unsigned int ia_valid = attr->ia_valid; |
Nathan Scott | 8285fb5 | 2006-06-09 17:07:12 +1000 | [diff] [blame] | 655 | bhv_vattr_t vattr = { 0 }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 656 | int flags = 0; |
| 657 | int error; |
| 658 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 659 | if (ia_valid & ATTR_UID) { |
| 660 | vattr.va_mask |= XFS_AT_UID; |
| 661 | vattr.va_uid = attr->ia_uid; |
| 662 | } |
| 663 | if (ia_valid & ATTR_GID) { |
| 664 | vattr.va_mask |= XFS_AT_GID; |
| 665 | vattr.va_gid = attr->ia_gid; |
| 666 | } |
| 667 | if (ia_valid & ATTR_SIZE) { |
| 668 | vattr.va_mask |= XFS_AT_SIZE; |
| 669 | vattr.va_size = attr->ia_size; |
| 670 | } |
| 671 | if (ia_valid & ATTR_ATIME) { |
| 672 | vattr.va_mask |= XFS_AT_ATIME; |
| 673 | vattr.va_atime = attr->ia_atime; |
Nathan Scott | 8c0b511 | 2006-04-11 15:12:45 +1000 | [diff] [blame] | 674 | inode->i_atime = attr->ia_atime; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 675 | } |
| 676 | if (ia_valid & ATTR_MTIME) { |
| 677 | vattr.va_mask |= XFS_AT_MTIME; |
| 678 | vattr.va_mtime = attr->ia_mtime; |
| 679 | } |
| 680 | if (ia_valid & ATTR_CTIME) { |
| 681 | vattr.va_mask |= XFS_AT_CTIME; |
| 682 | vattr.va_ctime = attr->ia_ctime; |
| 683 | } |
| 684 | if (ia_valid & ATTR_MODE) { |
| 685 | vattr.va_mask |= XFS_AT_MODE; |
| 686 | vattr.va_mode = attr->ia_mode; |
| 687 | if (!in_group_p(inode->i_gid) && !capable(CAP_FSETID)) |
| 688 | inode->i_mode &= ~S_ISGID; |
| 689 | } |
| 690 | |
| 691 | if (ia_valid & (ATTR_MTIME_SET | ATTR_ATIME_SET)) |
| 692 | flags |= ATTR_UTIME; |
| 693 | #ifdef ATTR_NO_BLOCK |
| 694 | if ((ia_valid & ATTR_NO_BLOCK)) |
| 695 | flags |= ATTR_NONBLOCK; |
| 696 | #endif |
| 697 | |
Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 698 | error = xfs_setattr(XFS_I(inode), &vattr, flags, NULL); |
Nathan Scott | 220b528 | 2006-03-14 13:33:36 +1100 | [diff] [blame] | 699 | if (likely(!error)) |
Christoph Hellwig | 21a6254 | 2007-09-19 15:27:49 +1000 | [diff] [blame] | 700 | vn_revalidate(vn_from_inode(inode)); |
Nathan Scott | 220b528 | 2006-03-14 13:33:36 +1100 | [diff] [blame] | 701 | return -error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 702 | } |
| 703 | |
| 704 | STATIC void |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 705 | xfs_vn_truncate( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 706 | struct inode *inode) |
| 707 | { |
Nathan Scott | c253666 | 2006-03-29 10:44:40 +1000 | [diff] [blame] | 708 | block_truncate_page(inode->i_mapping, inode->i_size, xfs_get_blocks); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 709 | } |
| 710 | |
| 711 | STATIC int |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 712 | xfs_vn_setxattr( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 713 | struct dentry *dentry, |
| 714 | const char *name, |
| 715 | const void *data, |
| 716 | size_t size, |
| 717 | int flags) |
| 718 | { |
Nathan Scott | 67fcaa7 | 2006-06-09 17:00:52 +1000 | [diff] [blame] | 719 | bhv_vnode_t *vp = vn_from_inode(dentry->d_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 720 | char *attr = (char *)name; |
| 721 | attrnames_t *namesp; |
| 722 | int xflags = 0; |
| 723 | int error; |
| 724 | |
| 725 | namesp = attr_lookup_namespace(attr, attr_namespaces, ATTR_NAMECOUNT); |
| 726 | if (!namesp) |
| 727 | return -EOPNOTSUPP; |
| 728 | attr += namesp->attr_namelen; |
| 729 | error = namesp->attr_capable(vp, NULL); |
| 730 | if (error) |
| 731 | return error; |
| 732 | |
| 733 | /* Convert Linux syscall to XFS internal ATTR flags */ |
| 734 | if (flags & XATTR_CREATE) |
| 735 | xflags |= ATTR_CREATE; |
| 736 | if (flags & XATTR_REPLACE) |
| 737 | xflags |= ATTR_REPLACE; |
| 738 | xflags |= namesp->attr_flag; |
| 739 | return namesp->attr_set(vp, attr, (void *)data, size, xflags); |
| 740 | } |
| 741 | |
| 742 | STATIC ssize_t |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 743 | xfs_vn_getxattr( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 744 | struct dentry *dentry, |
| 745 | const char *name, |
| 746 | void *data, |
| 747 | size_t size) |
| 748 | { |
Nathan Scott | 67fcaa7 | 2006-06-09 17:00:52 +1000 | [diff] [blame] | 749 | bhv_vnode_t *vp = vn_from_inode(dentry->d_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 750 | char *attr = (char *)name; |
| 751 | attrnames_t *namesp; |
| 752 | int xflags = 0; |
| 753 | ssize_t error; |
| 754 | |
| 755 | namesp = attr_lookup_namespace(attr, attr_namespaces, ATTR_NAMECOUNT); |
| 756 | if (!namesp) |
| 757 | return -EOPNOTSUPP; |
| 758 | attr += namesp->attr_namelen; |
| 759 | error = namesp->attr_capable(vp, NULL); |
| 760 | if (error) |
| 761 | return error; |
| 762 | |
| 763 | /* Convert Linux syscall to XFS internal ATTR flags */ |
| 764 | if (!size) { |
| 765 | xflags |= ATTR_KERNOVAL; |
| 766 | data = NULL; |
| 767 | } |
| 768 | xflags |= namesp->attr_flag; |
| 769 | return namesp->attr_get(vp, attr, (void *)data, size, xflags); |
| 770 | } |
| 771 | |
| 772 | STATIC ssize_t |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 773 | xfs_vn_listxattr( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 774 | struct dentry *dentry, |
| 775 | char *data, |
| 776 | size_t size) |
| 777 | { |
Nathan Scott | 67fcaa7 | 2006-06-09 17:00:52 +1000 | [diff] [blame] | 778 | bhv_vnode_t *vp = vn_from_inode(dentry->d_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 779 | int error, xflags = ATTR_KERNAMELS; |
| 780 | ssize_t result; |
| 781 | |
| 782 | if (!size) |
| 783 | xflags |= ATTR_KERNOVAL; |
| 784 | xflags |= capable(CAP_SYS_ADMIN) ? ATTR_KERNFULLS : ATTR_KERNORMALS; |
| 785 | |
| 786 | error = attr_generic_list(vp, data, size, xflags, &result); |
| 787 | if (error < 0) |
| 788 | return error; |
| 789 | return result; |
| 790 | } |
| 791 | |
| 792 | STATIC int |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 793 | xfs_vn_removexattr( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 794 | struct dentry *dentry, |
| 795 | const char *name) |
| 796 | { |
Nathan Scott | 67fcaa7 | 2006-06-09 17:00:52 +1000 | [diff] [blame] | 797 | bhv_vnode_t *vp = vn_from_inode(dentry->d_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 798 | char *attr = (char *)name; |
| 799 | attrnames_t *namesp; |
| 800 | int xflags = 0; |
| 801 | int error; |
| 802 | |
| 803 | namesp = attr_lookup_namespace(attr, attr_namespaces, ATTR_NAMECOUNT); |
| 804 | if (!namesp) |
| 805 | return -EOPNOTSUPP; |
| 806 | attr += namesp->attr_namelen; |
| 807 | error = namesp->attr_capable(vp, NULL); |
| 808 | if (error) |
| 809 | return error; |
| 810 | xflags |= namesp->attr_flag; |
| 811 | return namesp->attr_remove(vp, attr, xflags); |
| 812 | } |
| 813 | |
David Chinner | 3ed6526 | 2007-11-23 16:29:25 +1100 | [diff] [blame] | 814 | STATIC long |
| 815 | xfs_vn_fallocate( |
| 816 | struct inode *inode, |
| 817 | int mode, |
| 818 | loff_t offset, |
| 819 | loff_t len) |
| 820 | { |
| 821 | long error; |
| 822 | loff_t new_size = 0; |
| 823 | xfs_flock64_t bf; |
| 824 | xfs_inode_t *ip = XFS_I(inode); |
| 825 | |
| 826 | /* preallocation on directories not yet supported */ |
| 827 | error = -ENODEV; |
| 828 | if (S_ISDIR(inode->i_mode)) |
| 829 | goto out_error; |
| 830 | |
| 831 | bf.l_whence = 0; |
| 832 | bf.l_start = offset; |
| 833 | bf.l_len = len; |
| 834 | |
| 835 | xfs_ilock(ip, XFS_IOLOCK_EXCL); |
| 836 | error = xfs_change_file_space(ip, XFS_IOC_RESVSP, &bf, |
| 837 | 0, NULL, ATTR_NOLOCK); |
| 838 | if (!error && !(mode & FALLOC_FL_KEEP_SIZE) && |
| 839 | offset + len > i_size_read(inode)) |
| 840 | new_size = offset + len; |
| 841 | |
| 842 | /* Change file size if needed */ |
| 843 | if (new_size) { |
| 844 | bhv_vattr_t va; |
| 845 | |
| 846 | va.va_mask = XFS_AT_SIZE; |
| 847 | va.va_size = new_size; |
| 848 | error = xfs_setattr(ip, &va, ATTR_NOLOCK, NULL); |
| 849 | } |
| 850 | |
| 851 | xfs_iunlock(ip, XFS_IOLOCK_EXCL); |
| 852 | out_error: |
| 853 | return error; |
| 854 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 855 | |
Arjan van de Ven | c5ef1c4 | 2007-02-12 00:55:40 -0800 | [diff] [blame] | 856 | const struct inode_operations xfs_inode_operations = { |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 857 | .permission = xfs_vn_permission, |
| 858 | .truncate = xfs_vn_truncate, |
| 859 | .getattr = xfs_vn_getattr, |
| 860 | .setattr = xfs_vn_setattr, |
| 861 | .setxattr = xfs_vn_setxattr, |
| 862 | .getxattr = xfs_vn_getxattr, |
| 863 | .listxattr = xfs_vn_listxattr, |
| 864 | .removexattr = xfs_vn_removexattr, |
David Chinner | 3ed6526 | 2007-11-23 16:29:25 +1100 | [diff] [blame] | 865 | .fallocate = xfs_vn_fallocate, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 866 | }; |
| 867 | |
Arjan van de Ven | c5ef1c4 | 2007-02-12 00:55:40 -0800 | [diff] [blame] | 868 | const struct inode_operations xfs_dir_inode_operations = { |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 869 | .create = xfs_vn_create, |
| 870 | .lookup = xfs_vn_lookup, |
| 871 | .link = xfs_vn_link, |
| 872 | .unlink = xfs_vn_unlink, |
| 873 | .symlink = xfs_vn_symlink, |
| 874 | .mkdir = xfs_vn_mkdir, |
| 875 | .rmdir = xfs_vn_rmdir, |
| 876 | .mknod = xfs_vn_mknod, |
| 877 | .rename = xfs_vn_rename, |
| 878 | .permission = xfs_vn_permission, |
| 879 | .getattr = xfs_vn_getattr, |
| 880 | .setattr = xfs_vn_setattr, |
| 881 | .setxattr = xfs_vn_setxattr, |
| 882 | .getxattr = xfs_vn_getxattr, |
| 883 | .listxattr = xfs_vn_listxattr, |
| 884 | .removexattr = xfs_vn_removexattr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 885 | }; |
| 886 | |
Arjan van de Ven | c5ef1c4 | 2007-02-12 00:55:40 -0800 | [diff] [blame] | 887 | const struct inode_operations xfs_symlink_inode_operations = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 888 | .readlink = generic_readlink, |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 889 | .follow_link = xfs_vn_follow_link, |
| 890 | .put_link = xfs_vn_put_link, |
| 891 | .permission = xfs_vn_permission, |
| 892 | .getattr = xfs_vn_getattr, |
| 893 | .setattr = xfs_vn_setattr, |
| 894 | .setxattr = xfs_vn_setxattr, |
| 895 | .getxattr = xfs_vn_getxattr, |
| 896 | .listxattr = xfs_vn_listxattr, |
| 897 | .removexattr = xfs_vn_removexattr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 898 | }; |