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" |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 20 | #include "xfs_acl.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 21 | #include "xfs_bit.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include "xfs_log.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 23 | #include "xfs_inum.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include "xfs_trans.h" |
| 25 | #include "xfs_sb.h" |
| 26 | #include "xfs_ag.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #include "xfs_dir2.h" |
| 28 | #include "xfs_alloc.h" |
| 29 | #include "xfs_dmapi.h" |
| 30 | #include "xfs_quota.h" |
| 31 | #include "xfs_mount.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #include "xfs_bmap_btree.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 33 | #include "xfs_alloc_btree.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | #include "xfs_ialloc_btree.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #include "xfs_dir2_sf.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 36 | #include "xfs_attr_sf.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | #include "xfs_dinode.h" |
| 38 | #include "xfs_inode.h" |
| 39 | #include "xfs_bmap.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 40 | #include "xfs_btree.h" |
| 41 | #include "xfs_ialloc.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | #include "xfs_rtalloc.h" |
| 43 | #include "xfs_error.h" |
| 44 | #include "xfs_itable.h" |
| 45 | #include "xfs_rw.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> |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 54 | #include <linux/posix_acl.h> |
Nathan Scott | 446ada4 | 2006-01-11 15:35:44 +1100 | [diff] [blame] | 55 | #include <linux/security.h> |
David Chinner | 3ed6526 | 2007-11-23 16:29:25 +1100 | [diff] [blame] | 56 | #include <linux/falloc.h> |
Eric Sandeen | f35642e | 2008-11-28 14:23:35 +1100 | [diff] [blame] | 57 | #include <linux/fiemap.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | |
Nathan Scott | 4aeb664 | 2005-11-02 11:43:58 +1100 | [diff] [blame] | 59 | /* |
Christoph Hellwig | f9581b1 | 2009-10-06 20:29:26 +0000 | [diff] [blame] | 60 | * Bring the timestamps in the XFS inode uptodate. |
| 61 | * |
| 62 | * Used before writing the inode to disk. |
Christoph Hellwig | 42fe2b1 | 2006-01-11 15:35:17 +1100 | [diff] [blame] | 63 | */ |
| 64 | void |
Christoph Hellwig | f9581b1 | 2009-10-06 20:29:26 +0000 | [diff] [blame] | 65 | xfs_synchronize_times( |
Christoph Hellwig | 42fe2b1 | 2006-01-11 15:35:17 +1100 | [diff] [blame] | 66 | xfs_inode_t *ip) |
| 67 | { |
David Chinner | 0165164 | 2008-08-13 15:45:15 +1000 | [diff] [blame] | 68 | struct inode *inode = VFS_I(ip); |
Christoph Hellwig | 42fe2b1 | 2006-01-11 15:35:17 +1100 | [diff] [blame] | 69 | |
Christoph Hellwig | f9581b1 | 2009-10-06 20:29:26 +0000 | [diff] [blame] | 70 | ip->i_d.di_atime.t_sec = (__int32_t)inode->i_atime.tv_sec; |
| 71 | ip->i_d.di_atime.t_nsec = (__int32_t)inode->i_atime.tv_nsec; |
| 72 | ip->i_d.di_ctime.t_sec = (__int32_t)inode->i_ctime.tv_sec; |
| 73 | ip->i_d.di_ctime.t_nsec = (__int32_t)inode->i_ctime.tv_nsec; |
| 74 | ip->i_d.di_mtime.t_sec = (__int32_t)inode->i_mtime.tv_sec; |
| 75 | ip->i_d.di_mtime.t_nsec = (__int32_t)inode->i_mtime.tv_nsec; |
Christoph Hellwig | 42fe2b1 | 2006-01-11 15:35:17 +1100 | [diff] [blame] | 76 | } |
| 77 | |
| 78 | /* |
David Chinner | bf90424 | 2008-10-30 17:36:14 +1100 | [diff] [blame] | 79 | * If the linux inode is valid, mark it dirty. |
David Chinner | 5d51eff | 2007-11-23 16:29:18 +1100 | [diff] [blame] | 80 | * Used when commiting a dirty inode into a transaction so that |
| 81 | * the inode will get written back by the linux code |
| 82 | */ |
| 83 | void |
| 84 | xfs_mark_inode_dirty_sync( |
| 85 | xfs_inode_t *ip) |
| 86 | { |
David Chinner | 0165164 | 2008-08-13 15:45:15 +1000 | [diff] [blame] | 87 | struct inode *inode = VFS_I(ip); |
David Chinner | 5d51eff | 2007-11-23 16:29:18 +1100 | [diff] [blame] | 88 | |
David Chinner | bf90424 | 2008-10-30 17:36:14 +1100 | [diff] [blame] | 89 | if (!(inode->i_state & (I_WILL_FREE|I_FREEING|I_CLEAR))) |
Christoph Hellwig | af04819 | 2008-03-06 13:46:43 +1100 | [diff] [blame] | 90 | mark_inode_dirty_sync(inode); |
David Chinner | 5d51eff | 2007-11-23 16:29:18 +1100 | [diff] [blame] | 91 | } |
| 92 | |
| 93 | /* |
Nathan Scott | 4aeb664 | 2005-11-02 11:43:58 +1100 | [diff] [blame] | 94 | * Change the requested timestamp in the given inode. |
| 95 | * We don't lock across timestamp updates, and we don't log them but |
| 96 | * we do record the fact that there is dirty information in core. |
Nathan Scott | 4aeb664 | 2005-11-02 11:43:58 +1100 | [diff] [blame] | 97 | */ |
| 98 | void |
| 99 | xfs_ichgtime( |
| 100 | xfs_inode_t *ip, |
| 101 | int flags) |
| 102 | { |
David Chinner | e4f7529 | 2008-08-13 16:00:45 +1000 | [diff] [blame] | 103 | struct inode *inode = VFS_I(ip); |
Nathan Scott | 4aeb664 | 2005-11-02 11:43:58 +1100 | [diff] [blame] | 104 | timespec_t tv; |
Christoph Hellwig | 8e5975c | 2008-08-13 16:45:13 +1000 | [diff] [blame] | 105 | int sync_it = 0; |
Nathan Scott | 4aeb664 | 2005-11-02 11:43:58 +1100 | [diff] [blame] | 106 | |
Christoph Hellwig | 8e5975c | 2008-08-13 16:45:13 +1000 | [diff] [blame] | 107 | tv = current_fs_time(inode->i_sb); |
| 108 | |
| 109 | if ((flags & XFS_ICHGTIME_MOD) && |
| 110 | !timespec_equal(&inode->i_mtime, &tv)) { |
Nathan Scott | 4aeb664 | 2005-11-02 11:43:58 +1100 | [diff] [blame] | 111 | inode->i_mtime = tv; |
Christoph Hellwig | 8e5975c | 2008-08-13 16:45:13 +1000 | [diff] [blame] | 112 | sync_it = 1; |
Nathan Scott | 4aeb664 | 2005-11-02 11:43:58 +1100 | [diff] [blame] | 113 | } |
Christoph Hellwig | 8e5975c | 2008-08-13 16:45:13 +1000 | [diff] [blame] | 114 | if ((flags & XFS_ICHGTIME_CHG) && |
| 115 | !timespec_equal(&inode->i_ctime, &tv)) { |
Nathan Scott | 4aeb664 | 2005-11-02 11:43:58 +1100 | [diff] [blame] | 116 | inode->i_ctime = tv; |
Christoph Hellwig | 8e5975c | 2008-08-13 16:45:13 +1000 | [diff] [blame] | 117 | sync_it = 1; |
Nathan Scott | 4aeb664 | 2005-11-02 11:43:58 +1100 | [diff] [blame] | 118 | } |
| 119 | |
| 120 | /* |
Christoph Hellwig | f9581b1 | 2009-10-06 20:29:26 +0000 | [diff] [blame] | 121 | * Update complete - now make sure everyone knows that the inode |
| 122 | * is dirty. |
Nathan Scott | 4aeb664 | 2005-11-02 11:43:58 +1100 | [diff] [blame] | 123 | */ |
Christoph Hellwig | f9581b1 | 2009-10-06 20:29:26 +0000 | [diff] [blame] | 124 | if (sync_it) |
David Chinner | 94b97e3 | 2008-10-30 17:21:30 +1100 | [diff] [blame] | 125 | xfs_mark_inode_dirty_sync(ip); |
Nathan Scott | 4aeb664 | 2005-11-02 11:43:58 +1100 | [diff] [blame] | 126 | } |
| 127 | |
| 128 | /* |
Nathan Scott | 446ada4 | 2006-01-11 15:35:44 +1100 | [diff] [blame] | 129 | * Hook in SELinux. This is not quite correct yet, what we really need |
| 130 | * here (as we do for default ACLs) is a mechanism by which creation of |
| 131 | * these attrs can be journalled at inode creation time (along with the |
| 132 | * inode, of course, such that log replay can't cause these to be lost). |
| 133 | */ |
| 134 | STATIC int |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 135 | xfs_init_security( |
Christoph Hellwig | af04819 | 2008-03-06 13:46:43 +1100 | [diff] [blame] | 136 | struct inode *inode, |
Nathan Scott | 446ada4 | 2006-01-11 15:35:44 +1100 | [diff] [blame] | 137 | struct inode *dir) |
| 138 | { |
Christoph Hellwig | af04819 | 2008-03-06 13:46:43 +1100 | [diff] [blame] | 139 | struct xfs_inode *ip = XFS_I(inode); |
Nathan Scott | 446ada4 | 2006-01-11 15:35:44 +1100 | [diff] [blame] | 140 | size_t length; |
| 141 | void *value; |
| 142 | char *name; |
| 143 | int error; |
| 144 | |
Christoph Hellwig | af04819 | 2008-03-06 13:46:43 +1100 | [diff] [blame] | 145 | error = security_inode_init_security(inode, dir, &name, |
| 146 | &value, &length); |
Nathan Scott | 446ada4 | 2006-01-11 15:35:44 +1100 | [diff] [blame] | 147 | if (error) { |
| 148 | if (error == -EOPNOTSUPP) |
| 149 | return 0; |
| 150 | return -error; |
| 151 | } |
| 152 | |
Christoph Hellwig | af04819 | 2008-03-06 13:46:43 +1100 | [diff] [blame] | 153 | error = xfs_attr_set(ip, name, value, length, ATTR_SECURE); |
Nathan Scott | 446ada4 | 2006-01-11 15:35:44 +1100 | [diff] [blame] | 154 | |
| 155 | kfree(name); |
| 156 | kfree(value); |
| 157 | return error; |
| 158 | } |
| 159 | |
Barry Naujok | 556b8b1 | 2008-04-10 12:22:07 +1000 | [diff] [blame] | 160 | static void |
| 161 | xfs_dentry_to_name( |
| 162 | struct xfs_name *namep, |
| 163 | struct dentry *dentry) |
| 164 | { |
| 165 | namep->name = dentry->d_name.name; |
| 166 | namep->len = dentry->d_name.len; |
| 167 | } |
| 168 | |
David Chinner | 7989cb8 | 2007-02-10 18:34:56 +1100 | [diff] [blame] | 169 | STATIC void |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 170 | xfs_cleanup_inode( |
Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 171 | struct inode *dir, |
Christoph Hellwig | af04819 | 2008-03-06 13:46:43 +1100 | [diff] [blame] | 172 | struct inode *inode, |
Christoph Hellwig | 8f112e3 | 2008-06-23 13:25:17 +1000 | [diff] [blame] | 173 | struct dentry *dentry) |
Yingping Lu | 3a69c7d | 2006-02-01 12:14:34 +1100 | [diff] [blame] | 174 | { |
Barry Naujok | 556b8b1 | 2008-04-10 12:22:07 +1000 | [diff] [blame] | 175 | struct xfs_name teardown; |
Yingping Lu | 3a69c7d | 2006-02-01 12:14:34 +1100 | [diff] [blame] | 176 | |
| 177 | /* Oh, the horror. |
Nathan Scott | 220b528 | 2006-03-14 13:33:36 +1100 | [diff] [blame] | 178 | * If we can't add the ACL or we fail in |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 179 | * xfs_init_security we must back out. |
Yingping Lu | 3a69c7d | 2006-02-01 12:14:34 +1100 | [diff] [blame] | 180 | * ENOSPC can hit here, among other things. |
| 181 | */ |
Barry Naujok | 556b8b1 | 2008-04-10 12:22:07 +1000 | [diff] [blame] | 182 | xfs_dentry_to_name(&teardown, dentry); |
Yingping Lu | 3a69c7d | 2006-02-01 12:14:34 +1100 | [diff] [blame] | 183 | |
Christoph Hellwig | 8f112e3 | 2008-06-23 13:25:17 +1000 | [diff] [blame] | 184 | xfs_remove(XFS_I(dir), &teardown, XFS_I(inode)); |
Christoph Hellwig | af04819 | 2008-03-06 13:46:43 +1100 | [diff] [blame] | 185 | iput(inode); |
Yingping Lu | 3a69c7d | 2006-02-01 12:14:34 +1100 | [diff] [blame] | 186 | } |
| 187 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | STATIC int |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 189 | xfs_vn_mknod( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | struct inode *dir, |
| 191 | struct dentry *dentry, |
| 192 | int mode, |
| 193 | dev_t rdev) |
| 194 | { |
Christoph Hellwig | db0bb7b | 2008-03-06 13:44:35 +1100 | [diff] [blame] | 195 | struct inode *inode; |
Christoph Hellwig | 979ebab | 2008-03-06 13:46:05 +1100 | [diff] [blame] | 196 | struct xfs_inode *ip = NULL; |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 197 | struct posix_acl *default_acl = NULL; |
Barry Naujok | 556b8b1 | 2008-04-10 12:22:07 +1000 | [diff] [blame] | 198 | struct xfs_name name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | int error; |
| 200 | |
| 201 | /* |
| 202 | * Irix uses Missed'em'V split, but doesn't want to see |
| 203 | * the upper 5 bits of (14bit) major. |
| 204 | */ |
Christoph Hellwig | 517b5e8 | 2009-02-09 08:38:02 +0100 | [diff] [blame] | 205 | if (S_ISCHR(mode) || S_ISBLK(mode)) { |
| 206 | if (unlikely(!sysv_valid_dev(rdev) || MAJOR(rdev) & ~0x1ff)) |
| 207 | return -EINVAL; |
| 208 | rdev = sysv_encode_dev(rdev); |
| 209 | } else { |
| 210 | rdev = 0; |
| 211 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 213 | if (IS_POSIXACL(dir)) { |
| 214 | default_acl = xfs_get_acl(dir, ACL_TYPE_DEFAULT); |
| 215 | if (IS_ERR(default_acl)) |
| 216 | return -PTR_ERR(default_acl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | |
Christoph Hellwig | e83f1eb | 2009-06-12 11:19:11 -0400 | [diff] [blame] | 218 | if (!default_acl) |
| 219 | mode &= ~current_umask(); |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 220 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | |
Christoph Hellwig | 517b5e8 | 2009-02-09 08:38:02 +0100 | [diff] [blame] | 222 | xfs_dentry_to_name(&name, dentry); |
| 223 | error = xfs_create(XFS_I(dir), &name, mode, rdev, &ip, NULL); |
Christoph Hellwig | db0bb7b | 2008-03-06 13:44:35 +1100 | [diff] [blame] | 224 | if (unlikely(error)) |
| 225 | goto out_free_acl; |
Nathan Scott | 446ada4 | 2006-01-11 15:35:44 +1100 | [diff] [blame] | 226 | |
David Chinner | 0165164 | 2008-08-13 15:45:15 +1000 | [diff] [blame] | 227 | inode = VFS_I(ip); |
Christoph Hellwig | 979ebab | 2008-03-06 13:46:05 +1100 | [diff] [blame] | 228 | |
| 229 | error = xfs_init_security(inode, dir); |
Christoph Hellwig | db0bb7b | 2008-03-06 13:44:35 +1100 | [diff] [blame] | 230 | if (unlikely(error)) |
| 231 | goto out_cleanup_inode; |
| 232 | |
| 233 | if (default_acl) { |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 234 | error = -xfs_inherit_acl(inode, default_acl); |
Christoph Hellwig | db0bb7b | 2008-03-06 13:44:35 +1100 | [diff] [blame] | 235 | if (unlikely(error)) |
| 236 | goto out_cleanup_inode; |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 237 | posix_acl_release(default_acl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | } |
| 239 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | |
Christoph Hellwig | db0bb7b | 2008-03-06 13:44:35 +1100 | [diff] [blame] | 241 | d_instantiate(dentry, inode); |
Christoph Hellwig | db0bb7b | 2008-03-06 13:44:35 +1100 | [diff] [blame] | 242 | return -error; |
| 243 | |
| 244 | out_cleanup_inode: |
Christoph Hellwig | 8f112e3 | 2008-06-23 13:25:17 +1000 | [diff] [blame] | 245 | xfs_cleanup_inode(dir, inode, dentry); |
Christoph Hellwig | db0bb7b | 2008-03-06 13:44:35 +1100 | [diff] [blame] | 246 | out_free_acl: |
Christoph Hellwig | ef14f0c | 2009-06-10 17:07:47 +0200 | [diff] [blame] | 247 | posix_acl_release(default_acl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | return -error; |
| 249 | } |
| 250 | |
| 251 | STATIC int |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 252 | xfs_vn_create( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | struct inode *dir, |
| 254 | struct dentry *dentry, |
| 255 | int mode, |
| 256 | struct nameidata *nd) |
| 257 | { |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 258 | return xfs_vn_mknod(dir, dentry, mode, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | } |
| 260 | |
| 261 | STATIC int |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 262 | xfs_vn_mkdir( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | struct inode *dir, |
| 264 | struct dentry *dentry, |
| 265 | int mode) |
| 266 | { |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 267 | return xfs_vn_mknod(dir, dentry, mode|S_IFDIR, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | } |
| 269 | |
| 270 | STATIC struct dentry * |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 271 | xfs_vn_lookup( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | struct inode *dir, |
| 273 | struct dentry *dentry, |
| 274 | struct nameidata *nd) |
| 275 | { |
Christoph Hellwig | ef1f5e7 | 2008-03-06 13:46:25 +1100 | [diff] [blame] | 276 | struct xfs_inode *cip; |
Barry Naujok | 556b8b1 | 2008-04-10 12:22:07 +1000 | [diff] [blame] | 277 | struct xfs_name name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | int error; |
| 279 | |
| 280 | if (dentry->d_name.len >= MAXNAMELEN) |
| 281 | return ERR_PTR(-ENAMETOOLONG); |
| 282 | |
Barry Naujok | 556b8b1 | 2008-04-10 12:22:07 +1000 | [diff] [blame] | 283 | xfs_dentry_to_name(&name, dentry); |
Barry Naujok | 384f3ce | 2008-05-21 16:58:22 +1000 | [diff] [blame] | 284 | error = xfs_lookup(XFS_I(dir), &name, &cip, NULL); |
Nathan Scott | 67fcaa7 | 2006-06-09 17:00:52 +1000 | [diff] [blame] | 285 | if (unlikely(error)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | if (unlikely(error != ENOENT)) |
| 287 | return ERR_PTR(-error); |
| 288 | d_add(dentry, NULL); |
| 289 | return NULL; |
| 290 | } |
| 291 | |
David Chinner | 0165164 | 2008-08-13 15:45:15 +1000 | [diff] [blame] | 292 | return d_splice_alias(VFS_I(cip), dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | } |
| 294 | |
Barry Naujok | 384f3ce | 2008-05-21 16:58:22 +1000 | [diff] [blame] | 295 | STATIC struct dentry * |
| 296 | xfs_vn_ci_lookup( |
| 297 | struct inode *dir, |
| 298 | struct dentry *dentry, |
| 299 | struct nameidata *nd) |
| 300 | { |
| 301 | struct xfs_inode *ip; |
| 302 | struct xfs_name xname; |
| 303 | struct xfs_name ci_name; |
| 304 | struct qstr dname; |
| 305 | int error; |
| 306 | |
| 307 | if (dentry->d_name.len >= MAXNAMELEN) |
| 308 | return ERR_PTR(-ENAMETOOLONG); |
| 309 | |
| 310 | xfs_dentry_to_name(&xname, dentry); |
| 311 | error = xfs_lookup(XFS_I(dir), &xname, &ip, &ci_name); |
| 312 | if (unlikely(error)) { |
| 313 | if (unlikely(error != ENOENT)) |
| 314 | return ERR_PTR(-error); |
Barry Naujok | 866d5dc | 2008-05-22 17:21:40 +1000 | [diff] [blame] | 315 | /* |
| 316 | * call d_add(dentry, NULL) here when d_drop_negative_children |
| 317 | * is called in xfs_vn_mknod (ie. allow negative dentries |
| 318 | * with CI filesystems). |
| 319 | */ |
Barry Naujok | 384f3ce | 2008-05-21 16:58:22 +1000 | [diff] [blame] | 320 | return NULL; |
| 321 | } |
| 322 | |
| 323 | /* if exact match, just splice and exit */ |
| 324 | if (!ci_name.name) |
David Chinner | 0165164 | 2008-08-13 15:45:15 +1000 | [diff] [blame] | 325 | return d_splice_alias(VFS_I(ip), dentry); |
Barry Naujok | 384f3ce | 2008-05-21 16:58:22 +1000 | [diff] [blame] | 326 | |
| 327 | /* else case-insensitive match... */ |
| 328 | dname.name = ci_name.name; |
| 329 | dname.len = ci_name.len; |
Christoph Hellwig | e45b590 | 2008-08-07 23:49:07 +0200 | [diff] [blame] | 330 | dentry = d_add_ci(dentry, VFS_I(ip), &dname); |
Barry Naujok | 384f3ce | 2008-05-21 16:58:22 +1000 | [diff] [blame] | 331 | kmem_free(ci_name.name); |
| 332 | return dentry; |
| 333 | } |
| 334 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | STATIC int |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 336 | xfs_vn_link( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | struct dentry *old_dentry, |
| 338 | struct inode *dir, |
| 339 | struct dentry *dentry) |
| 340 | { |
Christoph Hellwig | d9424b3 | 2008-12-03 12:20:27 +0100 | [diff] [blame] | 341 | struct inode *inode = old_dentry->d_inode; |
Barry Naujok | 556b8b1 | 2008-04-10 12:22:07 +1000 | [diff] [blame] | 342 | struct xfs_name name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | int error; |
| 344 | |
Barry Naujok | 556b8b1 | 2008-04-10 12:22:07 +1000 | [diff] [blame] | 345 | xfs_dentry_to_name(&name, dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | |
Barry Naujok | 556b8b1 | 2008-04-10 12:22:07 +1000 | [diff] [blame] | 347 | error = xfs_link(XFS_I(dir), XFS_I(inode), &name); |
Christoph Hellwig | d9424b3 | 2008-12-03 12:20:27 +0100 | [diff] [blame] | 348 | if (unlikely(error)) |
Christoph Hellwig | a3da789 | 2008-03-06 13:46:12 +1100 | [diff] [blame] | 349 | return -error; |
Christoph Hellwig | a3da789 | 2008-03-06 13:46:12 +1100 | [diff] [blame] | 350 | |
Christoph Hellwig | d9424b3 | 2008-12-03 12:20:27 +0100 | [diff] [blame] | 351 | atomic_inc(&inode->i_count); |
Christoph Hellwig | a3da789 | 2008-03-06 13:46:12 +1100 | [diff] [blame] | 352 | d_instantiate(dentry, inode); |
| 353 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | } |
| 355 | |
| 356 | STATIC int |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 357 | xfs_vn_unlink( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | struct inode *dir, |
| 359 | struct dentry *dentry) |
| 360 | { |
Barry Naujok | 556b8b1 | 2008-04-10 12:22:07 +1000 | [diff] [blame] | 361 | struct xfs_name name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | int error; |
| 363 | |
Barry Naujok | 556b8b1 | 2008-04-10 12:22:07 +1000 | [diff] [blame] | 364 | xfs_dentry_to_name(&name, dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | |
Christoph Hellwig | e570070 | 2008-06-23 13:25:25 +1000 | [diff] [blame] | 366 | error = -xfs_remove(XFS_I(dir), &name, XFS_I(dentry->d_inode)); |
| 367 | if (error) |
| 368 | return error; |
| 369 | |
| 370 | /* |
| 371 | * With unlink, the VFS makes the dentry "negative": no inode, |
| 372 | * but still hashed. This is incompatible with case-insensitive |
| 373 | * mode, so invalidate (unhash) the dentry in CI-mode. |
| 374 | */ |
| 375 | if (xfs_sb_version_hasasciici(&XFS_M(dir->i_sb)->m_sb)) |
| 376 | d_invalidate(dentry); |
| 377 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | } |
| 379 | |
| 380 | STATIC int |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 381 | xfs_vn_symlink( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | struct inode *dir, |
| 383 | struct dentry *dentry, |
| 384 | const char *symname) |
| 385 | { |
Christoph Hellwig | 3937be5 | 2008-03-06 13:46:19 +1100 | [diff] [blame] | 386 | struct inode *inode; |
| 387 | struct xfs_inode *cip = NULL; |
Barry Naujok | 556b8b1 | 2008-04-10 12:22:07 +1000 | [diff] [blame] | 388 | struct xfs_name name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | int error; |
Christoph Hellwig | 3e5daf0 | 2007-10-11 18:09:12 +1000 | [diff] [blame] | 390 | mode_t mode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | |
Christoph Hellwig | 3e5daf0 | 2007-10-11 18:09:12 +1000 | [diff] [blame] | 392 | mode = S_IFLNK | |
Al Viro | ce3b0f8 | 2009-03-29 19:08:22 -0400 | [diff] [blame] | 393 | (irix_symlink_mode ? 0777 & ~current_umask() : S_IRWXUGO); |
Barry Naujok | 556b8b1 | 2008-04-10 12:22:07 +1000 | [diff] [blame] | 394 | xfs_dentry_to_name(&name, dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | |
Barry Naujok | 556b8b1 | 2008-04-10 12:22:07 +1000 | [diff] [blame] | 396 | error = xfs_symlink(XFS_I(dir), &name, symname, mode, &cip, NULL); |
Christoph Hellwig | 3937be5 | 2008-03-06 13:46:19 +1100 | [diff] [blame] | 397 | if (unlikely(error)) |
| 398 | goto out; |
| 399 | |
David Chinner | 0165164 | 2008-08-13 15:45:15 +1000 | [diff] [blame] | 400 | inode = VFS_I(cip); |
Christoph Hellwig | 3937be5 | 2008-03-06 13:46:19 +1100 | [diff] [blame] | 401 | |
| 402 | error = xfs_init_security(inode, dir); |
| 403 | if (unlikely(error)) |
| 404 | goto out_cleanup_inode; |
| 405 | |
| 406 | d_instantiate(dentry, inode); |
Christoph Hellwig | 3937be5 | 2008-03-06 13:46:19 +1100 | [diff] [blame] | 407 | return 0; |
| 408 | |
| 409 | out_cleanup_inode: |
Christoph Hellwig | 8f112e3 | 2008-06-23 13:25:17 +1000 | [diff] [blame] | 410 | xfs_cleanup_inode(dir, inode, dentry); |
Christoph Hellwig | 3937be5 | 2008-03-06 13:46:19 +1100 | [diff] [blame] | 411 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | return -error; |
| 413 | } |
| 414 | |
| 415 | STATIC int |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 416 | xfs_vn_rename( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | struct inode *odir, |
| 418 | struct dentry *odentry, |
| 419 | struct inode *ndir, |
| 420 | struct dentry *ndentry) |
| 421 | { |
| 422 | struct inode *new_inode = ndentry->d_inode; |
Barry Naujok | 556b8b1 | 2008-04-10 12:22:07 +1000 | [diff] [blame] | 423 | struct xfs_name oname; |
| 424 | struct xfs_name nname; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | |
Barry Naujok | 556b8b1 | 2008-04-10 12:22:07 +1000 | [diff] [blame] | 426 | xfs_dentry_to_name(&oname, odentry); |
| 427 | xfs_dentry_to_name(&nname, ndentry); |
| 428 | |
Christoph Hellwig | e570070 | 2008-06-23 13:25:25 +1000 | [diff] [blame] | 429 | return -xfs_rename(XFS_I(odir), &oname, XFS_I(odentry->d_inode), |
Christoph Hellwig | cfa853e | 2008-04-22 17:34:06 +1000 | [diff] [blame] | 430 | XFS_I(ndir), &nname, new_inode ? |
| 431 | XFS_I(new_inode) : NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | } |
| 433 | |
| 434 | /* |
| 435 | * careful here - this function can get called recursively, so |
| 436 | * we need to be very careful about how much stack we use. |
| 437 | * uio is kmalloced for this reason... |
| 438 | */ |
Al Viro | 008b150 | 2005-08-20 00:17:39 +0100 | [diff] [blame] | 439 | STATIC void * |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 440 | xfs_vn_follow_link( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | struct dentry *dentry, |
| 442 | struct nameidata *nd) |
| 443 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | char *link; |
Christoph Hellwig | 804c83c | 2007-08-28 13:59:03 +1000 | [diff] [blame] | 445 | int error = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 | |
Panagiotis Issaris | f52720c | 2006-09-27 01:49:39 -0700 | [diff] [blame] | 447 | link = kmalloc(MAXPATHLEN+1, GFP_KERNEL); |
Christoph Hellwig | 804c83c | 2007-08-28 13:59:03 +1000 | [diff] [blame] | 448 | if (!link) |
| 449 | goto out_err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | |
Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 451 | error = -xfs_readlink(XFS_I(dentry->d_inode), link); |
Christoph Hellwig | 804c83c | 2007-08-28 13:59:03 +1000 | [diff] [blame] | 452 | if (unlikely(error)) |
| 453 | goto out_kfree; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | |
| 455 | nd_set_link(nd, link); |
Al Viro | 008b150 | 2005-08-20 00:17:39 +0100 | [diff] [blame] | 456 | return NULL; |
Christoph Hellwig | 804c83c | 2007-08-28 13:59:03 +1000 | [diff] [blame] | 457 | |
| 458 | out_kfree: |
| 459 | kfree(link); |
| 460 | out_err: |
| 461 | nd_set_link(nd, ERR_PTR(error)); |
| 462 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | } |
| 464 | |
Nathan Scott | cde410a | 2005-09-05 11:47:01 +1000 | [diff] [blame] | 465 | STATIC void |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 466 | xfs_vn_put_link( |
Nathan Scott | cde410a | 2005-09-05 11:47:01 +1000 | [diff] [blame] | 467 | struct dentry *dentry, |
| 468 | struct nameidata *nd, |
| 469 | void *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | { |
Nathan Scott | cde410a | 2005-09-05 11:47:01 +1000 | [diff] [blame] | 471 | char *s = nd_get_link(nd); |
| 472 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | if (!IS_ERR(s)) |
| 474 | kfree(s); |
| 475 | } |
| 476 | |
Christoph Hellwig | 4576758 | 2008-02-05 12:13:24 +1100 | [diff] [blame] | 477 | STATIC int |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 478 | xfs_vn_getattr( |
Christoph Hellwig | c43f408 | 2007-10-11 17:46:39 +1000 | [diff] [blame] | 479 | struct vfsmount *mnt, |
| 480 | struct dentry *dentry, |
| 481 | struct kstat *stat) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | { |
Christoph Hellwig | c43f408 | 2007-10-11 17:46:39 +1000 | [diff] [blame] | 483 | struct inode *inode = dentry->d_inode; |
| 484 | struct xfs_inode *ip = XFS_I(inode); |
| 485 | struct xfs_mount *mp = ip->i_mount; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | |
Christoph Hellwig | c43f408 | 2007-10-11 17:46:39 +1000 | [diff] [blame] | 487 | xfs_itrace_entry(ip); |
| 488 | |
| 489 | if (XFS_FORCED_SHUTDOWN(mp)) |
| 490 | return XFS_ERROR(EIO); |
| 491 | |
| 492 | stat->size = XFS_ISIZE(ip); |
| 493 | stat->dev = inode->i_sb->s_dev; |
| 494 | stat->mode = ip->i_d.di_mode; |
| 495 | stat->nlink = ip->i_d.di_nlink; |
| 496 | stat->uid = ip->i_d.di_uid; |
| 497 | stat->gid = ip->i_d.di_gid; |
| 498 | stat->ino = ip->i_ino; |
Christoph Hellwig | c43f408 | 2007-10-11 17:46:39 +1000 | [diff] [blame] | 499 | stat->atime = inode->i_atime; |
Christoph Hellwig | f9581b1 | 2009-10-06 20:29:26 +0000 | [diff] [blame] | 500 | stat->mtime = inode->i_mtime; |
| 501 | stat->ctime = inode->i_ctime; |
Christoph Hellwig | c43f408 | 2007-10-11 17:46:39 +1000 | [diff] [blame] | 502 | stat->blocks = |
| 503 | XFS_FSB_TO_BB(mp, ip->i_d.di_nblocks + ip->i_delayed_blks); |
| 504 | |
| 505 | |
| 506 | switch (inode->i_mode & S_IFMT) { |
| 507 | case S_IFBLK: |
| 508 | case S_IFCHR: |
| 509 | stat->blksize = BLKDEV_IOSIZE; |
| 510 | stat->rdev = MKDEV(sysv_major(ip->i_df.if_u2.if_rdev) & 0x1ff, |
| 511 | sysv_minor(ip->i_df.if_u2.if_rdev)); |
| 512 | break; |
| 513 | default: |
Eric Sandeen | 71ddabb | 2007-11-23 16:29:42 +1100 | [diff] [blame] | 514 | if (XFS_IS_REALTIME_INODE(ip)) { |
Christoph Hellwig | c43f408 | 2007-10-11 17:46:39 +1000 | [diff] [blame] | 515 | /* |
| 516 | * If the file blocks are being allocated from a |
| 517 | * realtime volume, then return the inode's realtime |
| 518 | * extent size or the realtime volume's extent size. |
| 519 | */ |
| 520 | stat->blksize = |
| 521 | xfs_get_extsz_hint(ip) << mp->m_sb.sb_blocklog; |
| 522 | } else |
| 523 | stat->blksize = xfs_preferred_iosize(mp); |
| 524 | stat->rdev = 0; |
| 525 | break; |
Nathan Scott | 69e23b9 | 2006-09-28 11:01:22 +1000 | [diff] [blame] | 526 | } |
Christoph Hellwig | c43f408 | 2007-10-11 17:46:39 +1000 | [diff] [blame] | 527 | |
| 528 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | } |
| 530 | |
| 531 | STATIC int |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 532 | xfs_vn_setattr( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | struct dentry *dentry, |
Christoph Hellwig | 0f285c8 | 2008-07-18 17:13:28 +1000 | [diff] [blame] | 534 | struct iattr *iattr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 | { |
Christoph Hellwig | ea5a3dc8 | 2008-10-30 18:27:48 +1100 | [diff] [blame] | 536 | return -xfs_setattr(XFS_I(dentry->d_inode), iattr, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 537 | } |
| 538 | |
David Chinner | d87dd63 | 2008-04-10 12:21:46 +1000 | [diff] [blame] | 539 | /* |
| 540 | * block_truncate_page can return an error, but we can't propagate it |
| 541 | * at all here. Leave a complaint + stack trace in the syslog because |
| 542 | * this could be bad. If it is bad, we need to propagate the error further. |
| 543 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | STATIC void |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 545 | xfs_vn_truncate( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | struct inode *inode) |
| 547 | { |
David Chinner | d87dd63 | 2008-04-10 12:21:46 +1000 | [diff] [blame] | 548 | int error; |
| 549 | error = block_truncate_page(inode->i_mapping, inode->i_size, |
| 550 | xfs_get_blocks); |
| 551 | WARN_ON(error); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | } |
| 553 | |
David Chinner | 3ed6526 | 2007-11-23 16:29:25 +1100 | [diff] [blame] | 554 | STATIC long |
| 555 | xfs_vn_fallocate( |
| 556 | struct inode *inode, |
| 557 | int mode, |
| 558 | loff_t offset, |
| 559 | loff_t len) |
| 560 | { |
| 561 | long error; |
| 562 | loff_t new_size = 0; |
| 563 | xfs_flock64_t bf; |
| 564 | xfs_inode_t *ip = XFS_I(inode); |
| 565 | |
| 566 | /* preallocation on directories not yet supported */ |
| 567 | error = -ENODEV; |
| 568 | if (S_ISDIR(inode->i_mode)) |
| 569 | goto out_error; |
| 570 | |
| 571 | bf.l_whence = 0; |
| 572 | bf.l_start = offset; |
| 573 | bf.l_len = len; |
| 574 | |
| 575 | xfs_ilock(ip, XFS_IOLOCK_EXCL); |
| 576 | error = xfs_change_file_space(ip, XFS_IOC_RESVSP, &bf, |
Christoph Hellwig | ea5a3dc8 | 2008-10-30 18:27:48 +1100 | [diff] [blame] | 577 | 0, XFS_ATTR_NOLOCK); |
David Chinner | 3ed6526 | 2007-11-23 16:29:25 +1100 | [diff] [blame] | 578 | if (!error && !(mode & FALLOC_FL_KEEP_SIZE) && |
| 579 | offset + len > i_size_read(inode)) |
| 580 | new_size = offset + len; |
| 581 | |
| 582 | /* Change file size if needed */ |
| 583 | if (new_size) { |
Christoph Hellwig | 0f285c8 | 2008-07-18 17:13:28 +1000 | [diff] [blame] | 584 | struct iattr iattr; |
David Chinner | 3ed6526 | 2007-11-23 16:29:25 +1100 | [diff] [blame] | 585 | |
Christoph Hellwig | 0f285c8 | 2008-07-18 17:13:28 +1000 | [diff] [blame] | 586 | iattr.ia_valid = ATTR_SIZE; |
| 587 | iattr.ia_size = new_size; |
Christoph Hellwig | ea5a3dc8 | 2008-10-30 18:27:48 +1100 | [diff] [blame] | 588 | error = xfs_setattr(ip, &iattr, XFS_ATTR_NOLOCK); |
David Chinner | 3ed6526 | 2007-11-23 16:29:25 +1100 | [diff] [blame] | 589 | } |
| 590 | |
| 591 | xfs_iunlock(ip, XFS_IOLOCK_EXCL); |
| 592 | out_error: |
| 593 | return error; |
| 594 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 | |
Eric Sandeen | f35642e | 2008-11-28 14:23:35 +1100 | [diff] [blame] | 596 | #define XFS_FIEMAP_FLAGS (FIEMAP_FLAG_SYNC|FIEMAP_FLAG_XATTR) |
| 597 | |
| 598 | /* |
| 599 | * Call fiemap helper to fill in user data. |
| 600 | * Returns positive errors to xfs_getbmap. |
| 601 | */ |
| 602 | STATIC int |
| 603 | xfs_fiemap_format( |
| 604 | void **arg, |
| 605 | struct getbmapx *bmv, |
| 606 | int *full) |
| 607 | { |
| 608 | int error; |
| 609 | struct fiemap_extent_info *fieinfo = *arg; |
| 610 | u32 fiemap_flags = 0; |
| 611 | u64 logical, physical, length; |
| 612 | |
| 613 | /* Do nothing for a hole */ |
| 614 | if (bmv->bmv_block == -1LL) |
| 615 | return 0; |
| 616 | |
| 617 | logical = BBTOB(bmv->bmv_offset); |
| 618 | physical = BBTOB(bmv->bmv_block); |
| 619 | length = BBTOB(bmv->bmv_length); |
| 620 | |
| 621 | if (bmv->bmv_oflags & BMV_OF_PREALLOC) |
| 622 | fiemap_flags |= FIEMAP_EXTENT_UNWRITTEN; |
| 623 | else if (bmv->bmv_oflags & BMV_OF_DELALLOC) { |
| 624 | fiemap_flags |= FIEMAP_EXTENT_DELALLOC; |
| 625 | physical = 0; /* no block yet */ |
| 626 | } |
| 627 | if (bmv->bmv_oflags & BMV_OF_LAST) |
| 628 | fiemap_flags |= FIEMAP_EXTENT_LAST; |
| 629 | |
| 630 | error = fiemap_fill_next_extent(fieinfo, logical, physical, |
| 631 | length, fiemap_flags); |
| 632 | if (error > 0) { |
| 633 | error = 0; |
| 634 | *full = 1; /* user array now full */ |
| 635 | } |
| 636 | |
| 637 | return -error; |
| 638 | } |
| 639 | |
| 640 | STATIC int |
| 641 | xfs_vn_fiemap( |
| 642 | struct inode *inode, |
| 643 | struct fiemap_extent_info *fieinfo, |
| 644 | u64 start, |
| 645 | u64 length) |
| 646 | { |
| 647 | xfs_inode_t *ip = XFS_I(inode); |
| 648 | struct getbmapx bm; |
| 649 | int error; |
| 650 | |
| 651 | error = fiemap_check_flags(fieinfo, XFS_FIEMAP_FLAGS); |
| 652 | if (error) |
| 653 | return error; |
| 654 | |
| 655 | /* Set up bmap header for xfs internal routine */ |
| 656 | bm.bmv_offset = BTOBB(start); |
| 657 | /* Special case for whole file */ |
| 658 | if (length == FIEMAP_MAX_OFFSET) |
| 659 | bm.bmv_length = -1LL; |
| 660 | else |
| 661 | bm.bmv_length = BTOBB(length); |
| 662 | |
Eric Sandeen | 97db39a | 2009-07-26 21:52:01 -0500 | [diff] [blame] | 663 | /* We add one because in getbmap world count includes the header */ |
| 664 | bm.bmv_count = fieinfo->fi_extents_max + 1; |
Eric Sandeen | f35642e | 2008-11-28 14:23:35 +1100 | [diff] [blame] | 665 | bm.bmv_iflags = BMV_IF_PREALLOC; |
| 666 | if (fieinfo->fi_flags & FIEMAP_FLAG_XATTR) |
| 667 | bm.bmv_iflags |= BMV_IF_ATTRFORK; |
| 668 | if (!(fieinfo->fi_flags & FIEMAP_FLAG_SYNC)) |
| 669 | bm.bmv_iflags |= BMV_IF_DELALLOC; |
| 670 | |
| 671 | error = xfs_getbmap(ip, &bm, xfs_fiemap_format, fieinfo); |
| 672 | if (error) |
| 673 | return -error; |
| 674 | |
| 675 | return 0; |
| 676 | } |
| 677 | |
Christoph Hellwig | 41be8be | 2008-08-13 16:23:13 +1000 | [diff] [blame] | 678 | static const struct inode_operations xfs_inode_operations = { |
Linus Torvalds | 18f4c64 | 2009-08-28 12:29:03 -0700 | [diff] [blame] | 679 | .check_acl = xfs_check_acl, |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 680 | .truncate = xfs_vn_truncate, |
| 681 | .getattr = xfs_vn_getattr, |
| 682 | .setattr = xfs_vn_setattr, |
Lachlan McIlroy | 0ec5851 | 2008-06-23 13:23:01 +1000 | [diff] [blame] | 683 | .setxattr = generic_setxattr, |
| 684 | .getxattr = generic_getxattr, |
| 685 | .removexattr = generic_removexattr, |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 686 | .listxattr = xfs_vn_listxattr, |
David Chinner | 3ed6526 | 2007-11-23 16:29:25 +1100 | [diff] [blame] | 687 | .fallocate = xfs_vn_fallocate, |
Eric Sandeen | f35642e | 2008-11-28 14:23:35 +1100 | [diff] [blame] | 688 | .fiemap = xfs_vn_fiemap, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 689 | }; |
| 690 | |
Christoph Hellwig | 41be8be | 2008-08-13 16:23:13 +1000 | [diff] [blame] | 691 | static const struct inode_operations xfs_dir_inode_operations = { |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 692 | .create = xfs_vn_create, |
| 693 | .lookup = xfs_vn_lookup, |
| 694 | .link = xfs_vn_link, |
| 695 | .unlink = xfs_vn_unlink, |
| 696 | .symlink = xfs_vn_symlink, |
| 697 | .mkdir = xfs_vn_mkdir, |
Christoph Hellwig | 8f112e3 | 2008-06-23 13:25:17 +1000 | [diff] [blame] | 698 | /* |
| 699 | * Yes, XFS uses the same method for rmdir and unlink. |
| 700 | * |
| 701 | * There are some subtile differences deeper in the code, |
| 702 | * but we use S_ISDIR to check for those. |
| 703 | */ |
| 704 | .rmdir = xfs_vn_unlink, |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 705 | .mknod = xfs_vn_mknod, |
| 706 | .rename = xfs_vn_rename, |
Linus Torvalds | 18f4c64 | 2009-08-28 12:29:03 -0700 | [diff] [blame] | 707 | .check_acl = xfs_check_acl, |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 708 | .getattr = xfs_vn_getattr, |
| 709 | .setattr = xfs_vn_setattr, |
Lachlan McIlroy | 0ec5851 | 2008-06-23 13:23:01 +1000 | [diff] [blame] | 710 | .setxattr = generic_setxattr, |
| 711 | .getxattr = generic_getxattr, |
| 712 | .removexattr = generic_removexattr, |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 713 | .listxattr = xfs_vn_listxattr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 714 | }; |
| 715 | |
Christoph Hellwig | 41be8be | 2008-08-13 16:23:13 +1000 | [diff] [blame] | 716 | static const struct inode_operations xfs_dir_ci_inode_operations = { |
Barry Naujok | 384f3ce | 2008-05-21 16:58:22 +1000 | [diff] [blame] | 717 | .create = xfs_vn_create, |
| 718 | .lookup = xfs_vn_ci_lookup, |
| 719 | .link = xfs_vn_link, |
| 720 | .unlink = xfs_vn_unlink, |
| 721 | .symlink = xfs_vn_symlink, |
| 722 | .mkdir = xfs_vn_mkdir, |
Christoph Hellwig | 8f112e3 | 2008-06-23 13:25:17 +1000 | [diff] [blame] | 723 | /* |
| 724 | * Yes, XFS uses the same method for rmdir and unlink. |
| 725 | * |
| 726 | * There are some subtile differences deeper in the code, |
| 727 | * but we use S_ISDIR to check for those. |
| 728 | */ |
| 729 | .rmdir = xfs_vn_unlink, |
Barry Naujok | 384f3ce | 2008-05-21 16:58:22 +1000 | [diff] [blame] | 730 | .mknod = xfs_vn_mknod, |
| 731 | .rename = xfs_vn_rename, |
Linus Torvalds | 18f4c64 | 2009-08-28 12:29:03 -0700 | [diff] [blame] | 732 | .check_acl = xfs_check_acl, |
Barry Naujok | 384f3ce | 2008-05-21 16:58:22 +1000 | [diff] [blame] | 733 | .getattr = xfs_vn_getattr, |
| 734 | .setattr = xfs_vn_setattr, |
Lachlan McIlroy | 0ec5851 | 2008-06-23 13:23:01 +1000 | [diff] [blame] | 735 | .setxattr = generic_setxattr, |
| 736 | .getxattr = generic_getxattr, |
| 737 | .removexattr = generic_removexattr, |
Barry Naujok | 384f3ce | 2008-05-21 16:58:22 +1000 | [diff] [blame] | 738 | .listxattr = xfs_vn_listxattr, |
Barry Naujok | 384f3ce | 2008-05-21 16:58:22 +1000 | [diff] [blame] | 739 | }; |
| 740 | |
Christoph Hellwig | 41be8be | 2008-08-13 16:23:13 +1000 | [diff] [blame] | 741 | static const struct inode_operations xfs_symlink_inode_operations = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 742 | .readlink = generic_readlink, |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 743 | .follow_link = xfs_vn_follow_link, |
| 744 | .put_link = xfs_vn_put_link, |
Linus Torvalds | 18f4c64 | 2009-08-28 12:29:03 -0700 | [diff] [blame] | 745 | .check_acl = xfs_check_acl, |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 746 | .getattr = xfs_vn_getattr, |
| 747 | .setattr = xfs_vn_setattr, |
Lachlan McIlroy | 0ec5851 | 2008-06-23 13:23:01 +1000 | [diff] [blame] | 748 | .setxattr = generic_setxattr, |
| 749 | .getxattr = generic_getxattr, |
| 750 | .removexattr = generic_removexattr, |
Nathan Scott | 416c6d5 | 2006-03-14 14:00:51 +1100 | [diff] [blame] | 751 | .listxattr = xfs_vn_listxattr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 752 | }; |
Christoph Hellwig | 41be8be | 2008-08-13 16:23:13 +1000 | [diff] [blame] | 753 | |
| 754 | STATIC void |
| 755 | xfs_diflags_to_iflags( |
| 756 | struct inode *inode, |
| 757 | struct xfs_inode *ip) |
| 758 | { |
| 759 | if (ip->i_d.di_flags & XFS_DIFLAG_IMMUTABLE) |
| 760 | inode->i_flags |= S_IMMUTABLE; |
| 761 | else |
| 762 | inode->i_flags &= ~S_IMMUTABLE; |
| 763 | if (ip->i_d.di_flags & XFS_DIFLAG_APPEND) |
| 764 | inode->i_flags |= S_APPEND; |
| 765 | else |
| 766 | inode->i_flags &= ~S_APPEND; |
| 767 | if (ip->i_d.di_flags & XFS_DIFLAG_SYNC) |
| 768 | inode->i_flags |= S_SYNC; |
| 769 | else |
| 770 | inode->i_flags &= ~S_SYNC; |
| 771 | if (ip->i_d.di_flags & XFS_DIFLAG_NOATIME) |
| 772 | inode->i_flags |= S_NOATIME; |
| 773 | else |
| 774 | inode->i_flags &= ~S_NOATIME; |
| 775 | } |
| 776 | |
| 777 | /* |
| 778 | * Initialize the Linux inode, set up the operation vectors and |
| 779 | * unlock the inode. |
| 780 | * |
| 781 | * When reading existing inodes from disk this is called directly |
| 782 | * from xfs_iget, when creating a new inode it is called from |
| 783 | * xfs_ialloc after setting up the inode. |
David Chinner | bf90424 | 2008-10-30 17:36:14 +1100 | [diff] [blame] | 784 | * |
| 785 | * We are always called with an uninitialised linux inode here. |
| 786 | * We need to initialise the necessary fields and take a reference |
| 787 | * on it. |
Christoph Hellwig | 41be8be | 2008-08-13 16:23:13 +1000 | [diff] [blame] | 788 | */ |
| 789 | void |
| 790 | xfs_setup_inode( |
| 791 | struct xfs_inode *ip) |
| 792 | { |
David Chinner | bf90424 | 2008-10-30 17:36:14 +1100 | [diff] [blame] | 793 | struct inode *inode = &ip->i_vnode; |
| 794 | |
| 795 | inode->i_ino = ip->i_ino; |
| 796 | inode->i_state = I_NEW|I_LOCK; |
| 797 | inode_add_to_lists(ip->i_mount->m_super, inode); |
Christoph Hellwig | 41be8be | 2008-08-13 16:23:13 +1000 | [diff] [blame] | 798 | |
| 799 | inode->i_mode = ip->i_d.di_mode; |
| 800 | inode->i_nlink = ip->i_d.di_nlink; |
| 801 | inode->i_uid = ip->i_d.di_uid; |
| 802 | inode->i_gid = ip->i_d.di_gid; |
| 803 | |
| 804 | switch (inode->i_mode & S_IFMT) { |
| 805 | case S_IFBLK: |
| 806 | case S_IFCHR: |
| 807 | inode->i_rdev = |
| 808 | MKDEV(sysv_major(ip->i_df.if_u2.if_rdev) & 0x1ff, |
| 809 | sysv_minor(ip->i_df.if_u2.if_rdev)); |
| 810 | break; |
| 811 | default: |
| 812 | inode->i_rdev = 0; |
| 813 | break; |
| 814 | } |
| 815 | |
| 816 | inode->i_generation = ip->i_d.di_gen; |
| 817 | i_size_write(inode, ip->i_d.di_size); |
| 818 | inode->i_atime.tv_sec = ip->i_d.di_atime.t_sec; |
| 819 | inode->i_atime.tv_nsec = ip->i_d.di_atime.t_nsec; |
| 820 | inode->i_mtime.tv_sec = ip->i_d.di_mtime.t_sec; |
| 821 | inode->i_mtime.tv_nsec = ip->i_d.di_mtime.t_nsec; |
| 822 | inode->i_ctime.tv_sec = ip->i_d.di_ctime.t_sec; |
| 823 | inode->i_ctime.tv_nsec = ip->i_d.di_ctime.t_nsec; |
| 824 | xfs_diflags_to_iflags(inode, ip); |
Christoph Hellwig | 41be8be | 2008-08-13 16:23:13 +1000 | [diff] [blame] | 825 | |
| 826 | switch (inode->i_mode & S_IFMT) { |
| 827 | case S_IFREG: |
| 828 | inode->i_op = &xfs_inode_operations; |
| 829 | inode->i_fop = &xfs_file_operations; |
| 830 | inode->i_mapping->a_ops = &xfs_address_space_operations; |
| 831 | break; |
| 832 | case S_IFDIR: |
| 833 | if (xfs_sb_version_hasasciici(&XFS_M(inode->i_sb)->m_sb)) |
| 834 | inode->i_op = &xfs_dir_ci_inode_operations; |
| 835 | else |
| 836 | inode->i_op = &xfs_dir_inode_operations; |
| 837 | inode->i_fop = &xfs_dir_file_operations; |
| 838 | break; |
| 839 | case S_IFLNK: |
| 840 | inode->i_op = &xfs_symlink_inode_operations; |
| 841 | if (!(ip->i_df.if_flags & XFS_IFINLINE)) |
| 842 | inode->i_mapping->a_ops = &xfs_address_space_operations; |
| 843 | break; |
| 844 | default: |
| 845 | inode->i_op = &xfs_inode_operations; |
| 846 | init_special_inode(inode, inode->i_mode, inode->i_rdev); |
| 847 | break; |
| 848 | } |
| 849 | |
| 850 | xfs_iflags_clear(ip, XFS_INEW); |
| 851 | barrier(); |
| 852 | |
| 853 | unlock_new_inode(inode); |
| 854 | } |