blob: 2b8952d9199bbd145473a48b326120b8d43ed9b6 [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,
712 struct iattr *iattr,
713 int flags)
714{
715 struct xfs_mount *mp = ip->i_mount;
716 struct inode *inode = VFS_I(ip);
717 int mask = iattr->ia_valid;
Christoph Hellwig673e8e52011-12-18 20:00:04 +0000718 xfs_off_t oldsize, newsize;
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200719 struct xfs_trans *tp;
720 int error;
Christoph Hellwigf38996f2012-03-27 10:34:48 -0400721 uint lock_flags = 0;
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200722 uint commit_flags = 0;
723
724 trace_xfs_setattr(ip);
725
726 if (mp->m_flags & XFS_MOUNT_RDONLY)
727 return XFS_ERROR(EROFS);
728
729 if (XFS_FORCED_SHUTDOWN(mp))
730 return XFS_ERROR(EIO);
731
732 error = -inode_change_ok(inode, iattr);
733 if (error)
734 return XFS_ERROR(error);
735
736 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 Hellwigf38996f2012-03-27 10:34:48 -0400740 if (!(flags & XFS_ATTR_NOLOCK)) {
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200741 lock_flags |= XFS_IOLOCK_EXCL;
Christoph Hellwigf38996f2012-03-27 10:34:48 -0400742 xfs_ilock(ip, lock_flags);
743 }
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200744
Christoph Hellwigce7ae1512011-12-18 20:00:11 +0000745 oldsize = inode->i_size;
Christoph Hellwig673e8e52011-12-18 20:00:04 +0000746 newsize = iattr->ia_size;
747
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200748 /*
749 * Short circuit the truncate case for zero length files.
750 */
Christoph Hellwig673e8e52011-12-18 20:00:04 +0000751 if (newsize == 0 && oldsize == 0 && ip->i_d.di_nextents == 0) {
Christoph Hellwig681b1202011-07-08 14:34:26 +0200752 if (!(mask & (ATTR_CTIME|ATTR_MTIME)))
753 goto out_unlock;
754
755 /*
756 * Use the regular setattr path to update the timestamps.
757 */
758 xfs_iunlock(ip, lock_flags);
759 iattr->ia_valid &= ~ATTR_SIZE;
760 return xfs_setattr_nonsize(ip, iattr, 0);
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200761 }
762
763 /*
764 * Make sure that the dquots are attached to the inode.
765 */
Christoph Hellwigf38996f2012-03-27 10:34:48 -0400766 error = xfs_qm_dqattach(ip, 0);
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200767 if (error)
768 goto out_unlock;
769
770 /*
771 * Now we can make the changes. Before we join the inode to the
772 * transaction, take care of the part of the truncation that must be
773 * done without the inode lock. This needs to be done before joining
774 * the inode to the transaction, because the inode cannot be unlocked
775 * once it is a part of the transaction.
776 */
Christoph Hellwig673e8e52011-12-18 20:00:04 +0000777 if (newsize > oldsize) {
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200778 /*
779 * Do the first part of growing a file: zero any data in the
780 * last block that is beyond the old EOF. We need to do this
781 * before the inode is joined to the transaction to modify
782 * i_size.
783 */
Christoph Hellwig673e8e52011-12-18 20:00:04 +0000784 error = xfs_zero_eof(ip, newsize, oldsize);
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200785 if (error)
786 goto out_unlock;
787 }
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200788
789 /*
790 * We are going to log the inode size change in this transaction so
791 * any previous writes that are beyond the on disk EOF and the new
792 * EOF that have not been written out need to be written here. If we
793 * do not write the data out, we expose ourselves to the null files
794 * problem.
795 *
796 * Only flush from the on disk size to the smaller of the in memory
797 * file size or the new size as that's the range we really care about
798 * here and prevents waiting for other data not within the range we
799 * care about here.
800 */
Christoph Hellwig673e8e52011-12-18 20:00:04 +0000801 if (oldsize != ip->i_d.di_size && newsize > ip->i_d.di_size) {
Dave Chinner4bc1ea62012-11-12 22:53:56 +1100802 error = -filemap_write_and_wait_range(VFS_I(ip)->i_mapping,
803 ip->i_d.di_size, newsize);
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200804 if (error)
805 goto out_unlock;
806 }
807
808 /*
Christoph Hellwig4a06fd22011-08-23 08:28:13 +0000809 * Wait for all direct I/O to complete.
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200810 */
Christoph Hellwig4a06fd22011-08-23 08:28:13 +0000811 inode_dio_wait(inode);
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200812
Christoph Hellwig673e8e52011-12-18 20:00:04 +0000813 error = -block_truncate_page(inode->i_mapping, newsize, xfs_get_blocks);
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200814 if (error)
815 goto out_unlock;
816
817 tp = xfs_trans_alloc(mp, XFS_TRANS_SETATTR_SIZE);
Jie Liu3d3c8b52013-08-12 20:49:59 +1000818 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_itruncate, 0, 0);
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200819 if (error)
820 goto out_trans_cancel;
821
Christoph Hellwig673e8e52011-12-18 20:00:04 +0000822 truncate_setsize(inode, newsize);
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200823
824 commit_flags = XFS_TRANS_RELEASE_LOG_RES;
825 lock_flags |= XFS_ILOCK_EXCL;
826
827 xfs_ilock(ip, XFS_ILOCK_EXCL);
828
Christoph Hellwigddc34152011-09-19 15:00:54 +0000829 xfs_trans_ijoin(tp, ip, 0);
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200830
831 /*
832 * Only change the c/mtime if we are changing the size or we are
833 * explicitly asked to change it. This handles the semantic difference
834 * between truncate() and ftruncate() as implemented in the VFS.
835 *
836 * The regular truncate() case without ATTR_CTIME and ATTR_MTIME is a
837 * special case where we need to update the times despite not having
838 * these flags set. For all other operations the VFS set these flags
839 * explicitly if it wants a timestamp update.
840 */
Christoph Hellwig673e8e52011-12-18 20:00:04 +0000841 if (newsize != oldsize && (!(mask & (ATTR_CTIME | ATTR_MTIME)))) {
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200842 iattr->ia_ctime = iattr->ia_mtime =
843 current_fs_time(inode->i_sb);
844 mask |= ATTR_CTIME | ATTR_MTIME;
845 }
846
Christoph Hellwig673e8e52011-12-18 20:00:04 +0000847 /*
848 * The first thing we do is set the size to new_size permanently on
849 * disk. This way we don't have to worry about anyone ever being able
850 * to look at the data being freed even in the face of a crash.
851 * What we're getting around here is the case where we free a block, it
852 * is allocated to another file, it is written to, and then we crash.
853 * If the new data gets written to the file but the log buffers
854 * containing the free and reallocation don't, then we'd end up with
855 * garbage in the blocks being freed. As long as we make the new size
856 * permanent before actually freeing any blocks it doesn't matter if
857 * they get written to.
858 */
859 ip->i_d.di_size = newsize;
Christoph Hellwig673e8e52011-12-18 20:00:04 +0000860 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
861
862 if (newsize <= oldsize) {
863 error = xfs_itruncate_extents(&tp, ip, XFS_DATA_FORK, newsize);
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200864 if (error)
865 goto out_trans_abort;
866
867 /*
868 * Truncated "down", so we're removing references to old data
869 * here - if we delay flushing for a long time, we expose
870 * ourselves unduly to the notorious NULL files problem. So,
871 * we mark this inode and flush it when the file is closed,
872 * and do not wait the usual (long) time for writeout.
873 */
874 xfs_iflags_set(ip, XFS_ITRUNCATED);
Brian Foster27b52862012-11-06 09:50:38 -0500875
876 /* A truncate down always removes post-EOF blocks. */
877 xfs_inode_clear_eofblocks_tag(ip);
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200878 }
879
Dave Chinner56c19e82013-05-27 16:38:25 +1000880 /*
881 * Change file access modes.
882 */
883 if (mask & ATTR_MODE)
884 xfs_setattr_mode(tp, ip, iattr);
885
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200886 if (mask & ATTR_CTIME) {
887 inode->i_ctime = iattr->ia_ctime;
888 ip->i_d.di_ctime.t_sec = iattr->ia_ctime.tv_sec;
889 ip->i_d.di_ctime.t_nsec = iattr->ia_ctime.tv_nsec;
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200890 }
891 if (mask & ATTR_MTIME) {
892 inode->i_mtime = iattr->ia_mtime;
893 ip->i_d.di_mtime.t_sec = iattr->ia_mtime.tv_sec;
894 ip->i_d.di_mtime.t_nsec = iattr->ia_mtime.tv_nsec;
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200895 }
896
897 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
898
899 XFS_STATS_INC(xs_ig_attrchg);
900
901 if (mp->m_flags & XFS_MOUNT_WSYNC)
902 xfs_trans_set_sync(tp);
903
904 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
905out_unlock:
906 if (lock_flags)
907 xfs_iunlock(ip, lock_flags);
908 return error;
909
910out_trans_abort:
911 commit_flags |= XFS_TRANS_ABORT;
912out_trans_cancel:
913 xfs_trans_cancel(tp, commit_flags);
914 goto out_unlock;
915}
916
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917STATIC int
Nathan Scott416c6d52006-03-14 14:00:51 +1100918xfs_vn_setattr(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 struct dentry *dentry,
Christoph Hellwig0f285c82008-07-18 17:13:28 +1000920 struct iattr *iattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921{
Christoph Hellwigc4ed4242011-07-08 14:34:23 +0200922 if (iattr->ia_valid & ATTR_SIZE)
923 return -xfs_setattr_size(XFS_I(dentry->d_inode), iattr, 0);
924 return -xfs_setattr_nonsize(XFS_I(dentry->d_inode), iattr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925}
926
Christoph Hellwig69ff2822012-06-06 17:01:28 -0400927STATIC int
928xfs_vn_update_time(
929 struct inode *inode,
930 struct timespec *now,
931 int flags)
932{
933 struct xfs_inode *ip = XFS_I(inode);
934 struct xfs_mount *mp = ip->i_mount;
935 struct xfs_trans *tp;
936 int error;
937
938 trace_xfs_update_time(ip);
939
940 tp = xfs_trans_alloc(mp, XFS_TRANS_FSYNC_TS);
Jie Liu3d3c8b52013-08-12 20:49:59 +1000941 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_fsyncts, 0, 0);
Christoph Hellwig69ff2822012-06-06 17:01:28 -0400942 if (error) {
943 xfs_trans_cancel(tp, 0);
944 return -error;
945 }
946
947 xfs_ilock(ip, XFS_ILOCK_EXCL);
948 if (flags & S_CTIME) {
949 inode->i_ctime = *now;
950 ip->i_d.di_ctime.t_sec = (__int32_t)now->tv_sec;
951 ip->i_d.di_ctime.t_nsec = (__int32_t)now->tv_nsec;
952 }
953 if (flags & S_MTIME) {
954 inode->i_mtime = *now;
955 ip->i_d.di_mtime.t_sec = (__int32_t)now->tv_sec;
956 ip->i_d.di_mtime.t_nsec = (__int32_t)now->tv_nsec;
957 }
958 if (flags & S_ATIME) {
959 inode->i_atime = *now;
960 ip->i_d.di_atime.t_sec = (__int32_t)now->tv_sec;
961 ip->i_d.di_atime.t_nsec = (__int32_t)now->tv_nsec;
962 }
963 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
964 xfs_trans_log_inode(tp, ip, XFS_ILOG_TIMESTAMP);
965 return -xfs_trans_commit(tp, 0);
966}
967
Eric Sandeenf35642e2008-11-28 14:23:35 +1100968#define XFS_FIEMAP_FLAGS (FIEMAP_FLAG_SYNC|FIEMAP_FLAG_XATTR)
969
970/*
971 * Call fiemap helper to fill in user data.
972 * Returns positive errors to xfs_getbmap.
973 */
974STATIC int
975xfs_fiemap_format(
976 void **arg,
977 struct getbmapx *bmv,
978 int *full)
979{
980 int error;
981 struct fiemap_extent_info *fieinfo = *arg;
982 u32 fiemap_flags = 0;
983 u64 logical, physical, length;
984
985 /* Do nothing for a hole */
986 if (bmv->bmv_block == -1LL)
987 return 0;
988
989 logical = BBTOB(bmv->bmv_offset);
990 physical = BBTOB(bmv->bmv_block);
991 length = BBTOB(bmv->bmv_length);
992
993 if (bmv->bmv_oflags & BMV_OF_PREALLOC)
994 fiemap_flags |= FIEMAP_EXTENT_UNWRITTEN;
995 else if (bmv->bmv_oflags & BMV_OF_DELALLOC) {
Jie Liu635c4d02013-06-06 06:24:01 -0700996 fiemap_flags |= (FIEMAP_EXTENT_DELALLOC |
997 FIEMAP_EXTENT_UNKNOWN);
Eric Sandeenf35642e2008-11-28 14:23:35 +1100998 physical = 0; /* no block yet */
999 }
1000 if (bmv->bmv_oflags & BMV_OF_LAST)
1001 fiemap_flags |= FIEMAP_EXTENT_LAST;
1002
1003 error = fiemap_fill_next_extent(fieinfo, logical, physical,
1004 length, fiemap_flags);
1005 if (error > 0) {
1006 error = 0;
1007 *full = 1; /* user array now full */
1008 }
1009
1010 return -error;
1011}
1012
1013STATIC int
1014xfs_vn_fiemap(
1015 struct inode *inode,
1016 struct fiemap_extent_info *fieinfo,
1017 u64 start,
1018 u64 length)
1019{
1020 xfs_inode_t *ip = XFS_I(inode);
1021 struct getbmapx bm;
1022 int error;
1023
1024 error = fiemap_check_flags(fieinfo, XFS_FIEMAP_FLAGS);
1025 if (error)
1026 return error;
1027
1028 /* Set up bmap header for xfs internal routine */
1029 bm.bmv_offset = BTOBB(start);
1030 /* Special case for whole file */
1031 if (length == FIEMAP_MAX_OFFSET)
1032 bm.bmv_length = -1LL;
1033 else
1034 bm.bmv_length = BTOBB(length);
1035
Eric Sandeen97db39a2009-07-26 21:52:01 -05001036 /* We add one because in getbmap world count includes the header */
Tao Ma2d1ff3c2010-04-29 15:13:56 +10001037 bm.bmv_count = !fieinfo->fi_extents_max ? MAXEXTNUM :
1038 fieinfo->fi_extents_max + 1;
1039 bm.bmv_count = min_t(__s32, bm.bmv_count,
1040 (PAGE_SIZE * 16 / sizeof(struct getbmapx)));
Tao Ma9af25462010-08-30 02:44:03 +00001041 bm.bmv_iflags = BMV_IF_PREALLOC | BMV_IF_NO_HOLES;
Eric Sandeenf35642e2008-11-28 14:23:35 +11001042 if (fieinfo->fi_flags & FIEMAP_FLAG_XATTR)
1043 bm.bmv_iflags |= BMV_IF_ATTRFORK;
1044 if (!(fieinfo->fi_flags & FIEMAP_FLAG_SYNC))
1045 bm.bmv_iflags |= BMV_IF_DELALLOC;
1046
1047 error = xfs_getbmap(ip, &bm, xfs_fiemap_format, fieinfo);
1048 if (error)
1049 return -error;
1050
1051 return 0;
1052}
1053
Christoph Hellwig41be8be2008-08-13 16:23:13 +10001054static const struct inode_operations xfs_inode_operations = {
Christoph Hellwig4e34e712011-07-23 17:37:31 +02001055 .get_acl = xfs_get_acl,
Nathan Scott416c6d52006-03-14 14:00:51 +11001056 .getattr = xfs_vn_getattr,
1057 .setattr = xfs_vn_setattr,
Lachlan McIlroy0ec58512008-06-23 13:23:01 +10001058 .setxattr = generic_setxattr,
1059 .getxattr = generic_getxattr,
1060 .removexattr = generic_removexattr,
Nathan Scott416c6d52006-03-14 14:00:51 +11001061 .listxattr = xfs_vn_listxattr,
Eric Sandeenf35642e2008-11-28 14:23:35 +11001062 .fiemap = xfs_vn_fiemap,
Christoph Hellwig69ff2822012-06-06 17:01:28 -04001063 .update_time = xfs_vn_update_time,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064};
1065
Christoph Hellwig41be8be2008-08-13 16:23:13 +10001066static const struct inode_operations xfs_dir_inode_operations = {
Nathan Scott416c6d52006-03-14 14:00:51 +11001067 .create = xfs_vn_create,
1068 .lookup = xfs_vn_lookup,
1069 .link = xfs_vn_link,
1070 .unlink = xfs_vn_unlink,
1071 .symlink = xfs_vn_symlink,
1072 .mkdir = xfs_vn_mkdir,
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001073 /*
1074 * Yes, XFS uses the same method for rmdir and unlink.
1075 *
1076 * There are some subtile differences deeper in the code,
1077 * but we use S_ISDIR to check for those.
1078 */
1079 .rmdir = xfs_vn_unlink,
Nathan Scott416c6d52006-03-14 14:00:51 +11001080 .mknod = xfs_vn_mknod,
1081 .rename = xfs_vn_rename,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02001082 .get_acl = xfs_get_acl,
Nathan Scott416c6d52006-03-14 14:00:51 +11001083 .getattr = xfs_vn_getattr,
1084 .setattr = xfs_vn_setattr,
Lachlan McIlroy0ec58512008-06-23 13:23:01 +10001085 .setxattr = generic_setxattr,
1086 .getxattr = generic_getxattr,
1087 .removexattr = generic_removexattr,
Nathan Scott416c6d52006-03-14 14:00:51 +11001088 .listxattr = xfs_vn_listxattr,
Christoph Hellwig69ff2822012-06-06 17:01:28 -04001089 .update_time = xfs_vn_update_time,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090};
1091
Christoph Hellwig41be8be2008-08-13 16:23:13 +10001092static const struct inode_operations xfs_dir_ci_inode_operations = {
Barry Naujok384f3ce2008-05-21 16:58:22 +10001093 .create = xfs_vn_create,
1094 .lookup = xfs_vn_ci_lookup,
1095 .link = xfs_vn_link,
1096 .unlink = xfs_vn_unlink,
1097 .symlink = xfs_vn_symlink,
1098 .mkdir = xfs_vn_mkdir,
Christoph Hellwig8f112e32008-06-23 13:25:17 +10001099 /*
1100 * Yes, XFS uses the same method for rmdir and unlink.
1101 *
1102 * There are some subtile differences deeper in the code,
1103 * but we use S_ISDIR to check for those.
1104 */
1105 .rmdir = xfs_vn_unlink,
Barry Naujok384f3ce2008-05-21 16:58:22 +10001106 .mknod = xfs_vn_mknod,
1107 .rename = xfs_vn_rename,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02001108 .get_acl = xfs_get_acl,
Barry Naujok384f3ce2008-05-21 16:58:22 +10001109 .getattr = xfs_vn_getattr,
1110 .setattr = xfs_vn_setattr,
Lachlan McIlroy0ec58512008-06-23 13:23:01 +10001111 .setxattr = generic_setxattr,
1112 .getxattr = generic_getxattr,
1113 .removexattr = generic_removexattr,
Barry Naujok384f3ce2008-05-21 16:58:22 +10001114 .listxattr = xfs_vn_listxattr,
Christoph Hellwig69ff2822012-06-06 17:01:28 -04001115 .update_time = xfs_vn_update_time,
Barry Naujok384f3ce2008-05-21 16:58:22 +10001116};
1117
Christoph Hellwig41be8be2008-08-13 16:23:13 +10001118static const struct inode_operations xfs_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 .readlink = generic_readlink,
Nathan Scott416c6d52006-03-14 14:00:51 +11001120 .follow_link = xfs_vn_follow_link,
1121 .put_link = xfs_vn_put_link,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02001122 .get_acl = xfs_get_acl,
Nathan Scott416c6d52006-03-14 14:00:51 +11001123 .getattr = xfs_vn_getattr,
1124 .setattr = xfs_vn_setattr,
Lachlan McIlroy0ec58512008-06-23 13:23:01 +10001125 .setxattr = generic_setxattr,
1126 .getxattr = generic_getxattr,
1127 .removexattr = generic_removexattr,
Nathan Scott416c6d52006-03-14 14:00:51 +11001128 .listxattr = xfs_vn_listxattr,
Christoph Hellwig69ff2822012-06-06 17:01:28 -04001129 .update_time = xfs_vn_update_time,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130};
Christoph Hellwig41be8be2008-08-13 16:23:13 +10001131
1132STATIC void
1133xfs_diflags_to_iflags(
1134 struct inode *inode,
1135 struct xfs_inode *ip)
1136{
1137 if (ip->i_d.di_flags & XFS_DIFLAG_IMMUTABLE)
1138 inode->i_flags |= S_IMMUTABLE;
1139 else
1140 inode->i_flags &= ~S_IMMUTABLE;
1141 if (ip->i_d.di_flags & XFS_DIFLAG_APPEND)
1142 inode->i_flags |= S_APPEND;
1143 else
1144 inode->i_flags &= ~S_APPEND;
1145 if (ip->i_d.di_flags & XFS_DIFLAG_SYNC)
1146 inode->i_flags |= S_SYNC;
1147 else
1148 inode->i_flags &= ~S_SYNC;
1149 if (ip->i_d.di_flags & XFS_DIFLAG_NOATIME)
1150 inode->i_flags |= S_NOATIME;
1151 else
1152 inode->i_flags &= ~S_NOATIME;
1153}
1154
1155/*
1156 * Initialize the Linux inode, set up the operation vectors and
1157 * unlock the inode.
1158 *
1159 * When reading existing inodes from disk this is called directly
1160 * from xfs_iget, when creating a new inode it is called from
1161 * xfs_ialloc after setting up the inode.
David Chinnerbf904242008-10-30 17:36:14 +11001162 *
1163 * We are always called with an uninitialised linux inode here.
1164 * We need to initialise the necessary fields and take a reference
1165 * on it.
Christoph Hellwig41be8be2008-08-13 16:23:13 +10001166 */
1167void
1168xfs_setup_inode(
1169 struct xfs_inode *ip)
1170{
David Chinnerbf904242008-10-30 17:36:14 +11001171 struct inode *inode = &ip->i_vnode;
1172
1173 inode->i_ino = ip->i_ino;
Christoph Hellwigeaff8072009-12-17 14:25:01 +01001174 inode->i_state = I_NEW;
Christoph Hellwig646ec462010-10-23 07:15:32 -04001175
1176 inode_sb_list_add(inode);
Christoph Hellwigc6f6cd02010-11-06 11:43:08 +00001177 /* make the inode look hashed for the writeback code */
1178 hlist_add_fake(&inode->i_hash);
Christoph Hellwig41be8be2008-08-13 16:23:13 +10001179
1180 inode->i_mode = ip->i_d.di_mode;
Miklos Szeredibfe86842011-10-28 14:13:29 +02001181 set_nlink(inode, ip->i_d.di_nlink);
Dwight Engen7aab1b22013-08-15 14:08:01 -04001182 inode->i_uid = xfs_uid_to_kuid(ip->i_d.di_uid);
1183 inode->i_gid = xfs_gid_to_kgid(ip->i_d.di_gid);
Christoph Hellwig41be8be2008-08-13 16:23:13 +10001184
1185 switch (inode->i_mode & S_IFMT) {
1186 case S_IFBLK:
1187 case S_IFCHR:
1188 inode->i_rdev =
1189 MKDEV(sysv_major(ip->i_df.if_u2.if_rdev) & 0x1ff,
1190 sysv_minor(ip->i_df.if_u2.if_rdev));
1191 break;
1192 default:
1193 inode->i_rdev = 0;
1194 break;
1195 }
1196
1197 inode->i_generation = ip->i_d.di_gen;
1198 i_size_write(inode, ip->i_d.di_size);
1199 inode->i_atime.tv_sec = ip->i_d.di_atime.t_sec;
1200 inode->i_atime.tv_nsec = ip->i_d.di_atime.t_nsec;
1201 inode->i_mtime.tv_sec = ip->i_d.di_mtime.t_sec;
1202 inode->i_mtime.tv_nsec = ip->i_d.di_mtime.t_nsec;
1203 inode->i_ctime.tv_sec = ip->i_d.di_ctime.t_sec;
1204 inode->i_ctime.tv_nsec = ip->i_d.di_ctime.t_nsec;
1205 xfs_diflags_to_iflags(inode, ip);
Christoph Hellwig41be8be2008-08-13 16:23:13 +10001206
1207 switch (inode->i_mode & S_IFMT) {
1208 case S_IFREG:
1209 inode->i_op = &xfs_inode_operations;
1210 inode->i_fop = &xfs_file_operations;
1211 inode->i_mapping->a_ops = &xfs_address_space_operations;
1212 break;
1213 case S_IFDIR:
1214 if (xfs_sb_version_hasasciici(&XFS_M(inode->i_sb)->m_sb))
1215 inode->i_op = &xfs_dir_ci_inode_operations;
1216 else
1217 inode->i_op = &xfs_dir_inode_operations;
1218 inode->i_fop = &xfs_dir_file_operations;
1219 break;
1220 case S_IFLNK:
1221 inode->i_op = &xfs_symlink_inode_operations;
1222 if (!(ip->i_df.if_flags & XFS_IFINLINE))
1223 inode->i_mapping->a_ops = &xfs_address_space_operations;
1224 break;
1225 default:
1226 inode->i_op = &xfs_inode_operations;
1227 init_special_inode(inode, inode->i_mode, inode->i_rdev);
1228 break;
1229 }
1230
Christoph Hellwig510792e2011-07-26 15:07:29 +00001231 /*
1232 * If there is no attribute fork no ACL can exist on this inode,
1233 * and it can't have any file capabilities attached to it either.
1234 */
1235 if (!XFS_IFORK_Q(ip)) {
1236 inode_has_no_xattr(inode);
Christoph Hellwig6311b102011-07-23 17:36:50 +02001237 cache_no_acl(inode);
Christoph Hellwig510792e2011-07-26 15:07:29 +00001238 }
Christoph Hellwig6311b102011-07-23 17:36:50 +02001239
Christoph Hellwig41be8be2008-08-13 16:23:13 +10001240 xfs_iflags_clear(ip, XFS_INEW);
1241 barrier();
1242
1243 unlock_new_inode(inode);
1244}