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