blob: da0159d99f82795cd28277138a1f3d5e06916b03 [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"
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080051#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <linux/xattr.h>
53#include <linux/namei.h>
Christoph Hellwigef14f0c2009-06-10 17:07:47 +020054#include <linux/posix_acl.h>
Nathan Scott446ada42006-01-11 15:35:44 +110055#include <linux/security.h>
David Chinner3ed65262007-11-23 16:29:25 +110056#include <linux/falloc.h>
Eric Sandeenf35642e2008-11-28 14:23:35 +110057#include <linux/fiemap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Nathan Scott4aeb6642005-11-02 11:43:58 +110059/*
Christoph Hellwig42fe2b12006-01-11 15:35:17 +110060 * Bring the atime in the XFS inode uptodate.
61 * Used before logging the inode to disk or when the Linux inode goes away.
62 */
63void
64xfs_synchronize_atime(
65 xfs_inode_t *ip)
66{
David Chinner01651642008-08-13 15:45:15 +100067 struct inode *inode = VFS_I(ip);
Christoph Hellwig42fe2b12006-01-11 15:35:17 +110068
David Chinnerbf904242008-10-30 17:36:14 +110069 if (!(inode->i_state & I_CLEAR)) {
Christoph Hellwigaf048192008-03-06 13:46:43 +110070 ip->i_d.di_atime.t_sec = (__int32_t)inode->i_atime.tv_sec;
71 ip->i_d.di_atime.t_nsec = (__int32_t)inode->i_atime.tv_nsec;
Christoph Hellwig42fe2b12006-01-11 15:35:17 +110072 }
73}
74
75/*
David Chinnerbf904242008-10-30 17:36:14 +110076 * If the linux inode is valid, mark it dirty.
David Chinner5d51eff2007-11-23 16:29:18 +110077 * Used when commiting a dirty inode into a transaction so that
78 * the inode will get written back by the linux code
79 */
80void
81xfs_mark_inode_dirty_sync(
82 xfs_inode_t *ip)
83{
David Chinner01651642008-08-13 15:45:15 +100084 struct inode *inode = VFS_I(ip);
David Chinner5d51eff2007-11-23 16:29:18 +110085
David Chinnerbf904242008-10-30 17:36:14 +110086 if (!(inode->i_state & (I_WILL_FREE|I_FREEING|I_CLEAR)))
Christoph Hellwigaf048192008-03-06 13:46:43 +110087 mark_inode_dirty_sync(inode);
David Chinner5d51eff2007-11-23 16:29:18 +110088}
89
90/*
Nathan Scott4aeb6642005-11-02 11:43:58 +110091 * Change the requested timestamp in the given inode.
92 * We don't lock across timestamp updates, and we don't log them but
93 * we do record the fact that there is dirty information in core.
Nathan Scott4aeb6642005-11-02 11:43:58 +110094 */
95void
96xfs_ichgtime(
97 xfs_inode_t *ip,
98 int flags)
99{
David Chinnere4f75292008-08-13 16:00:45 +1000100 struct inode *inode = VFS_I(ip);
Nathan Scott4aeb6642005-11-02 11:43:58 +1100101 timespec_t tv;
Christoph Hellwig8e5975c2008-08-13 16:45:13 +1000102 int sync_it = 0;
Nathan Scott4aeb6642005-11-02 11:43:58 +1100103
Christoph Hellwig8e5975c2008-08-13 16:45:13 +1000104 tv = current_fs_time(inode->i_sb);
105
106 if ((flags & XFS_ICHGTIME_MOD) &&
107 !timespec_equal(&inode->i_mtime, &tv)) {
Nathan Scott4aeb6642005-11-02 11:43:58 +1100108 inode->i_mtime = tv;
109 ip->i_d.di_mtime.t_sec = (__int32_t)tv.tv_sec;
110 ip->i_d.di_mtime.t_nsec = (__int32_t)tv.tv_nsec;
Christoph Hellwig8e5975c2008-08-13 16:45:13 +1000111 sync_it = 1;
Nathan Scott4aeb6642005-11-02 11:43:58 +1100112 }
Christoph Hellwig8e5975c2008-08-13 16:45:13 +1000113 if ((flags & XFS_ICHGTIME_CHG) &&
114 !timespec_equal(&inode->i_ctime, &tv)) {
Nathan Scott4aeb6642005-11-02 11:43:58 +1100115 inode->i_ctime = tv;
116 ip->i_d.di_ctime.t_sec = (__int32_t)tv.tv_sec;
117 ip->i_d.di_ctime.t_nsec = (__int32_t)tv.tv_nsec;
Christoph Hellwig8e5975c2008-08-13 16:45:13 +1000118 sync_it = 1;
Nathan Scott4aeb6642005-11-02 11:43:58 +1100119 }
120
121 /*
122 * We update the i_update_core field _after_ changing
123 * the timestamps in order to coordinate properly with
124 * xfs_iflush() so that we don't lose timestamp updates.
125 * This keeps us from having to hold the inode lock
126 * while doing this. We use the SYNCHRONIZE macro to
127 * ensure that the compiler does not reorder the update
128 * of i_update_core above the timestamp updates above.
129 */
Christoph Hellwig8e5975c2008-08-13 16:45:13 +1000130 if (sync_it) {
131 SYNCHRONIZE();
132 ip->i_update_core = 1;
David Chinner94b97e32008-10-30 17:21:30 +1100133 xfs_mark_inode_dirty_sync(ip);
Christoph Hellwig8e5975c2008-08-13 16:45:13 +1000134 }
Nathan Scott4aeb6642005-11-02 11:43:58 +1100135}
136
137/*
Nathan Scott446ada42006-01-11 15:35:44 +1100138 * Hook in SELinux. This is not quite correct yet, what we really need
139 * here (as we do for default ACLs) is a mechanism by which creation of
140 * these attrs can be journalled at inode creation time (along with the
141 * inode, of course, such that log replay can't cause these to be lost).
142 */
143STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100144xfs_init_security(
Christoph Hellwigaf048192008-03-06 13:46:43 +1100145 struct inode *inode,
Nathan Scott446ada42006-01-11 15:35:44 +1100146 struct inode *dir)
147{
Christoph Hellwigaf048192008-03-06 13:46:43 +1100148 struct xfs_inode *ip = XFS_I(inode);
Nathan Scott446ada42006-01-11 15:35:44 +1100149 size_t length;
150 void *value;
151 char *name;
152 int error;
153
Christoph Hellwigaf048192008-03-06 13:46:43 +1100154 error = security_inode_init_security(inode, dir, &name,
155 &value, &length);
Nathan Scott446ada42006-01-11 15:35:44 +1100156 if (error) {
157 if (error == -EOPNOTSUPP)
158 return 0;
159 return -error;
160 }
161
Christoph Hellwigaf048192008-03-06 13:46:43 +1100162 error = xfs_attr_set(ip, name, value, length, ATTR_SECURE);
Nathan Scott446ada42006-01-11 15:35:44 +1100163
164 kfree(name);
165 kfree(value);
166 return error;
167}
168
Barry Naujok556b8b12008-04-10 12:22:07 +1000169static void
170xfs_dentry_to_name(
171 struct xfs_name *namep,
172 struct dentry *dentry)
173{
174 namep->name = dentry->d_name.name;
175 namep->len = dentry->d_name.len;
176}
177
David Chinner7989cb82007-02-10 18:34:56 +1100178STATIC void
Nathan Scott416c6d52006-03-14 14:00:51 +1100179xfs_cleanup_inode(
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000180 struct inode *dir,
Christoph Hellwigaf048192008-03-06 13:46:43 +1100181 struct inode *inode,
Christoph Hellwig8f112e32008-06-23 13:25:17 +1000182 struct dentry *dentry)
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100183{
Barry Naujok556b8b12008-04-10 12:22:07 +1000184 struct xfs_name teardown;
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100185
186 /* Oh, the horror.
Nathan Scott220b5282006-03-14 13:33:36 +1100187 * If we can't add the ACL or we fail in
Nathan Scott416c6d52006-03-14 14:00:51 +1100188 * xfs_init_security we must back out.
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100189 * ENOSPC can hit here, among other things.
190 */
Barry Naujok556b8b12008-04-10 12:22:07 +1000191 xfs_dentry_to_name(&teardown, dentry);
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100192
Christoph Hellwig8f112e32008-06-23 13:25:17 +1000193 xfs_remove(XFS_I(dir), &teardown, XFS_I(inode));
Christoph Hellwigaf048192008-03-06 13:46:43 +1100194 iput(inode);
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100195}
196
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100198xfs_vn_mknod(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 struct inode *dir,
200 struct dentry *dentry,
201 int mode,
202 dev_t rdev)
203{
Christoph Hellwigdb0bb7b2008-03-06 13:44:35 +1100204 struct inode *inode;
Christoph Hellwig979ebab2008-03-06 13:46:05 +1100205 struct xfs_inode *ip = NULL;
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200206 struct posix_acl *default_acl = NULL;
Barry Naujok556b8b12008-04-10 12:22:07 +1000207 struct xfs_name name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 int error;
209
210 /*
211 * Irix uses Missed'em'V split, but doesn't want to see
212 * the upper 5 bits of (14bit) major.
213 */
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100214 if (S_ISCHR(mode) || S_ISBLK(mode)) {
215 if (unlikely(!sysv_valid_dev(rdev) || MAJOR(rdev) & ~0x1ff))
216 return -EINVAL;
217 rdev = sysv_encode_dev(rdev);
218 } else {
219 rdev = 0;
220 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200222 if (IS_POSIXACL(dir)) {
223 default_acl = xfs_get_acl(dir, ACL_TYPE_DEFAULT);
224 if (IS_ERR(default_acl))
225 return -PTR_ERR(default_acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Christoph Hellwige83f1eb2009-06-12 11:19:11 -0400227 if (!default_acl)
228 mode &= ~current_umask();
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200229 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100231 xfs_dentry_to_name(&name, dentry);
232 error = xfs_create(XFS_I(dir), &name, mode, rdev, &ip, NULL);
Christoph Hellwigdb0bb7b2008-03-06 13:44:35 +1100233 if (unlikely(error))
234 goto out_free_acl;
Nathan Scott446ada42006-01-11 15:35:44 +1100235
David Chinner01651642008-08-13 15:45:15 +1000236 inode = VFS_I(ip);
Christoph Hellwig979ebab2008-03-06 13:46:05 +1100237
238 error = xfs_init_security(inode, dir);
Christoph Hellwigdb0bb7b2008-03-06 13:44:35 +1100239 if (unlikely(error))
240 goto out_cleanup_inode;
241
242 if (default_acl) {
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200243 error = -xfs_inherit_acl(inode, default_acl);
Christoph Hellwigdb0bb7b2008-03-06 13:44:35 +1100244 if (unlikely(error))
245 goto out_cleanup_inode;
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200246 posix_acl_release(default_acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 }
248
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
Christoph Hellwigdb0bb7b2008-03-06 13:44:35 +1100250 d_instantiate(dentry, inode);
Christoph Hellwigdb0bb7b2008-03-06 13:44:35 +1100251 return -error;
252
253 out_cleanup_inode:
Christoph Hellwig8f112e32008-06-23 13:25:17 +1000254 xfs_cleanup_inode(dir, inode, dentry);
Christoph Hellwigdb0bb7b2008-03-06 13:44:35 +1100255 out_free_acl:
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200256 posix_acl_release(default_acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 return -error;
258}
259
260STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100261xfs_vn_create(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 struct inode *dir,
263 struct dentry *dentry,
264 int mode,
265 struct nameidata *nd)
266{
Nathan Scott416c6d52006-03-14 14:00:51 +1100267 return xfs_vn_mknod(dir, dentry, mode, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268}
269
270STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100271xfs_vn_mkdir(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 struct inode *dir,
273 struct dentry *dentry,
274 int mode)
275{
Nathan Scott416c6d52006-03-14 14:00:51 +1100276 return xfs_vn_mknod(dir, dentry, mode|S_IFDIR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277}
278
279STATIC struct dentry *
Nathan Scott416c6d52006-03-14 14:00:51 +1100280xfs_vn_lookup(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 struct inode *dir,
282 struct dentry *dentry,
283 struct nameidata *nd)
284{
Christoph Hellwigef1f5e72008-03-06 13:46:25 +1100285 struct xfs_inode *cip;
Barry Naujok556b8b12008-04-10 12:22:07 +1000286 struct xfs_name name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 int error;
288
289 if (dentry->d_name.len >= MAXNAMELEN)
290 return ERR_PTR(-ENAMETOOLONG);
291
Barry Naujok556b8b12008-04-10 12:22:07 +1000292 xfs_dentry_to_name(&name, dentry);
Barry Naujok384f3ce2008-05-21 16:58:22 +1000293 error = xfs_lookup(XFS_I(dir), &name, &cip, NULL);
Nathan Scott67fcaa72006-06-09 17:00:52 +1000294 if (unlikely(error)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 if (unlikely(error != ENOENT))
296 return ERR_PTR(-error);
297 d_add(dentry, NULL);
298 return NULL;
299 }
300
David Chinner01651642008-08-13 15:45:15 +1000301 return d_splice_alias(VFS_I(cip), dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302}
303
Barry Naujok384f3ce2008-05-21 16:58:22 +1000304STATIC struct dentry *
305xfs_vn_ci_lookup(
306 struct inode *dir,
307 struct dentry *dentry,
308 struct nameidata *nd)
309{
310 struct xfs_inode *ip;
311 struct xfs_name xname;
312 struct xfs_name ci_name;
313 struct qstr dname;
314 int error;
315
316 if (dentry->d_name.len >= MAXNAMELEN)
317 return ERR_PTR(-ENAMETOOLONG);
318
319 xfs_dentry_to_name(&xname, dentry);
320 error = xfs_lookup(XFS_I(dir), &xname, &ip, &ci_name);
321 if (unlikely(error)) {
322 if (unlikely(error != ENOENT))
323 return ERR_PTR(-error);
Barry Naujok866d5dc2008-05-22 17:21:40 +1000324 /*
325 * call d_add(dentry, NULL) here when d_drop_negative_children
326 * is called in xfs_vn_mknod (ie. allow negative dentries
327 * with CI filesystems).
328 */
Barry Naujok384f3ce2008-05-21 16:58:22 +1000329 return NULL;
330 }
331
332 /* if exact match, just splice and exit */
333 if (!ci_name.name)
David Chinner01651642008-08-13 15:45:15 +1000334 return d_splice_alias(VFS_I(ip), dentry);
Barry Naujok384f3ce2008-05-21 16:58:22 +1000335
336 /* else case-insensitive match... */
337 dname.name = ci_name.name;
338 dname.len = ci_name.len;
Christoph Hellwige45b5902008-08-07 23:49:07 +0200339 dentry = d_add_ci(dentry, VFS_I(ip), &dname);
Barry Naujok384f3ce2008-05-21 16:58:22 +1000340 kmem_free(ci_name.name);
341 return dentry;
342}
343
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100345xfs_vn_link(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 struct dentry *old_dentry,
347 struct inode *dir,
348 struct dentry *dentry)
349{
Christoph Hellwigd9424b32008-12-03 12:20:27 +0100350 struct inode *inode = old_dentry->d_inode;
Barry Naujok556b8b12008-04-10 12:22:07 +1000351 struct xfs_name name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 int error;
353
Barry Naujok556b8b12008-04-10 12:22:07 +1000354 xfs_dentry_to_name(&name, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
Barry Naujok556b8b12008-04-10 12:22:07 +1000356 error = xfs_link(XFS_I(dir), XFS_I(inode), &name);
Christoph Hellwigd9424b32008-12-03 12:20:27 +0100357 if (unlikely(error))
Christoph Hellwiga3da7892008-03-06 13:46:12 +1100358 return -error;
Christoph Hellwiga3da7892008-03-06 13:46:12 +1100359
Christoph Hellwigd9424b32008-12-03 12:20:27 +0100360 atomic_inc(&inode->i_count);
Christoph Hellwiga3da7892008-03-06 13:46:12 +1100361 d_instantiate(dentry, inode);
362 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363}
364
365STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100366xfs_vn_unlink(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 struct inode *dir,
368 struct dentry *dentry)
369{
Barry Naujok556b8b12008-04-10 12:22:07 +1000370 struct xfs_name name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 int error;
372
Barry Naujok556b8b12008-04-10 12:22:07 +1000373 xfs_dentry_to_name(&name, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
Christoph Hellwige5700702008-06-23 13:25:25 +1000375 error = -xfs_remove(XFS_I(dir), &name, XFS_I(dentry->d_inode));
376 if (error)
377 return error;
378
379 /*
380 * With unlink, the VFS makes the dentry "negative": no inode,
381 * but still hashed. This is incompatible with case-insensitive
382 * mode, so invalidate (unhash) the dentry in CI-mode.
383 */
384 if (xfs_sb_version_hasasciici(&XFS_M(dir->i_sb)->m_sb))
385 d_invalidate(dentry);
386 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387}
388
389STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100390xfs_vn_symlink(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 struct inode *dir,
392 struct dentry *dentry,
393 const char *symname)
394{
Christoph Hellwig3937be52008-03-06 13:46:19 +1100395 struct inode *inode;
396 struct xfs_inode *cip = NULL;
Barry Naujok556b8b12008-04-10 12:22:07 +1000397 struct xfs_name name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 int error;
Christoph Hellwig3e5daf02007-10-11 18:09:12 +1000399 mode_t mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
Christoph Hellwig3e5daf02007-10-11 18:09:12 +1000401 mode = S_IFLNK |
Al Viroce3b0f82009-03-29 19:08:22 -0400402 (irix_symlink_mode ? 0777 & ~current_umask() : S_IRWXUGO);
Barry Naujok556b8b12008-04-10 12:22:07 +1000403 xfs_dentry_to_name(&name, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Barry Naujok556b8b12008-04-10 12:22:07 +1000405 error = xfs_symlink(XFS_I(dir), &name, symname, mode, &cip, NULL);
Christoph Hellwig3937be52008-03-06 13:46:19 +1100406 if (unlikely(error))
407 goto out;
408
David Chinner01651642008-08-13 15:45:15 +1000409 inode = VFS_I(cip);
Christoph Hellwig3937be52008-03-06 13:46:19 +1100410
411 error = xfs_init_security(inode, dir);
412 if (unlikely(error))
413 goto out_cleanup_inode;
414
415 d_instantiate(dentry, inode);
Christoph Hellwig3937be52008-03-06 13:46:19 +1100416 return 0;
417
418 out_cleanup_inode:
Christoph Hellwig8f112e32008-06-23 13:25:17 +1000419 xfs_cleanup_inode(dir, inode, dentry);
Christoph Hellwig3937be52008-03-06 13:46:19 +1100420 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 return -error;
422}
423
424STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100425xfs_vn_rename(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 struct inode *odir,
427 struct dentry *odentry,
428 struct inode *ndir,
429 struct dentry *ndentry)
430{
431 struct inode *new_inode = ndentry->d_inode;
Barry Naujok556b8b12008-04-10 12:22:07 +1000432 struct xfs_name oname;
433 struct xfs_name nname;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Barry Naujok556b8b12008-04-10 12:22:07 +1000435 xfs_dentry_to_name(&oname, odentry);
436 xfs_dentry_to_name(&nname, ndentry);
437
Christoph Hellwige5700702008-06-23 13:25:25 +1000438 return -xfs_rename(XFS_I(odir), &oname, XFS_I(odentry->d_inode),
Christoph Hellwigcfa853e2008-04-22 17:34:06 +1000439 XFS_I(ndir), &nname, new_inode ?
440 XFS_I(new_inode) : NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441}
442
443/*
444 * careful here - this function can get called recursively, so
445 * we need to be very careful about how much stack we use.
446 * uio is kmalloced for this reason...
447 */
Al Viro008b1502005-08-20 00:17:39 +0100448STATIC void *
Nathan Scott416c6d52006-03-14 14:00:51 +1100449xfs_vn_follow_link(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 struct dentry *dentry,
451 struct nameidata *nd)
452{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 char *link;
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000454 int error = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Panagiotis Issarisf52720c2006-09-27 01:49:39 -0700456 link = kmalloc(MAXPATHLEN+1, GFP_KERNEL);
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000457 if (!link)
458 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000460 error = -xfs_readlink(XFS_I(dentry->d_inode), link);
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000461 if (unlikely(error))
462 goto out_kfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
464 nd_set_link(nd, link);
Al Viro008b1502005-08-20 00:17:39 +0100465 return NULL;
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000466
467 out_kfree:
468 kfree(link);
469 out_err:
470 nd_set_link(nd, ERR_PTR(error));
471 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472}
473
Nathan Scottcde410a2005-09-05 11:47:01 +1000474STATIC void
Nathan Scott416c6d52006-03-14 14:00:51 +1100475xfs_vn_put_link(
Nathan Scottcde410a2005-09-05 11:47:01 +1000476 struct dentry *dentry,
477 struct nameidata *nd,
478 void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479{
Nathan Scottcde410a2005-09-05 11:47:01 +1000480 char *s = nd_get_link(nd);
481
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 if (!IS_ERR(s))
483 kfree(s);
484}
485
Christoph Hellwig45767582008-02-05 12:13:24 +1100486STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100487xfs_vn_getattr(
Christoph Hellwigc43f4082007-10-11 17:46:39 +1000488 struct vfsmount *mnt,
489 struct dentry *dentry,
490 struct kstat *stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491{
Christoph Hellwigc43f4082007-10-11 17:46:39 +1000492 struct inode *inode = dentry->d_inode;
493 struct xfs_inode *ip = XFS_I(inode);
494 struct xfs_mount *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
Christoph Hellwigc43f4082007-10-11 17:46:39 +1000496 xfs_itrace_entry(ip);
497
498 if (XFS_FORCED_SHUTDOWN(mp))
499 return XFS_ERROR(EIO);
500
501 stat->size = XFS_ISIZE(ip);
502 stat->dev = inode->i_sb->s_dev;
503 stat->mode = ip->i_d.di_mode;
504 stat->nlink = ip->i_d.di_nlink;
505 stat->uid = ip->i_d.di_uid;
506 stat->gid = ip->i_d.di_gid;
507 stat->ino = ip->i_ino;
Christoph Hellwigc43f4082007-10-11 17:46:39 +1000508 stat->atime = inode->i_atime;
509 stat->mtime.tv_sec = ip->i_d.di_mtime.t_sec;
510 stat->mtime.tv_nsec = ip->i_d.di_mtime.t_nsec;
511 stat->ctime.tv_sec = ip->i_d.di_ctime.t_sec;
512 stat->ctime.tv_nsec = ip->i_d.di_ctime.t_nsec;
513 stat->blocks =
514 XFS_FSB_TO_BB(mp, ip->i_d.di_nblocks + ip->i_delayed_blks);
515
516
517 switch (inode->i_mode & S_IFMT) {
518 case S_IFBLK:
519 case S_IFCHR:
520 stat->blksize = BLKDEV_IOSIZE;
521 stat->rdev = MKDEV(sysv_major(ip->i_df.if_u2.if_rdev) & 0x1ff,
522 sysv_minor(ip->i_df.if_u2.if_rdev));
523 break;
524 default:
Eric Sandeen71ddabb2007-11-23 16:29:42 +1100525 if (XFS_IS_REALTIME_INODE(ip)) {
Christoph Hellwigc43f4082007-10-11 17:46:39 +1000526 /*
527 * If the file blocks are being allocated from a
528 * realtime volume, then return the inode's realtime
529 * extent size or the realtime volume's extent size.
530 */
531 stat->blksize =
532 xfs_get_extsz_hint(ip) << mp->m_sb.sb_blocklog;
533 } else
534 stat->blksize = xfs_preferred_iosize(mp);
535 stat->rdev = 0;
536 break;
Nathan Scott69e23b92006-09-28 11:01:22 +1000537 }
Christoph Hellwigc43f4082007-10-11 17:46:39 +1000538
539 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540}
541
542STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100543xfs_vn_setattr(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 struct dentry *dentry,
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000545 struct iattr *iattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546{
Christoph Hellwigea5a3dc82008-10-30 18:27:48 +1100547 return -xfs_setattr(XFS_I(dentry->d_inode), iattr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548}
549
David Chinnerd87dd632008-04-10 12:21:46 +1000550/*
551 * block_truncate_page can return an error, but we can't propagate it
552 * at all here. Leave a complaint + stack trace in the syslog because
553 * this could be bad. If it is bad, we need to propagate the error further.
554 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555STATIC void
Nathan Scott416c6d52006-03-14 14:00:51 +1100556xfs_vn_truncate(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 struct inode *inode)
558{
David Chinnerd87dd632008-04-10 12:21:46 +1000559 int error;
560 error = block_truncate_page(inode->i_mapping, inode->i_size,
561 xfs_get_blocks);
562 WARN_ON(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563}
564
David Chinner3ed65262007-11-23 16:29:25 +1100565STATIC long
566xfs_vn_fallocate(
567 struct inode *inode,
568 int mode,
569 loff_t offset,
570 loff_t len)
571{
572 long error;
573 loff_t new_size = 0;
574 xfs_flock64_t bf;
575 xfs_inode_t *ip = XFS_I(inode);
576
577 /* preallocation on directories not yet supported */
578 error = -ENODEV;
579 if (S_ISDIR(inode->i_mode))
580 goto out_error;
581
582 bf.l_whence = 0;
583 bf.l_start = offset;
584 bf.l_len = len;
585
586 xfs_ilock(ip, XFS_IOLOCK_EXCL);
587 error = xfs_change_file_space(ip, XFS_IOC_RESVSP, &bf,
Christoph Hellwigea5a3dc82008-10-30 18:27:48 +1100588 0, XFS_ATTR_NOLOCK);
David Chinner3ed65262007-11-23 16:29:25 +1100589 if (!error && !(mode & FALLOC_FL_KEEP_SIZE) &&
590 offset + len > i_size_read(inode))
591 new_size = offset + len;
592
593 /* Change file size if needed */
594 if (new_size) {
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000595 struct iattr iattr;
David Chinner3ed65262007-11-23 16:29:25 +1100596
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000597 iattr.ia_valid = ATTR_SIZE;
598 iattr.ia_size = new_size;
Christoph Hellwigea5a3dc82008-10-30 18:27:48 +1100599 error = xfs_setattr(ip, &iattr, XFS_ATTR_NOLOCK);
David Chinner3ed65262007-11-23 16:29:25 +1100600 }
601
602 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
603out_error:
604 return error;
605}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
Eric Sandeenf35642e2008-11-28 14:23:35 +1100607#define XFS_FIEMAP_FLAGS (FIEMAP_FLAG_SYNC|FIEMAP_FLAG_XATTR)
608
609/*
610 * Call fiemap helper to fill in user data.
611 * Returns positive errors to xfs_getbmap.
612 */
613STATIC int
614xfs_fiemap_format(
615 void **arg,
616 struct getbmapx *bmv,
617 int *full)
618{
619 int error;
620 struct fiemap_extent_info *fieinfo = *arg;
621 u32 fiemap_flags = 0;
622 u64 logical, physical, length;
623
624 /* Do nothing for a hole */
625 if (bmv->bmv_block == -1LL)
626 return 0;
627
628 logical = BBTOB(bmv->bmv_offset);
629 physical = BBTOB(bmv->bmv_block);
630 length = BBTOB(bmv->bmv_length);
631
632 if (bmv->bmv_oflags & BMV_OF_PREALLOC)
633 fiemap_flags |= FIEMAP_EXTENT_UNWRITTEN;
634 else if (bmv->bmv_oflags & BMV_OF_DELALLOC) {
635 fiemap_flags |= FIEMAP_EXTENT_DELALLOC;
636 physical = 0; /* no block yet */
637 }
638 if (bmv->bmv_oflags & BMV_OF_LAST)
639 fiemap_flags |= FIEMAP_EXTENT_LAST;
640
641 error = fiemap_fill_next_extent(fieinfo, logical, physical,
642 length, fiemap_flags);
643 if (error > 0) {
644 error = 0;
645 *full = 1; /* user array now full */
646 }
647
648 return -error;
649}
650
651STATIC int
652xfs_vn_fiemap(
653 struct inode *inode,
654 struct fiemap_extent_info *fieinfo,
655 u64 start,
656 u64 length)
657{
658 xfs_inode_t *ip = XFS_I(inode);
659 struct getbmapx bm;
660 int error;
661
662 error = fiemap_check_flags(fieinfo, XFS_FIEMAP_FLAGS);
663 if (error)
664 return error;
665
666 /* Set up bmap header for xfs internal routine */
667 bm.bmv_offset = BTOBB(start);
668 /* Special case for whole file */
669 if (length == FIEMAP_MAX_OFFSET)
670 bm.bmv_length = -1LL;
671 else
672 bm.bmv_length = BTOBB(length);
673
Eric Sandeen97db39a2009-07-26 21:52:01 -0500674 /* We add one because in getbmap world count includes the header */
675 bm.bmv_count = fieinfo->fi_extents_max + 1;
Eric Sandeenf35642e2008-11-28 14:23:35 +1100676 bm.bmv_iflags = BMV_IF_PREALLOC;
677 if (fieinfo->fi_flags & FIEMAP_FLAG_XATTR)
678 bm.bmv_iflags |= BMV_IF_ATTRFORK;
679 if (!(fieinfo->fi_flags & FIEMAP_FLAG_SYNC))
680 bm.bmv_iflags |= BMV_IF_DELALLOC;
681
682 error = xfs_getbmap(ip, &bm, xfs_fiemap_format, fieinfo);
683 if (error)
684 return -error;
685
686 return 0;
687}
688
Christoph Hellwig41be8be2008-08-13 16:23:13 +1000689static const struct inode_operations xfs_inode_operations = {
Linus Torvalds18f4c642009-08-28 12:29:03 -0700690 .check_acl = xfs_check_acl,
Nathan Scott416c6d52006-03-14 14:00:51 +1100691 .truncate = xfs_vn_truncate,
692 .getattr = xfs_vn_getattr,
693 .setattr = xfs_vn_setattr,
Lachlan McIlroy0ec58512008-06-23 13:23:01 +1000694 .setxattr = generic_setxattr,
695 .getxattr = generic_getxattr,
696 .removexattr = generic_removexattr,
Nathan Scott416c6d52006-03-14 14:00:51 +1100697 .listxattr = xfs_vn_listxattr,
David Chinner3ed65262007-11-23 16:29:25 +1100698 .fallocate = xfs_vn_fallocate,
Eric Sandeenf35642e2008-11-28 14:23:35 +1100699 .fiemap = xfs_vn_fiemap,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700};
701
Christoph Hellwig41be8be2008-08-13 16:23:13 +1000702static const struct inode_operations xfs_dir_inode_operations = {
Nathan Scott416c6d52006-03-14 14:00:51 +1100703 .create = xfs_vn_create,
704 .lookup = xfs_vn_lookup,
705 .link = xfs_vn_link,
706 .unlink = xfs_vn_unlink,
707 .symlink = xfs_vn_symlink,
708 .mkdir = xfs_vn_mkdir,
Christoph Hellwig8f112e32008-06-23 13:25:17 +1000709 /*
710 * Yes, XFS uses the same method for rmdir and unlink.
711 *
712 * There are some subtile differences deeper in the code,
713 * but we use S_ISDIR to check for those.
714 */
715 .rmdir = xfs_vn_unlink,
Nathan Scott416c6d52006-03-14 14:00:51 +1100716 .mknod = xfs_vn_mknod,
717 .rename = xfs_vn_rename,
Linus Torvalds18f4c642009-08-28 12:29:03 -0700718 .check_acl = xfs_check_acl,
Nathan Scott416c6d52006-03-14 14:00:51 +1100719 .getattr = xfs_vn_getattr,
720 .setattr = xfs_vn_setattr,
Lachlan McIlroy0ec58512008-06-23 13:23:01 +1000721 .setxattr = generic_setxattr,
722 .getxattr = generic_getxattr,
723 .removexattr = generic_removexattr,
Nathan Scott416c6d52006-03-14 14:00:51 +1100724 .listxattr = xfs_vn_listxattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725};
726
Christoph Hellwig41be8be2008-08-13 16:23:13 +1000727static const struct inode_operations xfs_dir_ci_inode_operations = {
Barry Naujok384f3ce2008-05-21 16:58:22 +1000728 .create = xfs_vn_create,
729 .lookup = xfs_vn_ci_lookup,
730 .link = xfs_vn_link,
731 .unlink = xfs_vn_unlink,
732 .symlink = xfs_vn_symlink,
733 .mkdir = xfs_vn_mkdir,
Christoph Hellwig8f112e32008-06-23 13:25:17 +1000734 /*
735 * Yes, XFS uses the same method for rmdir and unlink.
736 *
737 * There are some subtile differences deeper in the code,
738 * but we use S_ISDIR to check for those.
739 */
740 .rmdir = xfs_vn_unlink,
Barry Naujok384f3ce2008-05-21 16:58:22 +1000741 .mknod = xfs_vn_mknod,
742 .rename = xfs_vn_rename,
Linus Torvalds18f4c642009-08-28 12:29:03 -0700743 .check_acl = xfs_check_acl,
Barry Naujok384f3ce2008-05-21 16:58:22 +1000744 .getattr = xfs_vn_getattr,
745 .setattr = xfs_vn_setattr,
Lachlan McIlroy0ec58512008-06-23 13:23:01 +1000746 .setxattr = generic_setxattr,
747 .getxattr = generic_getxattr,
748 .removexattr = generic_removexattr,
Barry Naujok384f3ce2008-05-21 16:58:22 +1000749 .listxattr = xfs_vn_listxattr,
Barry Naujok384f3ce2008-05-21 16:58:22 +1000750};
751
Christoph Hellwig41be8be2008-08-13 16:23:13 +1000752static const struct inode_operations xfs_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 .readlink = generic_readlink,
Nathan Scott416c6d52006-03-14 14:00:51 +1100754 .follow_link = xfs_vn_follow_link,
755 .put_link = xfs_vn_put_link,
Linus Torvalds18f4c642009-08-28 12:29:03 -0700756 .check_acl = xfs_check_acl,
Nathan Scott416c6d52006-03-14 14:00:51 +1100757 .getattr = xfs_vn_getattr,
758 .setattr = xfs_vn_setattr,
Lachlan McIlroy0ec58512008-06-23 13:23:01 +1000759 .setxattr = generic_setxattr,
760 .getxattr = generic_getxattr,
761 .removexattr = generic_removexattr,
Nathan Scott416c6d52006-03-14 14:00:51 +1100762 .listxattr = xfs_vn_listxattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763};
Christoph Hellwig41be8be2008-08-13 16:23:13 +1000764
765STATIC void
766xfs_diflags_to_iflags(
767 struct inode *inode,
768 struct xfs_inode *ip)
769{
770 if (ip->i_d.di_flags & XFS_DIFLAG_IMMUTABLE)
771 inode->i_flags |= S_IMMUTABLE;
772 else
773 inode->i_flags &= ~S_IMMUTABLE;
774 if (ip->i_d.di_flags & XFS_DIFLAG_APPEND)
775 inode->i_flags |= S_APPEND;
776 else
777 inode->i_flags &= ~S_APPEND;
778 if (ip->i_d.di_flags & XFS_DIFLAG_SYNC)
779 inode->i_flags |= S_SYNC;
780 else
781 inode->i_flags &= ~S_SYNC;
782 if (ip->i_d.di_flags & XFS_DIFLAG_NOATIME)
783 inode->i_flags |= S_NOATIME;
784 else
785 inode->i_flags &= ~S_NOATIME;
786}
787
788/*
789 * Initialize the Linux inode, set up the operation vectors and
790 * unlock the inode.
791 *
792 * When reading existing inodes from disk this is called directly
793 * from xfs_iget, when creating a new inode it is called from
794 * xfs_ialloc after setting up the inode.
David Chinnerbf904242008-10-30 17:36:14 +1100795 *
796 * We are always called with an uninitialised linux inode here.
797 * We need to initialise the necessary fields and take a reference
798 * on it.
Christoph Hellwig41be8be2008-08-13 16:23:13 +1000799 */
800void
801xfs_setup_inode(
802 struct xfs_inode *ip)
803{
David Chinnerbf904242008-10-30 17:36:14 +1100804 struct inode *inode = &ip->i_vnode;
805
806 inode->i_ino = ip->i_ino;
807 inode->i_state = I_NEW|I_LOCK;
808 inode_add_to_lists(ip->i_mount->m_super, inode);
Christoph Hellwig41be8be2008-08-13 16:23:13 +1000809
810 inode->i_mode = ip->i_d.di_mode;
811 inode->i_nlink = ip->i_d.di_nlink;
812 inode->i_uid = ip->i_d.di_uid;
813 inode->i_gid = ip->i_d.di_gid;
814
815 switch (inode->i_mode & S_IFMT) {
816 case S_IFBLK:
817 case S_IFCHR:
818 inode->i_rdev =
819 MKDEV(sysv_major(ip->i_df.if_u2.if_rdev) & 0x1ff,
820 sysv_minor(ip->i_df.if_u2.if_rdev));
821 break;
822 default:
823 inode->i_rdev = 0;
824 break;
825 }
826
827 inode->i_generation = ip->i_d.di_gen;
828 i_size_write(inode, ip->i_d.di_size);
829 inode->i_atime.tv_sec = ip->i_d.di_atime.t_sec;
830 inode->i_atime.tv_nsec = ip->i_d.di_atime.t_nsec;
831 inode->i_mtime.tv_sec = ip->i_d.di_mtime.t_sec;
832 inode->i_mtime.tv_nsec = ip->i_d.di_mtime.t_nsec;
833 inode->i_ctime.tv_sec = ip->i_d.di_ctime.t_sec;
834 inode->i_ctime.tv_nsec = ip->i_d.di_ctime.t_nsec;
835 xfs_diflags_to_iflags(inode, ip);
Christoph Hellwig41be8be2008-08-13 16:23:13 +1000836
837 switch (inode->i_mode & S_IFMT) {
838 case S_IFREG:
839 inode->i_op = &xfs_inode_operations;
840 inode->i_fop = &xfs_file_operations;
841 inode->i_mapping->a_ops = &xfs_address_space_operations;
842 break;
843 case S_IFDIR:
844 if (xfs_sb_version_hasasciici(&XFS_M(inode->i_sb)->m_sb))
845 inode->i_op = &xfs_dir_ci_inode_operations;
846 else
847 inode->i_op = &xfs_dir_inode_operations;
848 inode->i_fop = &xfs_dir_file_operations;
849 break;
850 case S_IFLNK:
851 inode->i_op = &xfs_symlink_inode_operations;
852 if (!(ip->i_df.if_flags & XFS_IFINLINE))
853 inode->i_mapping->a_ops = &xfs_address_space_operations;
854 break;
855 default:
856 inode->i_op = &xfs_inode_operations;
857 init_special_inode(inode, inode->i_mode, inode->i_rdev);
858 break;
859 }
860
861 xfs_iflags_clear(ip, XFS_INEW);
862 barrier();
863
864 unlock_new_inode(inode);
865}