blob: 52ecd1ccec9f997fe40182b29ee4de584b3e0d94 [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"
Dave Chinner6ca1c902013-08-12 20:49:26 +100020#include "xfs_format.h"
Christoph Hellwigef14f0c2009-06-10 17:07:47 +020021#include "xfs_acl.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "xfs_log.h"
23#include "xfs_trans.h"
24#include "xfs_sb.h"
25#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include "xfs_alloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_quota.h"
28#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "xfs_bmap_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "xfs_dinode.h"
31#include "xfs_inode.h"
32#include "xfs_bmap.h"
Dave Chinner68988112013-08-12 20:49:42 +100033#include "xfs_bmap_util.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "xfs_rtalloc.h"
35#include "xfs_error.h"
36#include "xfs_itable.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include "xfs_attr.h"
38#include "xfs_buf_item.h"
Christoph Hellwigc4ed4242011-07-08 14:34:23 +020039#include "xfs_inode_item.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000040#include "xfs_trace.h"
Brian Foster27b52862012-11-06 09:50:38 -050041#include "xfs_icache.h"
Dave Chinnerc24b5df2013-08-12 20:49:45 +100042#include "xfs_symlink.h"
Dave Chinner0cb97762013-08-12 20:50:09 +100043#include "xfs_da_btree.h"
44#include "xfs_dir2_format.h"
45#include "xfs_dir2_priv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080047#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/xattr.h>
49#include <linux/namei.h>
Christoph Hellwigef14f0c2009-06-10 17:07:47 +020050#include <linux/posix_acl.h>
Nathan Scott446ada42006-01-11 15:35:44 +110051#include <linux/security.h>
Eric Sandeenf35642e2008-11-28 14:23:35 +110052#include <linux/fiemap.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090053#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Dave Chinner8d2a5e62012-03-07 04:50:19 +000055static int
56xfs_initxattrs(
57 struct inode *inode,
58 const struct xattr *xattr_array,
59 void *fs_info)
Mimi Zohar9d8f13b2011-06-06 15:29:25 -040060{
Dave Chinner8d2a5e62012-03-07 04:50:19 +000061 const struct xattr *xattr;
62 struct xfs_inode *ip = XFS_I(inode);
63 int error = 0;
Mimi Zohar9d8f13b2011-06-06 15:29:25 -040064
65 for (xattr = xattr_array; xattr->name != NULL; xattr++) {
66 error = xfs_attr_set(ip, xattr->name, xattr->value,
67 xattr->value_len, ATTR_SECURE);
68 if (error < 0)
69 break;
70 }
71 return error;
72}
73
David Chinner5d51eff2007-11-23 16:29:18 +110074/*
Nathan Scott446ada42006-01-11 15:35:44 +110075 * Hook in SELinux. This is not quite correct yet, what we really need
76 * here (as we do for default ACLs) is a mechanism by which creation of
77 * these attrs can be journalled at inode creation time (along with the
78 * inode, of course, such that log replay can't cause these to be lost).
79 */
Mimi Zohar9d8f13b2011-06-06 15:29:25 -040080
Nathan Scott446ada42006-01-11 15:35:44 +110081STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +110082xfs_init_security(
Christoph Hellwigaf048192008-03-06 13:46:43 +110083 struct inode *inode,
Eric Paris2a7dba32011-02-01 11:05:39 -050084 struct inode *dir,
85 const struct qstr *qstr)
Nathan Scott446ada42006-01-11 15:35:44 +110086{
Mimi Zohar9d8f13b2011-06-06 15:29:25 -040087 return security_inode_init_security(inode, dir, qstr,
88 &xfs_initxattrs, NULL);
Nathan Scott446ada42006-01-11 15:35:44 +110089}
90
Barry Naujok556b8b12008-04-10 12:22:07 +100091static void
92xfs_dentry_to_name(
93 struct xfs_name *namep,
Dave Chinner0cb97762013-08-12 20:50:09 +100094 struct dentry *dentry,
95 int mode)
Barry Naujok556b8b12008-04-10 12:22:07 +100096{
97 namep->name = dentry->d_name.name;
98 namep->len = dentry->d_name.len;
Dave Chinner0cb97762013-08-12 20:50:09 +100099 namep->type = xfs_mode_to_ftype[(mode & S_IFMT) >> S_SHIFT];
Barry Naujok556b8b12008-04-10 12:22:07 +1000100}
101
David Chinner7989cb82007-02-10 18:34:56 +1100102STATIC void
Nathan Scott416c6d52006-03-14 14:00:51 +1100103xfs_cleanup_inode(
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000104 struct inode *dir,
Christoph Hellwigaf048192008-03-06 13:46:43 +1100105 struct inode *inode,
Christoph Hellwig8f112e32008-06-23 13:25:17 +1000106 struct dentry *dentry)
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100107{
Barry Naujok556b8b12008-04-10 12:22:07 +1000108 struct xfs_name teardown;
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100109
110 /* Oh, the horror.
Nathan Scott220b5282006-03-14 13:33:36 +1100111 * If we can't add the ACL or we fail in
Nathan Scott416c6d52006-03-14 14:00:51 +1100112 * xfs_init_security we must back out.
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100113 * ENOSPC can hit here, among other things.
114 */
Dave Chinner0cb97762013-08-12 20:50:09 +1000115 xfs_dentry_to_name(&teardown, dentry, 0);
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100116
Christoph Hellwig8f112e32008-06-23 13:25:17 +1000117 xfs_remove(XFS_I(dir), &teardown, XFS_I(inode));
Christoph Hellwigaf048192008-03-06 13:46:43 +1100118 iput(inode);
Yingping Lu3a69c7d2006-02-01 12:14:34 +1100119}
120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100122xfs_vn_mknod(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 struct inode *dir,
124 struct dentry *dentry,
Al Viro1a67aaf2011-07-26 01:52:52 -0400125 umode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 dev_t rdev)
127{
Christoph Hellwigdb0bb7b2008-03-06 13:44:35 +1100128 struct inode *inode;
Christoph Hellwig979ebab2008-03-06 13:46:05 +1100129 struct xfs_inode *ip = NULL;
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200130 struct posix_acl *default_acl = NULL;
Barry Naujok556b8b12008-04-10 12:22:07 +1000131 struct xfs_name name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 int error;
133
134 /*
135 * Irix uses Missed'em'V split, but doesn't want to see
136 * the upper 5 bits of (14bit) major.
137 */
Christoph Hellwig517b5e82009-02-09 08:38:02 +0100138 if (S_ISCHR(mode) || S_ISBLK(mode)) {
139 if (unlikely(!sysv_valid_dev(rdev) || MAJOR(rdev) & ~0x1ff))
140 return -EINVAL;
141 rdev = sysv_encode_dev(rdev);
142 } else {
143 rdev = 0;
144 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200146 if (IS_POSIXACL(dir)) {
147 default_acl = xfs_get_acl(dir, ACL_TYPE_DEFAULT);
148 if (IS_ERR(default_acl))
Al Viroc46a1312011-06-05 11:12:31 +0000149 return PTR_ERR(default_acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Christoph Hellwige83f1eb2009-06-12 11:19:11 -0400151 if (!default_acl)
152 mode &= ~current_umask();
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200153 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Dave Chinner0cb97762013-08-12 20:50:09 +1000155 xfs_dentry_to_name(&name, dentry, mode);
Christoph Hellwig6c77b0e2010-10-06 18:41:17 +0000156 error = xfs_create(XFS_I(dir), &name, mode, rdev, &ip);
Christoph Hellwigdb0bb7b2008-03-06 13:44:35 +1100157 if (unlikely(error))
158 goto out_free_acl;
Nathan Scott446ada42006-01-11 15:35:44 +1100159
David Chinner01651642008-08-13 15:45:15 +1000160 inode = VFS_I(ip);
Christoph Hellwig979ebab2008-03-06 13:46:05 +1100161
Eric Paris2a7dba32011-02-01 11:05:39 -0500162 error = xfs_init_security(inode, dir, &dentry->d_name);
Christoph Hellwigdb0bb7b2008-03-06 13:44:35 +1100163 if (unlikely(error))
164 goto out_cleanup_inode;
165
166 if (default_acl) {
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200167 error = -xfs_inherit_acl(inode, default_acl);
Al Viro826cae22011-07-23 03:10:32 -0400168 default_acl = NULL;
Christoph Hellwigdb0bb7b2008-03-06 13:44:35 +1100169 if (unlikely(error))
170 goto out_cleanup_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 }
172
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Christoph Hellwigdb0bb7b2008-03-06 13:44:35 +1100174 d_instantiate(dentry, inode);
Christoph Hellwigdb0bb7b2008-03-06 13:44:35 +1100175 return -error;
176
177 out_cleanup_inode:
Christoph Hellwig8f112e32008-06-23 13:25:17 +1000178 xfs_cleanup_inode(dir, inode, dentry);
Christoph Hellwigdb0bb7b2008-03-06 13:44:35 +1100179 out_free_acl:
Christoph Hellwigef14f0c2009-06-10 17:07:47 +0200180 posix_acl_release(default_acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 return -error;
182}
183
184STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100185xfs_vn_create(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 struct inode *dir,
187 struct dentry *dentry,
Al Viro4acdaf22011-07-26 01:42:34 -0400188 umode_t mode,
Al Viroebfc3b42012-06-10 18:05:36 -0400189 bool flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190{
Nathan Scott416c6d52006-03-14 14:00:51 +1100191 return xfs_vn_mknod(dir, dentry, mode, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192}
193
194STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100195xfs_vn_mkdir(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 struct inode *dir,
197 struct dentry *dentry,
Al Viro18bb1db2011-07-26 01:41:39 -0400198 umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
Nathan Scott416c6d52006-03-14 14:00:51 +1100200 return xfs_vn_mknod(dir, dentry, mode|S_IFDIR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201}
202
203STATIC struct dentry *
Nathan Scott416c6d52006-03-14 14:00:51 +1100204xfs_vn_lookup(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 struct inode *dir,
206 struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -0400207 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208{
Christoph Hellwigef1f5e72008-03-06 13:46:25 +1100209 struct xfs_inode *cip;
Barry Naujok556b8b12008-04-10 12:22:07 +1000210 struct xfs_name name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 int error;
212
213 if (dentry->d_name.len >= MAXNAMELEN)
214 return ERR_PTR(-ENAMETOOLONG);
215
Dave Chinner0cb97762013-08-12 20:50:09 +1000216 xfs_dentry_to_name(&name, dentry, 0);
Barry Naujok384f3ce2008-05-21 16:58:22 +1000217 error = xfs_lookup(XFS_I(dir), &name, &cip, NULL);
Nathan Scott67fcaa72006-06-09 17:00:52 +1000218 if (unlikely(error)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 if (unlikely(error != ENOENT))
220 return ERR_PTR(-error);
221 d_add(dentry, NULL);
222 return NULL;
223 }
224
David Chinner01651642008-08-13 15:45:15 +1000225 return d_splice_alias(VFS_I(cip), dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226}
227
Barry Naujok384f3ce2008-05-21 16:58:22 +1000228STATIC struct dentry *
229xfs_vn_ci_lookup(
230 struct inode *dir,
231 struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -0400232 unsigned int flags)
Barry Naujok384f3ce2008-05-21 16:58:22 +1000233{
234 struct xfs_inode *ip;
235 struct xfs_name xname;
236 struct xfs_name ci_name;
237 struct qstr dname;
238 int error;
239
240 if (dentry->d_name.len >= MAXNAMELEN)
241 return ERR_PTR(-ENAMETOOLONG);
242
Dave Chinner0cb97762013-08-12 20:50:09 +1000243 xfs_dentry_to_name(&xname, dentry, 0);
Barry Naujok384f3ce2008-05-21 16:58:22 +1000244 error = xfs_lookup(XFS_I(dir), &xname, &ip, &ci_name);
245 if (unlikely(error)) {
246 if (unlikely(error != ENOENT))
247 return ERR_PTR(-error);
Barry Naujok866d5dc2008-05-22 17:21:40 +1000248 /*
249 * call d_add(dentry, NULL) here when d_drop_negative_children
250 * is called in xfs_vn_mknod (ie. allow negative dentries
251 * with CI filesystems).
252 */
Barry Naujok384f3ce2008-05-21 16:58:22 +1000253 return NULL;
254 }
255
256 /* if exact match, just splice and exit */
257 if (!ci_name.name)
David Chinner01651642008-08-13 15:45:15 +1000258 return d_splice_alias(VFS_I(ip), dentry);
Barry Naujok384f3ce2008-05-21 16:58:22 +1000259
260 /* else case-insensitive match... */
261 dname.name = ci_name.name;
262 dname.len = ci_name.len;
Christoph Hellwige45b5902008-08-07 23:49:07 +0200263 dentry = d_add_ci(dentry, VFS_I(ip), &dname);
Barry Naujok384f3ce2008-05-21 16:58:22 +1000264 kmem_free(ci_name.name);
265 return dentry;
266}
267
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100269xfs_vn_link(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 struct dentry *old_dentry,
271 struct inode *dir,
272 struct dentry *dentry)
273{
Christoph Hellwigd9424b32008-12-03 12:20:27 +0100274 struct inode *inode = old_dentry->d_inode;
Barry Naujok556b8b12008-04-10 12:22:07 +1000275 struct xfs_name name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 int error;
277
Dave Chinner0cb97762013-08-12 20:50:09 +1000278 xfs_dentry_to_name(&name, dentry, inode->i_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Barry Naujok556b8b12008-04-10 12:22:07 +1000280 error = xfs_link(XFS_I(dir), XFS_I(inode), &name);
Christoph Hellwigd9424b32008-12-03 12:20:27 +0100281 if (unlikely(error))
Christoph Hellwiga3da7892008-03-06 13:46:12 +1100282 return -error;
Christoph Hellwiga3da7892008-03-06 13:46:12 +1100283
Al Viro7de9c6ee2010-10-23 11:11:40 -0400284 ihold(inode);
Christoph Hellwiga3da7892008-03-06 13:46:12 +1100285 d_instantiate(dentry, inode);
286 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287}
288
289STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100290xfs_vn_unlink(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 struct inode *dir,
292 struct dentry *dentry)
293{
Barry Naujok556b8b12008-04-10 12:22:07 +1000294 struct xfs_name name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 int error;
296
Dave Chinner0cb97762013-08-12 20:50:09 +1000297 xfs_dentry_to_name(&name, dentry, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
Christoph Hellwige5700702008-06-23 13:25:25 +1000299 error = -xfs_remove(XFS_I(dir), &name, XFS_I(dentry->d_inode));
300 if (error)
301 return error;
302
303 /*
304 * With unlink, the VFS makes the dentry "negative": no inode,
305 * but still hashed. This is incompatible with case-insensitive
306 * mode, so invalidate (unhash) the dentry in CI-mode.
307 */
308 if (xfs_sb_version_hasasciici(&XFS_M(dir->i_sb)->m_sb))
309 d_invalidate(dentry);
310 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311}
312
313STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100314xfs_vn_symlink(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 struct inode *dir,
316 struct dentry *dentry,
317 const char *symname)
318{
Christoph Hellwig3937be52008-03-06 13:46:19 +1100319 struct inode *inode;
320 struct xfs_inode *cip = NULL;
Barry Naujok556b8b12008-04-10 12:22:07 +1000321 struct xfs_name name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 int error;
Al Viro576b1d62011-07-26 02:50:15 -0400323 umode_t mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Christoph Hellwig3e5daf02007-10-11 18:09:12 +1000325 mode = S_IFLNK |
Al Viroce3b0f82009-03-29 19:08:22 -0400326 (irix_symlink_mode ? 0777 & ~current_umask() : S_IRWXUGO);
Dave Chinner0cb97762013-08-12 20:50:09 +1000327 xfs_dentry_to_name(&name, dentry, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
Christoph Hellwig6c77b0e2010-10-06 18:41:17 +0000329 error = xfs_symlink(XFS_I(dir), &name, symname, mode, &cip);
Christoph Hellwig3937be52008-03-06 13:46:19 +1100330 if (unlikely(error))
331 goto out;
332
David Chinner01651642008-08-13 15:45:15 +1000333 inode = VFS_I(cip);
Christoph Hellwig3937be52008-03-06 13:46:19 +1100334
Eric Paris2a7dba32011-02-01 11:05:39 -0500335 error = xfs_init_security(inode, dir, &dentry->d_name);
Christoph Hellwig3937be52008-03-06 13:46:19 +1100336 if (unlikely(error))
337 goto out_cleanup_inode;
338
339 d_instantiate(dentry, inode);
Christoph Hellwig3937be52008-03-06 13:46:19 +1100340 return 0;
341
342 out_cleanup_inode:
Christoph Hellwig8f112e32008-06-23 13:25:17 +1000343 xfs_cleanup_inode(dir, inode, dentry);
Christoph Hellwig3937be52008-03-06 13:46:19 +1100344 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 return -error;
346}
347
348STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100349xfs_vn_rename(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 struct inode *odir,
351 struct dentry *odentry,
352 struct inode *ndir,
353 struct dentry *ndentry)
354{
355 struct inode *new_inode = ndentry->d_inode;
Barry Naujok556b8b12008-04-10 12:22:07 +1000356 struct xfs_name oname;
357 struct xfs_name nname;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Dave Chinner0cb97762013-08-12 20:50:09 +1000359 xfs_dentry_to_name(&oname, odentry, 0);
360 xfs_dentry_to_name(&nname, ndentry, odentry->d_inode->i_mode);
Barry Naujok556b8b12008-04-10 12:22:07 +1000361
Christoph Hellwige5700702008-06-23 13:25:25 +1000362 return -xfs_rename(XFS_I(odir), &oname, XFS_I(odentry->d_inode),
Christoph Hellwigcfa853e2008-04-22 17:34:06 +1000363 XFS_I(ndir), &nname, new_inode ?
Dave Chinner0cb97762013-08-12 20:50:09 +1000364 XFS_I(new_inode) : NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365}
366
367/*
368 * careful here - this function can get called recursively, so
369 * we need to be very careful about how much stack we use.
370 * uio is kmalloced for this reason...
371 */
Al Viro008b1502005-08-20 00:17:39 +0100372STATIC void *
Nathan Scott416c6d52006-03-14 14:00:51 +1100373xfs_vn_follow_link(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 struct dentry *dentry,
375 struct nameidata *nd)
376{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 char *link;
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000378 int error = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
Panagiotis Issarisf52720c2006-09-27 01:49:39 -0700380 link = kmalloc(MAXPATHLEN+1, GFP_KERNEL);
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000381 if (!link)
382 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000384 error = -xfs_readlink(XFS_I(dentry->d_inode), link);
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000385 if (unlikely(error))
386 goto out_kfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
388 nd_set_link(nd, link);
Al Viro008b1502005-08-20 00:17:39 +0100389 return NULL;
Christoph Hellwig804c83c2007-08-28 13:59:03 +1000390
391 out_kfree:
392 kfree(link);
393 out_err:
394 nd_set_link(nd, ERR_PTR(error));
395 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396}
397
Nathan Scottcde410a2005-09-05 11:47:01 +1000398STATIC void
Nathan Scott416c6d52006-03-14 14:00:51 +1100399xfs_vn_put_link(
Nathan Scottcde410a2005-09-05 11:47:01 +1000400 struct dentry *dentry,
401 struct nameidata *nd,
402 void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403{
Nathan Scottcde410a2005-09-05 11:47:01 +1000404 char *s = nd_get_link(nd);
405
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 if (!IS_ERR(s))
407 kfree(s);
408}
409
Christoph Hellwig45767582008-02-05 12:13:24 +1100410STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100411xfs_vn_getattr(
Christoph Hellwigc43f4082007-10-11 17:46:39 +1000412 struct vfsmount *mnt,
413 struct dentry *dentry,
414 struct kstat *stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415{
Christoph Hellwigc43f4082007-10-11 17:46:39 +1000416 struct inode *inode = dentry->d_inode;
417 struct xfs_inode *ip = XFS_I(inode);
418 struct xfs_mount *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Christoph Hellwigcca28fb2010-06-24 11:57:09 +1000420 trace_xfs_getattr(ip);
Christoph Hellwigc43f4082007-10-11 17:46:39 +1000421
422 if (XFS_FORCED_SHUTDOWN(mp))
Mitsuo Hayasakaed322012011-09-17 13:38:38 +0000423 return -XFS_ERROR(EIO);
Christoph Hellwigc43f4082007-10-11 17:46:39 +1000424
425 stat->size = XFS_ISIZE(ip);
426 stat->dev = inode->i_sb->s_dev;
427 stat->mode = ip->i_d.di_mode;
428 stat->nlink = ip->i_d.di_nlink;
Dwight Engen7aab1b22013-08-15 14:08:01 -0400429 stat->uid = inode->i_uid;
430 stat->gid = inode->i_gid;
Christoph Hellwigc43f4082007-10-11 17:46:39 +1000431 stat->ino = ip->i_ino;
Christoph Hellwigc43f4082007-10-11 17:46:39 +1000432 stat->atime = inode->i_atime;
Christoph Hellwigf9581b12009-10-06 20:29:26 +0000433 stat->mtime = inode->i_mtime;
434 stat->ctime = inode->i_ctime;
Christoph Hellwigc43f4082007-10-11 17:46:39 +1000435 stat->blocks =
436 XFS_FSB_TO_BB(mp, ip->i_d.di_nblocks + ip->i_delayed_blks);
437
438
439 switch (inode->i_mode & S_IFMT) {
440 case S_IFBLK:
441 case S_IFCHR:
442 stat->blksize = BLKDEV_IOSIZE;
443 stat->rdev = MKDEV(sysv_major(ip->i_df.if_u2.if_rdev) & 0x1ff,
444 sysv_minor(ip->i_df.if_u2.if_rdev));
445 break;
446 default:
Eric Sandeen71ddabb2007-11-23 16:29:42 +1100447 if (XFS_IS_REALTIME_INODE(ip)) {
Christoph Hellwigc43f4082007-10-11 17:46:39 +1000448 /*
449 * If the file blocks are being allocated from a
450 * realtime volume, then return the inode's realtime
451 * extent size or the realtime volume's extent size.
452 */
453 stat->blksize =
454 xfs_get_extsz_hint(ip) << mp->m_sb.sb_blocklog;
455 } else
456 stat->blksize = xfs_preferred_iosize(mp);
457 stat->rdev = 0;
458 break;
Nathan Scott69e23b92006-09-28 11:01:22 +1000459 }
Christoph Hellwigc43f4082007-10-11 17:46:39 +1000460
461 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462}
463
Dave Chinner56c19e82013-05-27 16:38:25 +1000464static void
465xfs_setattr_mode(
466 struct xfs_trans *tp,
467 struct xfs_inode *ip,
468 struct iattr *iattr)
469{
470 struct inode *inode = VFS_I(ip);
471 umode_t mode = iattr->ia_mode;
472
473 ASSERT(tp);
474 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
475
Dave Chinner56c19e82013-05-27 16:38:25 +1000476 ip->i_d.di_mode &= S_IFMT;
477 ip->i_d.di_mode |= mode & ~S_IFMT;
478
479 inode->i_mode &= S_IFMT;
480 inode->i_mode |= mode & ~S_IFMT;
481}
482
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200483int
484xfs_setattr_nonsize(
485 struct xfs_inode *ip,
486 struct iattr *iattr,
487 int flags)
488{
489 xfs_mount_t *mp = ip->i_mount;
490 struct inode *inode = VFS_I(ip);
491 int mask = iattr->ia_valid;
492 xfs_trans_t *tp;
493 int error;
Dwight Engen7aab1b22013-08-15 14:08:01 -0400494 kuid_t uid = GLOBAL_ROOT_UID, iuid = GLOBAL_ROOT_UID;
495 kgid_t gid = GLOBAL_ROOT_GID, igid = GLOBAL_ROOT_GID;
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200496 struct xfs_dquot *udqp = NULL, *gdqp = NULL;
497 struct xfs_dquot *olddquot1 = NULL, *olddquot2 = NULL;
498
499 trace_xfs_setattr(ip);
500
Carlos Maiolino42c49d72013-06-21 14:45:53 -0300501 /* If acls are being inherited, we already have this checked */
502 if (!(flags & XFS_ATTR_NOACL)) {
503 if (mp->m_flags & XFS_MOUNT_RDONLY)
504 return XFS_ERROR(EROFS);
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200505
Carlos Maiolino42c49d72013-06-21 14:45:53 -0300506 if (XFS_FORCED_SHUTDOWN(mp))
507 return XFS_ERROR(EIO);
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200508
Carlos Maiolino42c49d72013-06-21 14:45:53 -0300509 error = -inode_change_ok(inode, iattr);
510 if (error)
511 return XFS_ERROR(error);
512 }
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200513
514 ASSERT((mask & ATTR_SIZE) == 0);
515
516 /*
517 * If disk quotas is on, we make sure that the dquots do exist on disk,
518 * before we start any other transactions. Trying to do this later
519 * is messy. We don't care to take a readlock to look at the ids
520 * in inode here, because we can't hold it across the trans_reserve.
521 * If the IDs do change before we take the ilock, we're covered
522 * because the i_*dquot fields will get updated anyway.
523 */
524 if (XFS_IS_QUOTA_ON(mp) && (mask & (ATTR_UID|ATTR_GID))) {
525 uint qflags = 0;
526
527 if ((mask & ATTR_UID) && XFS_IS_UQUOTA_ON(mp)) {
528 uid = iattr->ia_uid;
529 qflags |= XFS_QMOPT_UQUOTA;
530 } else {
Dwight Engen7aab1b22013-08-15 14:08:01 -0400531 uid = inode->i_uid;
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200532 }
533 if ((mask & ATTR_GID) && XFS_IS_GQUOTA_ON(mp)) {
534 gid = iattr->ia_gid;
535 qflags |= XFS_QMOPT_GQUOTA;
536 } else {
Dwight Engen7aab1b22013-08-15 14:08:01 -0400537 gid = inode->i_gid;
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200538 }
539
540 /*
541 * We take a reference when we initialize udqp and gdqp,
542 * so it is important that we never blindly double trip on
543 * the same variable. See xfs_create() for an example.
544 */
545 ASSERT(udqp == NULL);
546 ASSERT(gdqp == NULL);
Dwight Engen7aab1b22013-08-15 14:08:01 -0400547 error = xfs_qm_vop_dqalloc(ip, xfs_kuid_to_uid(uid),
548 xfs_kgid_to_gid(gid),
549 xfs_get_projid(ip),
550 qflags, &udqp, &gdqp, NULL);
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200551 if (error)
552 return error;
553 }
554
555 tp = xfs_trans_alloc(mp, XFS_TRANS_SETATTR_NOT_SIZE);
Jie Liu3d3c8b52013-08-12 20:49:59 +1000556 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_ichange, 0, 0);
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200557 if (error)
558 goto out_dqrele;
559
560 xfs_ilock(ip, XFS_ILOCK_EXCL);
561
562 /*
563 * Change file ownership. Must be the owner or privileged.
564 */
565 if (mask & (ATTR_UID|ATTR_GID)) {
566 /*
567 * These IDs could have changed since we last looked at them.
568 * But, we're assured that if the ownership did change
569 * while we didn't have the inode locked, inode's dquot(s)
570 * would have changed also.
571 */
Dwight Engen7aab1b22013-08-15 14:08:01 -0400572 iuid = inode->i_uid;
573 igid = inode->i_gid;
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200574 gid = (mask & ATTR_GID) ? iattr->ia_gid : igid;
575 uid = (mask & ATTR_UID) ? iattr->ia_uid : iuid;
576
577 /*
578 * Do a quota reservation only if uid/gid is actually
579 * going to change.
580 */
581 if (XFS_IS_QUOTA_RUNNING(mp) &&
Dwight Engen7aab1b22013-08-15 14:08:01 -0400582 ((XFS_IS_UQUOTA_ON(mp) && !uid_eq(iuid, uid)) ||
583 (XFS_IS_GQUOTA_ON(mp) && !gid_eq(igid, gid)))) {
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200584 ASSERT(tp);
585 error = xfs_qm_vop_chown_reserve(tp, ip, udqp, gdqp,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500586 NULL, capable(CAP_FOWNER) ?
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200587 XFS_QMOPT_FORCE_RES : 0);
588 if (error) /* out of quota */
589 goto out_trans_cancel;
590 }
591 }
592
Christoph Hellwigddc34152011-09-19 15:00:54 +0000593 xfs_trans_ijoin(tp, ip, 0);
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200594
595 /*
596 * Change file ownership. Must be the owner or privileged.
597 */
598 if (mask & (ATTR_UID|ATTR_GID)) {
599 /*
600 * CAP_FSETID overrides the following restrictions:
601 *
602 * The set-user-ID and set-group-ID bits of a file will be
603 * cleared upon successful return from chown()
604 */
605 if ((ip->i_d.di_mode & (S_ISUID|S_ISGID)) &&
606 !capable(CAP_FSETID))
607 ip->i_d.di_mode &= ~(S_ISUID|S_ISGID);
608
609 /*
610 * Change the ownerships and register quota modifications
611 * in the transaction.
612 */
Dwight Engen7aab1b22013-08-15 14:08:01 -0400613 if (!uid_eq(iuid, uid)) {
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200614 if (XFS_IS_QUOTA_RUNNING(mp) && XFS_IS_UQUOTA_ON(mp)) {
615 ASSERT(mask & ATTR_UID);
616 ASSERT(udqp);
617 olddquot1 = xfs_qm_vop_chown(tp, ip,
618 &ip->i_udquot, udqp);
619 }
Dwight Engen7aab1b22013-08-15 14:08:01 -0400620 ip->i_d.di_uid = xfs_kuid_to_uid(uid);
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200621 inode->i_uid = uid;
622 }
Dwight Engen7aab1b22013-08-15 14:08:01 -0400623 if (!gid_eq(igid, gid)) {
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200624 if (XFS_IS_QUOTA_RUNNING(mp) && XFS_IS_GQUOTA_ON(mp)) {
625 ASSERT(!XFS_IS_PQUOTA_ON(mp));
626 ASSERT(mask & ATTR_GID);
627 ASSERT(gdqp);
628 olddquot2 = xfs_qm_vop_chown(tp, ip,
629 &ip->i_gdquot, gdqp);
630 }
Dwight Engen7aab1b22013-08-15 14:08:01 -0400631 ip->i_d.di_gid = xfs_kgid_to_gid(gid);
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200632 inode->i_gid = gid;
633 }
634 }
635
636 /*
637 * Change file access modes.
638 */
Dave Chinner56c19e82013-05-27 16:38:25 +1000639 if (mask & ATTR_MODE)
640 xfs_setattr_mode(tp, ip, iattr);
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200641
642 /*
643 * Change file access or modified times.
644 */
645 if (mask & ATTR_ATIME) {
646 inode->i_atime = iattr->ia_atime;
647 ip->i_d.di_atime.t_sec = iattr->ia_atime.tv_sec;
648 ip->i_d.di_atime.t_nsec = iattr->ia_atime.tv_nsec;
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200649 }
650 if (mask & ATTR_CTIME) {
651 inode->i_ctime = iattr->ia_ctime;
652 ip->i_d.di_ctime.t_sec = iattr->ia_ctime.tv_sec;
653 ip->i_d.di_ctime.t_nsec = iattr->ia_ctime.tv_nsec;
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200654 }
655 if (mask & ATTR_MTIME) {
656 inode->i_mtime = iattr->ia_mtime;
657 ip->i_d.di_mtime.t_sec = iattr->ia_mtime.tv_sec;
658 ip->i_d.di_mtime.t_nsec = iattr->ia_mtime.tv_nsec;
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200659 }
660
661 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
662
663 XFS_STATS_INC(xs_ig_attrchg);
664
665 if (mp->m_flags & XFS_MOUNT_WSYNC)
666 xfs_trans_set_sync(tp);
667 error = xfs_trans_commit(tp, 0);
668
669 xfs_iunlock(ip, XFS_ILOCK_EXCL);
670
671 /*
672 * Release any dquot(s) the inode had kept before chown.
673 */
674 xfs_qm_dqrele(olddquot1);
675 xfs_qm_dqrele(olddquot2);
676 xfs_qm_dqrele(udqp);
677 xfs_qm_dqrele(gdqp);
678
679 if (error)
680 return XFS_ERROR(error);
681
682 /*
683 * XXX(hch): Updating the ACL entries is not atomic vs the i_mode
684 * update. We could avoid this with linked transactions
685 * and passing down the transaction pointer all the way
686 * to attr_set. No previous user of the generic
687 * Posix ACL code seems to care about this issue either.
688 */
689 if ((mask & ATTR_MODE) && !(flags & XFS_ATTR_NOACL)) {
690 error = -xfs_acl_chmod(inode);
691 if (error)
692 return XFS_ERROR(error);
693 }
694
695 return 0;
696
697out_trans_cancel:
698 xfs_trans_cancel(tp, 0);
699 xfs_iunlock(ip, XFS_ILOCK_EXCL);
700out_dqrele:
701 xfs_qm_dqrele(udqp);
702 xfs_qm_dqrele(gdqp);
703 return error;
704}
705
706/*
707 * Truncate file. Must have write permission and not be a directory.
708 */
709int
710xfs_setattr_size(
711 struct xfs_inode *ip,
Christoph Hellwig76ca4c22013-10-14 07:09:35 -0700712 struct iattr *iattr)
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200713{
714 struct xfs_mount *mp = ip->i_mount;
715 struct inode *inode = VFS_I(ip);
716 int mask = iattr->ia_valid;
Christoph Hellwig673e8e52011-12-18 20:00:04 +0000717 xfs_off_t oldsize, newsize;
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200718 struct xfs_trans *tp;
719 int error;
Christoph Hellwigf38996f2012-03-27 10:34:48 -0400720 uint lock_flags = 0;
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200721 uint commit_flags = 0;
722
723 trace_xfs_setattr(ip);
724
725 if (mp->m_flags & XFS_MOUNT_RDONLY)
726 return XFS_ERROR(EROFS);
727
728 if (XFS_FORCED_SHUTDOWN(mp))
729 return XFS_ERROR(EIO);
730
731 error = -inode_change_ok(inode, iattr);
732 if (error)
733 return XFS_ERROR(error);
734
Christoph Hellwig76ca4c22013-10-14 07:09:35 -0700735 ASSERT(xfs_isilocked(ip, XFS_IOLOCK_EXCL));
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200736 ASSERT(S_ISREG(ip->i_d.di_mode));
Dave Chinner56c19e82013-05-27 16:38:25 +1000737 ASSERT((mask & (ATTR_UID|ATTR_GID|ATTR_ATIME|ATTR_ATIME_SET|
738 ATTR_MTIME_SET|ATTR_KILL_PRIV|ATTR_TIMES_SET)) == 0);
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200739
Christoph Hellwigce7ae1512011-12-18 20:00:11 +0000740 oldsize = inode->i_size;
Christoph Hellwig673e8e52011-12-18 20:00:04 +0000741 newsize = iattr->ia_size;
742
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200743 /*
744 * Short circuit the truncate case for zero length files.
745 */
Christoph Hellwig673e8e52011-12-18 20:00:04 +0000746 if (newsize == 0 && oldsize == 0 && ip->i_d.di_nextents == 0) {
Christoph Hellwig681b1202011-07-08 14:34:26 +0200747 if (!(mask & (ATTR_CTIME|ATTR_MTIME)))
Christoph Hellwig76ca4c22013-10-14 07:09:35 -0700748 return 0;
Christoph Hellwig681b1202011-07-08 14:34:26 +0200749
750 /*
751 * Use the regular setattr path to update the timestamps.
752 */
Christoph Hellwig681b1202011-07-08 14:34:26 +0200753 iattr->ia_valid &= ~ATTR_SIZE;
754 return xfs_setattr_nonsize(ip, iattr, 0);
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200755 }
756
757 /*
758 * Make sure that the dquots are attached to the inode.
759 */
Christoph Hellwigf38996f2012-03-27 10:34:48 -0400760 error = xfs_qm_dqattach(ip, 0);
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200761 if (error)
Christoph Hellwig76ca4c22013-10-14 07:09:35 -0700762 return error;
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200763
764 /*
765 * Now we can make the changes. Before we join the inode to the
766 * transaction, take care of the part of the truncation that must be
767 * done without the inode lock. This needs to be done before joining
768 * the inode to the transaction, because the inode cannot be unlocked
769 * once it is a part of the transaction.
770 */
Christoph Hellwig673e8e52011-12-18 20:00:04 +0000771 if (newsize > oldsize) {
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200772 /*
773 * Do the first part of growing a file: zero any data in the
774 * last block that is beyond the old EOF. We need to do this
775 * before the inode is joined to the transaction to modify
776 * i_size.
777 */
Christoph Hellwig673e8e52011-12-18 20:00:04 +0000778 error = xfs_zero_eof(ip, newsize, oldsize);
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200779 if (error)
Christoph Hellwig76ca4c22013-10-14 07:09:35 -0700780 return error;
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200781 }
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200782
783 /*
784 * We are going to log the inode size change in this transaction so
785 * any previous writes that are beyond the on disk EOF and the new
786 * EOF that have not been written out need to be written here. If we
787 * do not write the data out, we expose ourselves to the null files
788 * problem.
789 *
790 * Only flush from the on disk size to the smaller of the in memory
791 * file size or the new size as that's the range we really care about
792 * here and prevents waiting for other data not within the range we
793 * care about here.
794 */
Christoph Hellwig673e8e52011-12-18 20:00:04 +0000795 if (oldsize != ip->i_d.di_size && newsize > ip->i_d.di_size) {
Dave Chinner4bc1ea62012-11-12 22:53:56 +1100796 error = -filemap_write_and_wait_range(VFS_I(ip)->i_mapping,
797 ip->i_d.di_size, newsize);
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200798 if (error)
Christoph Hellwig76ca4c22013-10-14 07:09:35 -0700799 return error;
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200800 }
801
802 /*
Christoph Hellwig4a06fd22011-08-23 08:28:13 +0000803 * Wait for all direct I/O to complete.
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200804 */
Christoph Hellwig4a06fd22011-08-23 08:28:13 +0000805 inode_dio_wait(inode);
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200806
Christoph Hellwig673e8e52011-12-18 20:00:04 +0000807 error = -block_truncate_page(inode->i_mapping, newsize, xfs_get_blocks);
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200808 if (error)
Christoph Hellwig76ca4c22013-10-14 07:09:35 -0700809 return error;
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200810
811 tp = xfs_trans_alloc(mp, XFS_TRANS_SETATTR_SIZE);
Jie Liu3d3c8b52013-08-12 20:49:59 +1000812 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_itruncate, 0, 0);
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200813 if (error)
814 goto out_trans_cancel;
815
Christoph Hellwig673e8e52011-12-18 20:00:04 +0000816 truncate_setsize(inode, newsize);
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200817
818 commit_flags = XFS_TRANS_RELEASE_LOG_RES;
819 lock_flags |= XFS_ILOCK_EXCL;
820
821 xfs_ilock(ip, XFS_ILOCK_EXCL);
822
Christoph Hellwigddc34152011-09-19 15:00:54 +0000823 xfs_trans_ijoin(tp, ip, 0);
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200824
825 /*
826 * Only change the c/mtime if we are changing the size or we are
827 * explicitly asked to change it. This handles the semantic difference
828 * between truncate() and ftruncate() as implemented in the VFS.
829 *
830 * The regular truncate() case without ATTR_CTIME and ATTR_MTIME is a
831 * special case where we need to update the times despite not having
832 * these flags set. For all other operations the VFS set these flags
833 * explicitly if it wants a timestamp update.
834 */
Christoph Hellwig673e8e52011-12-18 20:00:04 +0000835 if (newsize != oldsize && (!(mask & (ATTR_CTIME | ATTR_MTIME)))) {
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200836 iattr->ia_ctime = iattr->ia_mtime =
837 current_fs_time(inode->i_sb);
838 mask |= ATTR_CTIME | ATTR_MTIME;
839 }
840
Christoph Hellwig673e8e52011-12-18 20:00:04 +0000841 /*
842 * The first thing we do is set the size to new_size permanently on
843 * disk. This way we don't have to worry about anyone ever being able
844 * to look at the data being freed even in the face of a crash.
845 * What we're getting around here is the case where we free a block, it
846 * is allocated to another file, it is written to, and then we crash.
847 * If the new data gets written to the file but the log buffers
848 * containing the free and reallocation don't, then we'd end up with
849 * garbage in the blocks being freed. As long as we make the new size
850 * permanent before actually freeing any blocks it doesn't matter if
851 * they get written to.
852 */
853 ip->i_d.di_size = newsize;
Christoph Hellwig673e8e52011-12-18 20:00:04 +0000854 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
855
856 if (newsize <= oldsize) {
857 error = xfs_itruncate_extents(&tp, ip, XFS_DATA_FORK, newsize);
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200858 if (error)
859 goto out_trans_abort;
860
861 /*
862 * Truncated "down", so we're removing references to old data
863 * here - if we delay flushing for a long time, we expose
864 * ourselves unduly to the notorious NULL files problem. So,
865 * we mark this inode and flush it when the file is closed,
866 * and do not wait the usual (long) time for writeout.
867 */
868 xfs_iflags_set(ip, XFS_ITRUNCATED);
Brian Foster27b52862012-11-06 09:50:38 -0500869
870 /* A truncate down always removes post-EOF blocks. */
871 xfs_inode_clear_eofblocks_tag(ip);
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200872 }
873
Dave Chinner56c19e82013-05-27 16:38:25 +1000874 /*
875 * Change file access modes.
876 */
877 if (mask & ATTR_MODE)
878 xfs_setattr_mode(tp, ip, iattr);
879
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200880 if (mask & ATTR_CTIME) {
881 inode->i_ctime = iattr->ia_ctime;
882 ip->i_d.di_ctime.t_sec = iattr->ia_ctime.tv_sec;
883 ip->i_d.di_ctime.t_nsec = iattr->ia_ctime.tv_nsec;
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200884 }
885 if (mask & ATTR_MTIME) {
886 inode->i_mtime = iattr->ia_mtime;
887 ip->i_d.di_mtime.t_sec = iattr->ia_mtime.tv_sec;
888 ip->i_d.di_mtime.t_nsec = iattr->ia_mtime.tv_nsec;
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200889 }
890
891 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
892
893 XFS_STATS_INC(xs_ig_attrchg);
894
895 if (mp->m_flags & XFS_MOUNT_WSYNC)
896 xfs_trans_set_sync(tp);
897
898 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
899out_unlock:
900 if (lock_flags)
901 xfs_iunlock(ip, lock_flags);
902 return error;
903
904out_trans_abort:
905 commit_flags |= XFS_TRANS_ABORT;
906out_trans_cancel:
907 xfs_trans_cancel(tp, commit_flags);
908 goto out_unlock;
909}
910
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100912xfs_vn_setattr(
Christoph Hellwig76ca4c22013-10-14 07:09:35 -0700913 struct dentry *dentry,
914 struct iattr *iattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915{
Christoph Hellwig76ca4c22013-10-14 07:09:35 -0700916 struct xfs_inode *ip = XFS_I(dentry->d_inode);
917 int error;
918
919 if (iattr->ia_valid & ATTR_SIZE) {
920 xfs_ilock(ip, XFS_IOLOCK_EXCL);
921 error = xfs_setattr_size(ip, iattr);
922 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
923 } else {
924 error = xfs_setattr_nonsize(ip, iattr, 0);
925 }
926
927 return -error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928}
929
Christoph Hellwig69ff2822012-06-06 17:01:28 -0400930STATIC int
931xfs_vn_update_time(
932 struct inode *inode,
933 struct timespec *now,
934 int flags)
935{
936 struct xfs_inode *ip = XFS_I(inode);
937 struct xfs_mount *mp = ip->i_mount;
938 struct xfs_trans *tp;
939 int error;
940
941 trace_xfs_update_time(ip);
942
943 tp = xfs_trans_alloc(mp, XFS_TRANS_FSYNC_TS);
Jie Liu3d3c8b52013-08-12 20:49:59 +1000944 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_fsyncts, 0, 0);
Christoph Hellwig69ff2822012-06-06 17:01:28 -0400945 if (error) {
946 xfs_trans_cancel(tp, 0);
947 return -error;
948 }
949
950 xfs_ilock(ip, XFS_ILOCK_EXCL);
951 if (flags & S_CTIME) {
952 inode->i_ctime = *now;
953 ip->i_d.di_ctime.t_sec = (__int32_t)now->tv_sec;
954 ip->i_d.di_ctime.t_nsec = (__int32_t)now->tv_nsec;
955 }
956 if (flags & S_MTIME) {
957 inode->i_mtime = *now;
958 ip->i_d.di_mtime.t_sec = (__int32_t)now->tv_sec;
959 ip->i_d.di_mtime.t_nsec = (__int32_t)now->tv_nsec;
960 }
961 if (flags & S_ATIME) {
962 inode->i_atime = *now;
963 ip->i_d.di_atime.t_sec = (__int32_t)now->tv_sec;
964 ip->i_d.di_atime.t_nsec = (__int32_t)now->tv_nsec;
965 }
966 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
967 xfs_trans_log_inode(tp, ip, XFS_ILOG_TIMESTAMP);
968 return -xfs_trans_commit(tp, 0);
969}
970
Eric Sandeenf35642e2008-11-28 14:23:35 +1100971#define XFS_FIEMAP_FLAGS (FIEMAP_FLAG_SYNC|FIEMAP_FLAG_XATTR)
972
973/*
974 * Call fiemap helper to fill in user data.
975 * Returns positive errors to xfs_getbmap.
976 */
977STATIC int
978xfs_fiemap_format(
979 void **arg,
980 struct getbmapx *bmv,
981 int *full)
982{
983 int error;
984 struct fiemap_extent_info *fieinfo = *arg;
985 u32 fiemap_flags = 0;
986 u64 logical, physical, length;
987
988 /* Do nothing for a hole */
989 if (bmv->bmv_block == -1LL)
990 return 0;
991
992 logical = BBTOB(bmv->bmv_offset);
993 physical = BBTOB(bmv->bmv_block);
994 length = BBTOB(bmv->bmv_length);
995
996 if (bmv->bmv_oflags & BMV_OF_PREALLOC)
997 fiemap_flags |= FIEMAP_EXTENT_UNWRITTEN;
998 else if (bmv->bmv_oflags & BMV_OF_DELALLOC) {
Jie Liu635c4d02013-06-06 06:24:01 -0700999 fiemap_flags |= (FIEMAP_EXTENT_DELALLOC |
1000 FIEMAP_EXTENT_UNKNOWN);
Eric Sandeenf35642e2008-11-28 14:23:35 +11001001 physical = 0; /* no block yet */
1002 }
1003 if (bmv->bmv_oflags & BMV_OF_LAST)
1004 fiemap_flags |= FIEMAP_EXTENT_LAST;
1005
1006 error = fiemap_fill_next_extent(fieinfo, logical, physical,
1007 length, fiemap_flags);
1008 if (error > 0) {
1009 error = 0;
1010 *full = 1; /* user array now full */
1011 }
1012
1013 return -error;
1014}
1015
1016STATIC int
1017xfs_vn_fiemap(
1018 struct inode *inode,
1019 struct fiemap_extent_info *fieinfo,
1020 u64 start,
1021 u64 length)
1022{
1023 xfs_inode_t *ip = XFS_I(inode);
1024 struct getbmapx bm;
1025 int error;
1026
1027 error = fiemap_check_flags(fieinfo, XFS_FIEMAP_FLAGS);
1028 if (error)
1029 return error;
1030
1031 /* Set up bmap header for xfs internal routine */
1032 bm.bmv_offset = BTOBB(start);
1033 /* Special case for whole file */
1034 if (length == FIEMAP_MAX_OFFSET)
1035 bm.bmv_length = -1LL;
1036 else
1037 bm.bmv_length = BTOBB(length);
1038
Eric Sandeen97db39a2009-07-26 21:52:01 -05001039 /* We add one because in getbmap world count includes the header */
Tao Ma2d1ff3c2010-04-29 15:13:56 +10001040 bm.bmv_count = !fieinfo->fi_extents_max ? MAXEXTNUM :
1041 fieinfo->fi_extents_max + 1;
1042 bm.bmv_count = min_t(__s32, bm.bmv_count,
1043 (PAGE_SIZE * 16 / sizeof(struct getbmapx)));
Tao Ma9af25462010-08-30 02:44:03 +00001044 bm.bmv_iflags = BMV_IF_PREALLOC | BMV_IF_NO_HOLES;
Eric Sandeenf35642e2008-11-28 14:23:35 +11001045 if (fieinfo->fi_flags & FIEMAP_FLAG_XATTR)
1046 bm.bmv_iflags |= BMV_IF_ATTRFORK;
1047 if (!(fieinfo->fi_flags & FIEMAP_FLAG_SYNC))
1048 bm.bmv_iflags |= BMV_IF_DELALLOC;
1049
1050 error = xfs_getbmap(ip, &bm, xfs_fiemap_format, fieinfo);
1051 if (error)
1052 return -error;
1053
1054 return 0;
1055}
1056
Christoph Hellwig41be8be2008-08-13 16:23:13 +10001057static const struct inode_operations xfs_inode_operations = {
Christoph Hellwig4e34e712011-07-23 17:37:31 +02001058 .get_acl = xfs_get_acl,
Nathan Scott416c6d52006-03-14 14:00:51 +11001059 .getattr = xfs_vn_getattr,
1060 .setattr = xfs_vn_setattr,
Lachlan McIlroy0ec58512008-06-23 13:23:01 +10001061 .setxattr = generic_setxattr,
1062 .getxattr = generic_getxattr,
1063 .removexattr = generic_removexattr,
Nathan Scott416c6d52006-03-14 14:00:51 +11001064 .listxattr = xfs_vn_listxattr,
Eric Sandeenf35642e2008-11-28 14:23:35 +11001065 .fiemap = xfs_vn_fiemap,
Christoph Hellwig69ff2822012-06-06 17:01:28 -04001066 .update_time = xfs_vn_update_time,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067};
1068
Christoph Hellwig41be8be2008-08-13 16:23:13 +10001069static const struct inode_operations xfs_dir_inode_operations = {
Nathan Scott416c6d52006-03-14 14:00:51 +11001070 .create = xfs_vn_create,
1071 .lookup = xfs_vn_lookup,
1072 .link = xfs_vn_link,
1073 .unlink = xfs_vn_unlink,
1074 .symlink = xfs_vn_symlink,
1075 .mkdir = xfs_vn_mkdir,
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001076 /*
1077 * Yes, XFS uses the same method for rmdir and unlink.
1078 *
1079 * There are some subtile differences deeper in the code,
1080 * but we use S_ISDIR to check for those.
1081 */
1082 .rmdir = xfs_vn_unlink,
Nathan Scott416c6d52006-03-14 14:00:51 +11001083 .mknod = xfs_vn_mknod,
1084 .rename = xfs_vn_rename,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02001085 .get_acl = xfs_get_acl,
Nathan Scott416c6d52006-03-14 14:00:51 +11001086 .getattr = xfs_vn_getattr,
1087 .setattr = xfs_vn_setattr,
Lachlan McIlroy0ec58512008-06-23 13:23:01 +10001088 .setxattr = generic_setxattr,
1089 .getxattr = generic_getxattr,
1090 .removexattr = generic_removexattr,
Nathan Scott416c6d52006-03-14 14:00:51 +11001091 .listxattr = xfs_vn_listxattr,
Christoph Hellwig69ff2822012-06-06 17:01:28 -04001092 .update_time = xfs_vn_update_time,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093};
1094
Christoph Hellwig41be8be2008-08-13 16:23:13 +10001095static const struct inode_operations xfs_dir_ci_inode_operations = {
Barry Naujok384f3ce2008-05-21 16:58:22 +10001096 .create = xfs_vn_create,
1097 .lookup = xfs_vn_ci_lookup,
1098 .link = xfs_vn_link,
1099 .unlink = xfs_vn_unlink,
1100 .symlink = xfs_vn_symlink,
1101 .mkdir = xfs_vn_mkdir,
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001102 /*
1103 * Yes, XFS uses the same method for rmdir and unlink.
1104 *
1105 * There are some subtile differences deeper in the code,
1106 * but we use S_ISDIR to check for those.
1107 */
1108 .rmdir = xfs_vn_unlink,
Barry Naujok384f3ce2008-05-21 16:58:22 +10001109 .mknod = xfs_vn_mknod,
1110 .rename = xfs_vn_rename,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02001111 .get_acl = xfs_get_acl,
Barry Naujok384f3ce2008-05-21 16:58:22 +10001112 .getattr = xfs_vn_getattr,
1113 .setattr = xfs_vn_setattr,
Lachlan McIlroy0ec58512008-06-23 13:23:01 +10001114 .setxattr = generic_setxattr,
1115 .getxattr = generic_getxattr,
1116 .removexattr = generic_removexattr,
Barry Naujok384f3ce2008-05-21 16:58:22 +10001117 .listxattr = xfs_vn_listxattr,
Christoph Hellwig69ff2822012-06-06 17:01:28 -04001118 .update_time = xfs_vn_update_time,
Barry Naujok384f3ce2008-05-21 16:58:22 +10001119};
1120
Christoph Hellwig41be8be2008-08-13 16:23:13 +10001121static const struct inode_operations xfs_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 .readlink = generic_readlink,
Nathan Scott416c6d52006-03-14 14:00:51 +11001123 .follow_link = xfs_vn_follow_link,
1124 .put_link = xfs_vn_put_link,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02001125 .get_acl = xfs_get_acl,
Nathan Scott416c6d52006-03-14 14:00:51 +11001126 .getattr = xfs_vn_getattr,
1127 .setattr = xfs_vn_setattr,
Lachlan McIlroy0ec58512008-06-23 13:23:01 +10001128 .setxattr = generic_setxattr,
1129 .getxattr = generic_getxattr,
1130 .removexattr = generic_removexattr,
Nathan Scott416c6d52006-03-14 14:00:51 +11001131 .listxattr = xfs_vn_listxattr,
Christoph Hellwig69ff2822012-06-06 17:01:28 -04001132 .update_time = xfs_vn_update_time,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133};
Christoph Hellwig41be8be2008-08-13 16:23:13 +10001134
1135STATIC void
1136xfs_diflags_to_iflags(
1137 struct inode *inode,
1138 struct xfs_inode *ip)
1139{
1140 if (ip->i_d.di_flags & XFS_DIFLAG_IMMUTABLE)
1141 inode->i_flags |= S_IMMUTABLE;
1142 else
1143 inode->i_flags &= ~S_IMMUTABLE;
1144 if (ip->i_d.di_flags & XFS_DIFLAG_APPEND)
1145 inode->i_flags |= S_APPEND;
1146 else
1147 inode->i_flags &= ~S_APPEND;
1148 if (ip->i_d.di_flags & XFS_DIFLAG_SYNC)
1149 inode->i_flags |= S_SYNC;
1150 else
1151 inode->i_flags &= ~S_SYNC;
1152 if (ip->i_d.di_flags & XFS_DIFLAG_NOATIME)
1153 inode->i_flags |= S_NOATIME;
1154 else
1155 inode->i_flags &= ~S_NOATIME;
1156}
1157
1158/*
1159 * Initialize the Linux inode, set up the operation vectors and
1160 * unlock the inode.
1161 *
1162 * When reading existing inodes from disk this is called directly
1163 * from xfs_iget, when creating a new inode it is called from
1164 * xfs_ialloc after setting up the inode.
David Chinnerbf904242008-10-30 17:36:14 +11001165 *
1166 * We are always called with an uninitialised linux inode here.
1167 * We need to initialise the necessary fields and take a reference
1168 * on it.
Christoph Hellwig41be8be2008-08-13 16:23:13 +10001169 */
1170void
1171xfs_setup_inode(
1172 struct xfs_inode *ip)
1173{
David Chinnerbf904242008-10-30 17:36:14 +11001174 struct inode *inode = &ip->i_vnode;
1175
1176 inode->i_ino = ip->i_ino;
Christoph Hellwigeaff8072009-12-17 14:25:01 +01001177 inode->i_state = I_NEW;
Christoph Hellwig646ec462010-10-23 07:15:32 -04001178
1179 inode_sb_list_add(inode);
Christoph Hellwigc6f6cd02010-11-06 11:43:08 +00001180 /* make the inode look hashed for the writeback code */
1181 hlist_add_fake(&inode->i_hash);
Christoph Hellwig41be8be2008-08-13 16:23:13 +10001182
1183 inode->i_mode = ip->i_d.di_mode;
Miklos Szeredibfe86842011-10-28 14:13:29 +02001184 set_nlink(inode, ip->i_d.di_nlink);
Dwight Engen7aab1b22013-08-15 14:08:01 -04001185 inode->i_uid = xfs_uid_to_kuid(ip->i_d.di_uid);
1186 inode->i_gid = xfs_gid_to_kgid(ip->i_d.di_gid);
Christoph Hellwig41be8be2008-08-13 16:23:13 +10001187
1188 switch (inode->i_mode & S_IFMT) {
1189 case S_IFBLK:
1190 case S_IFCHR:
1191 inode->i_rdev =
1192 MKDEV(sysv_major(ip->i_df.if_u2.if_rdev) & 0x1ff,
1193 sysv_minor(ip->i_df.if_u2.if_rdev));
1194 break;
1195 default:
1196 inode->i_rdev = 0;
1197 break;
1198 }
1199
1200 inode->i_generation = ip->i_d.di_gen;
1201 i_size_write(inode, ip->i_d.di_size);
1202 inode->i_atime.tv_sec = ip->i_d.di_atime.t_sec;
1203 inode->i_atime.tv_nsec = ip->i_d.di_atime.t_nsec;
1204 inode->i_mtime.tv_sec = ip->i_d.di_mtime.t_sec;
1205 inode->i_mtime.tv_nsec = ip->i_d.di_mtime.t_nsec;
1206 inode->i_ctime.tv_sec = ip->i_d.di_ctime.t_sec;
1207 inode->i_ctime.tv_nsec = ip->i_d.di_ctime.t_nsec;
1208 xfs_diflags_to_iflags(inode, ip);
Christoph Hellwig41be8be2008-08-13 16:23:13 +10001209
1210 switch (inode->i_mode & S_IFMT) {
1211 case S_IFREG:
1212 inode->i_op = &xfs_inode_operations;
1213 inode->i_fop = &xfs_file_operations;
1214 inode->i_mapping->a_ops = &xfs_address_space_operations;
1215 break;
1216 case S_IFDIR:
1217 if (xfs_sb_version_hasasciici(&XFS_M(inode->i_sb)->m_sb))
1218 inode->i_op = &xfs_dir_ci_inode_operations;
1219 else
1220 inode->i_op = &xfs_dir_inode_operations;
1221 inode->i_fop = &xfs_dir_file_operations;
1222 break;
1223 case S_IFLNK:
1224 inode->i_op = &xfs_symlink_inode_operations;
1225 if (!(ip->i_df.if_flags & XFS_IFINLINE))
1226 inode->i_mapping->a_ops = &xfs_address_space_operations;
1227 break;
1228 default:
1229 inode->i_op = &xfs_inode_operations;
1230 init_special_inode(inode, inode->i_mode, inode->i_rdev);
1231 break;
1232 }
1233
Christoph Hellwig510792e2011-07-26 15:07:29 +00001234 /*
1235 * If there is no attribute fork no ACL can exist on this inode,
1236 * and it can't have any file capabilities attached to it either.
1237 */
1238 if (!XFS_IFORK_Q(ip)) {
1239 inode_has_no_xattr(inode);
Christoph Hellwig6311b102011-07-23 17:36:50 +02001240 cache_no_acl(inode);
Christoph Hellwig510792e2011-07-26 15:07:29 +00001241 }
Christoph Hellwig6311b102011-07-23 17:36:50 +02001242
Christoph Hellwig41be8be2008-08-13 16:23:13 +10001243 xfs_iflags_clear(ip, XFS_INEW);
1244 barrier();
1245
1246 unlock_new_inode(inode);
1247}