blob: cdf7114d41fc32615007253f05cc14743b2e2b63 [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 Hellwigf9581b12009-10-06 20:29:26 +000060 * Bring the timestamps in the XFS inode uptodate.
61 *
62 * Used before writing the inode to disk.
Christoph Hellwig42fe2b12006-01-11 15:35:17 +110063 */
64void
Christoph Hellwigf9581b12009-10-06 20:29:26 +000065xfs_synchronize_times(
Christoph Hellwig42fe2b12006-01-11 15:35:17 +110066 xfs_inode_t *ip)
67{
David Chinner01651642008-08-13 15:45:15 +100068 struct inode *inode = VFS_I(ip);
Christoph Hellwig42fe2b12006-01-11 15:35:17 +110069
Christoph Hellwigf9581b12009-10-06 20:29:26 +000070 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;
72 ip->i_d.di_ctime.t_sec = (__int32_t)inode->i_ctime.tv_sec;
73 ip->i_d.di_ctime.t_nsec = (__int32_t)inode->i_ctime.tv_nsec;
74 ip->i_d.di_mtime.t_sec = (__int32_t)inode->i_mtime.tv_sec;
75 ip->i_d.di_mtime.t_nsec = (__int32_t)inode->i_mtime.tv_nsec;
Christoph Hellwig42fe2b12006-01-11 15:35:17 +110076}
77
78/*
David Chinnerbf904242008-10-30 17:36:14 +110079 * If the linux inode is valid, mark it dirty.
David Chinner5d51eff2007-11-23 16:29:18 +110080 * Used when commiting a dirty inode into a transaction so that
81 * the inode will get written back by the linux code
82 */
83void
84xfs_mark_inode_dirty_sync(
85 xfs_inode_t *ip)
86{
David Chinner01651642008-08-13 15:45:15 +100087 struct inode *inode = VFS_I(ip);
David Chinner5d51eff2007-11-23 16:29:18 +110088
David Chinnerbf904242008-10-30 17:36:14 +110089 if (!(inode->i_state & (I_WILL_FREE|I_FREEING|I_CLEAR)))
Christoph Hellwigaf048192008-03-06 13:46:43 +110090 mark_inode_dirty_sync(inode);
David Chinner5d51eff2007-11-23 16:29:18 +110091}
92
93/*
Nathan Scott4aeb6642005-11-02 11:43:58 +110094 * Change the requested timestamp in the given inode.
95 * We don't lock across timestamp updates, and we don't log them but
96 * we do record the fact that there is dirty information in core.
Nathan Scott4aeb6642005-11-02 11:43:58 +110097 */
98void
99xfs_ichgtime(
100 xfs_inode_t *ip,
101 int flags)
102{
David Chinnere4f75292008-08-13 16:00:45 +1000103 struct inode *inode = VFS_I(ip);
Nathan Scott4aeb6642005-11-02 11:43:58 +1100104 timespec_t tv;
Christoph Hellwig8e5975c2008-08-13 16:45:13 +1000105 int sync_it = 0;
Nathan Scott4aeb6642005-11-02 11:43:58 +1100106
Christoph Hellwig8e5975c2008-08-13 16:45:13 +1000107 tv = current_fs_time(inode->i_sb);
108
109 if ((flags & XFS_ICHGTIME_MOD) &&
110 !timespec_equal(&inode->i_mtime, &tv)) {
Nathan Scott4aeb6642005-11-02 11:43:58 +1100111 inode->i_mtime = tv;
Christoph Hellwig8e5975c2008-08-13 16:45:13 +1000112 sync_it = 1;
Nathan Scott4aeb6642005-11-02 11:43:58 +1100113 }
Christoph Hellwig8e5975c2008-08-13 16:45:13 +1000114 if ((flags & XFS_ICHGTIME_CHG) &&
115 !timespec_equal(&inode->i_ctime, &tv)) {
Nathan Scott4aeb6642005-11-02 11:43:58 +1100116 inode->i_ctime = tv;
Christoph Hellwig8e5975c2008-08-13 16:45:13 +1000117 sync_it = 1;
Nathan Scott4aeb6642005-11-02 11:43:58 +1100118 }
119
120 /*
Christoph Hellwigf9581b12009-10-06 20:29:26 +0000121 * Update complete - now make sure everyone knows that the inode
122 * is dirty.
Nathan Scott4aeb6642005-11-02 11:43:58 +1100123 */
Christoph Hellwigf9581b12009-10-06 20:29:26 +0000124 if (sync_it)
David Chinner94b97e32008-10-30 17:21:30 +1100125 xfs_mark_inode_dirty_sync(ip);
Nathan Scott4aeb6642005-11-02 11:43:58 +1100126}
127
128/*
Nathan Scott446ada42006-01-11 15:35:44 +1100129 * Hook in SELinux. This is not quite correct yet, what we really need
130 * here (as we do for default ACLs) is a mechanism by which creation of
131 * these attrs can be journalled at inode creation time (along with the
132 * inode, of course, such that log replay can't cause these to be lost).
133 */
134STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100135xfs_init_security(
Christoph Hellwigaf048192008-03-06 13:46:43 +1100136 struct inode *inode,
Nathan Scott446ada42006-01-11 15:35:44 +1100137 struct inode *dir)
138{
Christoph Hellwigaf048192008-03-06 13:46:43 +1100139 struct xfs_inode *ip = XFS_I(inode);
Nathan Scott446ada42006-01-11 15:35:44 +1100140 size_t length;
141 void *value;
142 char *name;
143 int error;
144
Christoph Hellwigaf048192008-03-06 13:46:43 +1100145 error = security_inode_init_security(inode, dir, &name,
146 &value, &length);
Nathan Scott446ada42006-01-11 15:35:44 +1100147 if (error) {
148 if (error == -EOPNOTSUPP)
149 return 0;
150 return -error;
151 }
152
Christoph Hellwigaf048192008-03-06 13:46:43 +1100153 error = xfs_attr_set(ip, name, value, length, ATTR_SECURE);
Nathan Scott446ada42006-01-11 15:35:44 +1100154
155 kfree(name);
156 kfree(value);
157 return error;
158}
159
Barry Naujok556b8b12008-04-10 12:22:07 +1000160static void
161xfs_dentry_to_name(
162 struct xfs_name *namep,
163 struct dentry *dentry)
164{
165 namep->name = dentry->d_name.name;
166 namep->len = dentry->d_name.len;
167}
168
David Chinner7989cb82007-02-10 18:34:56 +1100169STATIC void
Nathan Scott416c6d52006-03-14 14:00:51 +1100170xfs_cleanup_inode(
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000171 struct inode *dir,
Christoph Hellwigaf048192008-03-06 13:46:43 +1100172 struct inode *inode,
Christoph Hellwig8f112e32008-06-23 13:25:17 +1000173 struct dentry *dentry)
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100174{
Barry Naujok556b8b12008-04-10 12:22:07 +1000175 struct xfs_name teardown;
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100176
177 /* Oh, the horror.
Nathan Scott220b5282006-03-14 13:33:36 +1100178 * If we can't add the ACL or we fail in
Nathan Scott416c6d52006-03-14 14:00:51 +1100179 * xfs_init_security we must back out.
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100180 * ENOSPC can hit here, among other things.
181 */
Barry Naujok556b8b12008-04-10 12:22:07 +1000182 xfs_dentry_to_name(&teardown, dentry);
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100183
Christoph Hellwig8f112e32008-06-23 13:25:17 +1000184 xfs_remove(XFS_I(dir), &teardown, XFS_I(inode));
Christoph Hellwigaf048192008-03-06 13:46:43 +1100185 iput(inode);
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100186}
187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100189xfs_vn_mknod(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 struct inode *dir,
191 struct dentry *dentry,
192 int mode,
193 dev_t rdev)
194{
Christoph Hellwigdb0bb7b2008-03-06 13:44:35 +1100195 struct inode *inode;
Christoph Hellwig979ebab2008-03-06 13:46:05 +1100196 struct xfs_inode *ip = NULL;
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200197 struct posix_acl *default_acl = NULL;
Barry Naujok556b8b12008-04-10 12:22:07 +1000198 struct xfs_name name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 int error;
200
201 /*
202 * Irix uses Missed'em'V split, but doesn't want to see
203 * the upper 5 bits of (14bit) major.
204 */
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100205 if (S_ISCHR(mode) || S_ISBLK(mode)) {
206 if (unlikely(!sysv_valid_dev(rdev) || MAJOR(rdev) & ~0x1ff))
207 return -EINVAL;
208 rdev = sysv_encode_dev(rdev);
209 } else {
210 rdev = 0;
211 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200213 if (IS_POSIXACL(dir)) {
214 default_acl = xfs_get_acl(dir, ACL_TYPE_DEFAULT);
215 if (IS_ERR(default_acl))
216 return -PTR_ERR(default_acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Christoph Hellwige83f1eb2009-06-12 11:19:11 -0400218 if (!default_acl)
219 mode &= ~current_umask();
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200220 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100222 xfs_dentry_to_name(&name, dentry);
223 error = xfs_create(XFS_I(dir), &name, mode, rdev, &ip, NULL);
Christoph Hellwigdb0bb7b2008-03-06 13:44:35 +1100224 if (unlikely(error))
225 goto out_free_acl;
Nathan Scott446ada42006-01-11 15:35:44 +1100226
David Chinner01651642008-08-13 15:45:15 +1000227 inode = VFS_I(ip);
Christoph Hellwig979ebab2008-03-06 13:46:05 +1100228
229 error = xfs_init_security(inode, dir);
Christoph Hellwigdb0bb7b2008-03-06 13:44:35 +1100230 if (unlikely(error))
231 goto out_cleanup_inode;
232
233 if (default_acl) {
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200234 error = -xfs_inherit_acl(inode, default_acl);
Christoph Hellwigdb0bb7b2008-03-06 13:44:35 +1100235 if (unlikely(error))
236 goto out_cleanup_inode;
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200237 posix_acl_release(default_acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 }
239
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Christoph Hellwigdb0bb7b2008-03-06 13:44:35 +1100241 d_instantiate(dentry, inode);
Christoph Hellwigdb0bb7b2008-03-06 13:44:35 +1100242 return -error;
243
244 out_cleanup_inode:
Christoph Hellwig8f112e32008-06-23 13:25:17 +1000245 xfs_cleanup_inode(dir, inode, dentry);
Christoph Hellwigdb0bb7b2008-03-06 13:44:35 +1100246 out_free_acl:
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200247 posix_acl_release(default_acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 return -error;
249}
250
251STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100252xfs_vn_create(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 struct inode *dir,
254 struct dentry *dentry,
255 int mode,
256 struct nameidata *nd)
257{
Nathan Scott416c6d52006-03-14 14:00:51 +1100258 return xfs_vn_mknod(dir, dentry, mode, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259}
260
261STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100262xfs_vn_mkdir(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 struct inode *dir,
264 struct dentry *dentry,
265 int mode)
266{
Nathan Scott416c6d52006-03-14 14:00:51 +1100267 return xfs_vn_mknod(dir, dentry, mode|S_IFDIR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268}
269
270STATIC struct dentry *
Nathan Scott416c6d52006-03-14 14:00:51 +1100271xfs_vn_lookup(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 struct inode *dir,
273 struct dentry *dentry,
274 struct nameidata *nd)
275{
Christoph Hellwigef1f5e72008-03-06 13:46:25 +1100276 struct xfs_inode *cip;
Barry Naujok556b8b12008-04-10 12:22:07 +1000277 struct xfs_name name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 int error;
279
280 if (dentry->d_name.len >= MAXNAMELEN)
281 return ERR_PTR(-ENAMETOOLONG);
282
Barry Naujok556b8b12008-04-10 12:22:07 +1000283 xfs_dentry_to_name(&name, dentry);
Barry Naujok384f3ce2008-05-21 16:58:22 +1000284 error = xfs_lookup(XFS_I(dir), &name, &cip, NULL);
Nathan Scott67fcaa72006-06-09 17:00:52 +1000285 if (unlikely(error)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 if (unlikely(error != ENOENT))
287 return ERR_PTR(-error);
288 d_add(dentry, NULL);
289 return NULL;
290 }
291
David Chinner01651642008-08-13 15:45:15 +1000292 return d_splice_alias(VFS_I(cip), dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293}
294
Barry Naujok384f3ce2008-05-21 16:58:22 +1000295STATIC struct dentry *
296xfs_vn_ci_lookup(
297 struct inode *dir,
298 struct dentry *dentry,
299 struct nameidata *nd)
300{
301 struct xfs_inode *ip;
302 struct xfs_name xname;
303 struct xfs_name ci_name;
304 struct qstr dname;
305 int error;
306
307 if (dentry->d_name.len >= MAXNAMELEN)
308 return ERR_PTR(-ENAMETOOLONG);
309
310 xfs_dentry_to_name(&xname, dentry);
311 error = xfs_lookup(XFS_I(dir), &xname, &ip, &ci_name);
312 if (unlikely(error)) {
313 if (unlikely(error != ENOENT))
314 return ERR_PTR(-error);
Barry Naujok866d5dc2008-05-22 17:21:40 +1000315 /*
316 * call d_add(dentry, NULL) here when d_drop_negative_children
317 * is called in xfs_vn_mknod (ie. allow negative dentries
318 * with CI filesystems).
319 */
Barry Naujok384f3ce2008-05-21 16:58:22 +1000320 return NULL;
321 }
322
323 /* if exact match, just splice and exit */
324 if (!ci_name.name)
David Chinner01651642008-08-13 15:45:15 +1000325 return d_splice_alias(VFS_I(ip), dentry);
Barry Naujok384f3ce2008-05-21 16:58:22 +1000326
327 /* else case-insensitive match... */
328 dname.name = ci_name.name;
329 dname.len = ci_name.len;
Christoph Hellwige45b5902008-08-07 23:49:07 +0200330 dentry = d_add_ci(dentry, VFS_I(ip), &dname);
Barry Naujok384f3ce2008-05-21 16:58:22 +1000331 kmem_free(ci_name.name);
332 return dentry;
333}
334
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100336xfs_vn_link(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 struct dentry *old_dentry,
338 struct inode *dir,
339 struct dentry *dentry)
340{
Christoph Hellwigd9424b32008-12-03 12:20:27 +0100341 struct inode *inode = old_dentry->d_inode;
Barry Naujok556b8b12008-04-10 12:22:07 +1000342 struct xfs_name name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 int error;
344
Barry Naujok556b8b12008-04-10 12:22:07 +1000345 xfs_dentry_to_name(&name, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Barry Naujok556b8b12008-04-10 12:22:07 +1000347 error = xfs_link(XFS_I(dir), XFS_I(inode), &name);
Christoph Hellwigd9424b32008-12-03 12:20:27 +0100348 if (unlikely(error))
Christoph Hellwiga3da7892008-03-06 13:46:12 +1100349 return -error;
Christoph Hellwiga3da7892008-03-06 13:46:12 +1100350
Christoph Hellwigd9424b32008-12-03 12:20:27 +0100351 atomic_inc(&inode->i_count);
Christoph Hellwiga3da7892008-03-06 13:46:12 +1100352 d_instantiate(dentry, inode);
353 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354}
355
356STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100357xfs_vn_unlink(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 struct inode *dir,
359 struct dentry *dentry)
360{
Barry Naujok556b8b12008-04-10 12:22:07 +1000361 struct xfs_name name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 int error;
363
Barry Naujok556b8b12008-04-10 12:22:07 +1000364 xfs_dentry_to_name(&name, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
Christoph Hellwige5700702008-06-23 13:25:25 +1000366 error = -xfs_remove(XFS_I(dir), &name, XFS_I(dentry->d_inode));
367 if (error)
368 return error;
369
370 /*
371 * With unlink, the VFS makes the dentry "negative": no inode,
372 * but still hashed. This is incompatible with case-insensitive
373 * mode, so invalidate (unhash) the dentry in CI-mode.
374 */
375 if (xfs_sb_version_hasasciici(&XFS_M(dir->i_sb)->m_sb))
376 d_invalidate(dentry);
377 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378}
379
380STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100381xfs_vn_symlink(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 struct inode *dir,
383 struct dentry *dentry,
384 const char *symname)
385{
Christoph Hellwig3937be52008-03-06 13:46:19 +1100386 struct inode *inode;
387 struct xfs_inode *cip = NULL;
Barry Naujok556b8b12008-04-10 12:22:07 +1000388 struct xfs_name name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 int error;
Christoph Hellwig3e5daf02007-10-11 18:09:12 +1000390 mode_t mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
Christoph Hellwig3e5daf02007-10-11 18:09:12 +1000392 mode = S_IFLNK |
Al Viroce3b0f82009-03-29 19:08:22 -0400393 (irix_symlink_mode ? 0777 & ~current_umask() : S_IRWXUGO);
Barry Naujok556b8b12008-04-10 12:22:07 +1000394 xfs_dentry_to_name(&name, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
Barry Naujok556b8b12008-04-10 12:22:07 +1000396 error = xfs_symlink(XFS_I(dir), &name, symname, mode, &cip, NULL);
Christoph Hellwig3937be52008-03-06 13:46:19 +1100397 if (unlikely(error))
398 goto out;
399
David Chinner01651642008-08-13 15:45:15 +1000400 inode = VFS_I(cip);
Christoph Hellwig3937be52008-03-06 13:46:19 +1100401
402 error = xfs_init_security(inode, dir);
403 if (unlikely(error))
404 goto out_cleanup_inode;
405
406 d_instantiate(dentry, inode);
Christoph Hellwig3937be52008-03-06 13:46:19 +1100407 return 0;
408
409 out_cleanup_inode:
Christoph Hellwig8f112e32008-06-23 13:25:17 +1000410 xfs_cleanup_inode(dir, inode, dentry);
Christoph Hellwig3937be52008-03-06 13:46:19 +1100411 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 return -error;
413}
414
415STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100416xfs_vn_rename(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 struct inode *odir,
418 struct dentry *odentry,
419 struct inode *ndir,
420 struct dentry *ndentry)
421{
422 struct inode *new_inode = ndentry->d_inode;
Barry Naujok556b8b12008-04-10 12:22:07 +1000423 struct xfs_name oname;
424 struct xfs_name nname;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Barry Naujok556b8b12008-04-10 12:22:07 +1000426 xfs_dentry_to_name(&oname, odentry);
427 xfs_dentry_to_name(&nname, ndentry);
428
Christoph Hellwige5700702008-06-23 13:25:25 +1000429 return -xfs_rename(XFS_I(odir), &oname, XFS_I(odentry->d_inode),
Christoph Hellwigcfa853e2008-04-22 17:34:06 +1000430 XFS_I(ndir), &nname, new_inode ?
431 XFS_I(new_inode) : NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432}
433
434/*
435 * careful here - this function can get called recursively, so
436 * we need to be very careful about how much stack we use.
437 * uio is kmalloced for this reason...
438 */
Al Viro008b1502005-08-20 00:17:39 +0100439STATIC void *
Nathan Scott416c6d52006-03-14 14:00:51 +1100440xfs_vn_follow_link(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 struct dentry *dentry,
442 struct nameidata *nd)
443{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 char *link;
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000445 int error = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
Panagiotis Issarisf52720c2006-09-27 01:49:39 -0700447 link = kmalloc(MAXPATHLEN+1, GFP_KERNEL);
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000448 if (!link)
449 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000451 error = -xfs_readlink(XFS_I(dentry->d_inode), link);
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000452 if (unlikely(error))
453 goto out_kfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
455 nd_set_link(nd, link);
Al Viro008b1502005-08-20 00:17:39 +0100456 return NULL;
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000457
458 out_kfree:
459 kfree(link);
460 out_err:
461 nd_set_link(nd, ERR_PTR(error));
462 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463}
464
Nathan Scottcde410a2005-09-05 11:47:01 +1000465STATIC void
Nathan Scott416c6d52006-03-14 14:00:51 +1100466xfs_vn_put_link(
Nathan Scottcde410a2005-09-05 11:47:01 +1000467 struct dentry *dentry,
468 struct nameidata *nd,
469 void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470{
Nathan Scottcde410a2005-09-05 11:47:01 +1000471 char *s = nd_get_link(nd);
472
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 if (!IS_ERR(s))
474 kfree(s);
475}
476
Christoph Hellwig45767582008-02-05 12:13:24 +1100477STATIC int
478xfs_vn_permission(
479 struct inode *inode,
Al Viroe6305c42008-07-15 21:03:57 -0400480 int mask)
Christoph Hellwig45767582008-02-05 12:13:24 +1100481{
482 return generic_permission(inode, mask, xfs_check_acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
485STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100486xfs_vn_getattr(
Christoph Hellwigc43f4082007-10-11 17:46:39 +1000487 struct vfsmount *mnt,
488 struct dentry *dentry,
489 struct kstat *stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490{
Christoph Hellwigc43f4082007-10-11 17:46:39 +1000491 struct inode *inode = dentry->d_inode;
492 struct xfs_inode *ip = XFS_I(inode);
493 struct xfs_mount *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
Christoph Hellwigc43f4082007-10-11 17:46:39 +1000495 xfs_itrace_entry(ip);
496
497 if (XFS_FORCED_SHUTDOWN(mp))
498 return XFS_ERROR(EIO);
499
500 stat->size = XFS_ISIZE(ip);
501 stat->dev = inode->i_sb->s_dev;
502 stat->mode = ip->i_d.di_mode;
503 stat->nlink = ip->i_d.di_nlink;
504 stat->uid = ip->i_d.di_uid;
505 stat->gid = ip->i_d.di_gid;
506 stat->ino = ip->i_ino;
Christoph Hellwigc43f4082007-10-11 17:46:39 +1000507 stat->atime = inode->i_atime;
Christoph Hellwigf9581b12009-10-06 20:29:26 +0000508 stat->mtime = inode->i_mtime;
509 stat->ctime = inode->i_ctime;
Christoph Hellwigc43f4082007-10-11 17:46:39 +1000510 stat->blocks =
511 XFS_FSB_TO_BB(mp, ip->i_d.di_nblocks + ip->i_delayed_blks);
512
513
514 switch (inode->i_mode & S_IFMT) {
515 case S_IFBLK:
516 case S_IFCHR:
517 stat->blksize = BLKDEV_IOSIZE;
518 stat->rdev = MKDEV(sysv_major(ip->i_df.if_u2.if_rdev) & 0x1ff,
519 sysv_minor(ip->i_df.if_u2.if_rdev));
520 break;
521 default:
Eric Sandeen71ddabb2007-11-23 16:29:42 +1100522 if (XFS_IS_REALTIME_INODE(ip)) {
Christoph Hellwigc43f4082007-10-11 17:46:39 +1000523 /*
524 * If the file blocks are being allocated from a
525 * realtime volume, then return the inode's realtime
526 * extent size or the realtime volume's extent size.
527 */
528 stat->blksize =
529 xfs_get_extsz_hint(ip) << mp->m_sb.sb_blocklog;
530 } else
531 stat->blksize = xfs_preferred_iosize(mp);
532 stat->rdev = 0;
533 break;
Nathan Scott69e23b92006-09-28 11:01:22 +1000534 }
Christoph Hellwigc43f4082007-10-11 17:46:39 +1000535
536 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537}
538
539STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100540xfs_vn_setattr(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 struct dentry *dentry,
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000542 struct iattr *iattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543{
Christoph Hellwigea5a3dc82008-10-30 18:27:48 +1100544 return -xfs_setattr(XFS_I(dentry->d_inode), iattr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545}
546
David Chinnerd87dd632008-04-10 12:21:46 +1000547/*
548 * block_truncate_page can return an error, but we can't propagate it
549 * at all here. Leave a complaint + stack trace in the syslog because
550 * this could be bad. If it is bad, we need to propagate the error further.
551 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552STATIC void
Nathan Scott416c6d52006-03-14 14:00:51 +1100553xfs_vn_truncate(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 struct inode *inode)
555{
David Chinnerd87dd632008-04-10 12:21:46 +1000556 int error;
557 error = block_truncate_page(inode->i_mapping, inode->i_size,
558 xfs_get_blocks);
559 WARN_ON(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560}
561
David Chinner3ed65262007-11-23 16:29:25 +1100562STATIC long
563xfs_vn_fallocate(
564 struct inode *inode,
565 int mode,
566 loff_t offset,
567 loff_t len)
568{
569 long error;
570 loff_t new_size = 0;
571 xfs_flock64_t bf;
572 xfs_inode_t *ip = XFS_I(inode);
573
574 /* preallocation on directories not yet supported */
575 error = -ENODEV;
576 if (S_ISDIR(inode->i_mode))
577 goto out_error;
578
579 bf.l_whence = 0;
580 bf.l_start = offset;
581 bf.l_len = len;
582
583 xfs_ilock(ip, XFS_IOLOCK_EXCL);
584 error = xfs_change_file_space(ip, XFS_IOC_RESVSP, &bf,
Christoph Hellwigea5a3dc82008-10-30 18:27:48 +1100585 0, XFS_ATTR_NOLOCK);
David Chinner3ed65262007-11-23 16:29:25 +1100586 if (!error && !(mode & FALLOC_FL_KEEP_SIZE) &&
587 offset + len > i_size_read(inode))
588 new_size = offset + len;
589
590 /* Change file size if needed */
591 if (new_size) {
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000592 struct iattr iattr;
David Chinner3ed65262007-11-23 16:29:25 +1100593
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000594 iattr.ia_valid = ATTR_SIZE;
595 iattr.ia_size = new_size;
Christoph Hellwigea5a3dc82008-10-30 18:27:48 +1100596 error = xfs_setattr(ip, &iattr, XFS_ATTR_NOLOCK);
David Chinner3ed65262007-11-23 16:29:25 +1100597 }
598
599 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
600out_error:
601 return error;
602}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Eric Sandeenf35642e2008-11-28 14:23:35 +1100604#define XFS_FIEMAP_FLAGS (FIEMAP_FLAG_SYNC|FIEMAP_FLAG_XATTR)
605
606/*
607 * Call fiemap helper to fill in user data.
608 * Returns positive errors to xfs_getbmap.
609 */
610STATIC int
611xfs_fiemap_format(
612 void **arg,
613 struct getbmapx *bmv,
614 int *full)
615{
616 int error;
617 struct fiemap_extent_info *fieinfo = *arg;
618 u32 fiemap_flags = 0;
619 u64 logical, physical, length;
620
621 /* Do nothing for a hole */
622 if (bmv->bmv_block == -1LL)
623 return 0;
624
625 logical = BBTOB(bmv->bmv_offset);
626 physical = BBTOB(bmv->bmv_block);
627 length = BBTOB(bmv->bmv_length);
628
629 if (bmv->bmv_oflags & BMV_OF_PREALLOC)
630 fiemap_flags |= FIEMAP_EXTENT_UNWRITTEN;
631 else if (bmv->bmv_oflags & BMV_OF_DELALLOC) {
632 fiemap_flags |= FIEMAP_EXTENT_DELALLOC;
633 physical = 0; /* no block yet */
634 }
635 if (bmv->bmv_oflags & BMV_OF_LAST)
636 fiemap_flags |= FIEMAP_EXTENT_LAST;
637
638 error = fiemap_fill_next_extent(fieinfo, logical, physical,
639 length, fiemap_flags);
640 if (error > 0) {
641 error = 0;
642 *full = 1; /* user array now full */
643 }
644
645 return -error;
646}
647
648STATIC int
649xfs_vn_fiemap(
650 struct inode *inode,
651 struct fiemap_extent_info *fieinfo,
652 u64 start,
653 u64 length)
654{
655 xfs_inode_t *ip = XFS_I(inode);
656 struct getbmapx bm;
657 int error;
658
659 error = fiemap_check_flags(fieinfo, XFS_FIEMAP_FLAGS);
660 if (error)
661 return error;
662
663 /* Set up bmap header for xfs internal routine */
664 bm.bmv_offset = BTOBB(start);
665 /* Special case for whole file */
666 if (length == FIEMAP_MAX_OFFSET)
667 bm.bmv_length = -1LL;
668 else
669 bm.bmv_length = BTOBB(length);
670
Eric Sandeen97db39a2009-07-26 21:52:01 -0500671 /* We add one because in getbmap world count includes the header */
672 bm.bmv_count = fieinfo->fi_extents_max + 1;
Eric Sandeenf35642e2008-11-28 14:23:35 +1100673 bm.bmv_iflags = BMV_IF_PREALLOC;
674 if (fieinfo->fi_flags & FIEMAP_FLAG_XATTR)
675 bm.bmv_iflags |= BMV_IF_ATTRFORK;
676 if (!(fieinfo->fi_flags & FIEMAP_FLAG_SYNC))
677 bm.bmv_iflags |= BMV_IF_DELALLOC;
678
679 error = xfs_getbmap(ip, &bm, xfs_fiemap_format, fieinfo);
680 if (error)
681 return -error;
682
683 return 0;
684}
685
Christoph Hellwig41be8be2008-08-13 16:23:13 +1000686static const struct inode_operations xfs_inode_operations = {
Nathan Scott416c6d52006-03-14 14:00:51 +1100687 .permission = xfs_vn_permission,
688 .truncate = xfs_vn_truncate,
689 .getattr = xfs_vn_getattr,
690 .setattr = xfs_vn_setattr,
Lachlan McIlroy0ec58512008-06-23 13:23:01 +1000691 .setxattr = generic_setxattr,
692 .getxattr = generic_getxattr,
693 .removexattr = generic_removexattr,
Nathan Scott416c6d52006-03-14 14:00:51 +1100694 .listxattr = xfs_vn_listxattr,
David Chinner3ed65262007-11-23 16:29:25 +1100695 .fallocate = xfs_vn_fallocate,
Eric Sandeenf35642e2008-11-28 14:23:35 +1100696 .fiemap = xfs_vn_fiemap,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697};
698
Christoph Hellwig41be8be2008-08-13 16:23:13 +1000699static const struct inode_operations xfs_dir_inode_operations = {
Nathan Scott416c6d52006-03-14 14:00:51 +1100700 .create = xfs_vn_create,
701 .lookup = xfs_vn_lookup,
702 .link = xfs_vn_link,
703 .unlink = xfs_vn_unlink,
704 .symlink = xfs_vn_symlink,
705 .mkdir = xfs_vn_mkdir,
Christoph Hellwig8f112e32008-06-23 13:25:17 +1000706 /*
707 * Yes, XFS uses the same method for rmdir and unlink.
708 *
709 * There are some subtile differences deeper in the code,
710 * but we use S_ISDIR to check for those.
711 */
712 .rmdir = xfs_vn_unlink,
Nathan Scott416c6d52006-03-14 14:00:51 +1100713 .mknod = xfs_vn_mknod,
714 .rename = xfs_vn_rename,
715 .permission = xfs_vn_permission,
716 .getattr = xfs_vn_getattr,
717 .setattr = xfs_vn_setattr,
Lachlan McIlroy0ec58512008-06-23 13:23:01 +1000718 .setxattr = generic_setxattr,
719 .getxattr = generic_getxattr,
720 .removexattr = generic_removexattr,
Nathan Scott416c6d52006-03-14 14:00:51 +1100721 .listxattr = xfs_vn_listxattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722};
723
Christoph Hellwig41be8be2008-08-13 16:23:13 +1000724static const struct inode_operations xfs_dir_ci_inode_operations = {
Barry Naujok384f3ce2008-05-21 16:58:22 +1000725 .create = xfs_vn_create,
726 .lookup = xfs_vn_ci_lookup,
727 .link = xfs_vn_link,
728 .unlink = xfs_vn_unlink,
729 .symlink = xfs_vn_symlink,
730 .mkdir = xfs_vn_mkdir,
Christoph Hellwig8f112e32008-06-23 13:25:17 +1000731 /*
732 * Yes, XFS uses the same method for rmdir and unlink.
733 *
734 * There are some subtile differences deeper in the code,
735 * but we use S_ISDIR to check for those.
736 */
737 .rmdir = xfs_vn_unlink,
Barry Naujok384f3ce2008-05-21 16:58:22 +1000738 .mknod = xfs_vn_mknod,
739 .rename = xfs_vn_rename,
740 .permission = xfs_vn_permission,
741 .getattr = xfs_vn_getattr,
742 .setattr = xfs_vn_setattr,
Lachlan McIlroy0ec58512008-06-23 13:23:01 +1000743 .setxattr = generic_setxattr,
744 .getxattr = generic_getxattr,
745 .removexattr = generic_removexattr,
Barry Naujok384f3ce2008-05-21 16:58:22 +1000746 .listxattr = xfs_vn_listxattr,
Barry Naujok384f3ce2008-05-21 16:58:22 +1000747};
748
Christoph Hellwig41be8be2008-08-13 16:23:13 +1000749static const struct inode_operations xfs_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 .readlink = generic_readlink,
Nathan Scott416c6d52006-03-14 14:00:51 +1100751 .follow_link = xfs_vn_follow_link,
752 .put_link = xfs_vn_put_link,
753 .permission = xfs_vn_permission,
754 .getattr = xfs_vn_getattr,
755 .setattr = xfs_vn_setattr,
Lachlan McIlroy0ec58512008-06-23 13:23:01 +1000756 .setxattr = generic_setxattr,
757 .getxattr = generic_getxattr,
758 .removexattr = generic_removexattr,
Nathan Scott416c6d52006-03-14 14:00:51 +1100759 .listxattr = xfs_vn_listxattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760};
Christoph Hellwig41be8be2008-08-13 16:23:13 +1000761
762STATIC void
763xfs_diflags_to_iflags(
764 struct inode *inode,
765 struct xfs_inode *ip)
766{
767 if (ip->i_d.di_flags & XFS_DIFLAG_IMMUTABLE)
768 inode->i_flags |= S_IMMUTABLE;
769 else
770 inode->i_flags &= ~S_IMMUTABLE;
771 if (ip->i_d.di_flags & XFS_DIFLAG_APPEND)
772 inode->i_flags |= S_APPEND;
773 else
774 inode->i_flags &= ~S_APPEND;
775 if (ip->i_d.di_flags & XFS_DIFLAG_SYNC)
776 inode->i_flags |= S_SYNC;
777 else
778 inode->i_flags &= ~S_SYNC;
779 if (ip->i_d.di_flags & XFS_DIFLAG_NOATIME)
780 inode->i_flags |= S_NOATIME;
781 else
782 inode->i_flags &= ~S_NOATIME;
783}
784
785/*
786 * Initialize the Linux inode, set up the operation vectors and
787 * unlock the inode.
788 *
789 * When reading existing inodes from disk this is called directly
790 * from xfs_iget, when creating a new inode it is called from
791 * xfs_ialloc after setting up the inode.
David Chinnerbf904242008-10-30 17:36:14 +1100792 *
793 * We are always called with an uninitialised linux inode here.
794 * We need to initialise the necessary fields and take a reference
795 * on it.
Christoph Hellwig41be8be2008-08-13 16:23:13 +1000796 */
797void
798xfs_setup_inode(
799 struct xfs_inode *ip)
800{
David Chinnerbf904242008-10-30 17:36:14 +1100801 struct inode *inode = &ip->i_vnode;
802
803 inode->i_ino = ip->i_ino;
804 inode->i_state = I_NEW|I_LOCK;
805 inode_add_to_lists(ip->i_mount->m_super, inode);
Christoph Hellwig41be8be2008-08-13 16:23:13 +1000806
807 inode->i_mode = ip->i_d.di_mode;
808 inode->i_nlink = ip->i_d.di_nlink;
809 inode->i_uid = ip->i_d.di_uid;
810 inode->i_gid = ip->i_d.di_gid;
811
812 switch (inode->i_mode & S_IFMT) {
813 case S_IFBLK:
814 case S_IFCHR:
815 inode->i_rdev =
816 MKDEV(sysv_major(ip->i_df.if_u2.if_rdev) & 0x1ff,
817 sysv_minor(ip->i_df.if_u2.if_rdev));
818 break;
819 default:
820 inode->i_rdev = 0;
821 break;
822 }
823
824 inode->i_generation = ip->i_d.di_gen;
825 i_size_write(inode, ip->i_d.di_size);
826 inode->i_atime.tv_sec = ip->i_d.di_atime.t_sec;
827 inode->i_atime.tv_nsec = ip->i_d.di_atime.t_nsec;
828 inode->i_mtime.tv_sec = ip->i_d.di_mtime.t_sec;
829 inode->i_mtime.tv_nsec = ip->i_d.di_mtime.t_nsec;
830 inode->i_ctime.tv_sec = ip->i_d.di_ctime.t_sec;
831 inode->i_ctime.tv_nsec = ip->i_d.di_ctime.t_nsec;
832 xfs_diflags_to_iflags(inode, ip);
Christoph Hellwig41be8be2008-08-13 16:23:13 +1000833
834 switch (inode->i_mode & S_IFMT) {
835 case S_IFREG:
836 inode->i_op = &xfs_inode_operations;
837 inode->i_fop = &xfs_file_operations;
838 inode->i_mapping->a_ops = &xfs_address_space_operations;
839 break;
840 case S_IFDIR:
841 if (xfs_sb_version_hasasciici(&XFS_M(inode->i_sb)->m_sb))
842 inode->i_op = &xfs_dir_ci_inode_operations;
843 else
844 inode->i_op = &xfs_dir_inode_operations;
845 inode->i_fop = &xfs_dir_file_operations;
846 break;
847 case S_IFLNK:
848 inode->i_op = &xfs_symlink_inode_operations;
849 if (!(ip->i_df.if_flags & XFS_IFINLINE))
850 inode->i_mapping->a_ops = &xfs_address_space_operations;
851 break;
852 default:
853 inode->i_op = &xfs_inode_operations;
854 init_special_inode(inode, inode->i_mode, inode->i_rdev);
855 break;
856 }
857
858 xfs_iflags_clear(ip, XFS_INEW);
859 barrier();
860
861 unlock_new_inode(inode);
862}