blob: 536b81e63a3d8e397d8e487192f938809ee26923 [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
David Chinnerbf904242008-10-30 17:36:14 +110083 if (!(inode->i_state & (I_WILL_FREE|I_FREEING|I_CLEAR)))
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
93 if (!(inode->i_state & (I_WILL_FREE|I_FREEING|I_CLEAR)))
94 mark_inode_dirty(inode);
95}
96
David Chinner5d51eff2007-11-23 16:29:18 +110097/*
Nathan Scott4aeb6642005-11-02 11:43:58 +110098 * Change the requested timestamp in the given inode.
99 * We don't lock across timestamp updates, and we don't log them but
100 * we do record the fact that there is dirty information in core.
Nathan Scott4aeb6642005-11-02 11:43:58 +1100101 */
102void
103xfs_ichgtime(
104 xfs_inode_t *ip,
105 int flags)
106{
David Chinnere4f75292008-08-13 16:00:45 +1000107 struct inode *inode = VFS_I(ip);
Nathan Scott4aeb6642005-11-02 11:43:58 +1100108 timespec_t tv;
Christoph Hellwig8e5975c2008-08-13 16:45:13 +1000109 int sync_it = 0;
Nathan Scott4aeb6642005-11-02 11:43:58 +1100110
Christoph Hellwig8e5975c2008-08-13 16:45:13 +1000111 tv = current_fs_time(inode->i_sb);
112
113 if ((flags & XFS_ICHGTIME_MOD) &&
114 !timespec_equal(&inode->i_mtime, &tv)) {
Nathan Scott4aeb6642005-11-02 11:43:58 +1100115 inode->i_mtime = tv;
Christoph Hellwig8e5975c2008-08-13 16:45:13 +1000116 sync_it = 1;
Nathan Scott4aeb6642005-11-02 11:43:58 +1100117 }
Christoph Hellwig8e5975c2008-08-13 16:45:13 +1000118 if ((flags & XFS_ICHGTIME_CHG) &&
119 !timespec_equal(&inode->i_ctime, &tv)) {
Nathan Scott4aeb6642005-11-02 11:43:58 +1100120 inode->i_ctime = tv;
Christoph Hellwig8e5975c2008-08-13 16:45:13 +1000121 sync_it = 1;
Nathan Scott4aeb6642005-11-02 11:43:58 +1100122 }
123
124 /*
Christoph Hellwigf9581b12009-10-06 20:29:26 +0000125 * Update complete - now make sure everyone knows that the inode
126 * is dirty.
Nathan Scott4aeb6642005-11-02 11:43:58 +1100127 */
Christoph Hellwigf9581b12009-10-06 20:29:26 +0000128 if (sync_it)
David Chinner94b97e32008-10-30 17:21:30 +1100129 xfs_mark_inode_dirty_sync(ip);
Nathan Scott4aeb6642005-11-02 11:43:58 +1100130}
131
132/*
Nathan Scott446ada42006-01-11 15:35:44 +1100133 * Hook in SELinux. This is not quite correct yet, what we really need
134 * here (as we do for default ACLs) is a mechanism by which creation of
135 * these attrs can be journalled at inode creation time (along with the
136 * inode, of course, such that log replay can't cause these to be lost).
137 */
138STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100139xfs_init_security(
Christoph Hellwigaf048192008-03-06 13:46:43 +1100140 struct inode *inode,
Nathan Scott446ada42006-01-11 15:35:44 +1100141 struct inode *dir)
142{
Christoph Hellwigaf048192008-03-06 13:46:43 +1100143 struct xfs_inode *ip = XFS_I(inode);
Nathan Scott446ada42006-01-11 15:35:44 +1100144 size_t length;
145 void *value;
Dave Chinnera9273ca2010-01-20 10:47:48 +1100146 unsigned char *name;
Nathan Scott446ada42006-01-11 15:35:44 +1100147 int error;
148
Dave Chinnera9273ca2010-01-20 10:47:48 +1100149 error = security_inode_init_security(inode, dir, (char **)&name,
Christoph Hellwigaf048192008-03-06 13:46:43 +1100150 &value, &length);
Nathan Scott446ada42006-01-11 15:35:44 +1100151 if (error) {
152 if (error == -EOPNOTSUPP)
153 return 0;
154 return -error;
155 }
156
Christoph Hellwigaf048192008-03-06 13:46:43 +1100157 error = xfs_attr_set(ip, name, value, length, ATTR_SECURE);
Nathan Scott446ada42006-01-11 15:35:44 +1100158
159 kfree(name);
160 kfree(value);
161 return error;
162}
163
Barry Naujok556b8b12008-04-10 12:22:07 +1000164static void
165xfs_dentry_to_name(
166 struct xfs_name *namep,
167 struct dentry *dentry)
168{
169 namep->name = dentry->d_name.name;
170 namep->len = dentry->d_name.len;
171}
172
David Chinner7989cb82007-02-10 18:34:56 +1100173STATIC void
Nathan Scott416c6d52006-03-14 14:00:51 +1100174xfs_cleanup_inode(
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000175 struct inode *dir,
Christoph Hellwigaf048192008-03-06 13:46:43 +1100176 struct inode *inode,
Christoph Hellwig8f112e32008-06-23 13:25:17 +1000177 struct dentry *dentry)
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100178{
Barry Naujok556b8b12008-04-10 12:22:07 +1000179 struct xfs_name teardown;
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100180
181 /* Oh, the horror.
Nathan Scott220b5282006-03-14 13:33:36 +1100182 * If we can't add the ACL or we fail in
Nathan Scott416c6d52006-03-14 14:00:51 +1100183 * xfs_init_security we must back out.
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100184 * ENOSPC can hit here, among other things.
185 */
Barry Naujok556b8b12008-04-10 12:22:07 +1000186 xfs_dentry_to_name(&teardown, dentry);
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100187
Christoph Hellwig8f112e32008-06-23 13:25:17 +1000188 xfs_remove(XFS_I(dir), &teardown, XFS_I(inode));
Christoph Hellwigaf048192008-03-06 13:46:43 +1100189 iput(inode);
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100190}
191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100193xfs_vn_mknod(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 struct inode *dir,
195 struct dentry *dentry,
196 int mode,
197 dev_t rdev)
198{
Christoph Hellwigdb0bb7b2008-03-06 13:44:35 +1100199 struct inode *inode;
Christoph Hellwig979ebab2008-03-06 13:46:05 +1100200 struct xfs_inode *ip = NULL;
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200201 struct posix_acl *default_acl = NULL;
Barry Naujok556b8b12008-04-10 12:22:07 +1000202 struct xfs_name name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 int error;
204
205 /*
206 * Irix uses Missed'em'V split, but doesn't want to see
207 * the upper 5 bits of (14bit) major.
208 */
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100209 if (S_ISCHR(mode) || S_ISBLK(mode)) {
210 if (unlikely(!sysv_valid_dev(rdev) || MAJOR(rdev) & ~0x1ff))
211 return -EINVAL;
212 rdev = sysv_encode_dev(rdev);
213 } else {
214 rdev = 0;
215 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200217 if (IS_POSIXACL(dir)) {
218 default_acl = xfs_get_acl(dir, ACL_TYPE_DEFAULT);
219 if (IS_ERR(default_acl))
220 return -PTR_ERR(default_acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Christoph Hellwige83f1eb2009-06-12 11:19:11 -0400222 if (!default_acl)
223 mode &= ~current_umask();
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200224 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100226 xfs_dentry_to_name(&name, dentry);
227 error = xfs_create(XFS_I(dir), &name, mode, rdev, &ip, NULL);
Christoph Hellwigdb0bb7b2008-03-06 13:44:35 +1100228 if (unlikely(error))
229 goto out_free_acl;
Nathan Scott446ada42006-01-11 15:35:44 +1100230
David Chinner01651642008-08-13 15:45:15 +1000231 inode = VFS_I(ip);
Christoph Hellwig979ebab2008-03-06 13:46:05 +1100232
233 error = xfs_init_security(inode, dir);
Christoph Hellwigdb0bb7b2008-03-06 13:44:35 +1100234 if (unlikely(error))
235 goto out_cleanup_inode;
236
237 if (default_acl) {
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200238 error = -xfs_inherit_acl(inode, default_acl);
Christoph Hellwigdb0bb7b2008-03-06 13:44:35 +1100239 if (unlikely(error))
240 goto out_cleanup_inode;
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200241 posix_acl_release(default_acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 }
243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Christoph Hellwigdb0bb7b2008-03-06 13:44:35 +1100245 d_instantiate(dentry, inode);
Christoph Hellwigdb0bb7b2008-03-06 13:44:35 +1100246 return -error;
247
248 out_cleanup_inode:
Christoph Hellwig8f112e32008-06-23 13:25:17 +1000249 xfs_cleanup_inode(dir, inode, dentry);
Christoph Hellwigdb0bb7b2008-03-06 13:44:35 +1100250 out_free_acl:
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200251 posix_acl_release(default_acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 return -error;
253}
254
255STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100256xfs_vn_create(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 struct inode *dir,
258 struct dentry *dentry,
259 int mode,
260 struct nameidata *nd)
261{
Nathan Scott416c6d52006-03-14 14:00:51 +1100262 return xfs_vn_mknod(dir, dentry, mode, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263}
264
265STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100266xfs_vn_mkdir(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 struct inode *dir,
268 struct dentry *dentry,
269 int mode)
270{
Nathan Scott416c6d52006-03-14 14:00:51 +1100271 return xfs_vn_mknod(dir, dentry, mode|S_IFDIR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272}
273
274STATIC struct dentry *
Nathan Scott416c6d52006-03-14 14:00:51 +1100275xfs_vn_lookup(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 struct inode *dir,
277 struct dentry *dentry,
278 struct nameidata *nd)
279{
Christoph Hellwigef1f5e72008-03-06 13:46:25 +1100280 struct xfs_inode *cip;
Barry Naujok556b8b12008-04-10 12:22:07 +1000281 struct xfs_name name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 int error;
283
284 if (dentry->d_name.len >= MAXNAMELEN)
285 return ERR_PTR(-ENAMETOOLONG);
286
Barry Naujok556b8b12008-04-10 12:22:07 +1000287 xfs_dentry_to_name(&name, dentry);
Barry Naujok384f3ce2008-05-21 16:58:22 +1000288 error = xfs_lookup(XFS_I(dir), &name, &cip, NULL);
Nathan Scott67fcaa72006-06-09 17:00:52 +1000289 if (unlikely(error)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 if (unlikely(error != ENOENT))
291 return ERR_PTR(-error);
292 d_add(dentry, NULL);
293 return NULL;
294 }
295
David Chinner01651642008-08-13 15:45:15 +1000296 return d_splice_alias(VFS_I(cip), dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297}
298
Barry Naujok384f3ce2008-05-21 16:58:22 +1000299STATIC struct dentry *
300xfs_vn_ci_lookup(
301 struct inode *dir,
302 struct dentry *dentry,
303 struct nameidata *nd)
304{
305 struct xfs_inode *ip;
306 struct xfs_name xname;
307 struct xfs_name ci_name;
308 struct qstr dname;
309 int error;
310
311 if (dentry->d_name.len >= MAXNAMELEN)
312 return ERR_PTR(-ENAMETOOLONG);
313
314 xfs_dentry_to_name(&xname, dentry);
315 error = xfs_lookup(XFS_I(dir), &xname, &ip, &ci_name);
316 if (unlikely(error)) {
317 if (unlikely(error != ENOENT))
318 return ERR_PTR(-error);
Barry Naujok866d5dc2008-05-22 17:21:40 +1000319 /*
320 * call d_add(dentry, NULL) here when d_drop_negative_children
321 * is called in xfs_vn_mknod (ie. allow negative dentries
322 * with CI filesystems).
323 */
Barry Naujok384f3ce2008-05-21 16:58:22 +1000324 return NULL;
325 }
326
327 /* if exact match, just splice and exit */
328 if (!ci_name.name)
David Chinner01651642008-08-13 15:45:15 +1000329 return d_splice_alias(VFS_I(ip), dentry);
Barry Naujok384f3ce2008-05-21 16:58:22 +1000330
331 /* else case-insensitive match... */
332 dname.name = ci_name.name;
333 dname.len = ci_name.len;
Christoph Hellwige45b5902008-08-07 23:49:07 +0200334 dentry = d_add_ci(dentry, VFS_I(ip), &dname);
Barry Naujok384f3ce2008-05-21 16:58:22 +1000335 kmem_free(ci_name.name);
336 return dentry;
337}
338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100340xfs_vn_link(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 struct dentry *old_dentry,
342 struct inode *dir,
343 struct dentry *dentry)
344{
Christoph Hellwigd9424b32008-12-03 12:20:27 +0100345 struct inode *inode = old_dentry->d_inode;
Barry Naujok556b8b12008-04-10 12:22:07 +1000346 struct xfs_name name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 int error;
348
Barry Naujok556b8b12008-04-10 12:22:07 +1000349 xfs_dentry_to_name(&name, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Barry Naujok556b8b12008-04-10 12:22:07 +1000351 error = xfs_link(XFS_I(dir), XFS_I(inode), &name);
Christoph Hellwigd9424b32008-12-03 12:20:27 +0100352 if (unlikely(error))
Christoph Hellwiga3da7892008-03-06 13:46:12 +1100353 return -error;
Christoph Hellwiga3da7892008-03-06 13:46:12 +1100354
Christoph Hellwigd9424b32008-12-03 12:20:27 +0100355 atomic_inc(&inode->i_count);
Christoph Hellwiga3da7892008-03-06 13:46:12 +1100356 d_instantiate(dentry, inode);
357 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358}
359
360STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100361xfs_vn_unlink(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 struct inode *dir,
363 struct dentry *dentry)
364{
Barry Naujok556b8b12008-04-10 12:22:07 +1000365 struct xfs_name name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 int error;
367
Barry Naujok556b8b12008-04-10 12:22:07 +1000368 xfs_dentry_to_name(&name, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
Christoph Hellwige5700702008-06-23 13:25:25 +1000370 error = -xfs_remove(XFS_I(dir), &name, XFS_I(dentry->d_inode));
371 if (error)
372 return error;
373
374 /*
375 * With unlink, the VFS makes the dentry "negative": no inode,
376 * but still hashed. This is incompatible with case-insensitive
377 * mode, so invalidate (unhash) the dentry in CI-mode.
378 */
379 if (xfs_sb_version_hasasciici(&XFS_M(dir->i_sb)->m_sb))
380 d_invalidate(dentry);
381 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382}
383
384STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100385xfs_vn_symlink(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 struct inode *dir,
387 struct dentry *dentry,
388 const char *symname)
389{
Christoph Hellwig3937be52008-03-06 13:46:19 +1100390 struct inode *inode;
391 struct xfs_inode *cip = NULL;
Barry Naujok556b8b12008-04-10 12:22:07 +1000392 struct xfs_name name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 int error;
Christoph Hellwig3e5daf02007-10-11 18:09:12 +1000394 mode_t mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
Christoph Hellwig3e5daf02007-10-11 18:09:12 +1000396 mode = S_IFLNK |
Al Viroce3b0f82009-03-29 19:08:22 -0400397 (irix_symlink_mode ? 0777 & ~current_umask() : S_IRWXUGO);
Barry Naujok556b8b12008-04-10 12:22:07 +1000398 xfs_dentry_to_name(&name, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
Barry Naujok556b8b12008-04-10 12:22:07 +1000400 error = xfs_symlink(XFS_I(dir), &name, symname, mode, &cip, NULL);
Christoph Hellwig3937be52008-03-06 13:46:19 +1100401 if (unlikely(error))
402 goto out;
403
David Chinner01651642008-08-13 15:45:15 +1000404 inode = VFS_I(cip);
Christoph Hellwig3937be52008-03-06 13:46:19 +1100405
406 error = xfs_init_security(inode, dir);
407 if (unlikely(error))
408 goto out_cleanup_inode;
409
410 d_instantiate(dentry, inode);
Christoph Hellwig3937be52008-03-06 13:46:19 +1100411 return 0;
412
413 out_cleanup_inode:
Christoph Hellwig8f112e32008-06-23 13:25:17 +1000414 xfs_cleanup_inode(dir, inode, dentry);
Christoph Hellwig3937be52008-03-06 13:46:19 +1100415 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 return -error;
417}
418
419STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100420xfs_vn_rename(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 struct inode *odir,
422 struct dentry *odentry,
423 struct inode *ndir,
424 struct dentry *ndentry)
425{
426 struct inode *new_inode = ndentry->d_inode;
Barry Naujok556b8b12008-04-10 12:22:07 +1000427 struct xfs_name oname;
428 struct xfs_name nname;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
Barry Naujok556b8b12008-04-10 12:22:07 +1000430 xfs_dentry_to_name(&oname, odentry);
431 xfs_dentry_to_name(&nname, ndentry);
432
Christoph Hellwige5700702008-06-23 13:25:25 +1000433 return -xfs_rename(XFS_I(odir), &oname, XFS_I(odentry->d_inode),
Christoph Hellwigcfa853e2008-04-22 17:34:06 +1000434 XFS_I(ndir), &nname, new_inode ?
435 XFS_I(new_inode) : NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436}
437
438/*
439 * careful here - this function can get called recursively, so
440 * we need to be very careful about how much stack we use.
441 * uio is kmalloced for this reason...
442 */
Al Viro008b1502005-08-20 00:17:39 +0100443STATIC void *
Nathan Scott416c6d52006-03-14 14:00:51 +1100444xfs_vn_follow_link(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 struct dentry *dentry,
446 struct nameidata *nd)
447{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 char *link;
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000449 int error = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
Panagiotis Issarisf52720c2006-09-27 01:49:39 -0700451 link = kmalloc(MAXPATHLEN+1, GFP_KERNEL);
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000452 if (!link)
453 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000455 error = -xfs_readlink(XFS_I(dentry->d_inode), link);
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000456 if (unlikely(error))
457 goto out_kfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
459 nd_set_link(nd, link);
Al Viro008b1502005-08-20 00:17:39 +0100460 return NULL;
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000461
462 out_kfree:
463 kfree(link);
464 out_err:
465 nd_set_link(nd, ERR_PTR(error));
466 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467}
468
Nathan Scottcde410a2005-09-05 11:47:01 +1000469STATIC void
Nathan Scott416c6d52006-03-14 14:00:51 +1100470xfs_vn_put_link(
Nathan Scottcde410a2005-09-05 11:47:01 +1000471 struct dentry *dentry,
472 struct nameidata *nd,
473 void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474{
Nathan Scottcde410a2005-09-05 11:47:01 +1000475 char *s = nd_get_link(nd);
476
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 if (!IS_ERR(s))
478 kfree(s);
479}
480
Christoph Hellwig45767582008-02-05 12:13:24 +1100481STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100482xfs_vn_getattr(
Christoph Hellwigc43f4082007-10-11 17:46:39 +1000483 struct vfsmount *mnt,
484 struct dentry *dentry,
485 struct kstat *stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486{
Christoph Hellwigc43f4082007-10-11 17:46:39 +1000487 struct inode *inode = dentry->d_inode;
488 struct xfs_inode *ip = XFS_I(inode);
489 struct xfs_mount *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
Christoph Hellwigcca28fb2010-06-24 11:57:09 +1000491 trace_xfs_getattr(ip);
Christoph Hellwigc43f4082007-10-11 17:46:39 +1000492
493 if (XFS_FORCED_SHUTDOWN(mp))
494 return XFS_ERROR(EIO);
495
496 stat->size = XFS_ISIZE(ip);
497 stat->dev = inode->i_sb->s_dev;
498 stat->mode = ip->i_d.di_mode;
499 stat->nlink = ip->i_d.di_nlink;
500 stat->uid = ip->i_d.di_uid;
501 stat->gid = ip->i_d.di_gid;
502 stat->ino = ip->i_ino;
Christoph Hellwigc43f4082007-10-11 17:46:39 +1000503 stat->atime = inode->i_atime;
Christoph Hellwigf9581b12009-10-06 20:29:26 +0000504 stat->mtime = inode->i_mtime;
505 stat->ctime = inode->i_ctime;
Christoph Hellwigc43f4082007-10-11 17:46:39 +1000506 stat->blocks =
507 XFS_FSB_TO_BB(mp, ip->i_d.di_nblocks + ip->i_delayed_blks);
508
509
510 switch (inode->i_mode & S_IFMT) {
511 case S_IFBLK:
512 case S_IFCHR:
513 stat->blksize = BLKDEV_IOSIZE;
514 stat->rdev = MKDEV(sysv_major(ip->i_df.if_u2.if_rdev) & 0x1ff,
515 sysv_minor(ip->i_df.if_u2.if_rdev));
516 break;
517 default:
Eric Sandeen71ddabb2007-11-23 16:29:42 +1100518 if (XFS_IS_REALTIME_INODE(ip)) {
Christoph Hellwigc43f4082007-10-11 17:46:39 +1000519 /*
520 * If the file blocks are being allocated from a
521 * realtime volume, then return the inode's realtime
522 * extent size or the realtime volume's extent size.
523 */
524 stat->blksize =
525 xfs_get_extsz_hint(ip) << mp->m_sb.sb_blocklog;
526 } else
527 stat->blksize = xfs_preferred_iosize(mp);
528 stat->rdev = 0;
529 break;
Nathan Scott69e23b92006-09-28 11:01:22 +1000530 }
Christoph Hellwigc43f4082007-10-11 17:46:39 +1000531
532 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533}
534
535STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100536xfs_vn_setattr(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 struct dentry *dentry,
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000538 struct iattr *iattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539{
Christoph Hellwigea5a3dc82008-10-30 18:27:48 +1100540 return -xfs_setattr(XFS_I(dentry->d_inode), iattr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541}
542
David Chinnerd87dd632008-04-10 12:21:46 +1000543/*
544 * block_truncate_page can return an error, but we can't propagate it
545 * at all here. Leave a complaint + stack trace in the syslog because
546 * this could be bad. If it is bad, we need to propagate the error further.
547 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548STATIC void
Nathan Scott416c6d52006-03-14 14:00:51 +1100549xfs_vn_truncate(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 struct inode *inode)
551{
David Chinnerd87dd632008-04-10 12:21:46 +1000552 int error;
553 error = block_truncate_page(inode->i_mapping, inode->i_size,
554 xfs_get_blocks);
555 WARN_ON(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556}
557
David Chinner3ed65262007-11-23 16:29:25 +1100558STATIC long
559xfs_vn_fallocate(
560 struct inode *inode,
561 int mode,
562 loff_t offset,
563 loff_t len)
564{
565 long error;
566 loff_t new_size = 0;
567 xfs_flock64_t bf;
568 xfs_inode_t *ip = XFS_I(inode);
569
570 /* preallocation on directories not yet supported */
571 error = -ENODEV;
572 if (S_ISDIR(inode->i_mode))
573 goto out_error;
574
575 bf.l_whence = 0;
576 bf.l_start = offset;
577 bf.l_len = len;
578
579 xfs_ilock(ip, XFS_IOLOCK_EXCL);
Dave Chinner07f1a4f2010-05-21 05:47:59 +0000580
581 /* check the new inode size is valid before allocating */
582 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
583 offset + len > i_size_read(inode)) {
584 new_size = offset + len;
585 error = inode_newsize_ok(inode, new_size);
586 if (error)
587 goto out_unlock;
588 }
589
Jason Gunthorpe44a743f2009-11-24 21:52:53 +0000590 error = -xfs_change_file_space(ip, XFS_IOC_RESVSP, &bf,
591 0, XFS_ATTR_NOLOCK);
Dave Chinner07f1a4f2010-05-21 05:47:59 +0000592 if (error)
593 goto out_unlock;
David Chinner3ed65262007-11-23 16:29:25 +1100594
595 /* Change file size if needed */
596 if (new_size) {
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000597 struct iattr iattr;
David Chinner3ed65262007-11-23 16:29:25 +1100598
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000599 iattr.ia_valid = ATTR_SIZE;
600 iattr.ia_size = new_size;
Jason Gunthorpe44a743f2009-11-24 21:52:53 +0000601 error = -xfs_setattr(ip, &iattr, XFS_ATTR_NOLOCK);
David Chinner3ed65262007-11-23 16:29:25 +1100602 }
603
Dave Chinner07f1a4f2010-05-21 05:47:59 +0000604out_unlock:
David Chinner3ed65262007-11-23 16:29:25 +1100605 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
606out_error:
607 return error;
608}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Eric Sandeenf35642e2008-11-28 14:23:35 +1100610#define XFS_FIEMAP_FLAGS (FIEMAP_FLAG_SYNC|FIEMAP_FLAG_XATTR)
611
612/*
613 * Call fiemap helper to fill in user data.
614 * Returns positive errors to xfs_getbmap.
615 */
616STATIC int
617xfs_fiemap_format(
618 void **arg,
619 struct getbmapx *bmv,
620 int *full)
621{
622 int error;
623 struct fiemap_extent_info *fieinfo = *arg;
624 u32 fiemap_flags = 0;
625 u64 logical, physical, length;
626
627 /* Do nothing for a hole */
628 if (bmv->bmv_block == -1LL)
629 return 0;
630
631 logical = BBTOB(bmv->bmv_offset);
632 physical = BBTOB(bmv->bmv_block);
633 length = BBTOB(bmv->bmv_length);
634
635 if (bmv->bmv_oflags & BMV_OF_PREALLOC)
636 fiemap_flags |= FIEMAP_EXTENT_UNWRITTEN;
637 else if (bmv->bmv_oflags & BMV_OF_DELALLOC) {
638 fiemap_flags |= FIEMAP_EXTENT_DELALLOC;
639 physical = 0; /* no block yet */
640 }
641 if (bmv->bmv_oflags & BMV_OF_LAST)
642 fiemap_flags |= FIEMAP_EXTENT_LAST;
643
644 error = fiemap_fill_next_extent(fieinfo, logical, physical,
645 length, fiemap_flags);
646 if (error > 0) {
647 error = 0;
648 *full = 1; /* user array now full */
649 }
650
651 return -error;
652}
653
654STATIC int
655xfs_vn_fiemap(
656 struct inode *inode,
657 struct fiemap_extent_info *fieinfo,
658 u64 start,
659 u64 length)
660{
661 xfs_inode_t *ip = XFS_I(inode);
662 struct getbmapx bm;
663 int error;
664
665 error = fiemap_check_flags(fieinfo, XFS_FIEMAP_FLAGS);
666 if (error)
667 return error;
668
669 /* Set up bmap header for xfs internal routine */
670 bm.bmv_offset = BTOBB(start);
671 /* Special case for whole file */
672 if (length == FIEMAP_MAX_OFFSET)
673 bm.bmv_length = -1LL;
674 else
675 bm.bmv_length = BTOBB(length);
676
Eric Sandeen97db39a2009-07-26 21:52:01 -0500677 /* We add one because in getbmap world count includes the header */
Tao Ma2d1ff3c2010-04-29 15:13:56 +1000678 bm.bmv_count = !fieinfo->fi_extents_max ? MAXEXTNUM :
679 fieinfo->fi_extents_max + 1;
680 bm.bmv_count = min_t(__s32, bm.bmv_count,
681 (PAGE_SIZE * 16 / sizeof(struct getbmapx)));
Eric Sandeenf35642e2008-11-28 14:23:35 +1100682 bm.bmv_iflags = BMV_IF_PREALLOC;
683 if (fieinfo->fi_flags & FIEMAP_FLAG_XATTR)
684 bm.bmv_iflags |= BMV_IF_ATTRFORK;
685 if (!(fieinfo->fi_flags & FIEMAP_FLAG_SYNC))
686 bm.bmv_iflags |= BMV_IF_DELALLOC;
687
688 error = xfs_getbmap(ip, &bm, xfs_fiemap_format, fieinfo);
689 if (error)
690 return -error;
691
692 return 0;
693}
694
Christoph Hellwig41be8be2008-08-13 16:23:13 +1000695static const struct inode_operations xfs_inode_operations = {
Linus Torvalds18f4c642009-08-28 12:29:03 -0700696 .check_acl = xfs_check_acl,
Nathan Scott416c6d52006-03-14 14:00:51 +1100697 .truncate = xfs_vn_truncate,
698 .getattr = xfs_vn_getattr,
699 .setattr = xfs_vn_setattr,
Lachlan McIlroy0ec58512008-06-23 13:23:01 +1000700 .setxattr = generic_setxattr,
701 .getxattr = generic_getxattr,
702 .removexattr = generic_removexattr,
Nathan Scott416c6d52006-03-14 14:00:51 +1100703 .listxattr = xfs_vn_listxattr,
David Chinner3ed65262007-11-23 16:29:25 +1100704 .fallocate = xfs_vn_fallocate,
Eric Sandeenf35642e2008-11-28 14:23:35 +1100705 .fiemap = xfs_vn_fiemap,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706};
707
Christoph Hellwig41be8be2008-08-13 16:23:13 +1000708static const struct inode_operations xfs_dir_inode_operations = {
Nathan Scott416c6d52006-03-14 14:00:51 +1100709 .create = xfs_vn_create,
710 .lookup = xfs_vn_lookup,
711 .link = xfs_vn_link,
712 .unlink = xfs_vn_unlink,
713 .symlink = xfs_vn_symlink,
714 .mkdir = xfs_vn_mkdir,
Christoph Hellwig8f112e32008-06-23 13:25:17 +1000715 /*
716 * Yes, XFS uses the same method for rmdir and unlink.
717 *
718 * There are some subtile differences deeper in the code,
719 * but we use S_ISDIR to check for those.
720 */
721 .rmdir = xfs_vn_unlink,
Nathan Scott416c6d52006-03-14 14:00:51 +1100722 .mknod = xfs_vn_mknod,
723 .rename = xfs_vn_rename,
Linus Torvalds18f4c642009-08-28 12:29:03 -0700724 .check_acl = xfs_check_acl,
Nathan Scott416c6d52006-03-14 14:00:51 +1100725 .getattr = xfs_vn_getattr,
726 .setattr = xfs_vn_setattr,
Lachlan McIlroy0ec58512008-06-23 13:23:01 +1000727 .setxattr = generic_setxattr,
728 .getxattr = generic_getxattr,
729 .removexattr = generic_removexattr,
Nathan Scott416c6d52006-03-14 14:00:51 +1100730 .listxattr = xfs_vn_listxattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731};
732
Christoph Hellwig41be8be2008-08-13 16:23:13 +1000733static const struct inode_operations xfs_dir_ci_inode_operations = {
Barry Naujok384f3ce2008-05-21 16:58:22 +1000734 .create = xfs_vn_create,
735 .lookup = xfs_vn_ci_lookup,
736 .link = xfs_vn_link,
737 .unlink = xfs_vn_unlink,
738 .symlink = xfs_vn_symlink,
739 .mkdir = xfs_vn_mkdir,
Christoph Hellwig8f112e32008-06-23 13:25:17 +1000740 /*
741 * Yes, XFS uses the same method for rmdir and unlink.
742 *
743 * There are some subtile differences deeper in the code,
744 * but we use S_ISDIR to check for those.
745 */
746 .rmdir = xfs_vn_unlink,
Barry Naujok384f3ce2008-05-21 16:58:22 +1000747 .mknod = xfs_vn_mknod,
748 .rename = xfs_vn_rename,
Linus Torvalds18f4c642009-08-28 12:29:03 -0700749 .check_acl = xfs_check_acl,
Barry Naujok384f3ce2008-05-21 16:58:22 +1000750 .getattr = xfs_vn_getattr,
751 .setattr = xfs_vn_setattr,
Lachlan McIlroy0ec58512008-06-23 13:23:01 +1000752 .setxattr = generic_setxattr,
753 .getxattr = generic_getxattr,
754 .removexattr = generic_removexattr,
Barry Naujok384f3ce2008-05-21 16:58:22 +1000755 .listxattr = xfs_vn_listxattr,
Barry Naujok384f3ce2008-05-21 16:58:22 +1000756};
757
Christoph Hellwig41be8be2008-08-13 16:23:13 +1000758static const struct inode_operations xfs_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 .readlink = generic_readlink,
Nathan Scott416c6d52006-03-14 14:00:51 +1100760 .follow_link = xfs_vn_follow_link,
761 .put_link = xfs_vn_put_link,
Linus Torvalds18f4c642009-08-28 12:29:03 -0700762 .check_acl = xfs_check_acl,
Nathan Scott416c6d52006-03-14 14:00:51 +1100763 .getattr = xfs_vn_getattr,
764 .setattr = xfs_vn_setattr,
Lachlan McIlroy0ec58512008-06-23 13:23:01 +1000765 .setxattr = generic_setxattr,
766 .getxattr = generic_getxattr,
767 .removexattr = generic_removexattr,
Nathan Scott416c6d52006-03-14 14:00:51 +1100768 .listxattr = xfs_vn_listxattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769};
Christoph Hellwig41be8be2008-08-13 16:23:13 +1000770
771STATIC void
772xfs_diflags_to_iflags(
773 struct inode *inode,
774 struct xfs_inode *ip)
775{
776 if (ip->i_d.di_flags & XFS_DIFLAG_IMMUTABLE)
777 inode->i_flags |= S_IMMUTABLE;
778 else
779 inode->i_flags &= ~S_IMMUTABLE;
780 if (ip->i_d.di_flags & XFS_DIFLAG_APPEND)
781 inode->i_flags |= S_APPEND;
782 else
783 inode->i_flags &= ~S_APPEND;
784 if (ip->i_d.di_flags & XFS_DIFLAG_SYNC)
785 inode->i_flags |= S_SYNC;
786 else
787 inode->i_flags &= ~S_SYNC;
788 if (ip->i_d.di_flags & XFS_DIFLAG_NOATIME)
789 inode->i_flags |= S_NOATIME;
790 else
791 inode->i_flags &= ~S_NOATIME;
792}
793
794/*
795 * Initialize the Linux inode, set up the operation vectors and
796 * unlock the inode.
797 *
798 * When reading existing inodes from disk this is called directly
799 * from xfs_iget, when creating a new inode it is called from
800 * xfs_ialloc after setting up the inode.
David Chinnerbf904242008-10-30 17:36:14 +1100801 *
802 * We are always called with an uninitialised linux inode here.
803 * We need to initialise the necessary fields and take a reference
804 * on it.
Christoph Hellwig41be8be2008-08-13 16:23:13 +1000805 */
806void
807xfs_setup_inode(
808 struct xfs_inode *ip)
809{
David Chinnerbf904242008-10-30 17:36:14 +1100810 struct inode *inode = &ip->i_vnode;
811
812 inode->i_ino = ip->i_ino;
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100813 inode->i_state = I_NEW;
David Chinnerbf904242008-10-30 17:36:14 +1100814 inode_add_to_lists(ip->i_mount->m_super, inode);
Christoph Hellwig41be8be2008-08-13 16:23:13 +1000815
816 inode->i_mode = ip->i_d.di_mode;
817 inode->i_nlink = ip->i_d.di_nlink;
818 inode->i_uid = ip->i_d.di_uid;
819 inode->i_gid = ip->i_d.di_gid;
820
821 switch (inode->i_mode & S_IFMT) {
822 case S_IFBLK:
823 case S_IFCHR:
824 inode->i_rdev =
825 MKDEV(sysv_major(ip->i_df.if_u2.if_rdev) & 0x1ff,
826 sysv_minor(ip->i_df.if_u2.if_rdev));
827 break;
828 default:
829 inode->i_rdev = 0;
830 break;
831 }
832
833 inode->i_generation = ip->i_d.di_gen;
834 i_size_write(inode, ip->i_d.di_size);
835 inode->i_atime.tv_sec = ip->i_d.di_atime.t_sec;
836 inode->i_atime.tv_nsec = ip->i_d.di_atime.t_nsec;
837 inode->i_mtime.tv_sec = ip->i_d.di_mtime.t_sec;
838 inode->i_mtime.tv_nsec = ip->i_d.di_mtime.t_nsec;
839 inode->i_ctime.tv_sec = ip->i_d.di_ctime.t_sec;
840 inode->i_ctime.tv_nsec = ip->i_d.di_ctime.t_nsec;
841 xfs_diflags_to_iflags(inode, ip);
Christoph Hellwig41be8be2008-08-13 16:23:13 +1000842
843 switch (inode->i_mode & S_IFMT) {
844 case S_IFREG:
845 inode->i_op = &xfs_inode_operations;
846 inode->i_fop = &xfs_file_operations;
847 inode->i_mapping->a_ops = &xfs_address_space_operations;
848 break;
849 case S_IFDIR:
850 if (xfs_sb_version_hasasciici(&XFS_M(inode->i_sb)->m_sb))
851 inode->i_op = &xfs_dir_ci_inode_operations;
852 else
853 inode->i_op = &xfs_dir_inode_operations;
854 inode->i_fop = &xfs_dir_file_operations;
855 break;
856 case S_IFLNK:
857 inode->i_op = &xfs_symlink_inode_operations;
858 if (!(ip->i_df.if_flags & XFS_IFINLINE))
859 inode->i_mapping->a_ops = &xfs_address_space_operations;
860 break;
861 default:
862 inode->i_op = &xfs_inode_operations;
863 init_special_inode(inode, inode->i_mode, inode->i_rdev);
864 break;
865 }
866
867 xfs_iflags_clear(ip, XFS_INEW);
868 barrier();
869
870 unlock_new_inode(inode);
871}