2 * Copyright (c) 2000-2005 Silicon Graphics, Inc. All Rights Reserved.
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of version 2 of the GNU General Public License as
6 * published by the Free Software Foundation.
8 * This program is distributed in the hope that it would be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12 * Further, this software is distributed without any warranty that it is
13 * free of the rightful claim of any third person regarding infringement
14 * or the like. Any license provided herein, whether implied or
15 * otherwise, applies only to this software file. Patent licenses, if
16 * any, provided herein do not apply to combinations of this program with
17 * other software, or any other product whatsoever.
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write the Free Software Foundation, Inc., 59
21 * Temple Place - Suite 330, Boston MA 02111-1307, USA.
23 * Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
24 * Mountain View, CA 94043, or:
28 * For further information regarding this notice, see:
30 * http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
34 #include "xfs_macros.h"
35 #include "xfs_types.h"
38 #include "xfs_trans.h"
43 #include "xfs_dmapi.h"
44 #include "xfs_mount.h"
45 #include "xfs_alloc_btree.h"
46 #include "xfs_bmap_btree.h"
47 #include "xfs_ialloc_btree.h"
48 #include "xfs_itable.h"
49 #include "xfs_btree.h"
50 #include "xfs_ialloc.h"
51 #include "xfs_alloc.h"
52 #include "xfs_attr_sf.h"
53 #include "xfs_dir_sf.h"
54 #include "xfs_dir2_sf.h"
55 #include "xfs_dinode.h"
56 #include "xfs_inode_item.h"
57 #include "xfs_inode.h"
59 #include "xfs_da_btree.h"
62 #include "xfs_refcache.h"
63 #include "xfs_error.h"
65 #include "xfs_rtalloc.h"
66 #include "xfs_quota.h"
67 #include "xfs_utils.h"
68 #include "xfs_trans_space.h"
69 #include "xfs_dir_leaf.h"
71 #include "xfs_log_priv.h"
75 * The maximum pathlen is 1024 bytes. Since the minimum file system
76 * blocksize is 512 bytes, we can get a max of 2 extents back from
79 #define SYMLINK_MAPS 2
82 * For xfs, we check that the file isn't too big to be opened by this kernel.
83 * No other open action is required for regular files. Devices are handled
84 * through the specfs file system, pipes through fifofs. Device and
85 * fifo vnodes are "wrapped" by specfs and fifofs vnodes, respectively,
86 * when a new vnode is first looked up or created.
97 vp = BHV_TO_VNODE(bdp);
100 if (XFS_FORCED_SHUTDOWN(ip->i_mount))
101 return XFS_ERROR(EIO);
104 * If it's a directory with any blocks, read-ahead block 0
105 * as we're almost certain to have the next operation be a read there.
107 if (VN_ISDIR(vp) && ip->i_d.di_nextents > 0) {
108 mode = xfs_ilock_map_shared(ip);
109 if (ip->i_d.di_nextents > 0)
110 (void)xfs_da_reada_buf(NULL, ip, 0, XFS_DATA_FORK);
111 xfs_iunlock(ip, mode);
131 vp = BHV_TO_VNODE(bdp);
132 vn_trace_entry(vp, __FUNCTION__, (inst_t *)__return_address);
134 ip = XFS_BHVTOI(bdp);
137 if (XFS_FORCED_SHUTDOWN(mp))
138 return XFS_ERROR(EIO);
140 if (!(flags & ATTR_LAZY))
141 xfs_ilock(ip, XFS_ILOCK_SHARED);
143 vap->va_size = ip->i_d.di_size;
144 if (vap->va_mask == XFS_AT_SIZE)
148 XFS_FSB_TO_BB(mp, ip->i_d.di_nblocks + ip->i_delayed_blks);
149 vap->va_nodeid = ip->i_ino;
151 vap->va_nodeid += mp->m_inoadd;
153 vap->va_nlink = ip->i_d.di_nlink;
156 * Quick exit for non-stat callers
159 ~(XFS_AT_SIZE|XFS_AT_FSID|XFS_AT_NODEID|
160 XFS_AT_NLINK|XFS_AT_BLKSIZE)) == 0)
164 * Copy from in-core inode.
166 vap->va_mode = ip->i_d.di_mode;
167 vap->va_uid = ip->i_d.di_uid;
168 vap->va_gid = ip->i_d.di_gid;
169 vap->va_projid = ip->i_d.di_projid;
172 * Check vnode type block/char vs. everything else.
174 switch (ip->i_d.di_mode & S_IFMT) {
177 vap->va_rdev = ip->i_df.if_u2.if_rdev;
178 vap->va_blocksize = BLKDEV_IOSIZE;
183 if (!(ip->i_d.di_flags & XFS_DIFLAG_REALTIME)) {
186 /* Large block sizes confuse various
187 * user space programs, so letting the
188 * stripe size through is not a good
191 vap->va_blocksize = mp->m_swidth ?
193 * If the underlying volume is a stripe, then
194 * return the stripe width in bytes as the
195 * recommended I/O size.
197 (mp->m_swidth << mp->m_sb.sb_blocklog) :
199 * Return the largest of the preferred buffer
200 * sizes since doing small I/Os into larger
201 * buffers causes buffers to be decommissioned.
202 * The value returned is in bytes.
204 (1 << (int)MAX(mp->m_readio_log,
210 * Return the largest of the preferred buffer
211 * sizes since doing small I/Os into larger
212 * buffers causes buffers to be decommissioned.
213 * The value returned is in bytes.
215 1 << (int)MAX(mp->m_readio_log,
221 * If the file blocks are being allocated from a
222 * realtime partition, then return the inode's
223 * realtime extent size or the realtime volume's
226 vap->va_blocksize = ip->i_d.di_extsize ?
227 (ip->i_d.di_extsize << mp->m_sb.sb_blocklog) :
228 (mp->m_sb.sb_rextsize << mp->m_sb.sb_blocklog);
233 vap->va_atime.tv_sec = ip->i_d.di_atime.t_sec;
234 vap->va_atime.tv_nsec = ip->i_d.di_atime.t_nsec;
235 vap->va_mtime.tv_sec = ip->i_d.di_mtime.t_sec;
236 vap->va_mtime.tv_nsec = ip->i_d.di_mtime.t_nsec;
237 vap->va_ctime.tv_sec = ip->i_d.di_ctime.t_sec;
238 vap->va_ctime.tv_nsec = ip->i_d.di_ctime.t_nsec;
241 * Exit for stat callers. See if any of the rest of the fields
242 * to be filled in are needed.
245 (XFS_AT_XFLAGS|XFS_AT_EXTSIZE|XFS_AT_NEXTENTS|XFS_AT_ANEXTENTS|
246 XFS_AT_GENCOUNT|XFS_AT_VCODE)) == 0)
250 * Convert di_flags to xflags.
252 vap->va_xflags = xfs_ip2xflags(ip);
255 * Exit for inode revalidate. See if any of the rest of
256 * the fields to be filled in are needed.
259 (XFS_AT_EXTSIZE|XFS_AT_NEXTENTS|XFS_AT_ANEXTENTS|
260 XFS_AT_GENCOUNT|XFS_AT_VCODE)) == 0)
263 vap->va_extsize = ip->i_d.di_extsize << mp->m_sb.sb_blocklog;
265 (ip->i_df.if_flags & XFS_IFEXTENTS) ?
266 ip->i_df.if_bytes / sizeof(xfs_bmbt_rec_t) :
270 (ip->i_afp->if_flags & XFS_IFEXTENTS) ?
271 ip->i_afp->if_bytes / sizeof(xfs_bmbt_rec_t) :
272 ip->i_d.di_anextents;
274 vap->va_anextents = 0;
275 vap->va_gen = ip->i_d.di_gen;
278 if (!(flags & ATTR_LAZY))
279 xfs_iunlock(ip, XFS_ILOCK_SHARED);
305 xfs_prid_t projid=0, iprojid=0;
306 int mandlock_before, mandlock_after;
307 struct xfs_dquot *udqp, *gdqp, *olddquot1, *olddquot2;
311 vp = BHV_TO_VNODE(bdp);
312 vn_trace_entry(vp, __FUNCTION__, (inst_t *)__return_address);
314 if (vp->v_vfsp->vfs_flag & VFS_RDONLY)
315 return XFS_ERROR(EROFS);
318 * Cannot set certain attributes.
321 if (mask & XFS_AT_NOSET) {
322 return XFS_ERROR(EINVAL);
325 ip = XFS_BHVTOI(bdp);
328 if (XFS_FORCED_SHUTDOWN(mp))
329 return XFS_ERROR(EIO);
332 * Timestamps do not need to be logged and hence do not
333 * need to be done within a transaction.
335 if (mask & XFS_AT_UPDTIMES) {
336 ASSERT((mask & ~XFS_AT_UPDTIMES) == 0);
337 timeflags = ((mask & XFS_AT_UPDATIME) ? XFS_ICHGTIME_ACC : 0) |
338 ((mask & XFS_AT_UPDCTIME) ? XFS_ICHGTIME_CHG : 0) |
339 ((mask & XFS_AT_UPDMTIME) ? XFS_ICHGTIME_MOD : 0);
340 xfs_ichgtime(ip, timeflags);
344 olddquot1 = olddquot2 = NULL;
348 * If disk quotas is on, we make sure that the dquots do exist on disk,
349 * before we start any other transactions. Trying to do this later
350 * is messy. We don't care to take a readlock to look at the ids
351 * in inode here, because we can't hold it across the trans_reserve.
352 * If the IDs do change before we take the ilock, we're covered
353 * because the i_*dquot fields will get updated anyway.
355 if (XFS_IS_QUOTA_ON(mp) &&
356 (mask & (XFS_AT_UID|XFS_AT_GID|XFS_AT_PROJID))) {
359 if ((mask & XFS_AT_UID) && XFS_IS_UQUOTA_ON(mp)) {
361 qflags |= XFS_QMOPT_UQUOTA;
363 uid = ip->i_d.di_uid;
365 if ((mask & XFS_AT_GID) && XFS_IS_GQUOTA_ON(mp)) {
367 qflags |= XFS_QMOPT_GQUOTA;
369 gid = ip->i_d.di_gid;
371 if ((mask & XFS_AT_PROJID) && XFS_IS_PQUOTA_ON(mp)) {
372 projid = vap->va_projid;
373 qflags |= XFS_QMOPT_PQUOTA;
375 projid = ip->i_d.di_projid;
378 * We take a reference when we initialize udqp and gdqp,
379 * so it is important that we never blindly double trip on
380 * the same variable. See xfs_create() for an example.
382 ASSERT(udqp == NULL);
383 ASSERT(gdqp == NULL);
384 code = XFS_QM_DQVOPALLOC(mp, ip, uid, gid, projid, qflags,
391 * For the other attributes, we acquire the inode lock and
392 * first do an error checking pass.
395 lock_flags = XFS_ILOCK_EXCL;
396 ASSERT(flags & ATTR_NOLOCK ? flags & ATTR_DMI : 1);
397 if (flags & ATTR_NOLOCK)
399 if (!(mask & XFS_AT_SIZE)) {
400 if ((mask != (XFS_AT_CTIME|XFS_AT_ATIME|XFS_AT_MTIME)) ||
401 (mp->m_flags & XFS_MOUNT_WSYNC)) {
402 tp = xfs_trans_alloc(mp, XFS_TRANS_SETATTR_NOT_SIZE);
404 if ((code = xfs_trans_reserve(tp, 0,
405 XFS_ICHANGE_LOG_RES(mp), 0,
412 if (DM_EVENT_ENABLED (vp->v_vfsp, ip, DM_EVENT_TRUNCATE) &&
413 !(flags & ATTR_DMI)) {
414 int dmflags = AT_DELAY_FLAG(flags) | DM_SEM_FLAG_WR;
415 code = XFS_SEND_DATA(mp, DM_EVENT_TRUNCATE, vp,
416 vap->va_size, 0, dmflags, NULL);
423 lock_flags |= XFS_IOLOCK_EXCL;
426 xfs_ilock(ip, lock_flags);
428 /* boolean: are we the file owner? */
429 file_owner = (current_fsuid(credp) == ip->i_d.di_uid);
432 * Change various properties of a file.
433 * Only the owner or users with CAP_FOWNER
434 * capability may do these things.
437 (XFS_AT_MODE|XFS_AT_XFLAGS|XFS_AT_EXTSIZE|XFS_AT_UID|
438 XFS_AT_GID|XFS_AT_PROJID)) {
440 * CAP_FOWNER overrides the following restrictions:
442 * The user ID of the calling process must be equal
443 * to the file owner ID, except in cases where the
444 * CAP_FSETID capability is applicable.
446 if (!file_owner && !capable(CAP_FOWNER)) {
447 code = XFS_ERROR(EPERM);
452 * CAP_FSETID overrides the following restrictions:
454 * The effective user ID of the calling process shall match
455 * the file owner when setting the set-user-ID and
456 * set-group-ID bits on that file.
458 * The effective group ID or one of the supplementary group
459 * IDs of the calling process shall match the group owner of
460 * the file when setting the set-group-ID bit on that file
462 if (mask & XFS_AT_MODE) {
465 if ((vap->va_mode & S_ISUID) && !file_owner)
467 if ((vap->va_mode & S_ISGID) &&
468 !in_group_p((gid_t)ip->i_d.di_gid))
471 /* Linux allows this, Irix doesn't. */
472 if ((vap->va_mode & S_ISVTX) && !VN_ISDIR(vp))
475 if (m && !capable(CAP_FSETID))
481 * Change file ownership. Must be the owner or privileged.
482 * If the system was configured with the "restricted_chown"
483 * option, the owner is not permitted to give away the file,
484 * and can change the group id only to a group of which he
485 * or she is a member.
487 if (mask & (XFS_AT_UID|XFS_AT_GID|XFS_AT_PROJID)) {
489 * These IDs could have changed since we last looked at them.
490 * But, we're assured that if the ownership did change
491 * while we didn't have the inode locked, inode's dquot(s)
492 * would have changed also.
494 iuid = ip->i_d.di_uid;
495 iprojid = ip->i_d.di_projid;
496 igid = ip->i_d.di_gid;
497 gid = (mask & XFS_AT_GID) ? vap->va_gid : igid;
498 uid = (mask & XFS_AT_UID) ? vap->va_uid : iuid;
499 projid = (mask & XFS_AT_PROJID) ? (xfs_prid_t)vap->va_projid :
503 * CAP_CHOWN overrides the following restrictions:
505 * If _POSIX_CHOWN_RESTRICTED is defined, this capability
506 * shall override the restriction that a process cannot
507 * change the user ID of a file it owns and the restriction
508 * that the group ID supplied to the chown() function
509 * shall be equal to either the group ID or one of the
510 * supplementary group IDs of the calling process.
512 if (restricted_chown &&
513 (iuid != uid || (igid != gid &&
514 !in_group_p((gid_t)gid))) &&
515 !capable(CAP_CHOWN)) {
516 code = XFS_ERROR(EPERM);
520 * Do a quota reservation only if uid/projid/gid is actually
523 if ((XFS_IS_UQUOTA_ON(mp) && iuid != uid) ||
524 (XFS_IS_PQUOTA_ON(mp) && iprojid != projid) ||
525 (XFS_IS_GQUOTA_ON(mp) && igid != gid)) {
527 code = XFS_QM_DQVOPCHOWNRESV(mp, tp, ip, udqp, gdqp,
528 capable(CAP_FOWNER) ?
529 XFS_QMOPT_FORCE_RES : 0);
530 if (code) /* out of quota */
536 * Truncate file. Must have write permission and not be a directory.
538 if (mask & XFS_AT_SIZE) {
539 /* Short circuit the truncate case for zero length files */
540 if ((vap->va_size == 0) &&
541 (ip->i_d.di_size == 0) && (ip->i_d.di_nextents == 0)) {
542 xfs_iunlock(ip, XFS_ILOCK_EXCL);
543 lock_flags &= ~XFS_ILOCK_EXCL;
544 if (mask & XFS_AT_CTIME)
545 xfs_ichgtime(ip, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
551 code = XFS_ERROR(EISDIR);
553 } else if (!VN_ISREG(vp)) {
554 code = XFS_ERROR(EINVAL);
558 * Make sure that the dquots are attached to the inode.
560 if ((code = XFS_QM_DQATTACH(mp, ip, XFS_QMOPT_ILOCKED)))
565 * Change file access or modified times.
567 if (mask & (XFS_AT_ATIME|XFS_AT_MTIME)) {
569 if ((flags & ATTR_UTIME) &&
570 !capable(CAP_FOWNER)) {
571 code = XFS_ERROR(EPERM);
578 * Change extent size or realtime flag.
580 if (mask & (XFS_AT_EXTSIZE|XFS_AT_XFLAGS)) {
582 * Can't change extent size if any extents are allocated.
584 if ((ip->i_d.di_nextents || ip->i_delayed_blks) &&
585 (mask & XFS_AT_EXTSIZE) &&
586 ((ip->i_d.di_extsize << mp->m_sb.sb_blocklog) !=
588 code = XFS_ERROR(EINVAL); /* EFBIG? */
593 * Can't set extent size unless the file is marked, or
594 * about to be marked as a realtime file.
596 * This check will be removed when fixed size extents
597 * with buffered data writes is implemented.
600 if ((mask & XFS_AT_EXTSIZE) &&
601 ((ip->i_d.di_extsize << mp->m_sb.sb_blocklog) !=
603 (!((ip->i_d.di_flags & XFS_DIFLAG_REALTIME) ||
604 ((mask & XFS_AT_XFLAGS) &&
605 (vap->va_xflags & XFS_XFLAG_REALTIME))))) {
606 code = XFS_ERROR(EINVAL);
611 * Can't change realtime flag if any extents are allocated.
613 if (ip->i_d.di_nextents && (mask & XFS_AT_XFLAGS) &&
614 (ip->i_d.di_flags & XFS_DIFLAG_REALTIME) !=
615 (vap->va_xflags & XFS_XFLAG_REALTIME)) {
616 code = XFS_ERROR(EINVAL); /* EFBIG? */
620 * Extent size must be a multiple of the appropriate block
621 * size, if set at all.
623 if ((mask & XFS_AT_EXTSIZE) && vap->va_extsize != 0) {
626 if ((ip->i_d.di_flags & XFS_DIFLAG_REALTIME) ||
627 ((mask & XFS_AT_XFLAGS) &&
628 (vap->va_xflags & XFS_XFLAG_REALTIME))) {
629 size = mp->m_sb.sb_rextsize <<
630 mp->m_sb.sb_blocklog;
632 size = mp->m_sb.sb_blocksize;
634 if (vap->va_extsize % size) {
635 code = XFS_ERROR(EINVAL);
640 * If realtime flag is set then must have realtime data.
642 if ((mask & XFS_AT_XFLAGS) &&
643 (vap->va_xflags & XFS_XFLAG_REALTIME)) {
644 if ((mp->m_sb.sb_rblocks == 0) ||
645 (mp->m_sb.sb_rextsize == 0) ||
646 (ip->i_d.di_extsize % mp->m_sb.sb_rextsize)) {
647 code = XFS_ERROR(EINVAL);
653 * Can't modify an immutable/append-only file unless
654 * we have appropriate permission.
656 if ((mask & XFS_AT_XFLAGS) &&
658 (XFS_DIFLAG_IMMUTABLE|XFS_DIFLAG_APPEND) ||
660 (XFS_XFLAG_IMMUTABLE | XFS_XFLAG_APPEND))) &&
661 !capable(CAP_LINUX_IMMUTABLE)) {
662 code = XFS_ERROR(EPERM);
668 * Now we can make the changes. Before we join the inode
669 * to the transaction, if XFS_AT_SIZE is set then take care of
670 * the part of the truncation that must be done without the
671 * inode lock. This needs to be done before joining the inode
672 * to the transaction, because the inode cannot be unlocked
673 * once it is a part of the transaction.
675 if (mask & XFS_AT_SIZE) {
677 if (vap->va_size > ip->i_d.di_size)
678 code = xfs_igrow_start(ip, vap->va_size, credp);
679 xfs_iunlock(ip, XFS_ILOCK_EXCL);
681 code = xfs_itruncate_data(ip, vap->va_size);
684 lock_flags &= ~XFS_ILOCK_EXCL;
685 ASSERT(lock_flags == XFS_IOLOCK_EXCL);
688 tp = xfs_trans_alloc(mp, XFS_TRANS_SETATTR_SIZE);
689 if ((code = xfs_trans_reserve(tp, 0,
690 XFS_ITRUNCATE_LOG_RES(mp), 0,
691 XFS_TRANS_PERM_LOG_RES,
692 XFS_ITRUNCATE_LOG_COUNT))) {
693 xfs_trans_cancel(tp, 0);
695 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
698 commit_flags = XFS_TRANS_RELEASE_LOG_RES;
699 xfs_ilock(ip, XFS_ILOCK_EXCL);
703 xfs_trans_ijoin(tp, ip, lock_flags);
704 xfs_trans_ihold(tp, ip);
707 /* determine whether mandatory locking mode changes */
708 mandlock_before = MANDLOCK(vp, ip->i_d.di_mode);
711 * Truncate file. Must have write permission and not be a directory.
713 if (mask & XFS_AT_SIZE) {
714 if (vap->va_size > ip->i_d.di_size) {
715 xfs_igrow_finish(tp, ip, vap->va_size,
716 !(flags & ATTR_DMI));
717 } else if ((vap->va_size <= ip->i_d.di_size) ||
718 ((vap->va_size == 0) && ip->i_d.di_nextents)) {
720 * signal a sync transaction unless
721 * we're truncating an already unlinked
722 * file on a wsync filesystem
724 code = xfs_itruncate_finish(&tp, ip,
725 (xfs_fsize_t)vap->va_size,
727 ((ip->i_d.di_nlink != 0 ||
728 !(mp->m_flags & XFS_MOUNT_WSYNC))
735 * Have to do this even if the file's size doesn't change.
737 timeflags |= XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG;
741 * Change file access modes.
743 if (mask & XFS_AT_MODE) {
744 ip->i_d.di_mode &= S_IFMT;
745 ip->i_d.di_mode |= vap->va_mode & ~S_IFMT;
747 xfs_trans_log_inode (tp, ip, XFS_ILOG_CORE);
748 timeflags |= XFS_ICHGTIME_CHG;
752 * Change file ownership. Must be the owner or privileged.
753 * If the system was configured with the "restricted_chown"
754 * option, the owner is not permitted to give away the file,
755 * and can change the group id only to a group of which he
756 * or she is a member.
758 if (mask & (XFS_AT_UID|XFS_AT_GID|XFS_AT_PROJID)) {
760 * CAP_FSETID overrides the following restrictions:
762 * The set-user-ID and set-group-ID bits of a file will be
763 * cleared upon successful return from chown()
765 if ((ip->i_d.di_mode & (S_ISUID|S_ISGID)) &&
766 !capable(CAP_FSETID)) {
767 ip->i_d.di_mode &= ~(S_ISUID|S_ISGID);
771 * Change the ownerships and register quota modifications
772 * in the transaction.
775 if (XFS_IS_UQUOTA_ON(mp)) {
776 ASSERT(mask & XFS_AT_UID);
778 olddquot1 = XFS_QM_DQVOPCHOWN(mp, tp, ip,
779 &ip->i_udquot, udqp);
781 ip->i_d.di_uid = uid;
784 if (XFS_IS_GQUOTA_ON(mp)) {
785 ASSERT(!XFS_IS_PQUOTA_ON(mp));
786 ASSERT(mask & XFS_AT_GID);
788 olddquot2 = XFS_QM_DQVOPCHOWN(mp, tp, ip,
789 &ip->i_gdquot, gdqp);
791 ip->i_d.di_gid = gid;
793 if (iprojid != projid) {
794 if (XFS_IS_PQUOTA_ON(mp)) {
795 ASSERT(!XFS_IS_GQUOTA_ON(mp));
796 ASSERT(mask & XFS_AT_PROJID);
798 olddquot2 = XFS_QM_DQVOPCHOWN(mp, tp, ip,
799 &ip->i_gdquot, gdqp);
801 ip->i_d.di_projid = projid;
803 * We may have to rev the inode as well as
804 * the superblock version number since projids didn't
805 * exist before DINODE_VERSION_2 and SB_VERSION_NLINK.
807 if (ip->i_d.di_version == XFS_DINODE_VERSION_1)
808 xfs_bump_ino_vers2(tp, ip);
811 xfs_trans_log_inode (tp, ip, XFS_ILOG_CORE);
812 timeflags |= XFS_ICHGTIME_CHG;
817 * Change file access or modified times.
819 if (mask & (XFS_AT_ATIME|XFS_AT_MTIME)) {
820 if (mask & XFS_AT_ATIME) {
821 ip->i_d.di_atime.t_sec = vap->va_atime.tv_sec;
822 ip->i_d.di_atime.t_nsec = vap->va_atime.tv_nsec;
823 ip->i_update_core = 1;
824 timeflags &= ~XFS_ICHGTIME_ACC;
826 if (mask & XFS_AT_MTIME) {
827 ip->i_d.di_mtime.t_sec = vap->va_mtime.tv_sec;
828 ip->i_d.di_mtime.t_nsec = vap->va_mtime.tv_nsec;
829 timeflags &= ~XFS_ICHGTIME_MOD;
830 timeflags |= XFS_ICHGTIME_CHG;
832 if (tp && (flags & ATTR_UTIME))
833 xfs_trans_log_inode (tp, ip, XFS_ILOG_CORE);
837 * Change XFS-added attributes.
839 if (mask & (XFS_AT_EXTSIZE|XFS_AT_XFLAGS)) {
840 if (mask & XFS_AT_EXTSIZE) {
842 * Converting bytes to fs blocks.
844 ip->i_d.di_extsize = vap->va_extsize >>
845 mp->m_sb.sb_blocklog;
847 if (mask & XFS_AT_XFLAGS) {
850 /* can't set PREALLOC this way, just preserve it */
851 di_flags = (ip->i_d.di_flags & XFS_DIFLAG_PREALLOC);
852 if (vap->va_xflags & XFS_XFLAG_IMMUTABLE)
853 di_flags |= XFS_DIFLAG_IMMUTABLE;
854 if (vap->va_xflags & XFS_XFLAG_APPEND)
855 di_flags |= XFS_DIFLAG_APPEND;
856 if (vap->va_xflags & XFS_XFLAG_SYNC)
857 di_flags |= XFS_DIFLAG_SYNC;
858 if (vap->va_xflags & XFS_XFLAG_NOATIME)
859 di_flags |= XFS_DIFLAG_NOATIME;
860 if (vap->va_xflags & XFS_XFLAG_NODUMP)
861 di_flags |= XFS_DIFLAG_NODUMP;
862 if (vap->va_xflags & XFS_XFLAG_PROJINHERIT)
863 di_flags |= XFS_DIFLAG_PROJINHERIT;
864 if ((ip->i_d.di_mode & S_IFMT) == S_IFDIR) {
865 if (vap->va_xflags & XFS_XFLAG_RTINHERIT)
866 di_flags |= XFS_DIFLAG_RTINHERIT;
867 if (vap->va_xflags & XFS_XFLAG_NOSYMLINKS)
868 di_flags |= XFS_DIFLAG_NOSYMLINKS;
870 if (vap->va_xflags & XFS_XFLAG_REALTIME) {
871 di_flags |= XFS_DIFLAG_REALTIME;
872 ip->i_iocore.io_flags |= XFS_IOCORE_RT;
874 ip->i_iocore.io_flags &= ~XFS_IOCORE_RT;
877 ip->i_d.di_flags = di_flags;
879 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
880 timeflags |= XFS_ICHGTIME_CHG;
884 * Change file inode change time only if XFS_AT_CTIME set
885 * AND we have been called by a DMI function.
888 if ( (flags & ATTR_DMI) && (mask & XFS_AT_CTIME) ) {
889 ip->i_d.di_ctime.t_sec = vap->va_ctime.tv_sec;
890 ip->i_d.di_ctime.t_nsec = vap->va_ctime.tv_nsec;
891 ip->i_update_core = 1;
892 timeflags &= ~XFS_ICHGTIME_CHG;
896 * Send out timestamp changes that need to be set to the
897 * current time. Not done when called by a DMI function.
899 if (timeflags && !(flags & ATTR_DMI))
900 xfs_ichgtime(ip, timeflags);
902 XFS_STATS_INC(xs_ig_attrchg);
905 * If this is a synchronous mount, make sure that the
906 * transaction goes to disk before returning to the user.
907 * This is slightly sub-optimal in that truncates require
908 * two sync transactions instead of one for wsync filesytems.
909 * One for the truncate and one for the timestamps since we
910 * don't want to change the timestamps unless we're sure the
911 * truncate worked. Truncates are less than 1% of the laddis
912 * mix so this probably isn't worth the trouble to optimize.
916 if (mp->m_flags & XFS_MOUNT_WSYNC)
917 xfs_trans_set_sync(tp);
919 code = xfs_trans_commit(tp, commit_flags, NULL);
923 * If the (regular) file's mandatory locking mode changed, then
924 * notify the vnode. We do this under the inode lock to prevent
925 * racing calls to vop_vnode_change.
927 mandlock_after = MANDLOCK(vp, ip->i_d.di_mode);
928 if (mandlock_before != mandlock_after) {
929 VOP_VNODE_CHANGE(vp, VCHANGE_FLAGS_ENF_LOCKING,
933 xfs_iunlock(ip, lock_flags);
936 * Release any dquot(s) the inode had kept before chown.
938 XFS_QM_DQRELE(mp, olddquot1);
939 XFS_QM_DQRELE(mp, olddquot2);
940 XFS_QM_DQRELE(mp, udqp);
941 XFS_QM_DQRELE(mp, gdqp);
947 if (DM_EVENT_ENABLED(vp->v_vfsp, ip, DM_EVENT_ATTRIBUTE) &&
948 !(flags & ATTR_DMI)) {
949 (void) XFS_SEND_NAMESP(mp, DM_EVENT_ATTRIBUTE, vp, DM_RIGHT_NULL,
950 NULL, DM_RIGHT_NULL, NULL, NULL,
951 0, 0, AT_DELAY_FLAG(flags));
956 commit_flags |= XFS_TRANS_ABORT;
959 XFS_QM_DQRELE(mp, udqp);
960 XFS_QM_DQRELE(mp, gdqp);
962 xfs_trans_cancel(tp, commit_flags);
964 if (lock_flags != 0) {
965 xfs_iunlock(ip, lock_flags);
973 * Null conversion from vnode mode bits to inode mode bits, as in efs.
984 vn_trace_entry(BHV_TO_VNODE(bdp), __FUNCTION__,
985 (inst_t *)__return_address);
987 ip = XFS_BHVTOI(bdp);
988 xfs_ilock(ip, XFS_ILOCK_SHARED);
989 error = xfs_iaccess(ip, mode, credp);
990 xfs_iunlock(ip, XFS_ILOCK_SHARED);
1014 xfs_bmbt_irec_t mval[SYMLINK_MAPS];
1020 vp = BHV_TO_VNODE(bdp);
1021 vn_trace_entry(vp, __FUNCTION__, (inst_t *)__return_address);
1023 ip = XFS_BHVTOI(bdp);
1026 if (XFS_FORCED_SHUTDOWN(mp))
1027 return XFS_ERROR(EIO);
1029 xfs_ilock(ip, XFS_ILOCK_SHARED);
1031 ASSERT((ip->i_d.di_mode & S_IFMT) == S_IFLNK);
1033 offset = uiop->uio_offset;
1034 count = uiop->uio_resid;
1037 error = XFS_ERROR(EINVAL);
1045 if (!(ioflags & IO_INVIS)) {
1046 xfs_ichgtime(ip, XFS_ICHGTIME_ACC);
1050 * See if the symlink is stored inline.
1052 pathlen = (int)ip->i_d.di_size;
1054 if (ip->i_df.if_flags & XFS_IFINLINE) {
1055 error = uio_read(ip->i_df.if_u1.if_data, pathlen, uiop);
1059 * Symlink not inline. Call bmap to get it in.
1061 nmaps = SYMLINK_MAPS;
1063 error = xfs_bmapi(NULL, ip, 0, XFS_B_TO_FSB(mp, pathlen),
1064 0, NULL, 0, mval, &nmaps, NULL);
1070 for (n = 0; n < nmaps; n++) {
1071 d = XFS_FSB_TO_DADDR(mp, mval[n].br_startblock);
1072 byte_cnt = XFS_FSB_TO_B(mp, mval[n].br_blockcount);
1073 bp = xfs_buf_read(mp->m_ddev_targp, d,
1074 BTOBB(byte_cnt), 0);
1075 error = XFS_BUF_GETERROR(bp);
1077 xfs_ioerror_alert("xfs_readlink",
1078 ip->i_mount, bp, XFS_BUF_ADDR(bp));
1082 if (pathlen < byte_cnt)
1084 pathlen -= byte_cnt;
1086 error = uio_read(XFS_BUF_PTR(bp), byte_cnt, uiop);
1095 xfs_iunlock(ip, XFS_ILOCK_SHARED);
1104 * This is called to sync the inode and its data out to disk.
1105 * We need to hold the I/O lock while flushing the data, and
1106 * the inode lock while flushing the inode. The inode lock CANNOT
1107 * be held while flushing the data, so acquire after we're done
1121 int log_flushed = 0, changed = 1;
1123 vn_trace_entry(BHV_TO_VNODE(bdp),
1124 __FUNCTION__, (inst_t *)__return_address);
1126 ip = XFS_BHVTOI(bdp);
1128 ASSERT(start >= 0 && stop >= -1);
1130 if (XFS_FORCED_SHUTDOWN(ip->i_mount))
1131 return XFS_ERROR(EIO);
1134 * We always need to make sure that the required inode state
1135 * is safe on disk. The vnode might be clean but because
1136 * of committed transactions that haven't hit the disk yet.
1137 * Likewise, there could be unflushed non-transactional
1138 * changes to the inode core that have to go to disk.
1140 * The following code depends on one assumption: that
1141 * any transaction that changes an inode logs the core
1142 * because it has to change some field in the inode core
1143 * (typically nextents or nblocks). That assumption
1144 * implies that any transactions against an inode will
1145 * catch any non-transactional updates. If inode-altering
1146 * transactions exist that violate this assumption, the
1147 * code breaks. Right now, it figures that if the involved
1148 * update_* field is clear and the inode is unpinned, the
1149 * inode is clean. Either it's been flushed or it's been
1150 * committed and the commit has hit the disk unpinning the inode.
1151 * (Note that xfs_inode_item_format() called at commit clears
1152 * the update_* fields.)
1154 xfs_ilock(ip, XFS_ILOCK_SHARED);
1156 /* If we are flushing data then we care about update_size
1157 * being set, otherwise we care about update_core
1159 if ((flag & FSYNC_DATA) ?
1160 (ip->i_update_size == 0) :
1161 (ip->i_update_core == 0)) {
1163 * Timestamps/size haven't changed since last inode
1164 * flush or inode transaction commit. That means
1165 * either nothing got written or a transaction
1166 * committed which caught the updates. If the
1167 * latter happened and the transaction hasn't
1168 * hit the disk yet, the inode will be still
1169 * be pinned. If it is, force the log.
1172 xfs_iunlock(ip, XFS_ILOCK_SHARED);
1174 if (xfs_ipincount(ip)) {
1175 _xfs_log_force(ip->i_mount, (xfs_lsn_t)0,
1177 ((flag & FSYNC_WAIT)
1178 ? XFS_LOG_SYNC : 0),
1182 * If the inode is not pinned and nothing
1183 * has changed we don't need to flush the
1191 * Kick off a transaction to log the inode
1192 * core to get the updates. Make it
1193 * sync if FSYNC_WAIT is passed in (which
1194 * is done by everybody but specfs). The
1195 * sync transaction will also force the log.
1197 xfs_iunlock(ip, XFS_ILOCK_SHARED);
1198 tp = xfs_trans_alloc(ip->i_mount, XFS_TRANS_FSYNC_TS);
1199 if ((error = xfs_trans_reserve(tp, 0,
1200 XFS_FSYNC_TS_LOG_RES(ip->i_mount),
1202 xfs_trans_cancel(tp, 0);
1205 xfs_ilock(ip, XFS_ILOCK_EXCL);
1208 * Note - it's possible that we might have pushed
1209 * ourselves out of the way during trans_reserve
1210 * which would flush the inode. But there's no
1211 * guarantee that the inode buffer has actually
1212 * gone out yet (it's delwri). Plus the buffer
1213 * could be pinned anyway if it's part of an
1214 * inode in another recent transaction. So we
1215 * play it safe and fire off the transaction anyway.
1217 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
1218 xfs_trans_ihold(tp, ip);
1219 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1220 if (flag & FSYNC_WAIT)
1221 xfs_trans_set_sync(tp);
1222 error = _xfs_trans_commit(tp, 0, NULL, &log_flushed);
1224 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1227 if ((ip->i_mount->m_flags & XFS_MOUNT_BARRIER) && changed) {
1229 * If the log write didn't issue an ordered tag we need
1230 * to flush the disk cache for the data device now.
1233 xfs_blkdev_issue_flush(ip->i_mount->m_ddev_targp);
1236 * If this inode is on the RT dev we need to flush that
1239 if (ip->i_d.di_flags & XFS_DIFLAG_REALTIME)
1240 xfs_blkdev_issue_flush(ip->i_mount->m_rtdev_targp);
1247 * This is called by xfs_inactive to free any blocks beyond eof,
1248 * when the link count isn't zero.
1251 xfs_inactive_free_eofblocks(
1257 xfs_fileoff_t end_fsb;
1258 xfs_fileoff_t last_fsb;
1259 xfs_filblks_t map_len;
1261 xfs_bmbt_irec_t imap;
1264 * Figure out if there are any blocks beyond the end
1265 * of the file. If not, then there is nothing to do.
1267 end_fsb = XFS_B_TO_FSB(mp, ((xfs_ufsize_t)ip->i_d.di_size));
1268 last_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)XFS_MAXIOFFSET(mp));
1269 map_len = last_fsb - end_fsb;
1274 xfs_ilock(ip, XFS_ILOCK_SHARED);
1275 error = xfs_bmapi(NULL, ip, end_fsb, map_len, 0,
1276 NULL, 0, &imap, &nimaps, NULL);
1277 xfs_iunlock(ip, XFS_ILOCK_SHARED);
1279 if (!error && (nimaps != 0) &&
1280 (imap.br_startblock != HOLESTARTBLOCK)) {
1282 * Attach the dquots to the inode up front.
1284 if ((error = XFS_QM_DQATTACH(mp, ip, 0)))
1288 * There are blocks after the end of file.
1289 * Free them up now by truncating the file to
1292 tp = xfs_trans_alloc(mp, XFS_TRANS_INACTIVE);
1295 * Do the xfs_itruncate_start() call before
1296 * reserving any log space because
1297 * itruncate_start will call into the buffer
1298 * cache and we can't
1299 * do that within a transaction.
1301 xfs_ilock(ip, XFS_IOLOCK_EXCL);
1302 xfs_itruncate_start(ip, XFS_ITRUNC_DEFINITE,
1305 error = xfs_trans_reserve(tp, 0,
1306 XFS_ITRUNCATE_LOG_RES(mp),
1307 0, XFS_TRANS_PERM_LOG_RES,
1308 XFS_ITRUNCATE_LOG_COUNT);
1310 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1311 xfs_trans_cancel(tp, 0);
1312 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
1316 xfs_ilock(ip, XFS_ILOCK_EXCL);
1317 xfs_trans_ijoin(tp, ip,
1320 xfs_trans_ihold(tp, ip);
1322 error = xfs_itruncate_finish(&tp, ip,
1327 * If we get an error at this point we
1328 * simply don't bother truncating the file.
1331 xfs_trans_cancel(tp,
1332 (XFS_TRANS_RELEASE_LOG_RES |
1335 error = xfs_trans_commit(tp,
1336 XFS_TRANS_RELEASE_LOG_RES,
1339 xfs_iunlock(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
1345 * Free a symlink that has blocks associated with it.
1348 xfs_inactive_symlink_rmt(
1356 xfs_fsblock_t first_block;
1357 xfs_bmap_free_t free_list;
1360 xfs_bmbt_irec_t mval[SYMLINK_MAPS];
1368 ASSERT(ip->i_d.di_size > XFS_IFORK_DSIZE(ip));
1370 * We're freeing a symlink that has some
1371 * blocks allocated to it. Free the
1372 * blocks here. We know that we've got
1373 * either 1 or 2 extents and that we can
1374 * free them all in one bunmapi call.
1376 ASSERT(ip->i_d.di_nextents > 0 && ip->i_d.di_nextents <= 2);
1377 if ((error = xfs_trans_reserve(tp, 0, XFS_ITRUNCATE_LOG_RES(mp), 0,
1378 XFS_TRANS_PERM_LOG_RES, XFS_ITRUNCATE_LOG_COUNT))) {
1379 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1380 xfs_trans_cancel(tp, 0);
1385 * Lock the inode, fix the size, and join it to the transaction.
1386 * Hold it so in the normal path, we still have it locked for
1387 * the second transaction. In the error paths we need it
1388 * held so the cancel won't rele it, see below.
1390 xfs_ilock(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
1391 size = (int)ip->i_d.di_size;
1392 ip->i_d.di_size = 0;
1393 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
1394 xfs_trans_ihold(tp, ip);
1395 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1397 * Find the block(s) so we can inval and unmap them.
1400 XFS_BMAP_INIT(&free_list, &first_block);
1401 nmaps = sizeof(mval) / sizeof(mval[0]);
1402 if ((error = xfs_bmapi(tp, ip, 0, XFS_B_TO_FSB(mp, size),
1403 XFS_BMAPI_METADATA, &first_block, 0, mval, &nmaps,
1407 * Invalidate the block(s).
1409 for (i = 0; i < nmaps; i++) {
1410 bp = xfs_trans_get_buf(tp, mp->m_ddev_targp,
1411 XFS_FSB_TO_DADDR(mp, mval[i].br_startblock),
1412 XFS_FSB_TO_BB(mp, mval[i].br_blockcount), 0);
1413 xfs_trans_binval(tp, bp);
1416 * Unmap the dead block(s) to the free_list.
1418 if ((error = xfs_bunmapi(tp, ip, 0, size, XFS_BMAPI_METADATA, nmaps,
1419 &first_block, &free_list, &done)))
1423 * Commit the first transaction. This logs the EFI and the inode.
1425 if ((error = xfs_bmap_finish(&tp, &free_list, first_block, &committed)))
1428 * The transaction must have been committed, since there were
1429 * actually extents freed by xfs_bunmapi. See xfs_bmap_finish.
1430 * The new tp has the extent freeing and EFDs.
1434 * The first xact was committed, so add the inode to the new one.
1435 * Mark it dirty so it will be logged and moved forward in the log as
1436 * part of every commit.
1438 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
1439 xfs_trans_ihold(tp, ip);
1440 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1442 * Get a new, empty transaction to return to our caller.
1444 ntp = xfs_trans_dup(tp);
1446 * Commit the transaction containing extent freeing and EFD's.
1447 * If we get an error on the commit here or on the reserve below,
1448 * we need to unlock the inode since the new transaction doesn't
1449 * have the inode attached.
1451 error = xfs_trans_commit(tp, 0, NULL);
1454 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1458 * Remove the memory for extent descriptions (just bookkeeping).
1460 if (ip->i_df.if_bytes)
1461 xfs_idata_realloc(ip, -ip->i_df.if_bytes, XFS_DATA_FORK);
1462 ASSERT(ip->i_df.if_bytes == 0);
1464 * Put an itruncate log reservation in the new transaction
1467 if ((error = xfs_trans_reserve(tp, 0, XFS_ITRUNCATE_LOG_RES(mp), 0,
1468 XFS_TRANS_PERM_LOG_RES, XFS_ITRUNCATE_LOG_COUNT))) {
1469 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1473 * Return with the inode locked but not joined to the transaction.
1479 xfs_bmap_cancel(&free_list);
1482 * Have to come here with the inode locked and either
1483 * (held and in the transaction) or (not in the transaction).
1484 * If the inode isn't held then cancel would iput it, but
1485 * that's wrong since this is inactive and the vnode ref
1486 * count is 0 already.
1487 * Cancel won't do anything to the inode if held, but it still
1488 * needs to be locked until the cancel is done, if it was
1489 * joined to the transaction.
1491 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
1492 xfs_iunlock(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
1499 xfs_inactive_symlink_local(
1505 ASSERT(ip->i_d.di_size <= XFS_IFORK_DSIZE(ip));
1507 * We're freeing a symlink which fit into
1508 * the inode. Just free the memory used
1509 * to hold the old symlink.
1511 error = xfs_trans_reserve(*tpp, 0,
1512 XFS_ITRUNCATE_LOG_RES(ip->i_mount),
1513 0, XFS_TRANS_PERM_LOG_RES,
1514 XFS_ITRUNCATE_LOG_COUNT);
1517 xfs_trans_cancel(*tpp, 0);
1521 xfs_ilock(ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
1524 * Zero length symlinks _can_ exist.
1526 if (ip->i_df.if_bytes > 0) {
1527 xfs_idata_realloc(ip,
1528 -(ip->i_df.if_bytes),
1530 ASSERT(ip->i_df.if_bytes == 0);
1547 ASSERT(ismrlocked(&ip->i_iolock, MR_UPDATE));
1550 ASSERT(ip->i_d.di_forkoff != 0);
1551 xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES, NULL);
1552 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1554 error = xfs_attr_inactive(ip);
1557 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
1558 return (error); /* goto out*/
1561 tp = xfs_trans_alloc(mp, XFS_TRANS_INACTIVE);
1562 error = xfs_trans_reserve(tp, 0,
1563 XFS_IFREE_LOG_RES(mp),
1564 0, XFS_TRANS_PERM_LOG_RES,
1565 XFS_INACTIVE_LOG_COUNT);
1567 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1568 xfs_trans_cancel(tp, 0);
1570 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
1574 xfs_ilock(ip, XFS_ILOCK_EXCL);
1575 xfs_trans_ijoin(tp, ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
1576 xfs_trans_ihold(tp, ip);
1577 xfs_idestroy_fork(ip, XFS_ATTR_FORK);
1579 ASSERT(ip->i_d.di_anextents == 0);
1594 vp = BHV_TO_VNODE(bdp);
1595 ip = XFS_BHVTOI(bdp);
1597 if (!VN_ISREG(vp) || (ip->i_d.di_mode == 0)) {
1601 /* If this is a read-only mount, don't do this (would generate I/O) */
1602 if (vp->v_vfsp->vfs_flag & VFS_RDONLY)
1605 #ifdef HAVE_REFCACHE
1606 /* If we are in the NFS reference cache then don't do this now */
1613 if (ip->i_d.di_nlink != 0) {
1614 if ((((ip->i_d.di_mode & S_IFMT) == S_IFREG) &&
1615 ((ip->i_d.di_size > 0) || (VN_CACHED(vp) > 0)) &&
1616 (ip->i_df.if_flags & XFS_IFEXTENTS)) &&
1617 (!(ip->i_d.di_flags & (XFS_DIFLAG_PREALLOC|XFS_DIFLAG_APPEND)))) {
1618 if ((error = xfs_inactive_free_eofblocks(mp, ip)))
1620 /* Update linux inode block count after free above */
1621 LINVFS_GET_IP(vp)->i_blocks = XFS_FSB_TO_BB(mp,
1622 ip->i_d.di_nblocks + ip->i_delayed_blks);
1632 * This is called when the vnode reference count for the vnode
1633 * goes to zero. If the file has been unlinked, then it must
1634 * now be truncated. Also, we clear all of the read-ahead state
1635 * kept for the inode here since the file is now closed.
1644 xfs_bmap_free_t free_list;
1645 xfs_fsblock_t first_block;
1652 vp = BHV_TO_VNODE(bdp);
1653 vn_trace_entry(vp, __FUNCTION__, (inst_t *)__return_address);
1655 ip = XFS_BHVTOI(bdp);
1658 * If the inode is already free, then there can be nothing
1661 if (ip->i_d.di_mode == 0 || VN_BAD(vp)) {
1662 ASSERT(ip->i_df.if_real_bytes == 0);
1663 ASSERT(ip->i_df.if_broot_bytes == 0);
1664 return VN_INACTIVE_CACHE;
1668 * Only do a truncate if it's a regular file with
1669 * some actual space in it. It's OK to look at the
1670 * inode's fields without the lock because we're the
1671 * only one with a reference to the inode.
1673 truncate = ((ip->i_d.di_nlink == 0) &&
1674 ((ip->i_d.di_size != 0) || (ip->i_d.di_nextents > 0)) &&
1675 ((ip->i_d.di_mode & S_IFMT) == S_IFREG));
1679 if (ip->i_d.di_nlink == 0 &&
1680 DM_EVENT_ENABLED(vp->v_vfsp, ip, DM_EVENT_DESTROY)) {
1681 (void) XFS_SEND_DESTROY(mp, vp, DM_RIGHT_NULL);
1686 /* If this is a read-only mount, don't do this (would generate I/O) */
1687 if (vp->v_vfsp->vfs_flag & VFS_RDONLY)
1690 if (ip->i_d.di_nlink != 0) {
1691 if ((((ip->i_d.di_mode & S_IFMT) == S_IFREG) &&
1692 ((ip->i_d.di_size > 0) || (VN_CACHED(vp) > 0)) &&
1693 (ip->i_df.if_flags & XFS_IFEXTENTS)) &&
1694 (!(ip->i_d.di_flags & (XFS_DIFLAG_PREALLOC|XFS_DIFLAG_APPEND)) ||
1695 (ip->i_delayed_blks != 0))) {
1696 if ((error = xfs_inactive_free_eofblocks(mp, ip)))
1697 return (VN_INACTIVE_CACHE);
1698 /* Update linux inode block count after free above */
1699 LINVFS_GET_IP(vp)->i_blocks = XFS_FSB_TO_BB(mp,
1700 ip->i_d.di_nblocks + ip->i_delayed_blks);
1705 ASSERT(ip->i_d.di_nlink == 0);
1707 if ((error = XFS_QM_DQATTACH(mp, ip, 0)))
1708 return (VN_INACTIVE_CACHE);
1710 tp = xfs_trans_alloc(mp, XFS_TRANS_INACTIVE);
1713 * Do the xfs_itruncate_start() call before
1714 * reserving any log space because itruncate_start
1715 * will call into the buffer cache and we can't
1716 * do that within a transaction.
1718 xfs_ilock(ip, XFS_IOLOCK_EXCL);
1720 xfs_itruncate_start(ip, XFS_ITRUNC_DEFINITE, 0);
1722 error = xfs_trans_reserve(tp, 0,
1723 XFS_ITRUNCATE_LOG_RES(mp),
1724 0, XFS_TRANS_PERM_LOG_RES,
1725 XFS_ITRUNCATE_LOG_COUNT);
1727 /* Don't call itruncate_cleanup */
1728 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1729 xfs_trans_cancel(tp, 0);
1730 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
1731 return (VN_INACTIVE_CACHE);
1734 xfs_ilock(ip, XFS_ILOCK_EXCL);
1735 xfs_trans_ijoin(tp, ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
1736 xfs_trans_ihold(tp, ip);
1739 * normally, we have to run xfs_itruncate_finish sync.
1740 * But if filesystem is wsync and we're in the inactive
1741 * path, then we know that nlink == 0, and that the
1742 * xaction that made nlink == 0 is permanently committed
1743 * since xfs_remove runs as a synchronous transaction.
1745 error = xfs_itruncate_finish(&tp, ip, 0, XFS_DATA_FORK,
1746 (!(mp->m_flags & XFS_MOUNT_WSYNC) ? 1 : 0));
1749 xfs_trans_cancel(tp,
1750 XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
1751 xfs_iunlock(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
1752 return (VN_INACTIVE_CACHE);
1754 } else if ((ip->i_d.di_mode & S_IFMT) == S_IFLNK) {
1757 * If we get an error while cleaning up a
1758 * symlink we bail out.
1760 error = (ip->i_d.di_size > XFS_IFORK_DSIZE(ip)) ?
1761 xfs_inactive_symlink_rmt(ip, &tp) :
1762 xfs_inactive_symlink_local(ip, &tp);
1766 return (VN_INACTIVE_CACHE);
1769 xfs_trans_ijoin(tp, ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
1770 xfs_trans_ihold(tp, ip);
1772 error = xfs_trans_reserve(tp, 0,
1773 XFS_IFREE_LOG_RES(mp),
1774 0, XFS_TRANS_PERM_LOG_RES,
1775 XFS_INACTIVE_LOG_COUNT);
1777 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1778 xfs_trans_cancel(tp, 0);
1779 return (VN_INACTIVE_CACHE);
1782 xfs_ilock(ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
1783 xfs_trans_ijoin(tp, ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
1784 xfs_trans_ihold(tp, ip);
1788 * If there are attributes associated with the file
1789 * then blow them away now. The code calls a routine
1790 * that recursively deconstructs the attribute fork.
1791 * We need to just commit the current transaction
1792 * because we can't use it for xfs_attr_inactive().
1794 if (ip->i_d.di_anextents > 0) {
1795 error = xfs_inactive_attrs(ip, &tp);
1797 * If we got an error, the transaction is already
1798 * cancelled, and the inode is unlocked. Just get out.
1801 return (VN_INACTIVE_CACHE);
1802 } else if (ip->i_afp) {
1803 xfs_idestroy_fork(ip, XFS_ATTR_FORK);
1809 XFS_BMAP_INIT(&free_list, &first_block);
1810 error = xfs_ifree(tp, ip, &free_list);
1813 * If we fail to free the inode, shut down. The cancel
1814 * might do that, we need to make sure. Otherwise the
1815 * inode might be lost for a long time or forever.
1817 if (!XFS_FORCED_SHUTDOWN(mp)) {
1819 "xfs_inactive: xfs_ifree() returned an error = %d on %s",
1820 error, mp->m_fsname);
1821 xfs_force_shutdown(mp, XFS_METADATA_IO_ERROR);
1823 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES|XFS_TRANS_ABORT);
1826 * Credit the quota account(s). The inode is gone.
1828 XFS_TRANS_MOD_DQUOT_BYINO(mp, tp, ip, XFS_TRANS_DQ_ICOUNT, -1);
1831 * Just ignore errors at this point. There is
1832 * nothing we can do except to try to keep going.
1834 (void) xfs_bmap_finish(&tp, &free_list, first_block,
1836 (void) xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES, NULL);
1839 * Release the dquots held by inode, if any.
1841 XFS_QM_DQDETACH(mp, ip);
1843 xfs_iunlock(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);
1846 return VN_INACTIVE_CACHE;
1855 bhv_desc_t *dir_bdp,
1862 xfs_inode_t *dp, *ip;
1868 dir_vp = BHV_TO_VNODE(dir_bdp);
1869 vn_trace_entry(dir_vp, __FUNCTION__, (inst_t *)__return_address);
1871 dp = XFS_BHVTOI(dir_bdp);
1873 if (XFS_FORCED_SHUTDOWN(dp->i_mount))
1874 return XFS_ERROR(EIO);
1876 lock_mode = xfs_ilock_map_shared(dp);
1877 error = xfs_dir_lookup_int(dir_bdp, lock_mode, dentry, &e_inum, &ip);
1879 *vpp = XFS_ITOV(ip);
1882 xfs_iunlock_map_shared(dp, lock_mode);
1888 * xfs_create (create a new file).
1892 bhv_desc_t *dir_bdp,
1898 char *name = VNAME(dentry);
1900 xfs_inode_t *dp, *ip;
1906 xfs_bmap_free_t free_list;
1907 xfs_fsblock_t first_block;
1908 boolean_t dp_joined_to_trans;
1909 int dm_event_sent = 0;
1913 struct xfs_dquot *udqp, *gdqp;
1919 dir_vp = BHV_TO_VNODE(dir_bdp);
1920 vn_trace_entry(dir_vp, __FUNCTION__, (inst_t *)__return_address);
1922 dp = XFS_BHVTOI(dir_bdp);
1925 dm_di_mode = vap->va_mode;
1926 namelen = VNAMELEN(dentry);
1928 if (DM_EVENT_ENABLED(dir_vp->v_vfsp, dp, DM_EVENT_CREATE)) {
1929 error = XFS_SEND_NAMESP(mp, DM_EVENT_CREATE,
1930 dir_vp, DM_RIGHT_NULL, NULL,
1931 DM_RIGHT_NULL, name, NULL,
1939 if (XFS_FORCED_SHUTDOWN(mp))
1940 return XFS_ERROR(EIO);
1942 /* Return through std_return after this point. */
1945 if (dp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT)
1946 prid = dp->i_d.di_projid;
1947 else if (vap->va_mask & XFS_AT_PROJID)
1948 prid = (xfs_prid_t)vap->va_projid;
1950 prid = (xfs_prid_t)dfltprid;
1953 * Make sure that we have allocated dquot(s) on disk.
1955 error = XFS_QM_DQVOPALLOC(mp, dp,
1956 current_fsuid(credp), current_fsgid(credp), prid,
1957 XFS_QMOPT_QUOTALL|XFS_QMOPT_INHERIT, &udqp, &gdqp);
1962 dp_joined_to_trans = B_FALSE;
1964 tp = xfs_trans_alloc(mp, XFS_TRANS_CREATE);
1965 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
1966 resblks = XFS_CREATE_SPACE_RES(mp, namelen);
1968 * Initially assume that the file does not exist and
1969 * reserve the resources for that case. If that is not
1970 * the case we'll drop the one we have and get a more
1971 * appropriate transaction later.
1973 error = xfs_trans_reserve(tp, resblks, XFS_CREATE_LOG_RES(mp), 0,
1974 XFS_TRANS_PERM_LOG_RES, XFS_CREATE_LOG_COUNT);
1975 if (error == ENOSPC) {
1977 error = xfs_trans_reserve(tp, 0, XFS_CREATE_LOG_RES(mp), 0,
1978 XFS_TRANS_PERM_LOG_RES, XFS_CREATE_LOG_COUNT);
1986 xfs_ilock(dp, XFS_ILOCK_EXCL);
1988 XFS_BMAP_INIT(&free_list, &first_block);
1993 * Reserve disk quota and the inode.
1995 error = XFS_TRANS_RESERVE_QUOTA(mp, tp, udqp, gdqp, resblks, 1, 0);
2000 (error = XFS_DIR_CANENTER(mp, tp, dp, name, namelen)))
2002 rdev = (vap->va_mask & XFS_AT_RDEV) ? vap->va_rdev : 0;
2003 error = xfs_dir_ialloc(&tp, dp, vap->va_mode, 1,
2004 rdev, credp, prid, resblks > 0,
2007 if (error == ENOSPC)
2014 * At this point, we've gotten a newly allocated inode.
2015 * It is locked (and joined to the transaction).
2018 ASSERT(ismrlocked (&ip->i_lock, MR_UPDATE));
2021 * Now we join the directory inode to the transaction.
2022 * We do not do it earlier because xfs_dir_ialloc
2023 * might commit the previous transaction (and release
2028 xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
2029 dp_joined_to_trans = B_TRUE;
2031 error = XFS_DIR_CREATENAME(mp, tp, dp, name, namelen, ip->i_ino,
2032 &first_block, &free_list,
2033 resblks ? resblks - XFS_IALLOC_SPACE_RES(mp) : 0);
2035 ASSERT(error != ENOSPC);
2038 xfs_ichgtime(dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
2039 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
2042 * If this is a synchronous mount, make sure that the
2043 * create transaction goes to disk before returning to
2046 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
2047 xfs_trans_set_sync(tp);
2053 * Attach the dquot(s) to the inodes and modify them incore.
2054 * These ids of the inode couldn't have changed since the new
2055 * inode has been locked ever since it was created.
2057 XFS_QM_DQVOPCREATE(mp, tp, ip, udqp, gdqp);
2060 * xfs_trans_commit normally decrements the vnode ref count
2061 * when it unlocks the inode. Since we want to return the
2062 * vnode to the caller, we bump the vnode ref count now.
2067 error = xfs_bmap_finish(&tp, &free_list, first_block, &committed);
2069 xfs_bmap_cancel(&free_list);
2073 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES, NULL);
2080 XFS_QM_DQRELE(mp, udqp);
2081 XFS_QM_DQRELE(mp, gdqp);
2084 * Propogate the fact that the vnode changed after the
2085 * xfs_inode locks have been released.
2087 VOP_VNODE_CHANGE(vp, VCHANGE_FLAGS_TRUNCATED, 3);
2091 /* Fallthrough to std_return with error = 0 */
2094 if ( (*vpp || (error != 0 && dm_event_sent != 0)) &&
2095 DM_EVENT_ENABLED(dir_vp->v_vfsp, XFS_BHVTOI(dir_bdp),
2096 DM_EVENT_POSTCREATE)) {
2097 (void) XFS_SEND_NAMESP(mp, DM_EVENT_POSTCREATE,
2098 dir_vp, DM_RIGHT_NULL,
2100 DM_RIGHT_NULL, name, NULL,
2101 dm_di_mode, error, 0);
2106 cancel_flags |= XFS_TRANS_ABORT;
2111 xfs_trans_cancel(tp, cancel_flags);
2113 if (!dp_joined_to_trans && (dp != NULL))
2114 xfs_iunlock(dp, XFS_ILOCK_EXCL);
2115 XFS_QM_DQRELE(mp, udqp);
2116 XFS_QM_DQRELE(mp, gdqp);
2122 * Wait until after the current transaction is aborted to
2123 * release the inode. This prevents recursive transactions
2124 * and deadlocks from xfs_inactive.
2126 cancel_flags |= XFS_TRANS_ABORT;
2127 xfs_trans_cancel(tp, cancel_flags);
2130 XFS_QM_DQRELE(mp, udqp);
2131 XFS_QM_DQRELE(mp, gdqp);
2138 * Some counters to see if (and how often) we are hitting some deadlock
2139 * prevention code paths.
2143 int xfs_rm_lock_delays;
2144 int xfs_rm_attempts;
2148 * The following routine will lock the inodes associated with the
2149 * directory and the named entry in the directory. The locks are
2150 * acquired in increasing inode number.
2152 * If the entry is "..", then only the directory is locked. The
2153 * vnode ref count will still include that from the .. entry in
2156 * There is a deadlock we need to worry about. If the locked directory is
2157 * in the AIL, it might be blocking up the log. The next inode we lock
2158 * could be already locked by another thread waiting for log space (e.g
2159 * a permanent log reservation with a long running transaction (see
2160 * xfs_itruncate_finish)). To solve this, we must check if the directory
2161 * is in the ail and use lock_nowait. If we can't lock, we need to
2162 * drop the inode lock on the directory and try again. xfs_iunlock will
2163 * potentially push the tail if we were holding up the log.
2166 xfs_lock_dir_and_entry(
2169 xfs_inode_t *ip) /* inode of entry 'name' */
2173 xfs_inode_t *ips[2];
2182 xfs_ilock(dp, XFS_ILOCK_EXCL);
2189 * We want to lock in increasing inum. Since we've already
2190 * acquired the lock on the directory, we may need to release
2191 * if if the inum of the entry turns out to be less.
2193 if (e_inum > dp->i_ino) {
2195 * We are already in the right order, so just
2196 * lock on the inode of the entry.
2197 * We need to use nowait if dp is in the AIL.
2200 lp = (xfs_log_item_t *)dp->i_itemp;
2201 if (lp && (lp->li_flags & XFS_LI_IN_AIL)) {
2202 if (!xfs_ilock_nowait(ip, XFS_ILOCK_EXCL)) {
2209 * Unlock dp and try again.
2210 * xfs_iunlock will try to push the tail
2211 * if the inode is in the AIL.
2214 xfs_iunlock(dp, XFS_ILOCK_EXCL);
2216 if ((attempts % 5) == 0) {
2217 delay(1); /* Don't just spin the CPU */
2219 xfs_rm_lock_delays++;
2225 xfs_ilock(ip, XFS_ILOCK_EXCL);
2227 } else if (e_inum < dp->i_ino) {
2228 xfs_iunlock(dp, XFS_ILOCK_EXCL);
2232 xfs_lock_inodes(ips, 2, 0, XFS_ILOCK_EXCL);
2234 /* else e_inum == dp->i_ino */
2235 /* This can happen if we're asked to lock /x/..
2236 * the entry is "..", which is also the parent directory.
2244 int xfs_small_retries;
2245 int xfs_middle_retries;
2246 int xfs_lots_retries;
2247 int xfs_lock_delays;
2251 * The following routine will lock n inodes in exclusive mode.
2252 * We assume the caller calls us with the inodes in i_ino order.
2254 * We need to detect deadlock where an inode that we lock
2255 * is in the AIL and we start waiting for another inode that is locked
2256 * by a thread in a long running transaction (such as truncate). This can
2257 * result in deadlock since the long running trans might need to wait
2258 * for the inode we just locked in order to push the tail and free space
2268 int attempts = 0, i, j, try_lock;
2271 ASSERT(ips && (inodes >= 2)); /* we need at least two */
2282 for (; i < inodes; i++) {
2285 if (i && (ips[i] == ips[i-1])) /* Already locked */
2289 * If try_lock is not set yet, make sure all locked inodes
2290 * are not in the AIL.
2291 * If any are, set try_lock to be used later.
2295 for (j = (i - 1); j >= 0 && !try_lock; j--) {
2296 lp = (xfs_log_item_t *)ips[j]->i_itemp;
2297 if (lp && (lp->li_flags & XFS_LI_IN_AIL)) {
2304 * If any of the previous locks we have locked is in the AIL,
2305 * we must TRY to get the second and subsequent locks. If
2306 * we can't get any, we must release all we have
2311 /* try_lock must be 0 if i is 0. */
2313 * try_lock means we have an inode locked
2314 * that is in the AIL.
2317 if (!xfs_ilock_nowait(ips[i], lock_mode)) {
2321 * Unlock all previous guys and try again.
2322 * xfs_iunlock will try to push the tail
2323 * if the inode is in the AIL.
2326 for(j = i - 1; j >= 0; j--) {
2329 * Check to see if we've already
2330 * unlocked this one.
2331 * Not the first one going back,
2332 * and the inode ptr is the same.
2334 if ((j != (i - 1)) && ips[j] ==
2338 xfs_iunlock(ips[j], lock_mode);
2341 if ((attempts % 5) == 0) {
2342 delay(1); /* Don't just spin the CPU */
2352 xfs_ilock(ips[i], lock_mode);
2358 if (attempts < 5) xfs_small_retries++;
2359 else if (attempts < 100) xfs_middle_retries++;
2360 else xfs_lots_retries++;
2368 #define REMOVE_DEBUG_TRACE(x) {remove_which_error_return = (x);}
2369 int remove_which_error_return = 0;
2371 #define REMOVE_DEBUG_TRACE(x)
2372 #endif /* ! DEBUG */
2381 bhv_desc_t *dir_bdp,
2386 char *name = VNAME(dentry);
2387 xfs_inode_t *dp, *ip;
2388 xfs_trans_t *tp = NULL;
2391 xfs_bmap_free_t free_list;
2392 xfs_fsblock_t first_block;
2400 dir_vp = BHV_TO_VNODE(dir_bdp);
2401 vn_trace_entry(dir_vp, __FUNCTION__, (inst_t *)__return_address);
2403 dp = XFS_BHVTOI(dir_bdp);
2406 if (XFS_FORCED_SHUTDOWN(mp))
2407 return XFS_ERROR(EIO);
2409 namelen = VNAMELEN(dentry);
2411 if (DM_EVENT_ENABLED(dir_vp->v_vfsp, dp, DM_EVENT_REMOVE)) {
2412 error = XFS_SEND_NAMESP(mp, DM_EVENT_REMOVE, dir_vp,
2413 DM_RIGHT_NULL, NULL, DM_RIGHT_NULL,
2414 name, NULL, 0, 0, 0);
2419 /* From this point on, return through std_return */
2423 * We need to get a reference to ip before we get our log
2424 * reservation. The reason for this is that we cannot call
2425 * xfs_iget for an inode for which we do not have a reference
2426 * once we've acquired a log reservation. This is because the
2427 * inode we are trying to get might be in xfs_inactive going
2428 * for a log reservation. Since we'll have to wait for the
2429 * inactive code to complete before returning from xfs_iget,
2430 * we need to make sure that we don't have log space reserved
2431 * when we call xfs_iget. Instead we get an unlocked referece
2432 * to the inode before getting our log reservation.
2434 error = xfs_get_dir_entry(dentry, &ip);
2436 REMOVE_DEBUG_TRACE(__LINE__);
2440 dm_di_mode = ip->i_d.di_mode;
2442 vn_trace_entry(XFS_ITOV(ip), __FUNCTION__, (inst_t *)__return_address);
2446 error = XFS_QM_DQATTACH(mp, dp, 0);
2447 if (!error && dp != ip)
2448 error = XFS_QM_DQATTACH(mp, ip, 0);
2450 REMOVE_DEBUG_TRACE(__LINE__);
2455 tp = xfs_trans_alloc(mp, XFS_TRANS_REMOVE);
2456 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
2458 * We try to get the real space reservation first,
2459 * allowing for directory btree deletion(s) implying
2460 * possible bmap insert(s). If we can't get the space
2461 * reservation then we use 0 instead, and avoid the bmap
2462 * btree insert(s) in the directory code by, if the bmap
2463 * insert tries to happen, instead trimming the LAST
2464 * block from the directory.
2466 resblks = XFS_REMOVE_SPACE_RES(mp);
2467 error = xfs_trans_reserve(tp, resblks, XFS_REMOVE_LOG_RES(mp), 0,
2468 XFS_TRANS_PERM_LOG_RES, XFS_REMOVE_LOG_COUNT);
2469 if (error == ENOSPC) {
2471 error = xfs_trans_reserve(tp, 0, XFS_REMOVE_LOG_RES(mp), 0,
2472 XFS_TRANS_PERM_LOG_RES, XFS_REMOVE_LOG_COUNT);
2475 ASSERT(error != ENOSPC);
2476 REMOVE_DEBUG_TRACE(__LINE__);
2477 xfs_trans_cancel(tp, 0);
2482 error = xfs_lock_dir_and_entry(dp, dentry, ip);
2484 REMOVE_DEBUG_TRACE(__LINE__);
2485 xfs_trans_cancel(tp, cancel_flags);
2491 * At this point, we've gotten both the directory and the entry
2494 xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
2497 * Increment vnode ref count only in this case since
2498 * there's an extra vnode reference in the case where
2502 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
2506 * Entry must exist since we did a lookup in xfs_lock_dir_and_entry.
2508 XFS_BMAP_INIT(&free_list, &first_block);
2509 error = XFS_DIR_REMOVENAME(mp, tp, dp, name, namelen, ip->i_ino,
2510 &first_block, &free_list, 0);
2512 ASSERT(error != ENOENT);
2513 REMOVE_DEBUG_TRACE(__LINE__);
2516 xfs_ichgtime(dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
2519 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
2521 error = xfs_droplink(tp, ip);
2523 REMOVE_DEBUG_TRACE(__LINE__);
2527 /* Determine if this is the last link while
2528 * we are in the transaction.
2530 link_zero = (ip)->i_d.di_nlink==0;
2533 * Take an extra ref on the inode so that it doesn't
2534 * go to xfs_inactive() from within the commit.
2539 * If this is a synchronous mount, make sure that the
2540 * remove transaction goes to disk before returning to
2543 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
2544 xfs_trans_set_sync(tp);
2547 error = xfs_bmap_finish(&tp, &free_list, first_block, &committed);
2549 REMOVE_DEBUG_TRACE(__LINE__);
2553 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES, NULL);
2560 * Before we drop our extra reference to the inode, purge it
2561 * from the refcache if it is there. By waiting until afterwards
2562 * to do the IRELE, we ensure that we won't go inactive in the
2563 * xfs_refcache_purge_ip routine (although that would be OK).
2565 xfs_refcache_purge_ip(ip);
2567 vn_trace_exit(XFS_ITOV(ip), __FUNCTION__, (inst_t *)__return_address);
2570 * Let interposed file systems know about removed links.
2572 VOP_LINK_REMOVED(XFS_ITOV(ip), dir_vp, link_zero);
2576 /* Fall through to std_return with error = 0 */
2578 if (DM_EVENT_ENABLED(dir_vp->v_vfsp, dp,
2579 DM_EVENT_POSTREMOVE)) {
2580 (void) XFS_SEND_NAMESP(mp, DM_EVENT_POSTREMOVE,
2581 dir_vp, DM_RIGHT_NULL,
2582 NULL, DM_RIGHT_NULL,
2583 name, NULL, dm_di_mode, error, 0);
2588 xfs_bmap_cancel(&free_list);
2589 cancel_flags |= XFS_TRANS_ABORT;
2590 xfs_trans_cancel(tp, cancel_flags);
2595 * In this case make sure to not release the inode until after
2596 * the current transaction is aborted. Releasing it beforehand
2597 * can cause us to go to xfs_inactive and start a recursive
2598 * transaction which can easily deadlock with the current one.
2600 xfs_bmap_cancel(&free_list);
2601 cancel_flags |= XFS_TRANS_ABORT;
2602 xfs_trans_cancel(tp, cancel_flags);
2605 * Before we drop our extra reference to the inode, purge it
2606 * from the refcache if it is there. By waiting until afterwards
2607 * to do the IRELE, we ensure that we won't go inactive in the
2608 * xfs_refcache_purge_ip routine (although that would be OK).
2610 xfs_refcache_purge_ip(ip);
2624 bhv_desc_t *target_dir_bdp,
2629 xfs_inode_t *tdp, *sip;
2632 xfs_inode_t *ips[2];
2634 xfs_bmap_free_t free_list;
2635 xfs_fsblock_t first_block;
2638 vnode_t *target_dir_vp;
2639 bhv_desc_t *src_bdp;
2641 char *target_name = VNAME(dentry);
2644 target_dir_vp = BHV_TO_VNODE(target_dir_bdp);
2645 vn_trace_entry(target_dir_vp, __FUNCTION__, (inst_t *)__return_address);
2646 vn_trace_entry(src_vp, __FUNCTION__, (inst_t *)__return_address);
2648 target_namelen = VNAMELEN(dentry);
2649 if (VN_ISDIR(src_vp))
2650 return XFS_ERROR(EPERM);
2652 src_bdp = vn_bhv_lookup_unlocked(VN_BHV_HEAD(src_vp), &xfs_vnodeops);
2653 sip = XFS_BHVTOI(src_bdp);
2654 tdp = XFS_BHVTOI(target_dir_bdp);
2656 if (XFS_FORCED_SHUTDOWN(mp))
2657 return XFS_ERROR(EIO);
2659 if (DM_EVENT_ENABLED(src_vp->v_vfsp, tdp, DM_EVENT_LINK)) {
2660 error = XFS_SEND_NAMESP(mp, DM_EVENT_LINK,
2661 target_dir_vp, DM_RIGHT_NULL,
2662 src_vp, DM_RIGHT_NULL,
2663 target_name, NULL, 0, 0, 0);
2668 /* Return through std_return after this point. */
2670 error = XFS_QM_DQATTACH(mp, sip, 0);
2671 if (!error && sip != tdp)
2672 error = XFS_QM_DQATTACH(mp, tdp, 0);
2676 tp = xfs_trans_alloc(mp, XFS_TRANS_LINK);
2677 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
2678 resblks = XFS_LINK_SPACE_RES(mp, target_namelen);
2679 error = xfs_trans_reserve(tp, resblks, XFS_LINK_LOG_RES(mp), 0,
2680 XFS_TRANS_PERM_LOG_RES, XFS_LINK_LOG_COUNT);
2681 if (error == ENOSPC) {
2683 error = xfs_trans_reserve(tp, 0, XFS_LINK_LOG_RES(mp), 0,
2684 XFS_TRANS_PERM_LOG_RES, XFS_LINK_LOG_COUNT);
2691 if (sip->i_ino < tdp->i_ino) {
2699 xfs_lock_inodes(ips, 2, 0, XFS_ILOCK_EXCL);
2702 * Increment vnode ref counts since xfs_trans_commit &
2703 * xfs_trans_cancel will both unlock the inodes and
2704 * decrement the associated ref counts.
2707 VN_HOLD(target_dir_vp);
2708 xfs_trans_ijoin(tp, sip, XFS_ILOCK_EXCL);
2709 xfs_trans_ijoin(tp, tdp, XFS_ILOCK_EXCL);
2712 * If the source has too many links, we can't make any more to it.
2714 if (sip->i_d.di_nlink >= XFS_MAXLINK) {
2715 error = XFS_ERROR(EMLINK);
2720 * If we are using project inheritance, we only allow hard link
2721 * creation in our tree when the project IDs are the same; else
2722 * the tree quota mechanism could be circumvented.
2724 if (unlikely((tdp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT) &&
2725 (tdp->i_d.di_projid != sip->i_d.di_projid))) {
2726 error = XFS_ERROR(EPERM);
2731 (error = XFS_DIR_CANENTER(mp, tp, tdp, target_name,
2735 XFS_BMAP_INIT(&free_list, &first_block);
2737 error = XFS_DIR_CREATENAME(mp, tp, tdp, target_name, target_namelen,
2738 sip->i_ino, &first_block, &free_list,
2742 xfs_ichgtime(tdp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
2744 xfs_trans_log_inode(tp, tdp, XFS_ILOG_CORE);
2746 error = xfs_bumplink(tp, sip);
2752 * If this is a synchronous mount, make sure that the
2753 * link transaction goes to disk before returning to
2756 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
2757 xfs_trans_set_sync(tp);
2760 error = xfs_bmap_finish (&tp, &free_list, first_block, &committed);
2762 xfs_bmap_cancel(&free_list);
2766 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES, NULL);
2771 /* Fall through to std_return with error = 0. */
2773 if (DM_EVENT_ENABLED(src_vp->v_vfsp, sip,
2774 DM_EVENT_POSTLINK)) {
2775 (void) XFS_SEND_NAMESP(mp, DM_EVENT_POSTLINK,
2776 target_dir_vp, DM_RIGHT_NULL,
2777 src_vp, DM_RIGHT_NULL,
2778 target_name, NULL, 0, error, 0);
2783 cancel_flags |= XFS_TRANS_ABORT;
2786 xfs_trans_cancel(tp, cancel_flags);
2796 bhv_desc_t *dir_bdp,
2802 char *dir_name = VNAME(dentry);
2804 xfs_inode_t *cdp; /* inode of created dir */
2805 vnode_t *cvp; /* vnode of created dir */
2811 xfs_bmap_free_t free_list;
2812 xfs_fsblock_t first_block;
2814 boolean_t dp_joined_to_trans;
2815 boolean_t created = B_FALSE;
2816 int dm_event_sent = 0;
2818 struct xfs_dquot *udqp, *gdqp;
2823 dir_vp = BHV_TO_VNODE(dir_bdp);
2824 dp = XFS_BHVTOI(dir_bdp);
2827 if (XFS_FORCED_SHUTDOWN(mp))
2828 return XFS_ERROR(EIO);
2830 dir_namelen = VNAMELEN(dentry);
2833 dp_joined_to_trans = B_FALSE;
2834 dm_di_mode = vap->va_mode;
2836 if (DM_EVENT_ENABLED(dir_vp->v_vfsp, dp, DM_EVENT_CREATE)) {
2837 error = XFS_SEND_NAMESP(mp, DM_EVENT_CREATE,
2838 dir_vp, DM_RIGHT_NULL, NULL,
2839 DM_RIGHT_NULL, dir_name, NULL,
2846 /* Return through std_return after this point. */
2848 vn_trace_entry(dir_vp, __FUNCTION__, (inst_t *)__return_address);
2852 if (dp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT)
2853 prid = dp->i_d.di_projid;
2854 else if (vap->va_mask & XFS_AT_PROJID)
2855 prid = (xfs_prid_t)vap->va_projid;
2857 prid = (xfs_prid_t)dfltprid;
2860 * Make sure that we have allocated dquot(s) on disk.
2862 error = XFS_QM_DQVOPALLOC(mp, dp,
2863 current_fsuid(credp), current_fsgid(credp), prid,
2864 XFS_QMOPT_QUOTALL | XFS_QMOPT_INHERIT, &udqp, &gdqp);
2868 tp = xfs_trans_alloc(mp, XFS_TRANS_MKDIR);
2869 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
2870 resblks = XFS_MKDIR_SPACE_RES(mp, dir_namelen);
2871 error = xfs_trans_reserve(tp, resblks, XFS_MKDIR_LOG_RES(mp), 0,
2872 XFS_TRANS_PERM_LOG_RES, XFS_MKDIR_LOG_COUNT);
2873 if (error == ENOSPC) {
2875 error = xfs_trans_reserve(tp, 0, XFS_MKDIR_LOG_RES(mp), 0,
2876 XFS_TRANS_PERM_LOG_RES,
2877 XFS_MKDIR_LOG_COUNT);
2885 xfs_ilock(dp, XFS_ILOCK_EXCL);
2888 * Check for directory link count overflow.
2890 if (dp->i_d.di_nlink >= XFS_MAXLINK) {
2891 error = XFS_ERROR(EMLINK);
2896 * Reserve disk quota and the inode.
2898 error = XFS_TRANS_RESERVE_QUOTA(mp, tp, udqp, gdqp, resblks, 1, 0);
2903 (error = XFS_DIR_CANENTER(mp, tp, dp, dir_name, dir_namelen)))
2906 * create the directory inode.
2908 error = xfs_dir_ialloc(&tp, dp, vap->va_mode, 2,
2909 0, credp, prid, resblks > 0,
2912 if (error == ENOSPC)
2919 * Now we add the directory inode to the transaction.
2920 * We waited until now since xfs_dir_ialloc might start
2921 * a new transaction. Had we joined the transaction
2922 * earlier, the locks might have gotten released.
2925 xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
2926 dp_joined_to_trans = B_TRUE;
2928 XFS_BMAP_INIT(&free_list, &first_block);
2930 error = XFS_DIR_CREATENAME(mp, tp, dp, dir_name, dir_namelen,
2931 cdp->i_ino, &first_block, &free_list,
2932 resblks ? resblks - XFS_IALLOC_SPACE_RES(mp) : 0);
2934 ASSERT(error != ENOSPC);
2937 xfs_ichgtime(dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
2940 * Bump the in memory version number of the parent directory
2941 * so that other processes accessing it will recognize that
2942 * the directory has changed.
2946 error = XFS_DIR_INIT(mp, tp, cdp, dp);
2952 error = xfs_bumplink(tp, dp);
2957 cvp = XFS_ITOV(cdp);
2965 * Attach the dquots to the new inode and modify the icount incore.
2967 XFS_QM_DQVOPCREATE(mp, tp, cdp, udqp, gdqp);
2970 * If this is a synchronous mount, make sure that the
2971 * mkdir transaction goes to disk before returning to
2974 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
2975 xfs_trans_set_sync(tp);
2978 error = xfs_bmap_finish(&tp, &free_list, first_block, &committed);
2984 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES, NULL);
2985 XFS_QM_DQRELE(mp, udqp);
2986 XFS_QM_DQRELE(mp, gdqp);
2991 /* Fall through to std_return with error = 0 or errno from
2992 * xfs_trans_commit. */
2995 if ( (created || (error != 0 && dm_event_sent != 0)) &&
2996 DM_EVENT_ENABLED(dir_vp->v_vfsp, XFS_BHVTOI(dir_bdp),
2997 DM_EVENT_POSTCREATE)) {
2998 (void) XFS_SEND_NAMESP(mp, DM_EVENT_POSTCREATE,
2999 dir_vp, DM_RIGHT_NULL,
3000 created ? XFS_ITOV(cdp):NULL,
3003 dm_di_mode, error, 0);
3009 xfs_bmap_cancel(&free_list);
3011 cancel_flags |= XFS_TRANS_ABORT;
3013 xfs_trans_cancel(tp, cancel_flags);
3014 XFS_QM_DQRELE(mp, udqp);
3015 XFS_QM_DQRELE(mp, gdqp);
3017 if (!dp_joined_to_trans && (dp != NULL)) {
3018 xfs_iunlock(dp, XFS_ILOCK_EXCL);
3031 bhv_desc_t *dir_bdp,
3035 char *name = VNAME(dentry);
3037 xfs_inode_t *cdp; /* child directory */
3041 xfs_bmap_free_t free_list;
3042 xfs_fsblock_t first_block;
3051 dir_vp = BHV_TO_VNODE(dir_bdp);
3052 dp = XFS_BHVTOI(dir_bdp);
3055 vn_trace_entry(dir_vp, __FUNCTION__, (inst_t *)__return_address);
3057 if (XFS_FORCED_SHUTDOWN(XFS_BHVTOI(dir_bdp)->i_mount))
3058 return XFS_ERROR(EIO);
3059 namelen = VNAMELEN(dentry);
3061 if (DM_EVENT_ENABLED(dir_vp->v_vfsp, dp, DM_EVENT_REMOVE)) {
3062 error = XFS_SEND_NAMESP(mp, DM_EVENT_REMOVE,
3063 dir_vp, DM_RIGHT_NULL,
3064 NULL, DM_RIGHT_NULL,
3065 name, NULL, 0, 0, 0);
3067 return XFS_ERROR(error);
3070 /* Return through std_return after this point. */
3075 * We need to get a reference to cdp before we get our log
3076 * reservation. The reason for this is that we cannot call
3077 * xfs_iget for an inode for which we do not have a reference
3078 * once we've acquired a log reservation. This is because the
3079 * inode we are trying to get might be in xfs_inactive going
3080 * for a log reservation. Since we'll have to wait for the
3081 * inactive code to complete before returning from xfs_iget,
3082 * we need to make sure that we don't have log space reserved
3083 * when we call xfs_iget. Instead we get an unlocked referece
3084 * to the inode before getting our log reservation.
3086 error = xfs_get_dir_entry(dentry, &cdp);
3088 REMOVE_DEBUG_TRACE(__LINE__);
3092 dm_di_mode = cdp->i_d.di_mode;
3095 * Get the dquots for the inodes.
3097 error = XFS_QM_DQATTACH(mp, dp, 0);
3098 if (!error && dp != cdp)
3099 error = XFS_QM_DQATTACH(mp, cdp, 0);
3102 REMOVE_DEBUG_TRACE(__LINE__);
3106 tp = xfs_trans_alloc(mp, XFS_TRANS_RMDIR);
3107 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
3109 * We try to get the real space reservation first,
3110 * allowing for directory btree deletion(s) implying
3111 * possible bmap insert(s). If we can't get the space
3112 * reservation then we use 0 instead, and avoid the bmap
3113 * btree insert(s) in the directory code by, if the bmap
3114 * insert tries to happen, instead trimming the LAST
3115 * block from the directory.
3117 resblks = XFS_REMOVE_SPACE_RES(mp);
3118 error = xfs_trans_reserve(tp, resblks, XFS_REMOVE_LOG_RES(mp), 0,
3119 XFS_TRANS_PERM_LOG_RES, XFS_DEFAULT_LOG_COUNT);
3120 if (error == ENOSPC) {
3122 error = xfs_trans_reserve(tp, 0, XFS_REMOVE_LOG_RES(mp), 0,
3123 XFS_TRANS_PERM_LOG_RES, XFS_DEFAULT_LOG_COUNT);
3126 ASSERT(error != ENOSPC);
3131 XFS_BMAP_INIT(&free_list, &first_block);
3134 * Now lock the child directory inode and the parent directory
3135 * inode in the proper order. This will take care of validating
3136 * that the directory entry for the child directory inode has
3137 * not changed while we were obtaining a log reservation.
3139 error = xfs_lock_dir_and_entry(dp, dentry, cdp);
3141 xfs_trans_cancel(tp, cancel_flags);
3146 xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
3149 * Only increment the parent directory vnode count if
3150 * we didn't bump it in looking up cdp. The only time
3151 * we don't bump it is when we're looking up ".".
3157 xfs_trans_ijoin(tp, cdp, XFS_ILOCK_EXCL);
3159 ASSERT(cdp->i_d.di_nlink >= 2);
3160 if (cdp->i_d.di_nlink != 2) {
3161 error = XFS_ERROR(ENOTEMPTY);
3164 if (!XFS_DIR_ISEMPTY(mp, cdp)) {
3165 error = XFS_ERROR(ENOTEMPTY);
3169 error = XFS_DIR_REMOVENAME(mp, tp, dp, name, namelen, cdp->i_ino,
3170 &first_block, &free_list, resblks);
3175 xfs_ichgtime(dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
3178 * Bump the in memory generation count on the parent
3179 * directory so that other can know that it has changed.
3184 * Drop the link from cdp's "..".
3186 error = xfs_droplink(tp, dp);
3192 * Drop the link from dp to cdp.
3194 error = xfs_droplink(tp, cdp);
3200 * Drop the "." link from cdp to self.
3202 error = xfs_droplink(tp, cdp);
3207 /* Determine these before committing transaction */
3208 last_cdp_link = (cdp)->i_d.di_nlink==0;
3211 * Take an extra ref on the child vnode so that it
3212 * does not go to xfs_inactive() from within the commit.
3217 * If this is a synchronous mount, make sure that the
3218 * rmdir transaction goes to disk before returning to
3221 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
3222 xfs_trans_set_sync(tp);
3225 error = xfs_bmap_finish (&tp, &free_list, first_block, &committed);
3227 xfs_bmap_cancel(&free_list);
3228 xfs_trans_cancel(tp, (XFS_TRANS_RELEASE_LOG_RES |
3234 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES, NULL);
3242 * Let interposed file systems know about removed links.
3244 VOP_LINK_REMOVED(XFS_ITOV(cdp), dir_vp, last_cdp_link);
3248 /* Fall through to std_return with error = 0 or the errno
3249 * from xfs_trans_commit. */
3251 if (DM_EVENT_ENABLED(dir_vp->v_vfsp, dp, DM_EVENT_POSTREMOVE)) {
3252 (void) XFS_SEND_NAMESP(mp, DM_EVENT_POSTREMOVE,
3253 dir_vp, DM_RIGHT_NULL,
3254 NULL, DM_RIGHT_NULL,
3255 name, NULL, dm_di_mode,
3261 xfs_bmap_cancel(&free_list);
3262 cancel_flags |= XFS_TRANS_ABORT;
3264 xfs_trans_cancel(tp, cancel_flags);
3272 * Read dp's entries starting at uiop->uio_offset and translate them into
3273 * bufsize bytes worth of struct dirents starting at bufbase.
3277 bhv_desc_t *dir_bdp,
3283 xfs_trans_t *tp = NULL;
3286 xfs_off_t start_offset;
3288 vn_trace_entry(BHV_TO_VNODE(dir_bdp), __FUNCTION__,
3289 (inst_t *)__return_address);
3290 dp = XFS_BHVTOI(dir_bdp);
3292 if (XFS_FORCED_SHUTDOWN(dp->i_mount)) {
3293 return XFS_ERROR(EIO);
3296 lock_mode = xfs_ilock_map_shared(dp);
3297 start_offset = uiop->uio_offset;
3298 error = XFS_DIR_GETDENTS(dp->i_mount, tp, dp, uiop, eofp);
3299 if (start_offset != uiop->uio_offset) {
3300 xfs_ichgtime(dp, XFS_ICHGTIME_ACC);
3302 xfs_iunlock_map_shared(dp, lock_mode);
3313 bhv_desc_t *dir_bdp,
3326 xfs_bmap_free_t free_list;
3327 xfs_fsblock_t first_block;
3328 boolean_t dp_joined_to_trans;
3332 xfs_fileoff_t first_fsb;
3333 xfs_filblks_t fs_blocks;
3335 xfs_bmbt_irec_t mval[SYMLINK_MAPS];
3342 struct xfs_dquot *udqp, *gdqp;
3344 char *link_name = VNAME(dentry);
3348 dir_vp = BHV_TO_VNODE(dir_bdp);
3349 dp = XFS_BHVTOI(dir_bdp);
3350 dp_joined_to_trans = B_FALSE;
3355 vn_trace_entry(dir_vp, __FUNCTION__, (inst_t *)__return_address);
3359 if (XFS_FORCED_SHUTDOWN(mp))
3360 return XFS_ERROR(EIO);
3362 link_namelen = VNAMELEN(dentry);
3365 * Check component lengths of the target path name.
3367 pathlen = strlen(target_path);
3368 if (pathlen >= MAXPATHLEN) /* total string too long */
3369 return XFS_ERROR(ENAMETOOLONG);
3370 if (pathlen >= MAXNAMELEN) { /* is any component too long? */
3374 for(total = 0, path = target_path; total < pathlen;) {
3378 while(*path == '/') {
3384 * Count up to the next slash or end of path.
3385 * Error out if the component is bigger than MAXNAMELEN.
3387 for(len = 0; *path != '/' && total < pathlen;total++, path++) {
3388 if (++len >= MAXNAMELEN) {
3389 error = ENAMETOOLONG;
3396 if (DM_EVENT_ENABLED(dir_vp->v_vfsp, dp, DM_EVENT_SYMLINK)) {
3397 error = XFS_SEND_NAMESP(mp, DM_EVENT_SYMLINK, dir_vp,
3398 DM_RIGHT_NULL, NULL, DM_RIGHT_NULL,
3399 link_name, target_path, 0, 0, 0);
3404 /* Return through std_return after this point. */
3407 if (dp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT)
3408 prid = dp->i_d.di_projid;
3409 else if (vap->va_mask & XFS_AT_PROJID)
3410 prid = (xfs_prid_t)vap->va_projid;
3412 prid = (xfs_prid_t)dfltprid;
3415 * Make sure that we have allocated dquot(s) on disk.
3417 error = XFS_QM_DQVOPALLOC(mp, dp,
3418 current_fsuid(credp), current_fsgid(credp), prid,
3419 XFS_QMOPT_QUOTALL | XFS_QMOPT_INHERIT, &udqp, &gdqp);
3423 tp = xfs_trans_alloc(mp, XFS_TRANS_SYMLINK);
3424 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
3426 * The symlink will fit into the inode data fork?
3427 * There can't be any attributes so we get the whole variable part.
3429 if (pathlen <= XFS_LITINO(mp))
3432 fs_blocks = XFS_B_TO_FSB(mp, pathlen);
3433 resblks = XFS_SYMLINK_SPACE_RES(mp, link_namelen, fs_blocks);
3434 error = xfs_trans_reserve(tp, resblks, XFS_SYMLINK_LOG_RES(mp), 0,
3435 XFS_TRANS_PERM_LOG_RES, XFS_SYMLINK_LOG_COUNT);
3436 if (error == ENOSPC && fs_blocks == 0) {
3438 error = xfs_trans_reserve(tp, 0, XFS_SYMLINK_LOG_RES(mp), 0,
3439 XFS_TRANS_PERM_LOG_RES, XFS_SYMLINK_LOG_COUNT);
3447 xfs_ilock(dp, XFS_ILOCK_EXCL);
3450 * Check whether the directory allows new symlinks or not.
3452 if (dp->i_d.di_flags & XFS_DIFLAG_NOSYMLINKS) {
3453 error = XFS_ERROR(EPERM);
3458 * Reserve disk quota : blocks and inode.
3460 error = XFS_TRANS_RESERVE_QUOTA(mp, tp, udqp, gdqp, resblks, 1, 0);
3465 * Check for ability to enter directory entry, if no space reserved.
3468 (error = XFS_DIR_CANENTER(mp, tp, dp, link_name, link_namelen)))
3471 * Initialize the bmap freelist prior to calling either
3472 * bmapi or the directory create code.
3474 XFS_BMAP_INIT(&free_list, &first_block);
3477 * Allocate an inode for the symlink.
3479 error = xfs_dir_ialloc(&tp, dp, S_IFLNK | (vap->va_mode&~S_IFMT),
3480 1, 0, credp, prid, resblks > 0, &ip, NULL);
3482 if (error == ENOSPC)
3489 xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
3490 dp_joined_to_trans = B_TRUE;
3493 * Also attach the dquot(s) to it, if applicable.
3495 XFS_QM_DQVOPCREATE(mp, tp, ip, udqp, gdqp);
3498 resblks -= XFS_IALLOC_SPACE_RES(mp);
3500 * If the symlink will fit into the inode, write it inline.
3502 if (pathlen <= XFS_IFORK_DSIZE(ip)) {
3503 xfs_idata_realloc(ip, pathlen, XFS_DATA_FORK);
3504 memcpy(ip->i_df.if_u1.if_data, target_path, pathlen);
3505 ip->i_d.di_size = pathlen;
3508 * The inode was initially created in extent format.
3510 ip->i_df.if_flags &= ~(XFS_IFEXTENTS | XFS_IFBROOT);
3511 ip->i_df.if_flags |= XFS_IFINLINE;
3513 ip->i_d.di_format = XFS_DINODE_FMT_LOCAL;
3514 xfs_trans_log_inode(tp, ip, XFS_ILOG_DDATA | XFS_ILOG_CORE);
3518 nmaps = SYMLINK_MAPS;
3520 error = xfs_bmapi(tp, ip, first_fsb, fs_blocks,
3521 XFS_BMAPI_WRITE | XFS_BMAPI_METADATA,
3522 &first_block, resblks, mval, &nmaps,
3529 resblks -= fs_blocks;
3530 ip->i_d.di_size = pathlen;
3531 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
3533 cur_chunk = target_path;
3534 for (n = 0; n < nmaps; n++) {
3535 d = XFS_FSB_TO_DADDR(mp, mval[n].br_startblock);
3536 byte_cnt = XFS_FSB_TO_B(mp, mval[n].br_blockcount);
3537 bp = xfs_trans_get_buf(tp, mp->m_ddev_targp, d,
3538 BTOBB(byte_cnt), 0);
3539 ASSERT(bp && !XFS_BUF_GETERROR(bp));
3540 if (pathlen < byte_cnt) {
3543 pathlen -= byte_cnt;
3545 memcpy(XFS_BUF_PTR(bp), cur_chunk, byte_cnt);
3546 cur_chunk += byte_cnt;
3548 xfs_trans_log_buf(tp, bp, 0, byte_cnt - 1);
3553 * Create the directory entry for the symlink.
3555 error = XFS_DIR_CREATENAME(mp, tp, dp, link_name, link_namelen,
3556 ip->i_ino, &first_block, &free_list, resblks);
3560 xfs_ichgtime(dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
3561 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
3564 * Bump the in memory version number of the parent directory
3565 * so that other processes accessing it will recognize that
3566 * the directory has changed.
3571 * If this is a synchronous mount, make sure that the
3572 * symlink transaction goes to disk before returning to
3575 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
3576 xfs_trans_set_sync(tp);
3580 * xfs_trans_commit normally decrements the vnode ref count
3581 * when it unlocks the inode. Since we want to return the
3582 * vnode to the caller, we bump the vnode ref count now.
3586 error = xfs_bmap_finish(&tp, &free_list, first_block, &committed);
3590 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES, NULL);
3591 XFS_QM_DQRELE(mp, udqp);
3592 XFS_QM_DQRELE(mp, gdqp);
3594 /* Fall through to std_return with error = 0 or errno from
3595 * xfs_trans_commit */
3597 if (DM_EVENT_ENABLED(dir_vp->v_vfsp, XFS_BHVTOI(dir_bdp),
3598 DM_EVENT_POSTSYMLINK)) {
3599 (void) XFS_SEND_NAMESP(mp, DM_EVENT_POSTSYMLINK,
3600 dir_vp, DM_RIGHT_NULL,
3601 error ? NULL : XFS_ITOV(ip),
3602 DM_RIGHT_NULL, link_name, target_path,
3618 xfs_bmap_cancel(&free_list);
3619 cancel_flags |= XFS_TRANS_ABORT;
3621 xfs_trans_cancel(tp, cancel_flags);
3622 XFS_QM_DQRELE(mp, udqp);
3623 XFS_QM_DQRELE(mp, gdqp);
3625 if (!dp_joined_to_trans && (dp != NULL)) {
3626 xfs_iunlock(dp, XFS_ILOCK_EXCL);
3636 * A fid routine that takes a pointer to a previously allocated
3637 * fid structure (like xfs_fast_fid) but uses a 64 bit inode number.
3647 vn_trace_entry(BHV_TO_VNODE(bdp), __FUNCTION__,
3648 (inst_t *)__return_address);
3649 ASSERT(sizeof(fid_t) >= sizeof(xfs_fid2_t));
3651 xfid = (xfs_fid2_t *)fidp;
3652 ip = XFS_BHVTOI(bdp);
3653 xfid->fid_len = sizeof(xfs_fid2_t) - sizeof(xfid->fid_len);
3656 * use memcpy because the inode is a long long and there's no
3657 * assurance that xfid->fid_ino is properly aligned.
3659 memcpy(&xfid->fid_ino, &ip->i_ino, sizeof(xfid->fid_ino));
3660 xfid->fid_gen = ip->i_d.di_gen;
3677 vp = BHV_TO_VNODE(bdp);
3680 ip = XFS_BHVTOI(bdp);
3681 if (locktype == VRWLOCK_WRITE) {
3682 xfs_ilock(ip, XFS_IOLOCK_EXCL);
3683 } else if (locktype == VRWLOCK_TRY_READ) {
3684 return (xfs_ilock_nowait(ip, XFS_IOLOCK_SHARED));
3685 } else if (locktype == VRWLOCK_TRY_WRITE) {
3686 return (xfs_ilock_nowait(ip, XFS_IOLOCK_EXCL));
3688 ASSERT((locktype == VRWLOCK_READ) ||
3689 (locktype == VRWLOCK_WRITE_DIRECT));
3690 xfs_ilock(ip, XFS_IOLOCK_SHARED);
3708 vp = BHV_TO_VNODE(bdp);
3711 ip = XFS_BHVTOI(bdp);
3712 if (locktype == VRWLOCK_WRITE) {
3714 * In the write case, we may have added a new entry to
3715 * the reference cache. This might store a pointer to
3716 * an inode to be released in this inode. If it is there,
3717 * clear the pointer and release the inode after unlocking
3720 xfs_refcache_iunlock(ip, XFS_IOLOCK_EXCL);
3722 ASSERT((locktype == VRWLOCK_READ) ||
3723 (locktype == VRWLOCK_WRITE_DIRECT));
3724 xfs_iunlock(ip, XFS_IOLOCK_SHARED);
3736 xfs_inode_log_item_t *iip;
3739 ip = XFS_BHVTOI(bdp);
3743 if (XFS_FORCED_SHUTDOWN(mp))
3744 return XFS_ERROR(EIO);
3747 * Bypass inodes which have already been cleaned by
3748 * the inode flush clustering code inside xfs_iflush
3750 if ((ip->i_update_core == 0) &&
3751 ((iip == NULL) || !(iip->ili_format.ilf_fields & XFS_ILOG_ALL)))
3754 if (flags & FLUSH_LOG) {
3755 if (iip && iip->ili_last_lsn) {
3756 xlog_t *log = mp->m_log;
3758 int s, log_flags = XFS_LOG_FORCE;
3760 s = GRANT_LOCK(log);
3761 sync_lsn = log->l_last_sync_lsn;
3762 GRANT_UNLOCK(log, s);
3764 if ((XFS_LSN_CMP(iip->ili_last_lsn, sync_lsn) <= 0))
3767 if (flags & FLUSH_SYNC)
3768 log_flags |= XFS_LOG_SYNC;
3769 return xfs_log_force(mp, iip->ili_last_lsn, log_flags);
3774 * We make this non-blocking if the inode is contended,
3775 * return EAGAIN to indicate to the caller that they
3776 * did not succeed. This prevents the flush path from
3777 * blocking on inodes inside another operation right
3778 * now, they get caught later by xfs_sync.
3780 if (flags & FLUSH_INODE) {
3783 if (xfs_ipincount(ip))
3786 if (flags & FLUSH_SYNC) {
3787 xfs_ilock(ip, XFS_ILOCK_SHARED);
3789 } else if (xfs_ilock_nowait(ip, XFS_ILOCK_SHARED)) {
3790 if (xfs_ipincount(ip) || !xfs_iflock_nowait(ip)) {
3791 xfs_iunlock(ip, XFS_ILOCK_SHARED);
3798 if (flags & FLUSH_SYNC)
3799 flush_flags = XFS_IFLUSH_SYNC;
3801 flush_flags = XFS_IFLUSH_ASYNC;
3803 error = xfs_iflush(ip, flush_flags);
3804 xfs_iunlock(ip, XFS_ILOCK_SHARED);
3823 if (!capable(CAP_SYS_ADMIN))
3824 return XFS_ERROR(EPERM);
3826 ip = XFS_BHVTOI(bdp);
3829 if (XFS_FORCED_SHUTDOWN(mp))
3830 return XFS_ERROR(EIO);
3832 tp = xfs_trans_alloc(mp, XFS_TRANS_SET_DMATTRS);
3833 error = xfs_trans_reserve(tp, 0, XFS_ICHANGE_LOG_RES (mp), 0, 0, 0);
3835 xfs_trans_cancel(tp, 0);
3838 xfs_ilock(ip, XFS_ILOCK_EXCL);
3839 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
3841 ip->i_iocore.io_dmevmask = ip->i_d.di_dmevmask = evmask;
3842 ip->i_iocore.io_dmstate = ip->i_d.di_dmstate = state;
3844 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
3846 error = xfs_trans_commit(tp, 0, NULL);
3862 vp = BHV_TO_VNODE(bdp);
3863 ip = XFS_BHVTOI(bdp);
3865 vn_trace_entry(vp, __FUNCTION__, (inst_t *)__return_address);
3867 ASSERT(!VN_MAPPED(vp));
3869 /* bad inode, get out here ASAP */
3877 ASSERT(XFS_FORCED_SHUTDOWN(ip->i_mount) || ip->i_delayed_blks == 0);
3878 ASSERT(VN_CACHED(vp) == 0);
3880 /* If we have nothing to flush with this inode then complete the
3881 * teardown now, otherwise break the link between the xfs inode
3882 * and the linux inode and clean up the xfs inode later. This
3883 * avoids flushing the inode to disk during the delete operation
3886 if (!ip->i_update_core && (ip->i_itemp == NULL)) {
3887 xfs_ilock(ip, XFS_ILOCK_EXCL);
3889 return xfs_finish_reclaim(ip, 1, XFS_IFLUSH_DELWRI_ELSE_SYNC);
3891 xfs_mount_t *mp = ip->i_mount;
3893 /* Protect sync from us */
3894 XFS_MOUNT_ILOCK(mp);
3895 vn_bhv_remove(VN_BHV_HEAD(vp), XFS_ITOBHV(ip));
3896 list_add_tail(&ip->i_reclaim, &mp->m_del_inodes);
3897 ip->i_flags |= XFS_IRECLAIMABLE;
3898 XFS_MOUNT_IUNLOCK(mp);
3909 xfs_ihash_t *ih = ip->i_hash;
3910 vnode_t *vp = XFS_ITOV_NULL(ip);
3913 if (vp && VN_BAD(vp))
3916 /* The hash lock here protects a thread in xfs_iget_core from
3917 * racing with us on linking the inode back with a vnode.
3918 * Once we have the XFS_IRECLAIM flag set it will not touch
3921 write_lock(&ih->ih_lock);
3922 if ((ip->i_flags & XFS_IRECLAIM) ||
3923 (!(ip->i_flags & XFS_IRECLAIMABLE) && vp == NULL)) {
3924 write_unlock(&ih->ih_lock);
3927 xfs_iunlock(ip, XFS_ILOCK_EXCL);
3931 ip->i_flags |= XFS_IRECLAIM;
3932 write_unlock(&ih->ih_lock);
3935 * If the inode is still dirty, then flush it out. If the inode
3936 * is not in the AIL, then it will be OK to flush it delwri as
3937 * long as xfs_iflush() does not keep any references to the inode.
3938 * We leave that decision up to xfs_iflush() since it has the
3939 * knowledge of whether it's OK to simply do a delwri flush of
3940 * the inode or whether we need to wait until the inode is
3941 * pulled from the AIL.
3942 * We get the flush lock regardless, though, just to make sure
3943 * we don't free it while it is being flushed.
3945 if (!XFS_FORCED_SHUTDOWN(ip->i_mount)) {
3947 xfs_ilock(ip, XFS_ILOCK_EXCL);
3951 if (ip->i_update_core ||
3952 ((ip->i_itemp != NULL) &&
3953 (ip->i_itemp->ili_format.ilf_fields != 0))) {
3954 error = xfs_iflush(ip, sync_mode);
3956 * If we hit an error, typically because of filesystem
3957 * shutdown, we don't need to let vn_reclaim to know
3958 * because we're gonna reclaim the inode anyway.
3961 xfs_iunlock(ip, XFS_ILOCK_EXCL);
3964 xfs_iflock(ip); /* synchronize with xfs_iflush_done */
3967 ASSERT(ip->i_update_core == 0);
3968 ASSERT(ip->i_itemp == NULL ||
3969 ip->i_itemp->ili_format.ilf_fields == 0);
3970 xfs_iunlock(ip, XFS_ILOCK_EXCL);
3971 } else if (locked) {
3973 * We are not interested in doing an iflush if we're
3974 * in the process of shutting down the filesystem forcibly.
3975 * So, just reclaim the inode.
3978 xfs_iunlock(ip, XFS_ILOCK_EXCL);
3987 xfs_finish_reclaim_all(xfs_mount_t *mp, int noblock)
3990 xfs_inode_t *ip, *n;
3995 XFS_MOUNT_ILOCK(mp);
3996 list_for_each_entry_safe(ip, n, &mp->m_del_inodes, i_reclaim) {
3998 if (xfs_ilock_nowait(ip, XFS_ILOCK_EXCL) == 0)
4000 if (xfs_ipincount(ip) ||
4001 !xfs_iflock_nowait(ip)) {
4002 xfs_iunlock(ip, XFS_ILOCK_EXCL);
4006 XFS_MOUNT_IUNLOCK(mp);
4007 xfs_finish_reclaim(ip, noblock,
4008 XFS_IFLUSH_DELWRI_ELSE_ASYNC);
4016 XFS_MOUNT_IUNLOCK(mp);
4021 * xfs_alloc_file_space()
4022 * This routine allocates disk space for the given file.
4024 * If alloc_type == 0, this request is for an ALLOCSP type
4025 * request which will change the file size. In this case, no
4026 * DMAPI event will be generated by the call. A TRUNCATE event
4027 * will be generated later by xfs_setattr.
4029 * If alloc_type != 0, this request is for a RESVSP type
4030 * request, and a DMAPI DM_EVENT_WRITE will be generated if the
4031 * lower block boundary byte address is less than the file's
4040 xfs_alloc_file_space(
4047 xfs_filblks_t allocated_fsb;
4048 xfs_filblks_t allocatesize_fsb;
4051 xfs_filblks_t datablocks;
4053 xfs_fsblock_t firstfsb;
4054 xfs_bmap_free_t free_list;
4055 xfs_bmbt_irec_t *imapp;
4056 xfs_bmbt_irec_t imaps[1];
4063 xfs_fileoff_t startoffset_fsb;
4065 int xfs_bmapi_flags;
4067 vn_trace_entry(XFS_ITOV(ip), __FUNCTION__, (inst_t *)__return_address);
4070 if (XFS_FORCED_SHUTDOWN(mp))
4071 return XFS_ERROR(EIO);
4074 * determine if this is a realtime file
4076 if ((rt = XFS_IS_REALTIME_INODE(ip)) != 0) {
4077 if (ip->i_d.di_extsize)
4078 rtextsize = ip->i_d.di_extsize;
4080 rtextsize = mp->m_sb.sb_rextsize;
4084 if ((error = XFS_QM_DQATTACH(mp, ip, 0)))
4088 return XFS_ERROR(EINVAL);
4094 xfs_bmapi_flags = XFS_BMAPI_WRITE | (alloc_type ? XFS_BMAPI_PREALLOC : 0);
4095 startoffset_fsb = XFS_B_TO_FSBT(mp, offset);
4096 allocatesize_fsb = XFS_B_TO_FSB(mp, count);
4098 /* Generate a DMAPI event if needed. */
4099 if (alloc_type != 0 && offset < ip->i_d.di_size &&
4100 (attr_flags&ATTR_DMI) == 0 &&
4101 DM_EVENT_ENABLED(XFS_MTOVFS(mp), ip, DM_EVENT_WRITE)) {
4102 xfs_off_t end_dmi_offset;
4104 end_dmi_offset = offset+len;
4105 if (end_dmi_offset > ip->i_d.di_size)
4106 end_dmi_offset = ip->i_d.di_size;
4107 error = XFS_SEND_DATA(mp, DM_EVENT_WRITE, XFS_ITOV(ip),
4108 offset, end_dmi_offset - offset,
4115 * allocate file space until done or until there is an error
4118 while (allocatesize_fsb && !error) {
4120 * determine if reserving space on
4121 * the data or realtime partition.
4126 s = startoffset_fsb;
4127 do_div(s, rtextsize);
4129 e = roundup_64(startoffset_fsb + allocatesize_fsb,
4131 numrtextents = (int)(e - s) / mp->m_sb.sb_rextsize;
4134 datablocks = allocatesize_fsb;
4139 * allocate and setup the transaction
4141 tp = xfs_trans_alloc(mp, XFS_TRANS_DIOSTRAT);
4142 resblks = XFS_DIOSTRAT_SPACE_RES(mp, datablocks);
4143 error = xfs_trans_reserve(tp,
4145 XFS_WRITE_LOG_RES(mp),
4147 XFS_TRANS_PERM_LOG_RES,
4148 XFS_WRITE_LOG_COUNT);
4151 * check for running out of space
4155 * Free the transaction structure.
4157 ASSERT(error == ENOSPC || XFS_FORCED_SHUTDOWN(mp));
4158 xfs_trans_cancel(tp, 0);
4161 xfs_ilock(ip, XFS_ILOCK_EXCL);
4162 error = XFS_TRANS_RESERVE_QUOTA(mp, tp,
4163 ip->i_udquot, ip->i_gdquot, resblks, 0, 0);
4167 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
4168 xfs_trans_ihold(tp, ip);
4171 * issue the bmapi() call to allocate the blocks
4173 XFS_BMAP_INIT(&free_list, &firstfsb);
4174 error = xfs_bmapi(tp, ip, startoffset_fsb,
4175 allocatesize_fsb, xfs_bmapi_flags,
4176 &firstfsb, 0, imapp, &reccount,
4183 * complete the transaction
4185 error = xfs_bmap_finish(&tp, &free_list, firstfsb, &committed);
4190 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES, NULL);
4191 xfs_iunlock(ip, XFS_ILOCK_EXCL);
4196 allocated_fsb = imapp->br_blockcount;
4198 if (reccount == 0) {
4199 error = XFS_ERROR(ENOSPC);
4203 startoffset_fsb += allocated_fsb;
4204 allocatesize_fsb -= allocated_fsb;
4207 if (error == ENOSPC && (attr_flags&ATTR_DMI) == 0 &&
4208 DM_EVENT_ENABLED(XFS_MTOVFS(mp), ip, DM_EVENT_NOSPACE)) {
4210 error = XFS_SEND_NAMESP(mp, DM_EVENT_NOSPACE,
4211 XFS_ITOV(ip), DM_RIGHT_NULL,
4212 XFS_ITOV(ip), DM_RIGHT_NULL,
4213 NULL, NULL, 0, 0, 0); /* Delay flag intentionally unused */
4215 goto retry; /* Maybe DMAPI app. has made space */
4216 /* else fall through with error from XFS_SEND_DATA */
4222 xfs_bmap_cancel(&free_list);
4224 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
4225 xfs_iunlock(ip, XFS_ILOCK_EXCL);
4226 goto dmapi_enospc_check;
4230 * Zero file bytes between startoff and endoff inclusive.
4231 * The iolock is held exclusive and no blocks are buffered.
4234 xfs_zero_remaining_bytes(
4239 xfs_bmbt_irec_t imap;
4240 xfs_fileoff_t offset_fsb;
4241 xfs_off_t lastoffset;
4244 xfs_mount_t *mp = ip->i_mount;
4248 bp = xfs_buf_get_noaddr(mp->m_sb.sb_blocksize,
4249 ip->i_d.di_flags & XFS_DIFLAG_REALTIME ?
4250 mp->m_rtdev_targp : mp->m_ddev_targp);
4252 for (offset = startoff; offset <= endoff; offset = lastoffset + 1) {
4253 offset_fsb = XFS_B_TO_FSBT(mp, offset);
4255 error = xfs_bmapi(NULL, ip, offset_fsb, 1, 0, NULL, 0, &imap,
4257 if (error || nimap < 1)
4259 ASSERT(imap.br_blockcount >= 1);
4260 ASSERT(imap.br_startoff == offset_fsb);
4261 lastoffset = XFS_FSB_TO_B(mp, imap.br_startoff + 1) - 1;
4262 if (lastoffset > endoff)
4263 lastoffset = endoff;
4264 if (imap.br_startblock == HOLESTARTBLOCK)
4266 ASSERT(imap.br_startblock != DELAYSTARTBLOCK);
4267 if (imap.br_state == XFS_EXT_UNWRITTEN)
4270 XFS_BUF_UNWRITE(bp);
4272 XFS_BUF_SET_ADDR(bp, XFS_FSB_TO_DB(ip, imap.br_startblock));
4274 if ((error = xfs_iowait(bp))) {
4275 xfs_ioerror_alert("xfs_zero_remaining_bytes(read)",
4276 mp, bp, XFS_BUF_ADDR(bp));
4279 memset(XFS_BUF_PTR(bp) +
4280 (offset - XFS_FSB_TO_B(mp, imap.br_startoff)),
4281 0, lastoffset - offset + 1);
4286 if ((error = xfs_iowait(bp))) {
4287 xfs_ioerror_alert("xfs_zero_remaining_bytes(write)",
4288 mp, bp, XFS_BUF_ADDR(bp));
4297 * xfs_free_file_space()
4298 * This routine frees disk space for the given file.
4300 * This routine is only called by xfs_change_file_space
4301 * for an UNRESVSP type call.
4309 xfs_free_file_space(
4318 xfs_off_t end_dmi_offset;
4319 xfs_fileoff_t endoffset_fsb;
4321 xfs_fsblock_t firstfsb;
4322 xfs_bmap_free_t free_list;
4324 xfs_bmbt_irec_t imap;
4332 xfs_fileoff_t startoffset_fsb;
4334 int need_iolock = 1;
4339 vn_trace_entry(vp, __FUNCTION__, (inst_t *)__return_address);
4341 if ((error = XFS_QM_DQATTACH(mp, ip, 0)))
4345 if (len <= 0) /* if nothing being freed */
4347 rt = (ip->i_d.di_flags & XFS_DIFLAG_REALTIME);
4348 startoffset_fsb = XFS_B_TO_FSB(mp, offset);
4349 end_dmi_offset = offset + len;
4350 endoffset_fsb = XFS_B_TO_FSBT(mp, end_dmi_offset);
4352 if (offset < ip->i_d.di_size &&
4353 (attr_flags & ATTR_DMI) == 0 &&
4354 DM_EVENT_ENABLED(XFS_MTOVFS(mp), ip, DM_EVENT_WRITE)) {
4355 if (end_dmi_offset > ip->i_d.di_size)
4356 end_dmi_offset = ip->i_d.di_size;
4357 error = XFS_SEND_DATA(mp, DM_EVENT_WRITE, vp,
4358 offset, end_dmi_offset - offset,
4359 AT_DELAY_FLAG(attr_flags), NULL);
4364 ASSERT(attr_flags & ATTR_NOLOCK ? attr_flags & ATTR_DMI : 1);
4365 if (attr_flags & ATTR_NOLOCK)
4368 xfs_ilock(ip, XFS_IOLOCK_EXCL);
4370 rounding = MAX((__uint8_t)(1 << mp->m_sb.sb_blocklog),
4372 ilen = len + (offset & (rounding - 1));
4373 ioffset = offset & ~(rounding - 1);
4374 if (ilen & (rounding - 1))
4375 ilen = (ilen + rounding) & ~(rounding - 1);
4377 if (VN_CACHED(vp) != 0) {
4378 xfs_inval_cached_trace(&ip->i_iocore, ioffset, -1,
4379 ctooff(offtoct(ioffset)), -1);
4380 VOP_FLUSHINVAL_PAGES(vp, ctooff(offtoct(ioffset)),
4381 -1, FI_REMAPF_LOCKED);
4385 * Need to zero the stuff we're not freeing, on disk.
4386 * If its a realtime file & can't use unwritten extents then we
4387 * actually need to zero the extent edges. Otherwise xfs_bunmapi
4388 * will take care of it for us.
4390 if (rt && !XFS_SB_VERSION_HASEXTFLGBIT(&mp->m_sb)) {
4392 error = xfs_bmapi(NULL, ip, startoffset_fsb, 1, 0, NULL, 0,
4393 &imap, &nimap, NULL);
4395 goto out_unlock_iolock;
4396 ASSERT(nimap == 0 || nimap == 1);
4397 if (nimap && imap.br_startblock != HOLESTARTBLOCK) {
4400 ASSERT(imap.br_startblock != DELAYSTARTBLOCK);
4401 block = imap.br_startblock;
4402 mod = do_div(block, mp->m_sb.sb_rextsize);
4404 startoffset_fsb += mp->m_sb.sb_rextsize - mod;
4407 error = xfs_bmapi(NULL, ip, endoffset_fsb - 1, 1, 0, NULL, 0,
4408 &imap, &nimap, NULL);
4410 goto out_unlock_iolock;
4411 ASSERT(nimap == 0 || nimap == 1);
4412 if (nimap && imap.br_startblock != HOLESTARTBLOCK) {
4413 ASSERT(imap.br_startblock != DELAYSTARTBLOCK);
4415 if (mod && (mod != mp->m_sb.sb_rextsize))
4416 endoffset_fsb -= mod;
4419 if ((done = (endoffset_fsb <= startoffset_fsb)))
4421 * One contiguous piece to clear
4423 error = xfs_zero_remaining_bytes(ip, offset, offset + len - 1);
4426 * Some full blocks, possibly two pieces to clear
4428 if (offset < XFS_FSB_TO_B(mp, startoffset_fsb))
4429 error = xfs_zero_remaining_bytes(ip, offset,
4430 XFS_FSB_TO_B(mp, startoffset_fsb) - 1);
4432 XFS_FSB_TO_B(mp, endoffset_fsb) < offset + len)
4433 error = xfs_zero_remaining_bytes(ip,
4434 XFS_FSB_TO_B(mp, endoffset_fsb),
4439 * free file space until done or until there is an error
4441 resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0);
4442 while (!error && !done) {
4445 * allocate and setup the transaction
4447 tp = xfs_trans_alloc(mp, XFS_TRANS_DIOSTRAT);
4448 error = xfs_trans_reserve(tp,
4450 XFS_WRITE_LOG_RES(mp),
4452 XFS_TRANS_PERM_LOG_RES,
4453 XFS_WRITE_LOG_COUNT);
4456 * check for running out of space
4460 * Free the transaction structure.
4462 ASSERT(error == ENOSPC || XFS_FORCED_SHUTDOWN(mp));
4463 xfs_trans_cancel(tp, 0);
4466 xfs_ilock(ip, XFS_ILOCK_EXCL);
4467 error = XFS_TRANS_RESERVE_QUOTA(mp, tp,
4468 ip->i_udquot, ip->i_gdquot, resblks, 0, rt ?
4469 XFS_QMOPT_RES_RTBLKS : XFS_QMOPT_RES_REGBLKS);
4473 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
4474 xfs_trans_ihold(tp, ip);
4477 * issue the bunmapi() call to free the blocks
4479 XFS_BMAP_INIT(&free_list, &firstfsb);
4480 error = xfs_bunmapi(tp, ip, startoffset_fsb,
4481 endoffset_fsb - startoffset_fsb,
4482 0, 2, &firstfsb, &free_list, &done);
4488 * complete the transaction
4490 error = xfs_bmap_finish(&tp, &free_list, firstfsb, &committed);
4495 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES, NULL);
4496 xfs_iunlock(ip, XFS_ILOCK_EXCL);
4501 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
4505 xfs_bmap_cancel(&free_list);
4507 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
4508 xfs_iunlock(ip, need_iolock ? (XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL) :
4514 * xfs_change_file_space()
4515 * This routine allocates or frees disk space for the given file.
4516 * The user specified parameters are checked for alignment and size
4525 xfs_change_file_space(
4539 xfs_off_t startoffset;
4545 vp = BHV_TO_VNODE(bdp);
4546 vn_trace_entry(vp, __FUNCTION__, (inst_t *)__return_address);
4548 ip = XFS_BHVTOI(bdp);
4552 * must be a regular file and have write permission
4555 return XFS_ERROR(EINVAL);
4557 xfs_ilock(ip, XFS_ILOCK_SHARED);
4559 if ((error = xfs_iaccess(ip, S_IWUSR, credp))) {
4560 xfs_iunlock(ip, XFS_ILOCK_SHARED);
4564 xfs_iunlock(ip, XFS_ILOCK_SHARED);
4566 switch (bf->l_whence) {
4567 case 0: /*SEEK_SET*/
4569 case 1: /*SEEK_CUR*/
4570 bf->l_start += offset;
4572 case 2: /*SEEK_END*/
4573 bf->l_start += ip->i_d.di_size;
4576 return XFS_ERROR(EINVAL);
4579 llen = bf->l_len > 0 ? bf->l_len - 1 : bf->l_len;
4581 if ( (bf->l_start < 0)
4582 || (bf->l_start > XFS_MAXIOFFSET(mp))
4583 || (bf->l_start + llen < 0)
4584 || (bf->l_start + llen > XFS_MAXIOFFSET(mp)))
4585 return XFS_ERROR(EINVAL);
4589 startoffset = bf->l_start;
4590 fsize = ip->i_d.di_size;
4593 * XFS_IOC_RESVSP and XFS_IOC_UNRESVSP will reserve or unreserve
4595 * These calls do NOT zero the data space allocated to the file,
4596 * nor do they change the file size.
4598 * XFS_IOC_ALLOCSP and XFS_IOC_FREESP will allocate and free file
4600 * These calls cause the new file data to be zeroed and the file
4601 * size to be changed.
4603 setprealloc = clrprealloc = 0;
4606 case XFS_IOC_RESVSP:
4607 case XFS_IOC_RESVSP64:
4608 error = xfs_alloc_file_space(ip, startoffset, bf->l_len,
4615 case XFS_IOC_UNRESVSP:
4616 case XFS_IOC_UNRESVSP64:
4617 if ((error = xfs_free_file_space(ip, startoffset, bf->l_len,
4622 case XFS_IOC_ALLOCSP:
4623 case XFS_IOC_ALLOCSP64:
4624 case XFS_IOC_FREESP:
4625 case XFS_IOC_FREESP64:
4626 if (startoffset > fsize) {
4627 error = xfs_alloc_file_space(ip, fsize,
4628 startoffset - fsize, 0, attr_flags);
4633 va.va_mask = XFS_AT_SIZE;
4634 va.va_size = startoffset;
4636 error = xfs_setattr(bdp, &va, attr_flags, credp);
4646 return XFS_ERROR(EINVAL);
4650 * update the inode timestamp, mode, and prealloc flag bits
4652 tp = xfs_trans_alloc(mp, XFS_TRANS_WRITEID);
4654 if ((error = xfs_trans_reserve(tp, 0, XFS_WRITEID_LOG_RES(mp),
4657 xfs_trans_cancel(tp, 0);
4661 xfs_ilock(ip, XFS_ILOCK_EXCL);
4663 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
4664 xfs_trans_ihold(tp, ip);
4666 if ((attr_flags & ATTR_DMI) == 0) {
4667 ip->i_d.di_mode &= ~S_ISUID;
4670 * Note that we don't have to worry about mandatory
4671 * file locking being disabled here because we only
4672 * clear the S_ISGID bit if the Group execute bit is
4673 * on, but if it was on then mandatory locking wouldn't
4674 * have been enabled.
4676 if (ip->i_d.di_mode & S_IXGRP)
4677 ip->i_d.di_mode &= ~S_ISGID;
4679 xfs_ichgtime(ip, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
4682 ip->i_d.di_flags |= XFS_DIFLAG_PREALLOC;
4683 else if (clrprealloc)
4684 ip->i_d.di_flags &= ~XFS_DIFLAG_PREALLOC;
4686 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
4687 xfs_trans_set_sync(tp);
4689 error = xfs_trans_commit(tp, 0, NULL);
4691 xfs_iunlock(ip, XFS_ILOCK_EXCL);
4696 vnodeops_t xfs_vnodeops = {
4697 BHV_IDENTITY_INIT(VN_BHV_XFS,VNODE_POSITION_XFS),
4698 .vop_open = xfs_open,
4699 .vop_read = xfs_read,
4700 #ifdef HAVE_SENDFILE
4701 .vop_sendfile = xfs_sendfile,
4703 .vop_write = xfs_write,
4704 .vop_ioctl = xfs_ioctl,
4705 .vop_getattr = xfs_getattr,
4706 .vop_setattr = xfs_setattr,
4707 .vop_access = xfs_access,
4708 .vop_lookup = xfs_lookup,
4709 .vop_create = xfs_create,
4710 .vop_remove = xfs_remove,
4711 .vop_link = xfs_link,
4712 .vop_rename = xfs_rename,
4713 .vop_mkdir = xfs_mkdir,
4714 .vop_rmdir = xfs_rmdir,
4715 .vop_readdir = xfs_readdir,
4716 .vop_symlink = xfs_symlink,
4717 .vop_readlink = xfs_readlink,
4718 .vop_fsync = xfs_fsync,
4719 .vop_inactive = xfs_inactive,
4720 .vop_fid2 = xfs_fid2,
4721 .vop_rwlock = xfs_rwlock,
4722 .vop_rwunlock = xfs_rwunlock,
4723 .vop_bmap = xfs_bmap,
4724 .vop_reclaim = xfs_reclaim,
4725 .vop_attr_get = xfs_attr_get,
4726 .vop_attr_set = xfs_attr_set,
4727 .vop_attr_remove = xfs_attr_remove,
4728 .vop_attr_list = xfs_attr_list,
4729 .vop_link_removed = (vop_link_removed_t)fs_noval,
4730 .vop_vnode_change = (vop_vnode_change_t)fs_noval,
4731 .vop_tosspages = fs_tosspages,
4732 .vop_flushinval_pages = fs_flushinval_pages,
4733 .vop_flush_pages = fs_flush_pages,
4734 .vop_release = xfs_release,
4735 .vop_iflush = xfs_inode_flush,