]> asedeno.scripts.mit.edu Git - linux.git/blob - fs/xfs/xfs_iops.c
xfs: rename the m_writeio_* fields in struct xfs_mount
[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
24 #include <linux/xattr.h>
25 #include <linux/posix_acl.h>
26 #include <linux/security.h>
27 #include <linux/iversion.h>
28
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  */
38 static struct lock_class_key xfs_nondir_ilock_class;
39 static struct lock_class_key xfs_dir_ilock_class;
40
41 static int
42 xfs_initxattrs(
43         struct inode            *inode,
44         const struct xattr      *xattr_array,
45         void                    *fs_info)
46 {
47         const struct xattr      *xattr;
48         struct xfs_inode        *ip = XFS_I(inode);
49         int                     error = 0;
50
51         for (xattr = xattr_array; xattr->name != NULL; xattr++) {
52                 error = xfs_attr_set(ip, xattr->name, xattr->value,
53                                       xattr->value_len, ATTR_SECURE);
54                 if (error < 0)
55                         break;
56         }
57         return error;
58 }
59
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  */
66
67 STATIC int
68 xfs_init_security(
69         struct inode    *inode,
70         struct inode    *dir,
71         const struct qstr *qstr)
72 {
73         return security_inode_init_security(inode, dir, qstr,
74                                              &xfs_initxattrs, NULL);
75 }
76
77 static void
78 xfs_dentry_to_name(
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
87 static int
88 xfs_dentry_mode_to_name(
89         struct xfs_name *namep,
90         struct dentry   *dentry,
91         int             mode)
92 {
93         namep->name = dentry->d_name.name;
94         namep->len = dentry->d_name.len;
95         namep->type = xfs_mode_to_ftype(mode);
96
97         if (unlikely(namep->type == XFS_DIR3_FT_UNKNOWN))
98                 return -EFSCORRUPTED;
99
100         return 0;
101 }
102
103 STATIC void
104 xfs_cleanup_inode(
105         struct inode    *dir,
106         struct inode    *inode,
107         struct dentry   *dentry)
108 {
109         struct xfs_name teardown;
110
111         /* Oh, the horror.
112          * If we can't add the ACL or we fail in
113          * xfs_init_security we must back out.
114          * ENOSPC can hit here, among other things.
115          */
116         xfs_dentry_to_name(&teardown, dentry);
117
118         xfs_remove(XFS_I(dir), &teardown, XFS_I(inode));
119 }
120
121 STATIC int
122 xfs_generic_create(
123         struct inode    *dir,
124         struct dentry   *dentry,
125         umode_t         mode,
126         dev_t           rdev,
127         bool            tmpfile)        /* unnamed file */
128 {
129         struct inode    *inode;
130         struct xfs_inode *ip = NULL;
131         struct posix_acl *default_acl, *acl;
132         struct xfs_name name;
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          */
139         if (S_ISCHR(mode) || S_ISBLK(mode)) {
140                 if (unlikely(!sysv_valid_dev(rdev) || MAJOR(rdev) & ~0x1ff))
141                         return -EINVAL;
142         } else {
143                 rdev = 0;
144         }
145
146         error = posix_acl_create(dir, &mode, &default_acl, &acl);
147         if (error)
148                 return error;
149
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
155         if (!tmpfile) {
156                 error = xfs_create(XFS_I(dir), &name, mode, rdev, &ip);
157         } else {
158                 error = xfs_create_tmpfile(XFS_I(dir), mode, &ip);
159         }
160         if (unlikely(error))
161                 goto out_free_acl;
162
163         inode = VFS_I(ip);
164
165         error = xfs_init_security(inode, dir, &dentry->d_name);
166         if (unlikely(error))
167                 goto out_cleanup_inode;
168
169 #ifdef CONFIG_XFS_POSIX_ACL
170         if (default_acl) {
171                 error = __xfs_set_acl(inode, default_acl, ACL_TYPE_DEFAULT);
172                 if (error)
173                         goto out_cleanup_inode;
174         }
175         if (acl) {
176                 error = __xfs_set_acl(inode, acl, ACL_TYPE_ACCESS);
177                 if (error)
178                         goto out_cleanup_inode;
179         }
180 #endif
181
182         xfs_setup_iops(ip);
183
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);
194                 d_tmpfile(dentry, inode);
195         } else
196                 d_instantiate(dentry, inode);
197
198         xfs_finish_inode_setup(ip);
199
200  out_free_acl:
201         if (default_acl)
202                 posix_acl_release(default_acl);
203         if (acl)
204                 posix_acl_release(acl);
205         return error;
206
207  out_cleanup_inode:
208         xfs_finish_inode_setup(ip);
209         if (!tmpfile)
210                 xfs_cleanup_inode(dir, inode, dentry);
211         xfs_irele(ip);
212         goto out_free_acl;
213 }
214
215 STATIC int
216 xfs_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
225 STATIC int
226 xfs_vn_create(
227         struct inode    *dir,
228         struct dentry   *dentry,
229         umode_t         mode,
230         bool            flags)
231 {
232         return xfs_vn_mknod(dir, dentry, mode, 0);
233 }
234
235 STATIC int
236 xfs_vn_mkdir(
237         struct inode    *dir,
238         struct dentry   *dentry,
239         umode_t         mode)
240 {
241         return xfs_vn_mknod(dir, dentry, mode|S_IFDIR, 0);
242 }
243
244 STATIC struct dentry *
245 xfs_vn_lookup(
246         struct inode    *dir,
247         struct dentry   *dentry,
248         unsigned int flags)
249 {
250         struct inode *inode;
251         struct xfs_inode *cip;
252         struct xfs_name name;
253         int             error;
254
255         if (dentry->d_name.len >= MAXNAMELEN)
256                 return ERR_PTR(-ENAMETOOLONG);
257
258         xfs_dentry_to_name(&name, dentry);
259         error = xfs_lookup(XFS_I(dir), &name, &cip, NULL);
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);
267 }
268
269 STATIC struct dentry *
270 xfs_vn_ci_lookup(
271         struct inode    *dir,
272         struct dentry   *dentry,
273         unsigned int flags)
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
284         xfs_dentry_to_name(&xname, dentry);
285         error = xfs_lookup(XFS_I(dir), &xname, &ip, &ci_name);
286         if (unlikely(error)) {
287                 if (unlikely(error != -ENOENT))
288                         return ERR_PTR(error);
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                  */
294                 return NULL;
295         }
296
297         /* if exact match, just splice and exit */
298         if (!ci_name.name)
299                 return d_splice_alias(VFS_I(ip), dentry);
300
301         /* else case-insensitive match... */
302         dname.name = ci_name.name;
303         dname.len = ci_name.len;
304         dentry = d_add_ci(dentry, VFS_I(ip), &dname);
305         kmem_free(ci_name.name);
306         return dentry;
307 }
308
309 STATIC int
310 xfs_vn_link(
311         struct dentry   *old_dentry,
312         struct inode    *dir,
313         struct dentry   *dentry)
314 {
315         struct inode    *inode = d_inode(old_dentry);
316         struct xfs_name name;
317         int             error;
318
319         error = xfs_dentry_mode_to_name(&name, dentry, inode->i_mode);
320         if (unlikely(error))
321                 return error;
322
323         error = xfs_link(XFS_I(dir), XFS_I(inode), &name);
324         if (unlikely(error))
325                 return error;
326
327         ihold(inode);
328         d_instantiate(dentry, inode);
329         return 0;
330 }
331
332 STATIC int
333 xfs_vn_unlink(
334         struct inode    *dir,
335         struct dentry   *dentry)
336 {
337         struct xfs_name name;
338         int             error;
339
340         xfs_dentry_to_name(&name, dentry);
341
342         error = xfs_remove(XFS_I(dir), &name, XFS_I(d_inode(dentry)));
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;
354 }
355
356 STATIC int
357 xfs_vn_symlink(
358         struct inode    *dir,
359         struct dentry   *dentry,
360         const char      *symname)
361 {
362         struct inode    *inode;
363         struct xfs_inode *cip = NULL;
364         struct xfs_name name;
365         int             error;
366         umode_t         mode;
367
368         mode = S_IFLNK |
369                 (irix_symlink_mode ? 0777 & ~current_umask() : S_IRWXUGO);
370         error = xfs_dentry_mode_to_name(&name, dentry, mode);
371         if (unlikely(error))
372                 goto out;
373
374         error = xfs_symlink(XFS_I(dir), &name, symname, mode, &cip);
375         if (unlikely(error))
376                 goto out;
377
378         inode = VFS_I(cip);
379
380         error = xfs_init_security(inode, dir, &dentry->d_name);
381         if (unlikely(error))
382                 goto out_cleanup_inode;
383
384         xfs_setup_iops(cip);
385
386         d_instantiate(dentry, inode);
387         xfs_finish_inode_setup(cip);
388         return 0;
389
390  out_cleanup_inode:
391         xfs_finish_inode_setup(cip);
392         xfs_cleanup_inode(dir, inode, dentry);
393         xfs_irele(cip);
394  out:
395         return error;
396 }
397
398 STATIC int
399 xfs_vn_rename(
400         struct inode    *odir,
401         struct dentry   *odentry,
402         struct inode    *ndir,
403         struct dentry   *ndentry,
404         unsigned int    flags)
405 {
406         struct inode    *new_inode = d_inode(ndentry);
407         int             omode = 0;
408         int             error;
409         struct xfs_name oname;
410         struct xfs_name nname;
411
412         if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE | RENAME_WHITEOUT))
413                 return -EINVAL;
414
415         /* if we are exchanging files, we need to set i_mode of both files */
416         if (flags & RENAME_EXCHANGE)
417                 omode = d_inode(ndentry)->i_mode;
418
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;
427
428         return xfs_rename(XFS_I(odir), &oname, XFS_I(d_inode(odentry)),
429                           XFS_I(ndir), &nname,
430                           new_inode ? XFS_I(new_inode) : NULL, flags);
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  */
438 STATIC const char *
439 xfs_vn_get_link(
440         struct dentry           *dentry,
441         struct inode            *inode,
442         struct delayed_call     *done)
443 {
444         char                    *link;
445         int                     error = -ENOMEM;
446
447         if (!dentry)
448                 return ERR_PTR(-ECHILD);
449
450         link = kmalloc(XFS_SYMLINK_MAXLEN+1, GFP_KERNEL);
451         if (!link)
452                 goto out_err;
453
454         error = xfs_readlink(XFS_I(d_inode(dentry)), link);
455         if (unlikely(error))
456                 goto out_kfree;
457
458         set_delayed_call(done, kfree_link, link);
459         return link;
460
461  out_kfree:
462         kfree(link);
463  out_err:
464         return ERR_PTR(error);
465 }
466
467 STATIC const char *
468 xfs_vn_get_link_inline(
469         struct dentry           *dentry,
470         struct inode            *inode,
471         struct delayed_call     *done)
472 {
473         char                    *link;
474
475         ASSERT(XFS_I(inode)->i_df.if_flags & XFS_IFINLINE);
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;
485 }
486
487 static uint32_t
488 xfs_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          */
513         if (!(mp->m_flags & XFS_MOUNT_COMPAT_IOSIZE)) {
514                 if (mp->m_swidth)
515                         return mp->m_swidth << mp->m_sb.sb_blocklog;
516                 if (mp->m_flags & XFS_MOUNT_DFLT_IOSIZE)
517                         return 1U << mp->m_allocsize_log;
518         }
519
520         return PAGE_SIZE;
521 }
522
523 STATIC int
524 xfs_vn_getattr(
525         const struct path       *path,
526         struct kstat            *stat,
527         u32                     request_mask,
528         unsigned int            query_flags)
529 {
530         struct inode            *inode = d_inode(path->dentry);
531         struct xfs_inode        *ip = XFS_I(inode);
532         struct xfs_mount        *mp = ip->i_mount;
533
534         trace_xfs_getattr(ip);
535
536         if (XFS_FORCED_SHUTDOWN(mp))
537                 return -EIO;
538
539         stat->size = XFS_ISIZE(ip);
540         stat->dev = inode->i_sb->s_dev;
541         stat->mode = inode->i_mode;
542         stat->nlink = inode->i_nlink;
543         stat->uid = inode->i_uid;
544         stat->gid = inode->i_gid;
545         stat->ino = ip->i_ino;
546         stat->atime = inode->i_atime;
547         stat->mtime = inode->i_mtime;
548         stat->ctime = inode->i_ctime;
549         stat->blocks =
550                 XFS_FSB_TO_BB(mp, ip->i_d.di_nblocks + ip->i_delayed_blks);
551
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
560         /*
561          * Note: If you add another clause to set an attribute flag, please
562          * update attributes_mask below.
563          */
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;
570
571         stat->attributes_mask |= (STATX_ATTR_IMMUTABLE |
572                                   STATX_ATTR_APPEND |
573                                   STATX_ATTR_NODUMP);
574
575         switch (inode->i_mode & S_IFMT) {
576         case S_IFBLK:
577         case S_IFCHR:
578                 stat->blksize = BLKDEV_IOSIZE;
579                 stat->rdev = inode->i_rdev;
580                 break;
581         default:
582                 stat->blksize = xfs_stat_blksize(ip);
583                 stat->rdev = 0;
584                 break;
585         }
586
587         return 0;
588 }
589
590 static void
591 xfs_setattr_mode(
592         struct xfs_inode        *ip,
593         struct iattr            *iattr)
594 {
595         struct inode            *inode = VFS_I(ip);
596         umode_t                 mode = iattr->ia_mode;
597
598         ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
599
600         inode->i_mode &= S_IFMT;
601         inode->i_mode |= mode & ~S_IFMT;
602 }
603
604 void
605 xfs_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
613         if (iattr->ia_valid & ATTR_ATIME)
614                 inode->i_atime = iattr->ia_atime;
615         if (iattr->ia_valid & ATTR_CTIME)
616                 inode->i_ctime = iattr->ia_ctime;
617         if (iattr->ia_valid & ATTR_MTIME)
618                 inode->i_mtime = iattr->ia_mtime;
619 }
620
621 static int
622 xfs_vn_change_ok(
623         struct dentry   *dentry,
624         struct iattr    *iattr)
625 {
626         struct xfs_mount        *mp = XFS_I(d_inode(dentry))->i_mount;
627
628         if (mp->m_flags & XFS_MOUNT_RDONLY)
629                 return -EROFS;
630
631         if (XFS_FORCED_SHUTDOWN(mp))
632                 return -EIO;
633
634         return setattr_prepare(dentry, iattr);
635 }
636
637 /*
638  * Set non-size attributes of an inode.
639  *
640  * Caution: The caller of this function is responsible for calling
641  * setattr_prepare() or otherwise verifying the change is fine.
642  */
643 int
644 xfs_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;
654         kuid_t                  uid = GLOBAL_ROOT_UID, iuid = GLOBAL_ROOT_UID;
655         kgid_t                  gid = GLOBAL_ROOT_GID, igid = GLOBAL_ROOT_GID;
656         struct xfs_dquot        *udqp = NULL, *gdqp = NULL;
657         struct xfs_dquot        *olddquot1 = NULL, *olddquot2 = NULL;
658
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 {
676                         uid = inode->i_uid;
677                 }
678                 if ((mask & ATTR_GID) && XFS_IS_GQUOTA_ON(mp)) {
679                         gid = iattr->ia_gid;
680                         qflags |= XFS_QMOPT_GQUOTA;
681                 }  else {
682                         gid = inode->i_gid;
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);
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);
696                 if (error)
697                         return error;
698         }
699
700         error = xfs_trans_alloc(mp, &M_RES(mp)->tr_ichange, 0, 0, 0, &tp);
701         if (error)
702                 goto out_dqrele;
703
704         xfs_ilock(ip, XFS_ILOCK_EXCL);
705         xfs_trans_ijoin(tp, ip, 0);
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                  */
717                 iuid = inode->i_uid;
718                 igid = inode->i_gid;
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) &&
727                     ((XFS_IS_UQUOTA_ON(mp) && !uid_eq(iuid, uid)) ||
728                      (XFS_IS_GQUOTA_ON(mp) && !gid_eq(igid, gid)))) {
729                         ASSERT(tp);
730                         error = xfs_qm_vop_chown_reserve(tp, ip, udqp, gdqp,
731                                                 NULL, capable(CAP_FOWNER) ?
732                                                 XFS_QMOPT_FORCE_RES : 0);
733                         if (error)      /* out of quota */
734                                 goto out_cancel;
735                 }
736         }
737
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                  */
748                 if ((inode->i_mode & (S_ISUID|S_ISGID)) &&
749                     !capable(CAP_FSETID))
750                         inode->i_mode &= ~(S_ISUID|S_ISGID);
751
752                 /*
753                  * Change the ownerships and register quota modifications
754                  * in the transaction.
755                  */
756                 if (!uid_eq(iuid, uid)) {
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                         }
763                         ip->i_d.di_uid = xfs_kuid_to_uid(uid);
764                         inode->i_uid = uid;
765                 }
766                 if (!gid_eq(igid, gid)) {
767                         if (XFS_IS_QUOTA_RUNNING(mp) && XFS_IS_GQUOTA_ON(mp)) {
768                                 ASSERT(xfs_sb_version_has_pquotino(&mp->m_sb) ||
769                                        !XFS_IS_PQUOTA_ON(mp));
770                                 ASSERT(mask & ATTR_GID);
771                                 ASSERT(gdqp);
772                                 olddquot2 = xfs_qm_vop_chown(tp, ip,
773                                                         &ip->i_gdquot, gdqp);
774                         }
775                         ip->i_d.di_gid = xfs_kgid_to_gid(gid);
776                         inode->i_gid = gid;
777                 }
778         }
779
780         if (mask & ATTR_MODE)
781                 xfs_setattr_mode(ip, iattr);
782         if (mask & (ATTR_ATIME|ATTR_CTIME|ATTR_MTIME))
783                 xfs_setattr_time(ip, iattr);
784
785         xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
786
787         XFS_STATS_INC(mp, xs_ig_attrchg);
788
789         if (mp->m_flags & XFS_MOUNT_WSYNC)
790                 xfs_trans_set_sync(tp);
791         error = xfs_trans_commit(tp);
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)
804                 return error;
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)) {
814                 error = posix_acl_chmod(inode, inode->i_mode);
815                 if (error)
816                         return error;
817         }
818
819         return 0;
820
821 out_cancel:
822         xfs_trans_cancel(tp);
823         xfs_iunlock(ip, XFS_ILOCK_EXCL);
824 out_dqrele:
825         xfs_qm_dqrele(udqp);
826         xfs_qm_dqrele(gdqp);
827         return error;
828 }
829
830 int
831 xfs_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
846 /*
847  * Truncate file.  Must have write permission and not be a directory.
848  *
849  * Caution: The caller of this function is responsible for calling
850  * setattr_prepare() or otherwise verifying the change is fine.
851  */
852 STATIC int
853 xfs_setattr_size(
854         struct xfs_inode        *ip,
855         struct iattr            *iattr)
856 {
857         struct xfs_mount        *mp = ip->i_mount;
858         struct inode            *inode = VFS_I(ip);
859         xfs_off_t               oldsize, newsize;
860         struct xfs_trans        *tp;
861         int                     error;
862         uint                    lock_flags = 0;
863         bool                    did_zeroing = false;
864
865         ASSERT(xfs_isilocked(ip, XFS_IOLOCK_EXCL));
866         ASSERT(xfs_isilocked(ip, XFS_MMAPLOCK_EXCL));
867         ASSERT(S_ISREG(inode->i_mode));
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);
870
871         oldsize = inode->i_size;
872         newsize = iattr->ia_size;
873
874         /*
875          * Short circuit the truncate case for zero length files.
876          */
877         if (newsize == 0 && oldsize == 0 && ip->i_d.di_nextents == 0) {
878                 if (!(iattr->ia_valid & (ATTR_CTIME|ATTR_MTIME)))
879                         return 0;
880
881                 /*
882                  * Use the regular setattr path to update the timestamps.
883                  */
884                 iattr->ia_valid &= ~ATTR_SIZE;
885                 return xfs_setattr_nonsize(ip, iattr, 0);
886         }
887
888         /*
889          * Make sure that the dquots are attached to the inode.
890          */
891         error = xfs_qm_dqattach(ip);
892         if (error)
893                 return error;
894
895         /*
896          * Wait for all direct I/O to complete.
897          */
898         inode_dio_wait(inode);
899
900         /*
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          *
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.
909          */
910         if (newsize > oldsize) {
911                 trace_xfs_zero_eof(ip, oldsize, newsize - oldsize);
912                 error = iomap_zero_range(inode, oldsize, newsize - oldsize,
913                                 &did_zeroing, &xfs_buffered_write_iomap_ops);
914         } else {
915                 error = iomap_truncate_page(inode, newsize, &did_zeroing,
916                                 &xfs_buffered_write_iomap_ops);
917         }
918
919         if (error)
920                 return error;
921
922         /*
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.
929          *
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.
933          * Hence a truncate can fail with ENOMEM from xfs_trans_alloc(), but
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.
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.
942          */
943         truncate_setsize(inode, newsize);
944
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
961         error = xfs_trans_alloc(mp, &M_RES(mp)->tr_itruncate, 0, 0, 0, &tp);
962         if (error)
963                 return error;
964
965         lock_flags |= XFS_ILOCK_EXCL;
966         xfs_ilock(ip, XFS_ILOCK_EXCL);
967         xfs_trans_ijoin(tp, ip, 0);
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          */
979         if (newsize != oldsize &&
980             !(iattr->ia_valid & (ATTR_CTIME | ATTR_MTIME))) {
981                 iattr->ia_ctime = iattr->ia_mtime =
982                         current_time(inode);
983                 iattr->ia_valid |= ATTR_CTIME | ATTR_MTIME;
984         }
985
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;
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);
1003                 if (error)
1004                         goto out_trans_cancel;
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);
1014
1015                 /* A truncate down always removes post-EOF blocks. */
1016                 xfs_inode_clear_eofblocks_tag(ip);
1017         }
1018
1019         if (iattr->ia_valid & ATTR_MODE)
1020                 xfs_setattr_mode(ip, iattr);
1021         if (iattr->ia_valid & (ATTR_ATIME|ATTR_CTIME|ATTR_MTIME))
1022                 xfs_setattr_time(ip, iattr);
1023
1024         xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1025
1026         XFS_STATS_INC(mp, xs_ig_attrchg);
1027
1028         if (mp->m_flags & XFS_MOUNT_WSYNC)
1029                 xfs_trans_set_sync(tp);
1030
1031         error = xfs_trans_commit(tp);
1032 out_unlock:
1033         if (lock_flags)
1034                 xfs_iunlock(ip, lock_flags);
1035         return error;
1036
1037 out_trans_cancel:
1038         xfs_trans_cancel(tp);
1039         goto out_unlock;
1040 }
1041
1042 int
1043 xfs_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
1058 STATIC int
1059 xfs_vn_setattr(
1060         struct dentry           *dentry,
1061         struct iattr            *iattr)
1062 {
1063         int                     error;
1064
1065         if (iattr->ia_valid & ATTR_SIZE) {
1066                 struct inode            *inode = d_inode(dentry);
1067                 struct xfs_inode        *ip = XFS_I(inode);
1068                 uint                    iolock;
1069
1070                 xfs_ilock(ip, XFS_MMAPLOCK_EXCL);
1071                 iolock = XFS_IOLOCK_EXCL | XFS_MMAPLOCK_EXCL;
1072
1073                 error = xfs_break_layouts(inode, &iolock, BREAK_UNMAP);
1074                 if (error) {
1075                         xfs_iunlock(ip, XFS_MMAPLOCK_EXCL);
1076                         return error;
1077                 }
1078
1079                 error = xfs_vn_setattr_size(dentry, iattr);
1080                 xfs_iunlock(ip, XFS_MMAPLOCK_EXCL);
1081         } else {
1082                 error = xfs_vn_setattr_nonsize(dentry, iattr);
1083         }
1084
1085         return error;
1086 }
1087
1088 STATIC int
1089 xfs_vn_update_time(
1090         struct inode            *inode,
1091         struct timespec64       *now,
1092         int                     flags)
1093 {
1094         struct xfs_inode        *ip = XFS_I(inode);
1095         struct xfs_mount        *mp = ip->i_mount;
1096         int                     log_flags = XFS_ILOG_TIMESTAMP;
1097         struct xfs_trans        *tp;
1098         int                     error;
1099
1100         trace_xfs_update_time(ip);
1101
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
1111         error = xfs_trans_alloc(mp, &M_RES(mp)->tr_fsyncts, 0, 0, 0, &tp);
1112         if (error)
1113                 return error;
1114
1115         xfs_ilock(ip, XFS_ILOCK_EXCL);
1116         if (flags & S_CTIME)
1117                 inode->i_ctime = *now;
1118         if (flags & S_MTIME)
1119                 inode->i_mtime = *now;
1120         if (flags & S_ATIME)
1121                 inode->i_atime = *now;
1122
1123         xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
1124         xfs_trans_log_inode(tp, ip, log_flags);
1125         return xfs_trans_commit(tp);
1126 }
1127
1128 STATIC int
1129 xfs_vn_fiemap(
1130         struct inode            *inode,
1131         struct fiemap_extent_info *fieinfo,
1132         u64                     start,
1133         u64                     length)
1134 {
1135         int                     error;
1136
1137         xfs_ilock(XFS_I(inode), XFS_IOLOCK_SHARED);
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,
1144                                 &xfs_read_iomap_ops);
1145         }
1146         xfs_iunlock(XFS_I(inode), XFS_IOLOCK_SHARED);
1147
1148         return error;
1149 }
1150
1151 STATIC int
1152 xfs_vn_tmpfile(
1153         struct inode    *dir,
1154         struct dentry   *dentry,
1155         umode_t         mode)
1156 {
1157         return xfs_generic_create(dir, dentry, mode, 0, true);
1158 }
1159
1160 static const struct inode_operations xfs_inode_operations = {
1161         .get_acl                = xfs_get_acl,
1162         .set_acl                = xfs_set_acl,
1163         .getattr                = xfs_vn_getattr,
1164         .setattr                = xfs_vn_setattr,
1165         .listxattr              = xfs_vn_listxattr,
1166         .fiemap                 = xfs_vn_fiemap,
1167         .update_time            = xfs_vn_update_time,
1168 };
1169
1170 static const struct inode_operations xfs_dir_inode_operations = {
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,
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,
1184         .mknod                  = xfs_vn_mknod,
1185         .rename                 = xfs_vn_rename,
1186         .get_acl                = xfs_get_acl,
1187         .set_acl                = xfs_set_acl,
1188         .getattr                = xfs_vn_getattr,
1189         .setattr                = xfs_vn_setattr,
1190         .listxattr              = xfs_vn_listxattr,
1191         .update_time            = xfs_vn_update_time,
1192         .tmpfile                = xfs_vn_tmpfile,
1193 };
1194
1195 static const struct inode_operations xfs_dir_ci_inode_operations = {
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,
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,
1209         .mknod                  = xfs_vn_mknod,
1210         .rename                 = xfs_vn_rename,
1211         .get_acl                = xfs_get_acl,
1212         .set_acl                = xfs_set_acl,
1213         .getattr                = xfs_vn_getattr,
1214         .setattr                = xfs_vn_setattr,
1215         .listxattr              = xfs_vn_listxattr,
1216         .update_time            = xfs_vn_update_time,
1217         .tmpfile                = xfs_vn_tmpfile,
1218 };
1219
1220 static const struct inode_operations xfs_symlink_inode_operations = {
1221         .get_link               = xfs_vn_get_link,
1222         .getattr                = xfs_vn_getattr,
1223         .setattr                = xfs_vn_setattr,
1224         .listxattr              = xfs_vn_listxattr,
1225         .update_time            = xfs_vn_update_time,
1226 };
1227
1228 static const struct inode_operations xfs_inline_symlink_inode_operations = {
1229         .get_link               = xfs_vn_get_link_inline,
1230         .getattr                = xfs_vn_getattr,
1231         .setattr                = xfs_vn_setattr,
1232         .listxattr              = xfs_vn_listxattr,
1233         .update_time            = xfs_vn_update_time,
1234 };
1235
1236 /* Figure out if this file actually supports DAX. */
1237 static bool
1238 xfs_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. */
1257         return xfs_inode_buftarg(ip)->bt_daxdev != NULL;
1258 }
1259
1260 STATIC void
1261 xfs_diflags_to_iflags(
1262         struct inode            *inode,
1263         struct xfs_inode        *ip)
1264 {
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)
1271                 inode->i_flags |= S_IMMUTABLE;
1272         if (flags & XFS_DIFLAG_APPEND)
1273                 inode->i_flags |= S_APPEND;
1274         if (flags & XFS_DIFLAG_SYNC)
1275                 inode->i_flags |= S_SYNC;
1276         if (flags & XFS_DIFLAG_NOATIME)
1277                 inode->i_flags |= S_NOATIME;
1278         if (xfs_inode_supports_dax(ip))
1279                 inode->i_flags |= S_DAX;
1280 }
1281
1282 /*
1283  * Initialize the Linux inode.
1284  *
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.
1289  */
1290 void
1291 xfs_setup_inode(
1292         struct xfs_inode        *ip)
1293 {
1294         struct inode            *inode = &ip->i_vnode;
1295         gfp_t                   gfp_mask;
1296
1297         inode->i_ino = ip->i_ino;
1298         inode->i_state = I_NEW;
1299
1300         inode_sb_list_add(inode);
1301         /* make the inode look hashed for the writeback code */
1302         inode_fake_hash(inode);
1303
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);
1306
1307         i_size_write(inode, ip->i_d.di_size);
1308         xfs_diflags_to_iflags(inode, ip);
1309
1310         if (S_ISDIR(inode->i_mode)) {
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);
1319                 lockdep_set_class(&ip->i_lock.mr_lock, &xfs_dir_ilock_class);
1320                 ip->d_ops = ip->i_mount->m_dir_inode_ops;
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);
1324         }
1325
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
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);
1340                 cache_no_acl(inode);
1341         }
1342 }
1343
1344 void
1345 xfs_setup_iops(
1346         struct xfs_inode        *ip)
1347 {
1348         struct inode            *inode = &ip->i_vnode;
1349
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;
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;
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:
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;
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         }
1377 }