]> git.ipfire.org Git - people/ms/linux.git/blame - fs/xfs/xfs_iops.c
xfs: constify the buffer pointer arguments to error functions
[people/ms/linux.git] / fs / xfs / xfs_iops.c
CommitLineData
0b61f8a4 1// SPDX-License-Identifier: GPL-2.0
1da177e4 2/*
7b718769
NS
3 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
4 * All Rights Reserved.
1da177e4 5 */
1da177e4
LT
6#include "xfs.h"
7#include "xfs_fs.h"
70a9883c 8#include "xfs_shared.h"
239880ef
DC
9#include "xfs_format.h"
10#include "xfs_log_format.h"
11#include "xfs_trans_resv.h"
1da177e4 12#include "xfs_mount.h"
1da177e4 13#include "xfs_inode.h"
239880ef 14#include "xfs_acl.h"
239880ef 15#include "xfs_quota.h"
1da177e4 16#include "xfs_attr.h"
239880ef 17#include "xfs_trans.h"
0b1b213f 18#include "xfs_trace.h"
27b52867 19#include "xfs_icache.h"
c24b5dfa 20#include "xfs_symlink.h"
1b767ee3 21#include "xfs_dir2.h"
68a9f5e7 22#include "xfs_iomap.h"
1da177e4
LT
23
24#include <linux/xattr.h>
ef14f0c1 25#include <linux/posix_acl.h>
446ada4a 26#include <linux/security.h>
c3b1b131 27#include <linux/iversion.h>
1da177e4 28
93a8614e
DC
29/*
30 * Directories have different lock order w.r.t. mmap_sem compared to regular
31 * files. This is due to readdir potentially triggering page faults on a user
32 * buffer inside filldir(), and this happens with the ilock on the directory
33 * held. For regular files, the lock order is the other way around - the
34 * mmap_sem is taken during the page fault, and then we lock the ilock to do
35 * block mapping. Hence we need a different class for the directory ilock so
36 * that lockdep can tell them apart.
37 */
38static struct lock_class_key xfs_nondir_ilock_class;
39static struct lock_class_key xfs_dir_ilock_class;
40
8d2a5e6e
DC
41static int
42xfs_initxattrs(
43 struct inode *inode,
44 const struct xattr *xattr_array,
45 void *fs_info)
9d8f13ba 46{
8d2a5e6e
DC
47 const struct xattr *xattr;
48 struct xfs_inode *ip = XFS_I(inode);
49 int error = 0;
9d8f13ba
MZ
50
51 for (xattr = xattr_array; xattr->name != NULL; xattr++) {
2451337d 52 error = xfs_attr_set(ip, xattr->name, xattr->value,
a5a14de2 53 xattr->value_len, ATTR_SECURE);
9d8f13ba
MZ
54 if (error < 0)
55 break;
56 }
57 return error;
58}
59
446ada4a
NS
60/*
61 * Hook in SELinux. This is not quite correct yet, what we really need
62 * here (as we do for default ACLs) is a mechanism by which creation of
63 * these attrs can be journalled at inode creation time (along with the
64 * inode, of course, such that log replay can't cause these to be lost).
65 */
9d8f13ba 66
446ada4a 67STATIC int
416c6d5b 68xfs_init_security(
af048193 69 struct inode *inode,
2a7dba39
EP
70 struct inode *dir,
71 const struct qstr *qstr)
446ada4a 72{
2451337d 73 return security_inode_init_security(inode, dir, qstr,
a5a14de2 74 &xfs_initxattrs, NULL);
446ada4a
NS
75}
76
556b8b16
BN
77static void
78xfs_dentry_to_name(
fab8eef8
AG
79 struct xfs_name *namep,
80 struct dentry *dentry)
81{
82 namep->name = dentry->d_name.name;
83 namep->len = dentry->d_name.len;
84 namep->type = XFS_DIR3_FT_UNKNOWN;
85}
86
87static int
88xfs_dentry_mode_to_name(
556b8b16 89 struct xfs_name *namep,
0cb97766
DC
90 struct dentry *dentry,
91 int mode)
556b8b16
BN
92{
93 namep->name = dentry->d_name.name;
94 namep->len = dentry->d_name.len;
1fc4d33f 95 namep->type = xfs_mode_to_ftype(mode);
fab8eef8
AG
96
97 if (unlikely(namep->type == XFS_DIR3_FT_UNKNOWN))
98 return -EFSCORRUPTED;
99
100 return 0;
556b8b16
BN
101}
102
7989cb8e 103STATIC void
416c6d5b 104xfs_cleanup_inode(
739bfb2a 105 struct inode *dir,
af048193 106 struct inode *inode,
8f112e3b 107 struct dentry *dentry)
3a69c7dc 108{
556b8b16 109 struct xfs_name teardown;
3a69c7dc
YL
110
111 /* Oh, the horror.
220b5284 112 * If we can't add the ACL or we fail in
416c6d5b 113 * xfs_init_security we must back out.
3a69c7dc
YL
114 * ENOSPC can hit here, among other things.
115 */
fab8eef8 116 xfs_dentry_to_name(&teardown, dentry);
3a69c7dc 117
8f112e3b 118 xfs_remove(XFS_I(dir), &teardown, XFS_I(inode));
3a69c7dc
YL
119}
120
1da177e4 121STATIC int
d540e43b 122xfs_generic_create(
1da177e4
LT
123 struct inode *dir,
124 struct dentry *dentry,
1a67aafb 125 umode_t mode,
d540e43b
BF
126 dev_t rdev,
127 bool tmpfile) /* unnamed file */
1da177e4 128{
db0bb7ba 129 struct inode *inode;
979ebab1 130 struct xfs_inode *ip = NULL;
2401dc29 131 struct posix_acl *default_acl, *acl;
556b8b16 132 struct xfs_name name;
1da177e4
LT
133 int error;
134
135 /*
136 * Irix uses Missed'em'V split, but doesn't want to see
137 * the upper 5 bits of (14bit) major.
138 */
517b5e8c
CH
139 if (S_ISCHR(mode) || S_ISBLK(mode)) {
140 if (unlikely(!sysv_valid_dev(rdev) || MAJOR(rdev) & ~0x1ff))
141 return -EINVAL;
517b5e8c
CH
142 } else {
143 rdev = 0;
144 }
1da177e4 145
2401dc29
CH
146 error = posix_acl_create(dir, &mode, &default_acl, &acl);
147 if (error)
148 return error;
1da177e4 149
fab8eef8
AG
150 /* Verify mode is valid also for tmpfile case */
151 error = xfs_dentry_mode_to_name(&name, dentry, mode);
152 if (unlikely(error))
153 goto out_free_acl;
154
d540e43b 155 if (!tmpfile) {
d540e43b
BF
156 error = xfs_create(XFS_I(dir), &name, mode, rdev, &ip);
157 } else {
a1f69417 158 error = xfs_create_tmpfile(XFS_I(dir), mode, &ip);
d540e43b 159 }
db0bb7ba
CH
160 if (unlikely(error))
161 goto out_free_acl;
446ada4a 162
01651646 163 inode = VFS_I(ip);
979ebab1 164
2a7dba39 165 error = xfs_init_security(inode, dir, &dentry->d_name);
db0bb7ba
CH
166 if (unlikely(error))
167 goto out_cleanup_inode;
168
2401dc29 169#ifdef CONFIG_XFS_POSIX_ACL
db0bb7ba 170 if (default_acl) {
8ba35875 171 error = __xfs_set_acl(inode, default_acl, ACL_TYPE_DEFAULT);
2401dc29 172 if (error)
db0bb7ba 173 goto out_cleanup_inode;
1da177e4 174 }
2401dc29 175 if (acl) {
8ba35875 176 error = __xfs_set_acl(inode, acl, ACL_TYPE_ACCESS);
2401dc29
CH
177 if (error)
178 goto out_cleanup_inode;
179 }
180#endif
1da177e4 181
2b3d1d41
CH
182 xfs_setup_iops(ip);
183
c4a6bf7f
DW
184 if (tmpfile) {
185 /*
186 * The VFS requires that any inode fed to d_tmpfile must have
187 * nlink == 1 so that it can decrement the nlink in d_tmpfile.
188 * However, we created the temp file with nlink == 0 because
189 * we're not allowed to put an inode with nlink > 0 on the
190 * unlinked list. Therefore we have to set nlink to 1 so that
191 * d_tmpfile can immediately set it back to zero.
192 */
193 set_nlink(inode, 1);
d540e43b 194 d_tmpfile(dentry, inode);
c4a6bf7f 195 } else
d540e43b
BF
196 d_instantiate(dentry, inode);
197
58c90473
DC
198 xfs_finish_inode_setup(ip);
199
2401dc29
CH
200 out_free_acl:
201 if (default_acl)
202 posix_acl_release(default_acl);
203 if (acl)
204 posix_acl_release(acl);
2451337d 205 return error;
db0bb7ba
CH
206
207 out_cleanup_inode:
58c90473 208 xfs_finish_inode_setup(ip);
d540e43b
BF
209 if (!tmpfile)
210 xfs_cleanup_inode(dir, inode, dentry);
44a8736b 211 xfs_irele(ip);
2401dc29 212 goto out_free_acl;
1da177e4
LT
213}
214
d540e43b
BF
215STATIC int
216xfs_vn_mknod(
217 struct inode *dir,
218 struct dentry *dentry,
219 umode_t mode,
220 dev_t rdev)
221{
222 return xfs_generic_create(dir, dentry, mode, rdev, false);
223}
224
1da177e4 225STATIC int
416c6d5b 226xfs_vn_create(
1da177e4
LT
227 struct inode *dir,
228 struct dentry *dentry,
4acdaf27 229 umode_t mode,
ebfc3b49 230 bool flags)
1da177e4 231{
416c6d5b 232 return xfs_vn_mknod(dir, dentry, mode, 0);
1da177e4
LT
233}
234
235STATIC int
416c6d5b 236xfs_vn_mkdir(
1da177e4
LT
237 struct inode *dir,
238 struct dentry *dentry,
18bb1db3 239 umode_t mode)
1da177e4 240{
416c6d5b 241 return xfs_vn_mknod(dir, dentry, mode|S_IFDIR, 0);
1da177e4
LT
242}
243
244STATIC struct dentry *
416c6d5b 245xfs_vn_lookup(
1da177e4
LT
246 struct inode *dir,
247 struct dentry *dentry,
00cd8dd3 248 unsigned int flags)
1da177e4 249{
b113a6d3 250 struct inode *inode;
ef1f5e7a 251 struct xfs_inode *cip;
556b8b16 252 struct xfs_name name;
1da177e4
LT
253 int error;
254
255 if (dentry->d_name.len >= MAXNAMELEN)
256 return ERR_PTR(-ENAMETOOLONG);
257
fab8eef8 258 xfs_dentry_to_name(&name, dentry);
384f3ced 259 error = xfs_lookup(XFS_I(dir), &name, &cip, NULL);
b113a6d3
AV
260 if (likely(!error))
261 inode = VFS_I(cip);
262 else if (likely(error == -ENOENT))
263 inode = NULL;
264 else
265 inode = ERR_PTR(error);
266 return d_splice_alias(inode, dentry);
1da177e4
LT
267}
268
384f3ced
BN
269STATIC struct dentry *
270xfs_vn_ci_lookup(
271 struct inode *dir,
272 struct dentry *dentry,
00cd8dd3 273 unsigned int flags)
384f3ced
BN
274{
275 struct xfs_inode *ip;
276 struct xfs_name xname;
277 struct xfs_name ci_name;
278 struct qstr dname;
279 int error;
280
281 if (dentry->d_name.len >= MAXNAMELEN)
282 return ERR_PTR(-ENAMETOOLONG);
283
fab8eef8 284 xfs_dentry_to_name(&xname, dentry);
384f3ced
BN
285 error = xfs_lookup(XFS_I(dir), &xname, &ip, &ci_name);
286 if (unlikely(error)) {
2451337d
DC
287 if (unlikely(error != -ENOENT))
288 return ERR_PTR(error);
866d5dc9
BN
289 /*
290 * call d_add(dentry, NULL) here when d_drop_negative_children
291 * is called in xfs_vn_mknod (ie. allow negative dentries
292 * with CI filesystems).
293 */
384f3ced
BN
294 return NULL;
295 }
296
297 /* if exact match, just splice and exit */
298 if (!ci_name.name)
01651646 299 return d_splice_alias(VFS_I(ip), dentry);
384f3ced
BN
300
301 /* else case-insensitive match... */
302 dname.name = ci_name.name;
303 dname.len = ci_name.len;
e45b590b 304 dentry = d_add_ci(dentry, VFS_I(ip), &dname);
384f3ced
BN
305 kmem_free(ci_name.name);
306 return dentry;
307}
308
1da177e4 309STATIC int
416c6d5b 310xfs_vn_link(
1da177e4
LT
311 struct dentry *old_dentry,
312 struct inode *dir,
313 struct dentry *dentry)
314{
2b0143b5 315 struct inode *inode = d_inode(old_dentry);
556b8b16 316 struct xfs_name name;
1da177e4
LT
317 int error;
318
fab8eef8
AG
319 error = xfs_dentry_mode_to_name(&name, dentry, inode->i_mode);
320 if (unlikely(error))
321 return error;
1da177e4 322
556b8b16 323 error = xfs_link(XFS_I(dir), XFS_I(inode), &name);
d9424b3c 324 if (unlikely(error))
2451337d 325 return error;
a3da7896 326
7de9c6ee 327 ihold(inode);
a3da7896
CH
328 d_instantiate(dentry, inode);
329 return 0;
1da177e4
LT
330}
331
332STATIC int
416c6d5b 333xfs_vn_unlink(
1da177e4
LT
334 struct inode *dir,
335 struct dentry *dentry)
336{
556b8b16 337 struct xfs_name name;
1da177e4
LT
338 int error;
339
fab8eef8 340 xfs_dentry_to_name(&name, dentry);
1da177e4 341
2b0143b5 342 error = xfs_remove(XFS_I(dir), &name, XFS_I(d_inode(dentry)));
e5700704
CH
343 if (error)
344 return error;
345
346 /*
347 * With unlink, the VFS makes the dentry "negative": no inode,
348 * but still hashed. This is incompatible with case-insensitive
349 * mode, so invalidate (unhash) the dentry in CI-mode.
350 */
351 if (xfs_sb_version_hasasciici(&XFS_M(dir->i_sb)->m_sb))
352 d_invalidate(dentry);
353 return 0;
1da177e4
LT
354}
355
356STATIC int
416c6d5b 357xfs_vn_symlink(
1da177e4
LT
358 struct inode *dir,
359 struct dentry *dentry,
360 const char *symname)
361{
3937be5b
CH
362 struct inode *inode;
363 struct xfs_inode *cip = NULL;
556b8b16 364 struct xfs_name name;
1da177e4 365 int error;
576b1d67 366 umode_t mode;
1da177e4 367
3e5daf05 368 mode = S_IFLNK |
ce3b0f8d 369 (irix_symlink_mode ? 0777 & ~current_umask() : S_IRWXUGO);
fab8eef8
AG
370 error = xfs_dentry_mode_to_name(&name, dentry, mode);
371 if (unlikely(error))
372 goto out;
1da177e4 373
6c77b0ea 374 error = xfs_symlink(XFS_I(dir), &name, symname, mode, &cip);
3937be5b
CH
375 if (unlikely(error))
376 goto out;
377
01651646 378 inode = VFS_I(cip);
3937be5b 379
2a7dba39 380 error = xfs_init_security(inode, dir, &dentry->d_name);
3937be5b
CH
381 if (unlikely(error))
382 goto out_cleanup_inode;
383
2b3d1d41
CH
384 xfs_setup_iops(cip);
385
3937be5b 386 d_instantiate(dentry, inode);
58c90473 387 xfs_finish_inode_setup(cip);
3937be5b
CH
388 return 0;
389
390 out_cleanup_inode:
58c90473 391 xfs_finish_inode_setup(cip);
8f112e3b 392 xfs_cleanup_inode(dir, inode, dentry);
44a8736b 393 xfs_irele(cip);
3937be5b 394 out:
2451337d 395 return error;
1da177e4
LT
396}
397
1da177e4 398STATIC int
416c6d5b 399xfs_vn_rename(
1da177e4
LT
400 struct inode *odir,
401 struct dentry *odentry,
402 struct inode *ndir,
dbe1b5ca
CM
403 struct dentry *ndentry,
404 unsigned int flags)
1da177e4 405{
2b0143b5 406 struct inode *new_inode = d_inode(ndentry);
d31a1825 407 int omode = 0;
fab8eef8 408 int error;
556b8b16
BN
409 struct xfs_name oname;
410 struct xfs_name nname;
1da177e4 411
7dcf5c3e 412 if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE | RENAME_WHITEOUT))
dbe1b5ca
CM
413 return -EINVAL;
414
d31a1825
CM
415 /* if we are exchanging files, we need to set i_mode of both files */
416 if (flags & RENAME_EXCHANGE)
2b0143b5 417 omode = d_inode(ndentry)->i_mode;
d31a1825 418
fab8eef8
AG
419 error = xfs_dentry_mode_to_name(&oname, odentry, omode);
420 if (omode && unlikely(error))
421 return error;
422
423 error = xfs_dentry_mode_to_name(&nname, ndentry,
424 d_inode(odentry)->i_mode);
425 if (unlikely(error))
426 return error;
556b8b16 427
2b0143b5 428 return xfs_rename(XFS_I(odir), &oname, XFS_I(d_inode(odentry)),
dbe1b5ca 429 XFS_I(ndir), &nname,
d31a1825 430 new_inode ? XFS_I(new_inode) : NULL, flags);
1da177e4
LT
431}
432
433/*
434 * careful here - this function can get called recursively, so
435 * we need to be very careful about how much stack we use.
436 * uio is kmalloced for this reason...
437 */
680baacb 438STATIC const char *
6b255391 439xfs_vn_get_link(
1da177e4 440 struct dentry *dentry,
6b255391 441 struct inode *inode,
fceef393 442 struct delayed_call *done)
1da177e4 443{
1da177e4 444 char *link;
804c83c3 445 int error = -ENOMEM;
1da177e4 446
6b255391
AV
447 if (!dentry)
448 return ERR_PTR(-ECHILD);
449
6eb0b8df 450 link = kmalloc(XFS_SYMLINK_MAXLEN+1, GFP_KERNEL);
804c83c3
CH
451 if (!link)
452 goto out_err;
1da177e4 453
2b0143b5 454 error = xfs_readlink(XFS_I(d_inode(dentry)), link);
804c83c3
CH
455 if (unlikely(error))
456 goto out_kfree;
1da177e4 457
fceef393
AV
458 set_delayed_call(done, kfree_link, link);
459 return link;
804c83c3
CH
460
461 out_kfree:
462 kfree(link);
463 out_err:
680baacb 464 return ERR_PTR(error);
1da177e4
LT
465}
466
30ee052e
CH
467STATIC const char *
468xfs_vn_get_link_inline(
469 struct dentry *dentry,
470 struct inode *inode,
471 struct delayed_call *done)
472{
ae294787
DW
473 char *link;
474
30ee052e 475 ASSERT(XFS_I(inode)->i_df.if_flags & XFS_IFINLINE);
ae294787
DW
476
477 /*
478 * The VFS crashes on a NULL pointer, so return -EFSCORRUPTED if
479 * if_data is junk.
480 */
481 link = XFS_I(inode)->i_df.if_u1.if_data;
482 if (!link)
483 return ERR_PTR(-EFSCORRUPTED);
484 return link;
30ee052e
CH
485}
486
dd2d535e
CH
487static uint32_t
488xfs_stat_blksize(
489 struct xfs_inode *ip)
490{
491 struct xfs_mount *mp = ip->i_mount;
492
493 /*
494 * If the file blocks are being allocated from a realtime volume, then
495 * always return the realtime extent size.
496 */
497 if (XFS_IS_REALTIME_INODE(ip))
498 return xfs_get_extsz_hint(ip) << mp->m_sb.sb_blocklog;
499
500 /*
501 * Allow large block sizes to be reported to userspace programs if the
502 * "largeio" mount option is used.
503 *
504 * If compatibility mode is specified, simply return the basic unit of
505 * caching so that we don't get inefficient read/modify/write I/O from
506 * user apps. Otherwise....
507 *
508 * If the underlying volume is a stripe, then return the stripe width in
509 * bytes as the recommended I/O size. It is not a stripe and we've set a
510 * default buffered I/O size, return that, otherwise return the compat
511 * default.
512 */
7c6b94b1 513 if (mp->m_flags & XFS_MOUNT_LARGEIO) {
dd2d535e
CH
514 if (mp->m_swidth)
515 return mp->m_swidth << mp->m_sb.sb_blocklog;
3274d008 516 if (mp->m_flags & XFS_MOUNT_ALLOCSIZE)
5da8a07c 517 return 1U << mp->m_allocsize_log;
dd2d535e
CH
518 }
519
520 return PAGE_SIZE;
521}
522
1da177e4 523STATIC int
416c6d5b 524xfs_vn_getattr(
a528d35e
DH
525 const struct path *path,
526 struct kstat *stat,
527 u32 request_mask,
528 unsigned int query_flags)
1da177e4 529{
a528d35e 530 struct inode *inode = d_inode(path->dentry);
c43f4087
CH
531 struct xfs_inode *ip = XFS_I(inode);
532 struct xfs_mount *mp = ip->i_mount;
533
cca28fb8 534 trace_xfs_getattr(ip);
c43f4087
CH
535
536 if (XFS_FORCED_SHUTDOWN(mp))
b474c7ae 537 return -EIO;
c43f4087
CH
538
539 stat->size = XFS_ISIZE(ip);
540 stat->dev = inode->i_sb->s_dev;
c19b3b05 541 stat->mode = inode->i_mode;
54d7b5c1 542 stat->nlink = inode->i_nlink;
7aab1b28
DE
543 stat->uid = inode->i_uid;
544 stat->gid = inode->i_gid;
c43f4087 545 stat->ino = ip->i_ino;
c43f4087 546 stat->atime = inode->i_atime;
f9581b14
CH
547 stat->mtime = inode->i_mtime;
548 stat->ctime = inode->i_ctime;
c43f4087
CH
549 stat->blocks =
550 XFS_FSB_TO_BB(mp, ip->i_d.di_nblocks + ip->i_delayed_blks);
551
5f955f26
DW
552 if (ip->i_d.di_version == 3) {
553 if (request_mask & STATX_BTIME) {
554 stat->result_mask |= STATX_BTIME;
555 stat->btime.tv_sec = ip->i_d.di_crtime.t_sec;
556 stat->btime.tv_nsec = ip->i_d.di_crtime.t_nsec;
557 }
558 }
559
1b9598c8
LR
560 /*
561 * Note: If you add another clause to set an attribute flag, please
562 * update attributes_mask below.
563 */
5f955f26
DW
564 if (ip->i_d.di_flags & XFS_DIFLAG_IMMUTABLE)
565 stat->attributes |= STATX_ATTR_IMMUTABLE;
566 if (ip->i_d.di_flags & XFS_DIFLAG_APPEND)
567 stat->attributes |= STATX_ATTR_APPEND;
568 if (ip->i_d.di_flags & XFS_DIFLAG_NODUMP)
569 stat->attributes |= STATX_ATTR_NODUMP;
c43f4087 570
1b9598c8
LR
571 stat->attributes_mask |= (STATX_ATTR_IMMUTABLE |
572 STATX_ATTR_APPEND |
573 STATX_ATTR_NODUMP);
574
c43f4087
CH
575 switch (inode->i_mode & S_IFMT) {
576 case S_IFBLK:
577 case S_IFCHR:
578 stat->blksize = BLKDEV_IOSIZE;
66f36464 579 stat->rdev = inode->i_rdev;
c43f4087
CH
580 break;
581 default:
dd2d535e 582 stat->blksize = xfs_stat_blksize(ip);
c43f4087
CH
583 stat->rdev = 0;
584 break;
69e23b9a 585 }
c43f4087
CH
586
587 return 0;
1da177e4
LT
588}
589
56c19e89
DC
590static void
591xfs_setattr_mode(
56c19e89
DC
592 struct xfs_inode *ip,
593 struct iattr *iattr)
594{
0c3d88df
CH
595 struct inode *inode = VFS_I(ip);
596 umode_t mode = iattr->ia_mode;
56c19e89 597
56c19e89
DC
598 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
599
56c19e89
DC
600 inode->i_mode &= S_IFMT;
601 inode->i_mode |= mode & ~S_IFMT;
602}
603
52785112 604void
c91c46c1
CH
605xfs_setattr_time(
606 struct xfs_inode *ip,
607 struct iattr *iattr)
608{
609 struct inode *inode = VFS_I(ip);
610
611 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
612
3987848c 613 if (iattr->ia_valid & ATTR_ATIME)
c91c46c1 614 inode->i_atime = iattr->ia_atime;
3987848c 615 if (iattr->ia_valid & ATTR_CTIME)
c91c46c1 616 inode->i_ctime = iattr->ia_ctime;
3987848c 617 if (iattr->ia_valid & ATTR_MTIME)
c91c46c1 618 inode->i_mtime = iattr->ia_mtime;
c91c46c1
CH
619}
620
69bca807
JK
621static int
622xfs_vn_change_ok(
623 struct dentry *dentry,
624 struct iattr *iattr)
625{
31051c85 626 struct xfs_mount *mp = XFS_I(d_inode(dentry))->i_mount;
69bca807
JK
627
628 if (mp->m_flags & XFS_MOUNT_RDONLY)
629 return -EROFS;
630
631 if (XFS_FORCED_SHUTDOWN(mp))
632 return -EIO;
633
31051c85 634 return setattr_prepare(dentry, iattr);
69bca807
JK
635}
636
637/*
638 * Set non-size attributes of an inode.
639 *
640 * Caution: The caller of this function is responsible for calling
31051c85 641 * setattr_prepare() or otherwise verifying the change is fine.
69bca807 642 */
c4ed4243
CH
643int
644xfs_setattr_nonsize(
645 struct xfs_inode *ip,
646 struct iattr *iattr,
647 int flags)
648{
649 xfs_mount_t *mp = ip->i_mount;
650 struct inode *inode = VFS_I(ip);
651 int mask = iattr->ia_valid;
652 xfs_trans_t *tp;
653 int error;
7aab1b28
DE
654 kuid_t uid = GLOBAL_ROOT_UID, iuid = GLOBAL_ROOT_UID;
655 kgid_t gid = GLOBAL_ROOT_GID, igid = GLOBAL_ROOT_GID;
c4ed4243
CH
656 struct xfs_dquot *udqp = NULL, *gdqp = NULL;
657 struct xfs_dquot *olddquot1 = NULL, *olddquot2 = NULL;
658
c4ed4243
CH
659 ASSERT((mask & ATTR_SIZE) == 0);
660
661 /*
662 * If disk quotas is on, we make sure that the dquots do exist on disk,
663 * before we start any other transactions. Trying to do this later
664 * is messy. We don't care to take a readlock to look at the ids
665 * in inode here, because we can't hold it across the trans_reserve.
666 * If the IDs do change before we take the ilock, we're covered
667 * because the i_*dquot fields will get updated anyway.
668 */
669 if (XFS_IS_QUOTA_ON(mp) && (mask & (ATTR_UID|ATTR_GID))) {
670 uint qflags = 0;
671
672 if ((mask & ATTR_UID) && XFS_IS_UQUOTA_ON(mp)) {
673 uid = iattr->ia_uid;
674 qflags |= XFS_QMOPT_UQUOTA;
675 } else {
7aab1b28 676 uid = inode->i_uid;
c4ed4243
CH
677 }
678 if ((mask & ATTR_GID) && XFS_IS_GQUOTA_ON(mp)) {
679 gid = iattr->ia_gid;
680 qflags |= XFS_QMOPT_GQUOTA;
681 } else {
7aab1b28 682 gid = inode->i_gid;
c4ed4243
CH
683 }
684
685 /*
686 * We take a reference when we initialize udqp and gdqp,
687 * so it is important that we never blindly double trip on
688 * the same variable. See xfs_create() for an example.
689 */
690 ASSERT(udqp == NULL);
691 ASSERT(gdqp == NULL);
7aab1b28
DE
692 error = xfs_qm_vop_dqalloc(ip, xfs_kuid_to_uid(uid),
693 xfs_kgid_to_gid(gid),
694 xfs_get_projid(ip),
695 qflags, &udqp, &gdqp, NULL);
c4ed4243
CH
696 if (error)
697 return error;
698 }
699
253f4911 700 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_ichange, 0, 0, 0, &tp);
c4ed4243 701 if (error)
253f4911 702 goto out_dqrele;
c4ed4243
CH
703
704 xfs_ilock(ip, XFS_ILOCK_EXCL);
253f4911 705 xfs_trans_ijoin(tp, ip, 0);
c4ed4243
CH
706
707 /*
708 * Change file ownership. Must be the owner or privileged.
709 */
710 if (mask & (ATTR_UID|ATTR_GID)) {
711 /*
712 * These IDs could have changed since we last looked at them.
713 * But, we're assured that if the ownership did change
714 * while we didn't have the inode locked, inode's dquot(s)
715 * would have changed also.
716 */
7aab1b28
DE
717 iuid = inode->i_uid;
718 igid = inode->i_gid;
c4ed4243
CH
719 gid = (mask & ATTR_GID) ? iattr->ia_gid : igid;
720 uid = (mask & ATTR_UID) ? iattr->ia_uid : iuid;
721
722 /*
723 * Do a quota reservation only if uid/gid is actually
724 * going to change.
725 */
726 if (XFS_IS_QUOTA_RUNNING(mp) &&
7aab1b28
DE
727 ((XFS_IS_UQUOTA_ON(mp) && !uid_eq(iuid, uid)) ||
728 (XFS_IS_GQUOTA_ON(mp) && !gid_eq(igid, gid)))) {
c4ed4243
CH
729 ASSERT(tp);
730 error = xfs_qm_vop_chown_reserve(tp, ip, udqp, gdqp,
92f8ff73 731 NULL, capable(CAP_FOWNER) ?
c4ed4243
CH
732 XFS_QMOPT_FORCE_RES : 0);
733 if (error) /* out of quota */
253f4911 734 goto out_cancel;
c4ed4243
CH
735 }
736 }
737
c4ed4243
CH
738 /*
739 * Change file ownership. Must be the owner or privileged.
740 */
741 if (mask & (ATTR_UID|ATTR_GID)) {
742 /*
743 * CAP_FSETID overrides the following restrictions:
744 *
745 * The set-user-ID and set-group-ID bits of a file will be
746 * cleared upon successful return from chown()
747 */
c19b3b05 748 if ((inode->i_mode & (S_ISUID|S_ISGID)) &&
c4ed4243 749 !capable(CAP_FSETID))
c19b3b05 750 inode->i_mode &= ~(S_ISUID|S_ISGID);
c4ed4243
CH
751
752 /*
753 * Change the ownerships and register quota modifications
754 * in the transaction.
755 */
7aab1b28 756 if (!uid_eq(iuid, uid)) {
c4ed4243
CH
757 if (XFS_IS_QUOTA_RUNNING(mp) && XFS_IS_UQUOTA_ON(mp)) {
758 ASSERT(mask & ATTR_UID);
759 ASSERT(udqp);
760 olddquot1 = xfs_qm_vop_chown(tp, ip,
761 &ip->i_udquot, udqp);
762 }
7aab1b28 763 ip->i_d.di_uid = xfs_kuid_to_uid(uid);
c4ed4243
CH
764 inode->i_uid = uid;
765 }
7aab1b28 766 if (!gid_eq(igid, gid)) {
c4ed4243 767 if (XFS_IS_QUOTA_RUNNING(mp) && XFS_IS_GQUOTA_ON(mp)) {
5a01dd54
JL
768 ASSERT(xfs_sb_version_has_pquotino(&mp->m_sb) ||
769 !XFS_IS_PQUOTA_ON(mp));
c4ed4243
CH
770 ASSERT(mask & ATTR_GID);
771 ASSERT(gdqp);
772 olddquot2 = xfs_qm_vop_chown(tp, ip,
773 &ip->i_gdquot, gdqp);
774 }
7aab1b28 775 ip->i_d.di_gid = xfs_kgid_to_gid(gid);
c4ed4243
CH
776 inode->i_gid = gid;
777 }
778 }
779
56c19e89 780 if (mask & ATTR_MODE)
0c3d88df 781 xfs_setattr_mode(ip, iattr);
c91c46c1
CH
782 if (mask & (ATTR_ATIME|ATTR_CTIME|ATTR_MTIME))
783 xfs_setattr_time(ip, iattr);
c4ed4243
CH
784
785 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
786
ff6d6af2 787 XFS_STATS_INC(mp, xs_ig_attrchg);
c4ed4243
CH
788
789 if (mp->m_flags & XFS_MOUNT_WSYNC)
790 xfs_trans_set_sync(tp);
70393313 791 error = xfs_trans_commit(tp);
c4ed4243
CH
792
793 xfs_iunlock(ip, XFS_ILOCK_EXCL);
794
795 /*
796 * Release any dquot(s) the inode had kept before chown.
797 */
798 xfs_qm_dqrele(olddquot1);
799 xfs_qm_dqrele(olddquot2);
800 xfs_qm_dqrele(udqp);
801 xfs_qm_dqrele(gdqp);
802
803 if (error)
b474c7ae 804 return error;
c4ed4243
CH
805
806 /*
807 * XXX(hch): Updating the ACL entries is not atomic vs the i_mode
808 * update. We could avoid this with linked transactions
809 * and passing down the transaction pointer all the way
810 * to attr_set. No previous user of the generic
811 * Posix ACL code seems to care about this issue either.
812 */
813 if ((mask & ATTR_MODE) && !(flags & XFS_ATTR_NOACL)) {
2451337d 814 error = posix_acl_chmod(inode, inode->i_mode);
c4ed4243 815 if (error)
b474c7ae 816 return error;
c4ed4243
CH
817 }
818
819 return 0;
820
253f4911 821out_cancel:
4906e215 822 xfs_trans_cancel(tp);
1fb254aa 823 xfs_iunlock(ip, XFS_ILOCK_EXCL);
253f4911 824out_dqrele:
c4ed4243
CH
825 xfs_qm_dqrele(udqp);
826 xfs_qm_dqrele(gdqp);
827 return error;
828}
829
69bca807
JK
830int
831xfs_vn_setattr_nonsize(
832 struct dentry *dentry,
833 struct iattr *iattr)
834{
835 struct xfs_inode *ip = XFS_I(d_inode(dentry));
836 int error;
837
838 trace_xfs_setattr(ip);
839
840 error = xfs_vn_change_ok(dentry, iattr);
841 if (error)
842 return error;
843 return xfs_setattr_nonsize(ip, iattr, 0);
844}
845
c4ed4243
CH
846/*
847 * Truncate file. Must have write permission and not be a directory.
69bca807
JK
848 *
849 * Caution: The caller of this function is responsible for calling
31051c85 850 * setattr_prepare() or otherwise verifying the change is fine.
c4ed4243 851 */
7bf7a193 852STATIC int
c4ed4243
CH
853xfs_setattr_size(
854 struct xfs_inode *ip,
76ca4c23 855 struct iattr *iattr)
c4ed4243
CH
856{
857 struct xfs_mount *mp = ip->i_mount;
858 struct inode *inode = VFS_I(ip);
673e8e59 859 xfs_off_t oldsize, newsize;
c4ed4243
CH
860 struct xfs_trans *tp;
861 int error;
f38996f5 862 uint lock_flags = 0;
5885ebda 863 bool did_zeroing = false;
c4ed4243 864
76ca4c23 865 ASSERT(xfs_isilocked(ip, XFS_IOLOCK_EXCL));
e8e9ad42 866 ASSERT(xfs_isilocked(ip, XFS_MMAPLOCK_EXCL));
c19b3b05 867 ASSERT(S_ISREG(inode->i_mode));
fe60a8a0
CH
868 ASSERT((iattr->ia_valid & (ATTR_UID|ATTR_GID|ATTR_ATIME|ATTR_ATIME_SET|
869 ATTR_MTIME_SET|ATTR_KILL_PRIV|ATTR_TIMES_SET)) == 0);
c4ed4243 870
ce7ae151 871 oldsize = inode->i_size;
673e8e59
CH
872 newsize = iattr->ia_size;
873
c4ed4243
CH
874 /*
875 * Short circuit the truncate case for zero length files.
876 */
673e8e59 877 if (newsize == 0 && oldsize == 0 && ip->i_d.di_nextents == 0) {
fe60a8a0 878 if (!(iattr->ia_valid & (ATTR_CTIME|ATTR_MTIME)))
76ca4c23 879 return 0;
681b1200
CH
880
881 /*
882 * Use the regular setattr path to update the timestamps.
883 */
681b1200
CH
884 iattr->ia_valid &= ~ATTR_SIZE;
885 return xfs_setattr_nonsize(ip, iattr, 0);
c4ed4243
CH
886 }
887
888 /*
889 * Make sure that the dquots are attached to the inode.
890 */
c14cfcca 891 error = xfs_qm_dqattach(ip);
c4ed4243 892 if (error)
76ca4c23 893 return error;
c4ed4243 894
f0c6bcba
CH
895 /*
896 * Wait for all direct I/O to complete.
897 */
898 inode_dio_wait(inode);
899
c4ed4243 900 /*
5885ebda
DC
901 * File data changes must be complete before we start the transaction to
902 * modify the inode. This needs to be done before joining the inode to
903 * the transaction because the inode cannot be unlocked once it is a
904 * part of the transaction.
905 *
f0c6bcba
CH
906 * Start with zeroing any data beyond EOF that we may expose on file
907 * extension, or zeroing out the rest of the block on a downward
908 * truncate.
c4ed4243 909 */
673e8e59 910 if (newsize > oldsize) {
f5c54717
CH
911 trace_xfs_zero_eof(ip, oldsize, newsize - oldsize);
912 error = iomap_zero_range(inode, oldsize, newsize - oldsize,
f150b423 913 &did_zeroing, &xfs_buffered_write_iomap_ops);
f0c6bcba 914 } else {
459f0fbc 915 error = iomap_truncate_page(inode, newsize, &did_zeroing,
f150b423 916 &xfs_buffered_write_iomap_ops);
c4ed4243 917 }
c4ed4243 918
f0c6bcba
CH
919 if (error)
920 return error;
921
49abc3a8 922 /*
0f9160b4
DC
923 * We've already locked out new page faults, so now we can safely remove
924 * pages from the page cache knowing they won't get refaulted until we
925 * drop the XFS_MMAP_EXCL lock after the extent manipulations are
926 * complete. The truncate_setsize() call also cleans partial EOF page
927 * PTEs on extending truncates and hence ensures sub-page block size
928 * filesystems are correctly handled, too.
49abc3a8 929 *
0f9160b4
DC
930 * We have to do all the page cache truncate work outside the
931 * transaction context as the "lock" order is page lock->log space
932 * reservation as defined by extent allocation in the writeback path.
253f4911 933 * Hence a truncate can fail with ENOMEM from xfs_trans_alloc(), but
0f9160b4
DC
934 * having already truncated the in-memory version of the file (i.e. made
935 * user visible changes). There's not much we can do about this, except
936 * to hope that the caller sees ENOMEM and retries the truncate
937 * operation.
350976ae
EG
938 *
939 * And we update in-core i_size and truncate page cache beyond newsize
940 * before writeback the [di_size, newsize] range, so we're guaranteed
941 * not to write stale data past the new EOF on truncate down.
49abc3a8 942 */
49abc3a8 943 truncate_setsize(inode, newsize);
c4ed4243 944
350976ae
EG
945 /*
946 * We are going to log the inode size change in this transaction so
947 * any previous writes that are beyond the on disk EOF and the new
948 * EOF that have not been written out need to be written here. If we
949 * do not write the data out, we expose ourselves to the null files
950 * problem. Note that this includes any block zeroing we did above;
951 * otherwise those blocks may not be zeroed after a crash.
952 */
953 if (did_zeroing ||
954 (newsize > ip->i_d.di_size && oldsize != ip->i_d.di_size)) {
955 error = filemap_write_and_wait_range(VFS_I(ip)->i_mapping,
956 ip->i_d.di_size, newsize - 1);
957 if (error)
958 return error;
959 }
960
253f4911 961 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_itruncate, 0, 0, 0, &tp);
c4ed4243 962 if (error)
253f4911 963 return error;
c4ed4243 964
c4ed4243 965 lock_flags |= XFS_ILOCK_EXCL;
c4ed4243 966 xfs_ilock(ip, XFS_ILOCK_EXCL);
ddc3415a 967 xfs_trans_ijoin(tp, ip, 0);
c4ed4243
CH
968
969 /*
970 * Only change the c/mtime if we are changing the size or we are
971 * explicitly asked to change it. This handles the semantic difference
972 * between truncate() and ftruncate() as implemented in the VFS.
973 *
974 * The regular truncate() case without ATTR_CTIME and ATTR_MTIME is a
975 * special case where we need to update the times despite not having
976 * these flags set. For all other operations the VFS set these flags
977 * explicitly if it wants a timestamp update.
978 */
fe60a8a0
CH
979 if (newsize != oldsize &&
980 !(iattr->ia_valid & (ATTR_CTIME | ATTR_MTIME))) {
c4ed4243 981 iattr->ia_ctime = iattr->ia_mtime =
c2050a45 982 current_time(inode);
fe60a8a0 983 iattr->ia_valid |= ATTR_CTIME | ATTR_MTIME;
c4ed4243
CH
984 }
985
673e8e59
CH
986 /*
987 * The first thing we do is set the size to new_size permanently on
988 * disk. This way we don't have to worry about anyone ever being able
989 * to look at the data being freed even in the face of a crash.
990 * What we're getting around here is the case where we free a block, it
991 * is allocated to another file, it is written to, and then we crash.
992 * If the new data gets written to the file but the log buffers
993 * containing the free and reallocation don't, then we'd end up with
994 * garbage in the blocks being freed. As long as we make the new size
995 * permanent before actually freeing any blocks it doesn't matter if
996 * they get written to.
997 */
998 ip->i_d.di_size = newsize;
673e8e59
CH
999 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1000
1001 if (newsize <= oldsize) {
1002 error = xfs_itruncate_extents(&tp, ip, XFS_DATA_FORK, newsize);
c4ed4243 1003 if (error)
4906e215 1004 goto out_trans_cancel;
c4ed4243
CH
1005
1006 /*
1007 * Truncated "down", so we're removing references to old data
1008 * here - if we delay flushing for a long time, we expose
1009 * ourselves unduly to the notorious NULL files problem. So,
1010 * we mark this inode and flush it when the file is closed,
1011 * and do not wait the usual (long) time for writeout.
1012 */
1013 xfs_iflags_set(ip, XFS_ITRUNCATED);
27b52867
BF
1014
1015 /* A truncate down always removes post-EOF blocks. */
1016 xfs_inode_clear_eofblocks_tag(ip);
c4ed4243
CH
1017 }
1018
fe60a8a0 1019 if (iattr->ia_valid & ATTR_MODE)
0c3d88df 1020 xfs_setattr_mode(ip, iattr);
fe60a8a0 1021 if (iattr->ia_valid & (ATTR_ATIME|ATTR_CTIME|ATTR_MTIME))
c91c46c1 1022 xfs_setattr_time(ip, iattr);
c4ed4243
CH
1023
1024 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1025
ff6d6af2 1026 XFS_STATS_INC(mp, xs_ig_attrchg);
c4ed4243
CH
1027
1028 if (mp->m_flags & XFS_MOUNT_WSYNC)
1029 xfs_trans_set_sync(tp);
1030
70393313 1031 error = xfs_trans_commit(tp);
c4ed4243
CH
1032out_unlock:
1033 if (lock_flags)
1034 xfs_iunlock(ip, lock_flags);
1035 return error;
1036
c4ed4243 1037out_trans_cancel:
4906e215 1038 xfs_trans_cancel(tp);
c4ed4243
CH
1039 goto out_unlock;
1040}
1041
69bca807
JK
1042int
1043xfs_vn_setattr_size(
1044 struct dentry *dentry,
1045 struct iattr *iattr)
1046{
1047 struct xfs_inode *ip = XFS_I(d_inode(dentry));
1048 int error;
1049
1050 trace_xfs_setattr(ip);
1051
1052 error = xfs_vn_change_ok(dentry, iattr);
1053 if (error)
1054 return error;
1055 return xfs_setattr_size(ip, iattr);
1056}
1057
1da177e4 1058STATIC int
416c6d5b 1059xfs_vn_setattr(
76ca4c23
CH
1060 struct dentry *dentry,
1061 struct iattr *iattr)
1da177e4 1062{
76ca4c23
CH
1063 int error;
1064
1065 if (iattr->ia_valid & ATTR_SIZE) {
69eb5fa1
DW
1066 struct inode *inode = d_inode(dentry);
1067 struct xfs_inode *ip = XFS_I(inode);
c63a8eae 1068 uint iolock;
781355c6 1069
c63a8eae
DW
1070 xfs_ilock(ip, XFS_MMAPLOCK_EXCL);
1071 iolock = XFS_IOLOCK_EXCL | XFS_MMAPLOCK_EXCL;
781355c6 1072
69eb5fa1 1073 error = xfs_break_layouts(inode, &iolock, BREAK_UNMAP);
c63a8eae
DW
1074 if (error) {
1075 xfs_iunlock(ip, XFS_MMAPLOCK_EXCL);
65523218 1076 return error;
c63a8eae 1077 }
e8e9ad42 1078
0c187dc5 1079 error = xfs_vn_setattr_size(dentry, iattr);
65523218 1080 xfs_iunlock(ip, XFS_MMAPLOCK_EXCL);
76ca4c23 1081 } else {
69bca807 1082 error = xfs_vn_setattr_nonsize(dentry, iattr);
76ca4c23
CH
1083 }
1084
2451337d 1085 return error;
1da177e4
LT
1086}
1087
69ff2826
CH
1088STATIC int
1089xfs_vn_update_time(
1090 struct inode *inode,
95582b00 1091 struct timespec64 *now,
69ff2826
CH
1092 int flags)
1093{
1094 struct xfs_inode *ip = XFS_I(inode);
1095 struct xfs_mount *mp = ip->i_mount;
c3b1b131 1096 int log_flags = XFS_ILOG_TIMESTAMP;
69ff2826
CH
1097 struct xfs_trans *tp;
1098 int error;
1099
1100 trace_xfs_update_time(ip);
1101
c3b1b131
CH
1102 if (inode->i_sb->s_flags & SB_LAZYTIME) {
1103 if (!((flags & S_VERSION) &&
1104 inode_maybe_inc_iversion(inode, false)))
1105 return generic_update_time(inode, now, flags);
1106
1107 /* Capture the iversion update that just occurred */
1108 log_flags |= XFS_ILOG_CORE;
1109 }
1110
253f4911
CH
1111 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_fsyncts, 0, 0, 0, &tp);
1112 if (error)
2451337d 1113 return error;
69ff2826
CH
1114
1115 xfs_ilock(ip, XFS_ILOCK_EXCL);
3987848c 1116 if (flags & S_CTIME)
69ff2826 1117 inode->i_ctime = *now;
3987848c 1118 if (flags & S_MTIME)
69ff2826 1119 inode->i_mtime = *now;
3987848c 1120 if (flags & S_ATIME)
69ff2826 1121 inode->i_atime = *now;
3987848c 1122
69ff2826 1123 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
c3b1b131 1124 xfs_trans_log_inode(tp, ip, log_flags);
70393313 1125 return xfs_trans_commit(tp);
69ff2826
CH
1126}
1127
f35642e2
ES
1128STATIC int
1129xfs_vn_fiemap(
1130 struct inode *inode,
1131 struct fiemap_extent_info *fieinfo,
1132 u64 start,
1133 u64 length)
1134{
f35642e2
ES
1135 int error;
1136
d2bb140e 1137 xfs_ilock(XFS_I(inode), XFS_IOLOCK_SHARED);
1d4795e7
CH
1138 if (fieinfo->fi_flags & FIEMAP_FLAG_XATTR) {
1139 fieinfo->fi_flags &= ~FIEMAP_FLAG_XATTR;
1140 error = iomap_fiemap(inode, fieinfo, start, length,
1141 &xfs_xattr_iomap_ops);
1142 } else {
1143 error = iomap_fiemap(inode, fieinfo, start, length,
690c2a38 1144 &xfs_read_iomap_ops);
1d4795e7 1145 }
d2bb140e 1146 xfs_iunlock(XFS_I(inode), XFS_IOLOCK_SHARED);
f35642e2 1147
d2bb140e 1148 return error;
f35642e2
ES
1149}
1150
99b6436b
ZYW
1151STATIC int
1152xfs_vn_tmpfile(
1153 struct inode *dir,
1154 struct dentry *dentry,
1155 umode_t mode)
1156{
d540e43b 1157 return xfs_generic_create(dir, dentry, mode, 0, true);
99b6436b
ZYW
1158}
1159
41be8bed 1160static const struct inode_operations xfs_inode_operations = {
4e34e719 1161 .get_acl = xfs_get_acl,
2401dc29 1162 .set_acl = xfs_set_acl,
416c6d5b
NS
1163 .getattr = xfs_vn_getattr,
1164 .setattr = xfs_vn_setattr,
416c6d5b 1165 .listxattr = xfs_vn_listxattr,
f35642e2 1166 .fiemap = xfs_vn_fiemap,
69ff2826 1167 .update_time = xfs_vn_update_time,
1da177e4
LT
1168};
1169
41be8bed 1170static const struct inode_operations xfs_dir_inode_operations = {
416c6d5b
NS
1171 .create = xfs_vn_create,
1172 .lookup = xfs_vn_lookup,
1173 .link = xfs_vn_link,
1174 .unlink = xfs_vn_unlink,
1175 .symlink = xfs_vn_symlink,
1176 .mkdir = xfs_vn_mkdir,
8f112e3b
CH
1177 /*
1178 * Yes, XFS uses the same method for rmdir and unlink.
1179 *
1180 * There are some subtile differences deeper in the code,
1181 * but we use S_ISDIR to check for those.
1182 */
1183 .rmdir = xfs_vn_unlink,
416c6d5b 1184 .mknod = xfs_vn_mknod,
2773bf00 1185 .rename = xfs_vn_rename,
4e34e719 1186 .get_acl = xfs_get_acl,
2401dc29 1187 .set_acl = xfs_set_acl,
416c6d5b
NS
1188 .getattr = xfs_vn_getattr,
1189 .setattr = xfs_vn_setattr,
416c6d5b 1190 .listxattr = xfs_vn_listxattr,
69ff2826 1191 .update_time = xfs_vn_update_time,
99b6436b 1192 .tmpfile = xfs_vn_tmpfile,
1da177e4
LT
1193};
1194
41be8bed 1195static const struct inode_operations xfs_dir_ci_inode_operations = {
384f3ced
BN
1196 .create = xfs_vn_create,
1197 .lookup = xfs_vn_ci_lookup,
1198 .link = xfs_vn_link,
1199 .unlink = xfs_vn_unlink,
1200 .symlink = xfs_vn_symlink,
1201 .mkdir = xfs_vn_mkdir,
8f112e3b
CH
1202 /*
1203 * Yes, XFS uses the same method for rmdir and unlink.
1204 *
1205 * There are some subtile differences deeper in the code,
1206 * but we use S_ISDIR to check for those.
1207 */
1208 .rmdir = xfs_vn_unlink,
384f3ced 1209 .mknod = xfs_vn_mknod,
2773bf00 1210 .rename = xfs_vn_rename,
4e34e719 1211 .get_acl = xfs_get_acl,
2401dc29 1212 .set_acl = xfs_set_acl,
384f3ced
BN
1213 .getattr = xfs_vn_getattr,
1214 .setattr = xfs_vn_setattr,
384f3ced 1215 .listxattr = xfs_vn_listxattr,
69ff2826 1216 .update_time = xfs_vn_update_time,
99b6436b 1217 .tmpfile = xfs_vn_tmpfile,
384f3ced
BN
1218};
1219
41be8bed 1220static const struct inode_operations xfs_symlink_inode_operations = {
6b255391 1221 .get_link = xfs_vn_get_link,
416c6d5b
NS
1222 .getattr = xfs_vn_getattr,
1223 .setattr = xfs_vn_setattr,
416c6d5b 1224 .listxattr = xfs_vn_listxattr,
69ff2826 1225 .update_time = xfs_vn_update_time,
1da177e4 1226};
41be8bed 1227
30ee052e 1228static const struct inode_operations xfs_inline_symlink_inode_operations = {
30ee052e
CH
1229 .get_link = xfs_vn_get_link_inline,
1230 .getattr = xfs_vn_getattr,
1231 .setattr = xfs_vn_setattr,
30ee052e
CH
1232 .listxattr = xfs_vn_listxattr,
1233 .update_time = xfs_vn_update_time,
1234};
1235
ba23cba9
DW
1236/* Figure out if this file actually supports DAX. */
1237static bool
1238xfs_inode_supports_dax(
1239 struct xfs_inode *ip)
1240{
1241 struct xfs_mount *mp = ip->i_mount;
1242
1243 /* Only supported on non-reflinked files. */
1244 if (!S_ISREG(VFS_I(ip)->i_mode) || xfs_is_reflink_inode(ip))
1245 return false;
1246
1247 /* DAX mount option or DAX iflag must be set. */
1248 if (!(mp->m_flags & XFS_MOUNT_DAX) &&
1249 !(ip->i_d.di_flags2 & XFS_DIFLAG2_DAX))
1250 return false;
1251
1252 /* Block size must match page size */
1253 if (mp->m_sb.sb_blocksize != PAGE_SIZE)
1254 return false;
1255
1256 /* Device has to support DAX too. */
30fa529e 1257 return xfs_inode_buftarg(ip)->bt_daxdev != NULL;
ba23cba9
DW
1258}
1259
41be8bed
CH
1260STATIC void
1261xfs_diflags_to_iflags(
1262 struct inode *inode,
1263 struct xfs_inode *ip)
1264{
cbe4dab1
DC
1265 uint16_t flags = ip->i_d.di_flags;
1266
1267 inode->i_flags &= ~(S_IMMUTABLE | S_APPEND | S_SYNC |
1268 S_NOATIME | S_DAX);
1269
1270 if (flags & XFS_DIFLAG_IMMUTABLE)
41be8bed 1271 inode->i_flags |= S_IMMUTABLE;
cbe4dab1 1272 if (flags & XFS_DIFLAG_APPEND)
41be8bed 1273 inode->i_flags |= S_APPEND;
cbe4dab1 1274 if (flags & XFS_DIFLAG_SYNC)
41be8bed 1275 inode->i_flags |= S_SYNC;
cbe4dab1 1276 if (flags & XFS_DIFLAG_NOATIME)
41be8bed 1277 inode->i_flags |= S_NOATIME;
ba23cba9 1278 if (xfs_inode_supports_dax(ip))
cbe4dab1 1279 inode->i_flags |= S_DAX;
41be8bed
CH
1280}
1281
1282/*
2b3d1d41 1283 * Initialize the Linux inode.
bf904248 1284 *
58c90473
DC
1285 * When reading existing inodes from disk this is called directly from xfs_iget,
1286 * when creating a new inode it is called from xfs_ialloc after setting up the
1287 * inode. These callers have different criteria for clearing XFS_INEW, so leave
1288 * it up to the caller to deal with unlocking the inode appropriately.
41be8bed
CH
1289 */
1290void
1291xfs_setup_inode(
1292 struct xfs_inode *ip)
1293{
bf904248 1294 struct inode *inode = &ip->i_vnode;
ad22c7a0 1295 gfp_t gfp_mask;
bf904248
DC
1296
1297 inode->i_ino = ip->i_ino;
eaff8079 1298 inode->i_state = I_NEW;
646ec461
CH
1299
1300 inode_sb_list_add(inode);
c6f6cd06 1301 /* make the inode look hashed for the writeback code */
5bef9151 1302 inode_fake_hash(inode);
41be8bed 1303
7aab1b28
DE
1304 inode->i_uid = xfs_uid_to_kuid(ip->i_d.di_uid);
1305 inode->i_gid = xfs_gid_to_kgid(ip->i_d.di_gid);
41be8bed 1306
41be8bed 1307 i_size_write(inode, ip->i_d.di_size);
41be8bed 1308 xfs_diflags_to_iflags(inode, ip);
41be8bed 1309
2b3d1d41 1310 if (S_ISDIR(inode->i_mode)) {
ef215e39
DC
1311 /*
1312 * We set the i_rwsem class here to avoid potential races with
1313 * lockdep_annotate_inode_mutex_key() reinitialising the lock
1314 * after a filehandle lookup has already found the inode in
1315 * cache before it has been unlocked via unlock_new_inode().
1316 */
1317 lockdep_set_class(&inode->i_rwsem,
1318 &inode->i_sb->s_type->i_mutex_dir_key);
93a8614e 1319 lockdep_set_class(&ip->i_lock.mr_lock, &xfs_dir_ilock_class);
32c5483a 1320 ip->d_ops = ip->i_mount->m_dir_inode_ops;
2b3d1d41
CH
1321 } else {
1322 ip->d_ops = ip->i_mount->m_nondir_inode_ops;
1323 lockdep_set_class(&ip->i_lock.mr_lock, &xfs_nondir_ilock_class);
41be8bed
CH
1324 }
1325
ad22c7a0
DC
1326 /*
1327 * Ensure all page cache allocations are done from GFP_NOFS context to
1328 * prevent direct reclaim recursion back into the filesystem and blowing
1329 * stacks or deadlocking.
1330 */
1331 gfp_mask = mapping_gfp_mask(inode->i_mapping);
1332 mapping_set_gfp_mask(inode->i_mapping, (gfp_mask & ~(__GFP_FS)));
1333
510792ee
CH
1334 /*
1335 * If there is no attribute fork no ACL can exist on this inode,
1336 * and it can't have any file capabilities attached to it either.
1337 */
1338 if (!XFS_IFORK_Q(ip)) {
1339 inode_has_no_xattr(inode);
6311b108 1340 cache_no_acl(inode);
510792ee 1341 }
41be8bed 1342}
2b3d1d41
CH
1343
1344void
1345xfs_setup_iops(
1346 struct xfs_inode *ip)
1347{
1348 struct inode *inode = &ip->i_vnode;
1349
41be8bed
CH
1350 switch (inode->i_mode & S_IFMT) {
1351 case S_IFREG:
1352 inode->i_op = &xfs_inode_operations;
1353 inode->i_fop = &xfs_file_operations;
6e2608df
DW
1354 if (IS_DAX(inode))
1355 inode->i_mapping->a_ops = &xfs_dax_aops;
1356 else
1357 inode->i_mapping->a_ops = &xfs_address_space_operations;
41be8bed
CH
1358 break;
1359 case S_IFDIR:
1360 if (xfs_sb_version_hasasciici(&XFS_M(inode->i_sb)->m_sb))
1361 inode->i_op = &xfs_dir_ci_inode_operations;
1362 else
1363 inode->i_op = &xfs_dir_inode_operations;
1364 inode->i_fop = &xfs_dir_file_operations;
1365 break;
1366 case S_IFLNK:
30ee052e
CH
1367 if (ip->i_df.if_flags & XFS_IFINLINE)
1368 inode->i_op = &xfs_inline_symlink_inode_operations;
1369 else
1370 inode->i_op = &xfs_symlink_inode_operations;
41be8bed
CH
1371 break;
1372 default:
1373 inode->i_op = &xfs_inode_operations;
1374 init_special_inode(inode, inode->i_mode, inode->i_rdev);
1375 break;
1376 }
41be8bed 1377}