2 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation.
9 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21 #include "xfs_types.h"
25 #include "xfs_trans.h"
29 #include "xfs_dmapi.h"
30 #include "xfs_mount.h"
31 #include "xfs_da_btree.h"
32 #include "xfs_bmap_btree.h"
33 #include "xfs_alloc_btree.h"
34 #include "xfs_ialloc_btree.h"
35 #include "xfs_dir2_sf.h"
36 #include "xfs_attr_sf.h"
37 #include "xfs_dinode.h"
38 #include "xfs_inode.h"
39 #include "xfs_inode_item.h"
40 #include "xfs_itable.h"
41 #include "xfs_btree.h"
42 #include "xfs_ialloc.h"
43 #include "xfs_alloc.h"
47 #include "xfs_error.h"
48 #include "xfs_quota.h"
49 #include "xfs_utils.h"
50 #include "xfs_rtalloc.h"
51 #include "xfs_refcache.h"
52 #include "xfs_trans_space.h"
53 #include "xfs_log_priv.h"
62 bhv_vnode_t
*vp
= BHV_TO_VNODE(bdp
);
63 xfs_inode_t
*ip
= XFS_BHVTOI(bdp
);
65 if (XFS_FORCED_SHUTDOWN(ip
->i_mount
))
66 return XFS_ERROR(EIO
);
69 * If it's a directory with any blocks, read-ahead block 0
70 * as we're almost certain to have the next operation be a read there.
72 if (VN_ISDIR(vp
) && ip
->i_d
.di_nextents
> 0) {
73 mode
= xfs_ilock_map_shared(ip
);
74 if (ip
->i_d
.di_nextents
> 0)
75 (void)xfs_da_reada_buf(NULL
, ip
, 0, XFS_DATA_FORK
);
76 xfs_iunlock(ip
, mode
);
85 lastclose_t lastclose
,
88 bhv_vnode_t
*vp
= BHV_TO_VNODE(bdp
);
89 xfs_inode_t
*ip
= XFS_BHVTOI(bdp
);
91 if (XFS_FORCED_SHUTDOWN(ip
->i_mount
))
92 return XFS_ERROR(EIO
);
94 if (lastclose
!= L_TRUE
|| !VN_ISREG(vp
))
98 * If we previously truncated this file and removed old data in
99 * the process, we want to initiate "early" writeout on the last
100 * close. This is an attempt to combat the notorious NULL files
101 * problem which is particularly noticable from a truncate down,
102 * buffered (re-)write (delalloc), followed by a crash. What we
103 * are effectively doing here is significantly reducing the time
104 * window where we'd otherwise be exposed to that problem.
106 if (VUNTRUNCATE(vp
) && VN_DIRTY(vp
) && ip
->i_delayed_blks
> 0)
107 return bhv_vop_flush_pages(vp
, 0, -1, XFS_B_ASYNC
, FI_NONE
);
125 vp
= BHV_TO_VNODE(bdp
);
126 vn_trace_entry(vp
, __FUNCTION__
, (inst_t
*)__return_address
);
128 ip
= XFS_BHVTOI(bdp
);
131 if (XFS_FORCED_SHUTDOWN(mp
))
132 return XFS_ERROR(EIO
);
134 if (!(flags
& ATTR_LAZY
))
135 xfs_ilock(ip
, XFS_ILOCK_SHARED
);
137 vap
->va_size
= ip
->i_d
.di_size
;
138 if (vap
->va_mask
== XFS_AT_SIZE
)
142 XFS_FSB_TO_BB(mp
, ip
->i_d
.di_nblocks
+ ip
->i_delayed_blks
);
143 vap
->va_nodeid
= ip
->i_ino
;
145 vap
->va_nodeid
+= mp
->m_inoadd
;
147 vap
->va_nlink
= ip
->i_d
.di_nlink
;
150 * Quick exit for non-stat callers
153 ~(XFS_AT_SIZE
|XFS_AT_FSID
|XFS_AT_NODEID
|
154 XFS_AT_NLINK
|XFS_AT_BLKSIZE
)) == 0)
158 * Copy from in-core inode.
160 vap
->va_mode
= ip
->i_d
.di_mode
;
161 vap
->va_uid
= ip
->i_d
.di_uid
;
162 vap
->va_gid
= ip
->i_d
.di_gid
;
163 vap
->va_projid
= ip
->i_d
.di_projid
;
166 * Check vnode type block/char vs. everything else.
168 switch (ip
->i_d
.di_mode
& S_IFMT
) {
171 vap
->va_rdev
= ip
->i_df
.if_u2
.if_rdev
;
172 vap
->va_blocksize
= BLKDEV_IOSIZE
;
177 if (!(ip
->i_d
.di_flags
& XFS_DIFLAG_REALTIME
)) {
178 vap
->va_blocksize
= xfs_preferred_iosize(mp
);
182 * If the file blocks are being allocated from a
183 * realtime partition, then return the inode's
184 * realtime extent size or the realtime volume's
187 vap
->va_blocksize
= ip
->i_d
.di_extsize
?
188 (ip
->i_d
.di_extsize
<< mp
->m_sb
.sb_blocklog
) :
189 (mp
->m_sb
.sb_rextsize
<< mp
->m_sb
.sb_blocklog
);
194 vn_atime_to_timespec(vp
, &vap
->va_atime
);
195 vap
->va_mtime
.tv_sec
= ip
->i_d
.di_mtime
.t_sec
;
196 vap
->va_mtime
.tv_nsec
= ip
->i_d
.di_mtime
.t_nsec
;
197 vap
->va_ctime
.tv_sec
= ip
->i_d
.di_ctime
.t_sec
;
198 vap
->va_ctime
.tv_nsec
= ip
->i_d
.di_ctime
.t_nsec
;
201 * Exit for stat callers. See if any of the rest of the fields
202 * to be filled in are needed.
205 (XFS_AT_XFLAGS
|XFS_AT_EXTSIZE
|XFS_AT_NEXTENTS
|XFS_AT_ANEXTENTS
|
206 XFS_AT_GENCOUNT
|XFS_AT_VCODE
)) == 0)
210 * Convert di_flags to xflags.
212 vap
->va_xflags
= xfs_ip2xflags(ip
);
215 * Exit for inode revalidate. See if any of the rest of
216 * the fields to be filled in are needed.
219 (XFS_AT_EXTSIZE
|XFS_AT_NEXTENTS
|XFS_AT_ANEXTENTS
|
220 XFS_AT_GENCOUNT
|XFS_AT_VCODE
)) == 0)
223 vap
->va_extsize
= ip
->i_d
.di_extsize
<< mp
->m_sb
.sb_blocklog
;
225 (ip
->i_df
.if_flags
& XFS_IFEXTENTS
) ?
226 ip
->i_df
.if_bytes
/ sizeof(xfs_bmbt_rec_t
) :
230 (ip
->i_afp
->if_flags
& XFS_IFEXTENTS
) ?
231 ip
->i_afp
->if_bytes
/ sizeof(xfs_bmbt_rec_t
) :
232 ip
->i_d
.di_anextents
;
234 vap
->va_anextents
= 0;
235 vap
->va_gen
= ip
->i_d
.di_gen
;
238 if (!(flags
& ATTR_LAZY
))
239 xfs_iunlock(ip
, XFS_ILOCK_SHARED
);
265 xfs_prid_t projid
=0, iprojid
=0;
266 int mandlock_before
, mandlock_after
;
267 struct xfs_dquot
*udqp
, *gdqp
, *olddquot1
, *olddquot2
;
271 vp
= BHV_TO_VNODE(bdp
);
272 vn_trace_entry(vp
, __FUNCTION__
, (inst_t
*)__return_address
);
274 if (vp
->v_vfsp
->vfs_flag
& VFS_RDONLY
)
275 return XFS_ERROR(EROFS
);
278 * Cannot set certain attributes.
281 if (mask
& XFS_AT_NOSET
) {
282 return XFS_ERROR(EINVAL
);
285 ip
= XFS_BHVTOI(bdp
);
288 if (XFS_FORCED_SHUTDOWN(mp
))
289 return XFS_ERROR(EIO
);
292 * Timestamps do not need to be logged and hence do not
293 * need to be done within a transaction.
295 if (mask
& XFS_AT_UPDTIMES
) {
296 ASSERT((mask
& ~XFS_AT_UPDTIMES
) == 0);
297 timeflags
= ((mask
& XFS_AT_UPDATIME
) ? XFS_ICHGTIME_ACC
: 0) |
298 ((mask
& XFS_AT_UPDCTIME
) ? XFS_ICHGTIME_CHG
: 0) |
299 ((mask
& XFS_AT_UPDMTIME
) ? XFS_ICHGTIME_MOD
: 0);
300 xfs_ichgtime(ip
, timeflags
);
304 olddquot1
= olddquot2
= NULL
;
308 * If disk quotas is on, we make sure that the dquots do exist on disk,
309 * before we start any other transactions. Trying to do this later
310 * is messy. We don't care to take a readlock to look at the ids
311 * in inode here, because we can't hold it across the trans_reserve.
312 * If the IDs do change before we take the ilock, we're covered
313 * because the i_*dquot fields will get updated anyway.
315 if (XFS_IS_QUOTA_ON(mp
) &&
316 (mask
& (XFS_AT_UID
|XFS_AT_GID
|XFS_AT_PROJID
))) {
319 if ((mask
& XFS_AT_UID
) && XFS_IS_UQUOTA_ON(mp
)) {
321 qflags
|= XFS_QMOPT_UQUOTA
;
323 uid
= ip
->i_d
.di_uid
;
325 if ((mask
& XFS_AT_GID
) && XFS_IS_GQUOTA_ON(mp
)) {
327 qflags
|= XFS_QMOPT_GQUOTA
;
329 gid
= ip
->i_d
.di_gid
;
331 if ((mask
& XFS_AT_PROJID
) && XFS_IS_PQUOTA_ON(mp
)) {
332 projid
= vap
->va_projid
;
333 qflags
|= XFS_QMOPT_PQUOTA
;
335 projid
= ip
->i_d
.di_projid
;
338 * We take a reference when we initialize udqp and gdqp,
339 * so it is important that we never blindly double trip on
340 * the same variable. See xfs_create() for an example.
342 ASSERT(udqp
== NULL
);
343 ASSERT(gdqp
== NULL
);
344 code
= XFS_QM_DQVOPALLOC(mp
, ip
, uid
, gid
, projid
, qflags
,
351 * For the other attributes, we acquire the inode lock and
352 * first do an error checking pass.
355 lock_flags
= XFS_ILOCK_EXCL
;
356 if (flags
& ATTR_NOLOCK
)
358 if (!(mask
& XFS_AT_SIZE
)) {
359 if ((mask
!= (XFS_AT_CTIME
|XFS_AT_ATIME
|XFS_AT_MTIME
)) ||
360 (mp
->m_flags
& XFS_MOUNT_WSYNC
)) {
361 tp
= xfs_trans_alloc(mp
, XFS_TRANS_SETATTR_NOT_SIZE
);
363 if ((code
= xfs_trans_reserve(tp
, 0,
364 XFS_ICHANGE_LOG_RES(mp
), 0,
371 if (DM_EVENT_ENABLED (vp
->v_vfsp
, ip
, DM_EVENT_TRUNCATE
) &&
372 !(flags
& ATTR_DMI
)) {
373 int dmflags
= AT_DELAY_FLAG(flags
) | DM_SEM_FLAG_WR
;
374 code
= XFS_SEND_DATA(mp
, DM_EVENT_TRUNCATE
, vp
,
375 vap
->va_size
, 0, dmflags
, NULL
);
382 lock_flags
|= XFS_IOLOCK_EXCL
;
385 xfs_ilock(ip
, lock_flags
);
387 /* boolean: are we the file owner? */
388 file_owner
= (current_fsuid(credp
) == ip
->i_d
.di_uid
);
391 * Change various properties of a file.
392 * Only the owner or users with CAP_FOWNER
393 * capability may do these things.
396 (XFS_AT_MODE
|XFS_AT_XFLAGS
|XFS_AT_EXTSIZE
|XFS_AT_UID
|
397 XFS_AT_GID
|XFS_AT_PROJID
)) {
399 * CAP_FOWNER overrides the following restrictions:
401 * The user ID of the calling process must be equal
402 * to the file owner ID, except in cases where the
403 * CAP_FSETID capability is applicable.
405 if (!file_owner
&& !capable(CAP_FOWNER
)) {
406 code
= XFS_ERROR(EPERM
);
411 * CAP_FSETID overrides the following restrictions:
413 * The effective user ID of the calling process shall match
414 * the file owner when setting the set-user-ID and
415 * set-group-ID bits on that file.
417 * The effective group ID or one of the supplementary group
418 * IDs of the calling process shall match the group owner of
419 * the file when setting the set-group-ID bit on that file
421 if (mask
& XFS_AT_MODE
) {
424 if ((vap
->va_mode
& S_ISUID
) && !file_owner
)
426 if ((vap
->va_mode
& S_ISGID
) &&
427 !in_group_p((gid_t
)ip
->i_d
.di_gid
))
430 /* Linux allows this, Irix doesn't. */
431 if ((vap
->va_mode
& S_ISVTX
) && !VN_ISDIR(vp
))
434 if (m
&& !capable(CAP_FSETID
))
440 * Change file ownership. Must be the owner or privileged.
441 * If the system was configured with the "restricted_chown"
442 * option, the owner is not permitted to give away the file,
443 * and can change the group id only to a group of which he
444 * or she is a member.
446 if (mask
& (XFS_AT_UID
|XFS_AT_GID
|XFS_AT_PROJID
)) {
448 * These IDs could have changed since we last looked at them.
449 * But, we're assured that if the ownership did change
450 * while we didn't have the inode locked, inode's dquot(s)
451 * would have changed also.
453 iuid
= ip
->i_d
.di_uid
;
454 iprojid
= ip
->i_d
.di_projid
;
455 igid
= ip
->i_d
.di_gid
;
456 gid
= (mask
& XFS_AT_GID
) ? vap
->va_gid
: igid
;
457 uid
= (mask
& XFS_AT_UID
) ? vap
->va_uid
: iuid
;
458 projid
= (mask
& XFS_AT_PROJID
) ? (xfs_prid_t
)vap
->va_projid
:
462 * CAP_CHOWN overrides the following restrictions:
464 * If _POSIX_CHOWN_RESTRICTED is defined, this capability
465 * shall override the restriction that a process cannot
466 * change the user ID of a file it owns and the restriction
467 * that the group ID supplied to the chown() function
468 * shall be equal to either the group ID or one of the
469 * supplementary group IDs of the calling process.
471 if (restricted_chown
&&
472 (iuid
!= uid
|| (igid
!= gid
&&
473 !in_group_p((gid_t
)gid
))) &&
474 !capable(CAP_CHOWN
)) {
475 code
= XFS_ERROR(EPERM
);
479 * Do a quota reservation only if uid/projid/gid is actually
482 if ((XFS_IS_UQUOTA_ON(mp
) && iuid
!= uid
) ||
483 (XFS_IS_PQUOTA_ON(mp
) && iprojid
!= projid
) ||
484 (XFS_IS_GQUOTA_ON(mp
) && igid
!= gid
)) {
486 code
= XFS_QM_DQVOPCHOWNRESV(mp
, tp
, ip
, udqp
, gdqp
,
487 capable(CAP_FOWNER
) ?
488 XFS_QMOPT_FORCE_RES
: 0);
489 if (code
) /* out of quota */
495 * Truncate file. Must have write permission and not be a directory.
497 if (mask
& XFS_AT_SIZE
) {
498 /* Short circuit the truncate case for zero length files */
499 if ((vap
->va_size
== 0) &&
500 (ip
->i_d
.di_size
== 0) && (ip
->i_d
.di_nextents
== 0)) {
501 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
502 lock_flags
&= ~XFS_ILOCK_EXCL
;
503 if (mask
& XFS_AT_CTIME
)
504 xfs_ichgtime(ip
, XFS_ICHGTIME_MOD
| XFS_ICHGTIME_CHG
);
510 code
= XFS_ERROR(EISDIR
);
512 } else if (!VN_ISREG(vp
)) {
513 code
= XFS_ERROR(EINVAL
);
517 * Make sure that the dquots are attached to the inode.
519 if ((code
= XFS_QM_DQATTACH(mp
, ip
, XFS_QMOPT_ILOCKED
)))
524 * Change file access or modified times.
526 if (mask
& (XFS_AT_ATIME
|XFS_AT_MTIME
)) {
528 if ((flags
& ATTR_UTIME
) &&
529 !capable(CAP_FOWNER
)) {
530 code
= XFS_ERROR(EPERM
);
537 * Change extent size or realtime flag.
539 if (mask
& (XFS_AT_EXTSIZE
|XFS_AT_XFLAGS
)) {
541 * Can't change extent size if any extents are allocated.
543 if (ip
->i_d
.di_nextents
&& (mask
& XFS_AT_EXTSIZE
) &&
544 ((ip
->i_d
.di_extsize
<< mp
->m_sb
.sb_blocklog
) !=
546 code
= XFS_ERROR(EINVAL
); /* EFBIG? */
551 * Can't change realtime flag if any extents are allocated.
553 if ((ip
->i_d
.di_nextents
|| ip
->i_delayed_blks
) &&
554 (mask
& XFS_AT_XFLAGS
) &&
555 (ip
->i_d
.di_flags
& XFS_DIFLAG_REALTIME
) !=
556 (vap
->va_xflags
& XFS_XFLAG_REALTIME
)) {
557 code
= XFS_ERROR(EINVAL
); /* EFBIG? */
561 * Extent size must be a multiple of the appropriate block
562 * size, if set at all.
564 if ((mask
& XFS_AT_EXTSIZE
) && vap
->va_extsize
!= 0) {
567 if ((ip
->i_d
.di_flags
& XFS_DIFLAG_REALTIME
) ||
568 ((mask
& XFS_AT_XFLAGS
) &&
569 (vap
->va_xflags
& XFS_XFLAG_REALTIME
))) {
570 size
= mp
->m_sb
.sb_rextsize
<<
571 mp
->m_sb
.sb_blocklog
;
573 size
= mp
->m_sb
.sb_blocksize
;
575 if (vap
->va_extsize
% size
) {
576 code
= XFS_ERROR(EINVAL
);
581 * If realtime flag is set then must have realtime data.
583 if ((mask
& XFS_AT_XFLAGS
) &&
584 (vap
->va_xflags
& XFS_XFLAG_REALTIME
)) {
585 if ((mp
->m_sb
.sb_rblocks
== 0) ||
586 (mp
->m_sb
.sb_rextsize
== 0) ||
587 (ip
->i_d
.di_extsize
% mp
->m_sb
.sb_rextsize
)) {
588 code
= XFS_ERROR(EINVAL
);
594 * Can't modify an immutable/append-only file unless
595 * we have appropriate permission.
597 if ((mask
& XFS_AT_XFLAGS
) &&
599 (XFS_DIFLAG_IMMUTABLE
|XFS_DIFLAG_APPEND
) ||
601 (XFS_XFLAG_IMMUTABLE
| XFS_XFLAG_APPEND
))) &&
602 !capable(CAP_LINUX_IMMUTABLE
)) {
603 code
= XFS_ERROR(EPERM
);
609 * Now we can make the changes. Before we join the inode
610 * to the transaction, if XFS_AT_SIZE is set then take care of
611 * the part of the truncation that must be done without the
612 * inode lock. This needs to be done before joining the inode
613 * to the transaction, because the inode cannot be unlocked
614 * once it is a part of the transaction.
616 if (mask
& XFS_AT_SIZE
) {
618 if ((vap
->va_size
> ip
->i_d
.di_size
) &&
619 (flags
& ATTR_NOSIZETOK
) == 0) {
620 code
= xfs_igrow_start(ip
, vap
->va_size
, credp
);
622 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
623 vn_iowait(vp
); /* wait for the completion of any pending DIOs */
625 code
= xfs_itruncate_data(ip
, vap
->va_size
);
628 lock_flags
&= ~XFS_ILOCK_EXCL
;
629 ASSERT(lock_flags
== XFS_IOLOCK_EXCL
);
632 tp
= xfs_trans_alloc(mp
, XFS_TRANS_SETATTR_SIZE
);
633 if ((code
= xfs_trans_reserve(tp
, 0,
634 XFS_ITRUNCATE_LOG_RES(mp
), 0,
635 XFS_TRANS_PERM_LOG_RES
,
636 XFS_ITRUNCATE_LOG_COUNT
))) {
637 xfs_trans_cancel(tp
, 0);
639 xfs_iunlock(ip
, XFS_IOLOCK_EXCL
);
642 commit_flags
= XFS_TRANS_RELEASE_LOG_RES
;
643 xfs_ilock(ip
, XFS_ILOCK_EXCL
);
647 xfs_trans_ijoin(tp
, ip
, lock_flags
);
648 xfs_trans_ihold(tp
, ip
);
651 /* determine whether mandatory locking mode changes */
652 mandlock_before
= MANDLOCK(vp
, ip
->i_d
.di_mode
);
655 * Truncate file. Must have write permission and not be a directory.
657 if (mask
& XFS_AT_SIZE
) {
658 if (vap
->va_size
> ip
->i_d
.di_size
) {
659 xfs_igrow_finish(tp
, ip
, vap
->va_size
,
660 !(flags
& ATTR_DMI
));
661 } else if ((vap
->va_size
<= ip
->i_d
.di_size
) ||
662 ((vap
->va_size
== 0) && ip
->i_d
.di_nextents
)) {
664 * signal a sync transaction unless
665 * we're truncating an already unlinked
666 * file on a wsync filesystem
668 code
= xfs_itruncate_finish(&tp
, ip
,
669 (xfs_fsize_t
)vap
->va_size
,
671 ((ip
->i_d
.di_nlink
!= 0 ||
672 !(mp
->m_flags
& XFS_MOUNT_WSYNC
))
677 * Truncated "down", so we're removing references
678 * to old data here - if we now delay flushing for
679 * a long time, we expose ourselves unduly to the
680 * notorious NULL files problem. So, we mark this
681 * vnode and flush it when the file is closed, and
682 * do not wait the usual (long) time for writeout.
687 * Have to do this even if the file's size doesn't change.
689 timeflags
|= XFS_ICHGTIME_MOD
| XFS_ICHGTIME_CHG
;
693 * Change file access modes.
695 if (mask
& XFS_AT_MODE
) {
696 ip
->i_d
.di_mode
&= S_IFMT
;
697 ip
->i_d
.di_mode
|= vap
->va_mode
& ~S_IFMT
;
699 xfs_trans_log_inode (tp
, ip
, XFS_ILOG_CORE
);
700 timeflags
|= XFS_ICHGTIME_CHG
;
704 * Change file ownership. Must be the owner or privileged.
705 * If the system was configured with the "restricted_chown"
706 * option, the owner is not permitted to give away the file,
707 * and can change the group id only to a group of which he
708 * or she is a member.
710 if (mask
& (XFS_AT_UID
|XFS_AT_GID
|XFS_AT_PROJID
)) {
712 * CAP_FSETID overrides the following restrictions:
714 * The set-user-ID and set-group-ID bits of a file will be
715 * cleared upon successful return from chown()
717 if ((ip
->i_d
.di_mode
& (S_ISUID
|S_ISGID
)) &&
718 !capable(CAP_FSETID
)) {
719 ip
->i_d
.di_mode
&= ~(S_ISUID
|S_ISGID
);
723 * Change the ownerships and register quota modifications
724 * in the transaction.
727 if (XFS_IS_UQUOTA_ON(mp
)) {
728 ASSERT(mask
& XFS_AT_UID
);
730 olddquot1
= XFS_QM_DQVOPCHOWN(mp
, tp
, ip
,
731 &ip
->i_udquot
, udqp
);
733 ip
->i_d
.di_uid
= uid
;
736 if (XFS_IS_GQUOTA_ON(mp
)) {
737 ASSERT(!XFS_IS_PQUOTA_ON(mp
));
738 ASSERT(mask
& XFS_AT_GID
);
740 olddquot2
= XFS_QM_DQVOPCHOWN(mp
, tp
, ip
,
741 &ip
->i_gdquot
, gdqp
);
743 ip
->i_d
.di_gid
= gid
;
745 if (iprojid
!= projid
) {
746 if (XFS_IS_PQUOTA_ON(mp
)) {
747 ASSERT(!XFS_IS_GQUOTA_ON(mp
));
748 ASSERT(mask
& XFS_AT_PROJID
);
750 olddquot2
= XFS_QM_DQVOPCHOWN(mp
, tp
, ip
,
751 &ip
->i_gdquot
, gdqp
);
753 ip
->i_d
.di_projid
= projid
;
755 * We may have to rev the inode as well as
756 * the superblock version number since projids didn't
757 * exist before DINODE_VERSION_2 and SB_VERSION_NLINK.
759 if (ip
->i_d
.di_version
== XFS_DINODE_VERSION_1
)
760 xfs_bump_ino_vers2(tp
, ip
);
763 xfs_trans_log_inode (tp
, ip
, XFS_ILOG_CORE
);
764 timeflags
|= XFS_ICHGTIME_CHG
;
769 * Change file access or modified times.
771 if (mask
& (XFS_AT_ATIME
|XFS_AT_MTIME
)) {
772 if (mask
& XFS_AT_ATIME
) {
773 ip
->i_d
.di_atime
.t_sec
= vap
->va_atime
.tv_sec
;
774 ip
->i_d
.di_atime
.t_nsec
= vap
->va_atime
.tv_nsec
;
775 ip
->i_update_core
= 1;
776 timeflags
&= ~XFS_ICHGTIME_ACC
;
778 if (mask
& XFS_AT_MTIME
) {
779 ip
->i_d
.di_mtime
.t_sec
= vap
->va_mtime
.tv_sec
;
780 ip
->i_d
.di_mtime
.t_nsec
= vap
->va_mtime
.tv_nsec
;
781 timeflags
&= ~XFS_ICHGTIME_MOD
;
782 timeflags
|= XFS_ICHGTIME_CHG
;
784 if (tp
&& (flags
& ATTR_UTIME
))
785 xfs_trans_log_inode (tp
, ip
, XFS_ILOG_CORE
);
789 * Change XFS-added attributes.
791 if (mask
& (XFS_AT_EXTSIZE
|XFS_AT_XFLAGS
)) {
792 if (mask
& XFS_AT_EXTSIZE
) {
794 * Converting bytes to fs blocks.
796 ip
->i_d
.di_extsize
= vap
->va_extsize
>>
797 mp
->m_sb
.sb_blocklog
;
799 if (mask
& XFS_AT_XFLAGS
) {
802 /* can't set PREALLOC this way, just preserve it */
803 di_flags
= (ip
->i_d
.di_flags
& XFS_DIFLAG_PREALLOC
);
804 if (vap
->va_xflags
& XFS_XFLAG_IMMUTABLE
)
805 di_flags
|= XFS_DIFLAG_IMMUTABLE
;
806 if (vap
->va_xflags
& XFS_XFLAG_APPEND
)
807 di_flags
|= XFS_DIFLAG_APPEND
;
808 if (vap
->va_xflags
& XFS_XFLAG_SYNC
)
809 di_flags
|= XFS_DIFLAG_SYNC
;
810 if (vap
->va_xflags
& XFS_XFLAG_NOATIME
)
811 di_flags
|= XFS_DIFLAG_NOATIME
;
812 if (vap
->va_xflags
& XFS_XFLAG_NODUMP
)
813 di_flags
|= XFS_DIFLAG_NODUMP
;
814 if (vap
->va_xflags
& XFS_XFLAG_PROJINHERIT
)
815 di_flags
|= XFS_DIFLAG_PROJINHERIT
;
816 if (vap
->va_xflags
& XFS_XFLAG_NODEFRAG
)
817 di_flags
|= XFS_DIFLAG_NODEFRAG
;
818 if ((ip
->i_d
.di_mode
& S_IFMT
) == S_IFDIR
) {
819 if (vap
->va_xflags
& XFS_XFLAG_RTINHERIT
)
820 di_flags
|= XFS_DIFLAG_RTINHERIT
;
821 if (vap
->va_xflags
& XFS_XFLAG_NOSYMLINKS
)
822 di_flags
|= XFS_DIFLAG_NOSYMLINKS
;
823 if (vap
->va_xflags
& XFS_XFLAG_EXTSZINHERIT
)
824 di_flags
|= XFS_DIFLAG_EXTSZINHERIT
;
825 } else if ((ip
->i_d
.di_mode
& S_IFMT
) == S_IFREG
) {
826 if (vap
->va_xflags
& XFS_XFLAG_REALTIME
) {
827 di_flags
|= XFS_DIFLAG_REALTIME
;
828 ip
->i_iocore
.io_flags
|= XFS_IOCORE_RT
;
830 ip
->i_iocore
.io_flags
&= ~XFS_IOCORE_RT
;
832 if (vap
->va_xflags
& XFS_XFLAG_EXTSIZE
)
833 di_flags
|= XFS_DIFLAG_EXTSIZE
;
835 ip
->i_d
.di_flags
= di_flags
;
837 xfs_trans_log_inode(tp
, ip
, XFS_ILOG_CORE
);
838 timeflags
|= XFS_ICHGTIME_CHG
;
842 * Change file inode change time only if XFS_AT_CTIME set
843 * AND we have been called by a DMI function.
846 if ( (flags
& ATTR_DMI
) && (mask
& XFS_AT_CTIME
) ) {
847 ip
->i_d
.di_ctime
.t_sec
= vap
->va_ctime
.tv_sec
;
848 ip
->i_d
.di_ctime
.t_nsec
= vap
->va_ctime
.tv_nsec
;
849 ip
->i_update_core
= 1;
850 timeflags
&= ~XFS_ICHGTIME_CHG
;
854 * Send out timestamp changes that need to be set to the
855 * current time. Not done when called by a DMI function.
857 if (timeflags
&& !(flags
& ATTR_DMI
))
858 xfs_ichgtime(ip
, timeflags
);
860 XFS_STATS_INC(xs_ig_attrchg
);
863 * If this is a synchronous mount, make sure that the
864 * transaction goes to disk before returning to the user.
865 * This is slightly sub-optimal in that truncates require
866 * two sync transactions instead of one for wsync filesystems.
867 * One for the truncate and one for the timestamps since we
868 * don't want to change the timestamps unless we're sure the
869 * truncate worked. Truncates are less than 1% of the laddis
870 * mix so this probably isn't worth the trouble to optimize.
874 if (mp
->m_flags
& XFS_MOUNT_WSYNC
)
875 xfs_trans_set_sync(tp
);
877 code
= xfs_trans_commit(tp
, commit_flags
, NULL
);
881 * If the (regular) file's mandatory locking mode changed, then
882 * notify the vnode. We do this under the inode lock to prevent
883 * racing calls to vop_vnode_change.
885 mandlock_after
= MANDLOCK(vp
, ip
->i_d
.di_mode
);
886 if (mandlock_before
!= mandlock_after
) {
887 bhv_vop_vnode_change(vp
, VCHANGE_FLAGS_ENF_LOCKING
,
891 xfs_iunlock(ip
, lock_flags
);
894 * Release any dquot(s) the inode had kept before chown.
896 XFS_QM_DQRELE(mp
, olddquot1
);
897 XFS_QM_DQRELE(mp
, olddquot2
);
898 XFS_QM_DQRELE(mp
, udqp
);
899 XFS_QM_DQRELE(mp
, gdqp
);
905 if (DM_EVENT_ENABLED(vp
->v_vfsp
, ip
, DM_EVENT_ATTRIBUTE
) &&
906 !(flags
& ATTR_DMI
)) {
907 (void) XFS_SEND_NAMESP(mp
, DM_EVENT_ATTRIBUTE
, vp
, DM_RIGHT_NULL
,
908 NULL
, DM_RIGHT_NULL
, NULL
, NULL
,
909 0, 0, AT_DELAY_FLAG(flags
));
914 commit_flags
|= XFS_TRANS_ABORT
;
917 XFS_QM_DQRELE(mp
, udqp
);
918 XFS_QM_DQRELE(mp
, gdqp
);
920 xfs_trans_cancel(tp
, commit_flags
);
922 if (lock_flags
!= 0) {
923 xfs_iunlock(ip
, lock_flags
);
931 * Null conversion from vnode mode bits to inode mode bits, as in efs.
942 vn_trace_entry(BHV_TO_VNODE(bdp
), __FUNCTION__
,
943 (inst_t
*)__return_address
);
945 ip
= XFS_BHVTOI(bdp
);
946 xfs_ilock(ip
, XFS_ILOCK_SHARED
);
947 error
= xfs_iaccess(ip
, mode
, credp
);
948 xfs_iunlock(ip
, XFS_ILOCK_SHARED
);
954 * The maximum pathlen is 1024 bytes. Since the minimum file system
955 * blocksize is 512 bytes, we can get a max of 2 extents back from
958 #define SYMLINK_MAPS 2
979 xfs_bmbt_irec_t mval
[SYMLINK_MAPS
];
985 vp
= BHV_TO_VNODE(bdp
);
986 vn_trace_entry(vp
, __FUNCTION__
, (inst_t
*)__return_address
);
988 ip
= XFS_BHVTOI(bdp
);
991 if (XFS_FORCED_SHUTDOWN(mp
))
992 return XFS_ERROR(EIO
);
994 xfs_ilock(ip
, XFS_ILOCK_SHARED
);
996 ASSERT((ip
->i_d
.di_mode
& S_IFMT
) == S_IFLNK
);
998 offset
= uiop
->uio_offset
;
999 count
= uiop
->uio_resid
;
1002 error
= XFS_ERROR(EINVAL
);
1011 * See if the symlink is stored inline.
1013 pathlen
= (int)ip
->i_d
.di_size
;
1015 if (ip
->i_df
.if_flags
& XFS_IFINLINE
) {
1016 error
= uio_read(ip
->i_df
.if_u1
.if_data
, pathlen
, uiop
);
1020 * Symlink not inline. Call bmap to get it in.
1022 nmaps
= SYMLINK_MAPS
;
1024 error
= xfs_bmapi(NULL
, ip
, 0, XFS_B_TO_FSB(mp
, pathlen
),
1025 0, NULL
, 0, mval
, &nmaps
, NULL
, NULL
);
1031 for (n
= 0; n
< nmaps
; n
++) {
1032 d
= XFS_FSB_TO_DADDR(mp
, mval
[n
].br_startblock
);
1033 byte_cnt
= XFS_FSB_TO_B(mp
, mval
[n
].br_blockcount
);
1034 bp
= xfs_buf_read(mp
->m_ddev_targp
, d
,
1035 BTOBB(byte_cnt
), 0);
1036 error
= XFS_BUF_GETERROR(bp
);
1038 xfs_ioerror_alert("xfs_readlink",
1039 ip
->i_mount
, bp
, XFS_BUF_ADDR(bp
));
1043 if (pathlen
< byte_cnt
)
1045 pathlen
-= byte_cnt
;
1047 error
= uio_read(XFS_BUF_PTR(bp
), byte_cnt
, uiop
);
1054 xfs_iunlock(ip
, XFS_ILOCK_SHARED
);
1062 * This is called to sync the inode and its data out to disk.
1063 * We need to hold the I/O lock while flushing the data, and
1064 * the inode lock while flushing the inode. The inode lock CANNOT
1065 * be held while flushing the data, so acquire after we're done
1079 int log_flushed
= 0, changed
= 1;
1081 vn_trace_entry(BHV_TO_VNODE(bdp
),
1082 __FUNCTION__
, (inst_t
*)__return_address
);
1084 ip
= XFS_BHVTOI(bdp
);
1086 ASSERT(start
>= 0 && stop
>= -1);
1088 if (XFS_FORCED_SHUTDOWN(ip
->i_mount
))
1089 return XFS_ERROR(EIO
);
1092 * We always need to make sure that the required inode state
1093 * is safe on disk. The vnode might be clean but because
1094 * of committed transactions that haven't hit the disk yet.
1095 * Likewise, there could be unflushed non-transactional
1096 * changes to the inode core that have to go to disk.
1098 * The following code depends on one assumption: that
1099 * any transaction that changes an inode logs the core
1100 * because it has to change some field in the inode core
1101 * (typically nextents or nblocks). That assumption
1102 * implies that any transactions against an inode will
1103 * catch any non-transactional updates. If inode-altering
1104 * transactions exist that violate this assumption, the
1105 * code breaks. Right now, it figures that if the involved
1106 * update_* field is clear and the inode is unpinned, the
1107 * inode is clean. Either it's been flushed or it's been
1108 * committed and the commit has hit the disk unpinning the inode.
1109 * (Note that xfs_inode_item_format() called at commit clears
1110 * the update_* fields.)
1112 xfs_ilock(ip
, XFS_ILOCK_SHARED
);
1114 /* If we are flushing data then we care about update_size
1115 * being set, otherwise we care about update_core
1117 if ((flag
& FSYNC_DATA
) ?
1118 (ip
->i_update_size
== 0) :
1119 (ip
->i_update_core
== 0)) {
1121 * Timestamps/size haven't changed since last inode
1122 * flush or inode transaction commit. That means
1123 * either nothing got written or a transaction
1124 * committed which caught the updates. If the
1125 * latter happened and the transaction hasn't
1126 * hit the disk yet, the inode will be still
1127 * be pinned. If it is, force the log.
1130 xfs_iunlock(ip
, XFS_ILOCK_SHARED
);
1132 if (xfs_ipincount(ip
)) {
1133 _xfs_log_force(ip
->i_mount
, (xfs_lsn_t
)0,
1135 ((flag
& FSYNC_WAIT
)
1136 ? XFS_LOG_SYNC
: 0),
1140 * If the inode is not pinned and nothing
1141 * has changed we don't need to flush the
1149 * Kick off a transaction to log the inode
1150 * core to get the updates. Make it
1151 * sync if FSYNC_WAIT is passed in (which
1152 * is done by everybody but specfs). The
1153 * sync transaction will also force the log.
1155 xfs_iunlock(ip
, XFS_ILOCK_SHARED
);
1156 tp
= xfs_trans_alloc(ip
->i_mount
, XFS_TRANS_FSYNC_TS
);
1157 if ((error
= xfs_trans_reserve(tp
, 0,
1158 XFS_FSYNC_TS_LOG_RES(ip
->i_mount
),
1160 xfs_trans_cancel(tp
, 0);
1163 xfs_ilock(ip
, XFS_ILOCK_EXCL
);
1166 * Note - it's possible that we might have pushed
1167 * ourselves out of the way during trans_reserve
1168 * which would flush the inode. But there's no
1169 * guarantee that the inode buffer has actually
1170 * gone out yet (it's delwri). Plus the buffer
1171 * could be pinned anyway if it's part of an
1172 * inode in another recent transaction. So we
1173 * play it safe and fire off the transaction anyway.
1175 xfs_trans_ijoin(tp
, ip
, XFS_ILOCK_EXCL
);
1176 xfs_trans_ihold(tp
, ip
);
1177 xfs_trans_log_inode(tp
, ip
, XFS_ILOG_CORE
);
1178 if (flag
& FSYNC_WAIT
)
1179 xfs_trans_set_sync(tp
);
1180 error
= _xfs_trans_commit(tp
, 0, NULL
, &log_flushed
);
1182 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
1185 if ((ip
->i_mount
->m_flags
& XFS_MOUNT_BARRIER
) && changed
) {
1187 * If the log write didn't issue an ordered tag we need
1188 * to flush the disk cache for the data device now.
1191 xfs_blkdev_issue_flush(ip
->i_mount
->m_ddev_targp
);
1194 * If this inode is on the RT dev we need to flush that
1197 if (ip
->i_d
.di_flags
& XFS_DIFLAG_REALTIME
)
1198 xfs_blkdev_issue_flush(ip
->i_mount
->m_rtdev_targp
);
1205 * This is called by xfs_inactive to free any blocks beyond eof,
1206 * when the link count isn't zero.
1209 xfs_inactive_free_eofblocks(
1215 xfs_fileoff_t end_fsb
;
1216 xfs_fileoff_t last_fsb
;
1217 xfs_filblks_t map_len
;
1219 xfs_bmbt_irec_t imap
;
1222 * Figure out if there are any blocks beyond the end
1223 * of the file. If not, then there is nothing to do.
1225 end_fsb
= XFS_B_TO_FSB(mp
, ((xfs_ufsize_t
)ip
->i_d
.di_size
));
1226 last_fsb
= XFS_B_TO_FSB(mp
, (xfs_ufsize_t
)XFS_MAXIOFFSET(mp
));
1227 map_len
= last_fsb
- end_fsb
;
1232 xfs_ilock(ip
, XFS_ILOCK_SHARED
);
1233 error
= XFS_BMAPI(mp
, NULL
, &ip
->i_iocore
, end_fsb
, map_len
, 0,
1234 NULL
, 0, &imap
, &nimaps
, NULL
, NULL
);
1235 xfs_iunlock(ip
, XFS_ILOCK_SHARED
);
1237 if (!error
&& (nimaps
!= 0) &&
1238 (imap
.br_startblock
!= HOLESTARTBLOCK
||
1239 ip
->i_delayed_blks
)) {
1241 * Attach the dquots to the inode up front.
1243 if ((error
= XFS_QM_DQATTACH(mp
, ip
, 0)))
1247 * There are blocks after the end of file.
1248 * Free them up now by truncating the file to
1251 tp
= xfs_trans_alloc(mp
, XFS_TRANS_INACTIVE
);
1254 * Do the xfs_itruncate_start() call before
1255 * reserving any log space because
1256 * itruncate_start will call into the buffer
1257 * cache and we can't
1258 * do that within a transaction.
1260 xfs_ilock(ip
, XFS_IOLOCK_EXCL
);
1261 xfs_itruncate_start(ip
, XFS_ITRUNC_DEFINITE
,
1264 error
= xfs_trans_reserve(tp
, 0,
1265 XFS_ITRUNCATE_LOG_RES(mp
),
1266 0, XFS_TRANS_PERM_LOG_RES
,
1267 XFS_ITRUNCATE_LOG_COUNT
);
1269 ASSERT(XFS_FORCED_SHUTDOWN(mp
));
1270 xfs_trans_cancel(tp
, 0);
1271 xfs_iunlock(ip
, XFS_IOLOCK_EXCL
);
1275 xfs_ilock(ip
, XFS_ILOCK_EXCL
);
1276 xfs_trans_ijoin(tp
, ip
,
1279 xfs_trans_ihold(tp
, ip
);
1281 error
= xfs_itruncate_finish(&tp
, ip
,
1286 * If we get an error at this point we
1287 * simply don't bother truncating the file.
1290 xfs_trans_cancel(tp
,
1291 (XFS_TRANS_RELEASE_LOG_RES
|
1294 error
= xfs_trans_commit(tp
,
1295 XFS_TRANS_RELEASE_LOG_RES
,
1298 xfs_iunlock(ip
, XFS_IOLOCK_EXCL
| XFS_ILOCK_EXCL
);
1304 * Free a symlink that has blocks associated with it.
1307 xfs_inactive_symlink_rmt(
1315 xfs_fsblock_t first_block
;
1316 xfs_bmap_free_t free_list
;
1319 xfs_bmbt_irec_t mval
[SYMLINK_MAPS
];
1327 ASSERT(ip
->i_d
.di_size
> XFS_IFORK_DSIZE(ip
));
1329 * We're freeing a symlink that has some
1330 * blocks allocated to it. Free the
1331 * blocks here. We know that we've got
1332 * either 1 or 2 extents and that we can
1333 * free them all in one bunmapi call.
1335 ASSERT(ip
->i_d
.di_nextents
> 0 && ip
->i_d
.di_nextents
<= 2);
1336 if ((error
= xfs_trans_reserve(tp
, 0, XFS_ITRUNCATE_LOG_RES(mp
), 0,
1337 XFS_TRANS_PERM_LOG_RES
, XFS_ITRUNCATE_LOG_COUNT
))) {
1338 ASSERT(XFS_FORCED_SHUTDOWN(mp
));
1339 xfs_trans_cancel(tp
, 0);
1344 * Lock the inode, fix the size, and join it to the transaction.
1345 * Hold it so in the normal path, we still have it locked for
1346 * the second transaction. In the error paths we need it
1347 * held so the cancel won't rele it, see below.
1349 xfs_ilock(ip
, XFS_IOLOCK_EXCL
| XFS_ILOCK_EXCL
);
1350 size
= (int)ip
->i_d
.di_size
;
1351 ip
->i_d
.di_size
= 0;
1352 xfs_trans_ijoin(tp
, ip
, XFS_ILOCK_EXCL
| XFS_IOLOCK_EXCL
);
1353 xfs_trans_ihold(tp
, ip
);
1354 xfs_trans_log_inode(tp
, ip
, XFS_ILOG_CORE
);
1356 * Find the block(s) so we can inval and unmap them.
1359 XFS_BMAP_INIT(&free_list
, &first_block
);
1360 nmaps
= ARRAY_SIZE(mval
);
1361 if ((error
= xfs_bmapi(tp
, ip
, 0, XFS_B_TO_FSB(mp
, size
),
1362 XFS_BMAPI_METADATA
, &first_block
, 0, mval
, &nmaps
,
1366 * Invalidate the block(s).
1368 for (i
= 0; i
< nmaps
; i
++) {
1369 bp
= xfs_trans_get_buf(tp
, mp
->m_ddev_targp
,
1370 XFS_FSB_TO_DADDR(mp
, mval
[i
].br_startblock
),
1371 XFS_FSB_TO_BB(mp
, mval
[i
].br_blockcount
), 0);
1372 xfs_trans_binval(tp
, bp
);
1375 * Unmap the dead block(s) to the free_list.
1377 if ((error
= xfs_bunmapi(tp
, ip
, 0, size
, XFS_BMAPI_METADATA
, nmaps
,
1378 &first_block
, &free_list
, NULL
, &done
)))
1382 * Commit the first transaction. This logs the EFI and the inode.
1384 if ((error
= xfs_bmap_finish(&tp
, &free_list
, first_block
, &committed
)))
1387 * The transaction must have been committed, since there were
1388 * actually extents freed by xfs_bunmapi. See xfs_bmap_finish.
1389 * The new tp has the extent freeing and EFDs.
1393 * The first xact was committed, so add the inode to the new one.
1394 * Mark it dirty so it will be logged and moved forward in the log as
1395 * part of every commit.
1397 xfs_trans_ijoin(tp
, ip
, XFS_ILOCK_EXCL
| XFS_IOLOCK_EXCL
);
1398 xfs_trans_ihold(tp
, ip
);
1399 xfs_trans_log_inode(tp
, ip
, XFS_ILOG_CORE
);
1401 * Get a new, empty transaction to return to our caller.
1403 ntp
= xfs_trans_dup(tp
);
1405 * Commit the transaction containing extent freeing and EFDs.
1406 * If we get an error on the commit here or on the reserve below,
1407 * we need to unlock the inode since the new transaction doesn't
1408 * have the inode attached.
1410 error
= xfs_trans_commit(tp
, 0, NULL
);
1413 ASSERT(XFS_FORCED_SHUTDOWN(mp
));
1417 * Remove the memory for extent descriptions (just bookkeeping).
1419 if (ip
->i_df
.if_bytes
)
1420 xfs_idata_realloc(ip
, -ip
->i_df
.if_bytes
, XFS_DATA_FORK
);
1421 ASSERT(ip
->i_df
.if_bytes
== 0);
1423 * Put an itruncate log reservation in the new transaction
1426 if ((error
= xfs_trans_reserve(tp
, 0, XFS_ITRUNCATE_LOG_RES(mp
), 0,
1427 XFS_TRANS_PERM_LOG_RES
, XFS_ITRUNCATE_LOG_COUNT
))) {
1428 ASSERT(XFS_FORCED_SHUTDOWN(mp
));
1432 * Return with the inode locked but not joined to the transaction.
1438 xfs_bmap_cancel(&free_list
);
1441 * Have to come here with the inode locked and either
1442 * (held and in the transaction) or (not in the transaction).
1443 * If the inode isn't held then cancel would iput it, but
1444 * that's wrong since this is inactive and the vnode ref
1445 * count is 0 already.
1446 * Cancel won't do anything to the inode if held, but it still
1447 * needs to be locked until the cancel is done, if it was
1448 * joined to the transaction.
1450 xfs_trans_cancel(tp
, XFS_TRANS_RELEASE_LOG_RES
| XFS_TRANS_ABORT
);
1451 xfs_iunlock(ip
, XFS_IOLOCK_EXCL
| XFS_ILOCK_EXCL
);
1458 xfs_inactive_symlink_local(
1464 ASSERT(ip
->i_d
.di_size
<= XFS_IFORK_DSIZE(ip
));
1466 * We're freeing a symlink which fit into
1467 * the inode. Just free the memory used
1468 * to hold the old symlink.
1470 error
= xfs_trans_reserve(*tpp
, 0,
1471 XFS_ITRUNCATE_LOG_RES(ip
->i_mount
),
1472 0, XFS_TRANS_PERM_LOG_RES
,
1473 XFS_ITRUNCATE_LOG_COUNT
);
1476 xfs_trans_cancel(*tpp
, 0);
1480 xfs_ilock(ip
, XFS_ILOCK_EXCL
| XFS_IOLOCK_EXCL
);
1483 * Zero length symlinks _can_ exist.
1485 if (ip
->i_df
.if_bytes
> 0) {
1486 xfs_idata_realloc(ip
,
1487 -(ip
->i_df
.if_bytes
),
1489 ASSERT(ip
->i_df
.if_bytes
== 0);
1503 ASSERT(ismrlocked(&ip
->i_iolock
, MR_UPDATE
));
1506 ASSERT(ip
->i_d
.di_forkoff
!= 0);
1507 xfs_trans_commit(tp
, XFS_TRANS_RELEASE_LOG_RES
, NULL
);
1508 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
1510 error
= xfs_attr_inactive(ip
);
1513 xfs_iunlock(ip
, XFS_IOLOCK_EXCL
);
1514 return error
; /* goto out */
1517 tp
= xfs_trans_alloc(mp
, XFS_TRANS_INACTIVE
);
1518 error
= xfs_trans_reserve(tp
, 0,
1519 XFS_IFREE_LOG_RES(mp
),
1520 0, XFS_TRANS_PERM_LOG_RES
,
1521 XFS_INACTIVE_LOG_COUNT
);
1523 ASSERT(XFS_FORCED_SHUTDOWN(mp
));
1524 xfs_trans_cancel(tp
, 0);
1526 xfs_iunlock(ip
, XFS_IOLOCK_EXCL
);
1530 xfs_ilock(ip
, XFS_ILOCK_EXCL
);
1531 xfs_trans_ijoin(tp
, ip
, XFS_IOLOCK_EXCL
| XFS_ILOCK_EXCL
);
1532 xfs_trans_ihold(tp
, ip
);
1533 xfs_idestroy_fork(ip
, XFS_ATTR_FORK
);
1535 ASSERT(ip
->i_d
.di_anextents
== 0);
1550 vp
= BHV_TO_VNODE(bdp
);
1551 ip
= XFS_BHVTOI(bdp
);
1554 if (!VN_ISREG(vp
) || (ip
->i_d
.di_mode
== 0))
1557 /* If this is a read-only mount, don't do this (would generate I/O) */
1558 if (vp
->v_vfsp
->vfs_flag
& VFS_RDONLY
)
1561 #ifdef HAVE_REFCACHE
1562 /* If we are in the NFS reference cache then don't do this now */
1567 if (ip
->i_d
.di_nlink
!= 0) {
1568 if ((((ip
->i_d
.di_mode
& S_IFMT
) == S_IFREG
) &&
1569 ((ip
->i_d
.di_size
> 0) || (VN_CACHED(vp
) > 0 ||
1570 ip
->i_delayed_blks
> 0)) &&
1571 (ip
->i_df
.if_flags
& XFS_IFEXTENTS
)) &&
1572 (!(ip
->i_d
.di_flags
&
1573 (XFS_DIFLAG_PREALLOC
| XFS_DIFLAG_APPEND
)))) {
1574 if ((error
= xfs_inactive_free_eofblocks(mp
, ip
)))
1576 /* Update linux inode block count after free above */
1577 vn_to_inode(vp
)->i_blocks
= XFS_FSB_TO_BB(mp
,
1578 ip
->i_d
.di_nblocks
+ ip
->i_delayed_blks
);
1588 * This is called when the vnode reference count for the vnode
1589 * goes to zero. If the file has been unlinked, then it must
1590 * now be truncated. Also, we clear all of the read-ahead state
1591 * kept for the inode here since the file is now closed.
1600 xfs_bmap_free_t free_list
;
1601 xfs_fsblock_t first_block
;
1608 vp
= BHV_TO_VNODE(bdp
);
1609 vn_trace_entry(vp
, __FUNCTION__
, (inst_t
*)__return_address
);
1611 ip
= XFS_BHVTOI(bdp
);
1614 * If the inode is already free, then there can be nothing
1617 if (ip
->i_d
.di_mode
== 0 || VN_BAD(vp
)) {
1618 ASSERT(ip
->i_df
.if_real_bytes
== 0);
1619 ASSERT(ip
->i_df
.if_broot_bytes
== 0);
1620 return VN_INACTIVE_CACHE
;
1624 * Only do a truncate if it's a regular file with
1625 * some actual space in it. It's OK to look at the
1626 * inode's fields without the lock because we're the
1627 * only one with a reference to the inode.
1629 truncate
= ((ip
->i_d
.di_nlink
== 0) &&
1630 ((ip
->i_d
.di_size
!= 0) || (ip
->i_d
.di_nextents
> 0) ||
1631 (ip
->i_delayed_blks
> 0)) &&
1632 ((ip
->i_d
.di_mode
& S_IFMT
) == S_IFREG
));
1636 if (ip
->i_d
.di_nlink
== 0 &&
1637 DM_EVENT_ENABLED(vp
->v_vfsp
, ip
, DM_EVENT_DESTROY
)) {
1638 (void) XFS_SEND_DESTROY(mp
, vp
, DM_RIGHT_NULL
);
1643 /* If this is a read-only mount, don't do this (would generate I/O) */
1644 if (vp
->v_vfsp
->vfs_flag
& VFS_RDONLY
)
1647 if (ip
->i_d
.di_nlink
!= 0) {
1648 if ((((ip
->i_d
.di_mode
& S_IFMT
) == S_IFREG
) &&
1649 ((ip
->i_d
.di_size
> 0) || (VN_CACHED(vp
) > 0 ||
1650 ip
->i_delayed_blks
> 0)) &&
1651 (ip
->i_df
.if_flags
& XFS_IFEXTENTS
) &&
1652 (!(ip
->i_d
.di_flags
&
1653 (XFS_DIFLAG_PREALLOC
| XFS_DIFLAG_APPEND
)) ||
1654 (ip
->i_delayed_blks
!= 0)))) {
1655 if ((error
= xfs_inactive_free_eofblocks(mp
, ip
)))
1656 return VN_INACTIVE_CACHE
;
1657 /* Update linux inode block count after free above */
1658 vn_to_inode(vp
)->i_blocks
= XFS_FSB_TO_BB(mp
,
1659 ip
->i_d
.di_nblocks
+ ip
->i_delayed_blks
);
1664 ASSERT(ip
->i_d
.di_nlink
== 0);
1666 if ((error
= XFS_QM_DQATTACH(mp
, ip
, 0)))
1667 return VN_INACTIVE_CACHE
;
1669 tp
= xfs_trans_alloc(mp
, XFS_TRANS_INACTIVE
);
1672 * Do the xfs_itruncate_start() call before
1673 * reserving any log space because itruncate_start
1674 * will call into the buffer cache and we can't
1675 * do that within a transaction.
1677 xfs_ilock(ip
, XFS_IOLOCK_EXCL
);
1679 xfs_itruncate_start(ip
, XFS_ITRUNC_DEFINITE
, 0);
1681 error
= xfs_trans_reserve(tp
, 0,
1682 XFS_ITRUNCATE_LOG_RES(mp
),
1683 0, XFS_TRANS_PERM_LOG_RES
,
1684 XFS_ITRUNCATE_LOG_COUNT
);
1686 /* Don't call itruncate_cleanup */
1687 ASSERT(XFS_FORCED_SHUTDOWN(mp
));
1688 xfs_trans_cancel(tp
, 0);
1689 xfs_iunlock(ip
, XFS_IOLOCK_EXCL
);
1690 return VN_INACTIVE_CACHE
;
1693 xfs_ilock(ip
, XFS_ILOCK_EXCL
);
1694 xfs_trans_ijoin(tp
, ip
, XFS_IOLOCK_EXCL
| XFS_ILOCK_EXCL
);
1695 xfs_trans_ihold(tp
, ip
);
1698 * normally, we have to run xfs_itruncate_finish sync.
1699 * But if filesystem is wsync and we're in the inactive
1700 * path, then we know that nlink == 0, and that the
1701 * xaction that made nlink == 0 is permanently committed
1702 * since xfs_remove runs as a synchronous transaction.
1704 error
= xfs_itruncate_finish(&tp
, ip
, 0, XFS_DATA_FORK
,
1705 (!(mp
->m_flags
& XFS_MOUNT_WSYNC
) ? 1 : 0));
1708 xfs_trans_cancel(tp
,
1709 XFS_TRANS_RELEASE_LOG_RES
| XFS_TRANS_ABORT
);
1710 xfs_iunlock(ip
, XFS_IOLOCK_EXCL
| XFS_ILOCK_EXCL
);
1711 return VN_INACTIVE_CACHE
;
1713 } else if ((ip
->i_d
.di_mode
& S_IFMT
) == S_IFLNK
) {
1716 * If we get an error while cleaning up a
1717 * symlink we bail out.
1719 error
= (ip
->i_d
.di_size
> XFS_IFORK_DSIZE(ip
)) ?
1720 xfs_inactive_symlink_rmt(ip
, &tp
) :
1721 xfs_inactive_symlink_local(ip
, &tp
);
1725 return VN_INACTIVE_CACHE
;
1728 xfs_trans_ijoin(tp
, ip
, XFS_IOLOCK_EXCL
| XFS_ILOCK_EXCL
);
1729 xfs_trans_ihold(tp
, ip
);
1731 error
= xfs_trans_reserve(tp
, 0,
1732 XFS_IFREE_LOG_RES(mp
),
1733 0, XFS_TRANS_PERM_LOG_RES
,
1734 XFS_INACTIVE_LOG_COUNT
);
1736 ASSERT(XFS_FORCED_SHUTDOWN(mp
));
1737 xfs_trans_cancel(tp
, 0);
1738 return VN_INACTIVE_CACHE
;
1741 xfs_ilock(ip
, XFS_ILOCK_EXCL
| XFS_IOLOCK_EXCL
);
1742 xfs_trans_ijoin(tp
, ip
, XFS_IOLOCK_EXCL
| XFS_ILOCK_EXCL
);
1743 xfs_trans_ihold(tp
, ip
);
1747 * If there are attributes associated with the file
1748 * then blow them away now. The code calls a routine
1749 * that recursively deconstructs the attribute fork.
1750 * We need to just commit the current transaction
1751 * because we can't use it for xfs_attr_inactive().
1753 if (ip
->i_d
.di_anextents
> 0) {
1754 error
= xfs_inactive_attrs(ip
, &tp
);
1756 * If we got an error, the transaction is already
1757 * cancelled, and the inode is unlocked. Just get out.
1760 return VN_INACTIVE_CACHE
;
1761 } else if (ip
->i_afp
) {
1762 xfs_idestroy_fork(ip
, XFS_ATTR_FORK
);
1768 XFS_BMAP_INIT(&free_list
, &first_block
);
1769 error
= xfs_ifree(tp
, ip
, &free_list
);
1772 * If we fail to free the inode, shut down. The cancel
1773 * might do that, we need to make sure. Otherwise the
1774 * inode might be lost for a long time or forever.
1776 if (!XFS_FORCED_SHUTDOWN(mp
)) {
1778 "xfs_inactive: xfs_ifree() returned an error = %d on %s",
1779 error
, mp
->m_fsname
);
1780 xfs_force_shutdown(mp
, SHUTDOWN_META_IO_ERROR
);
1782 xfs_trans_cancel(tp
, XFS_TRANS_RELEASE_LOG_RES
|XFS_TRANS_ABORT
);
1785 * Credit the quota account(s). The inode is gone.
1787 XFS_TRANS_MOD_DQUOT_BYINO(mp
, tp
, ip
, XFS_TRANS_DQ_ICOUNT
, -1);
1790 * Just ignore errors at this point. There is
1791 * nothing we can do except to try to keep going.
1793 (void) xfs_bmap_finish(&tp
, &free_list
, first_block
,
1795 (void) xfs_trans_commit(tp
, XFS_TRANS_RELEASE_LOG_RES
, NULL
);
1798 * Release the dquots held by inode, if any.
1800 XFS_QM_DQDETACH(mp
, ip
);
1802 xfs_iunlock(ip
, XFS_IOLOCK_EXCL
| XFS_ILOCK_EXCL
);
1805 return VN_INACTIVE_CACHE
;
1814 bhv_desc_t
*dir_bdp
,
1815 bhv_vname_t
*dentry
,
1821 xfs_inode_t
*dp
, *ip
;
1825 bhv_vnode_t
*dir_vp
;
1827 dir_vp
= BHV_TO_VNODE(dir_bdp
);
1828 vn_trace_entry(dir_vp
, __FUNCTION__
, (inst_t
*)__return_address
);
1830 dp
= XFS_BHVTOI(dir_bdp
);
1832 if (XFS_FORCED_SHUTDOWN(dp
->i_mount
))
1833 return XFS_ERROR(EIO
);
1835 lock_mode
= xfs_ilock_map_shared(dp
);
1836 error
= xfs_dir_lookup_int(dir_bdp
, lock_mode
, dentry
, &e_inum
, &ip
);
1838 *vpp
= XFS_ITOV(ip
);
1841 xfs_iunlock_map_shared(dp
, lock_mode
);
1847 * xfs_create (create a new file).
1851 bhv_desc_t
*dir_bdp
,
1852 bhv_vname_t
*dentry
,
1857 char *name
= VNAME(dentry
);
1858 bhv_vnode_t
*dir_vp
;
1859 xfs_inode_t
*dp
, *ip
;
1860 bhv_vnode_t
*vp
= NULL
;
1865 xfs_bmap_free_t free_list
;
1866 xfs_fsblock_t first_block
;
1867 boolean_t dp_joined_to_trans
;
1868 int dm_event_sent
= 0;
1872 struct xfs_dquot
*udqp
, *gdqp
;
1878 dir_vp
= BHV_TO_VNODE(dir_bdp
);
1879 vn_trace_entry(dir_vp
, __FUNCTION__
, (inst_t
*)__return_address
);
1881 dp
= XFS_BHVTOI(dir_bdp
);
1884 dm_di_mode
= vap
->va_mode
;
1885 namelen
= VNAMELEN(dentry
);
1887 if (DM_EVENT_ENABLED(dir_vp
->v_vfsp
, dp
, DM_EVENT_CREATE
)) {
1888 error
= XFS_SEND_NAMESP(mp
, DM_EVENT_CREATE
,
1889 dir_vp
, DM_RIGHT_NULL
, NULL
,
1890 DM_RIGHT_NULL
, name
, NULL
,
1898 if (XFS_FORCED_SHUTDOWN(mp
))
1899 return XFS_ERROR(EIO
);
1901 /* Return through std_return after this point. */
1904 if (dp
->i_d
.di_flags
& XFS_DIFLAG_PROJINHERIT
)
1905 prid
= dp
->i_d
.di_projid
;
1906 else if (vap
->va_mask
& XFS_AT_PROJID
)
1907 prid
= (xfs_prid_t
)vap
->va_projid
;
1909 prid
= (xfs_prid_t
)dfltprid
;
1912 * Make sure that we have allocated dquot(s) on disk.
1914 error
= XFS_QM_DQVOPALLOC(mp
, dp
,
1915 current_fsuid(credp
), current_fsgid(credp
), prid
,
1916 XFS_QMOPT_QUOTALL
|XFS_QMOPT_INHERIT
, &udqp
, &gdqp
);
1921 dp_joined_to_trans
= B_FALSE
;
1923 tp
= xfs_trans_alloc(mp
, XFS_TRANS_CREATE
);
1924 cancel_flags
= XFS_TRANS_RELEASE_LOG_RES
;
1925 resblks
= XFS_CREATE_SPACE_RES(mp
, namelen
);
1927 * Initially assume that the file does not exist and
1928 * reserve the resources for that case. If that is not
1929 * the case we'll drop the one we have and get a more
1930 * appropriate transaction later.
1932 error
= xfs_trans_reserve(tp
, resblks
, XFS_CREATE_LOG_RES(mp
), 0,
1933 XFS_TRANS_PERM_LOG_RES
, XFS_CREATE_LOG_COUNT
);
1934 if (error
== ENOSPC
) {
1936 error
= xfs_trans_reserve(tp
, 0, XFS_CREATE_LOG_RES(mp
), 0,
1937 XFS_TRANS_PERM_LOG_RES
, XFS_CREATE_LOG_COUNT
);
1945 xfs_ilock(dp
, XFS_ILOCK_EXCL
);
1947 XFS_BMAP_INIT(&free_list
, &first_block
);
1952 * Reserve disk quota and the inode.
1954 error
= XFS_TRANS_RESERVE_QUOTA(mp
, tp
, udqp
, gdqp
, resblks
, 1, 0);
1958 if (resblks
== 0 && (error
= xfs_dir_canenter(tp
, dp
, name
, namelen
)))
1960 rdev
= (vap
->va_mask
& XFS_AT_RDEV
) ? vap
->va_rdev
: 0;
1961 error
= xfs_dir_ialloc(&tp
, dp
, vap
->va_mode
, 1,
1962 rdev
, credp
, prid
, resblks
> 0,
1965 if (error
== ENOSPC
)
1972 * At this point, we've gotten a newly allocated inode.
1973 * It is locked (and joined to the transaction).
1976 ASSERT(ismrlocked (&ip
->i_lock
, MR_UPDATE
));
1979 * Now we join the directory inode to the transaction.
1980 * We do not do it earlier because xfs_dir_ialloc
1981 * might commit the previous transaction (and release
1986 xfs_trans_ijoin(tp
, dp
, XFS_ILOCK_EXCL
);
1987 dp_joined_to_trans
= B_TRUE
;
1989 error
= xfs_dir_createname(tp
, dp
, name
, namelen
, ip
->i_ino
,
1990 &first_block
, &free_list
, resblks
?
1991 resblks
- XFS_IALLOC_SPACE_RES(mp
) : 0);
1993 ASSERT(error
!= ENOSPC
);
1996 xfs_ichgtime(dp
, XFS_ICHGTIME_MOD
| XFS_ICHGTIME_CHG
);
1997 xfs_trans_log_inode(tp
, dp
, XFS_ILOG_CORE
);
2000 * If this is a synchronous mount, make sure that the
2001 * create transaction goes to disk before returning to
2004 if (mp
->m_flags
& (XFS_MOUNT_WSYNC
|XFS_MOUNT_DIRSYNC
)) {
2005 xfs_trans_set_sync(tp
);
2011 * Attach the dquot(s) to the inodes and modify them incore.
2012 * These ids of the inode couldn't have changed since the new
2013 * inode has been locked ever since it was created.
2015 XFS_QM_DQVOPCREATE(mp
, tp
, ip
, udqp
, gdqp
);
2018 * xfs_trans_commit normally decrements the vnode ref count
2019 * when it unlocks the inode. Since we want to return the
2020 * vnode to the caller, we bump the vnode ref count now.
2025 error
= xfs_bmap_finish(&tp
, &free_list
, first_block
, &committed
);
2027 xfs_bmap_cancel(&free_list
);
2031 error
= xfs_trans_commit(tp
, XFS_TRANS_RELEASE_LOG_RES
, NULL
);
2038 XFS_QM_DQRELE(mp
, udqp
);
2039 XFS_QM_DQRELE(mp
, gdqp
);
2042 * Propagate the fact that the vnode changed after the
2043 * xfs_inode locks have been released.
2045 bhv_vop_vnode_change(vp
, VCHANGE_FLAGS_TRUNCATED
, 3);
2049 /* Fallthrough to std_return with error = 0 */
2052 if ( (*vpp
|| (error
!= 0 && dm_event_sent
!= 0)) &&
2053 DM_EVENT_ENABLED(dir_vp
->v_vfsp
, XFS_BHVTOI(dir_bdp
),
2054 DM_EVENT_POSTCREATE
)) {
2055 (void) XFS_SEND_NAMESP(mp
, DM_EVENT_POSTCREATE
,
2056 dir_vp
, DM_RIGHT_NULL
,
2058 DM_RIGHT_NULL
, name
, NULL
,
2059 dm_di_mode
, error
, 0);
2064 cancel_flags
|= XFS_TRANS_ABORT
;
2069 xfs_trans_cancel(tp
, cancel_flags
);
2071 if (!dp_joined_to_trans
&& (dp
!= NULL
))
2072 xfs_iunlock(dp
, XFS_ILOCK_EXCL
);
2073 XFS_QM_DQRELE(mp
, udqp
);
2074 XFS_QM_DQRELE(mp
, gdqp
);
2080 * Wait until after the current transaction is aborted to
2081 * release the inode. This prevents recursive transactions
2082 * and deadlocks from xfs_inactive.
2084 cancel_flags
|= XFS_TRANS_ABORT
;
2085 xfs_trans_cancel(tp
, cancel_flags
);
2088 XFS_QM_DQRELE(mp
, udqp
);
2089 XFS_QM_DQRELE(mp
, gdqp
);
2096 * Some counters to see if (and how often) we are hitting some deadlock
2097 * prevention code paths.
2101 int xfs_rm_lock_delays
;
2102 int xfs_rm_attempts
;
2106 * The following routine will lock the inodes associated with the
2107 * directory and the named entry in the directory. The locks are
2108 * acquired in increasing inode number.
2110 * If the entry is "..", then only the directory is locked. The
2111 * vnode ref count will still include that from the .. entry in
2114 * There is a deadlock we need to worry about. If the locked directory is
2115 * in the AIL, it might be blocking up the log. The next inode we lock
2116 * could be already locked by another thread waiting for log space (e.g
2117 * a permanent log reservation with a long running transaction (see
2118 * xfs_itruncate_finish)). To solve this, we must check if the directory
2119 * is in the ail and use lock_nowait. If we can't lock, we need to
2120 * drop the inode lock on the directory and try again. xfs_iunlock will
2121 * potentially push the tail if we were holding up the log.
2124 xfs_lock_dir_and_entry(
2126 bhv_vname_t
*dentry
,
2127 xfs_inode_t
*ip
) /* inode of entry 'name' */
2131 xfs_inode_t
*ips
[2];
2140 xfs_ilock(dp
, XFS_ILOCK_EXCL
);
2147 * We want to lock in increasing inum. Since we've already
2148 * acquired the lock on the directory, we may need to release
2149 * if if the inum of the entry turns out to be less.
2151 if (e_inum
> dp
->i_ino
) {
2153 * We are already in the right order, so just
2154 * lock on the inode of the entry.
2155 * We need to use nowait if dp is in the AIL.
2158 lp
= (xfs_log_item_t
*)dp
->i_itemp
;
2159 if (lp
&& (lp
->li_flags
& XFS_LI_IN_AIL
)) {
2160 if (!xfs_ilock_nowait(ip
, XFS_ILOCK_EXCL
)) {
2167 * Unlock dp and try again.
2168 * xfs_iunlock will try to push the tail
2169 * if the inode is in the AIL.
2172 xfs_iunlock(dp
, XFS_ILOCK_EXCL
);
2174 if ((attempts
% 5) == 0) {
2175 delay(1); /* Don't just spin the CPU */
2177 xfs_rm_lock_delays
++;
2183 xfs_ilock(ip
, XFS_ILOCK_EXCL
);
2185 } else if (e_inum
< dp
->i_ino
) {
2186 xfs_iunlock(dp
, XFS_ILOCK_EXCL
);
2190 xfs_lock_inodes(ips
, 2, 0, XFS_ILOCK_EXCL
);
2192 /* else e_inum == dp->i_ino */
2193 /* This can happen if we're asked to lock /x/..
2194 * the entry is "..", which is also the parent directory.
2202 int xfs_small_retries
;
2203 int xfs_middle_retries
;
2204 int xfs_lots_retries
;
2205 int xfs_lock_delays
;
2209 * The following routine will lock n inodes in exclusive mode.
2210 * We assume the caller calls us with the inodes in i_ino order.
2212 * We need to detect deadlock where an inode that we lock
2213 * is in the AIL and we start waiting for another inode that is locked
2214 * by a thread in a long running transaction (such as truncate). This can
2215 * result in deadlock since the long running trans might need to wait
2216 * for the inode we just locked in order to push the tail and free space
2226 int attempts
= 0, i
, j
, try_lock
;
2229 ASSERT(ips
&& (inodes
>= 2)); /* we need at least two */
2240 for (; i
< inodes
; i
++) {
2243 if (i
&& (ips
[i
] == ips
[i
-1])) /* Already locked */
2247 * If try_lock is not set yet, make sure all locked inodes
2248 * are not in the AIL.
2249 * If any are, set try_lock to be used later.
2253 for (j
= (i
- 1); j
>= 0 && !try_lock
; j
--) {
2254 lp
= (xfs_log_item_t
*)ips
[j
]->i_itemp
;
2255 if (lp
&& (lp
->li_flags
& XFS_LI_IN_AIL
)) {
2262 * If any of the previous locks we have locked is in the AIL,
2263 * we must TRY to get the second and subsequent locks. If
2264 * we can't get any, we must release all we have
2269 /* try_lock must be 0 if i is 0. */
2271 * try_lock means we have an inode locked
2272 * that is in the AIL.
2275 if (!xfs_ilock_nowait(ips
[i
], lock_mode
)) {
2279 * Unlock all previous guys and try again.
2280 * xfs_iunlock will try to push the tail
2281 * if the inode is in the AIL.
2284 for(j
= i
- 1; j
>= 0; j
--) {
2287 * Check to see if we've already
2288 * unlocked this one.
2289 * Not the first one going back,
2290 * and the inode ptr is the same.
2292 if ((j
!= (i
- 1)) && ips
[j
] ==
2296 xfs_iunlock(ips
[j
], lock_mode
);
2299 if ((attempts
% 5) == 0) {
2300 delay(1); /* Don't just spin the CPU */
2310 xfs_ilock(ips
[i
], lock_mode
);
2316 if (attempts
< 5) xfs_small_retries
++;
2317 else if (attempts
< 100) xfs_middle_retries
++;
2318 else xfs_lots_retries
++;
2326 #define REMOVE_DEBUG_TRACE(x) {remove_which_error_return = (x);}
2327 int remove_which_error_return
= 0;
2329 #define REMOVE_DEBUG_TRACE(x)
2330 #endif /* ! DEBUG */
2339 bhv_desc_t
*dir_bdp
,
2340 bhv_vname_t
*dentry
,
2343 bhv_vnode_t
*dir_vp
;
2344 char *name
= VNAME(dentry
);
2345 xfs_inode_t
*dp
, *ip
;
2346 xfs_trans_t
*tp
= NULL
;
2349 xfs_bmap_free_t free_list
;
2350 xfs_fsblock_t first_block
;
2358 dir_vp
= BHV_TO_VNODE(dir_bdp
);
2359 vn_trace_entry(dir_vp
, __FUNCTION__
, (inst_t
*)__return_address
);
2361 dp
= XFS_BHVTOI(dir_bdp
);
2364 if (XFS_FORCED_SHUTDOWN(mp
))
2365 return XFS_ERROR(EIO
);
2367 namelen
= VNAMELEN(dentry
);
2369 if (!xfs_get_dir_entry(dentry
, &ip
)) {
2370 dm_di_mode
= ip
->i_d
.di_mode
;
2374 if (DM_EVENT_ENABLED(dir_vp
->v_vfsp
, dp
, DM_EVENT_REMOVE
)) {
2375 error
= XFS_SEND_NAMESP(mp
, DM_EVENT_REMOVE
, dir_vp
,
2376 DM_RIGHT_NULL
, NULL
, DM_RIGHT_NULL
,
2377 name
, NULL
, dm_di_mode
, 0, 0);
2382 /* From this point on, return through std_return */
2386 * We need to get a reference to ip before we get our log
2387 * reservation. The reason for this is that we cannot call
2388 * xfs_iget for an inode for which we do not have a reference
2389 * once we've acquired a log reservation. This is because the
2390 * inode we are trying to get might be in xfs_inactive going
2391 * for a log reservation. Since we'll have to wait for the
2392 * inactive code to complete before returning from xfs_iget,
2393 * we need to make sure that we don't have log space reserved
2394 * when we call xfs_iget. Instead we get an unlocked reference
2395 * to the inode before getting our log reservation.
2397 error
= xfs_get_dir_entry(dentry
, &ip
);
2399 REMOVE_DEBUG_TRACE(__LINE__
);
2403 dm_di_mode
= ip
->i_d
.di_mode
;
2405 vn_trace_entry(XFS_ITOV(ip
), __FUNCTION__
, (inst_t
*)__return_address
);
2409 error
= XFS_QM_DQATTACH(mp
, dp
, 0);
2410 if (!error
&& dp
!= ip
)
2411 error
= XFS_QM_DQATTACH(mp
, ip
, 0);
2413 REMOVE_DEBUG_TRACE(__LINE__
);
2418 tp
= xfs_trans_alloc(mp
, XFS_TRANS_REMOVE
);
2419 cancel_flags
= XFS_TRANS_RELEASE_LOG_RES
;
2421 * We try to get the real space reservation first,
2422 * allowing for directory btree deletion(s) implying
2423 * possible bmap insert(s). If we can't get the space
2424 * reservation then we use 0 instead, and avoid the bmap
2425 * btree insert(s) in the directory code by, if the bmap
2426 * insert tries to happen, instead trimming the LAST
2427 * block from the directory.
2429 resblks
= XFS_REMOVE_SPACE_RES(mp
);
2430 error
= xfs_trans_reserve(tp
, resblks
, XFS_REMOVE_LOG_RES(mp
), 0,
2431 XFS_TRANS_PERM_LOG_RES
, XFS_REMOVE_LOG_COUNT
);
2432 if (error
== ENOSPC
) {
2434 error
= xfs_trans_reserve(tp
, 0, XFS_REMOVE_LOG_RES(mp
), 0,
2435 XFS_TRANS_PERM_LOG_RES
, XFS_REMOVE_LOG_COUNT
);
2438 ASSERT(error
!= ENOSPC
);
2439 REMOVE_DEBUG_TRACE(__LINE__
);
2440 xfs_trans_cancel(tp
, 0);
2445 error
= xfs_lock_dir_and_entry(dp
, dentry
, ip
);
2447 REMOVE_DEBUG_TRACE(__LINE__
);
2448 xfs_trans_cancel(tp
, cancel_flags
);
2454 * At this point, we've gotten both the directory and the entry
2457 xfs_trans_ijoin(tp
, dp
, XFS_ILOCK_EXCL
);
2460 * Increment vnode ref count only in this case since
2461 * there's an extra vnode reference in the case where
2465 xfs_trans_ijoin(tp
, ip
, XFS_ILOCK_EXCL
);
2469 * Entry must exist since we did a lookup in xfs_lock_dir_and_entry.
2471 XFS_BMAP_INIT(&free_list
, &first_block
);
2472 error
= xfs_dir_removename(tp
, dp
, name
, namelen
, ip
->i_ino
,
2473 &first_block
, &free_list
, 0);
2475 ASSERT(error
!= ENOENT
);
2476 REMOVE_DEBUG_TRACE(__LINE__
);
2479 xfs_ichgtime(dp
, XFS_ICHGTIME_MOD
| XFS_ICHGTIME_CHG
);
2482 xfs_trans_log_inode(tp
, dp
, XFS_ILOG_CORE
);
2484 error
= xfs_droplink(tp
, ip
);
2486 REMOVE_DEBUG_TRACE(__LINE__
);
2490 /* Determine if this is the last link while
2491 * we are in the transaction.
2493 link_zero
= (ip
)->i_d
.di_nlink
==0;
2496 * Take an extra ref on the inode so that it doesn't
2497 * go to xfs_inactive() from within the commit.
2502 * If this is a synchronous mount, make sure that the
2503 * remove transaction goes to disk before returning to
2506 if (mp
->m_flags
& (XFS_MOUNT_WSYNC
|XFS_MOUNT_DIRSYNC
)) {
2507 xfs_trans_set_sync(tp
);
2510 error
= xfs_bmap_finish(&tp
, &free_list
, first_block
, &committed
);
2512 REMOVE_DEBUG_TRACE(__LINE__
);
2516 error
= xfs_trans_commit(tp
, XFS_TRANS_RELEASE_LOG_RES
, NULL
);
2523 * Before we drop our extra reference to the inode, purge it
2524 * from the refcache if it is there. By waiting until afterwards
2525 * to do the IRELE, we ensure that we won't go inactive in the
2526 * xfs_refcache_purge_ip routine (although that would be OK).
2528 xfs_refcache_purge_ip(ip
);
2530 vn_trace_exit(XFS_ITOV(ip
), __FUNCTION__
, (inst_t
*)__return_address
);
2533 * Let interposed file systems know about removed links.
2535 bhv_vop_link_removed(XFS_ITOV(ip
), dir_vp
, link_zero
);
2539 /* Fall through to std_return with error = 0 */
2541 if (DM_EVENT_ENABLED(dir_vp
->v_vfsp
, dp
,
2542 DM_EVENT_POSTREMOVE
)) {
2543 (void) XFS_SEND_NAMESP(mp
, DM_EVENT_POSTREMOVE
,
2544 dir_vp
, DM_RIGHT_NULL
,
2545 NULL
, DM_RIGHT_NULL
,
2546 name
, NULL
, dm_di_mode
, error
, 0);
2551 xfs_bmap_cancel(&free_list
);
2552 cancel_flags
|= XFS_TRANS_ABORT
;
2553 xfs_trans_cancel(tp
, cancel_flags
);
2558 * In this case make sure to not release the inode until after
2559 * the current transaction is aborted. Releasing it beforehand
2560 * can cause us to go to xfs_inactive and start a recursive
2561 * transaction which can easily deadlock with the current one.
2563 xfs_bmap_cancel(&free_list
);
2564 cancel_flags
|= XFS_TRANS_ABORT
;
2565 xfs_trans_cancel(tp
, cancel_flags
);
2568 * Before we drop our extra reference to the inode, purge it
2569 * from the refcache if it is there. By waiting until afterwards
2570 * to do the IRELE, we ensure that we won't go inactive in the
2571 * xfs_refcache_purge_ip routine (although that would be OK).
2573 xfs_refcache_purge_ip(ip
);
2587 bhv_desc_t
*target_dir_bdp
,
2588 bhv_vnode_t
*src_vp
,
2589 bhv_vname_t
*dentry
,
2592 xfs_inode_t
*tdp
, *sip
;
2595 xfs_inode_t
*ips
[2];
2597 xfs_bmap_free_t free_list
;
2598 xfs_fsblock_t first_block
;
2601 bhv_vnode_t
*target_dir_vp
;
2603 char *target_name
= VNAME(dentry
);
2606 target_dir_vp
= BHV_TO_VNODE(target_dir_bdp
);
2607 vn_trace_entry(target_dir_vp
, __FUNCTION__
, (inst_t
*)__return_address
);
2608 vn_trace_entry(src_vp
, __FUNCTION__
, (inst_t
*)__return_address
);
2610 target_namelen
= VNAMELEN(dentry
);
2611 ASSERT(!VN_ISDIR(src_vp
));
2613 sip
= xfs_vtoi(src_vp
);
2614 tdp
= XFS_BHVTOI(target_dir_bdp
);
2616 if (XFS_FORCED_SHUTDOWN(mp
))
2617 return XFS_ERROR(EIO
);
2619 if (DM_EVENT_ENABLED(src_vp
->v_vfsp
, tdp
, DM_EVENT_LINK
)) {
2620 error
= XFS_SEND_NAMESP(mp
, DM_EVENT_LINK
,
2621 target_dir_vp
, DM_RIGHT_NULL
,
2622 src_vp
, DM_RIGHT_NULL
,
2623 target_name
, NULL
, 0, 0, 0);
2628 /* Return through std_return after this point. */
2630 error
= XFS_QM_DQATTACH(mp
, sip
, 0);
2631 if (!error
&& sip
!= tdp
)
2632 error
= XFS_QM_DQATTACH(mp
, tdp
, 0);
2636 tp
= xfs_trans_alloc(mp
, XFS_TRANS_LINK
);
2637 cancel_flags
= XFS_TRANS_RELEASE_LOG_RES
;
2638 resblks
= XFS_LINK_SPACE_RES(mp
, target_namelen
);
2639 error
= xfs_trans_reserve(tp
, resblks
, XFS_LINK_LOG_RES(mp
), 0,
2640 XFS_TRANS_PERM_LOG_RES
, XFS_LINK_LOG_COUNT
);
2641 if (error
== ENOSPC
) {
2643 error
= xfs_trans_reserve(tp
, 0, XFS_LINK_LOG_RES(mp
), 0,
2644 XFS_TRANS_PERM_LOG_RES
, XFS_LINK_LOG_COUNT
);
2651 if (sip
->i_ino
< tdp
->i_ino
) {
2659 xfs_lock_inodes(ips
, 2, 0, XFS_ILOCK_EXCL
);
2662 * Increment vnode ref counts since xfs_trans_commit &
2663 * xfs_trans_cancel will both unlock the inodes and
2664 * decrement the associated ref counts.
2667 VN_HOLD(target_dir_vp
);
2668 xfs_trans_ijoin(tp
, sip
, XFS_ILOCK_EXCL
);
2669 xfs_trans_ijoin(tp
, tdp
, XFS_ILOCK_EXCL
);
2672 * If the source has too many links, we can't make any more to it.
2674 if (sip
->i_d
.di_nlink
>= XFS_MAXLINK
) {
2675 error
= XFS_ERROR(EMLINK
);
2680 * If we are using project inheritance, we only allow hard link
2681 * creation in our tree when the project IDs are the same; else
2682 * the tree quota mechanism could be circumvented.
2684 if (unlikely((tdp
->i_d
.di_flags
& XFS_DIFLAG_PROJINHERIT
) &&
2685 (tdp
->i_d
.di_projid
!= sip
->i_d
.di_projid
))) {
2686 error
= XFS_ERROR(EXDEV
);
2691 (error
= xfs_dir_canenter(tp
, tdp
, target_name
, target_namelen
)))
2694 XFS_BMAP_INIT(&free_list
, &first_block
);
2696 error
= xfs_dir_createname(tp
, tdp
, target_name
, target_namelen
,
2697 sip
->i_ino
, &first_block
, &free_list
,
2701 xfs_ichgtime(tdp
, XFS_ICHGTIME_MOD
| XFS_ICHGTIME_CHG
);
2703 xfs_trans_log_inode(tp
, tdp
, XFS_ILOG_CORE
);
2705 error
= xfs_bumplink(tp
, sip
);
2710 * If this is a synchronous mount, make sure that the
2711 * link transaction goes to disk before returning to
2714 if (mp
->m_flags
& (XFS_MOUNT_WSYNC
|XFS_MOUNT_DIRSYNC
)) {
2715 xfs_trans_set_sync(tp
);
2718 error
= xfs_bmap_finish (&tp
, &free_list
, first_block
, &committed
);
2720 xfs_bmap_cancel(&free_list
);
2724 error
= xfs_trans_commit(tp
, XFS_TRANS_RELEASE_LOG_RES
, NULL
);
2728 /* Fall through to std_return with error = 0. */
2730 if (DM_EVENT_ENABLED(src_vp
->v_vfsp
, sip
,
2731 DM_EVENT_POSTLINK
)) {
2732 (void) XFS_SEND_NAMESP(mp
, DM_EVENT_POSTLINK
,
2733 target_dir_vp
, DM_RIGHT_NULL
,
2734 src_vp
, DM_RIGHT_NULL
,
2735 target_name
, NULL
, 0, error
, 0);
2740 cancel_flags
|= XFS_TRANS_ABORT
;
2744 xfs_trans_cancel(tp
, cancel_flags
);
2755 bhv_desc_t
*dir_bdp
,
2756 bhv_vname_t
*dentry
,
2761 char *dir_name
= VNAME(dentry
);
2763 xfs_inode_t
*cdp
; /* inode of created dir */
2764 bhv_vnode_t
*cvp
; /* vnode of created dir */
2770 xfs_bmap_free_t free_list
;
2771 xfs_fsblock_t first_block
;
2772 bhv_vnode_t
*dir_vp
;
2773 boolean_t dp_joined_to_trans
;
2774 boolean_t created
= B_FALSE
;
2775 int dm_event_sent
= 0;
2777 struct xfs_dquot
*udqp
, *gdqp
;
2782 dir_vp
= BHV_TO_VNODE(dir_bdp
);
2783 dp
= XFS_BHVTOI(dir_bdp
);
2786 if (XFS_FORCED_SHUTDOWN(mp
))
2787 return XFS_ERROR(EIO
);
2789 dir_namelen
= VNAMELEN(dentry
);
2792 dp_joined_to_trans
= B_FALSE
;
2793 dm_di_mode
= vap
->va_mode
;
2795 if (DM_EVENT_ENABLED(dir_vp
->v_vfsp
, dp
, DM_EVENT_CREATE
)) {
2796 error
= XFS_SEND_NAMESP(mp
, DM_EVENT_CREATE
,
2797 dir_vp
, DM_RIGHT_NULL
, NULL
,
2798 DM_RIGHT_NULL
, dir_name
, NULL
,
2805 /* Return through std_return after this point. */
2807 vn_trace_entry(dir_vp
, __FUNCTION__
, (inst_t
*)__return_address
);
2811 if (dp
->i_d
.di_flags
& XFS_DIFLAG_PROJINHERIT
)
2812 prid
= dp
->i_d
.di_projid
;
2813 else if (vap
->va_mask
& XFS_AT_PROJID
)
2814 prid
= (xfs_prid_t
)vap
->va_projid
;
2816 prid
= (xfs_prid_t
)dfltprid
;
2819 * Make sure that we have allocated dquot(s) on disk.
2821 error
= XFS_QM_DQVOPALLOC(mp
, dp
,
2822 current_fsuid(credp
), current_fsgid(credp
), prid
,
2823 XFS_QMOPT_QUOTALL
| XFS_QMOPT_INHERIT
, &udqp
, &gdqp
);
2827 tp
= xfs_trans_alloc(mp
, XFS_TRANS_MKDIR
);
2828 cancel_flags
= XFS_TRANS_RELEASE_LOG_RES
;
2829 resblks
= XFS_MKDIR_SPACE_RES(mp
, dir_namelen
);
2830 error
= xfs_trans_reserve(tp
, resblks
, XFS_MKDIR_LOG_RES(mp
), 0,
2831 XFS_TRANS_PERM_LOG_RES
, XFS_MKDIR_LOG_COUNT
);
2832 if (error
== ENOSPC
) {
2834 error
= xfs_trans_reserve(tp
, 0, XFS_MKDIR_LOG_RES(mp
), 0,
2835 XFS_TRANS_PERM_LOG_RES
,
2836 XFS_MKDIR_LOG_COUNT
);
2844 xfs_ilock(dp
, XFS_ILOCK_EXCL
);
2847 * Check for directory link count overflow.
2849 if (dp
->i_d
.di_nlink
>= XFS_MAXLINK
) {
2850 error
= XFS_ERROR(EMLINK
);
2855 * Reserve disk quota and the inode.
2857 error
= XFS_TRANS_RESERVE_QUOTA(mp
, tp
, udqp
, gdqp
, resblks
, 1, 0);
2862 (error
= xfs_dir_canenter(tp
, dp
, dir_name
, dir_namelen
)))
2865 * create the directory inode.
2867 error
= xfs_dir_ialloc(&tp
, dp
, vap
->va_mode
, 2,
2868 0, credp
, prid
, resblks
> 0,
2871 if (error
== ENOSPC
)
2878 * Now we add the directory inode to the transaction.
2879 * We waited until now since xfs_dir_ialloc might start
2880 * a new transaction. Had we joined the transaction
2881 * earlier, the locks might have gotten released.
2884 xfs_trans_ijoin(tp
, dp
, XFS_ILOCK_EXCL
);
2885 dp_joined_to_trans
= B_TRUE
;
2887 XFS_BMAP_INIT(&free_list
, &first_block
);
2889 error
= xfs_dir_createname(tp
, dp
, dir_name
, dir_namelen
, cdp
->i_ino
,
2890 &first_block
, &free_list
, resblks
?
2891 resblks
- XFS_IALLOC_SPACE_RES(mp
) : 0);
2893 ASSERT(error
!= ENOSPC
);
2896 xfs_ichgtime(dp
, XFS_ICHGTIME_MOD
| XFS_ICHGTIME_CHG
);
2899 * Bump the in memory version number of the parent directory
2900 * so that other processes accessing it will recognize that
2901 * the directory has changed.
2905 error
= xfs_dir_init(tp
, cdp
, dp
);
2910 error
= xfs_bumplink(tp
, dp
);
2914 cvp
= XFS_ITOV(cdp
);
2922 * Attach the dquots to the new inode and modify the icount incore.
2924 XFS_QM_DQVOPCREATE(mp
, tp
, cdp
, udqp
, gdqp
);
2927 * If this is a synchronous mount, make sure that the
2928 * mkdir transaction goes to disk before returning to
2931 if (mp
->m_flags
& (XFS_MOUNT_WSYNC
|XFS_MOUNT_DIRSYNC
)) {
2932 xfs_trans_set_sync(tp
);
2935 error
= xfs_bmap_finish(&tp
, &free_list
, first_block
, &committed
);
2941 error
= xfs_trans_commit(tp
, XFS_TRANS_RELEASE_LOG_RES
, NULL
);
2942 XFS_QM_DQRELE(mp
, udqp
);
2943 XFS_QM_DQRELE(mp
, gdqp
);
2948 /* Fall through to std_return with error = 0 or errno from
2949 * xfs_trans_commit. */
2952 if ( (created
|| (error
!= 0 && dm_event_sent
!= 0)) &&
2953 DM_EVENT_ENABLED(dir_vp
->v_vfsp
, XFS_BHVTOI(dir_bdp
),
2954 DM_EVENT_POSTCREATE
)) {
2955 (void) XFS_SEND_NAMESP(mp
, DM_EVENT_POSTCREATE
,
2956 dir_vp
, DM_RIGHT_NULL
,
2957 created
? XFS_ITOV(cdp
):NULL
,
2960 dm_di_mode
, error
, 0);
2966 xfs_bmap_cancel(&free_list
);
2968 cancel_flags
|= XFS_TRANS_ABORT
;
2970 xfs_trans_cancel(tp
, cancel_flags
);
2971 XFS_QM_DQRELE(mp
, udqp
);
2972 XFS_QM_DQRELE(mp
, gdqp
);
2974 if (!dp_joined_to_trans
&& (dp
!= NULL
)) {
2975 xfs_iunlock(dp
, XFS_ILOCK_EXCL
);
2988 bhv_desc_t
*dir_bdp
,
2989 bhv_vname_t
*dentry
,
2992 char *name
= VNAME(dentry
);
2994 xfs_inode_t
*cdp
; /* child directory */
2998 xfs_bmap_free_t free_list
;
2999 xfs_fsblock_t first_block
;
3002 bhv_vnode_t
*dir_vp
;
3003 int dm_di_mode
= S_IFDIR
;
3008 dir_vp
= BHV_TO_VNODE(dir_bdp
);
3009 dp
= XFS_BHVTOI(dir_bdp
);
3012 vn_trace_entry(dir_vp
, __FUNCTION__
, (inst_t
*)__return_address
);
3014 if (XFS_FORCED_SHUTDOWN(XFS_BHVTOI(dir_bdp
)->i_mount
))
3015 return XFS_ERROR(EIO
);
3016 namelen
= VNAMELEN(dentry
);
3018 if (!xfs_get_dir_entry(dentry
, &cdp
)) {
3019 dm_di_mode
= cdp
->i_d
.di_mode
;
3023 if (DM_EVENT_ENABLED(dir_vp
->v_vfsp
, dp
, DM_EVENT_REMOVE
)) {
3024 error
= XFS_SEND_NAMESP(mp
, DM_EVENT_REMOVE
,
3025 dir_vp
, DM_RIGHT_NULL
,
3026 NULL
, DM_RIGHT_NULL
,
3027 name
, NULL
, dm_di_mode
, 0, 0);
3029 return XFS_ERROR(error
);
3032 /* Return through std_return after this point. */
3037 * We need to get a reference to cdp before we get our log
3038 * reservation. The reason for this is that we cannot call
3039 * xfs_iget for an inode for which we do not have a reference
3040 * once we've acquired a log reservation. This is because the
3041 * inode we are trying to get might be in xfs_inactive going
3042 * for a log reservation. Since we'll have to wait for the
3043 * inactive code to complete before returning from xfs_iget,
3044 * we need to make sure that we don't have log space reserved
3045 * when we call xfs_iget. Instead we get an unlocked reference
3046 * to the inode before getting our log reservation.
3048 error
= xfs_get_dir_entry(dentry
, &cdp
);
3050 REMOVE_DEBUG_TRACE(__LINE__
);
3054 dm_di_mode
= cdp
->i_d
.di_mode
;
3057 * Get the dquots for the inodes.
3059 error
= XFS_QM_DQATTACH(mp
, dp
, 0);
3060 if (!error
&& dp
!= cdp
)
3061 error
= XFS_QM_DQATTACH(mp
, cdp
, 0);
3064 REMOVE_DEBUG_TRACE(__LINE__
);
3068 tp
= xfs_trans_alloc(mp
, XFS_TRANS_RMDIR
);
3069 cancel_flags
= XFS_TRANS_RELEASE_LOG_RES
;
3071 * We try to get the real space reservation first,
3072 * allowing for directory btree deletion(s) implying
3073 * possible bmap insert(s). If we can't get the space
3074 * reservation then we use 0 instead, and avoid the bmap
3075 * btree insert(s) in the directory code by, if the bmap
3076 * insert tries to happen, instead trimming the LAST
3077 * block from the directory.
3079 resblks
= XFS_REMOVE_SPACE_RES(mp
);
3080 error
= xfs_trans_reserve(tp
, resblks
, XFS_REMOVE_LOG_RES(mp
), 0,
3081 XFS_TRANS_PERM_LOG_RES
, XFS_DEFAULT_LOG_COUNT
);
3082 if (error
== ENOSPC
) {
3084 error
= xfs_trans_reserve(tp
, 0, XFS_REMOVE_LOG_RES(mp
), 0,
3085 XFS_TRANS_PERM_LOG_RES
, XFS_DEFAULT_LOG_COUNT
);
3088 ASSERT(error
!= ENOSPC
);
3093 XFS_BMAP_INIT(&free_list
, &first_block
);
3096 * Now lock the child directory inode and the parent directory
3097 * inode in the proper order. This will take care of validating
3098 * that the directory entry for the child directory inode has
3099 * not changed while we were obtaining a log reservation.
3101 error
= xfs_lock_dir_and_entry(dp
, dentry
, cdp
);
3103 xfs_trans_cancel(tp
, cancel_flags
);
3108 xfs_trans_ijoin(tp
, dp
, XFS_ILOCK_EXCL
);
3111 * Only increment the parent directory vnode count if
3112 * we didn't bump it in looking up cdp. The only time
3113 * we don't bump it is when we're looking up ".".
3119 xfs_trans_ijoin(tp
, cdp
, XFS_ILOCK_EXCL
);
3121 ASSERT(cdp
->i_d
.di_nlink
>= 2);
3122 if (cdp
->i_d
.di_nlink
!= 2) {
3123 error
= XFS_ERROR(ENOTEMPTY
);
3126 if (!xfs_dir_isempty(cdp
)) {
3127 error
= XFS_ERROR(ENOTEMPTY
);
3131 error
= xfs_dir_removename(tp
, dp
, name
, namelen
, cdp
->i_ino
,
3132 &first_block
, &free_list
, resblks
);
3136 xfs_ichgtime(dp
, XFS_ICHGTIME_MOD
| XFS_ICHGTIME_CHG
);
3139 * Bump the in memory generation count on the parent
3140 * directory so that other can know that it has changed.
3145 * Drop the link from cdp's "..".
3147 error
= xfs_droplink(tp
, dp
);
3153 * Drop the link from dp to cdp.
3155 error
= xfs_droplink(tp
, cdp
);
3161 * Drop the "." link from cdp to self.
3163 error
= xfs_droplink(tp
, cdp
);
3168 /* Determine these before committing transaction */
3169 last_cdp_link
= (cdp
)->i_d
.di_nlink
==0;
3172 * Take an extra ref on the child vnode so that it
3173 * does not go to xfs_inactive() from within the commit.
3178 * If this is a synchronous mount, make sure that the
3179 * rmdir transaction goes to disk before returning to
3182 if (mp
->m_flags
& (XFS_MOUNT_WSYNC
|XFS_MOUNT_DIRSYNC
)) {
3183 xfs_trans_set_sync(tp
);
3186 error
= xfs_bmap_finish (&tp
, &free_list
, first_block
, &committed
);
3188 xfs_bmap_cancel(&free_list
);
3189 xfs_trans_cancel(tp
, (XFS_TRANS_RELEASE_LOG_RES
|
3195 error
= xfs_trans_commit(tp
, XFS_TRANS_RELEASE_LOG_RES
, NULL
);
3203 * Let interposed file systems know about removed links.
3205 bhv_vop_link_removed(XFS_ITOV(cdp
), dir_vp
, last_cdp_link
);
3209 /* Fall through to std_return with error = 0 or the errno
3210 * from xfs_trans_commit. */
3212 if (DM_EVENT_ENABLED(dir_vp
->v_vfsp
, dp
, DM_EVENT_POSTREMOVE
)) {
3213 (void) XFS_SEND_NAMESP(mp
, DM_EVENT_POSTREMOVE
,
3214 dir_vp
, DM_RIGHT_NULL
,
3215 NULL
, DM_RIGHT_NULL
,
3216 name
, NULL
, dm_di_mode
,
3222 xfs_bmap_cancel(&free_list
);
3223 cancel_flags
|= XFS_TRANS_ABORT
;
3227 xfs_trans_cancel(tp
, cancel_flags
);
3233 * Read dp's entries starting at uiop->uio_offset and translate them into
3234 * bufsize bytes worth of struct dirents starting at bufbase.
3238 bhv_desc_t
*dir_bdp
,
3244 xfs_trans_t
*tp
= NULL
;
3248 vn_trace_entry(BHV_TO_VNODE(dir_bdp
), __FUNCTION__
,
3249 (inst_t
*)__return_address
);
3250 dp
= XFS_BHVTOI(dir_bdp
);
3252 if (XFS_FORCED_SHUTDOWN(dp
->i_mount
))
3253 return XFS_ERROR(EIO
);
3255 lock_mode
= xfs_ilock_map_shared(dp
);
3256 error
= xfs_dir_getdents(tp
, dp
, uiop
, eofp
);
3257 xfs_iunlock_map_shared(dp
, lock_mode
);
3264 bhv_desc_t
*dir_bdp
,
3265 bhv_vname_t
*dentry
,
3277 xfs_bmap_free_t free_list
;
3278 xfs_fsblock_t first_block
;
3279 boolean_t dp_joined_to_trans
;
3280 bhv_vnode_t
*dir_vp
;
3283 xfs_fileoff_t first_fsb
;
3284 xfs_filblks_t fs_blocks
;
3286 xfs_bmbt_irec_t mval
[SYMLINK_MAPS
];
3293 struct xfs_dquot
*udqp
, *gdqp
;
3295 char *link_name
= VNAME(dentry
);
3299 dir_vp
= BHV_TO_VNODE(dir_bdp
);
3300 dp
= XFS_BHVTOI(dir_bdp
);
3301 dp_joined_to_trans
= B_FALSE
;
3306 vn_trace_entry(dir_vp
, __FUNCTION__
, (inst_t
*)__return_address
);
3310 if (XFS_FORCED_SHUTDOWN(mp
))
3311 return XFS_ERROR(EIO
);
3313 link_namelen
= VNAMELEN(dentry
);
3316 * Check component lengths of the target path name.
3318 pathlen
= strlen(target_path
);
3319 if (pathlen
>= MAXPATHLEN
) /* total string too long */
3320 return XFS_ERROR(ENAMETOOLONG
);
3321 if (pathlen
>= MAXNAMELEN
) { /* is any component too long? */
3325 for (total
= 0, path
= target_path
; total
< pathlen
;) {
3329 while(*path
== '/') {
3335 * Count up to the next slash or end of path.
3336 * Error out if the component is bigger than MAXNAMELEN.
3338 for(len
= 0; *path
!= '/' && total
< pathlen
;total
++, path
++) {
3339 if (++len
>= MAXNAMELEN
) {
3340 error
= ENAMETOOLONG
;
3347 if (DM_EVENT_ENABLED(dir_vp
->v_vfsp
, dp
, DM_EVENT_SYMLINK
)) {
3348 error
= XFS_SEND_NAMESP(mp
, DM_EVENT_SYMLINK
, dir_vp
,
3349 DM_RIGHT_NULL
, NULL
, DM_RIGHT_NULL
,
3350 link_name
, target_path
, 0, 0, 0);
3355 /* Return through std_return after this point. */
3358 if (dp
->i_d
.di_flags
& XFS_DIFLAG_PROJINHERIT
)
3359 prid
= dp
->i_d
.di_projid
;
3360 else if (vap
->va_mask
& XFS_AT_PROJID
)
3361 prid
= (xfs_prid_t
)vap
->va_projid
;
3363 prid
= (xfs_prid_t
)dfltprid
;
3366 * Make sure that we have allocated dquot(s) on disk.
3368 error
= XFS_QM_DQVOPALLOC(mp
, dp
,
3369 current_fsuid(credp
), current_fsgid(credp
), prid
,
3370 XFS_QMOPT_QUOTALL
| XFS_QMOPT_INHERIT
, &udqp
, &gdqp
);
3374 tp
= xfs_trans_alloc(mp
, XFS_TRANS_SYMLINK
);
3375 cancel_flags
= XFS_TRANS_RELEASE_LOG_RES
;
3377 * The symlink will fit into the inode data fork?
3378 * There can't be any attributes so we get the whole variable part.
3380 if (pathlen
<= XFS_LITINO(mp
))
3383 fs_blocks
= XFS_B_TO_FSB(mp
, pathlen
);
3384 resblks
= XFS_SYMLINK_SPACE_RES(mp
, link_namelen
, fs_blocks
);
3385 error
= xfs_trans_reserve(tp
, resblks
, XFS_SYMLINK_LOG_RES(mp
), 0,
3386 XFS_TRANS_PERM_LOG_RES
, XFS_SYMLINK_LOG_COUNT
);
3387 if (error
== ENOSPC
&& fs_blocks
== 0) {
3389 error
= xfs_trans_reserve(tp
, 0, XFS_SYMLINK_LOG_RES(mp
), 0,
3390 XFS_TRANS_PERM_LOG_RES
, XFS_SYMLINK_LOG_COUNT
);
3398 xfs_ilock(dp
, XFS_ILOCK_EXCL
);
3401 * Check whether the directory allows new symlinks or not.
3403 if (dp
->i_d
.di_flags
& XFS_DIFLAG_NOSYMLINKS
) {
3404 error
= XFS_ERROR(EPERM
);
3409 * Reserve disk quota : blocks and inode.
3411 error
= XFS_TRANS_RESERVE_QUOTA(mp
, tp
, udqp
, gdqp
, resblks
, 1, 0);
3416 * Check for ability to enter directory entry, if no space reserved.
3419 (error
= xfs_dir_canenter(tp
, dp
, link_name
, link_namelen
)))
3422 * Initialize the bmap freelist prior to calling either
3423 * bmapi or the directory create code.
3425 XFS_BMAP_INIT(&free_list
, &first_block
);
3428 * Allocate an inode for the symlink.
3430 error
= xfs_dir_ialloc(&tp
, dp
, S_IFLNK
| (vap
->va_mode
&~S_IFMT
),
3431 1, 0, credp
, prid
, resblks
> 0, &ip
, NULL
);
3433 if (error
== ENOSPC
)
3440 xfs_trans_ijoin(tp
, dp
, XFS_ILOCK_EXCL
);
3441 dp_joined_to_trans
= B_TRUE
;
3444 * Also attach the dquot(s) to it, if applicable.
3446 XFS_QM_DQVOPCREATE(mp
, tp
, ip
, udqp
, gdqp
);
3449 resblks
-= XFS_IALLOC_SPACE_RES(mp
);
3451 * If the symlink will fit into the inode, write it inline.
3453 if (pathlen
<= XFS_IFORK_DSIZE(ip
)) {
3454 xfs_idata_realloc(ip
, pathlen
, XFS_DATA_FORK
);
3455 memcpy(ip
->i_df
.if_u1
.if_data
, target_path
, pathlen
);
3456 ip
->i_d
.di_size
= pathlen
;
3459 * The inode was initially created in extent format.
3461 ip
->i_df
.if_flags
&= ~(XFS_IFEXTENTS
| XFS_IFBROOT
);
3462 ip
->i_df
.if_flags
|= XFS_IFINLINE
;
3464 ip
->i_d
.di_format
= XFS_DINODE_FMT_LOCAL
;
3465 xfs_trans_log_inode(tp
, ip
, XFS_ILOG_DDATA
| XFS_ILOG_CORE
);
3469 nmaps
= SYMLINK_MAPS
;
3471 error
= xfs_bmapi(tp
, ip
, first_fsb
, fs_blocks
,
3472 XFS_BMAPI_WRITE
| XFS_BMAPI_METADATA
,
3473 &first_block
, resblks
, mval
, &nmaps
,
3480 resblks
-= fs_blocks
;
3481 ip
->i_d
.di_size
= pathlen
;
3482 xfs_trans_log_inode(tp
, ip
, XFS_ILOG_CORE
);
3484 cur_chunk
= target_path
;
3485 for (n
= 0; n
< nmaps
; n
++) {
3486 d
= XFS_FSB_TO_DADDR(mp
, mval
[n
].br_startblock
);
3487 byte_cnt
= XFS_FSB_TO_B(mp
, mval
[n
].br_blockcount
);
3488 bp
= xfs_trans_get_buf(tp
, mp
->m_ddev_targp
, d
,
3489 BTOBB(byte_cnt
), 0);
3490 ASSERT(bp
&& !XFS_BUF_GETERROR(bp
));
3491 if (pathlen
< byte_cnt
) {
3494 pathlen
-= byte_cnt
;
3496 memcpy(XFS_BUF_PTR(bp
), cur_chunk
, byte_cnt
);
3497 cur_chunk
+= byte_cnt
;
3499 xfs_trans_log_buf(tp
, bp
, 0, byte_cnt
- 1);
3504 * Create the directory entry for the symlink.
3506 error
= xfs_dir_createname(tp
, dp
, link_name
, link_namelen
, ip
->i_ino
,
3507 &first_block
, &free_list
, resblks
);
3510 xfs_ichgtime(dp
, XFS_ICHGTIME_MOD
| XFS_ICHGTIME_CHG
);
3511 xfs_trans_log_inode(tp
, dp
, XFS_ILOG_CORE
);
3514 * Bump the in memory version number of the parent directory
3515 * so that other processes accessing it will recognize that
3516 * the directory has changed.
3521 * If this is a synchronous mount, make sure that the
3522 * symlink transaction goes to disk before returning to
3525 if (mp
->m_flags
& (XFS_MOUNT_WSYNC
|XFS_MOUNT_DIRSYNC
)) {
3526 xfs_trans_set_sync(tp
);
3530 * xfs_trans_commit normally decrements the vnode ref count
3531 * when it unlocks the inode. Since we want to return the
3532 * vnode to the caller, we bump the vnode ref count now.
3536 error
= xfs_bmap_finish(&tp
, &free_list
, first_block
, &committed
);
3540 error
= xfs_trans_commit(tp
, XFS_TRANS_RELEASE_LOG_RES
, NULL
);
3541 XFS_QM_DQRELE(mp
, udqp
);
3542 XFS_QM_DQRELE(mp
, gdqp
);
3544 /* Fall through to std_return with error = 0 or errno from
3545 * xfs_trans_commit */
3547 if (DM_EVENT_ENABLED(dir_vp
->v_vfsp
, XFS_BHVTOI(dir_bdp
),
3548 DM_EVENT_POSTSYMLINK
)) {
3549 (void) XFS_SEND_NAMESP(mp
, DM_EVENT_POSTSYMLINK
,
3550 dir_vp
, DM_RIGHT_NULL
,
3551 error
? NULL
: XFS_ITOV(ip
),
3552 DM_RIGHT_NULL
, link_name
, target_path
,
3568 xfs_bmap_cancel(&free_list
);
3569 cancel_flags
|= XFS_TRANS_ABORT
;
3571 xfs_trans_cancel(tp
, cancel_flags
);
3572 XFS_QM_DQRELE(mp
, udqp
);
3573 XFS_QM_DQRELE(mp
, gdqp
);
3575 if (!dp_joined_to_trans
&& (dp
!= NULL
)) {
3576 xfs_iunlock(dp
, XFS_ILOCK_EXCL
);
3586 * A fid routine that takes a pointer to a previously allocated
3587 * fid structure (like xfs_fast_fid) but uses a 64 bit inode number.
3597 vn_trace_entry(BHV_TO_VNODE(bdp
), __FUNCTION__
,
3598 (inst_t
*)__return_address
);
3599 ASSERT(sizeof(fid_t
) >= sizeof(xfs_fid2_t
));
3601 xfid
= (xfs_fid2_t
*)fidp
;
3602 ip
= XFS_BHVTOI(bdp
);
3603 xfid
->fid_len
= sizeof(xfs_fid2_t
) - sizeof(xfid
->fid_len
);
3606 * use memcpy because the inode is a long long and there's no
3607 * assurance that xfid->fid_ino is properly aligned.
3609 memcpy(&xfid
->fid_ino
, &ip
->i_ino
, sizeof(xfid
->fid_ino
));
3610 xfid
->fid_gen
= ip
->i_d
.di_gen
;
3622 bhv_vrwlock_t locktype
)
3627 vp
= BHV_TO_VNODE(bdp
);
3630 ip
= XFS_BHVTOI(bdp
);
3631 if (locktype
== VRWLOCK_WRITE
) {
3632 xfs_ilock(ip
, XFS_IOLOCK_EXCL
);
3633 } else if (locktype
== VRWLOCK_TRY_READ
) {
3634 return xfs_ilock_nowait(ip
, XFS_IOLOCK_SHARED
);
3635 } else if (locktype
== VRWLOCK_TRY_WRITE
) {
3636 return xfs_ilock_nowait(ip
, XFS_IOLOCK_EXCL
);
3638 ASSERT((locktype
== VRWLOCK_READ
) ||
3639 (locktype
== VRWLOCK_WRITE_DIRECT
));
3640 xfs_ilock(ip
, XFS_IOLOCK_SHARED
);
3653 bhv_vrwlock_t locktype
)
3658 vp
= BHV_TO_VNODE(bdp
);
3661 ip
= XFS_BHVTOI(bdp
);
3662 if (locktype
== VRWLOCK_WRITE
) {
3664 * In the write case, we may have added a new entry to
3665 * the reference cache. This might store a pointer to
3666 * an inode to be released in this inode. If it is there,
3667 * clear the pointer and release the inode after unlocking
3670 xfs_refcache_iunlock(ip
, XFS_IOLOCK_EXCL
);
3672 ASSERT((locktype
== VRWLOCK_READ
) ||
3673 (locktype
== VRWLOCK_WRITE_DIRECT
));
3674 xfs_iunlock(ip
, XFS_IOLOCK_SHARED
);
3686 xfs_inode_log_item_t
*iip
;
3689 ip
= XFS_BHVTOI(bdp
);
3693 if (XFS_FORCED_SHUTDOWN(mp
))
3694 return XFS_ERROR(EIO
);
3697 * Bypass inodes which have already been cleaned by
3698 * the inode flush clustering code inside xfs_iflush
3700 if ((ip
->i_update_core
== 0) &&
3701 ((iip
== NULL
) || !(iip
->ili_format
.ilf_fields
& XFS_ILOG_ALL
)))
3704 if (flags
& FLUSH_LOG
) {
3705 if (iip
&& iip
->ili_last_lsn
) {
3706 xlog_t
*log
= mp
->m_log
;
3708 int s
, log_flags
= XFS_LOG_FORCE
;
3710 s
= GRANT_LOCK(log
);
3711 sync_lsn
= log
->l_last_sync_lsn
;
3712 GRANT_UNLOCK(log
, s
);
3714 if ((XFS_LSN_CMP(iip
->ili_last_lsn
, sync_lsn
) <= 0))
3717 if (flags
& FLUSH_SYNC
)
3718 log_flags
|= XFS_LOG_SYNC
;
3719 return xfs_log_force(mp
, iip
->ili_last_lsn
, log_flags
);
3724 * We make this non-blocking if the inode is contended,
3725 * return EAGAIN to indicate to the caller that they
3726 * did not succeed. This prevents the flush path from
3727 * blocking on inodes inside another operation right
3728 * now, they get caught later by xfs_sync.
3730 if (flags
& FLUSH_INODE
) {
3733 if (xfs_ipincount(ip
))
3736 if (flags
& FLUSH_SYNC
) {
3737 xfs_ilock(ip
, XFS_ILOCK_SHARED
);
3739 } else if (xfs_ilock_nowait(ip
, XFS_ILOCK_SHARED
)) {
3740 if (xfs_ipincount(ip
) || !xfs_iflock_nowait(ip
)) {
3741 xfs_iunlock(ip
, XFS_ILOCK_SHARED
);
3748 if (flags
& FLUSH_SYNC
)
3749 flush_flags
= XFS_IFLUSH_SYNC
;
3751 flush_flags
= XFS_IFLUSH_ASYNC
;
3753 error
= xfs_iflush(ip
, flush_flags
);
3754 xfs_iunlock(ip
, XFS_ILOCK_SHARED
);
3772 if (!capable(CAP_SYS_ADMIN
))
3773 return XFS_ERROR(EPERM
);
3775 ip
= XFS_BHVTOI(bdp
);
3778 if (XFS_FORCED_SHUTDOWN(mp
))
3779 return XFS_ERROR(EIO
);
3781 tp
= xfs_trans_alloc(mp
, XFS_TRANS_SET_DMATTRS
);
3782 error
= xfs_trans_reserve(tp
, 0, XFS_ICHANGE_LOG_RES (mp
), 0, 0, 0);
3784 xfs_trans_cancel(tp
, 0);
3787 xfs_ilock(ip
, XFS_ILOCK_EXCL
);
3788 xfs_trans_ijoin(tp
, ip
, XFS_ILOCK_EXCL
);
3790 ip
->i_iocore
.io_dmevmask
= ip
->i_d
.di_dmevmask
= evmask
;
3791 ip
->i_iocore
.io_dmstate
= ip
->i_d
.di_dmstate
= state
;
3793 xfs_trans_log_inode(tp
, ip
, XFS_ILOG_CORE
);
3795 error
= xfs_trans_commit(tp
, 0, NULL
);
3807 vp
= BHV_TO_VNODE(bdp
);
3808 ip
= XFS_BHVTOI(bdp
);
3810 vn_trace_entry(vp
, __FUNCTION__
, (inst_t
*)__return_address
);
3812 ASSERT(!VN_MAPPED(vp
));
3814 /* bad inode, get out here ASAP */
3822 ASSERT(XFS_FORCED_SHUTDOWN(ip
->i_mount
) || ip
->i_delayed_blks
== 0);
3825 * Make sure the atime in the XFS inode is correct before freeing the
3828 xfs_synchronize_atime(ip
);
3830 /* If we have nothing to flush with this inode then complete the
3831 * teardown now, otherwise break the link between the xfs inode
3832 * and the linux inode and clean up the xfs inode later. This
3833 * avoids flushing the inode to disk during the delete operation
3836 if (!ip
->i_update_core
&& (ip
->i_itemp
== NULL
)) {
3837 xfs_ilock(ip
, XFS_ILOCK_EXCL
);
3839 return xfs_finish_reclaim(ip
, 1, XFS_IFLUSH_DELWRI_ELSE_SYNC
);
3841 xfs_mount_t
*mp
= ip
->i_mount
;
3843 /* Protect sync from us */
3844 XFS_MOUNT_ILOCK(mp
);
3845 vn_bhv_remove(VN_BHV_HEAD(vp
), XFS_ITOBHV(ip
));
3846 list_add_tail(&ip
->i_reclaim
, &mp
->m_del_inodes
);
3847 spin_lock(&ip
->i_flags_lock
);
3848 ip
->i_flags
|= XFS_IRECLAIMABLE
;
3849 spin_unlock(&ip
->i_flags_lock
);
3850 XFS_MOUNT_IUNLOCK(mp
);
3861 xfs_ihash_t
*ih
= ip
->i_hash
;
3862 bhv_vnode_t
*vp
= XFS_ITOV_NULL(ip
);
3865 if (vp
&& VN_BAD(vp
))
3868 /* The hash lock here protects a thread in xfs_iget_core from
3869 * racing with us on linking the inode back with a vnode.
3870 * Once we have the XFS_IRECLAIM flag set it will not touch
3873 write_lock(&ih
->ih_lock
);
3874 spin_lock(&ip
->i_flags_lock
);
3875 if ((ip
->i_flags
& XFS_IRECLAIM
) ||
3876 (!(ip
->i_flags
& XFS_IRECLAIMABLE
) && vp
== NULL
)) {
3877 spin_unlock(&ip
->i_flags_lock
);
3878 write_unlock(&ih
->ih_lock
);
3881 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
3885 ip
->i_flags
|= XFS_IRECLAIM
;
3886 spin_unlock(&ip
->i_flags_lock
);
3887 write_unlock(&ih
->ih_lock
);
3890 * If the inode is still dirty, then flush it out. If the inode
3891 * is not in the AIL, then it will be OK to flush it delwri as
3892 * long as xfs_iflush() does not keep any references to the inode.
3893 * We leave that decision up to xfs_iflush() since it has the
3894 * knowledge of whether it's OK to simply do a delwri flush of
3895 * the inode or whether we need to wait until the inode is
3896 * pulled from the AIL.
3897 * We get the flush lock regardless, though, just to make sure
3898 * we don't free it while it is being flushed.
3900 if (!XFS_FORCED_SHUTDOWN(ip
->i_mount
)) {
3902 xfs_ilock(ip
, XFS_ILOCK_EXCL
);
3906 if (ip
->i_update_core
||
3907 ((ip
->i_itemp
!= NULL
) &&
3908 (ip
->i_itemp
->ili_format
.ilf_fields
!= 0))) {
3909 error
= xfs_iflush(ip
, sync_mode
);
3911 * If we hit an error, typically because of filesystem
3912 * shutdown, we don't need to let vn_reclaim to know
3913 * because we're gonna reclaim the inode anyway.
3916 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
3919 xfs_iflock(ip
); /* synchronize with xfs_iflush_done */
3922 ASSERT(ip
->i_update_core
== 0);
3923 ASSERT(ip
->i_itemp
== NULL
||
3924 ip
->i_itemp
->ili_format
.ilf_fields
== 0);
3925 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
3926 } else if (locked
) {
3928 * We are not interested in doing an iflush if we're
3929 * in the process of shutting down the filesystem forcibly.
3930 * So, just reclaim the inode.
3933 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
3942 xfs_finish_reclaim_all(xfs_mount_t
*mp
, int noblock
)
3945 xfs_inode_t
*ip
, *n
;
3950 XFS_MOUNT_ILOCK(mp
);
3951 list_for_each_entry_safe(ip
, n
, &mp
->m_del_inodes
, i_reclaim
) {
3953 if (xfs_ilock_nowait(ip
, XFS_ILOCK_EXCL
) == 0)
3955 if (xfs_ipincount(ip
) ||
3956 !xfs_iflock_nowait(ip
)) {
3957 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
3961 XFS_MOUNT_IUNLOCK(mp
);
3962 if (xfs_finish_reclaim(ip
, noblock
,
3963 XFS_IFLUSH_DELWRI_ELSE_ASYNC
))
3972 XFS_MOUNT_IUNLOCK(mp
);
3977 * xfs_alloc_file_space()
3978 * This routine allocates disk space for the given file.
3980 * If alloc_type == 0, this request is for an ALLOCSP type
3981 * request which will change the file size. In this case, no
3982 * DMAPI event will be generated by the call. A TRUNCATE event
3983 * will be generated later by xfs_setattr.
3985 * If alloc_type != 0, this request is for a RESVSP type
3986 * request, and a DMAPI DM_EVENT_WRITE will be generated if the
3987 * lower block boundary byte address is less than the file's
3996 xfs_alloc_file_space(
4003 xfs_mount_t
*mp
= ip
->i_mount
;
4005 xfs_filblks_t allocated_fsb
;
4006 xfs_filblks_t allocatesize_fsb
;
4007 xfs_extlen_t extsz
, temp
;
4008 xfs_fileoff_t startoffset_fsb
;
4009 xfs_fsblock_t firstfsb
;
4015 xfs_bmbt_irec_t imaps
[1], *imapp
;
4016 xfs_bmap_free_t free_list
;
4017 uint qblocks
, resblks
, resrtextents
;
4021 vn_trace_entry(XFS_ITOV(ip
), __FUNCTION__
, (inst_t
*)__return_address
);
4023 if (XFS_FORCED_SHUTDOWN(mp
))
4024 return XFS_ERROR(EIO
);
4026 rt
= XFS_IS_REALTIME_INODE(ip
);
4028 if (!(extsz
= ip
->i_d
.di_extsize
))
4029 extsz
= mp
->m_sb
.sb_rextsize
;
4031 extsz
= ip
->i_d
.di_extsize
;
4034 if ((error
= XFS_QM_DQATTACH(mp
, ip
, 0)))
4038 return XFS_ERROR(EINVAL
);
4044 bmapi_flag
= XFS_BMAPI_WRITE
| (alloc_type
? XFS_BMAPI_PREALLOC
: 0);
4045 startoffset_fsb
= XFS_B_TO_FSBT(mp
, offset
);
4046 allocatesize_fsb
= XFS_B_TO_FSB(mp
, count
);
4048 /* Generate a DMAPI event if needed. */
4049 if (alloc_type
!= 0 && offset
< ip
->i_d
.di_size
&&
4050 (attr_flags
&ATTR_DMI
) == 0 &&
4051 DM_EVENT_ENABLED(XFS_MTOVFS(mp
), ip
, DM_EVENT_WRITE
)) {
4052 xfs_off_t end_dmi_offset
;
4054 end_dmi_offset
= offset
+len
;
4055 if (end_dmi_offset
> ip
->i_d
.di_size
)
4056 end_dmi_offset
= ip
->i_d
.di_size
;
4057 error
= XFS_SEND_DATA(mp
, DM_EVENT_WRITE
, XFS_ITOV(ip
),
4058 offset
, end_dmi_offset
- offset
,
4065 * Allocate file space until done or until there is an error
4068 while (allocatesize_fsb
&& !error
) {
4072 * Determine space reservations for data/realtime.
4074 if (unlikely(extsz
)) {
4075 s
= startoffset_fsb
;
4078 e
= startoffset_fsb
+ allocatesize_fsb
;
4079 if ((temp
= do_mod(startoffset_fsb
, extsz
)))
4081 if ((temp
= do_mod(e
, extsz
)))
4085 e
= allocatesize_fsb
;
4089 resrtextents
= qblocks
= (uint
)(e
- s
);
4090 resrtextents
/= mp
->m_sb
.sb_rextsize
;
4091 resblks
= XFS_DIOSTRAT_SPACE_RES(mp
, 0);
4092 quota_flag
= XFS_QMOPT_RES_RTBLKS
;
4095 resblks
= qblocks
= \
4096 XFS_DIOSTRAT_SPACE_RES(mp
, (uint
)(e
- s
));
4097 quota_flag
= XFS_QMOPT_RES_REGBLKS
;
4101 * Allocate and setup the transaction.
4103 tp
= xfs_trans_alloc(mp
, XFS_TRANS_DIOSTRAT
);
4104 error
= xfs_trans_reserve(tp
, resblks
,
4105 XFS_WRITE_LOG_RES(mp
), resrtextents
,
4106 XFS_TRANS_PERM_LOG_RES
,
4107 XFS_WRITE_LOG_COUNT
);
4109 * Check for running out of space
4113 * Free the transaction structure.
4115 ASSERT(error
== ENOSPC
|| XFS_FORCED_SHUTDOWN(mp
));
4116 xfs_trans_cancel(tp
, 0);
4119 xfs_ilock(ip
, XFS_ILOCK_EXCL
);
4120 error
= XFS_TRANS_RESERVE_QUOTA_NBLKS(mp
, tp
, ip
,
4121 qblocks
, 0, quota_flag
);
4125 xfs_trans_ijoin(tp
, ip
, XFS_ILOCK_EXCL
);
4126 xfs_trans_ihold(tp
, ip
);
4129 * Issue the xfs_bmapi() call to allocate the blocks
4131 XFS_BMAP_INIT(&free_list
, &firstfsb
);
4132 error
= XFS_BMAPI(mp
, tp
, &ip
->i_iocore
, startoffset_fsb
,
4133 allocatesize_fsb
, bmapi_flag
,
4134 &firstfsb
, 0, imapp
, &nimaps
,
4141 * Complete the transaction
4143 error
= xfs_bmap_finish(&tp
, &free_list
, firstfsb
, &committed
);
4148 error
= xfs_trans_commit(tp
, XFS_TRANS_RELEASE_LOG_RES
, NULL
);
4149 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
4154 allocated_fsb
= imapp
->br_blockcount
;
4157 error
= XFS_ERROR(ENOSPC
);
4161 startoffset_fsb
+= allocated_fsb
;
4162 allocatesize_fsb
-= allocated_fsb
;
4165 if (error
== ENOSPC
&& (attr_flags
&ATTR_DMI
) == 0 &&
4166 DM_EVENT_ENABLED(XFS_MTOVFS(mp
), ip
, DM_EVENT_NOSPACE
)) {
4168 error
= XFS_SEND_NAMESP(mp
, DM_EVENT_NOSPACE
,
4169 XFS_ITOV(ip
), DM_RIGHT_NULL
,
4170 XFS_ITOV(ip
), DM_RIGHT_NULL
,
4171 NULL
, NULL
, 0, 0, 0); /* Delay flag intentionally unused */
4173 goto retry
; /* Maybe DMAPI app. has made space */
4174 /* else fall through with error from XFS_SEND_DATA */
4179 error0
: /* Cancel bmap, unlock inode, unreserve quota blocks, cancel trans */
4180 xfs_bmap_cancel(&free_list
);
4181 XFS_TRANS_UNRESERVE_QUOTA_NBLKS(mp
, tp
, ip
, qblocks
, 0, quota_flag
);
4183 error1
: /* Just cancel transaction */
4184 xfs_trans_cancel(tp
, XFS_TRANS_RELEASE_LOG_RES
| XFS_TRANS_ABORT
);
4185 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
4186 goto dmapi_enospc_check
;
4190 * Zero file bytes between startoff and endoff inclusive.
4191 * The iolock is held exclusive and no blocks are buffered.
4194 xfs_zero_remaining_bytes(
4199 xfs_bmbt_irec_t imap
;
4200 xfs_fileoff_t offset_fsb
;
4201 xfs_off_t lastoffset
;
4204 xfs_mount_t
*mp
= ip
->i_mount
;
4208 bp
= xfs_buf_get_noaddr(mp
->m_sb
.sb_blocksize
,
4209 ip
->i_d
.di_flags
& XFS_DIFLAG_REALTIME
?
4210 mp
->m_rtdev_targp
: mp
->m_ddev_targp
);
4212 for (offset
= startoff
; offset
<= endoff
; offset
= lastoffset
+ 1) {
4213 offset_fsb
= XFS_B_TO_FSBT(mp
, offset
);
4215 error
= XFS_BMAPI(mp
, NULL
, &ip
->i_iocore
, offset_fsb
, 1, 0,
4216 NULL
, 0, &imap
, &nimap
, NULL
, NULL
);
4217 if (error
|| nimap
< 1)
4219 ASSERT(imap
.br_blockcount
>= 1);
4220 ASSERT(imap
.br_startoff
== offset_fsb
);
4221 lastoffset
= XFS_FSB_TO_B(mp
, imap
.br_startoff
+ 1) - 1;
4222 if (lastoffset
> endoff
)
4223 lastoffset
= endoff
;
4224 if (imap
.br_startblock
== HOLESTARTBLOCK
)
4226 ASSERT(imap
.br_startblock
!= DELAYSTARTBLOCK
);
4227 if (imap
.br_state
== XFS_EXT_UNWRITTEN
)
4230 XFS_BUF_UNWRITE(bp
);
4232 XFS_BUF_SET_ADDR(bp
, XFS_FSB_TO_DB(ip
, imap
.br_startblock
));
4234 if ((error
= xfs_iowait(bp
))) {
4235 xfs_ioerror_alert("xfs_zero_remaining_bytes(read)",
4236 mp
, bp
, XFS_BUF_ADDR(bp
));
4239 memset(XFS_BUF_PTR(bp
) +
4240 (offset
- XFS_FSB_TO_B(mp
, imap
.br_startoff
)),
4241 0, lastoffset
- offset
+ 1);
4246 if ((error
= xfs_iowait(bp
))) {
4247 xfs_ioerror_alert("xfs_zero_remaining_bytes(write)",
4248 mp
, bp
, XFS_BUF_ADDR(bp
));
4257 * xfs_free_file_space()
4258 * This routine frees disk space for the given file.
4260 * This routine is only called by xfs_change_file_space
4261 * for an UNRESVSP type call.
4269 xfs_free_file_space(
4278 xfs_off_t end_dmi_offset
;
4279 xfs_fileoff_t endoffset_fsb
;
4281 xfs_fsblock_t firstfsb
;
4282 xfs_bmap_free_t free_list
;
4284 xfs_bmbt_irec_t imap
;
4292 xfs_fileoff_t startoffset_fsb
;
4294 int need_iolock
= 1;
4299 vn_trace_entry(vp
, __FUNCTION__
, (inst_t
*)__return_address
);
4301 if ((error
= XFS_QM_DQATTACH(mp
, ip
, 0)))
4305 if (len
<= 0) /* if nothing being freed */
4307 rt
= (ip
->i_d
.di_flags
& XFS_DIFLAG_REALTIME
);
4308 startoffset_fsb
= XFS_B_TO_FSB(mp
, offset
);
4309 end_dmi_offset
= offset
+ len
;
4310 endoffset_fsb
= XFS_B_TO_FSBT(mp
, end_dmi_offset
);
4312 if (offset
< ip
->i_d
.di_size
&&
4313 (attr_flags
& ATTR_DMI
) == 0 &&
4314 DM_EVENT_ENABLED(XFS_MTOVFS(mp
), ip
, DM_EVENT_WRITE
)) {
4315 if (end_dmi_offset
> ip
->i_d
.di_size
)
4316 end_dmi_offset
= ip
->i_d
.di_size
;
4317 error
= XFS_SEND_DATA(mp
, DM_EVENT_WRITE
, vp
,
4318 offset
, end_dmi_offset
- offset
,
4319 AT_DELAY_FLAG(attr_flags
), NULL
);
4324 if (attr_flags
& ATTR_NOLOCK
)
4327 xfs_ilock(ip
, XFS_IOLOCK_EXCL
);
4328 vn_iowait(vp
); /* wait for the completion of any pending DIOs */
4331 rounding
= max_t(uint
, 1 << mp
->m_sb
.sb_blocklog
, NBPP
);
4332 ilen
= len
+ (offset
& (rounding
- 1));
4333 ioffset
= offset
& ~(rounding
- 1);
4334 if (ilen
& (rounding
- 1))
4335 ilen
= (ilen
+ rounding
) & ~(rounding
- 1);
4337 if (VN_CACHED(vp
) != 0) {
4338 xfs_inval_cached_trace(&ip
->i_iocore
, ioffset
, -1,
4339 ctooff(offtoct(ioffset
)), -1);
4340 bhv_vop_flushinval_pages(vp
, ctooff(offtoct(ioffset
)),
4341 -1, FI_REMAPF_LOCKED
);
4345 * Need to zero the stuff we're not freeing, on disk.
4346 * If its a realtime file & can't use unwritten extents then we
4347 * actually need to zero the extent edges. Otherwise xfs_bunmapi
4348 * will take care of it for us.
4350 if (rt
&& !XFS_SB_VERSION_HASEXTFLGBIT(&mp
->m_sb
)) {
4352 error
= XFS_BMAPI(mp
, NULL
, &ip
->i_iocore
, startoffset_fsb
,
4353 1, 0, NULL
, 0, &imap
, &nimap
, NULL
, NULL
);
4355 goto out_unlock_iolock
;
4356 ASSERT(nimap
== 0 || nimap
== 1);
4357 if (nimap
&& imap
.br_startblock
!= HOLESTARTBLOCK
) {
4360 ASSERT(imap
.br_startblock
!= DELAYSTARTBLOCK
);
4361 block
= imap
.br_startblock
;
4362 mod
= do_div(block
, mp
->m_sb
.sb_rextsize
);
4364 startoffset_fsb
+= mp
->m_sb
.sb_rextsize
- mod
;
4367 error
= XFS_BMAPI(mp
, NULL
, &ip
->i_iocore
, endoffset_fsb
- 1,
4368 1, 0, NULL
, 0, &imap
, &nimap
, NULL
, NULL
);
4370 goto out_unlock_iolock
;
4371 ASSERT(nimap
== 0 || nimap
== 1);
4372 if (nimap
&& imap
.br_startblock
!= HOLESTARTBLOCK
) {
4373 ASSERT(imap
.br_startblock
!= DELAYSTARTBLOCK
);
4375 if (mod
&& (mod
!= mp
->m_sb
.sb_rextsize
))
4376 endoffset_fsb
-= mod
;
4379 if ((done
= (endoffset_fsb
<= startoffset_fsb
)))
4381 * One contiguous piece to clear
4383 error
= xfs_zero_remaining_bytes(ip
, offset
, offset
+ len
- 1);
4386 * Some full blocks, possibly two pieces to clear
4388 if (offset
< XFS_FSB_TO_B(mp
, startoffset_fsb
))
4389 error
= xfs_zero_remaining_bytes(ip
, offset
,
4390 XFS_FSB_TO_B(mp
, startoffset_fsb
) - 1);
4392 XFS_FSB_TO_B(mp
, endoffset_fsb
) < offset
+ len
)
4393 error
= xfs_zero_remaining_bytes(ip
,
4394 XFS_FSB_TO_B(mp
, endoffset_fsb
),
4399 * free file space until done or until there is an error
4401 resblks
= XFS_DIOSTRAT_SPACE_RES(mp
, 0);
4402 while (!error
&& !done
) {
4405 * allocate and setup the transaction
4407 tp
= xfs_trans_alloc(mp
, XFS_TRANS_DIOSTRAT
);
4408 error
= xfs_trans_reserve(tp
,
4410 XFS_WRITE_LOG_RES(mp
),
4412 XFS_TRANS_PERM_LOG_RES
,
4413 XFS_WRITE_LOG_COUNT
);
4416 * check for running out of space
4420 * Free the transaction structure.
4422 ASSERT(error
== ENOSPC
|| XFS_FORCED_SHUTDOWN(mp
));
4423 xfs_trans_cancel(tp
, 0);
4426 xfs_ilock(ip
, XFS_ILOCK_EXCL
);
4427 error
= XFS_TRANS_RESERVE_QUOTA(mp
, tp
,
4428 ip
->i_udquot
, ip
->i_gdquot
, resblks
, 0,
4429 XFS_QMOPT_RES_REGBLKS
);
4433 xfs_trans_ijoin(tp
, ip
, XFS_ILOCK_EXCL
);
4434 xfs_trans_ihold(tp
, ip
);
4437 * issue the bunmapi() call to free the blocks
4439 XFS_BMAP_INIT(&free_list
, &firstfsb
);
4440 error
= XFS_BUNMAPI(mp
, tp
, &ip
->i_iocore
, startoffset_fsb
,
4441 endoffset_fsb
- startoffset_fsb
,
4442 0, 2, &firstfsb
, &free_list
, NULL
, &done
);
4448 * complete the transaction
4450 error
= xfs_bmap_finish(&tp
, &free_list
, firstfsb
, &committed
);
4455 error
= xfs_trans_commit(tp
, XFS_TRANS_RELEASE_LOG_RES
, NULL
);
4456 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
4461 xfs_iunlock(ip
, XFS_IOLOCK_EXCL
);
4465 xfs_bmap_cancel(&free_list
);
4467 xfs_trans_cancel(tp
, XFS_TRANS_RELEASE_LOG_RES
| XFS_TRANS_ABORT
);
4468 xfs_iunlock(ip
, need_iolock
? (XFS_ILOCK_EXCL
| XFS_IOLOCK_EXCL
) :
4474 * xfs_change_file_space()
4475 * This routine allocates or frees disk space for the given file.
4476 * The user specified parameters are checked for alignment and size
4485 xfs_change_file_space(
4499 xfs_off_t startoffset
;
4505 vp
= BHV_TO_VNODE(bdp
);
4506 vn_trace_entry(vp
, __FUNCTION__
, (inst_t
*)__return_address
);
4508 ip
= XFS_BHVTOI(bdp
);
4512 * must be a regular file and have write permission
4515 return XFS_ERROR(EINVAL
);
4517 xfs_ilock(ip
, XFS_ILOCK_SHARED
);
4519 if ((error
= xfs_iaccess(ip
, S_IWUSR
, credp
))) {
4520 xfs_iunlock(ip
, XFS_ILOCK_SHARED
);
4524 xfs_iunlock(ip
, XFS_ILOCK_SHARED
);
4526 switch (bf
->l_whence
) {
4527 case 0: /*SEEK_SET*/
4529 case 1: /*SEEK_CUR*/
4530 bf
->l_start
+= offset
;
4532 case 2: /*SEEK_END*/
4533 bf
->l_start
+= ip
->i_d
.di_size
;
4536 return XFS_ERROR(EINVAL
);
4539 llen
= bf
->l_len
> 0 ? bf
->l_len
- 1 : bf
->l_len
;
4541 if ( (bf
->l_start
< 0)
4542 || (bf
->l_start
> XFS_MAXIOFFSET(mp
))
4543 || (bf
->l_start
+ llen
< 0)
4544 || (bf
->l_start
+ llen
> XFS_MAXIOFFSET(mp
)))
4545 return XFS_ERROR(EINVAL
);
4549 startoffset
= bf
->l_start
;
4550 fsize
= ip
->i_d
.di_size
;
4553 * XFS_IOC_RESVSP and XFS_IOC_UNRESVSP will reserve or unreserve
4555 * These calls do NOT zero the data space allocated to the file,
4556 * nor do they change the file size.
4558 * XFS_IOC_ALLOCSP and XFS_IOC_FREESP will allocate and free file
4560 * These calls cause the new file data to be zeroed and the file
4561 * size to be changed.
4563 setprealloc
= clrprealloc
= 0;
4566 case XFS_IOC_RESVSP
:
4567 case XFS_IOC_RESVSP64
:
4568 error
= xfs_alloc_file_space(ip
, startoffset
, bf
->l_len
,
4575 case XFS_IOC_UNRESVSP
:
4576 case XFS_IOC_UNRESVSP64
:
4577 if ((error
= xfs_free_file_space(ip
, startoffset
, bf
->l_len
,
4582 case XFS_IOC_ALLOCSP
:
4583 case XFS_IOC_ALLOCSP64
:
4584 case XFS_IOC_FREESP
:
4585 case XFS_IOC_FREESP64
:
4586 if (startoffset
> fsize
) {
4587 error
= xfs_alloc_file_space(ip
, fsize
,
4588 startoffset
- fsize
, 0, attr_flags
);
4593 va
.va_mask
= XFS_AT_SIZE
;
4594 va
.va_size
= startoffset
;
4596 error
= xfs_setattr(bdp
, &va
, attr_flags
, credp
);
4606 return XFS_ERROR(EINVAL
);
4610 * update the inode timestamp, mode, and prealloc flag bits
4612 tp
= xfs_trans_alloc(mp
, XFS_TRANS_WRITEID
);
4614 if ((error
= xfs_trans_reserve(tp
, 0, XFS_WRITEID_LOG_RES(mp
),
4617 xfs_trans_cancel(tp
, 0);
4621 xfs_ilock(ip
, XFS_ILOCK_EXCL
);
4623 xfs_trans_ijoin(tp
, ip
, XFS_ILOCK_EXCL
);
4624 xfs_trans_ihold(tp
, ip
);
4626 if ((attr_flags
& ATTR_DMI
) == 0) {
4627 ip
->i_d
.di_mode
&= ~S_ISUID
;
4630 * Note that we don't have to worry about mandatory
4631 * file locking being disabled here because we only
4632 * clear the S_ISGID bit if the Group execute bit is
4633 * on, but if it was on then mandatory locking wouldn't
4634 * have been enabled.
4636 if (ip
->i_d
.di_mode
& S_IXGRP
)
4637 ip
->i_d
.di_mode
&= ~S_ISGID
;
4639 xfs_ichgtime(ip
, XFS_ICHGTIME_MOD
| XFS_ICHGTIME_CHG
);
4642 ip
->i_d
.di_flags
|= XFS_DIFLAG_PREALLOC
;
4643 else if (clrprealloc
)
4644 ip
->i_d
.di_flags
&= ~XFS_DIFLAG_PREALLOC
;
4646 xfs_trans_log_inode(tp
, ip
, XFS_ILOG_CORE
);
4647 xfs_trans_set_sync(tp
);
4649 error
= xfs_trans_commit(tp
, 0, NULL
);
4651 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
4656 bhv_vnodeops_t xfs_vnodeops
= {
4657 BHV_IDENTITY_INIT(VN_BHV_XFS
,VNODE_POSITION_XFS
),
4658 .vop_open
= xfs_open
,
4659 .vop_close
= xfs_close
,
4660 .vop_read
= xfs_read
,
4661 #ifdef HAVE_SENDFILE
4662 .vop_sendfile
= xfs_sendfile
,
4665 .vop_splice_read
= xfs_splice_read
,
4666 .vop_splice_write
= xfs_splice_write
,
4668 .vop_write
= xfs_write
,
4669 .vop_ioctl
= xfs_ioctl
,
4670 .vop_getattr
= xfs_getattr
,
4671 .vop_setattr
= xfs_setattr
,
4672 .vop_access
= xfs_access
,
4673 .vop_lookup
= xfs_lookup
,
4674 .vop_create
= xfs_create
,
4675 .vop_remove
= xfs_remove
,
4676 .vop_link
= xfs_link
,
4677 .vop_rename
= xfs_rename
,
4678 .vop_mkdir
= xfs_mkdir
,
4679 .vop_rmdir
= xfs_rmdir
,
4680 .vop_readdir
= xfs_readdir
,
4681 .vop_symlink
= xfs_symlink
,
4682 .vop_readlink
= xfs_readlink
,
4683 .vop_fsync
= xfs_fsync
,
4684 .vop_inactive
= xfs_inactive
,
4685 .vop_fid2
= xfs_fid2
,
4686 .vop_rwlock
= xfs_rwlock
,
4687 .vop_rwunlock
= xfs_rwunlock
,
4688 .vop_bmap
= xfs_bmap
,
4689 .vop_reclaim
= xfs_reclaim
,
4690 .vop_attr_get
= xfs_attr_get
,
4691 .vop_attr_set
= xfs_attr_set
,
4692 .vop_attr_remove
= xfs_attr_remove
,
4693 .vop_attr_list
= xfs_attr_list
,
4694 .vop_link_removed
= (vop_link_removed_t
)fs_noval
,
4695 .vop_vnode_change
= (vop_vnode_change_t
)fs_noval
,
4696 .vop_tosspages
= fs_tosspages
,
4697 .vop_flushinval_pages
= fs_flushinval_pages
,
4698 .vop_flush_pages
= fs_flush_pages
,
4699 .vop_release
= xfs_release
,
4700 .vop_iflush
= xfs_inode_flush
,