blob: 27a3658b830f8cdd294820ffddde092ce441574b [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>
Eric Sandeenf35642e2008-11-28 14:23:35 +110049#include <linux/fiemap.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090050#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Nathan Scott4aeb6642005-11-02 11:43:58 +110052/*
Christoph Hellwigf9581b12009-10-06 20:29:26 +000053 * Bring the timestamps in the XFS inode uptodate.
54 *
55 * Used before writing the inode to disk.
Christoph Hellwig42fe2b12006-01-11 15:35:17 +110056 */
57void
Christoph Hellwigf9581b12009-10-06 20:29:26 +000058xfs_synchronize_times(
Christoph Hellwig42fe2b12006-01-11 15:35:17 +110059 xfs_inode_t *ip)
60{
David Chinner01651642008-08-13 15:45:15 +100061 struct inode *inode = VFS_I(ip);
Christoph Hellwig42fe2b12006-01-11 15:35:17 +110062
Christoph Hellwigf9581b12009-10-06 20:29:26 +000063 ip->i_d.di_atime.t_sec = (__int32_t)inode->i_atime.tv_sec;
64 ip->i_d.di_atime.t_nsec = (__int32_t)inode->i_atime.tv_nsec;
65 ip->i_d.di_ctime.t_sec = (__int32_t)inode->i_ctime.tv_sec;
66 ip->i_d.di_ctime.t_nsec = (__int32_t)inode->i_ctime.tv_nsec;
67 ip->i_d.di_mtime.t_sec = (__int32_t)inode->i_mtime.tv_sec;
68 ip->i_d.di_mtime.t_nsec = (__int32_t)inode->i_mtime.tv_nsec;
Christoph Hellwig42fe2b12006-01-11 15:35:17 +110069}
70
71/*
David Chinnerbf904242008-10-30 17:36:14 +110072 * If the linux inode is valid, mark it dirty.
Lucas De Marchi25985ed2011-03-30 22:57:33 -030073 * Used when committing a dirty inode into a transaction so that
David Chinner5d51eff2007-11-23 16:29:18 +110074 * the inode will get written back by the linux code
75 */
76void
77xfs_mark_inode_dirty_sync(
78 xfs_inode_t *ip)
79{
David Chinner01651642008-08-13 15:45:15 +100080 struct inode *inode = VFS_I(ip);
David Chinner5d51eff2007-11-23 16:29:18 +110081
Al Viroa4ffdde2010-06-02 17:38:30 -040082 if (!(inode->i_state & (I_WILL_FREE|I_FREEING)))
Christoph Hellwigaf048192008-03-06 13:46:43 +110083 mark_inode_dirty_sync(inode);
David Chinner5d51eff2007-11-23 16:29:18 +110084}
85
Christoph Hellwig66d834e2010-02-15 09:44:49 +000086void
87xfs_mark_inode_dirty(
88 xfs_inode_t *ip)
89{
90 struct inode *inode = VFS_I(ip);
91
Al Viroa4ffdde2010-06-02 17:38:30 -040092 if (!(inode->i_state & (I_WILL_FREE|I_FREEING)))
Christoph Hellwig66d834e2010-02-15 09:44:49 +000093 mark_inode_dirty(inode);
94}
95
Mimi Zohar9d8f13b2011-06-06 15:29:25 -040096
97int xfs_initxattrs(struct inode *inode, const struct xattr *xattr_array,
98 void *fs_info)
99{
100 const struct xattr *xattr;
101 struct xfs_inode *ip = XFS_I(inode);
102 int error = 0;
103
104 for (xattr = xattr_array; xattr->name != NULL; xattr++) {
105 error = xfs_attr_set(ip, xattr->name, xattr->value,
106 xattr->value_len, ATTR_SECURE);
107 if (error < 0)
108 break;
109 }
110 return error;
111}
112
David Chinner5d51eff2007-11-23 16:29:18 +1100113/*
Nathan Scott446ada42006-01-11 15:35:44 +1100114 * Hook in SELinux. This is not quite correct yet, what we really need
115 * here (as we do for default ACLs) is a mechanism by which creation of
116 * these attrs can be journalled at inode creation time (along with the
117 * inode, of course, such that log replay can't cause these to be lost).
118 */
Mimi Zohar9d8f13b2011-06-06 15:29:25 -0400119
Nathan Scott446ada42006-01-11 15:35:44 +1100120STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100121xfs_init_security(
Christoph Hellwigaf048192008-03-06 13:46:43 +1100122 struct inode *inode,
Eric Paris2a7dba32011-02-01 11:05:39 -0500123 struct inode *dir,
124 const struct qstr *qstr)
Nathan Scott446ada42006-01-11 15:35:44 +1100125{
Mimi Zohar9d8f13b2011-06-06 15:29:25 -0400126 return security_inode_init_security(inode, dir, qstr,
127 &xfs_initxattrs, NULL);
Nathan Scott446ada42006-01-11 15:35:44 +1100128}
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))
Al Viroc46a1312011-06-05 11:12:31 +0000186 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 Viro7de9c6e2010-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
Eric Sandeenf35642e2008-11-28 14:23:35 +1100509#define XFS_FIEMAP_FLAGS (FIEMAP_FLAG_SYNC|FIEMAP_FLAG_XATTR)
510
511/*
512 * Call fiemap helper to fill in user data.
513 * Returns positive errors to xfs_getbmap.
514 */
515STATIC int
516xfs_fiemap_format(
517 void **arg,
518 struct getbmapx *bmv,
519 int *full)
520{
521 int error;
522 struct fiemap_extent_info *fieinfo = *arg;
523 u32 fiemap_flags = 0;
524 u64 logical, physical, length;
525
526 /* Do nothing for a hole */
527 if (bmv->bmv_block == -1LL)
528 return 0;
529
530 logical = BBTOB(bmv->bmv_offset);
531 physical = BBTOB(bmv->bmv_block);
532 length = BBTOB(bmv->bmv_length);
533
534 if (bmv->bmv_oflags & BMV_OF_PREALLOC)
535 fiemap_flags |= FIEMAP_EXTENT_UNWRITTEN;
536 else if (bmv->bmv_oflags & BMV_OF_DELALLOC) {
537 fiemap_flags |= FIEMAP_EXTENT_DELALLOC;
538 physical = 0; /* no block yet */
539 }
540 if (bmv->bmv_oflags & BMV_OF_LAST)
541 fiemap_flags |= FIEMAP_EXTENT_LAST;
542
543 error = fiemap_fill_next_extent(fieinfo, logical, physical,
544 length, fiemap_flags);
545 if (error > 0) {
546 error = 0;
547 *full = 1; /* user array now full */
548 }
549
550 return -error;
551}
552
553STATIC int
554xfs_vn_fiemap(
555 struct inode *inode,
556 struct fiemap_extent_info *fieinfo,
557 u64 start,
558 u64 length)
559{
560 xfs_inode_t *ip = XFS_I(inode);
561 struct getbmapx bm;
562 int error;
563
564 error = fiemap_check_flags(fieinfo, XFS_FIEMAP_FLAGS);
565 if (error)
566 return error;
567
568 /* Set up bmap header for xfs internal routine */
569 bm.bmv_offset = BTOBB(start);
570 /* Special case for whole file */
571 if (length == FIEMAP_MAX_OFFSET)
572 bm.bmv_length = -1LL;
573 else
574 bm.bmv_length = BTOBB(length);
575
Eric Sandeen97db39a2009-07-26 21:52:01 -0500576 /* We add one because in getbmap world count includes the header */
Tao Ma2d1ff3c2010-04-29 15:13:56 +1000577 bm.bmv_count = !fieinfo->fi_extents_max ? MAXEXTNUM :
578 fieinfo->fi_extents_max + 1;
579 bm.bmv_count = min_t(__s32, bm.bmv_count,
580 (PAGE_SIZE * 16 / sizeof(struct getbmapx)));
Tao Ma9af25462010-08-30 02:44:03 +0000581 bm.bmv_iflags = BMV_IF_PREALLOC | BMV_IF_NO_HOLES;
Eric Sandeenf35642e2008-11-28 14:23:35 +1100582 if (fieinfo->fi_flags & FIEMAP_FLAG_XATTR)
583 bm.bmv_iflags |= BMV_IF_ATTRFORK;
584 if (!(fieinfo->fi_flags & FIEMAP_FLAG_SYNC))
585 bm.bmv_iflags |= BMV_IF_DELALLOC;
586
587 error = xfs_getbmap(ip, &bm, xfs_fiemap_format, fieinfo);
588 if (error)
589 return -error;
590
591 return 0;
592}
593
Christoph Hellwig41be8be2008-08-13 16:23:13 +1000594static const struct inode_operations xfs_inode_operations = {
Linus Torvalds18f4c642009-08-28 12:29:03 -0700595 .check_acl = xfs_check_acl,
Nathan Scott416c6d52006-03-14 14:00:51 +1100596 .getattr = xfs_vn_getattr,
597 .setattr = xfs_vn_setattr,
Lachlan McIlroy0ec58512008-06-23 13:23:01 +1000598 .setxattr = generic_setxattr,
599 .getxattr = generic_getxattr,
600 .removexattr = generic_removexattr,
Nathan Scott416c6d52006-03-14 14:00:51 +1100601 .listxattr = xfs_vn_listxattr,
Eric Sandeenf35642e2008-11-28 14:23:35 +1100602 .fiemap = xfs_vn_fiemap,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603};
604
Christoph Hellwig41be8be2008-08-13 16:23:13 +1000605static const struct inode_operations xfs_dir_inode_operations = {
Nathan Scott416c6d52006-03-14 14:00:51 +1100606 .create = xfs_vn_create,
607 .lookup = xfs_vn_lookup,
608 .link = xfs_vn_link,
609 .unlink = xfs_vn_unlink,
610 .symlink = xfs_vn_symlink,
611 .mkdir = xfs_vn_mkdir,
Christoph Hellwig8f112e32008-06-23 13:25:17 +1000612 /*
613 * Yes, XFS uses the same method for rmdir and unlink.
614 *
615 * There are some subtile differences deeper in the code,
616 * but we use S_ISDIR to check for those.
617 */
618 .rmdir = xfs_vn_unlink,
Nathan Scott416c6d52006-03-14 14:00:51 +1100619 .mknod = xfs_vn_mknod,
620 .rename = xfs_vn_rename,
Linus Torvalds18f4c642009-08-28 12:29:03 -0700621 .check_acl = xfs_check_acl,
Nathan Scott416c6d52006-03-14 14:00:51 +1100622 .getattr = xfs_vn_getattr,
623 .setattr = xfs_vn_setattr,
Lachlan McIlroy0ec58512008-06-23 13:23:01 +1000624 .setxattr = generic_setxattr,
625 .getxattr = generic_getxattr,
626 .removexattr = generic_removexattr,
Nathan Scott416c6d52006-03-14 14:00:51 +1100627 .listxattr = xfs_vn_listxattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628};
629
Christoph Hellwig41be8be2008-08-13 16:23:13 +1000630static const struct inode_operations xfs_dir_ci_inode_operations = {
Barry Naujok384f3ce2008-05-21 16:58:22 +1000631 .create = xfs_vn_create,
632 .lookup = xfs_vn_ci_lookup,
633 .link = xfs_vn_link,
634 .unlink = xfs_vn_unlink,
635 .symlink = xfs_vn_symlink,
636 .mkdir = xfs_vn_mkdir,
Christoph Hellwig8f112e32008-06-23 13:25:17 +1000637 /*
638 * Yes, XFS uses the same method for rmdir and unlink.
639 *
640 * There are some subtile differences deeper in the code,
641 * but we use S_ISDIR to check for those.
642 */
643 .rmdir = xfs_vn_unlink,
Barry Naujok384f3ce2008-05-21 16:58:22 +1000644 .mknod = xfs_vn_mknod,
645 .rename = xfs_vn_rename,
Linus Torvalds18f4c642009-08-28 12:29:03 -0700646 .check_acl = xfs_check_acl,
Barry Naujok384f3ce2008-05-21 16:58:22 +1000647 .getattr = xfs_vn_getattr,
648 .setattr = xfs_vn_setattr,
Lachlan McIlroy0ec58512008-06-23 13:23:01 +1000649 .setxattr = generic_setxattr,
650 .getxattr = generic_getxattr,
651 .removexattr = generic_removexattr,
Barry Naujok384f3ce2008-05-21 16:58:22 +1000652 .listxattr = xfs_vn_listxattr,
Barry Naujok384f3ce2008-05-21 16:58:22 +1000653};
654
Christoph Hellwig41be8be2008-08-13 16:23:13 +1000655static const struct inode_operations xfs_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 .readlink = generic_readlink,
Nathan Scott416c6d52006-03-14 14:00:51 +1100657 .follow_link = xfs_vn_follow_link,
658 .put_link = xfs_vn_put_link,
Linus Torvalds18f4c642009-08-28 12:29:03 -0700659 .check_acl = xfs_check_acl,
Nathan Scott416c6d52006-03-14 14:00:51 +1100660 .getattr = xfs_vn_getattr,
661 .setattr = xfs_vn_setattr,
Lachlan McIlroy0ec58512008-06-23 13:23:01 +1000662 .setxattr = generic_setxattr,
663 .getxattr = generic_getxattr,
664 .removexattr = generic_removexattr,
Nathan Scott416c6d52006-03-14 14:00:51 +1100665 .listxattr = xfs_vn_listxattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666};
Christoph Hellwig41be8be2008-08-13 16:23:13 +1000667
668STATIC void
669xfs_diflags_to_iflags(
670 struct inode *inode,
671 struct xfs_inode *ip)
672{
673 if (ip->i_d.di_flags & XFS_DIFLAG_IMMUTABLE)
674 inode->i_flags |= S_IMMUTABLE;
675 else
676 inode->i_flags &= ~S_IMMUTABLE;
677 if (ip->i_d.di_flags & XFS_DIFLAG_APPEND)
678 inode->i_flags |= S_APPEND;
679 else
680 inode->i_flags &= ~S_APPEND;
681 if (ip->i_d.di_flags & XFS_DIFLAG_SYNC)
682 inode->i_flags |= S_SYNC;
683 else
684 inode->i_flags &= ~S_SYNC;
685 if (ip->i_d.di_flags & XFS_DIFLAG_NOATIME)
686 inode->i_flags |= S_NOATIME;
687 else
688 inode->i_flags &= ~S_NOATIME;
689}
690
691/*
692 * Initialize the Linux inode, set up the operation vectors and
693 * unlock the inode.
694 *
695 * When reading existing inodes from disk this is called directly
696 * from xfs_iget, when creating a new inode it is called from
697 * xfs_ialloc after setting up the inode.
David Chinnerbf904242008-10-30 17:36:14 +1100698 *
699 * We are always called with an uninitialised linux inode here.
700 * We need to initialise the necessary fields and take a reference
701 * on it.
Christoph Hellwig41be8be2008-08-13 16:23:13 +1000702 */
703void
704xfs_setup_inode(
705 struct xfs_inode *ip)
706{
David Chinnerbf904242008-10-30 17:36:14 +1100707 struct inode *inode = &ip->i_vnode;
708
709 inode->i_ino = ip->i_ino;
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100710 inode->i_state = I_NEW;
Christoph Hellwig646ec462010-10-23 07:15:32 -0400711
712 inode_sb_list_add(inode);
Christoph Hellwigc6f6cd02010-11-06 11:43:08 +0000713 /* make the inode look hashed for the writeback code */
714 hlist_add_fake(&inode->i_hash);
Christoph Hellwig41be8be2008-08-13 16:23:13 +1000715
716 inode->i_mode = ip->i_d.di_mode;
717 inode->i_nlink = ip->i_d.di_nlink;
718 inode->i_uid = ip->i_d.di_uid;
719 inode->i_gid = ip->i_d.di_gid;
720
721 switch (inode->i_mode & S_IFMT) {
722 case S_IFBLK:
723 case S_IFCHR:
724 inode->i_rdev =
725 MKDEV(sysv_major(ip->i_df.if_u2.if_rdev) & 0x1ff,
726 sysv_minor(ip->i_df.if_u2.if_rdev));
727 break;
728 default:
729 inode->i_rdev = 0;
730 break;
731 }
732
733 inode->i_generation = ip->i_d.di_gen;
734 i_size_write(inode, ip->i_d.di_size);
735 inode->i_atime.tv_sec = ip->i_d.di_atime.t_sec;
736 inode->i_atime.tv_nsec = ip->i_d.di_atime.t_nsec;
737 inode->i_mtime.tv_sec = ip->i_d.di_mtime.t_sec;
738 inode->i_mtime.tv_nsec = ip->i_d.di_mtime.t_nsec;
739 inode->i_ctime.tv_sec = ip->i_d.di_ctime.t_sec;
740 inode->i_ctime.tv_nsec = ip->i_d.di_ctime.t_nsec;
741 xfs_diflags_to_iflags(inode, ip);
Christoph Hellwig41be8be2008-08-13 16:23:13 +1000742
743 switch (inode->i_mode & S_IFMT) {
744 case S_IFREG:
745 inode->i_op = &xfs_inode_operations;
746 inode->i_fop = &xfs_file_operations;
747 inode->i_mapping->a_ops = &xfs_address_space_operations;
748 break;
749 case S_IFDIR:
750 if (xfs_sb_version_hasasciici(&XFS_M(inode->i_sb)->m_sb))
751 inode->i_op = &xfs_dir_ci_inode_operations;
752 else
753 inode->i_op = &xfs_dir_inode_operations;
754 inode->i_fop = &xfs_dir_file_operations;
755 break;
756 case S_IFLNK:
757 inode->i_op = &xfs_symlink_inode_operations;
758 if (!(ip->i_df.if_flags & XFS_IFINLINE))
759 inode->i_mapping->a_ops = &xfs_address_space_operations;
760 break;
761 default:
762 inode->i_op = &xfs_inode_operations;
763 init_special_inode(inode, inode->i_mode, inode->i_rdev);
764 break;
765 }
766
767 xfs_iflags_clear(ip, XFS_INEW);
768 barrier();
769
770 unlock_new_inode(inode);
771}