blob: d9298cf60266926bc5e1ec4a4ce7236db157178c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * 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 Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * 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 Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * 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 Torvalds1da177e2005-04-16 15:20:36 -070017 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "xfs.h"
19#include "xfs_fs.h"
Christoph Hellwigef14f0c2009-06-10 17:07:47 +020020#include "xfs_acl.h"
Nathan Scotta844f452005-11-02 14:38:42 +110021#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "xfs_log.h"
Nathan Scotta844f452005-11-02 14:38:42 +110023#include "xfs_inum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "xfs_trans.h"
25#include "xfs_sb.h"
26#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_alloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include "xfs_quota.h"
29#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "xfs_bmap_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "xfs_dinode.h"
32#include "xfs_inode.h"
33#include "xfs_bmap.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "xfs_rtalloc.h"
35#include "xfs_error.h"
36#include "xfs_itable.h"
37#include "xfs_rw.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include "xfs_attr.h"
39#include "xfs_buf_item.h"
40#include "xfs_utils.h"
Christoph Hellwig739bfb22007-08-29 10:58:01 +100041#include "xfs_vnodeops.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000042#include "xfs_trace.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080044#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/xattr.h>
46#include <linux/namei.h>
Christoph Hellwigef14f0c2009-06-10 17:07:47 +020047#include <linux/posix_acl.h>
Nathan Scott446ada42006-01-11 15:35:44 +110048#include <linux/security.h>
David Chinner3ed65262007-11-23 16:29:25 +110049#include <linux/falloc.h>
Eric Sandeenf35642e2008-11-28 14:23:35 +110050#include <linux/fiemap.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090051#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Nathan Scott4aeb6642005-11-02 11:43:58 +110053/*
Christoph Hellwigf9581b12009-10-06 20:29:26 +000054 * Bring the timestamps in the XFS inode uptodate.
55 *
56 * Used before writing the inode to disk.
Christoph Hellwig42fe2b12006-01-11 15:35:17 +110057 */
58void
Christoph Hellwigf9581b12009-10-06 20:29:26 +000059xfs_synchronize_times(
Christoph Hellwig42fe2b12006-01-11 15:35:17 +110060 xfs_inode_t *ip)
61{
David Chinner01651642008-08-13 15:45:15 +100062 struct inode *inode = VFS_I(ip);
Christoph Hellwig42fe2b12006-01-11 15:35:17 +110063
Christoph Hellwigf9581b12009-10-06 20:29:26 +000064 ip->i_d.di_atime.t_sec = (__int32_t)inode->i_atime.tv_sec;
65 ip->i_d.di_atime.t_nsec = (__int32_t)inode->i_atime.tv_nsec;
66 ip->i_d.di_ctime.t_sec = (__int32_t)inode->i_ctime.tv_sec;
67 ip->i_d.di_ctime.t_nsec = (__int32_t)inode->i_ctime.tv_nsec;
68 ip->i_d.di_mtime.t_sec = (__int32_t)inode->i_mtime.tv_sec;
69 ip->i_d.di_mtime.t_nsec = (__int32_t)inode->i_mtime.tv_nsec;
Christoph Hellwig42fe2b12006-01-11 15:35:17 +110070}
71
72/*
David Chinnerbf904242008-10-30 17:36:14 +110073 * If the linux inode is valid, mark it dirty.
David Chinner5d51eff2007-11-23 16:29:18 +110074 * Used when commiting a dirty inode into a transaction so that
75 * the inode will get written back by the linux code
76 */
77void
78xfs_mark_inode_dirty_sync(
79 xfs_inode_t *ip)
80{
David Chinner01651642008-08-13 15:45:15 +100081 struct inode *inode = VFS_I(ip);
David Chinner5d51eff2007-11-23 16:29:18 +110082
Al Viroa4ffdde2010-06-02 17:38:30 -040083 if (!(inode->i_state & (I_WILL_FREE|I_FREEING)))
Christoph Hellwigaf048192008-03-06 13:46:43 +110084 mark_inode_dirty_sync(inode);
David Chinner5d51eff2007-11-23 16:29:18 +110085}
86
Christoph Hellwig66d834e2010-02-15 09:44:49 +000087void
88xfs_mark_inode_dirty(
89 xfs_inode_t *ip)
90{
91 struct inode *inode = VFS_I(ip);
92
Al Viroa4ffdde2010-06-02 17:38:30 -040093 if (!(inode->i_state & (I_WILL_FREE|I_FREEING)))
Christoph Hellwig66d834e2010-02-15 09:44:49 +000094 mark_inode_dirty(inode);
95}
96
David Chinner5d51eff2007-11-23 16:29:18 +110097/*
Nathan Scott446ada42006-01-11 15:35:44 +110098 * Hook in SELinux. This is not quite correct yet, what we really need
99 * here (as we do for default ACLs) is a mechanism by which creation of
100 * these attrs can be journalled at inode creation time (along with the
101 * inode, of course, such that log replay can't cause these to be lost).
102 */
103STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100104xfs_init_security(
Christoph Hellwigaf048192008-03-06 13:46:43 +1100105 struct inode *inode,
Eric Paris2a7dba32011-02-01 11:05:39 -0500106 struct inode *dir,
107 const struct qstr *qstr)
Nathan Scott446ada42006-01-11 15:35:44 +1100108{
Christoph Hellwigaf048192008-03-06 13:46:43 +1100109 struct xfs_inode *ip = XFS_I(inode);
Nathan Scott446ada42006-01-11 15:35:44 +1100110 size_t length;
111 void *value;
Dave Chinnera9273ca2010-01-20 10:47:48 +1100112 unsigned char *name;
Nathan Scott446ada42006-01-11 15:35:44 +1100113 int error;
114
Eric Paris2a7dba32011-02-01 11:05:39 -0500115 error = security_inode_init_security(inode, dir, qstr, (char **)&name,
Christoph Hellwigaf048192008-03-06 13:46:43 +1100116 &value, &length);
Nathan Scott446ada42006-01-11 15:35:44 +1100117 if (error) {
118 if (error == -EOPNOTSUPP)
119 return 0;
120 return -error;
121 }
122
Christoph Hellwigaf048192008-03-06 13:46:43 +1100123 error = xfs_attr_set(ip, name, value, length, ATTR_SECURE);
Nathan Scott446ada42006-01-11 15:35:44 +1100124
125 kfree(name);
126 kfree(value);
127 return error;
128}
129
Barry Naujok556b8b12008-04-10 12:22:07 +1000130static void
131xfs_dentry_to_name(
132 struct xfs_name *namep,
133 struct dentry *dentry)
134{
135 namep->name = dentry->d_name.name;
136 namep->len = dentry->d_name.len;
137}
138
David Chinner7989cb82007-02-10 18:34:56 +1100139STATIC void
Nathan Scott416c6d52006-03-14 14:00:51 +1100140xfs_cleanup_inode(
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000141 struct inode *dir,
Christoph Hellwigaf048192008-03-06 13:46:43 +1100142 struct inode *inode,
Christoph Hellwig8f112e32008-06-23 13:25:17 +1000143 struct dentry *dentry)
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100144{
Barry Naujok556b8b12008-04-10 12:22:07 +1000145 struct xfs_name teardown;
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100146
147 /* Oh, the horror.
Nathan Scott220b5282006-03-14 13:33:36 +1100148 * If we can't add the ACL or we fail in
Nathan Scott416c6d52006-03-14 14:00:51 +1100149 * xfs_init_security we must back out.
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100150 * ENOSPC can hit here, among other things.
151 */
Barry Naujok556b8b12008-04-10 12:22:07 +1000152 xfs_dentry_to_name(&teardown, dentry);
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100153
Christoph Hellwig8f112e32008-06-23 13:25:17 +1000154 xfs_remove(XFS_I(dir), &teardown, XFS_I(inode));
Christoph Hellwigaf048192008-03-06 13:46:43 +1100155 iput(inode);
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100156}
157
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100159xfs_vn_mknod(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 struct inode *dir,
161 struct dentry *dentry,
162 int mode,
163 dev_t rdev)
164{
Christoph Hellwigdb0bb7b2008-03-06 13:44:35 +1100165 struct inode *inode;
Christoph Hellwig979ebab2008-03-06 13:46:05 +1100166 struct xfs_inode *ip = NULL;
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200167 struct posix_acl *default_acl = NULL;
Barry Naujok556b8b12008-04-10 12:22:07 +1000168 struct xfs_name name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 int error;
170
171 /*
172 * Irix uses Missed'em'V split, but doesn't want to see
173 * the upper 5 bits of (14bit) major.
174 */
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100175 if (S_ISCHR(mode) || S_ISBLK(mode)) {
176 if (unlikely(!sysv_valid_dev(rdev) || MAJOR(rdev) & ~0x1ff))
177 return -EINVAL;
178 rdev = sysv_encode_dev(rdev);
179 } else {
180 rdev = 0;
181 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200183 if (IS_POSIXACL(dir)) {
184 default_acl = xfs_get_acl(dir, ACL_TYPE_DEFAULT);
185 if (IS_ERR(default_acl))
186 return -PTR_ERR(default_acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Christoph Hellwige83f1eb2009-06-12 11:19:11 -0400188 if (!default_acl)
189 mode &= ~current_umask();
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200190 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100192 xfs_dentry_to_name(&name, dentry);
Christoph Hellwig6c77b0e2010-10-06 18:41:17 +0000193 error = xfs_create(XFS_I(dir), &name, mode, rdev, &ip);
Christoph Hellwigdb0bb7b2008-03-06 13:44:35 +1100194 if (unlikely(error))
195 goto out_free_acl;
Nathan Scott446ada42006-01-11 15:35:44 +1100196
David Chinner01651642008-08-13 15:45:15 +1000197 inode = VFS_I(ip);
Christoph Hellwig979ebab2008-03-06 13:46:05 +1100198
Eric Paris2a7dba32011-02-01 11:05:39 -0500199 error = xfs_init_security(inode, dir, &dentry->d_name);
Christoph Hellwigdb0bb7b2008-03-06 13:44:35 +1100200 if (unlikely(error))
201 goto out_cleanup_inode;
202
203 if (default_acl) {
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200204 error = -xfs_inherit_acl(inode, default_acl);
Christoph Hellwigdb0bb7b2008-03-06 13:44:35 +1100205 if (unlikely(error))
206 goto out_cleanup_inode;
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200207 posix_acl_release(default_acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 }
209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Christoph Hellwigdb0bb7b2008-03-06 13:44:35 +1100211 d_instantiate(dentry, inode);
Christoph Hellwigdb0bb7b2008-03-06 13:44:35 +1100212 return -error;
213
214 out_cleanup_inode:
Christoph Hellwig8f112e32008-06-23 13:25:17 +1000215 xfs_cleanup_inode(dir, inode, dentry);
Christoph Hellwigdb0bb7b2008-03-06 13:44:35 +1100216 out_free_acl:
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200217 posix_acl_release(default_acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 return -error;
219}
220
221STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100222xfs_vn_create(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 struct inode *dir,
224 struct dentry *dentry,
225 int mode,
226 struct nameidata *nd)
227{
Nathan Scott416c6d52006-03-14 14:00:51 +1100228 return xfs_vn_mknod(dir, dentry, mode, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229}
230
231STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100232xfs_vn_mkdir(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 struct inode *dir,
234 struct dentry *dentry,
235 int mode)
236{
Nathan Scott416c6d52006-03-14 14:00:51 +1100237 return xfs_vn_mknod(dir, dentry, mode|S_IFDIR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238}
239
240STATIC struct dentry *
Nathan Scott416c6d52006-03-14 14:00:51 +1100241xfs_vn_lookup(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 struct inode *dir,
243 struct dentry *dentry,
244 struct nameidata *nd)
245{
Christoph Hellwigef1f5e72008-03-06 13:46:25 +1100246 struct xfs_inode *cip;
Barry Naujok556b8b12008-04-10 12:22:07 +1000247 struct xfs_name name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 int error;
249
250 if (dentry->d_name.len >= MAXNAMELEN)
251 return ERR_PTR(-ENAMETOOLONG);
252
Barry Naujok556b8b12008-04-10 12:22:07 +1000253 xfs_dentry_to_name(&name, dentry);
Barry Naujok384f3ce2008-05-21 16:58:22 +1000254 error = xfs_lookup(XFS_I(dir), &name, &cip, NULL);
Nathan Scott67fcaa72006-06-09 17:00:52 +1000255 if (unlikely(error)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 if (unlikely(error != ENOENT))
257 return ERR_PTR(-error);
258 d_add(dentry, NULL);
259 return NULL;
260 }
261
David Chinner01651642008-08-13 15:45:15 +1000262 return d_splice_alias(VFS_I(cip), dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263}
264
Barry Naujok384f3ce2008-05-21 16:58:22 +1000265STATIC struct dentry *
266xfs_vn_ci_lookup(
267 struct inode *dir,
268 struct dentry *dentry,
269 struct nameidata *nd)
270{
271 struct xfs_inode *ip;
272 struct xfs_name xname;
273 struct xfs_name ci_name;
274 struct qstr dname;
275 int error;
276
277 if (dentry->d_name.len >= MAXNAMELEN)
278 return ERR_PTR(-ENAMETOOLONG);
279
280 xfs_dentry_to_name(&xname, dentry);
281 error = xfs_lookup(XFS_I(dir), &xname, &ip, &ci_name);
282 if (unlikely(error)) {
283 if (unlikely(error != ENOENT))
284 return ERR_PTR(-error);
Barry Naujok866d5dc2008-05-22 17:21:40 +1000285 /*
286 * call d_add(dentry, NULL) here when d_drop_negative_children
287 * is called in xfs_vn_mknod (ie. allow negative dentries
288 * with CI filesystems).
289 */
Barry Naujok384f3ce2008-05-21 16:58:22 +1000290 return NULL;
291 }
292
293 /* if exact match, just splice and exit */
294 if (!ci_name.name)
David Chinner01651642008-08-13 15:45:15 +1000295 return d_splice_alias(VFS_I(ip), dentry);
Barry Naujok384f3ce2008-05-21 16:58:22 +1000296
297 /* else case-insensitive match... */
298 dname.name = ci_name.name;
299 dname.len = ci_name.len;
Christoph Hellwige45b5902008-08-07 23:49:07 +0200300 dentry = d_add_ci(dentry, VFS_I(ip), &dname);
Barry Naujok384f3ce2008-05-21 16:58:22 +1000301 kmem_free(ci_name.name);
302 return dentry;
303}
304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100306xfs_vn_link(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 struct dentry *old_dentry,
308 struct inode *dir,
309 struct dentry *dentry)
310{
Christoph Hellwigd9424b32008-12-03 12:20:27 +0100311 struct inode *inode = old_dentry->d_inode;
Barry Naujok556b8b12008-04-10 12:22:07 +1000312 struct xfs_name name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 int error;
314
Barry Naujok556b8b12008-04-10 12:22:07 +1000315 xfs_dentry_to_name(&name, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Barry Naujok556b8b12008-04-10 12:22:07 +1000317 error = xfs_link(XFS_I(dir), XFS_I(inode), &name);
Christoph Hellwigd9424b32008-12-03 12:20:27 +0100318 if (unlikely(error))
Christoph Hellwiga3da7892008-03-06 13:46:12 +1100319 return -error;
Christoph Hellwiga3da7892008-03-06 13:46:12 +1100320
Al Viro7de9c6ee2010-10-23 11:11:40 -0400321 ihold(inode);
Christoph Hellwiga3da7892008-03-06 13:46:12 +1100322 d_instantiate(dentry, inode);
323 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324}
325
326STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100327xfs_vn_unlink(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 struct inode *dir,
329 struct dentry *dentry)
330{
Barry Naujok556b8b12008-04-10 12:22:07 +1000331 struct xfs_name name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 int error;
333
Barry Naujok556b8b12008-04-10 12:22:07 +1000334 xfs_dentry_to_name(&name, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Christoph Hellwige5700702008-06-23 13:25:25 +1000336 error = -xfs_remove(XFS_I(dir), &name, XFS_I(dentry->d_inode));
337 if (error)
338 return error;
339
340 /*
341 * With unlink, the VFS makes the dentry "negative": no inode,
342 * but still hashed. This is incompatible with case-insensitive
343 * mode, so invalidate (unhash) the dentry in CI-mode.
344 */
345 if (xfs_sb_version_hasasciici(&XFS_M(dir->i_sb)->m_sb))
346 d_invalidate(dentry);
347 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348}
349
350STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100351xfs_vn_symlink(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 struct inode *dir,
353 struct dentry *dentry,
354 const char *symname)
355{
Christoph Hellwig3937be52008-03-06 13:46:19 +1100356 struct inode *inode;
357 struct xfs_inode *cip = NULL;
Barry Naujok556b8b12008-04-10 12:22:07 +1000358 struct xfs_name name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 int error;
Christoph Hellwig3e5daf02007-10-11 18:09:12 +1000360 mode_t mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
Christoph Hellwig3e5daf02007-10-11 18:09:12 +1000362 mode = S_IFLNK |
Al Viroce3b0f82009-03-29 19:08:22 -0400363 (irix_symlink_mode ? 0777 & ~current_umask() : S_IRWXUGO);
Barry Naujok556b8b12008-04-10 12:22:07 +1000364 xfs_dentry_to_name(&name, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
Christoph Hellwig6c77b0e2010-10-06 18:41:17 +0000366 error = xfs_symlink(XFS_I(dir), &name, symname, mode, &cip);
Christoph Hellwig3937be52008-03-06 13:46:19 +1100367 if (unlikely(error))
368 goto out;
369
David Chinner01651642008-08-13 15:45:15 +1000370 inode = VFS_I(cip);
Christoph Hellwig3937be52008-03-06 13:46:19 +1100371
Eric Paris2a7dba32011-02-01 11:05:39 -0500372 error = xfs_init_security(inode, dir, &dentry->d_name);
Christoph Hellwig3937be52008-03-06 13:46:19 +1100373 if (unlikely(error))
374 goto out_cleanup_inode;
375
376 d_instantiate(dentry, inode);
Christoph Hellwig3937be52008-03-06 13:46:19 +1100377 return 0;
378
379 out_cleanup_inode:
Christoph Hellwig8f112e32008-06-23 13:25:17 +1000380 xfs_cleanup_inode(dir, inode, dentry);
Christoph Hellwig3937be52008-03-06 13:46:19 +1100381 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 return -error;
383}
384
385STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100386xfs_vn_rename(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 struct inode *odir,
388 struct dentry *odentry,
389 struct inode *ndir,
390 struct dentry *ndentry)
391{
392 struct inode *new_inode = ndentry->d_inode;
Barry Naujok556b8b12008-04-10 12:22:07 +1000393 struct xfs_name oname;
394 struct xfs_name nname;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
Barry Naujok556b8b12008-04-10 12:22:07 +1000396 xfs_dentry_to_name(&oname, odentry);
397 xfs_dentry_to_name(&nname, ndentry);
398
Christoph Hellwige5700702008-06-23 13:25:25 +1000399 return -xfs_rename(XFS_I(odir), &oname, XFS_I(odentry->d_inode),
Christoph Hellwigcfa853e2008-04-22 17:34:06 +1000400 XFS_I(ndir), &nname, new_inode ?
401 XFS_I(new_inode) : NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402}
403
404/*
405 * careful here - this function can get called recursively, so
406 * we need to be very careful about how much stack we use.
407 * uio is kmalloced for this reason...
408 */
Al Viro008b1502005-08-20 00:17:39 +0100409STATIC void *
Nathan Scott416c6d52006-03-14 14:00:51 +1100410xfs_vn_follow_link(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 struct dentry *dentry,
412 struct nameidata *nd)
413{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 char *link;
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000415 int error = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
Panagiotis Issarisf52720c2006-09-27 01:49:39 -0700417 link = kmalloc(MAXPATHLEN+1, GFP_KERNEL);
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000418 if (!link)
419 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000421 error = -xfs_readlink(XFS_I(dentry->d_inode), link);
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000422 if (unlikely(error))
423 goto out_kfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
425 nd_set_link(nd, link);
Al Viro008b1502005-08-20 00:17:39 +0100426 return NULL;
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000427
428 out_kfree:
429 kfree(link);
430 out_err:
431 nd_set_link(nd, ERR_PTR(error));
432 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433}
434
Nathan Scottcde410a2005-09-05 11:47:01 +1000435STATIC void
Nathan Scott416c6d52006-03-14 14:00:51 +1100436xfs_vn_put_link(
Nathan Scottcde410a2005-09-05 11:47:01 +1000437 struct dentry *dentry,
438 struct nameidata *nd,
439 void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440{
Nathan Scottcde410a2005-09-05 11:47:01 +1000441 char *s = nd_get_link(nd);
442
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 if (!IS_ERR(s))
444 kfree(s);
445}
446
Christoph Hellwig45767582008-02-05 12:13:24 +1100447STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100448xfs_vn_getattr(
Christoph Hellwigc43f4082007-10-11 17:46:39 +1000449 struct vfsmount *mnt,
450 struct dentry *dentry,
451 struct kstat *stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452{
Christoph Hellwigc43f4082007-10-11 17:46:39 +1000453 struct inode *inode = dentry->d_inode;
454 struct xfs_inode *ip = XFS_I(inode);
455 struct xfs_mount *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
Christoph Hellwigcca28fb2010-06-24 11:57:09 +1000457 trace_xfs_getattr(ip);
Christoph Hellwigc43f4082007-10-11 17:46:39 +1000458
459 if (XFS_FORCED_SHUTDOWN(mp))
460 return XFS_ERROR(EIO);
461
462 stat->size = XFS_ISIZE(ip);
463 stat->dev = inode->i_sb->s_dev;
464 stat->mode = ip->i_d.di_mode;
465 stat->nlink = ip->i_d.di_nlink;
466 stat->uid = ip->i_d.di_uid;
467 stat->gid = ip->i_d.di_gid;
468 stat->ino = ip->i_ino;
Christoph Hellwigc43f4082007-10-11 17:46:39 +1000469 stat->atime = inode->i_atime;
Christoph Hellwigf9581b12009-10-06 20:29:26 +0000470 stat->mtime = inode->i_mtime;
471 stat->ctime = inode->i_ctime;
Christoph Hellwigc43f4082007-10-11 17:46:39 +1000472 stat->blocks =
473 XFS_FSB_TO_BB(mp, ip->i_d.di_nblocks + ip->i_delayed_blks);
474
475
476 switch (inode->i_mode & S_IFMT) {
477 case S_IFBLK:
478 case S_IFCHR:
479 stat->blksize = BLKDEV_IOSIZE;
480 stat->rdev = MKDEV(sysv_major(ip->i_df.if_u2.if_rdev) & 0x1ff,
481 sysv_minor(ip->i_df.if_u2.if_rdev));
482 break;
483 default:
Eric Sandeen71ddabb2007-11-23 16:29:42 +1100484 if (XFS_IS_REALTIME_INODE(ip)) {
Christoph Hellwigc43f4082007-10-11 17:46:39 +1000485 /*
486 * If the file blocks are being allocated from a
487 * realtime volume, then return the inode's realtime
488 * extent size or the realtime volume's extent size.
489 */
490 stat->blksize =
491 xfs_get_extsz_hint(ip) << mp->m_sb.sb_blocklog;
492 } else
493 stat->blksize = xfs_preferred_iosize(mp);
494 stat->rdev = 0;
495 break;
Nathan Scott69e23b92006-09-28 11:01:22 +1000496 }
Christoph Hellwigc43f4082007-10-11 17:46:39 +1000497
498 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499}
500
501STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100502xfs_vn_setattr(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 struct dentry *dentry,
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000504 struct iattr *iattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505{
Christoph Hellwigea5a3dc82008-10-30 18:27:48 +1100506 return -xfs_setattr(XFS_I(dentry->d_inode), iattr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507}
508
David Chinner3ed65262007-11-23 16:29:25 +1100509STATIC long
510xfs_vn_fallocate(
511 struct inode *inode,
512 int mode,
513 loff_t offset,
514 loff_t len)
515{
516 long error;
517 loff_t new_size = 0;
518 xfs_flock64_t bf;
519 xfs_inode_t *ip = XFS_I(inode);
520
521 /* preallocation on directories not yet supported */
522 error = -ENODEV;
523 if (S_ISDIR(inode->i_mode))
524 goto out_error;
525
526 bf.l_whence = 0;
527 bf.l_start = offset;
528 bf.l_len = len;
529
530 xfs_ilock(ip, XFS_IOLOCK_EXCL);
Dave Chinner07f1a4f2010-05-21 05:47:59 +0000531
532 /* check the new inode size is valid before allocating */
533 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
534 offset + len > i_size_read(inode)) {
535 new_size = offset + len;
536 error = inode_newsize_ok(inode, new_size);
537 if (error)
538 goto out_unlock;
539 }
540
Jason Gunthorpe44a743f2009-11-24 21:52:53 +0000541 error = -xfs_change_file_space(ip, XFS_IOC_RESVSP, &bf,
542 0, XFS_ATTR_NOLOCK);
Dave Chinner07f1a4f2010-05-21 05:47:59 +0000543 if (error)
544 goto out_unlock;
David Chinner3ed65262007-11-23 16:29:25 +1100545
546 /* Change file size if needed */
547 if (new_size) {
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000548 struct iattr iattr;
David Chinner3ed65262007-11-23 16:29:25 +1100549
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000550 iattr.ia_valid = ATTR_SIZE;
551 iattr.ia_size = new_size;
Jason Gunthorpe44a743f2009-11-24 21:52:53 +0000552 error = -xfs_setattr(ip, &iattr, XFS_ATTR_NOLOCK);
David Chinner3ed65262007-11-23 16:29:25 +1100553 }
554
Dave Chinner07f1a4f2010-05-21 05:47:59 +0000555out_unlock:
David Chinner3ed65262007-11-23 16:29:25 +1100556 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
557out_error:
558 return error;
559}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
Eric Sandeenf35642e2008-11-28 14:23:35 +1100561#define XFS_FIEMAP_FLAGS (FIEMAP_FLAG_SYNC|FIEMAP_FLAG_XATTR)
562
563/*
564 * Call fiemap helper to fill in user data.
565 * Returns positive errors to xfs_getbmap.
566 */
567STATIC int
568xfs_fiemap_format(
569 void **arg,
570 struct getbmapx *bmv,
571 int *full)
572{
573 int error;
574 struct fiemap_extent_info *fieinfo = *arg;
575 u32 fiemap_flags = 0;
576 u64 logical, physical, length;
577
578 /* Do nothing for a hole */
579 if (bmv->bmv_block == -1LL)
580 return 0;
581
582 logical = BBTOB(bmv->bmv_offset);
583 physical = BBTOB(bmv->bmv_block);
584 length = BBTOB(bmv->bmv_length);
585
586 if (bmv->bmv_oflags & BMV_OF_PREALLOC)
587 fiemap_flags |= FIEMAP_EXTENT_UNWRITTEN;
588 else if (bmv->bmv_oflags & BMV_OF_DELALLOC) {
589 fiemap_flags |= FIEMAP_EXTENT_DELALLOC;
590 physical = 0; /* no block yet */
591 }
592 if (bmv->bmv_oflags & BMV_OF_LAST)
593 fiemap_flags |= FIEMAP_EXTENT_LAST;
594
595 error = fiemap_fill_next_extent(fieinfo, logical, physical,
596 length, fiemap_flags);
597 if (error > 0) {
598 error = 0;
599 *full = 1; /* user array now full */
600 }
601
602 return -error;
603}
604
605STATIC int
606xfs_vn_fiemap(
607 struct inode *inode,
608 struct fiemap_extent_info *fieinfo,
609 u64 start,
610 u64 length)
611{
612 xfs_inode_t *ip = XFS_I(inode);
613 struct getbmapx bm;
614 int error;
615
616 error = fiemap_check_flags(fieinfo, XFS_FIEMAP_FLAGS);
617 if (error)
618 return error;
619
620 /* Set up bmap header for xfs internal routine */
621 bm.bmv_offset = BTOBB(start);
622 /* Special case for whole file */
623 if (length == FIEMAP_MAX_OFFSET)
624 bm.bmv_length = -1LL;
625 else
626 bm.bmv_length = BTOBB(length);
627
Eric Sandeen97db39a2009-07-26 21:52:01 -0500628 /* We add one because in getbmap world count includes the header */
Tao Ma2d1ff3c2010-04-29 15:13:56 +1000629 bm.bmv_count = !fieinfo->fi_extents_max ? MAXEXTNUM :
630 fieinfo->fi_extents_max + 1;
631 bm.bmv_count = min_t(__s32, bm.bmv_count,
632 (PAGE_SIZE * 16 / sizeof(struct getbmapx)));
Tao Ma9af25462010-08-30 02:44:03 +0000633 bm.bmv_iflags = BMV_IF_PREALLOC | BMV_IF_NO_HOLES;
Eric Sandeenf35642e2008-11-28 14:23:35 +1100634 if (fieinfo->fi_flags & FIEMAP_FLAG_XATTR)
635 bm.bmv_iflags |= BMV_IF_ATTRFORK;
636 if (!(fieinfo->fi_flags & FIEMAP_FLAG_SYNC))
637 bm.bmv_iflags |= BMV_IF_DELALLOC;
638
639 error = xfs_getbmap(ip, &bm, xfs_fiemap_format, fieinfo);
640 if (error)
641 return -error;
642
643 return 0;
644}
645
Christoph Hellwig41be8be2008-08-13 16:23:13 +1000646static const struct inode_operations xfs_inode_operations = {
Linus Torvalds18f4c642009-08-28 12:29:03 -0700647 .check_acl = xfs_check_acl,
Nathan Scott416c6d52006-03-14 14:00:51 +1100648 .getattr = xfs_vn_getattr,
649 .setattr = xfs_vn_setattr,
Lachlan McIlroy0ec58512008-06-23 13:23:01 +1000650 .setxattr = generic_setxattr,
651 .getxattr = generic_getxattr,
652 .removexattr = generic_removexattr,
Nathan Scott416c6d52006-03-14 14:00:51 +1100653 .listxattr = xfs_vn_listxattr,
David Chinner3ed65262007-11-23 16:29:25 +1100654 .fallocate = xfs_vn_fallocate,
Eric Sandeenf35642e2008-11-28 14:23:35 +1100655 .fiemap = xfs_vn_fiemap,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656};
657
Christoph Hellwig41be8be2008-08-13 16:23:13 +1000658static const struct inode_operations xfs_dir_inode_operations = {
Nathan Scott416c6d52006-03-14 14:00:51 +1100659 .create = xfs_vn_create,
660 .lookup = xfs_vn_lookup,
661 .link = xfs_vn_link,
662 .unlink = xfs_vn_unlink,
663 .symlink = xfs_vn_symlink,
664 .mkdir = xfs_vn_mkdir,
Christoph Hellwig8f112e32008-06-23 13:25:17 +1000665 /*
666 * Yes, XFS uses the same method for rmdir and unlink.
667 *
668 * There are some subtile differences deeper in the code,
669 * but we use S_ISDIR to check for those.
670 */
671 .rmdir = xfs_vn_unlink,
Nathan Scott416c6d52006-03-14 14:00:51 +1100672 .mknod = xfs_vn_mknod,
673 .rename = xfs_vn_rename,
Linus Torvalds18f4c642009-08-28 12:29:03 -0700674 .check_acl = xfs_check_acl,
Nathan Scott416c6d52006-03-14 14:00:51 +1100675 .getattr = xfs_vn_getattr,
676 .setattr = xfs_vn_setattr,
Lachlan McIlroy0ec58512008-06-23 13:23:01 +1000677 .setxattr = generic_setxattr,
678 .getxattr = generic_getxattr,
679 .removexattr = generic_removexattr,
Nathan Scott416c6d52006-03-14 14:00:51 +1100680 .listxattr = xfs_vn_listxattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681};
682
Christoph Hellwig41be8be2008-08-13 16:23:13 +1000683static const struct inode_operations xfs_dir_ci_inode_operations = {
Barry Naujok384f3ce2008-05-21 16:58:22 +1000684 .create = xfs_vn_create,
685 .lookup = xfs_vn_ci_lookup,
686 .link = xfs_vn_link,
687 .unlink = xfs_vn_unlink,
688 .symlink = xfs_vn_symlink,
689 .mkdir = xfs_vn_mkdir,
Christoph Hellwig8f112e32008-06-23 13:25:17 +1000690 /*
691 * Yes, XFS uses the same method for rmdir and unlink.
692 *
693 * There are some subtile differences deeper in the code,
694 * but we use S_ISDIR to check for those.
695 */
696 .rmdir = xfs_vn_unlink,
Barry Naujok384f3ce2008-05-21 16:58:22 +1000697 .mknod = xfs_vn_mknod,
698 .rename = xfs_vn_rename,
Linus Torvalds18f4c642009-08-28 12:29:03 -0700699 .check_acl = xfs_check_acl,
Barry Naujok384f3ce2008-05-21 16:58:22 +1000700 .getattr = xfs_vn_getattr,
701 .setattr = xfs_vn_setattr,
Lachlan McIlroy0ec58512008-06-23 13:23:01 +1000702 .setxattr = generic_setxattr,
703 .getxattr = generic_getxattr,
704 .removexattr = generic_removexattr,
Barry Naujok384f3ce2008-05-21 16:58:22 +1000705 .listxattr = xfs_vn_listxattr,
Barry Naujok384f3ce2008-05-21 16:58:22 +1000706};
707
Christoph Hellwig41be8be2008-08-13 16:23:13 +1000708static const struct inode_operations xfs_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 .readlink = generic_readlink,
Nathan Scott416c6d52006-03-14 14:00:51 +1100710 .follow_link = xfs_vn_follow_link,
711 .put_link = xfs_vn_put_link,
Linus Torvalds18f4c642009-08-28 12:29:03 -0700712 .check_acl = xfs_check_acl,
Nathan Scott416c6d52006-03-14 14:00:51 +1100713 .getattr = xfs_vn_getattr,
714 .setattr = xfs_vn_setattr,
Lachlan McIlroy0ec58512008-06-23 13:23:01 +1000715 .setxattr = generic_setxattr,
716 .getxattr = generic_getxattr,
717 .removexattr = generic_removexattr,
Nathan Scott416c6d52006-03-14 14:00:51 +1100718 .listxattr = xfs_vn_listxattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719};
Christoph Hellwig41be8be2008-08-13 16:23:13 +1000720
721STATIC void
722xfs_diflags_to_iflags(
723 struct inode *inode,
724 struct xfs_inode *ip)
725{
726 if (ip->i_d.di_flags & XFS_DIFLAG_IMMUTABLE)
727 inode->i_flags |= S_IMMUTABLE;
728 else
729 inode->i_flags &= ~S_IMMUTABLE;
730 if (ip->i_d.di_flags & XFS_DIFLAG_APPEND)
731 inode->i_flags |= S_APPEND;
732 else
733 inode->i_flags &= ~S_APPEND;
734 if (ip->i_d.di_flags & XFS_DIFLAG_SYNC)
735 inode->i_flags |= S_SYNC;
736 else
737 inode->i_flags &= ~S_SYNC;
738 if (ip->i_d.di_flags & XFS_DIFLAG_NOATIME)
739 inode->i_flags |= S_NOATIME;
740 else
741 inode->i_flags &= ~S_NOATIME;
742}
743
744/*
745 * Initialize the Linux inode, set up the operation vectors and
746 * unlock the inode.
747 *
748 * When reading existing inodes from disk this is called directly
749 * from xfs_iget, when creating a new inode it is called from
750 * xfs_ialloc after setting up the inode.
David Chinnerbf904242008-10-30 17:36:14 +1100751 *
752 * We are always called with an uninitialised linux inode here.
753 * We need to initialise the necessary fields and take a reference
754 * on it.
Christoph Hellwig41be8be2008-08-13 16:23:13 +1000755 */
756void
757xfs_setup_inode(
758 struct xfs_inode *ip)
759{
David Chinnerbf904242008-10-30 17:36:14 +1100760 struct inode *inode = &ip->i_vnode;
761
762 inode->i_ino = ip->i_ino;
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100763 inode->i_state = I_NEW;
Christoph Hellwig646ec462010-10-23 07:15:32 -0400764
765 inode_sb_list_add(inode);
Christoph Hellwigc6f6cd02010-11-06 11:43:08 +0000766 /* make the inode look hashed for the writeback code */
767 hlist_add_fake(&inode->i_hash);
Christoph Hellwig41be8be2008-08-13 16:23:13 +1000768
769 inode->i_mode = ip->i_d.di_mode;
770 inode->i_nlink = ip->i_d.di_nlink;
771 inode->i_uid = ip->i_d.di_uid;
772 inode->i_gid = ip->i_d.di_gid;
773
774 switch (inode->i_mode & S_IFMT) {
775 case S_IFBLK:
776 case S_IFCHR:
777 inode->i_rdev =
778 MKDEV(sysv_major(ip->i_df.if_u2.if_rdev) & 0x1ff,
779 sysv_minor(ip->i_df.if_u2.if_rdev));
780 break;
781 default:
782 inode->i_rdev = 0;
783 break;
784 }
785
786 inode->i_generation = ip->i_d.di_gen;
787 i_size_write(inode, ip->i_d.di_size);
788 inode->i_atime.tv_sec = ip->i_d.di_atime.t_sec;
789 inode->i_atime.tv_nsec = ip->i_d.di_atime.t_nsec;
790 inode->i_mtime.tv_sec = ip->i_d.di_mtime.t_sec;
791 inode->i_mtime.tv_nsec = ip->i_d.di_mtime.t_nsec;
792 inode->i_ctime.tv_sec = ip->i_d.di_ctime.t_sec;
793 inode->i_ctime.tv_nsec = ip->i_d.di_ctime.t_nsec;
794 xfs_diflags_to_iflags(inode, ip);
Christoph Hellwig41be8be2008-08-13 16:23:13 +1000795
796 switch (inode->i_mode & S_IFMT) {
797 case S_IFREG:
798 inode->i_op = &xfs_inode_operations;
799 inode->i_fop = &xfs_file_operations;
800 inode->i_mapping->a_ops = &xfs_address_space_operations;
801 break;
802 case S_IFDIR:
803 if (xfs_sb_version_hasasciici(&XFS_M(inode->i_sb)->m_sb))
804 inode->i_op = &xfs_dir_ci_inode_operations;
805 else
806 inode->i_op = &xfs_dir_inode_operations;
807 inode->i_fop = &xfs_dir_file_operations;
808 break;
809 case S_IFLNK:
810 inode->i_op = &xfs_symlink_inode_operations;
811 if (!(ip->i_df.if_flags & XFS_IFINLINE))
812 inode->i_mapping->a_ops = &xfs_address_space_operations;
813 break;
814 default:
815 inode->i_op = &xfs_inode_operations;
816 init_special_inode(inode, inode->i_mode, inode->i_rdev);
817 break;
818 }
819
820 xfs_iflags_clear(ip, XFS_INEW);
821 barrier();
822
823 unlock_new_inode(inode);
824}