2 * Copyright (c) 2000-2003 Silicon Graphics, Inc. All Rights Reserved.
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of version 2 of the GNU General Public License as
6 * published by the Free Software Foundation.
8 * This program is distributed in the hope that it would be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12 * Further, this software is distributed without any warranty that it is
13 * free of the rightful claim of any third person regarding infringement
14 * or the like. Any license provided herein, whether implied or
15 * otherwise, applies only to this software file. Patent licenses, if
16 * any, provided herein do not apply to combinations of this program with
17 * other software, or any other product whatsoever.
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write the Free Software Foundation, Inc., 59
21 * Temple Place - Suite 330, Boston MA 02111-1307, USA.
23 * Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
24 * Mountain View, CA 94043, or:
28 * For further information regarding this notice, see:
30 * http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
33 * fs/xfs/linux/xfs_lrw.c (Linux Read Write stuff)
42 #include "xfs_trans.h"
47 #include "xfs_alloc.h"
48 #include "xfs_dmapi.h"
49 #include "xfs_quota.h"
50 #include "xfs_mount.h"
51 #include "xfs_alloc_btree.h"
52 #include "xfs_bmap_btree.h"
53 #include "xfs_ialloc_btree.h"
54 #include "xfs_btree.h"
55 #include "xfs_ialloc.h"
56 #include "xfs_attr_sf.h"
57 #include "xfs_dir_sf.h"
58 #include "xfs_dir2_sf.h"
59 #include "xfs_dinode.h"
60 #include "xfs_inode.h"
63 #include "xfs_rtalloc.h"
64 #include "xfs_error.h"
65 #include "xfs_itable.h"
71 #include "xfs_inode_item.h"
72 #include "xfs_buf_item.h"
73 #include "xfs_utils.h"
74 #include "xfs_iomap.h"
76 #include <linux/capability.h>
77 #include <linux/writeback.h>
80 #if defined(XFS_RW_TRACE)
90 xfs_inode_t *ip = XFS_IO_INODE(io);
92 if (ip->i_rwtrace == NULL)
94 ktrace_enter(ip->i_rwtrace,
95 (void *)(unsigned long)tag,
97 (void *)((unsigned long)((ip->i_d.di_size >> 32) & 0xffffffff)),
98 (void *)((unsigned long)(ip->i_d.di_size & 0xffffffff)),
100 (void *)((unsigned long)segs),
101 (void *)((unsigned long)((offset >> 32) & 0xffffffff)),
102 (void *)((unsigned long)(offset & 0xffffffff)),
103 (void *)((unsigned long)ioflags),
104 (void *)((unsigned long)((io->io_new_size >> 32) & 0xffffffff)),
105 (void *)((unsigned long)(io->io_new_size & 0xffffffff)),
114 xfs_inval_cached_trace(
121 xfs_inode_t *ip = XFS_IO_INODE(io);
123 if (ip->i_rwtrace == NULL)
125 ktrace_enter(ip->i_rwtrace,
126 (void *)(__psint_t)XFS_INVAL_CACHED,
128 (void *)((unsigned long)((offset >> 32) & 0xffffffff)),
129 (void *)((unsigned long)(offset & 0xffffffff)),
130 (void *)((unsigned long)((len >> 32) & 0xffffffff)),
131 (void *)((unsigned long)(len & 0xffffffff)),
132 (void *)((unsigned long)((first >> 32) & 0xffffffff)),
133 (void *)((unsigned long)(first & 0xffffffff)),
134 (void *)((unsigned long)((last >> 32) & 0xffffffff)),
135 (void *)((unsigned long)(last & 0xffffffff)),
148 * xfs_iozero clears the specified range of buffer supplied,
149 * and marks all the affected blocks as valid and modified. If
150 * an affected block is not allocated, it will be allocated. If
151 * an affected block is not completely overwritten, and is not
152 * valid before the operation, it will be read from disk before
153 * being partially zeroed.
157 struct inode *ip, /* inode */
158 loff_t pos, /* offset in file */
159 size_t count, /* size of data to zero */
160 loff_t end_size) /* max file size to set */
164 struct address_space *mapping;
168 mapping = ip->i_mapping;
170 unsigned long index, offset;
172 offset = (pos & (PAGE_CACHE_SIZE -1)); /* Within page */
173 index = pos >> PAGE_CACHE_SHIFT;
174 bytes = PAGE_CACHE_SIZE - offset;
179 page = grab_cache_page(mapping, index);
184 status = mapping->a_ops->prepare_write(NULL, page, offset,
190 memset((void *) (kaddr + offset), 0, bytes);
191 flush_dcache_page(page);
192 status = mapping->a_ops->commit_write(NULL, page, offset,
197 if (pos > i_size_read(ip))
198 i_size_write(ip, pos < end_size ? pos : end_size);
204 page_cache_release(page);
212 ssize_t /* bytes read, or (-) error */
216 const struct iovec *iovp,
222 struct file *file = iocb->ki_filp;
223 struct inode *inode = file->f_mapping->host;
232 ip = XFS_BHVTOI(bdp);
233 vp = BHV_TO_VNODE(bdp);
236 XFS_STATS_INC(xs_read_calls);
238 /* START copy & waste from filemap.c */
239 for (seg = 0; seg < segs; seg++) {
240 const struct iovec *iv = &iovp[seg];
243 * If any segment has a negative length, or the cumulative
244 * length ever wraps negative then return -EINVAL.
247 if (unlikely((ssize_t)(size|iv->iov_len) < 0))
248 return XFS_ERROR(-EINVAL);
250 /* END copy & waste from filemap.c */
252 if (unlikely(ioflags & IO_ISDIRECT)) {
253 xfs_buftarg_t *target =
254 (ip->i_d.di_flags & XFS_DIFLAG_REALTIME) ?
255 mp->m_rtdev_targp : mp->m_ddev_targp;
256 if ((*offset & target->pbr_smask) ||
257 (size & target->pbr_smask)) {
258 if (*offset == ip->i_d.di_size) {
261 return -XFS_ERROR(EINVAL);
265 n = XFS_MAXIOFFSET(mp) - *offset;
266 if ((n <= 0) || (size == 0))
272 if (XFS_FORCED_SHUTDOWN(mp)) {
276 if (unlikely(ioflags & IO_ISDIRECT))
278 xfs_ilock(ip, XFS_IOLOCK_SHARED);
280 if (DM_EVENT_ENABLED(vp->v_vfsp, ip, DM_EVENT_READ) &&
281 !(ioflags & IO_INVIS)) {
282 vrwlock_t locktype = VRWLOCK_READ;
283 int dmflags = FILP_DELAY_FLAG(file) | DM_SEM_FLAG_RD(ioflags);
285 ret = -XFS_SEND_DATA(mp, DM_EVENT_READ,
286 BHV_TO_VNODE(bdp), *offset, size,
289 xfs_iunlock(ip, XFS_IOLOCK_SHARED);
294 xfs_rw_enter_trace(XFS_READ_ENTER, &ip->i_iocore,
295 (void *)iovp, segs, *offset, ioflags);
296 ret = __generic_file_aio_read(iocb, iovp, segs, offset);
297 if (ret == -EIOCBQUEUED && !(ioflags & IO_ISAIO))
298 ret = wait_on_sync_kiocb(iocb);
300 XFS_STATS_ADD(xs_read_bytes, ret);
302 xfs_iunlock(ip, XFS_IOLOCK_SHARED);
304 if (likely(!(ioflags & IO_INVIS)))
305 xfs_ichgtime(ip, XFS_ICHGTIME_ACC);
308 if (unlikely(ioflags & IO_ISDIRECT))
330 ip = XFS_BHVTOI(bdp);
331 vp = BHV_TO_VNODE(bdp);
334 XFS_STATS_INC(xs_read_calls);
336 n = XFS_MAXIOFFSET(mp) - *offset;
337 if ((n <= 0) || (count == 0))
343 if (XFS_FORCED_SHUTDOWN(ip->i_mount))
346 xfs_ilock(ip, XFS_IOLOCK_SHARED);
348 if (DM_EVENT_ENABLED(vp->v_vfsp, ip, DM_EVENT_READ) &&
349 (!(ioflags & IO_INVIS))) {
350 vrwlock_t locktype = VRWLOCK_READ;
353 error = XFS_SEND_DATA(mp, DM_EVENT_READ, BHV_TO_VNODE(bdp), *offset, count,
354 FILP_DELAY_FLAG(filp), &locktype);
356 xfs_iunlock(ip, XFS_IOLOCK_SHARED);
360 xfs_rw_enter_trace(XFS_SENDFILE_ENTER, &ip->i_iocore,
361 (void *)(unsigned long)target, count, *offset, ioflags);
362 ret = generic_file_sendfile(filp, offset, count, actor, target);
364 xfs_iunlock(ip, XFS_IOLOCK_SHARED);
367 XFS_STATS_ADD(xs_read_bytes, ret);
369 if (likely(!(ioflags & IO_INVIS)))
370 xfs_ichgtime(ip, XFS_ICHGTIME_ACC);
376 * This routine is called to handle zeroing any space in the last
377 * block of the file that is beyond the EOF. We do this since the
378 * size is being increased without writing anything to that block
379 * and we don't want anyone to read the garbage on the disk.
381 STATIC int /* error (positive) */
387 xfs_fsize_t end_size)
389 xfs_fileoff_t last_fsb;
394 int isize_fsb_offset;
396 xfs_bmbt_irec_t imap;
400 ASSERT(ismrlocked(io->io_lock, MR_UPDATE) != 0);
401 ASSERT(offset > isize);
405 isize_fsb_offset = XFS_B_FSB_OFFSET(mp, isize);
406 if (isize_fsb_offset == 0) {
408 * There are no extra bytes in the last block on disk to
414 last_fsb = XFS_B_TO_FSBT(mp, isize);
416 error = XFS_BMAPI(mp, NULL, io, last_fsb, 1, 0, NULL, 0, &imap,
423 * If the block underlying isize is just a hole, then there
424 * is nothing to zero.
426 if (imap.br_startblock == HOLESTARTBLOCK) {
430 * Zero the part of the last block beyond the EOF, and write it
431 * out sync. We need to drop the ilock while we do this so we
432 * don't deadlock when the buffer cache calls back to us.
434 XFS_IUNLOCK(mp, io, XFS_ILOCK_EXCL| XFS_EXTSIZE_RD);
435 loff = XFS_FSB_TO_B(mp, last_fsb);
436 lsize = XFS_FSB_TO_B(mp, 1);
438 zero_offset = isize_fsb_offset;
439 zero_len = mp->m_sb.sb_blocksize - isize_fsb_offset;
441 error = xfs_iozero(ip, loff + zero_offset, zero_len, end_size);
443 XFS_ILOCK(mp, io, XFS_ILOCK_EXCL|XFS_EXTSIZE_RD);
449 * Zero any on disk space between the current EOF and the new,
450 * larger EOF. This handles the normal case of zeroing the remainder
451 * of the last block in the file and the unusual case of zeroing blocks
452 * out beyond the size of the file. This second case only happens
453 * with fixed size extents and when the system crashes before the inode
454 * size was updated but after blocks were allocated. If fill is set,
455 * then any holes in the range are filled and zeroed. If not, the holes
456 * are left alone as holes.
459 int /* error (positive) */
463 xfs_off_t offset, /* starting I/O offset */
464 xfs_fsize_t isize, /* current inode size */
465 xfs_fsize_t end_size) /* terminal inode size */
467 struct inode *ip = LINVFS_GET_IP(vp);
468 xfs_fileoff_t start_zero_fsb;
469 xfs_fileoff_t end_zero_fsb;
470 xfs_fileoff_t prev_zero_fsb;
471 xfs_fileoff_t zero_count_fsb;
472 xfs_fileoff_t last_fsb;
473 xfs_extlen_t buf_len_fsb;
474 xfs_extlen_t prev_zero_count;
478 xfs_bmbt_irec_t imap;
482 ASSERT(ismrlocked(io->io_lock, MR_UPDATE));
483 ASSERT(ismrlocked(io->io_iolock, MR_UPDATE));
488 * First handle zeroing the block on which isize resides.
489 * We only zero a part of that block so it is handled specially.
491 error = xfs_zero_last_block(ip, io, offset, isize, end_size);
493 ASSERT(ismrlocked(io->io_lock, MR_UPDATE));
494 ASSERT(ismrlocked(io->io_iolock, MR_UPDATE));
499 * Calculate the range between the new size and the old
500 * where blocks needing to be zeroed may exist. To get the
501 * block where the last byte in the file currently resides,
502 * we need to subtract one from the size and truncate back
503 * to a block boundary. We subtract 1 in case the size is
504 * exactly on a block boundary.
506 last_fsb = isize ? XFS_B_TO_FSBT(mp, isize - 1) : (xfs_fileoff_t)-1;
507 start_zero_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)isize);
508 end_zero_fsb = XFS_B_TO_FSBT(mp, offset - 1);
509 ASSERT((xfs_sfiloff_t)last_fsb < (xfs_sfiloff_t)start_zero_fsb);
510 if (last_fsb == end_zero_fsb) {
512 * The size was only incremented on its last block.
513 * We took care of that above, so just return.
518 ASSERT(start_zero_fsb <= end_zero_fsb);
519 prev_zero_fsb = NULLFILEOFF;
521 while (start_zero_fsb <= end_zero_fsb) {
523 zero_count_fsb = end_zero_fsb - start_zero_fsb + 1;
524 error = XFS_BMAPI(mp, NULL, io, start_zero_fsb, zero_count_fsb,
525 0, NULL, 0, &imap, &nimaps, NULL);
527 ASSERT(ismrlocked(io->io_lock, MR_UPDATE));
528 ASSERT(ismrlocked(io->io_iolock, MR_UPDATE));
533 if (imap.br_state == XFS_EXT_UNWRITTEN ||
534 imap.br_startblock == HOLESTARTBLOCK) {
536 * This loop handles initializing pages that were
537 * partially initialized by the code below this
538 * loop. It basically zeroes the part of the page
539 * that sits on a hole and sets the page as P_HOLE
540 * and calls remapf if it is a mapped file.
542 prev_zero_fsb = NULLFILEOFF;
544 start_zero_fsb = imap.br_startoff +
546 ASSERT(start_zero_fsb <= (end_zero_fsb + 1));
551 * There are blocks in the range requested.
552 * Zero them a single write at a time. We actually
553 * don't zero the entire range returned if it is
554 * too big and simply loop around to get the rest.
555 * That is not the most efficient thing to do, but it
556 * is simple and this path should not be exercised often.
558 buf_len_fsb = XFS_FILBLKS_MIN(imap.br_blockcount,
559 mp->m_writeio_blocks << 8);
561 * Drop the inode lock while we're doing the I/O.
562 * We'll still have the iolock to protect us.
564 XFS_IUNLOCK(mp, io, XFS_ILOCK_EXCL|XFS_EXTSIZE_RD);
566 loff = XFS_FSB_TO_B(mp, start_zero_fsb);
567 lsize = XFS_FSB_TO_B(mp, buf_len_fsb);
569 error = xfs_iozero(ip, loff, lsize, end_size);
575 prev_zero_fsb = start_zero_fsb;
576 prev_zero_count = buf_len_fsb;
577 start_zero_fsb = imap.br_startoff + buf_len_fsb;
578 ASSERT(start_zero_fsb <= (end_zero_fsb + 1));
580 XFS_ILOCK(mp, io, XFS_ILOCK_EXCL|XFS_EXTSIZE_RD);
587 XFS_ILOCK(mp, io, XFS_ILOCK_EXCL|XFS_EXTSIZE_RD);
592 ssize_t /* bytes written, or (-) error */
596 const struct iovec *iovp,
602 struct file *file = iocb->ki_filp;
603 struct address_space *mapping = file->f_mapping;
604 struct inode *inode = mapping->host;
605 unsigned long segs = nsegs;
608 ssize_t ret = 0, error = 0;
609 xfs_fsize_t isize, new_size;
616 size_t ocount = 0, count;
618 int need_isem = 1, need_flush = 0;
620 XFS_STATS_INC(xs_write_calls);
622 vp = BHV_TO_VNODE(bdp);
623 xip = XFS_BHVTOI(bdp);
625 for (seg = 0; seg < segs; seg++) {
626 const struct iovec *iv = &iovp[seg];
629 * If any segment has a negative length, or the cumulative
630 * length ever wraps negative then return -EINVAL.
632 ocount += iv->iov_len;
633 if (unlikely((ssize_t)(ocount|iv->iov_len) < 0))
635 if (access_ok(VERIFY_READ, iv->iov_base, iv->iov_len))
640 ocount -= iv->iov_len; /* This segment is no good */
653 if (XFS_FORCED_SHUTDOWN(mp))
656 fs_check_frozen(vp->v_vfsp, SB_FREEZE_WRITE);
658 if (ioflags & IO_ISDIRECT) {
659 xfs_buftarg_t *target =
660 (xip->i_d.di_flags & XFS_DIFLAG_REALTIME) ?
661 mp->m_rtdev_targp : mp->m_ddev_targp;
663 if (ioflags & IO_ISAIO)
664 return XFS_ERROR(-ENOSYS);
666 if ((pos & target->pbr_smask) || (count & target->pbr_smask))
667 return XFS_ERROR(-EINVAL);
669 if (!VN_CACHED(vp) && pos < i_size_read(inode))
678 iolock = XFS_IOLOCK_EXCL;
679 locktype = VRWLOCK_WRITE;
683 iolock = XFS_IOLOCK_SHARED;
684 locktype = VRWLOCK_WRITE_DIRECT;
687 xfs_ilock(xip, XFS_ILOCK_EXCL|iolock);
689 isize = i_size_read(inode);
691 if (file->f_flags & O_APPEND)
695 error = -generic_write_checks(file, &pos, &count,
696 S_ISBLK(inode->i_mode));
698 xfs_iunlock(xip, XFS_ILOCK_EXCL|iolock);
699 goto out_unlock_isem;
702 new_size = pos + count;
703 if (new_size > isize)
704 io->io_new_size = new_size;
706 if ((DM_EVENT_ENABLED(vp->v_vfsp, xip, DM_EVENT_WRITE) &&
707 !(ioflags & IO_INVIS) && !eventsent)) {
708 loff_t savedsize = pos;
709 int dmflags = FILP_DELAY_FLAG(file);
712 dmflags |= DM_FLAGS_ISEM;
714 xfs_iunlock(xip, XFS_ILOCK_EXCL);
715 error = XFS_SEND_DATA(xip->i_mount, DM_EVENT_WRITE, vp,
719 xfs_iunlock(xip, iolock);
720 goto out_unlock_isem;
722 xfs_ilock(xip, XFS_ILOCK_EXCL);
726 * The iolock was dropped and reaquired in XFS_SEND_DATA
727 * so we have to recheck the size when appending.
728 * We will only "goto start;" once, since having sent the
729 * event prevents another call to XFS_SEND_DATA, which is
730 * what allows the size to change in the first place.
732 if ((file->f_flags & O_APPEND) && savedsize != isize) {
733 pos = isize = xip->i_d.di_size;
739 * On Linux, generic_file_write updates the times even if
740 * no data is copied in so long as the write had a size.
742 * We must update xfs' times since revalidate will overcopy xfs.
744 if (!(ioflags & IO_INVIS)) {
745 xfs_ichgtime(xip, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
746 inode_update_time(inode, 1);
750 * If the offset is beyond the size of the file, we have a couple
751 * of things to do. First, if there is already space allocated
752 * we need to either create holes or zero the disk or ...
754 * If there is a page where the previous size lands, we need
755 * to zero it out up to the new size.
759 error = xfs_zero_eof(BHV_TO_VNODE(bdp), io, pos,
762 xfs_iunlock(xip, XFS_ILOCK_EXCL|iolock);
763 goto out_unlock_isem;
766 xfs_iunlock(xip, XFS_ILOCK_EXCL);
769 * If we're writing the file then make sure to clear the
770 * setuid and setgid bits if the process is not being run
771 * by root. This keeps people from modifying setuid and
775 if (((xip->i_d.di_mode & S_ISUID) ||
776 ((xip->i_d.di_mode & (S_ISGID | S_IXGRP)) ==
777 (S_ISGID | S_IXGRP))) &&
778 !capable(CAP_FSETID)) {
779 error = xfs_write_clear_setuid(xip);
781 error = -remove_suid(file->f_dentry);
782 if (unlikely(error)) {
783 xfs_iunlock(xip, iolock);
784 goto out_unlock_isem;
789 /* We can write back this queue in page reclaim */
790 current->backing_dev_info = mapping->backing_dev_info;
792 if ((ioflags & IO_ISDIRECT)) {
794 xfs_inval_cached_trace(io, pos, -1,
795 ctooff(offtoct(pos)), -1);
796 VOP_FLUSHINVAL_PAGES(vp, ctooff(offtoct(pos)),
797 -1, FI_REMAPF_LOCKED);
801 /* demote the lock now the cached pages are gone */
802 XFS_ILOCK_DEMOTE(mp, io, XFS_IOLOCK_EXCL);
805 iolock = XFS_IOLOCK_SHARED;
806 locktype = VRWLOCK_WRITE_DIRECT;
810 xfs_rw_enter_trace(XFS_DIOWR_ENTER, io, (void *)iovp, segs,
812 ret = generic_file_direct_write(iocb, iovp,
813 &segs, pos, offset, count, ocount);
816 * direct-io write to a hole: fall through to buffered I/O
817 * for completing the rest of the request.
819 if (ret >= 0 && ret != count) {
820 XFS_STATS_ADD(xs_write_bytes, ret);
826 ioflags &= ~IO_ISDIRECT;
827 xfs_iunlock(xip, iolock);
831 xfs_rw_enter_trace(XFS_WRITE_ENTER, io, (void *)iovp, segs,
833 ret = generic_file_buffered_write(iocb, iovp, segs,
834 pos, offset, count, ret);
837 current->backing_dev_info = NULL;
839 if (ret == -EIOCBQUEUED && !(ioflags & IO_ISAIO))
840 ret = wait_on_sync_kiocb(iocb);
842 if ((ret == -ENOSPC) &&
843 DM_EVENT_ENABLED(vp->v_vfsp, xip, DM_EVENT_NOSPACE) &&
844 !(ioflags & IO_INVIS)) {
846 xfs_rwunlock(bdp, locktype);
849 error = XFS_SEND_NAMESP(xip->i_mount, DM_EVENT_NOSPACE, vp,
850 DM_RIGHT_NULL, vp, DM_RIGHT_NULL, NULL, NULL,
851 0, 0, 0); /* Delay flag intentionally unused */
856 xfs_rwlock(bdp, locktype);
857 pos = xip->i_d.di_size;
862 if (*offset > xip->i_d.di_size) {
863 xfs_ilock(xip, XFS_ILOCK_EXCL);
864 if (*offset > xip->i_d.di_size) {
865 xip->i_d.di_size = *offset;
866 i_size_write(inode, *offset);
867 xip->i_update_core = 1;
868 xip->i_update_size = 1;
870 xfs_iunlock(xip, XFS_ILOCK_EXCL);
875 goto out_unlock_internal;
877 XFS_STATS_ADD(xs_write_bytes, ret);
879 /* Handle various SYNC-type writes */
880 if ((file->f_flags & O_SYNC) || IS_SYNC(inode)) {
882 * If we're treating this as O_DSYNC and we have not updated the
883 * size, force the log.
885 if (!(mp->m_flags & XFS_MOUNT_OSYNCISOSYNC) &&
886 !(xip->i_update_size)) {
887 xfs_inode_log_item_t *iip = xip->i_itemp;
890 * If an allocation transaction occurred
891 * without extending the size, then we have to force
892 * the log up the proper point to ensure that the
893 * allocation is permanent. We can't count on
894 * the fact that buffered writes lock out direct I/O
895 * writes - the direct I/O write could have extended
896 * the size nontransactionally, then finished before
897 * we started. xfs_write_file will think that the file
898 * didn't grow but the update isn't safe unless the
899 * size change is logged.
901 * Force the log if we've committed a transaction
902 * against the inode or if someone else has and
903 * the commit record hasn't gone to disk (e.g.
904 * the inode is pinned). This guarantees that
905 * all changes affecting the inode are permanent
908 if (iip && iip->ili_last_lsn) {
909 xfs_log_force(mp, iip->ili_last_lsn,
910 XFS_LOG_FORCE | XFS_LOG_SYNC);
911 } else if (xfs_ipincount(xip) > 0) {
912 xfs_log_force(mp, (xfs_lsn_t)0,
913 XFS_LOG_FORCE | XFS_LOG_SYNC);
920 * O_SYNC or O_DSYNC _with_ a size update are handled
923 * If the write was synchronous then we need to make
924 * sure that the inode modification time is permanent.
925 * We'll have updated the timestamp above, so here
926 * we use a synchronous transaction to log the inode.
927 * It's not fast, but it's necessary.
929 * If this a dsync write and the size got changed
930 * non-transactionally, then we need to ensure that
931 * the size change gets logged in a synchronous
935 tp = xfs_trans_alloc(mp, XFS_TRANS_WRITE_SYNC);
936 if ((error = xfs_trans_reserve(tp, 0,
937 XFS_SWRITE_LOG_RES(mp),
939 /* Transaction reserve failed */
940 xfs_trans_cancel(tp, 0);
942 /* Transaction reserve successful */
943 xfs_ilock(xip, XFS_ILOCK_EXCL);
944 xfs_trans_ijoin(tp, xip, XFS_ILOCK_EXCL);
945 xfs_trans_ihold(tp, xip);
946 xfs_trans_log_inode(tp, xip, XFS_ILOG_CORE);
947 xfs_trans_set_sync(tp);
948 error = xfs_trans_commit(tp, 0, NULL);
949 xfs_iunlock(xip, XFS_ILOCK_EXCL);
952 goto out_unlock_internal;
955 xfs_rwunlock(bdp, locktype);
959 error = sync_page_range(inode, mapping, pos, ret);
966 xfs_rwunlock(bdp, locktype);
975 * All xfs metadata buffers except log state machine buffers
976 * get this attached as their b_bdstrat callback function.
977 * This is so that we can catch a buffer
978 * after prematurely unpinning it to forcibly shutdown the filesystem.
981 xfs_bdstrat_cb(struct xfs_buf *bp)
985 mp = XFS_BUF_FSPRIVATE3(bp, xfs_mount_t *);
986 if (!XFS_FORCED_SHUTDOWN(mp)) {
987 pagebuf_iorequest(bp);
990 xfs_buftrace("XFS__BDSTRAT IOERROR", bp);
992 * Metadata write that didn't get logged but
993 * written delayed anyway. These aren't associated
994 * with a transaction, and can be ignored.
996 if (XFS_BUF_IODONE_FUNC(bp) == NULL &&
997 (XFS_BUF_ISREAD(bp)) == 0)
998 return (xfs_bioerror_relse(bp));
1000 return (xfs_bioerror(bp));
1006 xfs_bmap(bhv_desc_t *bdp,
1010 xfs_iomap_t *iomapp,
1013 xfs_inode_t *ip = XFS_BHVTOI(bdp);
1014 xfs_iocore_t *io = &ip->i_iocore;
1016 ASSERT((ip->i_d.di_mode & S_IFMT) == S_IFREG);
1017 ASSERT(((ip->i_d.di_flags & XFS_DIFLAG_REALTIME) != 0) ==
1018 ((ip->i_iocore.io_flags & XFS_IOCORE_RT) != 0));
1020 return xfs_iomap(io, offset, count, flags, iomapp, niomaps);
1024 * Wrapper around bdstrat so that we can stop data
1025 * from going to disk in case we are shutting down the filesystem.
1026 * Typically user data goes thru this path; one of the exceptions
1027 * is the superblock.
1031 struct xfs_mount *mp,
1035 if (!XFS_FORCED_SHUTDOWN(mp)) {
1036 /* Grio redirection would go here
1037 * if (XFS_BUF_IS_GRIO(bp)) {
1040 pagebuf_iorequest(bp);
1044 xfs_buftrace("XFSBDSTRAT IOERROR", bp);
1045 return (xfs_bioerror_relse(bp));
1049 * If the underlying (data/log/rt) device is readonly, there are some
1050 * operations that cannot proceed.
1053 xfs_dev_is_read_only(
1057 if (xfs_readonly_buftarg(mp->m_ddev_targp) ||
1058 xfs_readonly_buftarg(mp->m_logdev_targp) ||
1059 (mp->m_rtdev_targp && xfs_readonly_buftarg(mp->m_rtdev_targp))) {
1061 "XFS: %s required on read-only device.", message);
1063 "XFS: write access unavailable, cannot proceed.");