blob: 44f0b2de153eb6c4cf77b36c54278f36166d59ba [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_dir2.h"
28#include "xfs_alloc.h"
29#include "xfs_dmapi.h"
30#include "xfs_quota.h"
31#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "xfs_bmap_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110033#include "xfs_alloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "xfs_ialloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "xfs_dir2_sf.h"
Nathan Scotta844f452005-11-02 14:38:42 +110036#include "xfs_attr_sf.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include "xfs_dinode.h"
38#include "xfs_inode.h"
39#include "xfs_bmap.h"
Nathan Scotta844f452005-11-02 14:38:42 +110040#include "xfs_btree.h"
41#include "xfs_ialloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include "xfs_rtalloc.h"
43#include "xfs_error.h"
44#include "xfs_itable.h"
45#include "xfs_rw.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include "xfs_attr.h"
47#include "xfs_buf_item.h"
48#include "xfs_utils.h"
Christoph Hellwig739bfb22007-08-29 10:58:01 +100049#include "xfs_vnodeops.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000050#include "xfs_trace.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080052#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include <linux/xattr.h>
54#include <linux/namei.h>
Christoph Hellwigef14f0c2009-06-10 17:07:47 +020055#include <linux/posix_acl.h>
Nathan Scott446ada42006-01-11 15:35:44 +110056#include <linux/security.h>
David Chinner3ed65262007-11-23 16:29:25 +110057#include <linux/falloc.h>
Eric Sandeenf35642e2008-11-28 14:23:35 +110058#include <linux/fiemap.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090059#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Nathan Scott4aeb6642005-11-02 11:43:58 +110061/*
Christoph Hellwigf9581b12009-10-06 20:29:26 +000062 * Bring the timestamps in the XFS inode uptodate.
63 *
64 * Used before writing the inode to disk.
Christoph Hellwig42fe2b12006-01-11 15:35:17 +110065 */
66void
Christoph Hellwigf9581b12009-10-06 20:29:26 +000067xfs_synchronize_times(
Christoph Hellwig42fe2b12006-01-11 15:35:17 +110068 xfs_inode_t *ip)
69{
David Chinner01651642008-08-13 15:45:15 +100070 struct inode *inode = VFS_I(ip);
Christoph Hellwig42fe2b12006-01-11 15:35:17 +110071
Christoph Hellwigf9581b12009-10-06 20:29:26 +000072 ip->i_d.di_atime.t_sec = (__int32_t)inode->i_atime.tv_sec;
73 ip->i_d.di_atime.t_nsec = (__int32_t)inode->i_atime.tv_nsec;
74 ip->i_d.di_ctime.t_sec = (__int32_t)inode->i_ctime.tv_sec;
75 ip->i_d.di_ctime.t_nsec = (__int32_t)inode->i_ctime.tv_nsec;
76 ip->i_d.di_mtime.t_sec = (__int32_t)inode->i_mtime.tv_sec;
77 ip->i_d.di_mtime.t_nsec = (__int32_t)inode->i_mtime.tv_nsec;
Christoph Hellwig42fe2b12006-01-11 15:35:17 +110078}
79
80/*
David Chinnerbf904242008-10-30 17:36:14 +110081 * If the linux inode is valid, mark it dirty.
David Chinner5d51eff2007-11-23 16:29:18 +110082 * Used when commiting a dirty inode into a transaction so that
83 * the inode will get written back by the linux code
84 */
85void
86xfs_mark_inode_dirty_sync(
87 xfs_inode_t *ip)
88{
David Chinner01651642008-08-13 15:45:15 +100089 struct inode *inode = VFS_I(ip);
David Chinner5d51eff2007-11-23 16:29:18 +110090
David Chinnerbf904242008-10-30 17:36:14 +110091 if (!(inode->i_state & (I_WILL_FREE|I_FREEING|I_CLEAR)))
Christoph Hellwigaf048192008-03-06 13:46:43 +110092 mark_inode_dirty_sync(inode);
David Chinner5d51eff2007-11-23 16:29:18 +110093}
94
Christoph Hellwig66d834e2010-02-15 09:44:49 +000095void
96xfs_mark_inode_dirty(
97 xfs_inode_t *ip)
98{
99 struct inode *inode = VFS_I(ip);
100
101 if (!(inode->i_state & (I_WILL_FREE|I_FREEING|I_CLEAR)))
102 mark_inode_dirty(inode);
103}
104
David Chinner5d51eff2007-11-23 16:29:18 +1100105/*
Nathan Scott4aeb6642005-11-02 11:43:58 +1100106 * Change the requested timestamp in the given inode.
107 * We don't lock across timestamp updates, and we don't log them but
108 * we do record the fact that there is dirty information in core.
Nathan Scott4aeb6642005-11-02 11:43:58 +1100109 */
110void
111xfs_ichgtime(
112 xfs_inode_t *ip,
113 int flags)
114{
David Chinnere4f75292008-08-13 16:00:45 +1000115 struct inode *inode = VFS_I(ip);
Nathan Scott4aeb6642005-11-02 11:43:58 +1100116 timespec_t tv;
Christoph Hellwig8e5975c2008-08-13 16:45:13 +1000117 int sync_it = 0;
Nathan Scott4aeb6642005-11-02 11:43:58 +1100118
Christoph Hellwig8e5975c2008-08-13 16:45:13 +1000119 tv = current_fs_time(inode->i_sb);
120
121 if ((flags & XFS_ICHGTIME_MOD) &&
122 !timespec_equal(&inode->i_mtime, &tv)) {
Nathan Scott4aeb6642005-11-02 11:43:58 +1100123 inode->i_mtime = tv;
Christoph Hellwig8e5975c2008-08-13 16:45:13 +1000124 sync_it = 1;
Nathan Scott4aeb6642005-11-02 11:43:58 +1100125 }
Christoph Hellwig8e5975c2008-08-13 16:45:13 +1000126 if ((flags & XFS_ICHGTIME_CHG) &&
127 !timespec_equal(&inode->i_ctime, &tv)) {
Nathan Scott4aeb6642005-11-02 11:43:58 +1100128 inode->i_ctime = tv;
Christoph Hellwig8e5975c2008-08-13 16:45:13 +1000129 sync_it = 1;
Nathan Scott4aeb6642005-11-02 11:43:58 +1100130 }
131
132 /*
Christoph Hellwigf9581b12009-10-06 20:29:26 +0000133 * Update complete - now make sure everyone knows that the inode
134 * is dirty.
Nathan Scott4aeb6642005-11-02 11:43:58 +1100135 */
Christoph Hellwigf9581b12009-10-06 20:29:26 +0000136 if (sync_it)
David Chinner94b97e32008-10-30 17:21:30 +1100137 xfs_mark_inode_dirty_sync(ip);
Nathan Scott4aeb6642005-11-02 11:43:58 +1100138}
139
140/*
Nathan Scott446ada42006-01-11 15:35:44 +1100141 * Hook in SELinux. This is not quite correct yet, what we really need
142 * here (as we do for default ACLs) is a mechanism by which creation of
143 * these attrs can be journalled at inode creation time (along with the
144 * inode, of course, such that log replay can't cause these to be lost).
145 */
146STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100147xfs_init_security(
Christoph Hellwigaf048192008-03-06 13:46:43 +1100148 struct inode *inode,
Nathan Scott446ada42006-01-11 15:35:44 +1100149 struct inode *dir)
150{
Christoph Hellwigaf048192008-03-06 13:46:43 +1100151 struct xfs_inode *ip = XFS_I(inode);
Nathan Scott446ada42006-01-11 15:35:44 +1100152 size_t length;
153 void *value;
Dave Chinnera9273ca2010-01-20 10:47:48 +1100154 unsigned char *name;
Nathan Scott446ada42006-01-11 15:35:44 +1100155 int error;
156
Dave Chinnera9273ca2010-01-20 10:47:48 +1100157 error = security_inode_init_security(inode, dir, (char **)&name,
Christoph Hellwigaf048192008-03-06 13:46:43 +1100158 &value, &length);
Nathan Scott446ada42006-01-11 15:35:44 +1100159 if (error) {
160 if (error == -EOPNOTSUPP)
161 return 0;
162 return -error;
163 }
164
Christoph Hellwigaf048192008-03-06 13:46:43 +1100165 error = xfs_attr_set(ip, name, value, length, ATTR_SECURE);
Nathan Scott446ada42006-01-11 15:35:44 +1100166
167 kfree(name);
168 kfree(value);
169 return error;
170}
171
Barry Naujok556b8b12008-04-10 12:22:07 +1000172static void
173xfs_dentry_to_name(
174 struct xfs_name *namep,
175 struct dentry *dentry)
176{
177 namep->name = dentry->d_name.name;
178 namep->len = dentry->d_name.len;
179}
180
David Chinner7989cb82007-02-10 18:34:56 +1100181STATIC void
Nathan Scott416c6d52006-03-14 14:00:51 +1100182xfs_cleanup_inode(
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000183 struct inode *dir,
Christoph Hellwigaf048192008-03-06 13:46:43 +1100184 struct inode *inode,
Christoph Hellwig8f112e32008-06-23 13:25:17 +1000185 struct dentry *dentry)
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100186{
Barry Naujok556b8b12008-04-10 12:22:07 +1000187 struct xfs_name teardown;
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100188
189 /* Oh, the horror.
Nathan Scott220b5282006-03-14 13:33:36 +1100190 * If we can't add the ACL or we fail in
Nathan Scott416c6d52006-03-14 14:00:51 +1100191 * xfs_init_security we must back out.
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100192 * ENOSPC can hit here, among other things.
193 */
Barry Naujok556b8b12008-04-10 12:22:07 +1000194 xfs_dentry_to_name(&teardown, dentry);
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100195
Christoph Hellwig8f112e32008-06-23 13:25:17 +1000196 xfs_remove(XFS_I(dir), &teardown, XFS_I(inode));
Christoph Hellwigaf048192008-03-06 13:46:43 +1100197 iput(inode);
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100198}
199
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100201xfs_vn_mknod(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 struct inode *dir,
203 struct dentry *dentry,
204 int mode,
205 dev_t rdev)
206{
Christoph Hellwigdb0bb7b2008-03-06 13:44:35 +1100207 struct inode *inode;
Christoph Hellwig979ebab2008-03-06 13:46:05 +1100208 struct xfs_inode *ip = NULL;
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200209 struct posix_acl *default_acl = NULL;
Barry Naujok556b8b12008-04-10 12:22:07 +1000210 struct xfs_name name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 int error;
212
213 /*
214 * Irix uses Missed'em'V split, but doesn't want to see
215 * the upper 5 bits of (14bit) major.
216 */
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100217 if (S_ISCHR(mode) || S_ISBLK(mode)) {
218 if (unlikely(!sysv_valid_dev(rdev) || MAJOR(rdev) & ~0x1ff))
219 return -EINVAL;
220 rdev = sysv_encode_dev(rdev);
221 } else {
222 rdev = 0;
223 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200225 if (IS_POSIXACL(dir)) {
226 default_acl = xfs_get_acl(dir, ACL_TYPE_DEFAULT);
227 if (IS_ERR(default_acl))
228 return -PTR_ERR(default_acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
Christoph Hellwige83f1eb2009-06-12 11:19:11 -0400230 if (!default_acl)
231 mode &= ~current_umask();
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200232 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100234 xfs_dentry_to_name(&name, dentry);
235 error = xfs_create(XFS_I(dir), &name, mode, rdev, &ip, NULL);
Christoph Hellwigdb0bb7b2008-03-06 13:44:35 +1100236 if (unlikely(error))
237 goto out_free_acl;
Nathan Scott446ada42006-01-11 15:35:44 +1100238
David Chinner01651642008-08-13 15:45:15 +1000239 inode = VFS_I(ip);
Christoph Hellwig979ebab2008-03-06 13:46:05 +1100240
241 error = xfs_init_security(inode, dir);
Christoph Hellwigdb0bb7b2008-03-06 13:44:35 +1100242 if (unlikely(error))
243 goto out_cleanup_inode;
244
245 if (default_acl) {
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200246 error = -xfs_inherit_acl(inode, default_acl);
Christoph Hellwigdb0bb7b2008-03-06 13:44:35 +1100247 if (unlikely(error))
248 goto out_cleanup_inode;
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200249 posix_acl_release(default_acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 }
251
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Christoph Hellwigdb0bb7b2008-03-06 13:44:35 +1100253 d_instantiate(dentry, inode);
Christoph Hellwigdb0bb7b2008-03-06 13:44:35 +1100254 return -error;
255
256 out_cleanup_inode:
Christoph Hellwig8f112e32008-06-23 13:25:17 +1000257 xfs_cleanup_inode(dir, inode, dentry);
Christoph Hellwigdb0bb7b2008-03-06 13:44:35 +1100258 out_free_acl:
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200259 posix_acl_release(default_acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 return -error;
261}
262
263STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100264xfs_vn_create(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 struct inode *dir,
266 struct dentry *dentry,
267 int mode,
268 struct nameidata *nd)
269{
Nathan Scott416c6d52006-03-14 14:00:51 +1100270 return xfs_vn_mknod(dir, dentry, mode, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271}
272
273STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100274xfs_vn_mkdir(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 struct inode *dir,
276 struct dentry *dentry,
277 int mode)
278{
Nathan Scott416c6d52006-03-14 14:00:51 +1100279 return xfs_vn_mknod(dir, dentry, mode|S_IFDIR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280}
281
282STATIC struct dentry *
Nathan Scott416c6d52006-03-14 14:00:51 +1100283xfs_vn_lookup(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 struct inode *dir,
285 struct dentry *dentry,
286 struct nameidata *nd)
287{
Christoph Hellwigef1f5e72008-03-06 13:46:25 +1100288 struct xfs_inode *cip;
Barry Naujok556b8b12008-04-10 12:22:07 +1000289 struct xfs_name name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 int error;
291
292 if (dentry->d_name.len >= MAXNAMELEN)
293 return ERR_PTR(-ENAMETOOLONG);
294
Barry Naujok556b8b12008-04-10 12:22:07 +1000295 xfs_dentry_to_name(&name, dentry);
Barry Naujok384f3ce2008-05-21 16:58:22 +1000296 error = xfs_lookup(XFS_I(dir), &name, &cip, NULL);
Nathan Scott67fcaa72006-06-09 17:00:52 +1000297 if (unlikely(error)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 if (unlikely(error != ENOENT))
299 return ERR_PTR(-error);
300 d_add(dentry, NULL);
301 return NULL;
302 }
303
David Chinner01651642008-08-13 15:45:15 +1000304 return d_splice_alias(VFS_I(cip), dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305}
306
Barry Naujok384f3ce2008-05-21 16:58:22 +1000307STATIC struct dentry *
308xfs_vn_ci_lookup(
309 struct inode *dir,
310 struct dentry *dentry,
311 struct nameidata *nd)
312{
313 struct xfs_inode *ip;
314 struct xfs_name xname;
315 struct xfs_name ci_name;
316 struct qstr dname;
317 int error;
318
319 if (dentry->d_name.len >= MAXNAMELEN)
320 return ERR_PTR(-ENAMETOOLONG);
321
322 xfs_dentry_to_name(&xname, dentry);
323 error = xfs_lookup(XFS_I(dir), &xname, &ip, &ci_name);
324 if (unlikely(error)) {
325 if (unlikely(error != ENOENT))
326 return ERR_PTR(-error);
Barry Naujok866d5dc2008-05-22 17:21:40 +1000327 /*
328 * call d_add(dentry, NULL) here when d_drop_negative_children
329 * is called in xfs_vn_mknod (ie. allow negative dentries
330 * with CI filesystems).
331 */
Barry Naujok384f3ce2008-05-21 16:58:22 +1000332 return NULL;
333 }
334
335 /* if exact match, just splice and exit */
336 if (!ci_name.name)
David Chinner01651642008-08-13 15:45:15 +1000337 return d_splice_alias(VFS_I(ip), dentry);
Barry Naujok384f3ce2008-05-21 16:58:22 +1000338
339 /* else case-insensitive match... */
340 dname.name = ci_name.name;
341 dname.len = ci_name.len;
Christoph Hellwige45b5902008-08-07 23:49:07 +0200342 dentry = d_add_ci(dentry, VFS_I(ip), &dname);
Barry Naujok384f3ce2008-05-21 16:58:22 +1000343 kmem_free(ci_name.name);
344 return dentry;
345}
346
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100348xfs_vn_link(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 struct dentry *old_dentry,
350 struct inode *dir,
351 struct dentry *dentry)
352{
Christoph Hellwigd9424b32008-12-03 12:20:27 +0100353 struct inode *inode = old_dentry->d_inode;
Barry Naujok556b8b12008-04-10 12:22:07 +1000354 struct xfs_name name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 int error;
356
Barry Naujok556b8b12008-04-10 12:22:07 +1000357 xfs_dentry_to_name(&name, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Barry Naujok556b8b12008-04-10 12:22:07 +1000359 error = xfs_link(XFS_I(dir), XFS_I(inode), &name);
Christoph Hellwigd9424b32008-12-03 12:20:27 +0100360 if (unlikely(error))
Christoph Hellwiga3da7892008-03-06 13:46:12 +1100361 return -error;
Christoph Hellwiga3da7892008-03-06 13:46:12 +1100362
Christoph Hellwigd9424b32008-12-03 12:20:27 +0100363 atomic_inc(&inode->i_count);
Christoph Hellwiga3da7892008-03-06 13:46:12 +1100364 d_instantiate(dentry, inode);
365 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366}
367
368STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100369xfs_vn_unlink(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 struct inode *dir,
371 struct dentry *dentry)
372{
Barry Naujok556b8b12008-04-10 12:22:07 +1000373 struct xfs_name name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 int error;
375
Barry Naujok556b8b12008-04-10 12:22:07 +1000376 xfs_dentry_to_name(&name, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
Christoph Hellwige5700702008-06-23 13:25:25 +1000378 error = -xfs_remove(XFS_I(dir), &name, XFS_I(dentry->d_inode));
379 if (error)
380 return error;
381
382 /*
383 * With unlink, the VFS makes the dentry "negative": no inode,
384 * but still hashed. This is incompatible with case-insensitive
385 * mode, so invalidate (unhash) the dentry in CI-mode.
386 */
387 if (xfs_sb_version_hasasciici(&XFS_M(dir->i_sb)->m_sb))
388 d_invalidate(dentry);
389 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390}
391
392STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100393xfs_vn_symlink(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 struct inode *dir,
395 struct dentry *dentry,
396 const char *symname)
397{
Christoph Hellwig3937be52008-03-06 13:46:19 +1100398 struct inode *inode;
399 struct xfs_inode *cip = NULL;
Barry Naujok556b8b12008-04-10 12:22:07 +1000400 struct xfs_name name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 int error;
Christoph Hellwig3e5daf02007-10-11 18:09:12 +1000402 mode_t mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Christoph Hellwig3e5daf02007-10-11 18:09:12 +1000404 mode = S_IFLNK |
Al Viroce3b0f82009-03-29 19:08:22 -0400405 (irix_symlink_mode ? 0777 & ~current_umask() : S_IRWXUGO);
Barry Naujok556b8b12008-04-10 12:22:07 +1000406 xfs_dentry_to_name(&name, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
Barry Naujok556b8b12008-04-10 12:22:07 +1000408 error = xfs_symlink(XFS_I(dir), &name, symname, mode, &cip, NULL);
Christoph Hellwig3937be52008-03-06 13:46:19 +1100409 if (unlikely(error))
410 goto out;
411
David Chinner01651642008-08-13 15:45:15 +1000412 inode = VFS_I(cip);
Christoph Hellwig3937be52008-03-06 13:46:19 +1100413
414 error = xfs_init_security(inode, dir);
415 if (unlikely(error))
416 goto out_cleanup_inode;
417
418 d_instantiate(dentry, inode);
Christoph Hellwig3937be52008-03-06 13:46:19 +1100419 return 0;
420
421 out_cleanup_inode:
Christoph Hellwig8f112e32008-06-23 13:25:17 +1000422 xfs_cleanup_inode(dir, inode, dentry);
Christoph Hellwig3937be52008-03-06 13:46:19 +1100423 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 return -error;
425}
426
427STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100428xfs_vn_rename(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 struct inode *odir,
430 struct dentry *odentry,
431 struct inode *ndir,
432 struct dentry *ndentry)
433{
434 struct inode *new_inode = ndentry->d_inode;
Barry Naujok556b8b12008-04-10 12:22:07 +1000435 struct xfs_name oname;
436 struct xfs_name nname;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
Barry Naujok556b8b12008-04-10 12:22:07 +1000438 xfs_dentry_to_name(&oname, odentry);
439 xfs_dentry_to_name(&nname, ndentry);
440
Christoph Hellwige5700702008-06-23 13:25:25 +1000441 return -xfs_rename(XFS_I(odir), &oname, XFS_I(odentry->d_inode),
Christoph Hellwigcfa853e2008-04-22 17:34:06 +1000442 XFS_I(ndir), &nname, new_inode ?
443 XFS_I(new_inode) : NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444}
445
446/*
447 * careful here - this function can get called recursively, so
448 * we need to be very careful about how much stack we use.
449 * uio is kmalloced for this reason...
450 */
Al Viro008b1502005-08-20 00:17:39 +0100451STATIC void *
Nathan Scott416c6d52006-03-14 14:00:51 +1100452xfs_vn_follow_link(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 struct dentry *dentry,
454 struct nameidata *nd)
455{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 char *link;
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000457 int error = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
Panagiotis Issarisf52720c2006-09-27 01:49:39 -0700459 link = kmalloc(MAXPATHLEN+1, GFP_KERNEL);
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000460 if (!link)
461 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000463 error = -xfs_readlink(XFS_I(dentry->d_inode), link);
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000464 if (unlikely(error))
465 goto out_kfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
467 nd_set_link(nd, link);
Al Viro008b1502005-08-20 00:17:39 +0100468 return NULL;
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000469
470 out_kfree:
471 kfree(link);
472 out_err:
473 nd_set_link(nd, ERR_PTR(error));
474 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475}
476
Nathan Scottcde410a2005-09-05 11:47:01 +1000477STATIC void
Nathan Scott416c6d52006-03-14 14:00:51 +1100478xfs_vn_put_link(
Nathan Scottcde410a2005-09-05 11:47:01 +1000479 struct dentry *dentry,
480 struct nameidata *nd,
481 void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482{
Nathan Scottcde410a2005-09-05 11:47:01 +1000483 char *s = nd_get_link(nd);
484
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 if (!IS_ERR(s))
486 kfree(s);
487}
488
Christoph Hellwig45767582008-02-05 12:13:24 +1100489STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100490xfs_vn_getattr(
Christoph Hellwigc43f4082007-10-11 17:46:39 +1000491 struct vfsmount *mnt,
492 struct dentry *dentry,
493 struct kstat *stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494{
Christoph Hellwigc43f4082007-10-11 17:46:39 +1000495 struct inode *inode = dentry->d_inode;
496 struct xfs_inode *ip = XFS_I(inode);
497 struct xfs_mount *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
Christoph Hellwigc43f4082007-10-11 17:46:39 +1000499 xfs_itrace_entry(ip);
500
501 if (XFS_FORCED_SHUTDOWN(mp))
502 return XFS_ERROR(EIO);
503
504 stat->size = XFS_ISIZE(ip);
505 stat->dev = inode->i_sb->s_dev;
506 stat->mode = ip->i_d.di_mode;
507 stat->nlink = ip->i_d.di_nlink;
508 stat->uid = ip->i_d.di_uid;
509 stat->gid = ip->i_d.di_gid;
510 stat->ino = ip->i_ino;
Christoph Hellwigc43f4082007-10-11 17:46:39 +1000511 stat->atime = inode->i_atime;
Christoph Hellwigf9581b12009-10-06 20:29:26 +0000512 stat->mtime = inode->i_mtime;
513 stat->ctime = inode->i_ctime;
Christoph Hellwigc43f4082007-10-11 17:46:39 +1000514 stat->blocks =
515 XFS_FSB_TO_BB(mp, ip->i_d.di_nblocks + ip->i_delayed_blks);
516
517
518 switch (inode->i_mode & S_IFMT) {
519 case S_IFBLK:
520 case S_IFCHR:
521 stat->blksize = BLKDEV_IOSIZE;
522 stat->rdev = MKDEV(sysv_major(ip->i_df.if_u2.if_rdev) & 0x1ff,
523 sysv_minor(ip->i_df.if_u2.if_rdev));
524 break;
525 default:
Eric Sandeen71ddabb2007-11-23 16:29:42 +1100526 if (XFS_IS_REALTIME_INODE(ip)) {
Christoph Hellwigc43f4082007-10-11 17:46:39 +1000527 /*
528 * If the file blocks are being allocated from a
529 * realtime volume, then return the inode's realtime
530 * extent size or the realtime volume's extent size.
531 */
532 stat->blksize =
533 xfs_get_extsz_hint(ip) << mp->m_sb.sb_blocklog;
534 } else
535 stat->blksize = xfs_preferred_iosize(mp);
536 stat->rdev = 0;
537 break;
Nathan Scott69e23b92006-09-28 11:01:22 +1000538 }
Christoph Hellwigc43f4082007-10-11 17:46:39 +1000539
540 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541}
542
543STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100544xfs_vn_setattr(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 struct dentry *dentry,
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000546 struct iattr *iattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547{
Christoph Hellwigea5a3dc82008-10-30 18:27:48 +1100548 return -xfs_setattr(XFS_I(dentry->d_inode), iattr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549}
550
David Chinnerd87dd632008-04-10 12:21:46 +1000551/*
552 * block_truncate_page can return an error, but we can't propagate it
553 * at all here. Leave a complaint + stack trace in the syslog because
554 * this could be bad. If it is bad, we need to propagate the error further.
555 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556STATIC void
Nathan Scott416c6d52006-03-14 14:00:51 +1100557xfs_vn_truncate(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 struct inode *inode)
559{
David Chinnerd87dd632008-04-10 12:21:46 +1000560 int error;
561 error = block_truncate_page(inode->i_mapping, inode->i_size,
562 xfs_get_blocks);
563 WARN_ON(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564}
565
David Chinner3ed65262007-11-23 16:29:25 +1100566STATIC long
567xfs_vn_fallocate(
568 struct inode *inode,
569 int mode,
570 loff_t offset,
571 loff_t len)
572{
573 long error;
574 loff_t new_size = 0;
575 xfs_flock64_t bf;
576 xfs_inode_t *ip = XFS_I(inode);
577
578 /* preallocation on directories not yet supported */
579 error = -ENODEV;
580 if (S_ISDIR(inode->i_mode))
581 goto out_error;
582
583 bf.l_whence = 0;
584 bf.l_start = offset;
585 bf.l_len = len;
586
587 xfs_ilock(ip, XFS_IOLOCK_EXCL);
Dave Chinner07f1a4f2010-05-21 05:47:59 +0000588
589 /* check the new inode size is valid before allocating */
590 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
591 offset + len > i_size_read(inode)) {
592 new_size = offset + len;
593 error = inode_newsize_ok(inode, new_size);
594 if (error)
595 goto out_unlock;
596 }
597
Jason Gunthorpe44a743f2009-11-24 21:52:53 +0000598 error = -xfs_change_file_space(ip, XFS_IOC_RESVSP, &bf,
599 0, XFS_ATTR_NOLOCK);
Dave Chinner07f1a4f2010-05-21 05:47:59 +0000600 if (error)
601 goto out_unlock;
David Chinner3ed65262007-11-23 16:29:25 +1100602
603 /* Change file size if needed */
604 if (new_size) {
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000605 struct iattr iattr;
David Chinner3ed65262007-11-23 16:29:25 +1100606
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000607 iattr.ia_valid = ATTR_SIZE;
608 iattr.ia_size = new_size;
Jason Gunthorpe44a743f2009-11-24 21:52:53 +0000609 error = -xfs_setattr(ip, &iattr, XFS_ATTR_NOLOCK);
David Chinner3ed65262007-11-23 16:29:25 +1100610 }
611
Dave Chinner07f1a4f2010-05-21 05:47:59 +0000612out_unlock:
David Chinner3ed65262007-11-23 16:29:25 +1100613 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
614out_error:
615 return error;
616}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
Eric Sandeenf35642e2008-11-28 14:23:35 +1100618#define XFS_FIEMAP_FLAGS (FIEMAP_FLAG_SYNC|FIEMAP_FLAG_XATTR)
619
620/*
621 * Call fiemap helper to fill in user data.
622 * Returns positive errors to xfs_getbmap.
623 */
624STATIC int
625xfs_fiemap_format(
626 void **arg,
627 struct getbmapx *bmv,
628 int *full)
629{
630 int error;
631 struct fiemap_extent_info *fieinfo = *arg;
632 u32 fiemap_flags = 0;
633 u64 logical, physical, length;
634
635 /* Do nothing for a hole */
636 if (bmv->bmv_block == -1LL)
637 return 0;
638
639 logical = BBTOB(bmv->bmv_offset);
640 physical = BBTOB(bmv->bmv_block);
641 length = BBTOB(bmv->bmv_length);
642
643 if (bmv->bmv_oflags & BMV_OF_PREALLOC)
644 fiemap_flags |= FIEMAP_EXTENT_UNWRITTEN;
645 else if (bmv->bmv_oflags & BMV_OF_DELALLOC) {
646 fiemap_flags |= FIEMAP_EXTENT_DELALLOC;
647 physical = 0; /* no block yet */
648 }
649 if (bmv->bmv_oflags & BMV_OF_LAST)
650 fiemap_flags |= FIEMAP_EXTENT_LAST;
651
652 error = fiemap_fill_next_extent(fieinfo, logical, physical,
653 length, fiemap_flags);
654 if (error > 0) {
655 error = 0;
656 *full = 1; /* user array now full */
657 }
658
659 return -error;
660}
661
662STATIC int
663xfs_vn_fiemap(
664 struct inode *inode,
665 struct fiemap_extent_info *fieinfo,
666 u64 start,
667 u64 length)
668{
669 xfs_inode_t *ip = XFS_I(inode);
670 struct getbmapx bm;
671 int error;
672
673 error = fiemap_check_flags(fieinfo, XFS_FIEMAP_FLAGS);
674 if (error)
675 return error;
676
677 /* Set up bmap header for xfs internal routine */
678 bm.bmv_offset = BTOBB(start);
679 /* Special case for whole file */
680 if (length == FIEMAP_MAX_OFFSET)
681 bm.bmv_length = -1LL;
682 else
683 bm.bmv_length = BTOBB(length);
684
Eric Sandeen97db39a2009-07-26 21:52:01 -0500685 /* We add one because in getbmap world count includes the header */
Tao Ma2d1ff3c2010-04-29 15:13:56 +1000686 bm.bmv_count = !fieinfo->fi_extents_max ? MAXEXTNUM :
687 fieinfo->fi_extents_max + 1;
688 bm.bmv_count = min_t(__s32, bm.bmv_count,
689 (PAGE_SIZE * 16 / sizeof(struct getbmapx)));
Eric Sandeenf35642e2008-11-28 14:23:35 +1100690 bm.bmv_iflags = BMV_IF_PREALLOC;
691 if (fieinfo->fi_flags & FIEMAP_FLAG_XATTR)
692 bm.bmv_iflags |= BMV_IF_ATTRFORK;
693 if (!(fieinfo->fi_flags & FIEMAP_FLAG_SYNC))
694 bm.bmv_iflags |= BMV_IF_DELALLOC;
695
696 error = xfs_getbmap(ip, &bm, xfs_fiemap_format, fieinfo);
697 if (error)
698 return -error;
699
700 return 0;
701}
702
Christoph Hellwig41be8be2008-08-13 16:23:13 +1000703static const struct inode_operations xfs_inode_operations = {
Linus Torvalds18f4c642009-08-28 12:29:03 -0700704 .check_acl = xfs_check_acl,
Nathan Scott416c6d52006-03-14 14:00:51 +1100705 .truncate = xfs_vn_truncate,
706 .getattr = xfs_vn_getattr,
707 .setattr = xfs_vn_setattr,
Lachlan McIlroy0ec58512008-06-23 13:23:01 +1000708 .setxattr = generic_setxattr,
709 .getxattr = generic_getxattr,
710 .removexattr = generic_removexattr,
Nathan Scott416c6d52006-03-14 14:00:51 +1100711 .listxattr = xfs_vn_listxattr,
David Chinner3ed65262007-11-23 16:29:25 +1100712 .fallocate = xfs_vn_fallocate,
Eric Sandeenf35642e2008-11-28 14:23:35 +1100713 .fiemap = xfs_vn_fiemap,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714};
715
Christoph Hellwig41be8be2008-08-13 16:23:13 +1000716static const struct inode_operations xfs_dir_inode_operations = {
Nathan Scott416c6d52006-03-14 14:00:51 +1100717 .create = xfs_vn_create,
718 .lookup = xfs_vn_lookup,
719 .link = xfs_vn_link,
720 .unlink = xfs_vn_unlink,
721 .symlink = xfs_vn_symlink,
722 .mkdir = xfs_vn_mkdir,
Christoph Hellwig8f112e32008-06-23 13:25:17 +1000723 /*
724 * Yes, XFS uses the same method for rmdir and unlink.
725 *
726 * There are some subtile differences deeper in the code,
727 * but we use S_ISDIR to check for those.
728 */
729 .rmdir = xfs_vn_unlink,
Nathan Scott416c6d52006-03-14 14:00:51 +1100730 .mknod = xfs_vn_mknod,
731 .rename = xfs_vn_rename,
Linus Torvalds18f4c642009-08-28 12:29:03 -0700732 .check_acl = xfs_check_acl,
Nathan Scott416c6d52006-03-14 14:00:51 +1100733 .getattr = xfs_vn_getattr,
734 .setattr = xfs_vn_setattr,
Lachlan McIlroy0ec58512008-06-23 13:23:01 +1000735 .setxattr = generic_setxattr,
736 .getxattr = generic_getxattr,
737 .removexattr = generic_removexattr,
Nathan Scott416c6d52006-03-14 14:00:51 +1100738 .listxattr = xfs_vn_listxattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739};
740
Christoph Hellwig41be8be2008-08-13 16:23:13 +1000741static const struct inode_operations xfs_dir_ci_inode_operations = {
Barry Naujok384f3ce2008-05-21 16:58:22 +1000742 .create = xfs_vn_create,
743 .lookup = xfs_vn_ci_lookup,
744 .link = xfs_vn_link,
745 .unlink = xfs_vn_unlink,
746 .symlink = xfs_vn_symlink,
747 .mkdir = xfs_vn_mkdir,
Christoph Hellwig8f112e32008-06-23 13:25:17 +1000748 /*
749 * Yes, XFS uses the same method for rmdir and unlink.
750 *
751 * There are some subtile differences deeper in the code,
752 * but we use S_ISDIR to check for those.
753 */
754 .rmdir = xfs_vn_unlink,
Barry Naujok384f3ce2008-05-21 16:58:22 +1000755 .mknod = xfs_vn_mknod,
756 .rename = xfs_vn_rename,
Linus Torvalds18f4c642009-08-28 12:29:03 -0700757 .check_acl = xfs_check_acl,
Barry Naujok384f3ce2008-05-21 16:58:22 +1000758 .getattr = xfs_vn_getattr,
759 .setattr = xfs_vn_setattr,
Lachlan McIlroy0ec58512008-06-23 13:23:01 +1000760 .setxattr = generic_setxattr,
761 .getxattr = generic_getxattr,
762 .removexattr = generic_removexattr,
Barry Naujok384f3ce2008-05-21 16:58:22 +1000763 .listxattr = xfs_vn_listxattr,
Barry Naujok384f3ce2008-05-21 16:58:22 +1000764};
765
Christoph Hellwig41be8be2008-08-13 16:23:13 +1000766static const struct inode_operations xfs_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 .readlink = generic_readlink,
Nathan Scott416c6d52006-03-14 14:00:51 +1100768 .follow_link = xfs_vn_follow_link,
769 .put_link = xfs_vn_put_link,
Linus Torvalds18f4c642009-08-28 12:29:03 -0700770 .check_acl = xfs_check_acl,
Nathan Scott416c6d52006-03-14 14:00:51 +1100771 .getattr = xfs_vn_getattr,
772 .setattr = xfs_vn_setattr,
Lachlan McIlroy0ec58512008-06-23 13:23:01 +1000773 .setxattr = generic_setxattr,
774 .getxattr = generic_getxattr,
775 .removexattr = generic_removexattr,
Nathan Scott416c6d52006-03-14 14:00:51 +1100776 .listxattr = xfs_vn_listxattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777};
Christoph Hellwig41be8be2008-08-13 16:23:13 +1000778
779STATIC void
780xfs_diflags_to_iflags(
781 struct inode *inode,
782 struct xfs_inode *ip)
783{
784 if (ip->i_d.di_flags & XFS_DIFLAG_IMMUTABLE)
785 inode->i_flags |= S_IMMUTABLE;
786 else
787 inode->i_flags &= ~S_IMMUTABLE;
788 if (ip->i_d.di_flags & XFS_DIFLAG_APPEND)
789 inode->i_flags |= S_APPEND;
790 else
791 inode->i_flags &= ~S_APPEND;
792 if (ip->i_d.di_flags & XFS_DIFLAG_SYNC)
793 inode->i_flags |= S_SYNC;
794 else
795 inode->i_flags &= ~S_SYNC;
796 if (ip->i_d.di_flags & XFS_DIFLAG_NOATIME)
797 inode->i_flags |= S_NOATIME;
798 else
799 inode->i_flags &= ~S_NOATIME;
800}
801
802/*
803 * Initialize the Linux inode, set up the operation vectors and
804 * unlock the inode.
805 *
806 * When reading existing inodes from disk this is called directly
807 * from xfs_iget, when creating a new inode it is called from
808 * xfs_ialloc after setting up the inode.
David Chinnerbf904242008-10-30 17:36:14 +1100809 *
810 * We are always called with an uninitialised linux inode here.
811 * We need to initialise the necessary fields and take a reference
812 * on it.
Christoph Hellwig41be8be2008-08-13 16:23:13 +1000813 */
814void
815xfs_setup_inode(
816 struct xfs_inode *ip)
817{
David Chinnerbf904242008-10-30 17:36:14 +1100818 struct inode *inode = &ip->i_vnode;
819
820 inode->i_ino = ip->i_ino;
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100821 inode->i_state = I_NEW;
David Chinnerbf904242008-10-30 17:36:14 +1100822 inode_add_to_lists(ip->i_mount->m_super, inode);
Christoph Hellwig41be8be2008-08-13 16:23:13 +1000823
824 inode->i_mode = ip->i_d.di_mode;
825 inode->i_nlink = ip->i_d.di_nlink;
826 inode->i_uid = ip->i_d.di_uid;
827 inode->i_gid = ip->i_d.di_gid;
828
829 switch (inode->i_mode & S_IFMT) {
830 case S_IFBLK:
831 case S_IFCHR:
832 inode->i_rdev =
833 MKDEV(sysv_major(ip->i_df.if_u2.if_rdev) & 0x1ff,
834 sysv_minor(ip->i_df.if_u2.if_rdev));
835 break;
836 default:
837 inode->i_rdev = 0;
838 break;
839 }
840
841 inode->i_generation = ip->i_d.di_gen;
842 i_size_write(inode, ip->i_d.di_size);
843 inode->i_atime.tv_sec = ip->i_d.di_atime.t_sec;
844 inode->i_atime.tv_nsec = ip->i_d.di_atime.t_nsec;
845 inode->i_mtime.tv_sec = ip->i_d.di_mtime.t_sec;
846 inode->i_mtime.tv_nsec = ip->i_d.di_mtime.t_nsec;
847 inode->i_ctime.tv_sec = ip->i_d.di_ctime.t_sec;
848 inode->i_ctime.tv_nsec = ip->i_d.di_ctime.t_nsec;
849 xfs_diflags_to_iflags(inode, ip);
Christoph Hellwig41be8be2008-08-13 16:23:13 +1000850
851 switch (inode->i_mode & S_IFMT) {
852 case S_IFREG:
853 inode->i_op = &xfs_inode_operations;
854 inode->i_fop = &xfs_file_operations;
855 inode->i_mapping->a_ops = &xfs_address_space_operations;
856 break;
857 case S_IFDIR:
858 if (xfs_sb_version_hasasciici(&XFS_M(inode->i_sb)->m_sb))
859 inode->i_op = &xfs_dir_ci_inode_operations;
860 else
861 inode->i_op = &xfs_dir_inode_operations;
862 inode->i_fop = &xfs_dir_file_operations;
863 break;
864 case S_IFLNK:
865 inode->i_op = &xfs_symlink_inode_operations;
866 if (!(ip->i_df.if_flags & XFS_IFINLINE))
867 inode->i_mapping->a_ops = &xfs_address_space_operations;
868 break;
869 default:
870 inode->i_op = &xfs_inode_operations;
871 init_special_inode(inode, inode->i_mode, inode->i_rdev);
872 break;
873 }
874
875 xfs_iflags_clear(ip, XFS_INEW);
876 barrier();
877
878 unlock_new_inode(inode);
879}