2 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation.
9 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21 #include "xfs_types.h"
25 #include "xfs_trans.h"
29 #include "xfs_dmapi.h"
30 #include "xfs_mount.h"
31 #include "xfs_da_btree.h"
32 #include "xfs_bmap_btree.h"
33 #include "xfs_alloc_btree.h"
34 #include "xfs_ialloc_btree.h"
35 #include "xfs_dir2_sf.h"
36 #include "xfs_attr_sf.h"
37 #include "xfs_dinode.h"
38 #include "xfs_inode.h"
39 #include "xfs_inode_item.h"
40 #include "xfs_itable.h"
41 #include "xfs_btree.h"
42 #include "xfs_ialloc.h"
43 #include "xfs_alloc.h"
48 #include "xfs_error.h"
49 #include "xfs_quota.h"
50 #include "xfs_utils.h"
51 #include "xfs_rtalloc.h"
52 #include "xfs_trans_space.h"
53 #include "xfs_log_priv.h"
54 #include "xfs_filestream.h"
55 #include "xfs_vnodeops.h"
63 xfs_mount_t
*mp
= ip
->i_mount
;
64 struct inode
*inode
= VFS_I(ip
);
65 int mask
= iattr
->ia_valid
;
73 struct xfs_dquot
*udqp
, *gdqp
, *olddquot1
, *olddquot2
;
78 if (mp
->m_flags
& XFS_MOUNT_RDONLY
)
79 return XFS_ERROR(EROFS
);
81 if (XFS_FORCED_SHUTDOWN(mp
))
82 return XFS_ERROR(EIO
);
84 code
= -inode_change_ok(inode
, iattr
);
88 olddquot1
= olddquot2
= NULL
;
92 * If disk quotas is on, we make sure that the dquots do exist on disk,
93 * before we start any other transactions. Trying to do this later
94 * is messy. We don't care to take a readlock to look at the ids
95 * in inode here, because we can't hold it across the trans_reserve.
96 * If the IDs do change before we take the ilock, we're covered
97 * because the i_*dquot fields will get updated anyway.
99 if (XFS_IS_QUOTA_ON(mp
) && (mask
& (ATTR_UID
|ATTR_GID
))) {
102 if ((mask
& ATTR_UID
) && XFS_IS_UQUOTA_ON(mp
)) {
104 qflags
|= XFS_QMOPT_UQUOTA
;
106 uid
= ip
->i_d
.di_uid
;
108 if ((mask
& ATTR_GID
) && XFS_IS_GQUOTA_ON(mp
)) {
110 qflags
|= XFS_QMOPT_GQUOTA
;
112 gid
= ip
->i_d
.di_gid
;
116 * We take a reference when we initialize udqp and gdqp,
117 * so it is important that we never blindly double trip on
118 * the same variable. See xfs_create() for an example.
120 ASSERT(udqp
== NULL
);
121 ASSERT(gdqp
== NULL
);
122 code
= xfs_qm_vop_dqalloc(ip
, uid
, gid
, ip
->i_d
.di_projid
,
123 qflags
, &udqp
, &gdqp
);
129 * For the other attributes, we acquire the inode lock and
130 * first do an error checking pass.
133 lock_flags
= XFS_ILOCK_EXCL
;
134 if (flags
& XFS_ATTR_NOLOCK
)
136 if (!(mask
& ATTR_SIZE
)) {
137 if ((mask
!= (ATTR_CTIME
|ATTR_ATIME
|ATTR_MTIME
)) ||
138 (mp
->m_flags
& XFS_MOUNT_WSYNC
)) {
139 tp
= xfs_trans_alloc(mp
, XFS_TRANS_SETATTR_NOT_SIZE
);
141 if ((code
= xfs_trans_reserve(tp
, 0,
142 XFS_ICHANGE_LOG_RES(mp
), 0,
149 if (DM_EVENT_ENABLED(ip
, DM_EVENT_TRUNCATE
) &&
150 !(flags
& XFS_ATTR_DMI
)) {
151 int dmflags
= AT_DELAY_FLAG(flags
) | DM_SEM_FLAG_WR
;
152 code
= XFS_SEND_DATA(mp
, DM_EVENT_TRUNCATE
, ip
,
153 iattr
->ia_size
, 0, dmflags
, NULL
);
160 lock_flags
|= XFS_IOLOCK_EXCL
;
163 xfs_ilock(ip
, lock_flags
);
166 * Change file ownership. Must be the owner or privileged.
168 if (mask
& (ATTR_UID
|ATTR_GID
)) {
170 * These IDs could have changed since we last looked at them.
171 * But, we're assured that if the ownership did change
172 * while we didn't have the inode locked, inode's dquot(s)
173 * would have changed also.
175 iuid
= ip
->i_d
.di_uid
;
176 igid
= ip
->i_d
.di_gid
;
177 gid
= (mask
& ATTR_GID
) ? iattr
->ia_gid
: igid
;
178 uid
= (mask
& ATTR_UID
) ? iattr
->ia_uid
: iuid
;
181 * Do a quota reservation only if uid/gid is actually
184 if (XFS_IS_QUOTA_RUNNING(mp
) &&
185 ((XFS_IS_UQUOTA_ON(mp
) && iuid
!= uid
) ||
186 (XFS_IS_GQUOTA_ON(mp
) && igid
!= gid
))) {
188 code
= xfs_qm_vop_chown_reserve(tp
, ip
, udqp
, gdqp
,
189 capable(CAP_FOWNER
) ?
190 XFS_QMOPT_FORCE_RES
: 0);
191 if (code
) /* out of quota */
197 * Truncate file. Must have write permission and not be a directory.
199 if (mask
& ATTR_SIZE
) {
200 /* Short circuit the truncate case for zero length files */
201 if (iattr
->ia_size
== 0 &&
202 ip
->i_size
== 0 && ip
->i_d
.di_nextents
== 0) {
203 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
204 lock_flags
&= ~XFS_ILOCK_EXCL
;
205 if (mask
& ATTR_CTIME
)
206 xfs_ichgtime(ip
, XFS_ICHGTIME_MOD
| XFS_ICHGTIME_CHG
);
211 if (S_ISDIR(ip
->i_d
.di_mode
)) {
212 code
= XFS_ERROR(EISDIR
);
214 } else if (!S_ISREG(ip
->i_d
.di_mode
)) {
215 code
= XFS_ERROR(EINVAL
);
220 * Make sure that the dquots are attached to the inode.
222 code
= xfs_qm_dqattach_locked(ip
, 0);
227 * Now we can make the changes. Before we join the inode
228 * to the transaction, if ATTR_SIZE is set then take care of
229 * the part of the truncation that must be done without the
230 * inode lock. This needs to be done before joining the inode
231 * to the transaction, because the inode cannot be unlocked
232 * once it is a part of the transaction.
234 if (iattr
->ia_size
> ip
->i_size
) {
236 * Do the first part of growing a file: zero any data
237 * in the last block that is beyond the old EOF. We
238 * need to do this before the inode is joined to the
239 * transaction to modify the i_size.
241 code
= xfs_zero_eof(ip
, iattr
->ia_size
, ip
->i_size
);
243 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
246 * We are going to log the inode size change in this
247 * transaction so any previous writes that are beyond the on
248 * disk EOF and the new EOF that have not been written out need
249 * to be written here. If we do not write the data out, we
250 * expose ourselves to the null files problem.
252 * Only flush from the on disk size to the smaller of the in
253 * memory file size or the new size as that's the range we
254 * really care about here and prevents waiting for other data
255 * not within the range we care about here.
258 ip
->i_size
!= ip
->i_d
.di_size
&&
259 iattr
->ia_size
> ip
->i_d
.di_size
) {
260 code
= xfs_flush_pages(ip
,
261 ip
->i_d
.di_size
, iattr
->ia_size
,
262 XFS_B_ASYNC
, FI_NONE
);
265 /* wait for all I/O to complete */
269 code
= xfs_itruncate_data(ip
, iattr
->ia_size
);
272 lock_flags
&= ~XFS_ILOCK_EXCL
;
273 ASSERT(lock_flags
== XFS_IOLOCK_EXCL
);
276 tp
= xfs_trans_alloc(mp
, XFS_TRANS_SETATTR_SIZE
);
277 if ((code
= xfs_trans_reserve(tp
, 0,
278 XFS_ITRUNCATE_LOG_RES(mp
), 0,
279 XFS_TRANS_PERM_LOG_RES
,
280 XFS_ITRUNCATE_LOG_COUNT
))) {
281 xfs_trans_cancel(tp
, 0);
283 xfs_iunlock(ip
, XFS_IOLOCK_EXCL
);
286 commit_flags
= XFS_TRANS_RELEASE_LOG_RES
;
287 xfs_ilock(ip
, XFS_ILOCK_EXCL
);
289 xfs_trans_ijoin(tp
, ip
, lock_flags
);
290 xfs_trans_ihold(tp
, ip
);
293 * Only change the c/mtime if we are changing the size
294 * or we are explicitly asked to change it. This handles
295 * the semantic difference between truncate() and ftruncate()
296 * as implemented in the VFS.
298 if (iattr
->ia_size
!= ip
->i_size
|| (mask
& ATTR_CTIME
))
299 timeflags
|= XFS_ICHGTIME_MOD
| XFS_ICHGTIME_CHG
;
301 if (iattr
->ia_size
> ip
->i_size
) {
302 ip
->i_d
.di_size
= iattr
->ia_size
;
303 ip
->i_size
= iattr
->ia_size
;
304 if (!(flags
& XFS_ATTR_DMI
))
305 xfs_ichgtime(ip
, XFS_ICHGTIME_CHG
);
306 xfs_trans_log_inode(tp
, ip
, XFS_ILOG_CORE
);
307 } else if (iattr
->ia_size
<= ip
->i_size
||
308 (iattr
->ia_size
== 0 && ip
->i_d
.di_nextents
)) {
310 * signal a sync transaction unless
311 * we're truncating an already unlinked
312 * file on a wsync filesystem
314 code
= xfs_itruncate_finish(&tp
, ip
, iattr
->ia_size
,
316 ((ip
->i_d
.di_nlink
!= 0 ||
317 !(mp
->m_flags
& XFS_MOUNT_WSYNC
))
322 * Truncated "down", so we're removing references
323 * to old data here - if we now delay flushing for
324 * a long time, we expose ourselves unduly to the
325 * notorious NULL files problem. So, we mark this
326 * vnode and flush it when the file is closed, and
327 * do not wait the usual (long) time for writeout.
329 xfs_iflags_set(ip
, XFS_ITRUNCATED
);
332 xfs_trans_ijoin(tp
, ip
, lock_flags
);
333 xfs_trans_ihold(tp
, ip
);
337 * Change file ownership. Must be the owner or privileged.
339 if (mask
& (ATTR_UID
|ATTR_GID
)) {
341 * CAP_FSETID overrides the following restrictions:
343 * The set-user-ID and set-group-ID bits of a file will be
344 * cleared upon successful return from chown()
346 if ((ip
->i_d
.di_mode
& (S_ISUID
|S_ISGID
)) &&
347 !capable(CAP_FSETID
)) {
348 ip
->i_d
.di_mode
&= ~(S_ISUID
|S_ISGID
);
352 * Change the ownerships and register quota modifications
353 * in the transaction.
356 if (XFS_IS_QUOTA_RUNNING(mp
) && XFS_IS_UQUOTA_ON(mp
)) {
357 ASSERT(mask
& ATTR_UID
);
359 olddquot1
= xfs_qm_vop_chown(tp
, ip
,
360 &ip
->i_udquot
, udqp
);
362 ip
->i_d
.di_uid
= uid
;
366 if (XFS_IS_QUOTA_RUNNING(mp
) && XFS_IS_GQUOTA_ON(mp
)) {
367 ASSERT(!XFS_IS_PQUOTA_ON(mp
));
368 ASSERT(mask
& ATTR_GID
);
370 olddquot2
= xfs_qm_vop_chown(tp
, ip
,
371 &ip
->i_gdquot
, gdqp
);
373 ip
->i_d
.di_gid
= gid
;
377 xfs_trans_log_inode (tp
, ip
, XFS_ILOG_CORE
);
378 timeflags
|= XFS_ICHGTIME_CHG
;
382 * Change file access modes.
384 if (mask
& ATTR_MODE
) {
385 umode_t mode
= iattr
->ia_mode
;
387 if (!in_group_p(inode
->i_gid
) && !capable(CAP_FSETID
))
390 ip
->i_d
.di_mode
&= S_IFMT
;
391 ip
->i_d
.di_mode
|= mode
& ~S_IFMT
;
393 inode
->i_mode
&= S_IFMT
;
394 inode
->i_mode
|= mode
& ~S_IFMT
;
396 xfs_trans_log_inode(tp
, ip
, XFS_ILOG_CORE
);
397 timeflags
|= XFS_ICHGTIME_CHG
;
401 * Change file access or modified times.
403 if (mask
& (ATTR_ATIME
|ATTR_MTIME
)) {
404 if (mask
& ATTR_ATIME
) {
405 inode
->i_atime
= iattr
->ia_atime
;
406 ip
->i_d
.di_atime
.t_sec
= iattr
->ia_atime
.tv_sec
;
407 ip
->i_d
.di_atime
.t_nsec
= iattr
->ia_atime
.tv_nsec
;
408 ip
->i_update_core
= 1;
410 if (mask
& ATTR_MTIME
) {
411 inode
->i_mtime
= iattr
->ia_mtime
;
412 ip
->i_d
.di_mtime
.t_sec
= iattr
->ia_mtime
.tv_sec
;
413 ip
->i_d
.di_mtime
.t_nsec
= iattr
->ia_mtime
.tv_nsec
;
414 timeflags
&= ~XFS_ICHGTIME_MOD
;
415 timeflags
|= XFS_ICHGTIME_CHG
;
417 if (tp
&& (mask
& (ATTR_MTIME_SET
|ATTR_ATIME_SET
)))
418 xfs_trans_log_inode (tp
, ip
, XFS_ILOG_CORE
);
422 * Change file inode change time only if ATTR_CTIME set
423 * AND we have been called by a DMI function.
426 if ((flags
& XFS_ATTR_DMI
) && (mask
& ATTR_CTIME
)) {
427 inode
->i_ctime
= iattr
->ia_ctime
;
428 ip
->i_d
.di_ctime
.t_sec
= iattr
->ia_ctime
.tv_sec
;
429 ip
->i_d
.di_ctime
.t_nsec
= iattr
->ia_ctime
.tv_nsec
;
430 ip
->i_update_core
= 1;
431 timeflags
&= ~XFS_ICHGTIME_CHG
;
435 * Send out timestamp changes that need to be set to the
436 * current time. Not done when called by a DMI function.
438 if (timeflags
&& !(flags
& XFS_ATTR_DMI
))
439 xfs_ichgtime(ip
, timeflags
);
441 XFS_STATS_INC(xs_ig_attrchg
);
444 * If this is a synchronous mount, make sure that the
445 * transaction goes to disk before returning to the user.
446 * This is slightly sub-optimal in that truncates require
447 * two sync transactions instead of one for wsync filesystems.
448 * One for the truncate and one for the timestamps since we
449 * don't want to change the timestamps unless we're sure the
450 * truncate worked. Truncates are less than 1% of the laddis
451 * mix so this probably isn't worth the trouble to optimize.
455 if (mp
->m_flags
& XFS_MOUNT_WSYNC
)
456 xfs_trans_set_sync(tp
);
458 code
= xfs_trans_commit(tp
, commit_flags
);
461 xfs_iunlock(ip
, lock_flags
);
464 * Release any dquot(s) the inode had kept before chown.
466 xfs_qm_dqrele(olddquot1
);
467 xfs_qm_dqrele(olddquot2
);
475 * XXX(hch): Updating the ACL entries is not atomic vs the i_mode
476 * update. We could avoid this with linked transactions
477 * and passing down the transaction pointer all the way
478 * to attr_set. No previous user of the generic
479 * Posix ACL code seems to care about this issue either.
481 if ((mask
& ATTR_MODE
) && !(flags
& XFS_ATTR_NOACL
)) {
482 code
= -xfs_acl_chmod(inode
);
484 return XFS_ERROR(code
);
487 if (DM_EVENT_ENABLED(ip
, DM_EVENT_ATTRIBUTE
) &&
488 !(flags
& XFS_ATTR_DMI
)) {
489 (void) XFS_SEND_NAMESP(mp
, DM_EVENT_ATTRIBUTE
, ip
, DM_RIGHT_NULL
,
490 NULL
, DM_RIGHT_NULL
, NULL
, NULL
,
491 0, 0, AT_DELAY_FLAG(flags
));
496 commit_flags
|= XFS_TRANS_ABORT
;
502 xfs_trans_cancel(tp
, commit_flags
);
504 if (lock_flags
!= 0) {
505 xfs_iunlock(ip
, lock_flags
);
511 * The maximum pathlen is 1024 bytes. Since the minimum file system
512 * blocksize is 512 bytes, we can get a max of 2 extents back from
515 #define SYMLINK_MAPS 2
522 xfs_mount_t
*mp
= ip
->i_mount
;
523 int pathlen
= ip
->i_d
.di_size
;
524 int nmaps
= SYMLINK_MAPS
;
525 xfs_bmbt_irec_t mval
[SYMLINK_MAPS
];
532 error
= xfs_bmapi(NULL
, ip
, 0, XFS_B_TO_FSB(mp
, pathlen
), 0, NULL
, 0,
533 mval
, &nmaps
, NULL
, NULL
);
537 for (n
= 0; n
< nmaps
; n
++) {
538 d
= XFS_FSB_TO_DADDR(mp
, mval
[n
].br_startblock
);
539 byte_cnt
= XFS_FSB_TO_B(mp
, mval
[n
].br_blockcount
);
541 bp
= xfs_buf_read_flags(mp
->m_ddev_targp
, d
, BTOBB(byte_cnt
),
542 XBF_LOCK
| XBF_MAPPED
|
544 error
= XFS_BUF_GETERROR(bp
);
546 xfs_ioerror_alert("xfs_readlink",
547 ip
->i_mount
, bp
, XFS_BUF_ADDR(bp
));
551 if (pathlen
< byte_cnt
)
555 memcpy(link
, XFS_BUF_PTR(bp
), byte_cnt
);
559 link
[ip
->i_d
.di_size
] = '\0';
571 xfs_mount_t
*mp
= ip
->i_mount
;
575 xfs_itrace_entry(ip
);
577 if (XFS_FORCED_SHUTDOWN(mp
))
578 return XFS_ERROR(EIO
);
580 xfs_ilock(ip
, XFS_ILOCK_SHARED
);
582 ASSERT((ip
->i_d
.di_mode
& S_IFMT
) == S_IFLNK
);
583 ASSERT(ip
->i_d
.di_size
<= MAXPATHLEN
);
585 pathlen
= ip
->i_d
.di_size
;
589 if (ip
->i_df
.if_flags
& XFS_IFINLINE
) {
590 memcpy(link
, ip
->i_df
.if_u1
.if_data
, pathlen
);
591 link
[pathlen
] = '\0';
593 error
= xfs_readlink_bmap(ip
, link
);
597 xfs_iunlock(ip
, XFS_ILOCK_SHARED
);
604 * This is called to sync the inode and its data out to disk. We need to hold
605 * the I/O lock while flushing the data, and the inode lock while flushing the
606 * inode. The inode lock CANNOT be held while flushing the data, so acquire
607 * after we're done with that.
615 int log_flushed
= 0, changed
= 1;
617 xfs_itrace_entry(ip
);
619 if (XFS_FORCED_SHUTDOWN(ip
->i_mount
))
620 return XFS_ERROR(EIO
);
623 * We always need to make sure that the required inode state is safe on
624 * disk. The inode might be clean but we still might need to force the
625 * log because of committed transactions that haven't hit the disk yet.
626 * Likewise, there could be unflushed non-transactional changes to the
627 * inode core that have to go to disk and this requires us to issue
628 * a synchronous transaction to capture these changes correctly.
630 * This code relies on the assumption that if the update_* fields
631 * of the inode are clear and the inode is unpinned then it is clean
632 * and no action is required.
634 xfs_ilock(ip
, XFS_ILOCK_SHARED
);
636 if (!ip
->i_update_core
) {
638 * Timestamps/size haven't changed since last inode flush or
639 * inode transaction commit. That means either nothing got
640 * written or a transaction committed which caught the updates.
641 * If the latter happened and the transaction hasn't hit the
642 * disk yet, the inode will be still be pinned. If it is,
646 xfs_iunlock(ip
, XFS_ILOCK_SHARED
);
648 if (xfs_ipincount(ip
)) {
649 error
= _xfs_log_force(ip
->i_mount
, (xfs_lsn_t
)0,
650 XFS_LOG_FORCE
| XFS_LOG_SYNC
,
654 * If the inode is not pinned and nothing has changed
655 * we don't need to flush the cache.
661 * Kick off a transaction to log the inode core to get the
662 * updates. The sync transaction will also force the log.
664 xfs_iunlock(ip
, XFS_ILOCK_SHARED
);
665 tp
= xfs_trans_alloc(ip
->i_mount
, XFS_TRANS_FSYNC_TS
);
666 error
= xfs_trans_reserve(tp
, 0,
667 XFS_FSYNC_TS_LOG_RES(ip
->i_mount
), 0, 0, 0);
669 xfs_trans_cancel(tp
, 0);
672 xfs_ilock(ip
, XFS_ILOCK_EXCL
);
675 * Note - it's possible that we might have pushed ourselves out
676 * of the way during trans_reserve which would flush the inode.
677 * But there's no guarantee that the inode buffer has actually
678 * gone out yet (it's delwri). Plus the buffer could be pinned
679 * anyway if it's part of an inode in another recent
680 * transaction. So we play it safe and fire off the
681 * transaction anyway.
683 xfs_trans_ijoin(tp
, ip
, XFS_ILOCK_EXCL
);
684 xfs_trans_ihold(tp
, ip
);
685 xfs_trans_log_inode(tp
, ip
, XFS_ILOG_CORE
);
686 xfs_trans_set_sync(tp
);
687 error
= _xfs_trans_commit(tp
, 0, &log_flushed
);
689 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
692 if ((ip
->i_mount
->m_flags
& XFS_MOUNT_BARRIER
) && changed
) {
694 * If the log write didn't issue an ordered tag we need
695 * to flush the disk cache for the data device now.
698 xfs_blkdev_issue_flush(ip
->i_mount
->m_ddev_targp
);
701 * If this inode is on the RT dev we need to flush that
704 if (XFS_IS_REALTIME_INODE(ip
))
705 xfs_blkdev_issue_flush(ip
->i_mount
->m_rtdev_targp
);
712 * This is called by xfs_inactive to free any blocks beyond eof
713 * when the link count isn't zero and by xfs_dm_punch_hole() when
714 * punching a hole to EOF.
724 xfs_fileoff_t end_fsb
;
725 xfs_fileoff_t last_fsb
;
726 xfs_filblks_t map_len
;
728 xfs_bmbt_irec_t imap
;
729 int use_iolock
= (flags
& XFS_FREE_EOF_LOCK
);
732 * Figure out if there are any blocks beyond the end
733 * of the file. If not, then there is nothing to do.
735 end_fsb
= XFS_B_TO_FSB(mp
, ((xfs_ufsize_t
)ip
->i_size
));
736 last_fsb
= XFS_B_TO_FSB(mp
, (xfs_ufsize_t
)XFS_MAXIOFFSET(mp
));
737 map_len
= last_fsb
- end_fsb
;
742 xfs_ilock(ip
, XFS_ILOCK_SHARED
);
743 error
= xfs_bmapi(NULL
, ip
, end_fsb
, map_len
, 0,
744 NULL
, 0, &imap
, &nimaps
, NULL
, NULL
);
745 xfs_iunlock(ip
, XFS_ILOCK_SHARED
);
747 if (!error
&& (nimaps
!= 0) &&
748 (imap
.br_startblock
!= HOLESTARTBLOCK
||
749 ip
->i_delayed_blks
)) {
751 * Attach the dquots to the inode up front.
753 error
= xfs_qm_dqattach(ip
, 0);
758 * There are blocks after the end of file.
759 * Free them up now by truncating the file to
762 tp
= xfs_trans_alloc(mp
, XFS_TRANS_INACTIVE
);
765 * Do the xfs_itruncate_start() call before
766 * reserving any log space because
767 * itruncate_start will call into the buffer
769 * do that within a transaction.
772 xfs_ilock(ip
, XFS_IOLOCK_EXCL
);
773 error
= xfs_itruncate_start(ip
, XFS_ITRUNC_DEFINITE
,
776 xfs_trans_cancel(tp
, 0);
778 xfs_iunlock(ip
, XFS_IOLOCK_EXCL
);
782 error
= xfs_trans_reserve(tp
, 0,
783 XFS_ITRUNCATE_LOG_RES(mp
),
784 0, XFS_TRANS_PERM_LOG_RES
,
785 XFS_ITRUNCATE_LOG_COUNT
);
787 ASSERT(XFS_FORCED_SHUTDOWN(mp
));
788 xfs_trans_cancel(tp
, 0);
789 xfs_iunlock(ip
, XFS_IOLOCK_EXCL
);
793 xfs_ilock(ip
, XFS_ILOCK_EXCL
);
794 xfs_trans_ijoin(tp
, ip
,
797 xfs_trans_ihold(tp
, ip
);
799 error
= xfs_itruncate_finish(&tp
, ip
,
804 * If we get an error at this point we
805 * simply don't bother truncating the file.
809 (XFS_TRANS_RELEASE_LOG_RES
|
812 error
= xfs_trans_commit(tp
,
813 XFS_TRANS_RELEASE_LOG_RES
);
815 xfs_iunlock(ip
, (use_iolock
? (XFS_IOLOCK_EXCL
|XFS_ILOCK_EXCL
)
822 * Free a symlink that has blocks associated with it.
825 xfs_inactive_symlink_rmt(
833 xfs_fsblock_t first_block
;
834 xfs_bmap_free_t free_list
;
837 xfs_bmbt_irec_t mval
[SYMLINK_MAPS
];
845 ASSERT(ip
->i_d
.di_size
> XFS_IFORK_DSIZE(ip
));
847 * We're freeing a symlink that has some
848 * blocks allocated to it. Free the
849 * blocks here. We know that we've got
850 * either 1 or 2 extents and that we can
851 * free them all in one bunmapi call.
853 ASSERT(ip
->i_d
.di_nextents
> 0 && ip
->i_d
.di_nextents
<= 2);
854 if ((error
= xfs_trans_reserve(tp
, 0, XFS_ITRUNCATE_LOG_RES(mp
), 0,
855 XFS_TRANS_PERM_LOG_RES
, XFS_ITRUNCATE_LOG_COUNT
))) {
856 ASSERT(XFS_FORCED_SHUTDOWN(mp
));
857 xfs_trans_cancel(tp
, 0);
862 * Lock the inode, fix the size, and join it to the transaction.
863 * Hold it so in the normal path, we still have it locked for
864 * the second transaction. In the error paths we need it
865 * held so the cancel won't rele it, see below.
867 xfs_ilock(ip
, XFS_IOLOCK_EXCL
| XFS_ILOCK_EXCL
);
868 size
= (int)ip
->i_d
.di_size
;
870 xfs_trans_ijoin(tp
, ip
, XFS_ILOCK_EXCL
| XFS_IOLOCK_EXCL
);
871 xfs_trans_ihold(tp
, ip
);
872 xfs_trans_log_inode(tp
, ip
, XFS_ILOG_CORE
);
874 * Find the block(s) so we can inval and unmap them.
877 xfs_bmap_init(&free_list
, &first_block
);
878 nmaps
= ARRAY_SIZE(mval
);
879 if ((error
= xfs_bmapi(tp
, ip
, 0, XFS_B_TO_FSB(mp
, size
),
880 XFS_BMAPI_METADATA
, &first_block
, 0, mval
, &nmaps
,
884 * Invalidate the block(s).
886 for (i
= 0; i
< nmaps
; i
++) {
887 bp
= xfs_trans_get_buf(tp
, mp
->m_ddev_targp
,
888 XFS_FSB_TO_DADDR(mp
, mval
[i
].br_startblock
),
889 XFS_FSB_TO_BB(mp
, mval
[i
].br_blockcount
), 0);
890 xfs_trans_binval(tp
, bp
);
893 * Unmap the dead block(s) to the free_list.
895 if ((error
= xfs_bunmapi(tp
, ip
, 0, size
, XFS_BMAPI_METADATA
, nmaps
,
896 &first_block
, &free_list
, NULL
, &done
)))
900 * Commit the first transaction. This logs the EFI and the inode.
902 if ((error
= xfs_bmap_finish(&tp
, &free_list
, &committed
)))
905 * The transaction must have been committed, since there were
906 * actually extents freed by xfs_bunmapi. See xfs_bmap_finish.
907 * The new tp has the extent freeing and EFDs.
911 * The first xact was committed, so add the inode to the new one.
912 * Mark it dirty so it will be logged and moved forward in the log as
913 * part of every commit.
915 xfs_trans_ijoin(tp
, ip
, XFS_ILOCK_EXCL
| XFS_IOLOCK_EXCL
);
916 xfs_trans_ihold(tp
, ip
);
917 xfs_trans_log_inode(tp
, ip
, XFS_ILOG_CORE
);
919 * Get a new, empty transaction to return to our caller.
921 ntp
= xfs_trans_dup(tp
);
923 * Commit the transaction containing extent freeing and EFDs.
924 * If we get an error on the commit here or on the reserve below,
925 * we need to unlock the inode since the new transaction doesn't
926 * have the inode attached.
928 error
= xfs_trans_commit(tp
, 0);
931 ASSERT(XFS_FORCED_SHUTDOWN(mp
));
935 * transaction commit worked ok so we can drop the extra ticket
936 * reference that we gained in xfs_trans_dup()
938 xfs_log_ticket_put(tp
->t_ticket
);
941 * Remove the memory for extent descriptions (just bookkeeping).
943 if (ip
->i_df
.if_bytes
)
944 xfs_idata_realloc(ip
, -ip
->i_df
.if_bytes
, XFS_DATA_FORK
);
945 ASSERT(ip
->i_df
.if_bytes
== 0);
947 * Put an itruncate log reservation in the new transaction
950 if ((error
= xfs_trans_reserve(tp
, 0, XFS_ITRUNCATE_LOG_RES(mp
), 0,
951 XFS_TRANS_PERM_LOG_RES
, XFS_ITRUNCATE_LOG_COUNT
))) {
952 ASSERT(XFS_FORCED_SHUTDOWN(mp
));
956 * Return with the inode locked but not joined to the transaction.
962 xfs_bmap_cancel(&free_list
);
965 * Have to come here with the inode locked and either
966 * (held and in the transaction) or (not in the transaction).
967 * If the inode isn't held then cancel would iput it, but
968 * that's wrong since this is inactive and the vnode ref
969 * count is 0 already.
970 * Cancel won't do anything to the inode if held, but it still
971 * needs to be locked until the cancel is done, if it was
972 * joined to the transaction.
974 xfs_trans_cancel(tp
, XFS_TRANS_RELEASE_LOG_RES
| XFS_TRANS_ABORT
);
975 xfs_iunlock(ip
, XFS_IOLOCK_EXCL
| XFS_ILOCK_EXCL
);
982 xfs_inactive_symlink_local(
988 ASSERT(ip
->i_d
.di_size
<= XFS_IFORK_DSIZE(ip
));
990 * We're freeing a symlink which fit into
991 * the inode. Just free the memory used
992 * to hold the old symlink.
994 error
= xfs_trans_reserve(*tpp
, 0,
995 XFS_ITRUNCATE_LOG_RES(ip
->i_mount
),
996 0, XFS_TRANS_PERM_LOG_RES
,
997 XFS_ITRUNCATE_LOG_COUNT
);
1000 xfs_trans_cancel(*tpp
, 0);
1004 xfs_ilock(ip
, XFS_ILOCK_EXCL
| XFS_IOLOCK_EXCL
);
1007 * Zero length symlinks _can_ exist.
1009 if (ip
->i_df
.if_bytes
> 0) {
1010 xfs_idata_realloc(ip
,
1011 -(ip
->i_df
.if_bytes
),
1013 ASSERT(ip
->i_df
.if_bytes
== 0);
1027 ASSERT(xfs_isilocked(ip
, XFS_IOLOCK_EXCL
));
1030 ASSERT(ip
->i_d
.di_forkoff
!= 0);
1031 error
= xfs_trans_commit(tp
, XFS_TRANS_RELEASE_LOG_RES
);
1032 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
1036 error
= xfs_attr_inactive(ip
);
1040 tp
= xfs_trans_alloc(mp
, XFS_TRANS_INACTIVE
);
1041 error
= xfs_trans_reserve(tp
, 0,
1042 XFS_IFREE_LOG_RES(mp
),
1043 0, XFS_TRANS_PERM_LOG_RES
,
1044 XFS_INACTIVE_LOG_COUNT
);
1048 xfs_ilock(ip
, XFS_ILOCK_EXCL
);
1049 xfs_trans_ijoin(tp
, ip
, XFS_IOLOCK_EXCL
| XFS_ILOCK_EXCL
);
1050 xfs_trans_ihold(tp
, ip
);
1051 xfs_idestroy_fork(ip
, XFS_ATTR_FORK
);
1053 ASSERT(ip
->i_d
.di_anextents
== 0);
1059 ASSERT(XFS_FORCED_SHUTDOWN(mp
));
1060 xfs_trans_cancel(tp
, 0);
1063 xfs_iunlock(ip
, XFS_IOLOCK_EXCL
);
1071 xfs_mount_t
*mp
= ip
->i_mount
;
1074 if (!S_ISREG(ip
->i_d
.di_mode
) || (ip
->i_d
.di_mode
== 0))
1077 /* If this is a read-only mount, don't do this (would generate I/O) */
1078 if (mp
->m_flags
& XFS_MOUNT_RDONLY
)
1081 if (!XFS_FORCED_SHUTDOWN(mp
)) {
1085 * If we are using filestreams, and we have an unlinked
1086 * file that we are processing the last close on, then nothing
1087 * will be able to reopen and write to this file. Purge this
1088 * inode from the filestreams cache so that it doesn't delay
1089 * teardown of the inode.
1091 if ((ip
->i_d
.di_nlink
== 0) && xfs_inode_is_filestream(ip
))
1092 xfs_filestream_deassociate(ip
);
1095 * If we previously truncated this file and removed old data
1096 * in the process, we want to initiate "early" writeout on
1097 * the last close. This is an attempt to combat the notorious
1098 * NULL files problem which is particularly noticable from a
1099 * truncate down, buffered (re-)write (delalloc), followed by
1100 * a crash. What we are effectively doing here is
1101 * significantly reducing the time window where we'd otherwise
1102 * be exposed to that problem.
1104 truncated
= xfs_iflags_test_and_clear(ip
, XFS_ITRUNCATED
);
1105 if (truncated
&& VN_DIRTY(VFS_I(ip
)) && ip
->i_delayed_blks
> 0)
1106 xfs_flush_pages(ip
, 0, -1, XFS_B_ASYNC
, FI_NONE
);
1109 if (ip
->i_d
.di_nlink
!= 0) {
1110 if ((((ip
->i_d
.di_mode
& S_IFMT
) == S_IFREG
) &&
1111 ((ip
->i_size
> 0) || (VN_CACHED(VFS_I(ip
)) > 0 ||
1112 ip
->i_delayed_blks
> 0)) &&
1113 (ip
->i_df
.if_flags
& XFS_IFEXTENTS
)) &&
1114 (!(ip
->i_d
.di_flags
&
1115 (XFS_DIFLAG_PREALLOC
| XFS_DIFLAG_APPEND
)))) {
1116 error
= xfs_free_eofblocks(mp
, ip
, XFS_FREE_EOF_LOCK
);
1128 * This is called when the vnode reference count for the vnode
1129 * goes to zero. If the file has been unlinked, then it must
1130 * now be truncated. Also, we clear all of the read-ahead state
1131 * kept for the inode here since the file is now closed.
1137 xfs_bmap_free_t free_list
;
1138 xfs_fsblock_t first_block
;
1145 xfs_itrace_entry(ip
);
1148 * If the inode is already free, then there can be nothing
1151 if (ip
->i_d
.di_mode
== 0 || is_bad_inode(VFS_I(ip
))) {
1152 ASSERT(ip
->i_df
.if_real_bytes
== 0);
1153 ASSERT(ip
->i_df
.if_broot_bytes
== 0);
1154 return VN_INACTIVE_CACHE
;
1158 * Only do a truncate if it's a regular file with
1159 * some actual space in it. It's OK to look at the
1160 * inode's fields without the lock because we're the
1161 * only one with a reference to the inode.
1163 truncate
= ((ip
->i_d
.di_nlink
== 0) &&
1164 ((ip
->i_d
.di_size
!= 0) || (ip
->i_size
!= 0) ||
1165 (ip
->i_d
.di_nextents
> 0) || (ip
->i_delayed_blks
> 0)) &&
1166 ((ip
->i_d
.di_mode
& S_IFMT
) == S_IFREG
));
1170 if (ip
->i_d
.di_nlink
== 0 && DM_EVENT_ENABLED(ip
, DM_EVENT_DESTROY
))
1171 XFS_SEND_DESTROY(mp
, ip
, DM_RIGHT_NULL
);
1175 /* If this is a read-only mount, don't do this (would generate I/O) */
1176 if (mp
->m_flags
& XFS_MOUNT_RDONLY
)
1179 if (ip
->i_d
.di_nlink
!= 0) {
1180 if ((((ip
->i_d
.di_mode
& S_IFMT
) == S_IFREG
) &&
1181 ((ip
->i_size
> 0) || (VN_CACHED(VFS_I(ip
)) > 0 ||
1182 ip
->i_delayed_blks
> 0)) &&
1183 (ip
->i_df
.if_flags
& XFS_IFEXTENTS
) &&
1184 (!(ip
->i_d
.di_flags
&
1185 (XFS_DIFLAG_PREALLOC
| XFS_DIFLAG_APPEND
)) ||
1186 (ip
->i_delayed_blks
!= 0)))) {
1187 error
= xfs_free_eofblocks(mp
, ip
, XFS_FREE_EOF_LOCK
);
1189 return VN_INACTIVE_CACHE
;
1194 ASSERT(ip
->i_d
.di_nlink
== 0);
1196 error
= xfs_qm_dqattach(ip
, 0);
1198 return VN_INACTIVE_CACHE
;
1200 tp
= xfs_trans_alloc(mp
, XFS_TRANS_INACTIVE
);
1203 * Do the xfs_itruncate_start() call before
1204 * reserving any log space because itruncate_start
1205 * will call into the buffer cache and we can't
1206 * do that within a transaction.
1208 xfs_ilock(ip
, XFS_IOLOCK_EXCL
);
1210 error
= xfs_itruncate_start(ip
, XFS_ITRUNC_DEFINITE
, 0);
1212 xfs_trans_cancel(tp
, 0);
1213 xfs_iunlock(ip
, XFS_IOLOCK_EXCL
);
1214 return VN_INACTIVE_CACHE
;
1217 error
= xfs_trans_reserve(tp
, 0,
1218 XFS_ITRUNCATE_LOG_RES(mp
),
1219 0, XFS_TRANS_PERM_LOG_RES
,
1220 XFS_ITRUNCATE_LOG_COUNT
);
1222 /* Don't call itruncate_cleanup */
1223 ASSERT(XFS_FORCED_SHUTDOWN(mp
));
1224 xfs_trans_cancel(tp
, 0);
1225 xfs_iunlock(ip
, XFS_IOLOCK_EXCL
);
1226 return VN_INACTIVE_CACHE
;
1229 xfs_ilock(ip
, XFS_ILOCK_EXCL
);
1230 xfs_trans_ijoin(tp
, ip
, XFS_IOLOCK_EXCL
| XFS_ILOCK_EXCL
);
1231 xfs_trans_ihold(tp
, ip
);
1234 * normally, we have to run xfs_itruncate_finish sync.
1235 * But if filesystem is wsync and we're in the inactive
1236 * path, then we know that nlink == 0, and that the
1237 * xaction that made nlink == 0 is permanently committed
1238 * since xfs_remove runs as a synchronous transaction.
1240 error
= xfs_itruncate_finish(&tp
, ip
, 0, XFS_DATA_FORK
,
1241 (!(mp
->m_flags
& XFS_MOUNT_WSYNC
) ? 1 : 0));
1244 xfs_trans_cancel(tp
,
1245 XFS_TRANS_RELEASE_LOG_RES
| XFS_TRANS_ABORT
);
1246 xfs_iunlock(ip
, XFS_IOLOCK_EXCL
| XFS_ILOCK_EXCL
);
1247 return VN_INACTIVE_CACHE
;
1249 } else if ((ip
->i_d
.di_mode
& S_IFMT
) == S_IFLNK
) {
1252 * If we get an error while cleaning up a
1253 * symlink we bail out.
1255 error
= (ip
->i_d
.di_size
> XFS_IFORK_DSIZE(ip
)) ?
1256 xfs_inactive_symlink_rmt(ip
, &tp
) :
1257 xfs_inactive_symlink_local(ip
, &tp
);
1261 return VN_INACTIVE_CACHE
;
1264 xfs_trans_ijoin(tp
, ip
, XFS_IOLOCK_EXCL
| XFS_ILOCK_EXCL
);
1265 xfs_trans_ihold(tp
, ip
);
1267 error
= xfs_trans_reserve(tp
, 0,
1268 XFS_IFREE_LOG_RES(mp
),
1269 0, XFS_TRANS_PERM_LOG_RES
,
1270 XFS_INACTIVE_LOG_COUNT
);
1272 ASSERT(XFS_FORCED_SHUTDOWN(mp
));
1273 xfs_trans_cancel(tp
, 0);
1274 return VN_INACTIVE_CACHE
;
1277 xfs_ilock(ip
, XFS_ILOCK_EXCL
| XFS_IOLOCK_EXCL
);
1278 xfs_trans_ijoin(tp
, ip
, XFS_IOLOCK_EXCL
| XFS_ILOCK_EXCL
);
1279 xfs_trans_ihold(tp
, ip
);
1283 * If there are attributes associated with the file
1284 * then blow them away now. The code calls a routine
1285 * that recursively deconstructs the attribute fork.
1286 * We need to just commit the current transaction
1287 * because we can't use it for xfs_attr_inactive().
1289 if (ip
->i_d
.di_anextents
> 0) {
1290 error
= xfs_inactive_attrs(ip
, &tp
);
1292 * If we got an error, the transaction is already
1293 * cancelled, and the inode is unlocked. Just get out.
1296 return VN_INACTIVE_CACHE
;
1297 } else if (ip
->i_afp
) {
1298 xfs_idestroy_fork(ip
, XFS_ATTR_FORK
);
1304 xfs_bmap_init(&free_list
, &first_block
);
1305 error
= xfs_ifree(tp
, ip
, &free_list
);
1308 * If we fail to free the inode, shut down. The cancel
1309 * might do that, we need to make sure. Otherwise the
1310 * inode might be lost for a long time or forever.
1312 if (!XFS_FORCED_SHUTDOWN(mp
)) {
1314 "xfs_inactive: xfs_ifree() returned an error = %d on %s",
1315 error
, mp
->m_fsname
);
1316 xfs_force_shutdown(mp
, SHUTDOWN_META_IO_ERROR
);
1318 xfs_trans_cancel(tp
, XFS_TRANS_RELEASE_LOG_RES
|XFS_TRANS_ABORT
);
1321 * Credit the quota account(s). The inode is gone.
1323 xfs_trans_mod_dquot_byino(tp
, ip
, XFS_TRANS_DQ_ICOUNT
, -1);
1326 * Just ignore errors at this point. There is nothing we can
1327 * do except to try to keep going. Make sure it's not a silent
1330 error
= xfs_bmap_finish(&tp
, &free_list
, &committed
);
1332 xfs_fs_cmn_err(CE_NOTE
, mp
, "xfs_inactive: "
1333 "xfs_bmap_finish() returned error %d", error
);
1334 error
= xfs_trans_commit(tp
, XFS_TRANS_RELEASE_LOG_RES
);
1336 xfs_fs_cmn_err(CE_NOTE
, mp
, "xfs_inactive: "
1337 "xfs_trans_commit() returned error %d", error
);
1341 * Release the dquots held by inode, if any.
1343 xfs_qm_dqdetach(ip
);
1344 xfs_iunlock(ip
, XFS_IOLOCK_EXCL
| XFS_ILOCK_EXCL
);
1347 return VN_INACTIVE_CACHE
;
1351 * Lookups up an inode from "name". If ci_name is not NULL, then a CI match
1352 * is allowed, otherwise it has to be an exact match. If a CI match is found,
1353 * ci_name->name will point to a the actual name (caller must free) or
1354 * will be set to NULL if an exact match is found.
1359 struct xfs_name
*name
,
1361 struct xfs_name
*ci_name
)
1367 xfs_itrace_entry(dp
);
1369 if (XFS_FORCED_SHUTDOWN(dp
->i_mount
))
1370 return XFS_ERROR(EIO
);
1372 lock_mode
= xfs_ilock_map_shared(dp
);
1373 error
= xfs_dir_lookup(NULL
, dp
, name
, &inum
, ci_name
);
1374 xfs_iunlock_map_shared(dp
, lock_mode
);
1379 error
= xfs_iget(dp
->i_mount
, NULL
, inum
, 0, 0, ipp
, 0);
1383 xfs_itrace_ref(*ipp
);
1388 kmem_free(ci_name
->name
);
1397 struct xfs_name
*name
,
1403 int is_dir
= S_ISDIR(mode
);
1404 struct xfs_mount
*mp
= dp
->i_mount
;
1405 struct xfs_inode
*ip
= NULL
;
1406 struct xfs_trans
*tp
= NULL
;
1408 xfs_bmap_free_t free_list
;
1409 xfs_fsblock_t first_block
;
1410 boolean_t unlock_dp_on_error
= B_FALSE
;
1414 struct xfs_dquot
*udqp
= NULL
;
1415 struct xfs_dquot
*gdqp
= NULL
;
1420 xfs_itrace_entry(dp
);
1422 if (XFS_FORCED_SHUTDOWN(mp
))
1423 return XFS_ERROR(EIO
);
1425 if (DM_EVENT_ENABLED(dp
, DM_EVENT_CREATE
)) {
1426 error
= XFS_SEND_NAMESP(mp
, DM_EVENT_CREATE
,
1427 dp
, DM_RIGHT_NULL
, NULL
,
1428 DM_RIGHT_NULL
, name
->name
, NULL
,
1435 if (dp
->i_d
.di_flags
& XFS_DIFLAG_PROJINHERIT
)
1436 prid
= dp
->i_d
.di_projid
;
1441 * Make sure that we have allocated dquot(s) on disk.
1443 error
= xfs_qm_vop_dqalloc(dp
, current_fsuid(), current_fsgid(), prid
,
1444 XFS_QMOPT_QUOTALL
| XFS_QMOPT_INHERIT
, &udqp
, &gdqp
);
1450 resblks
= XFS_MKDIR_SPACE_RES(mp
, name
->len
);
1451 log_res
= XFS_MKDIR_LOG_RES(mp
);
1452 log_count
= XFS_MKDIR_LOG_COUNT
;
1453 tp
= xfs_trans_alloc(mp
, XFS_TRANS_MKDIR
);
1455 resblks
= XFS_CREATE_SPACE_RES(mp
, name
->len
);
1456 log_res
= XFS_CREATE_LOG_RES(mp
);
1457 log_count
= XFS_CREATE_LOG_COUNT
;
1458 tp
= xfs_trans_alloc(mp
, XFS_TRANS_CREATE
);
1461 cancel_flags
= XFS_TRANS_RELEASE_LOG_RES
;
1464 * Initially assume that the file does not exist and
1465 * reserve the resources for that case. If that is not
1466 * the case we'll drop the one we have and get a more
1467 * appropriate transaction later.
1469 error
= xfs_trans_reserve(tp
, resblks
, log_res
, 0,
1470 XFS_TRANS_PERM_LOG_RES
, log_count
);
1471 if (error
== ENOSPC
) {
1472 /* flush outstanding delalloc blocks and retry */
1473 xfs_flush_inodes(dp
);
1474 error
= xfs_trans_reserve(tp
, resblks
, log_res
, 0,
1475 XFS_TRANS_PERM_LOG_RES
, log_count
);
1477 if (error
== ENOSPC
) {
1478 /* No space at all so try a "no-allocation" reservation */
1480 error
= xfs_trans_reserve(tp
, 0, log_res
, 0,
1481 XFS_TRANS_PERM_LOG_RES
, log_count
);
1485 goto out_trans_cancel
;
1488 xfs_ilock(dp
, XFS_ILOCK_EXCL
| XFS_ILOCK_PARENT
);
1489 unlock_dp_on_error
= B_TRUE
;
1492 * Check for directory link count overflow.
1494 if (is_dir
&& dp
->i_d
.di_nlink
>= XFS_MAXLINK
) {
1495 error
= XFS_ERROR(EMLINK
);
1496 goto out_trans_cancel
;
1499 xfs_bmap_init(&free_list
, &first_block
);
1502 * Reserve disk quota and the inode.
1504 error
= xfs_trans_reserve_quota(tp
, mp
, udqp
, gdqp
, resblks
, 1, 0);
1506 goto out_trans_cancel
;
1508 error
= xfs_dir_canenter(tp
, dp
, name
, resblks
);
1510 goto out_trans_cancel
;
1513 * A newly created regular or special file just has one directory
1514 * entry pointing to them, but a directory also the "." entry
1515 * pointing to itself.
1517 error
= xfs_dir_ialloc(&tp
, dp
, mode
, is_dir
? 2 : 1, rdev
, credp
,
1518 prid
, resblks
> 0, &ip
, &committed
);
1520 if (error
== ENOSPC
)
1521 goto out_trans_cancel
;
1522 goto out_trans_abort
;
1526 * At this point, we've gotten a newly allocated inode.
1527 * It is locked (and joined to the transaction).
1530 ASSERT(xfs_isilocked(ip
, XFS_ILOCK_EXCL
));
1533 * Now we join the directory inode to the transaction. We do not do it
1534 * earlier because xfs_dir_ialloc might commit the previous transaction
1535 * (and release all the locks). An error from here on will result in
1536 * the transaction cancel unlocking dp so don't do it explicitly in the
1540 xfs_trans_ijoin(tp
, dp
, XFS_ILOCK_EXCL
);
1541 unlock_dp_on_error
= B_FALSE
;
1543 error
= xfs_dir_createname(tp
, dp
, name
, ip
->i_ino
,
1544 &first_block
, &free_list
, resblks
?
1545 resblks
- XFS_IALLOC_SPACE_RES(mp
) : 0);
1547 ASSERT(error
!= ENOSPC
);
1548 goto out_trans_abort
;
1550 xfs_ichgtime(dp
, XFS_ICHGTIME_MOD
| XFS_ICHGTIME_CHG
);
1551 xfs_trans_log_inode(tp
, dp
, XFS_ILOG_CORE
);
1554 error
= xfs_dir_init(tp
, ip
, dp
);
1556 goto out_bmap_cancel
;
1558 error
= xfs_bumplink(tp
, dp
);
1560 goto out_bmap_cancel
;
1564 * If this is a synchronous mount, make sure that the
1565 * create transaction goes to disk before returning to
1568 if (mp
->m_flags
& (XFS_MOUNT_WSYNC
|XFS_MOUNT_DIRSYNC
))
1569 xfs_trans_set_sync(tp
);
1572 * Attach the dquot(s) to the inodes and modify them incore.
1573 * These ids of the inode couldn't have changed since the new
1574 * inode has been locked ever since it was created.
1576 xfs_qm_vop_create_dqattach(tp
, ip
, udqp
, gdqp
);
1579 * xfs_trans_commit normally decrements the vnode ref count
1580 * when it unlocks the inode. Since we want to return the
1581 * vnode to the caller, we bump the vnode ref count now.
1585 error
= xfs_bmap_finish(&tp
, &free_list
, &committed
);
1587 goto out_abort_rele
;
1589 error
= xfs_trans_commit(tp
, XFS_TRANS_RELEASE_LOG_RES
);
1595 xfs_qm_dqrele(udqp
);
1596 xfs_qm_dqrele(gdqp
);
1600 /* Fallthrough to std_return with error = 0 */
1602 if (DM_EVENT_ENABLED(dp
, DM_EVENT_POSTCREATE
)) {
1603 XFS_SEND_NAMESP(mp
, DM_EVENT_POSTCREATE
, dp
, DM_RIGHT_NULL
,
1604 ip
, DM_RIGHT_NULL
, name
->name
, NULL
, mode
,
1611 xfs_bmap_cancel(&free_list
);
1613 cancel_flags
|= XFS_TRANS_ABORT
;
1615 xfs_trans_cancel(tp
, cancel_flags
);
1617 xfs_qm_dqrele(udqp
);
1618 xfs_qm_dqrele(gdqp
);
1620 if (unlock_dp_on_error
)
1621 xfs_iunlock(dp
, XFS_ILOCK_EXCL
);
1627 * Wait until after the current transaction is aborted to
1628 * release the inode. This prevents recursive transactions
1629 * and deadlocks from xfs_inactive.
1631 xfs_bmap_cancel(&free_list
);
1632 cancel_flags
|= XFS_TRANS_ABORT
;
1633 xfs_trans_cancel(tp
, cancel_flags
);
1635 unlock_dp_on_error
= B_FALSE
;
1641 int xfs_small_retries
;
1642 int xfs_middle_retries
;
1643 int xfs_lots_retries
;
1644 int xfs_lock_delays
;
1648 * Bump the subclass so xfs_lock_inodes() acquires each lock with
1652 xfs_lock_inumorder(int lock_mode
, int subclass
)
1654 if (lock_mode
& (XFS_IOLOCK_SHARED
|XFS_IOLOCK_EXCL
))
1655 lock_mode
|= (subclass
+ XFS_LOCK_INUMORDER
) << XFS_IOLOCK_SHIFT
;
1656 if (lock_mode
& (XFS_ILOCK_SHARED
|XFS_ILOCK_EXCL
))
1657 lock_mode
|= (subclass
+ XFS_LOCK_INUMORDER
) << XFS_ILOCK_SHIFT
;
1663 * The following routine will lock n inodes in exclusive mode.
1664 * We assume the caller calls us with the inodes in i_ino order.
1666 * We need to detect deadlock where an inode that we lock
1667 * is in the AIL and we start waiting for another inode that is locked
1668 * by a thread in a long running transaction (such as truncate). This can
1669 * result in deadlock since the long running trans might need to wait
1670 * for the inode we just locked in order to push the tail and free space
1679 int attempts
= 0, i
, j
, try_lock
;
1682 ASSERT(ips
&& (inodes
>= 2)); /* we need at least two */
1688 for (; i
< inodes
; i
++) {
1691 if (i
&& (ips
[i
] == ips
[i
-1])) /* Already locked */
1695 * If try_lock is not set yet, make sure all locked inodes
1696 * are not in the AIL.
1697 * If any are, set try_lock to be used later.
1701 for (j
= (i
- 1); j
>= 0 && !try_lock
; j
--) {
1702 lp
= (xfs_log_item_t
*)ips
[j
]->i_itemp
;
1703 if (lp
&& (lp
->li_flags
& XFS_LI_IN_AIL
)) {
1710 * If any of the previous locks we have locked is in the AIL,
1711 * we must TRY to get the second and subsequent locks. If
1712 * we can't get any, we must release all we have
1717 /* try_lock must be 0 if i is 0. */
1719 * try_lock means we have an inode locked
1720 * that is in the AIL.
1723 if (!xfs_ilock_nowait(ips
[i
], xfs_lock_inumorder(lock_mode
, i
))) {
1727 * Unlock all previous guys and try again.
1728 * xfs_iunlock will try to push the tail
1729 * if the inode is in the AIL.
1732 for(j
= i
- 1; j
>= 0; j
--) {
1735 * Check to see if we've already
1736 * unlocked this one.
1737 * Not the first one going back,
1738 * and the inode ptr is the same.
1740 if ((j
!= (i
- 1)) && ips
[j
] ==
1744 xfs_iunlock(ips
[j
], lock_mode
);
1747 if ((attempts
% 5) == 0) {
1748 delay(1); /* Don't just spin the CPU */
1758 xfs_ilock(ips
[i
], xfs_lock_inumorder(lock_mode
, i
));
1764 if (attempts
< 5) xfs_small_retries
++;
1765 else if (attempts
< 100) xfs_middle_retries
++;
1766 else xfs_lots_retries
++;
1774 * xfs_lock_two_inodes() can only be used to lock one type of lock
1775 * at a time - the iolock or the ilock, but not both at once. If
1776 * we lock both at once, lockdep will report false positives saying
1777 * we have violated locking orders.
1780 xfs_lock_two_inodes(
1789 if (lock_mode
& (XFS_IOLOCK_SHARED
|XFS_IOLOCK_EXCL
))
1790 ASSERT((lock_mode
& (XFS_ILOCK_SHARED
|XFS_ILOCK_EXCL
)) == 0);
1791 ASSERT(ip0
->i_ino
!= ip1
->i_ino
);
1793 if (ip0
->i_ino
> ip1
->i_ino
) {
1800 xfs_ilock(ip0
, xfs_lock_inumorder(lock_mode
, 0));
1803 * If the first lock we have locked is in the AIL, we must TRY to get
1804 * the second lock. If we can't get it, we must release the first one
1807 lp
= (xfs_log_item_t
*)ip0
->i_itemp
;
1808 if (lp
&& (lp
->li_flags
& XFS_LI_IN_AIL
)) {
1809 if (!xfs_ilock_nowait(ip1
, xfs_lock_inumorder(lock_mode
, 1))) {
1810 xfs_iunlock(ip0
, lock_mode
);
1811 if ((++attempts
% 5) == 0)
1812 delay(1); /* Don't just spin the CPU */
1816 xfs_ilock(ip1
, xfs_lock_inumorder(lock_mode
, 1));
1823 struct xfs_name
*name
,
1826 xfs_mount_t
*mp
= dp
->i_mount
;
1827 xfs_trans_t
*tp
= NULL
;
1828 int is_dir
= S_ISDIR(ip
->i_d
.di_mode
);
1830 xfs_bmap_free_t free_list
;
1831 xfs_fsblock_t first_block
;
1838 xfs_itrace_entry(dp
);
1839 xfs_itrace_entry(ip
);
1841 if (XFS_FORCED_SHUTDOWN(mp
))
1842 return XFS_ERROR(EIO
);
1844 if (DM_EVENT_ENABLED(dp
, DM_EVENT_REMOVE
)) {
1845 error
= XFS_SEND_NAMESP(mp
, DM_EVENT_REMOVE
, dp
, DM_RIGHT_NULL
,
1846 NULL
, DM_RIGHT_NULL
, name
->name
, NULL
,
1847 ip
->i_d
.di_mode
, 0, 0);
1852 error
= xfs_qm_dqattach(dp
, 0);
1856 error
= xfs_qm_dqattach(ip
, 0);
1861 tp
= xfs_trans_alloc(mp
, XFS_TRANS_RMDIR
);
1862 log_count
= XFS_DEFAULT_LOG_COUNT
;
1864 tp
= xfs_trans_alloc(mp
, XFS_TRANS_REMOVE
);
1865 log_count
= XFS_REMOVE_LOG_COUNT
;
1867 cancel_flags
= XFS_TRANS_RELEASE_LOG_RES
;
1870 * We try to get the real space reservation first,
1871 * allowing for directory btree deletion(s) implying
1872 * possible bmap insert(s). If we can't get the space
1873 * reservation then we use 0 instead, and avoid the bmap
1874 * btree insert(s) in the directory code by, if the bmap
1875 * insert tries to happen, instead trimming the LAST
1876 * block from the directory.
1878 resblks
= XFS_REMOVE_SPACE_RES(mp
);
1879 error
= xfs_trans_reserve(tp
, resblks
, XFS_REMOVE_LOG_RES(mp
), 0,
1880 XFS_TRANS_PERM_LOG_RES
, log_count
);
1881 if (error
== ENOSPC
) {
1883 error
= xfs_trans_reserve(tp
, 0, XFS_REMOVE_LOG_RES(mp
), 0,
1884 XFS_TRANS_PERM_LOG_RES
, log_count
);
1887 ASSERT(error
!= ENOSPC
);
1889 goto out_trans_cancel
;
1892 xfs_lock_two_inodes(dp
, ip
, XFS_ILOCK_EXCL
);
1895 * At this point, we've gotten both the directory and the entry
1899 xfs_trans_ijoin(tp
, dp
, XFS_ILOCK_EXCL
);
1902 xfs_trans_ijoin(tp
, ip
, XFS_ILOCK_EXCL
);
1905 * If we're removing a directory perform some additional validation.
1908 ASSERT(ip
->i_d
.di_nlink
>= 2);
1909 if (ip
->i_d
.di_nlink
!= 2) {
1910 error
= XFS_ERROR(ENOTEMPTY
);
1911 goto out_trans_cancel
;
1913 if (!xfs_dir_isempty(ip
)) {
1914 error
= XFS_ERROR(ENOTEMPTY
);
1915 goto out_trans_cancel
;
1919 xfs_bmap_init(&free_list
, &first_block
);
1920 error
= xfs_dir_removename(tp
, dp
, name
, ip
->i_ino
,
1921 &first_block
, &free_list
, resblks
);
1923 ASSERT(error
!= ENOENT
);
1924 goto out_bmap_cancel
;
1926 xfs_ichgtime(dp
, XFS_ICHGTIME_MOD
| XFS_ICHGTIME_CHG
);
1930 * Drop the link from ip's "..".
1932 error
= xfs_droplink(tp
, dp
);
1934 goto out_bmap_cancel
;
1937 * Drop the "." link from ip to self.
1939 error
= xfs_droplink(tp
, ip
);
1941 goto out_bmap_cancel
;
1944 * When removing a non-directory we need to log the parent
1945 * inode here. For a directory this is done implicitly
1946 * by the xfs_droplink call for the ".." entry.
1948 xfs_trans_log_inode(tp
, dp
, XFS_ILOG_CORE
);
1952 * Drop the link from dp to ip.
1954 error
= xfs_droplink(tp
, ip
);
1956 goto out_bmap_cancel
;
1959 * Determine if this is the last link while
1960 * we are in the transaction.
1962 link_zero
= (ip
->i_d
.di_nlink
== 0);
1965 * If this is a synchronous mount, make sure that the
1966 * remove transaction goes to disk before returning to
1969 if (mp
->m_flags
& (XFS_MOUNT_WSYNC
|XFS_MOUNT_DIRSYNC
))
1970 xfs_trans_set_sync(tp
);
1972 error
= xfs_bmap_finish(&tp
, &free_list
, &committed
);
1974 goto out_bmap_cancel
;
1976 error
= xfs_trans_commit(tp
, XFS_TRANS_RELEASE_LOG_RES
);
1981 * If we are using filestreams, kill the stream association.
1982 * If the file is still open it may get a new one but that
1983 * will get killed on last close in xfs_close() so we don't
1984 * have to worry about that.
1986 if (!is_dir
&& link_zero
&& xfs_inode_is_filestream(ip
))
1987 xfs_filestream_deassociate(ip
);
1989 xfs_itrace_exit(ip
);
1990 xfs_itrace_exit(dp
);
1993 if (DM_EVENT_ENABLED(dp
, DM_EVENT_POSTREMOVE
)) {
1994 XFS_SEND_NAMESP(mp
, DM_EVENT_POSTREMOVE
, dp
, DM_RIGHT_NULL
,
1995 NULL
, DM_RIGHT_NULL
, name
->name
, NULL
,
1996 ip
->i_d
.di_mode
, error
, 0);
2002 xfs_bmap_cancel(&free_list
);
2003 cancel_flags
|= XFS_TRANS_ABORT
;
2005 xfs_trans_cancel(tp
, cancel_flags
);
2013 struct xfs_name
*target_name
)
2015 xfs_mount_t
*mp
= tdp
->i_mount
;
2018 xfs_bmap_free_t free_list
;
2019 xfs_fsblock_t first_block
;
2024 xfs_itrace_entry(tdp
);
2025 xfs_itrace_entry(sip
);
2027 ASSERT(!S_ISDIR(sip
->i_d
.di_mode
));
2029 if (XFS_FORCED_SHUTDOWN(mp
))
2030 return XFS_ERROR(EIO
);
2032 if (DM_EVENT_ENABLED(tdp
, DM_EVENT_LINK
)) {
2033 error
= XFS_SEND_NAMESP(mp
, DM_EVENT_LINK
,
2036 target_name
->name
, NULL
, 0, 0, 0);
2041 /* Return through std_return after this point. */
2043 error
= xfs_qm_dqattach(sip
, 0);
2047 error
= xfs_qm_dqattach(tdp
, 0);
2051 tp
= xfs_trans_alloc(mp
, XFS_TRANS_LINK
);
2052 cancel_flags
= XFS_TRANS_RELEASE_LOG_RES
;
2053 resblks
= XFS_LINK_SPACE_RES(mp
, target_name
->len
);
2054 error
= xfs_trans_reserve(tp
, resblks
, XFS_LINK_LOG_RES(mp
), 0,
2055 XFS_TRANS_PERM_LOG_RES
, XFS_LINK_LOG_COUNT
);
2056 if (error
== ENOSPC
) {
2058 error
= xfs_trans_reserve(tp
, 0, XFS_LINK_LOG_RES(mp
), 0,
2059 XFS_TRANS_PERM_LOG_RES
, XFS_LINK_LOG_COUNT
);
2066 xfs_lock_two_inodes(sip
, tdp
, XFS_ILOCK_EXCL
);
2069 * Increment vnode ref counts since xfs_trans_commit &
2070 * xfs_trans_cancel will both unlock the inodes and
2071 * decrement the associated ref counts.
2075 xfs_trans_ijoin(tp
, sip
, XFS_ILOCK_EXCL
);
2076 xfs_trans_ijoin(tp
, tdp
, XFS_ILOCK_EXCL
);
2079 * If the source has too many links, we can't make any more to it.
2081 if (sip
->i_d
.di_nlink
>= XFS_MAXLINK
) {
2082 error
= XFS_ERROR(EMLINK
);
2087 * If we are using project inheritance, we only allow hard link
2088 * creation in our tree when the project IDs are the same; else
2089 * the tree quota mechanism could be circumvented.
2091 if (unlikely((tdp
->i_d
.di_flags
& XFS_DIFLAG_PROJINHERIT
) &&
2092 (tdp
->i_d
.di_projid
!= sip
->i_d
.di_projid
))) {
2093 error
= XFS_ERROR(EXDEV
);
2097 error
= xfs_dir_canenter(tp
, tdp
, target_name
, resblks
);
2101 xfs_bmap_init(&free_list
, &first_block
);
2103 error
= xfs_dir_createname(tp
, tdp
, target_name
, sip
->i_ino
,
2104 &first_block
, &free_list
, resblks
);
2107 xfs_ichgtime(tdp
, XFS_ICHGTIME_MOD
| XFS_ICHGTIME_CHG
);
2108 xfs_trans_log_inode(tp
, tdp
, XFS_ILOG_CORE
);
2110 error
= xfs_bumplink(tp
, sip
);
2115 * If this is a synchronous mount, make sure that the
2116 * link transaction goes to disk before returning to
2119 if (mp
->m_flags
& (XFS_MOUNT_WSYNC
|XFS_MOUNT_DIRSYNC
)) {
2120 xfs_trans_set_sync(tp
);
2123 error
= xfs_bmap_finish (&tp
, &free_list
, &committed
);
2125 xfs_bmap_cancel(&free_list
);
2129 error
= xfs_trans_commit(tp
, XFS_TRANS_RELEASE_LOG_RES
);
2133 /* Fall through to std_return with error = 0. */
2135 if (DM_EVENT_ENABLED(sip
, DM_EVENT_POSTLINK
)) {
2136 (void) XFS_SEND_NAMESP(mp
, DM_EVENT_POSTLINK
,
2139 target_name
->name
, NULL
, 0, error
, 0);
2144 cancel_flags
|= XFS_TRANS_ABORT
;
2148 xfs_trans_cancel(tp
, cancel_flags
);
2155 struct xfs_name
*link_name
,
2156 const char *target_path
,
2161 xfs_mount_t
*mp
= dp
->i_mount
;
2166 xfs_bmap_free_t free_list
;
2167 xfs_fsblock_t first_block
;
2168 boolean_t unlock_dp_on_error
= B_FALSE
;
2171 xfs_fileoff_t first_fsb
;
2172 xfs_filblks_t fs_blocks
;
2174 xfs_bmbt_irec_t mval
[SYMLINK_MAPS
];
2176 const char *cur_chunk
;
2181 struct xfs_dquot
*udqp
, *gdqp
;
2189 xfs_itrace_entry(dp
);
2191 if (XFS_FORCED_SHUTDOWN(mp
))
2192 return XFS_ERROR(EIO
);
2195 * Check component lengths of the target path name.
2197 pathlen
= strlen(target_path
);
2198 if (pathlen
>= MAXPATHLEN
) /* total string too long */
2199 return XFS_ERROR(ENAMETOOLONG
);
2201 if (DM_EVENT_ENABLED(dp
, DM_EVENT_SYMLINK
)) {
2202 error
= XFS_SEND_NAMESP(mp
, DM_EVENT_SYMLINK
, dp
,
2203 DM_RIGHT_NULL
, NULL
, DM_RIGHT_NULL
,
2204 link_name
->name
, target_path
, 0, 0, 0);
2209 /* Return through std_return after this point. */
2212 if (dp
->i_d
.di_flags
& XFS_DIFLAG_PROJINHERIT
)
2213 prid
= dp
->i_d
.di_projid
;
2215 prid
= (xfs_prid_t
)dfltprid
;
2218 * Make sure that we have allocated dquot(s) on disk.
2220 error
= xfs_qm_vop_dqalloc(dp
, current_fsuid(), current_fsgid(), prid
,
2221 XFS_QMOPT_QUOTALL
| XFS_QMOPT_INHERIT
, &udqp
, &gdqp
);
2225 tp
= xfs_trans_alloc(mp
, XFS_TRANS_SYMLINK
);
2226 cancel_flags
= XFS_TRANS_RELEASE_LOG_RES
;
2228 * The symlink will fit into the inode data fork?
2229 * There can't be any attributes so we get the whole variable part.
2231 if (pathlen
<= XFS_LITINO(mp
))
2234 fs_blocks
= XFS_B_TO_FSB(mp
, pathlen
);
2235 resblks
= XFS_SYMLINK_SPACE_RES(mp
, link_name
->len
, fs_blocks
);
2236 error
= xfs_trans_reserve(tp
, resblks
, XFS_SYMLINK_LOG_RES(mp
), 0,
2237 XFS_TRANS_PERM_LOG_RES
, XFS_SYMLINK_LOG_COUNT
);
2238 if (error
== ENOSPC
&& fs_blocks
== 0) {
2240 error
= xfs_trans_reserve(tp
, 0, XFS_SYMLINK_LOG_RES(mp
), 0,
2241 XFS_TRANS_PERM_LOG_RES
, XFS_SYMLINK_LOG_COUNT
);
2248 xfs_ilock(dp
, XFS_ILOCK_EXCL
| XFS_ILOCK_PARENT
);
2249 unlock_dp_on_error
= B_TRUE
;
2252 * Check whether the directory allows new symlinks or not.
2254 if (dp
->i_d
.di_flags
& XFS_DIFLAG_NOSYMLINKS
) {
2255 error
= XFS_ERROR(EPERM
);
2260 * Reserve disk quota : blocks and inode.
2262 error
= xfs_trans_reserve_quota(tp
, mp
, udqp
, gdqp
, resblks
, 1, 0);
2267 * Check for ability to enter directory entry, if no space reserved.
2269 error
= xfs_dir_canenter(tp
, dp
, link_name
, resblks
);
2273 * Initialize the bmap freelist prior to calling either
2274 * bmapi or the directory create code.
2276 xfs_bmap_init(&free_list
, &first_block
);
2279 * Allocate an inode for the symlink.
2281 error
= xfs_dir_ialloc(&tp
, dp
, S_IFLNK
| (mode
& ~S_IFMT
),
2282 1, 0, credp
, prid
, resblks
> 0, &ip
, NULL
);
2284 if (error
== ENOSPC
)
2291 * An error after we've joined dp to the transaction will result in the
2292 * transaction cancel unlocking dp so don't do it explicitly in the
2296 xfs_trans_ijoin(tp
, dp
, XFS_ILOCK_EXCL
);
2297 unlock_dp_on_error
= B_FALSE
;
2300 * Also attach the dquot(s) to it, if applicable.
2302 xfs_qm_vop_create_dqattach(tp
, ip
, udqp
, gdqp
);
2305 resblks
-= XFS_IALLOC_SPACE_RES(mp
);
2307 * If the symlink will fit into the inode, write it inline.
2309 if (pathlen
<= XFS_IFORK_DSIZE(ip
)) {
2310 xfs_idata_realloc(ip
, pathlen
, XFS_DATA_FORK
);
2311 memcpy(ip
->i_df
.if_u1
.if_data
, target_path
, pathlen
);
2312 ip
->i_d
.di_size
= pathlen
;
2315 * The inode was initially created in extent format.
2317 ip
->i_df
.if_flags
&= ~(XFS_IFEXTENTS
| XFS_IFBROOT
);
2318 ip
->i_df
.if_flags
|= XFS_IFINLINE
;
2320 ip
->i_d
.di_format
= XFS_DINODE_FMT_LOCAL
;
2321 xfs_trans_log_inode(tp
, ip
, XFS_ILOG_DDATA
| XFS_ILOG_CORE
);
2325 nmaps
= SYMLINK_MAPS
;
2327 error
= xfs_bmapi(tp
, ip
, first_fsb
, fs_blocks
,
2328 XFS_BMAPI_WRITE
| XFS_BMAPI_METADATA
,
2329 &first_block
, resblks
, mval
, &nmaps
,
2336 resblks
-= fs_blocks
;
2337 ip
->i_d
.di_size
= pathlen
;
2338 xfs_trans_log_inode(tp
, ip
, XFS_ILOG_CORE
);
2340 cur_chunk
= target_path
;
2341 for (n
= 0; n
< nmaps
; n
++) {
2342 d
= XFS_FSB_TO_DADDR(mp
, mval
[n
].br_startblock
);
2343 byte_cnt
= XFS_FSB_TO_B(mp
, mval
[n
].br_blockcount
);
2344 bp
= xfs_trans_get_buf(tp
, mp
->m_ddev_targp
, d
,
2345 BTOBB(byte_cnt
), 0);
2346 ASSERT(bp
&& !XFS_BUF_GETERROR(bp
));
2347 if (pathlen
< byte_cnt
) {
2350 pathlen
-= byte_cnt
;
2352 memcpy(XFS_BUF_PTR(bp
), cur_chunk
, byte_cnt
);
2353 cur_chunk
+= byte_cnt
;
2355 xfs_trans_log_buf(tp
, bp
, 0, byte_cnt
- 1);
2360 * Create the directory entry for the symlink.
2362 error
= xfs_dir_createname(tp
, dp
, link_name
, ip
->i_ino
,
2363 &first_block
, &free_list
, resblks
);
2366 xfs_ichgtime(dp
, XFS_ICHGTIME_MOD
| XFS_ICHGTIME_CHG
);
2367 xfs_trans_log_inode(tp
, dp
, XFS_ILOG_CORE
);
2370 * If this is a synchronous mount, make sure that the
2371 * symlink transaction goes to disk before returning to
2374 if (mp
->m_flags
& (XFS_MOUNT_WSYNC
|XFS_MOUNT_DIRSYNC
)) {
2375 xfs_trans_set_sync(tp
);
2379 * xfs_trans_commit normally decrements the vnode ref count
2380 * when it unlocks the inode. Since we want to return the
2381 * vnode to the caller, we bump the vnode ref count now.
2385 error
= xfs_bmap_finish(&tp
, &free_list
, &committed
);
2389 error
= xfs_trans_commit(tp
, XFS_TRANS_RELEASE_LOG_RES
);
2390 xfs_qm_dqrele(udqp
);
2391 xfs_qm_dqrele(gdqp
);
2393 /* Fall through to std_return with error = 0 or errno from
2394 * xfs_trans_commit */
2396 if (DM_EVENT_ENABLED(dp
, DM_EVENT_POSTSYMLINK
)) {
2397 (void) XFS_SEND_NAMESP(mp
, DM_EVENT_POSTSYMLINK
,
2400 DM_RIGHT_NULL
, link_name
->name
,
2401 target_path
, 0, error
, 0);
2411 xfs_bmap_cancel(&free_list
);
2412 cancel_flags
|= XFS_TRANS_ABORT
;
2414 xfs_trans_cancel(tp
, cancel_flags
);
2415 xfs_qm_dqrele(udqp
);
2416 xfs_qm_dqrele(gdqp
);
2418 if (unlock_dp_on_error
)
2419 xfs_iunlock(dp
, XFS_ILOCK_EXCL
);
2430 xfs_mount_t
*mp
= ip
->i_mount
;
2434 if (!capable(CAP_SYS_ADMIN
))
2435 return XFS_ERROR(EPERM
);
2437 if (XFS_FORCED_SHUTDOWN(mp
))
2438 return XFS_ERROR(EIO
);
2440 tp
= xfs_trans_alloc(mp
, XFS_TRANS_SET_DMATTRS
);
2441 error
= xfs_trans_reserve(tp
, 0, XFS_ICHANGE_LOG_RES (mp
), 0, 0, 0);
2443 xfs_trans_cancel(tp
, 0);
2446 xfs_ilock(ip
, XFS_ILOCK_EXCL
);
2447 xfs_trans_ijoin(tp
, ip
, XFS_ILOCK_EXCL
);
2449 ip
->i_d
.di_dmevmask
= evmask
;
2450 ip
->i_d
.di_dmstate
= state
;
2452 xfs_trans_log_inode(tp
, ip
, XFS_ILOG_CORE
);
2454 error
= xfs_trans_commit(tp
, 0);
2464 xfs_itrace_entry(ip
);
2466 ASSERT(!VN_MAPPED(VFS_I(ip
)));
2468 /* bad inode, get out here ASAP */
2469 if (is_bad_inode(VFS_I(ip
))) {
2476 ASSERT(XFS_FORCED_SHUTDOWN(ip
->i_mount
) || ip
->i_delayed_blks
== 0);
2479 * If we have nothing to flush with this inode then complete the
2480 * teardown now, otherwise break the link between the xfs inode and the
2481 * linux inode and clean up the xfs inode later. This avoids flushing
2482 * the inode to disk during the delete operation itself.
2484 * When breaking the link, we need to set the XFS_IRECLAIMABLE flag
2485 * first to ensure that xfs_iunpin() will never see an xfs inode
2486 * that has a linux inode being reclaimed. Synchronisation is provided
2487 * by the i_flags_lock.
2489 if (!ip
->i_update_core
&& (ip
->i_itemp
== NULL
)) {
2490 xfs_ilock(ip
, XFS_ILOCK_EXCL
);
2492 xfs_iflags_set(ip
, XFS_IRECLAIMABLE
);
2493 return xfs_reclaim_inode(ip
, 1, XFS_IFLUSH_DELWRI_ELSE_SYNC
);
2495 xfs_inode_set_reclaim_tag(ip
);
2500 * xfs_alloc_file_space()
2501 * This routine allocates disk space for the given file.
2503 * If alloc_type == 0, this request is for an ALLOCSP type
2504 * request which will change the file size. In this case, no
2505 * DMAPI event will be generated by the call. A TRUNCATE event
2506 * will be generated later by xfs_setattr.
2508 * If alloc_type != 0, this request is for a RESVSP type
2509 * request, and a DMAPI DM_EVENT_WRITE will be generated if the
2510 * lower block boundary byte address is less than the file's
2519 xfs_alloc_file_space(
2526 xfs_mount_t
*mp
= ip
->i_mount
;
2528 xfs_filblks_t allocated_fsb
;
2529 xfs_filblks_t allocatesize_fsb
;
2530 xfs_extlen_t extsz
, temp
;
2531 xfs_fileoff_t startoffset_fsb
;
2532 xfs_fsblock_t firstfsb
;
2538 xfs_bmbt_irec_t imaps
[1], *imapp
;
2539 xfs_bmap_free_t free_list
;
2540 uint qblocks
, resblks
, resrtextents
;
2544 xfs_itrace_entry(ip
);
2546 if (XFS_FORCED_SHUTDOWN(mp
))
2547 return XFS_ERROR(EIO
);
2549 error
= xfs_qm_dqattach(ip
, 0);
2554 return XFS_ERROR(EINVAL
);
2556 rt
= XFS_IS_REALTIME_INODE(ip
);
2557 extsz
= xfs_get_extsz_hint(ip
);
2562 bmapi_flag
= XFS_BMAPI_WRITE
| (alloc_type
? XFS_BMAPI_PREALLOC
: 0);
2563 startoffset_fsb
= XFS_B_TO_FSBT(mp
, offset
);
2564 allocatesize_fsb
= XFS_B_TO_FSB(mp
, count
);
2566 /* Generate a DMAPI event if needed. */
2567 if (alloc_type
!= 0 && offset
< ip
->i_size
&&
2568 (attr_flags
& XFS_ATTR_DMI
) == 0 &&
2569 DM_EVENT_ENABLED(ip
, DM_EVENT_WRITE
)) {
2570 xfs_off_t end_dmi_offset
;
2572 end_dmi_offset
= offset
+len
;
2573 if (end_dmi_offset
> ip
->i_size
)
2574 end_dmi_offset
= ip
->i_size
;
2575 error
= XFS_SEND_DATA(mp
, DM_EVENT_WRITE
, ip
, offset
,
2576 end_dmi_offset
- offset
, 0, NULL
);
2582 * Allocate file space until done or until there is an error
2585 while (allocatesize_fsb
&& !error
) {
2589 * Determine space reservations for data/realtime.
2591 if (unlikely(extsz
)) {
2592 s
= startoffset_fsb
;
2595 e
= startoffset_fsb
+ allocatesize_fsb
;
2596 if ((temp
= do_mod(startoffset_fsb
, extsz
)))
2598 if ((temp
= do_mod(e
, extsz
)))
2602 e
= allocatesize_fsb
;
2606 resrtextents
= qblocks
= (uint
)(e
- s
);
2607 resrtextents
/= mp
->m_sb
.sb_rextsize
;
2608 resblks
= XFS_DIOSTRAT_SPACE_RES(mp
, 0);
2609 quota_flag
= XFS_QMOPT_RES_RTBLKS
;
2612 resblks
= qblocks
= \
2613 XFS_DIOSTRAT_SPACE_RES(mp
, (uint
)(e
- s
));
2614 quota_flag
= XFS_QMOPT_RES_REGBLKS
;
2618 * Allocate and setup the transaction.
2620 tp
= xfs_trans_alloc(mp
, XFS_TRANS_DIOSTRAT
);
2621 error
= xfs_trans_reserve(tp
, resblks
,
2622 XFS_WRITE_LOG_RES(mp
), resrtextents
,
2623 XFS_TRANS_PERM_LOG_RES
,
2624 XFS_WRITE_LOG_COUNT
);
2626 * Check for running out of space
2630 * Free the transaction structure.
2632 ASSERT(error
== ENOSPC
|| XFS_FORCED_SHUTDOWN(mp
));
2633 xfs_trans_cancel(tp
, 0);
2636 xfs_ilock(ip
, XFS_ILOCK_EXCL
);
2637 error
= xfs_trans_reserve_quota_nblks(tp
, ip
, qblocks
,
2642 xfs_trans_ijoin(tp
, ip
, XFS_ILOCK_EXCL
);
2643 xfs_trans_ihold(tp
, ip
);
2646 * Issue the xfs_bmapi() call to allocate the blocks
2648 xfs_bmap_init(&free_list
, &firstfsb
);
2649 error
= xfs_bmapi(tp
, ip
, startoffset_fsb
,
2650 allocatesize_fsb
, bmapi_flag
,
2651 &firstfsb
, 0, imapp
, &nimaps
,
2658 * Complete the transaction
2660 error
= xfs_bmap_finish(&tp
, &free_list
, &committed
);
2665 error
= xfs_trans_commit(tp
, XFS_TRANS_RELEASE_LOG_RES
);
2666 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
2671 allocated_fsb
= imapp
->br_blockcount
;
2674 error
= XFS_ERROR(ENOSPC
);
2678 startoffset_fsb
+= allocated_fsb
;
2679 allocatesize_fsb
-= allocated_fsb
;
2682 if (error
== ENOSPC
&& (attr_flags
& XFS_ATTR_DMI
) == 0 &&
2683 DM_EVENT_ENABLED(ip
, DM_EVENT_NOSPACE
)) {
2684 error
= XFS_SEND_NAMESP(mp
, DM_EVENT_NOSPACE
,
2687 NULL
, NULL
, 0, 0, 0); /* Delay flag intentionally unused */
2689 goto retry
; /* Maybe DMAPI app. has made space */
2690 /* else fall through with error from XFS_SEND_DATA */
2695 error0
: /* Cancel bmap, unlock inode, unreserve quota blocks, cancel trans */
2696 xfs_bmap_cancel(&free_list
);
2697 xfs_trans_unreserve_quota_nblks(tp
, ip
, qblocks
, 0, quota_flag
);
2699 error1
: /* Just cancel transaction */
2700 xfs_trans_cancel(tp
, XFS_TRANS_RELEASE_LOG_RES
| XFS_TRANS_ABORT
);
2701 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
2702 goto dmapi_enospc_check
;
2706 * Zero file bytes between startoff and endoff inclusive.
2707 * The iolock is held exclusive and no blocks are buffered.
2709 * This function is used by xfs_free_file_space() to zero
2710 * partial blocks when the range to free is not block aligned.
2711 * When unreserving space with boundaries that are not block
2712 * aligned we round up the start and round down the end
2713 * boundaries and then use this function to zero the parts of
2714 * the blocks that got dropped during the rounding.
2717 xfs_zero_remaining_bytes(
2722 xfs_bmbt_irec_t imap
;
2723 xfs_fileoff_t offset_fsb
;
2724 xfs_off_t lastoffset
;
2727 xfs_mount_t
*mp
= ip
->i_mount
;
2732 * Avoid doing I/O beyond eof - it's not necessary
2733 * since nothing can read beyond eof. The space will
2734 * be zeroed when the file is extended anyway.
2736 if (startoff
>= ip
->i_size
)
2739 if (endoff
> ip
->i_size
)
2740 endoff
= ip
->i_size
;
2742 bp
= xfs_buf_get_noaddr(mp
->m_sb
.sb_blocksize
,
2743 XFS_IS_REALTIME_INODE(ip
) ?
2744 mp
->m_rtdev_targp
: mp
->m_ddev_targp
);
2746 return XFS_ERROR(ENOMEM
);
2748 for (offset
= startoff
; offset
<= endoff
; offset
= lastoffset
+ 1) {
2749 offset_fsb
= XFS_B_TO_FSBT(mp
, offset
);
2751 error
= xfs_bmapi(NULL
, ip
, offset_fsb
, 1, 0,
2752 NULL
, 0, &imap
, &nimap
, NULL
, NULL
);
2753 if (error
|| nimap
< 1)
2755 ASSERT(imap
.br_blockcount
>= 1);
2756 ASSERT(imap
.br_startoff
== offset_fsb
);
2757 lastoffset
= XFS_FSB_TO_B(mp
, imap
.br_startoff
+ 1) - 1;
2758 if (lastoffset
> endoff
)
2759 lastoffset
= endoff
;
2760 if (imap
.br_startblock
== HOLESTARTBLOCK
)
2762 ASSERT(imap
.br_startblock
!= DELAYSTARTBLOCK
);
2763 if (imap
.br_state
== XFS_EXT_UNWRITTEN
)
2766 XFS_BUF_UNWRITE(bp
);
2768 XFS_BUF_SET_ADDR(bp
, xfs_fsb_to_db(ip
, imap
.br_startblock
));
2770 error
= xfs_iowait(bp
);
2772 xfs_ioerror_alert("xfs_zero_remaining_bytes(read)",
2773 mp
, bp
, XFS_BUF_ADDR(bp
));
2776 memset(XFS_BUF_PTR(bp
) +
2777 (offset
- XFS_FSB_TO_B(mp
, imap
.br_startoff
)),
2778 0, lastoffset
- offset
+ 1);
2783 error
= xfs_iowait(bp
);
2785 xfs_ioerror_alert("xfs_zero_remaining_bytes(write)",
2786 mp
, bp
, XFS_BUF_ADDR(bp
));
2795 * xfs_free_file_space()
2796 * This routine frees disk space for the given file.
2798 * This routine is only called by xfs_change_file_space
2799 * for an UNRESVSP type call.
2807 xfs_free_file_space(
2815 xfs_off_t end_dmi_offset
;
2816 xfs_fileoff_t endoffset_fsb
;
2818 xfs_fsblock_t firstfsb
;
2819 xfs_bmap_free_t free_list
;
2820 xfs_bmbt_irec_t imap
;
2828 xfs_fileoff_t startoffset_fsb
;
2830 int need_iolock
= 1;
2834 xfs_itrace_entry(ip
);
2836 error
= xfs_qm_dqattach(ip
, 0);
2841 if (len
<= 0) /* if nothing being freed */
2843 rt
= XFS_IS_REALTIME_INODE(ip
);
2844 startoffset_fsb
= XFS_B_TO_FSB(mp
, offset
);
2845 end_dmi_offset
= offset
+ len
;
2846 endoffset_fsb
= XFS_B_TO_FSBT(mp
, end_dmi_offset
);
2848 if (offset
< ip
->i_size
&& (attr_flags
& XFS_ATTR_DMI
) == 0 &&
2849 DM_EVENT_ENABLED(ip
, DM_EVENT_WRITE
)) {
2850 if (end_dmi_offset
> ip
->i_size
)
2851 end_dmi_offset
= ip
->i_size
;
2852 error
= XFS_SEND_DATA(mp
, DM_EVENT_WRITE
, ip
,
2853 offset
, end_dmi_offset
- offset
,
2854 AT_DELAY_FLAG(attr_flags
), NULL
);
2859 if (attr_flags
& XFS_ATTR_NOLOCK
)
2862 xfs_ilock(ip
, XFS_IOLOCK_EXCL
);
2863 /* wait for the completion of any pending DIOs */
2867 rounding
= max_t(uint
, 1 << mp
->m_sb
.sb_blocklog
, PAGE_CACHE_SIZE
);
2868 ioffset
= offset
& ~(rounding
- 1);
2870 if (VN_CACHED(VFS_I(ip
)) != 0) {
2871 xfs_inval_cached_trace(ip
, ioffset
, -1, ioffset
, -1);
2872 error
= xfs_flushinval_pages(ip
, ioffset
, -1, FI_REMAPF_LOCKED
);
2874 goto out_unlock_iolock
;
2878 * Need to zero the stuff we're not freeing, on disk.
2879 * If it's a realtime file & can't use unwritten extents then we
2880 * actually need to zero the extent edges. Otherwise xfs_bunmapi
2881 * will take care of it for us.
2883 if (rt
&& !xfs_sb_version_hasextflgbit(&mp
->m_sb
)) {
2885 error
= xfs_bmapi(NULL
, ip
, startoffset_fsb
,
2886 1, 0, NULL
, 0, &imap
, &nimap
, NULL
, NULL
);
2888 goto out_unlock_iolock
;
2889 ASSERT(nimap
== 0 || nimap
== 1);
2890 if (nimap
&& imap
.br_startblock
!= HOLESTARTBLOCK
) {
2893 ASSERT(imap
.br_startblock
!= DELAYSTARTBLOCK
);
2894 block
= imap
.br_startblock
;
2895 mod
= do_div(block
, mp
->m_sb
.sb_rextsize
);
2897 startoffset_fsb
+= mp
->m_sb
.sb_rextsize
- mod
;
2900 error
= xfs_bmapi(NULL
, ip
, endoffset_fsb
- 1,
2901 1, 0, NULL
, 0, &imap
, &nimap
, NULL
, NULL
);
2903 goto out_unlock_iolock
;
2904 ASSERT(nimap
== 0 || nimap
== 1);
2905 if (nimap
&& imap
.br_startblock
!= HOLESTARTBLOCK
) {
2906 ASSERT(imap
.br_startblock
!= DELAYSTARTBLOCK
);
2908 if (mod
&& (mod
!= mp
->m_sb
.sb_rextsize
))
2909 endoffset_fsb
-= mod
;
2912 if ((done
= (endoffset_fsb
<= startoffset_fsb
)))
2914 * One contiguous piece to clear
2916 error
= xfs_zero_remaining_bytes(ip
, offset
, offset
+ len
- 1);
2919 * Some full blocks, possibly two pieces to clear
2921 if (offset
< XFS_FSB_TO_B(mp
, startoffset_fsb
))
2922 error
= xfs_zero_remaining_bytes(ip
, offset
,
2923 XFS_FSB_TO_B(mp
, startoffset_fsb
) - 1);
2925 XFS_FSB_TO_B(mp
, endoffset_fsb
) < offset
+ len
)
2926 error
= xfs_zero_remaining_bytes(ip
,
2927 XFS_FSB_TO_B(mp
, endoffset_fsb
),
2932 * free file space until done or until there is an error
2934 resblks
= XFS_DIOSTRAT_SPACE_RES(mp
, 0);
2935 while (!error
&& !done
) {
2938 * allocate and setup the transaction. Allow this
2939 * transaction to dip into the reserve blocks to ensure
2940 * the freeing of the space succeeds at ENOSPC.
2942 tp
= xfs_trans_alloc(mp
, XFS_TRANS_DIOSTRAT
);
2943 tp
->t_flags
|= XFS_TRANS_RESERVE
;
2944 error
= xfs_trans_reserve(tp
,
2946 XFS_WRITE_LOG_RES(mp
),
2948 XFS_TRANS_PERM_LOG_RES
,
2949 XFS_WRITE_LOG_COUNT
);
2952 * check for running out of space
2956 * Free the transaction structure.
2958 ASSERT(error
== ENOSPC
|| XFS_FORCED_SHUTDOWN(mp
));
2959 xfs_trans_cancel(tp
, 0);
2962 xfs_ilock(ip
, XFS_ILOCK_EXCL
);
2963 error
= xfs_trans_reserve_quota(tp
, mp
,
2964 ip
->i_udquot
, ip
->i_gdquot
,
2965 resblks
, 0, XFS_QMOPT_RES_REGBLKS
);
2969 xfs_trans_ijoin(tp
, ip
, XFS_ILOCK_EXCL
);
2970 xfs_trans_ihold(tp
, ip
);
2973 * issue the bunmapi() call to free the blocks
2975 xfs_bmap_init(&free_list
, &firstfsb
);
2976 error
= xfs_bunmapi(tp
, ip
, startoffset_fsb
,
2977 endoffset_fsb
- startoffset_fsb
,
2978 0, 2, &firstfsb
, &free_list
, NULL
, &done
);
2984 * complete the transaction
2986 error
= xfs_bmap_finish(&tp
, &free_list
, &committed
);
2991 error
= xfs_trans_commit(tp
, XFS_TRANS_RELEASE_LOG_RES
);
2992 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
2997 xfs_iunlock(ip
, XFS_IOLOCK_EXCL
);
3001 xfs_bmap_cancel(&free_list
);
3003 xfs_trans_cancel(tp
, XFS_TRANS_RELEASE_LOG_RES
| XFS_TRANS_ABORT
);
3004 xfs_iunlock(ip
, need_iolock
? (XFS_ILOCK_EXCL
| XFS_IOLOCK_EXCL
) :
3010 * xfs_change_file_space()
3011 * This routine allocates or frees disk space for the given file.
3012 * The user specified parameters are checked for alignment and size
3021 xfs_change_file_space(
3028 xfs_mount_t
*mp
= ip
->i_mount
;
3033 xfs_off_t startoffset
;
3038 xfs_itrace_entry(ip
);
3040 if (!S_ISREG(ip
->i_d
.di_mode
))
3041 return XFS_ERROR(EINVAL
);
3043 switch (bf
->l_whence
) {
3044 case 0: /*SEEK_SET*/
3046 case 1: /*SEEK_CUR*/
3047 bf
->l_start
+= offset
;
3049 case 2: /*SEEK_END*/
3050 bf
->l_start
+= ip
->i_size
;
3053 return XFS_ERROR(EINVAL
);
3056 llen
= bf
->l_len
> 0 ? bf
->l_len
- 1 : bf
->l_len
;
3058 if ( (bf
->l_start
< 0)
3059 || (bf
->l_start
> XFS_MAXIOFFSET(mp
))
3060 || (bf
->l_start
+ llen
< 0)
3061 || (bf
->l_start
+ llen
> XFS_MAXIOFFSET(mp
)))
3062 return XFS_ERROR(EINVAL
);
3066 startoffset
= bf
->l_start
;
3070 * XFS_IOC_RESVSP and XFS_IOC_UNRESVSP will reserve or unreserve
3072 * These calls do NOT zero the data space allocated to the file,
3073 * nor do they change the file size.
3075 * XFS_IOC_ALLOCSP and XFS_IOC_FREESP will allocate and free file
3077 * These calls cause the new file data to be zeroed and the file
3078 * size to be changed.
3080 setprealloc
= clrprealloc
= 0;
3083 case XFS_IOC_RESVSP
:
3084 case XFS_IOC_RESVSP64
:
3085 error
= xfs_alloc_file_space(ip
, startoffset
, bf
->l_len
,
3092 case XFS_IOC_UNRESVSP
:
3093 case XFS_IOC_UNRESVSP64
:
3094 if ((error
= xfs_free_file_space(ip
, startoffset
, bf
->l_len
,
3099 case XFS_IOC_ALLOCSP
:
3100 case XFS_IOC_ALLOCSP64
:
3101 case XFS_IOC_FREESP
:
3102 case XFS_IOC_FREESP64
:
3103 if (startoffset
> fsize
) {
3104 error
= xfs_alloc_file_space(ip
, fsize
,
3105 startoffset
- fsize
, 0, attr_flags
);
3110 iattr
.ia_valid
= ATTR_SIZE
;
3111 iattr
.ia_size
= startoffset
;
3113 error
= xfs_setattr(ip
, &iattr
, attr_flags
);
3123 return XFS_ERROR(EINVAL
);
3127 * update the inode timestamp, mode, and prealloc flag bits
3129 tp
= xfs_trans_alloc(mp
, XFS_TRANS_WRITEID
);
3131 if ((error
= xfs_trans_reserve(tp
, 0, XFS_WRITEID_LOG_RES(mp
),
3134 xfs_trans_cancel(tp
, 0);
3138 xfs_ilock(ip
, XFS_ILOCK_EXCL
);
3140 xfs_trans_ijoin(tp
, ip
, XFS_ILOCK_EXCL
);
3141 xfs_trans_ihold(tp
, ip
);
3143 if ((attr_flags
& XFS_ATTR_DMI
) == 0) {
3144 ip
->i_d
.di_mode
&= ~S_ISUID
;
3147 * Note that we don't have to worry about mandatory
3148 * file locking being disabled here because we only
3149 * clear the S_ISGID bit if the Group execute bit is
3150 * on, but if it was on then mandatory locking wouldn't
3151 * have been enabled.
3153 if (ip
->i_d
.di_mode
& S_IXGRP
)
3154 ip
->i_d
.di_mode
&= ~S_ISGID
;
3156 xfs_ichgtime(ip
, XFS_ICHGTIME_MOD
| XFS_ICHGTIME_CHG
);
3159 ip
->i_d
.di_flags
|= XFS_DIFLAG_PREALLOC
;
3160 else if (clrprealloc
)
3161 ip
->i_d
.di_flags
&= ~XFS_DIFLAG_PREALLOC
;
3163 xfs_trans_log_inode(tp
, ip
, XFS_ILOG_CORE
);
3164 xfs_trans_set_sync(tp
);
3166 error
= xfs_trans_commit(tp
, 0);
3168 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);