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