2 * Copyright (c) 2000-2003,2005 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
23 #include "xfs_trans.h"
28 #include "xfs_alloc.h"
29 #include "xfs_dmapi.h"
30 #include "xfs_quota.h"
31 #include "xfs_mount.h"
32 #include "xfs_bmap_btree.h"
33 #include "xfs_alloc_btree.h"
34 #include "xfs_ialloc_btree.h"
35 #include "xfs_dir_sf.h"
36 #include "xfs_dir2_sf.h"
37 #include "xfs_attr_sf.h"
38 #include "xfs_dinode.h"
39 #include "xfs_inode.h"
41 #include "xfs_btree.h"
42 #include "xfs_ialloc.h"
43 #include "xfs_rtalloc.h"
44 #include "xfs_error.h"
45 #include "xfs_itable.h"
51 #include "xfs_inode_item.h"
52 #include "xfs_buf_item.h"
53 #include "xfs_utils.h"
54 #include "xfs_iomap.h"
56 #include <linux/capability.h>
57 #include <linux/writeback.h>
60 #if defined(XFS_RW_TRACE)
70 xfs_inode_t
*ip
= XFS_IO_INODE(io
);
72 if (ip
->i_rwtrace
== NULL
)
74 ktrace_enter(ip
->i_rwtrace
,
75 (void *)(unsigned long)tag
,
77 (void *)((unsigned long)((ip
->i_d
.di_size
>> 32) & 0xffffffff)),
78 (void *)((unsigned long)(ip
->i_d
.di_size
& 0xffffffff)),
80 (void *)((unsigned long)segs
),
81 (void *)((unsigned long)((offset
>> 32) & 0xffffffff)),
82 (void *)((unsigned long)(offset
& 0xffffffff)),
83 (void *)((unsigned long)ioflags
),
84 (void *)((unsigned long)((io
->io_new_size
>> 32) & 0xffffffff)),
85 (void *)((unsigned long)(io
->io_new_size
& 0xffffffff)),
94 xfs_inval_cached_trace(
101 xfs_inode_t
*ip
= XFS_IO_INODE(io
);
103 if (ip
->i_rwtrace
== NULL
)
105 ktrace_enter(ip
->i_rwtrace
,
106 (void *)(__psint_t
)XFS_INVAL_CACHED
,
108 (void *)((unsigned long)((offset
>> 32) & 0xffffffff)),
109 (void *)((unsigned long)(offset
& 0xffffffff)),
110 (void *)((unsigned long)((len
>> 32) & 0xffffffff)),
111 (void *)((unsigned long)(len
& 0xffffffff)),
112 (void *)((unsigned long)((first
>> 32) & 0xffffffff)),
113 (void *)((unsigned long)(first
& 0xffffffff)),
114 (void *)((unsigned long)((last
>> 32) & 0xffffffff)),
115 (void *)((unsigned long)(last
& 0xffffffff)),
128 * xfs_iozero clears the specified range of buffer supplied,
129 * and marks all the affected blocks as valid and modified. If
130 * an affected block is not allocated, it will be allocated. If
131 * an affected block is not completely overwritten, and is not
132 * valid before the operation, it will be read from disk before
133 * being partially zeroed.
137 struct inode
*ip
, /* inode */
138 loff_t pos
, /* offset in file */
139 size_t count
, /* size of data to zero */
140 loff_t end_size
) /* max file size to set */
144 struct address_space
*mapping
;
148 mapping
= ip
->i_mapping
;
150 unsigned long index
, offset
;
152 offset
= (pos
& (PAGE_CACHE_SIZE
-1)); /* Within page */
153 index
= pos
>> PAGE_CACHE_SHIFT
;
154 bytes
= PAGE_CACHE_SIZE
- offset
;
159 page
= grab_cache_page(mapping
, index
);
164 status
= mapping
->a_ops
->prepare_write(NULL
, page
, offset
,
170 memset((void *) (kaddr
+ offset
), 0, bytes
);
171 flush_dcache_page(page
);
172 status
= mapping
->a_ops
->commit_write(NULL
, page
, offset
,
177 if (pos
> i_size_read(ip
))
178 i_size_write(ip
, pos
< end_size
? pos
: end_size
);
184 page_cache_release(page
);
192 ssize_t
/* bytes read, or (-) error */
196 const struct iovec
*iovp
,
202 struct file
*file
= iocb
->ki_filp
;
203 struct inode
*inode
= file
->f_mapping
->host
;
212 ip
= XFS_BHVTOI(bdp
);
213 vp
= BHV_TO_VNODE(bdp
);
216 XFS_STATS_INC(xs_read_calls
);
218 /* START copy & waste from filemap.c */
219 for (seg
= 0; seg
< segs
; seg
++) {
220 const struct iovec
*iv
= &iovp
[seg
];
223 * If any segment has a negative length, or the cumulative
224 * length ever wraps negative then return -EINVAL.
227 if (unlikely((ssize_t
)(size
|iv
->iov_len
) < 0))
228 return XFS_ERROR(-EINVAL
);
230 /* END copy & waste from filemap.c */
232 if (unlikely(ioflags
& IO_ISDIRECT
)) {
233 xfs_buftarg_t
*target
=
234 (ip
->i_d
.di_flags
& XFS_DIFLAG_REALTIME
) ?
235 mp
->m_rtdev_targp
: mp
->m_ddev_targp
;
236 if ((*offset
& target
->bt_smask
) ||
237 (size
& target
->bt_smask
)) {
238 if (*offset
== ip
->i_d
.di_size
) {
241 return -XFS_ERROR(EINVAL
);
245 n
= XFS_MAXIOFFSET(mp
) - *offset
;
246 if ((n
<= 0) || (size
== 0))
252 if (XFS_FORCED_SHUTDOWN(mp
)) {
256 if (unlikely(ioflags
& IO_ISDIRECT
))
257 mutex_lock(&inode
->i_mutex
);
258 xfs_ilock(ip
, XFS_IOLOCK_SHARED
);
260 if (DM_EVENT_ENABLED(vp
->v_vfsp
, ip
, DM_EVENT_READ
) &&
261 !(ioflags
& IO_INVIS
)) {
262 vrwlock_t locktype
= VRWLOCK_READ
;
263 int dmflags
= FILP_DELAY_FLAG(file
) | DM_SEM_FLAG_RD(ioflags
);
265 ret
= -XFS_SEND_DATA(mp
, DM_EVENT_READ
,
266 BHV_TO_VNODE(bdp
), *offset
, size
,
269 xfs_iunlock(ip
, XFS_IOLOCK_SHARED
);
274 xfs_rw_enter_trace(XFS_READ_ENTER
, &ip
->i_iocore
,
275 (void *)iovp
, segs
, *offset
, ioflags
);
276 ret
= __generic_file_aio_read(iocb
, iovp
, segs
, offset
);
277 if (ret
== -EIOCBQUEUED
&& !(ioflags
& IO_ISAIO
))
278 ret
= wait_on_sync_kiocb(iocb
);
280 XFS_STATS_ADD(xs_read_bytes
, ret
);
282 xfs_iunlock(ip
, XFS_IOLOCK_SHARED
);
285 if (unlikely(ioflags
& IO_ISDIRECT
))
286 mutex_unlock(&inode
->i_mutex
);
307 ip
= XFS_BHVTOI(bdp
);
308 vp
= BHV_TO_VNODE(bdp
);
311 XFS_STATS_INC(xs_read_calls
);
313 n
= XFS_MAXIOFFSET(mp
) - *offset
;
314 if ((n
<= 0) || (count
== 0))
320 if (XFS_FORCED_SHUTDOWN(ip
->i_mount
))
323 xfs_ilock(ip
, XFS_IOLOCK_SHARED
);
325 if (DM_EVENT_ENABLED(vp
->v_vfsp
, ip
, DM_EVENT_READ
) &&
326 (!(ioflags
& IO_INVIS
))) {
327 vrwlock_t locktype
= VRWLOCK_READ
;
330 error
= XFS_SEND_DATA(mp
, DM_EVENT_READ
, BHV_TO_VNODE(bdp
), *offset
, count
,
331 FILP_DELAY_FLAG(filp
), &locktype
);
333 xfs_iunlock(ip
, XFS_IOLOCK_SHARED
);
337 xfs_rw_enter_trace(XFS_SENDFILE_ENTER
, &ip
->i_iocore
,
338 (void *)(unsigned long)target
, count
, *offset
, ioflags
);
339 ret
= generic_file_sendfile(filp
, offset
, count
, actor
, target
);
341 xfs_iunlock(ip
, XFS_IOLOCK_SHARED
);
344 XFS_STATS_ADD(xs_read_bytes
, ret
);
350 * This routine is called to handle zeroing any space in the last
351 * block of the file that is beyond the EOF. We do this since the
352 * size is being increased without writing anything to that block
353 * and we don't want anyone to read the garbage on the disk.
355 STATIC
int /* error (positive) */
360 xfs_fsize_t end_size
)
362 xfs_fileoff_t last_fsb
;
368 xfs_bmbt_irec_t imap
;
371 ASSERT(ismrlocked(io
->io_lock
, MR_UPDATE
) != 0);
375 zero_offset
= XFS_B_FSB_OFFSET(mp
, isize
);
376 if (zero_offset
== 0) {
378 * There are no extra bytes in the last block on disk to
384 last_fsb
= XFS_B_TO_FSBT(mp
, isize
);
386 error
= XFS_BMAPI(mp
, NULL
, io
, last_fsb
, 1, 0, NULL
, 0, &imap
,
393 * If the block underlying isize is just a hole, then there
394 * is nothing to zero.
396 if (imap
.br_startblock
== HOLESTARTBLOCK
) {
400 * Zero the part of the last block beyond the EOF, and write it
401 * out sync. We need to drop the ilock while we do this so we
402 * don't deadlock when the buffer cache calls back to us.
404 XFS_IUNLOCK(mp
, io
, XFS_ILOCK_EXCL
| XFS_EXTSIZE_RD
);
405 loff
= XFS_FSB_TO_B(mp
, last_fsb
);
407 zero_len
= mp
->m_sb
.sb_blocksize
- zero_offset
;
409 error
= xfs_iozero(ip
, loff
+ zero_offset
, zero_len
, end_size
);
411 XFS_ILOCK(mp
, io
, XFS_ILOCK_EXCL
|XFS_EXTSIZE_RD
);
417 * Zero any on disk space between the current EOF and the new,
418 * larger EOF. This handles the normal case of zeroing the remainder
419 * of the last block in the file and the unusual case of zeroing blocks
420 * out beyond the size of the file. This second case only happens
421 * with fixed size extents and when the system crashes before the inode
422 * size was updated but after blocks were allocated. If fill is set,
423 * then any holes in the range are filled and zeroed. If not, the holes
424 * are left alone as holes.
427 int /* error (positive) */
431 xfs_off_t offset
, /* starting I/O offset */
432 xfs_fsize_t isize
, /* current inode size */
433 xfs_fsize_t end_size
) /* terminal inode size */
435 struct inode
*ip
= LINVFS_GET_IP(vp
);
436 xfs_fileoff_t start_zero_fsb
;
437 xfs_fileoff_t end_zero_fsb
;
438 xfs_fileoff_t zero_count_fsb
;
439 xfs_fileoff_t last_fsb
;
440 xfs_extlen_t buf_len_fsb
;
444 xfs_bmbt_irec_t imap
;
446 ASSERT(ismrlocked(io
->io_lock
, MR_UPDATE
));
447 ASSERT(ismrlocked(io
->io_iolock
, MR_UPDATE
));
448 ASSERT(offset
> isize
);
453 * First handle zeroing the block on which isize resides.
454 * We only zero a part of that block so it is handled specially.
456 error
= xfs_zero_last_block(ip
, io
, isize
, end_size
);
458 ASSERT(ismrlocked(io
->io_lock
, MR_UPDATE
));
459 ASSERT(ismrlocked(io
->io_iolock
, MR_UPDATE
));
464 * Calculate the range between the new size and the old
465 * where blocks needing to be zeroed may exist. To get the
466 * block where the last byte in the file currently resides,
467 * we need to subtract one from the size and truncate back
468 * to a block boundary. We subtract 1 in case the size is
469 * exactly on a block boundary.
471 last_fsb
= isize
? XFS_B_TO_FSBT(mp
, isize
- 1) : (xfs_fileoff_t
)-1;
472 start_zero_fsb
= XFS_B_TO_FSB(mp
, (xfs_ufsize_t
)isize
);
473 end_zero_fsb
= XFS_B_TO_FSBT(mp
, offset
- 1);
474 ASSERT((xfs_sfiloff_t
)last_fsb
< (xfs_sfiloff_t
)start_zero_fsb
);
475 if (last_fsb
== end_zero_fsb
) {
477 * The size was only incremented on its last block.
478 * We took care of that above, so just return.
483 ASSERT(start_zero_fsb
<= end_zero_fsb
);
484 while (start_zero_fsb
<= end_zero_fsb
) {
486 zero_count_fsb
= end_zero_fsb
- start_zero_fsb
+ 1;
487 error
= XFS_BMAPI(mp
, NULL
, io
, start_zero_fsb
, zero_count_fsb
,
488 0, NULL
, 0, &imap
, &nimaps
, NULL
);
490 ASSERT(ismrlocked(io
->io_lock
, MR_UPDATE
));
491 ASSERT(ismrlocked(io
->io_iolock
, MR_UPDATE
));
496 if (imap
.br_state
== XFS_EXT_UNWRITTEN
||
497 imap
.br_startblock
== HOLESTARTBLOCK
) {
499 * This loop handles initializing pages that were
500 * partially initialized by the code below this
501 * loop. It basically zeroes the part of the page
502 * that sits on a hole and sets the page as P_HOLE
503 * and calls remapf if it is a mapped file.
505 start_zero_fsb
= imap
.br_startoff
+ imap
.br_blockcount
;
506 ASSERT(start_zero_fsb
<= (end_zero_fsb
+ 1));
511 * There are blocks in the range requested.
512 * Zero them a single write at a time. We actually
513 * don't zero the entire range returned if it is
514 * too big and simply loop around to get the rest.
515 * That is not the most efficient thing to do, but it
516 * is simple and this path should not be exercised often.
518 buf_len_fsb
= XFS_FILBLKS_MIN(imap
.br_blockcount
,
519 mp
->m_writeio_blocks
<< 8);
521 * Drop the inode lock while we're doing the I/O.
522 * We'll still have the iolock to protect us.
524 XFS_IUNLOCK(mp
, io
, XFS_ILOCK_EXCL
|XFS_EXTSIZE_RD
);
526 error
= xfs_iozero(ip
,
527 XFS_FSB_TO_B(mp
, start_zero_fsb
),
528 XFS_FSB_TO_B(mp
, buf_len_fsb
),
535 start_zero_fsb
= imap
.br_startoff
+ buf_len_fsb
;
536 ASSERT(start_zero_fsb
<= (end_zero_fsb
+ 1));
538 XFS_ILOCK(mp
, io
, XFS_ILOCK_EXCL
|XFS_EXTSIZE_RD
);
545 XFS_ILOCK(mp
, io
, XFS_ILOCK_EXCL
|XFS_EXTSIZE_RD
);
550 ssize_t
/* bytes written, or (-) error */
554 const struct iovec
*iovp
,
560 struct file
*file
= iocb
->ki_filp
;
561 struct address_space
*mapping
= file
->f_mapping
;
562 struct inode
*inode
= mapping
->host
;
563 unsigned long segs
= nsegs
;
566 ssize_t ret
= 0, error
= 0;
567 xfs_fsize_t isize
, new_size
;
574 size_t ocount
= 0, count
;
576 int need_isem
= 1, need_flush
= 0;
578 XFS_STATS_INC(xs_write_calls
);
580 vp
= BHV_TO_VNODE(bdp
);
581 xip
= XFS_BHVTOI(bdp
);
583 for (seg
= 0; seg
< segs
; seg
++) {
584 const struct iovec
*iv
= &iovp
[seg
];
587 * If any segment has a negative length, or the cumulative
588 * length ever wraps negative then return -EINVAL.
590 ocount
+= iv
->iov_len
;
591 if (unlikely((ssize_t
)(ocount
|iv
->iov_len
) < 0))
593 if (access_ok(VERIFY_READ
, iv
->iov_base
, iv
->iov_len
))
598 ocount
-= iv
->iov_len
; /* This segment is no good */
611 if (XFS_FORCED_SHUTDOWN(mp
))
614 fs_check_frozen(vp
->v_vfsp
, SB_FREEZE_WRITE
);
616 if (ioflags
& IO_ISDIRECT
) {
617 xfs_buftarg_t
*target
=
618 (xip
->i_d
.di_flags
& XFS_DIFLAG_REALTIME
) ?
619 mp
->m_rtdev_targp
: mp
->m_ddev_targp
;
621 if ((pos
& target
->bt_smask
) || (count
& target
->bt_smask
))
622 return XFS_ERROR(-EINVAL
);
624 if (!VN_CACHED(vp
) && pos
< i_size_read(inode
))
633 iolock
= XFS_IOLOCK_EXCL
;
634 locktype
= VRWLOCK_WRITE
;
636 mutex_lock(&inode
->i_mutex
);
638 iolock
= XFS_IOLOCK_SHARED
;
639 locktype
= VRWLOCK_WRITE_DIRECT
;
642 xfs_ilock(xip
, XFS_ILOCK_EXCL
|iolock
);
644 isize
= i_size_read(inode
);
646 if (file
->f_flags
& O_APPEND
)
650 error
= -generic_write_checks(file
, &pos
, &count
,
651 S_ISBLK(inode
->i_mode
));
653 xfs_iunlock(xip
, XFS_ILOCK_EXCL
|iolock
);
654 goto out_unlock_isem
;
657 new_size
= pos
+ count
;
658 if (new_size
> isize
)
659 io
->io_new_size
= new_size
;
661 if ((DM_EVENT_ENABLED(vp
->v_vfsp
, xip
, DM_EVENT_WRITE
) &&
662 !(ioflags
& IO_INVIS
) && !eventsent
)) {
663 loff_t savedsize
= pos
;
664 int dmflags
= FILP_DELAY_FLAG(file
);
667 dmflags
|= DM_FLAGS_IMUX
;
669 xfs_iunlock(xip
, XFS_ILOCK_EXCL
);
670 error
= XFS_SEND_DATA(xip
->i_mount
, DM_EVENT_WRITE
, vp
,
674 xfs_iunlock(xip
, iolock
);
675 goto out_unlock_isem
;
677 xfs_ilock(xip
, XFS_ILOCK_EXCL
);
681 * The iolock was dropped and reaquired in XFS_SEND_DATA
682 * so we have to recheck the size when appending.
683 * We will only "goto start;" once, since having sent the
684 * event prevents another call to XFS_SEND_DATA, which is
685 * what allows the size to change in the first place.
687 if ((file
->f_flags
& O_APPEND
) && savedsize
!= isize
) {
688 pos
= isize
= xip
->i_d
.di_size
;
693 if (likely(!(ioflags
& IO_INVIS
))) {
694 file_update_time(file
);
695 xfs_ichgtime_fast(xip
, inode
,
696 XFS_ICHGTIME_MOD
| XFS_ICHGTIME_CHG
);
700 * If the offset is beyond the size of the file, we have a couple
701 * of things to do. First, if there is already space allocated
702 * we need to either create holes or zero the disk or ...
704 * If there is a page where the previous size lands, we need
705 * to zero it out up to the new size.
709 error
= xfs_zero_eof(BHV_TO_VNODE(bdp
), io
, pos
,
712 xfs_iunlock(xip
, XFS_ILOCK_EXCL
|iolock
);
713 goto out_unlock_isem
;
716 xfs_iunlock(xip
, XFS_ILOCK_EXCL
);
719 * If we're writing the file then make sure to clear the
720 * setuid and setgid bits if the process is not being run
721 * by root. This keeps people from modifying setuid and
725 if (((xip
->i_d
.di_mode
& S_ISUID
) ||
726 ((xip
->i_d
.di_mode
& (S_ISGID
| S_IXGRP
)) ==
727 (S_ISGID
| S_IXGRP
))) &&
728 !capable(CAP_FSETID
)) {
729 error
= xfs_write_clear_setuid(xip
);
731 error
= -remove_suid(file
->f_dentry
);
732 if (unlikely(error
)) {
733 xfs_iunlock(xip
, iolock
);
734 goto out_unlock_isem
;
739 /* We can write back this queue in page reclaim */
740 current
->backing_dev_info
= mapping
->backing_dev_info
;
742 if ((ioflags
& IO_ISDIRECT
)) {
744 xfs_inval_cached_trace(io
, pos
, -1,
745 ctooff(offtoct(pos
)), -1);
746 VOP_FLUSHINVAL_PAGES(vp
, ctooff(offtoct(pos
)),
747 -1, FI_REMAPF_LOCKED
);
751 /* demote the lock now the cached pages are gone */
752 XFS_ILOCK_DEMOTE(mp
, io
, XFS_IOLOCK_EXCL
);
753 mutex_unlock(&inode
->i_mutex
);
755 iolock
= XFS_IOLOCK_SHARED
;
756 locktype
= VRWLOCK_WRITE_DIRECT
;
760 xfs_rw_enter_trace(XFS_DIOWR_ENTER
, io
, (void *)iovp
, segs
,
762 ret
= generic_file_direct_write(iocb
, iovp
,
763 &segs
, pos
, offset
, count
, ocount
);
766 * direct-io write to a hole: fall through to buffered I/O
767 * for completing the rest of the request.
769 if (ret
>= 0 && ret
!= count
) {
770 XFS_STATS_ADD(xs_write_bytes
, ret
);
776 ioflags
&= ~IO_ISDIRECT
;
777 xfs_iunlock(xip
, iolock
);
781 xfs_rw_enter_trace(XFS_WRITE_ENTER
, io
, (void *)iovp
, segs
,
783 ret
= generic_file_buffered_write(iocb
, iovp
, segs
,
784 pos
, offset
, count
, ret
);
787 current
->backing_dev_info
= NULL
;
789 if (ret
== -EIOCBQUEUED
&& !(ioflags
& IO_ISAIO
))
790 ret
= wait_on_sync_kiocb(iocb
);
792 if ((ret
== -ENOSPC
) &&
793 DM_EVENT_ENABLED(vp
->v_vfsp
, xip
, DM_EVENT_NOSPACE
) &&
794 !(ioflags
& IO_INVIS
)) {
796 xfs_rwunlock(bdp
, locktype
);
798 mutex_unlock(&inode
->i_mutex
);
799 error
= XFS_SEND_NAMESP(xip
->i_mount
, DM_EVENT_NOSPACE
, vp
,
800 DM_RIGHT_NULL
, vp
, DM_RIGHT_NULL
, NULL
, NULL
,
801 0, 0, 0); /* Delay flag intentionally unused */
805 mutex_lock(&inode
->i_mutex
);
806 xfs_rwlock(bdp
, locktype
);
807 pos
= xip
->i_d
.di_size
;
812 isize
= i_size_read(inode
);
813 if (unlikely(ret
< 0 && ret
!= -EFAULT
&& *offset
> isize
))
816 if (*offset
> xip
->i_d
.di_size
) {
817 xfs_ilock(xip
, XFS_ILOCK_EXCL
);
818 if (*offset
> xip
->i_d
.di_size
) {
819 xip
->i_d
.di_size
= *offset
;
820 i_size_write(inode
, *offset
);
821 xip
->i_update_core
= 1;
822 xip
->i_update_size
= 1;
824 xfs_iunlock(xip
, XFS_ILOCK_EXCL
);
829 goto out_unlock_internal
;
831 XFS_STATS_ADD(xs_write_bytes
, ret
);
833 /* Handle various SYNC-type writes */
834 if ((file
->f_flags
& O_SYNC
) || IS_SYNC(inode
)) {
836 * If we're treating this as O_DSYNC and we have not updated the
837 * size, force the log.
839 if (!(mp
->m_flags
& XFS_MOUNT_OSYNCISOSYNC
) &&
840 !(xip
->i_update_size
)) {
841 xfs_inode_log_item_t
*iip
= xip
->i_itemp
;
844 * If an allocation transaction occurred
845 * without extending the size, then we have to force
846 * the log up the proper point to ensure that the
847 * allocation is permanent. We can't count on
848 * the fact that buffered writes lock out direct I/O
849 * writes - the direct I/O write could have extended
850 * the size nontransactionally, then finished before
851 * we started. xfs_write_file will think that the file
852 * didn't grow but the update isn't safe unless the
853 * size change is logged.
855 * Force the log if we've committed a transaction
856 * against the inode or if someone else has and
857 * the commit record hasn't gone to disk (e.g.
858 * the inode is pinned). This guarantees that
859 * all changes affecting the inode are permanent
862 if (iip
&& iip
->ili_last_lsn
) {
863 xfs_log_force(mp
, iip
->ili_last_lsn
,
864 XFS_LOG_FORCE
| XFS_LOG_SYNC
);
865 } else if (xfs_ipincount(xip
) > 0) {
866 xfs_log_force(mp
, (xfs_lsn_t
)0,
867 XFS_LOG_FORCE
| XFS_LOG_SYNC
);
874 * O_SYNC or O_DSYNC _with_ a size update are handled
877 * If the write was synchronous then we need to make
878 * sure that the inode modification time is permanent.
879 * We'll have updated the timestamp above, so here
880 * we use a synchronous transaction to log the inode.
881 * It's not fast, but it's necessary.
883 * If this a dsync write and the size got changed
884 * non-transactionally, then we need to ensure that
885 * the size change gets logged in a synchronous
889 tp
= xfs_trans_alloc(mp
, XFS_TRANS_WRITE_SYNC
);
890 if ((error
= xfs_trans_reserve(tp
, 0,
891 XFS_SWRITE_LOG_RES(mp
),
893 /* Transaction reserve failed */
894 xfs_trans_cancel(tp
, 0);
896 /* Transaction reserve successful */
897 xfs_ilock(xip
, XFS_ILOCK_EXCL
);
898 xfs_trans_ijoin(tp
, xip
, XFS_ILOCK_EXCL
);
899 xfs_trans_ihold(tp
, xip
);
900 xfs_trans_log_inode(tp
, xip
, XFS_ILOG_CORE
);
901 xfs_trans_set_sync(tp
);
902 error
= xfs_trans_commit(tp
, 0, NULL
);
903 xfs_iunlock(xip
, XFS_ILOCK_EXCL
);
906 goto out_unlock_internal
;
909 xfs_rwunlock(bdp
, locktype
);
911 mutex_unlock(&inode
->i_mutex
);
913 error
= sync_page_range(inode
, mapping
, pos
, ret
);
920 xfs_rwunlock(bdp
, locktype
);
923 mutex_unlock(&inode
->i_mutex
);
929 * All xfs metadata buffers except log state machine buffers
930 * get this attached as their b_bdstrat callback function.
931 * This is so that we can catch a buffer
932 * after prematurely unpinning it to forcibly shutdown the filesystem.
935 xfs_bdstrat_cb(struct xfs_buf
*bp
)
939 mp
= XFS_BUF_FSPRIVATE3(bp
, xfs_mount_t
*);
940 if (!XFS_FORCED_SHUTDOWN(mp
)) {
941 xfs_buf_iorequest(bp
);
944 xfs_buftrace("XFS__BDSTRAT IOERROR", bp
);
946 * Metadata write that didn't get logged but
947 * written delayed anyway. These aren't associated
948 * with a transaction, and can be ignored.
950 if (XFS_BUF_IODONE_FUNC(bp
) == NULL
&&
951 (XFS_BUF_ISREAD(bp
)) == 0)
952 return (xfs_bioerror_relse(bp
));
954 return (xfs_bioerror(bp
));
960 xfs_bmap(bhv_desc_t
*bdp
,
967 xfs_inode_t
*ip
= XFS_BHVTOI(bdp
);
968 xfs_iocore_t
*io
= &ip
->i_iocore
;
970 ASSERT((ip
->i_d
.di_mode
& S_IFMT
) == S_IFREG
);
971 ASSERT(((ip
->i_d
.di_flags
& XFS_DIFLAG_REALTIME
) != 0) ==
972 ((ip
->i_iocore
.io_flags
& XFS_IOCORE_RT
) != 0));
974 return xfs_iomap(io
, offset
, count
, flags
, iomapp
, niomaps
);
978 * Wrapper around bdstrat so that we can stop data
979 * from going to disk in case we are shutting down the filesystem.
980 * Typically user data goes thru this path; one of the exceptions
985 struct xfs_mount
*mp
,
989 if (!XFS_FORCED_SHUTDOWN(mp
)) {
990 /* Grio redirection would go here
991 * if (XFS_BUF_IS_GRIO(bp)) {
994 xfs_buf_iorequest(bp
);
998 xfs_buftrace("XFSBDSTRAT IOERROR", bp
);
999 return (xfs_bioerror_relse(bp
));
1003 * If the underlying (data/log/rt) device is readonly, there are some
1004 * operations that cannot proceed.
1007 xfs_dev_is_read_only(
1011 if (xfs_readonly_buftarg(mp
->m_ddev_targp
) ||
1012 xfs_readonly_buftarg(mp
->m_logdev_targp
) ||
1013 (mp
->m_rtdev_targp
&& xfs_readonly_buftarg(mp
->m_rtdev_targp
))) {
1015 "XFS: %s required on read-only device.", message
);
1017 "XFS: write access unavailable, cannot proceed.");